/* App-specific overrides — design-system.css handles tokens + components */

[x-cloak] { display: none !important; }

/* Loading spinner */
.spinner {
  border: 3px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  width: 1.25rem;
  height: 1.25rem;
  animation: spin 0.6s linear infinite;
  display: inline-block;
}
.spinner-dark {
  border: 3px solid rgba(0,0,0,0.1);
  border-top-color: var(--color-amber-600);
  border-radius: 50%;
  width: 1.25rem;
  height: 1.25rem;
  animation: spin 0.6s linear infinite;
  display: inline-block;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Price change badges */
.price-drop { color: #16a34a; }
.price-rise { color: #dc2626; }
