body {
  background: color-mix(in srgb, var(--bw-theme-primary) 6%, white);
  color: #1f2937;
}

body.is-navigating {
  pointer-events: none;
  opacity: 0.5;
}

a,
button {
  cursor: pointer;
}

a {
  text-decoration: none;
}

.amber-header {
  background: #ffffff;
  border-bottom: 1px solid #f3f4f6;
  position: sticky;
  top: 0;
  z-index: 60;
}

.amber-topbar {
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.96), rgba(30, 41, 59, 0.96));
  color: #e2e8f0;
}

.amber-hero {
  background: radial-gradient(
      circle at top left,
      color-mix(in srgb, var(--bw-theme-primary) 18%, transparent),
      transparent 45%
    ),
    radial-gradient(
      circle at top right,
      color-mix(in srgb, var(--bw-theme-primary) 12%, transparent),
      transparent 45%
    ),
    #ffffff;
}

.amber-card {
  background: #ffffff;
  border: 1px solid #f1f5f9;
  border-radius: 1rem;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.amber-chip {
  border-radius: 9999px;
  padding: 0.2rem 0.6rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.amber-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.amber-section-title h4,
.amber-section-title h3 {
  font-weight: 700;
  color: #0f172a;
}

.amber-section-title p {
  color: #6b7280;
  font-size: 0.9rem;
}

.amber-outline-btn {
  border: 1px solid rgba(15, 23, 42, 0.12);
  color: #0f172a;
  background: #ffffff;
  transition: all 0.2s ease;
}

.amber-outline-btn:hover {
  border-color: var(--bw-theme-primary);
  color: var(--bw-theme-primary);
}

.amber-primary-btn {
  background: var(--bw-theme-primary);
  color: #ffffff;
  box-shadow: 0 12px 25px rgba(15, 23, 42, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.amber-primary-btn:hover {
  opacity: 0.95;
  transform: translateY(-1px);
}

.amber-pill-link {
  border-radius: 9999px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  padding: 0.45rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #0f172a;
  transition: all 0.2s ease;
}

.amber-pill-link:hover {
  border-color: var(--bw-theme-primary);
  color: var(--bw-theme-primary);
}

.swiper-container .swiper-pagination-bullet {
  width: 0.7rem;
  height: 0.7rem;
  background-color: rgba(15, 23, 42, 0.2);
  border-radius: 9999px;
  opacity: 0.8;
}

.swiper-container .swiper-pagination-bullet-active {
  background-color: var(--bw-theme-primary);
  opacity: 1;
}

.swiper-container .swiper-button-next,
.swiper-container .swiper-button-prev {
  background-color: rgba(15, 23, 42, 0.7);
  color: #fff;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
}

.swiper-container .swiper-button-next:hover,
.swiper-container .swiper-button-prev:hover {
  background-color: rgba(15, 23, 42, 0.9);
}

.swiper-container.deal-of-the-day .swiper-pagination-bullet {
  background-color: rgba(15, 23, 42, 0.15);
}

.swiper-container.deal-of-the-day .swiper-pagination-bullet-active {
  background-color: var(--bw-theme-primary);
}

.toast-base {
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.15);
  animation: fadeIn 0.25s ease, fadeOut 0.25s ease 2.8s forwards;
}

.toast-error {
  background: rgb(239, 68, 68);
}

.toast-success {
  background: rgb(34, 197, 94);
}

.toast-info {
  background: rgb(59, 130, 246);
}

.toast-warning {
  background: rgb(234, 179, 8);
}

.variant-check.hidden {
  display: none !important;
}

@media (min-width: 768px) {
  main {
    min-height: calc(100vh - 560px);
  }
}

#payment-pending-wrapper .hidden {
  display: none !important;
}

#payment-pending-wrapper {
  --loader-size: 100px;
  --loader-color: rgba(30, 41, 59, 0.8);
}

#payment-pending-wrapper .loader-box {
  position: relative;
  width: var(--loader-size);
  height: var(--loader-size);
  display: flex;
  align-items: center;
  justify-content: center;
}

#payment-pending-wrapper .loader {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid var(--loader-color);
  border-bottom-color: rgba(30, 41, 59, 0.1);
  animation: spin 1s linear infinite;
}

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

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

.shimmer {
  background-image: linear-gradient(90deg, #e2e8f0 0%, #f8fafc 40%, #e2e8f0 80%);
  background-size: 200% 100%;
  animation: shimmer 1.4s ease-in-out infinite;
}
