/* ============================================
   MINI AMOUR — Component Styles
   "Midnight Luxe" — Dark glassmorphism,
   gold/violet/rose accents, sharp luxury edges
   ============================================ */

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-8);
  font-family: var(--ff-body);
  font-weight: var(--fw-semibold);
  font-size: 0.8125rem;
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.4s var(--ease-out);
  text-decoration: none;
  white-space: nowrap;
}

.btn-sm {
  padding: var(--sp-8) var(--sp-16);
  font-size: var(--fs-xs);
}

.btn-lg {
  padding: var(--sp-16) var(--sp-32);
  font-size: 0.8125rem;
}

.btn-block {
  display: flex;
  width: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--clr-gold) 0%, var(--clr-gold-light) 50%, var(--clr-gold) 100%);
  background-size: 200% 200%;
  color: var(--clr-bg);
  border-color: transparent;
}

.btn-primary:hover {
  background-position: 100% 100%;
  transform: translateY(-1px);
  box-shadow: var(--shadow-glow-gold);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  background-color: transparent;
  color: var(--clr-champagne);
  border-color: rgba(201, 165, 92, 0.4);
}

.btn-outline:hover {
  border-color: rgba(201, 165, 92, 0.8);
  box-shadow: 0 0 20px rgba(201, 165, 92, 0.15);
  color: var(--clr-gold);
}

/* ---- Site Header ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  background-color: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid var(--glass-border);
  transition: background-color var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
}

.site-header.scrolled {
  background-color: rgba(10, 10, 15, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.logo-text {
  font-family: var(--ff-display);
  font-size: var(--fs-xl);
  font-weight: var(--fw-regular);
  color: var(--clr-gold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
}

.nav-link {
  font-size: 0.8125rem;
  font-weight: var(--fw-medium);
  color: var(--clr-silver);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  transition: color var(--dur-fast) var(--ease-out);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--clr-gold), var(--clr-maroon));
  transition: width var(--dur-base) var(--ease-out);
}

.nav-link:hover,
.nav-link.active {
  color: var(--clr-gold);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* ---- Hero ---- */
.hero {
  background: var(--clr-bg);
  position: relative;
  overflow: hidden;
}

/* Aurora mesh gradient */
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(107, 30, 58, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(201, 165, 92, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(107, 30, 58, 0.1) 0%, transparent 50%);
  animation: aurora 20s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-gold-muted), transparent);
}

@keyframes aurora {
  0%   { transform: translate(0, 0) rotate(0deg); }
  50%  { transform: translate(-2%, 2%) rotate(1deg); }
  100% { transform: translate(2%, -1%) rotate(-1deg); }
}

.hero-eyebrow {
  font-family: var(--ff-body);
  font-size: 0.6875rem;
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: var(--sp-24);
}

.hero-title {
  font-family: var(--ff-display);
  font-weight: var(--fw-light);
  color: var(--clr-champagne);
  margin-bottom: var(--sp-20);
  line-height: var(--lh-tight);
  text-shadow: 0 0 60px rgba(201, 165, 92, 0.12);
}

.hero-title em {
  color: var(--clr-gold-light);
  font-weight: var(--fw-light);
}

.hero-subtitle {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: var(--fw-light);
  font-size: var(--fs-md);
  color: var(--clr-silver);
  margin-bottom: var(--sp-40);
  line-height: var(--lh-relaxed);
  letter-spacing: 0.02em;
}

.hero-price-anchor {
  font-family: var(--ff-display);
  font-size: var(--fs-md);
  color: var(--clr-silver);
  margin-bottom: var(--sp-24);
  text-align: center;
}

.hero-price-anchor strong {
  font-family: var(--ff-display);
  font-size: var(--fs-xl);
  font-weight: var(--fw-medium);
  color: var(--clr-champagne);
}

.hero-price-was {
  font-size: var(--fs-sm);
  color: var(--clr-muted);
  text-decoration: line-through;
  margin-left: var(--sp-4);
}

/* ---- Early Bird Callout ---- */
.early-bird {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-8);
  padding: var(--sp-16) var(--sp-24);
  background: linear-gradient(135deg, rgba(107, 30, 58, 0.2) 0%, rgba(201, 165, 92, 0.15) 100%);
  border: 1px solid rgba(201, 165, 92, 0.4);
  border-radius: var(--radius-lg);
  margin-bottom: var(--sp-24);
  text-align: center;
  animation: early-bird-glow 2s ease-in-out infinite;
}

@keyframes early-bird-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(201, 165, 92, 0.1); }
  50% { box-shadow: 0 0 30px rgba(201, 165, 92, 0.25), 0 0 60px rgba(107, 30, 58, 0.15); }
}

.early-bird-badge {
  display: inline-block;
  padding: var(--sp-4) var(--sp-12);
  background: linear-gradient(135deg, var(--clr-rose) 0%, var(--clr-maroon) 100%);
  color: var(--clr-ivory);
  font-size: 0.65rem;
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  border-radius: 0;
}

.early-bird-text {
  font-size: var(--fs-sm);
  color: var(--clr-champagne);
  line-height: var(--lh-relaxed);
  margin: 0;
}

.early-bird-text strong {
  color: var(--clr-gold);
  font-weight: var(--fw-semibold);
}

/* ---- WhatsApp Exclusive Callout ---- */
.whatsapp-exclusive {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-12) var(--sp-20);
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.15) 0%, rgba(37, 211, 102, 0.08) 100%);
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: var(--radius-lg);
  margin-bottom: var(--sp-24);
  animation: whatsapp-pulse 2.5s ease-in-out infinite;
}

@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 0 15px rgba(37, 211, 102, 0.1); }
  50% { box-shadow: 0 0 25px rgba(37, 211, 102, 0.25); }
}

.whatsapp-exclusive-text {
  font-size: var(--fs-sm);
  color: var(--clr-champagne);
  margin: 0;
  text-align: center;
}

.whatsapp-exclusive-text strong {
  color: var(--clr-success);
  font-weight: var(--fw-semibold);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: var(--sp-12);
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-48);
}

/* ---- Countdown ---- */
.countdown-wrap {
  margin-bottom: var(--sp-32);
  text-align: center;
}

.countdown-heading {
  font-family: var(--ff-display);
  font-size: var(--fs-lg);
  font-weight: var(--fw-regular);
  letter-spacing: var(--ls-wider);
  color: var(--clr-gold);
  margin-bottom: var(--sp-16);
  text-align: center;
}

.countdown-subtext {
  font-size: var(--fs-xs);
  color: var(--clr-rose);
  text-align: center;
  margin-top: var(--sp-12);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
}

.hero-countdown {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  padding: var(--sp-16) var(--sp-24);
  background: var(--glass-bg);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid rgba(201, 165, 92, 0.3);
  margin-left: auto;
  margin-right: auto;
  animation: countdown-glow 3s ease-in-out infinite;
}

@keyframes countdown-glow {
  0%, 100% { box-shadow: 0 0 15px rgba(201, 165, 92, 0.08); }
  50% { box-shadow: 0 0 30px rgba(201, 165, 92, 0.2), 0 0 60px rgba(201, 165, 92, 0.08); }
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 48px;
}

.countdown-num {
  font-family: var(--ff-display);
  font-size: var(--fs-xl);
  font-weight: var(--fw-medium);
  color: var(--clr-ivory);
  line-height: 1;
}

.countdown-label {
  font-family: var(--ff-body);
  font-size: 0.6rem;
  font-weight: var(--fw-medium);
  color: var(--clr-muted);
  text-transform: uppercase;
  letter-spacing: var(--ls-widest);
  margin-top: var(--sp-6);
}

.countdown-sep {
  font-family: var(--ff-display);
  font-size: var(--fs-xl);
  color: var(--clr-gold-muted);
  font-weight: var(--fw-light);
  line-height: 1;
  padding-bottom: var(--sp-16);
}

/* ---- Trust Bar ---- */
.trust-bar {
  background-color: var(--clr-surface);
  padding: var(--sp-24) 0;
  border-bottom: 1px solid var(--clr-border);
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-8);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--clr-champagne);
}

.trust-item svg {
  color: var(--clr-gold);
  flex-shrink: 0;
}

/* ---- Authenticity Section ---- */
.authenticity {
  background-color: var(--clr-bg);
  border-bottom: 1px solid var(--clr-border);
}

.auth-inner {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  padding: var(--sp-24);
  background: var(--glass-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
}

.auth-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-gold-muted), var(--clr-gold));
  color: var(--clr-bg);
}

.auth-icon svg {
  width: 32px;
  height: 32px;
}

.auth-content {
  flex: 1;
}

.auth-title {
  font-family: var(--ff-display);
  font-size: var(--fs-lg);
  font-weight: var(--fw-regular);
  color: var(--clr-champagne);
  margin-bottom: var(--sp-8);
}

.auth-text {
  font-size: var(--fs-sm);
  color: var(--clr-silver);
  line-height: var(--lh-relaxed);
}

/* ---- Gift Guide Cards ---- */
.guide-card {
  padding: var(--sp-24);
  background: var(--glass-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s var(--ease-out);
}

.guide-card:hover {
  transform: translateY(-3px);
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
  box-shadow: var(--shadow-glow-gold);
}

.guide-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-gold-muted), var(--clr-gold));
  color: var(--clr-bg);
  margin-bottom: var(--sp-12);
}

.guide-icon svg {
  width: 24px;
  height: 24px;
}

.guide-label {
  font-family: var(--ff-display);
  font-size: var(--fs-lg);
  font-weight: var(--fw-regular);
  color: var(--clr-champagne);
  margin-bottom: var(--sp-8);
}

.guide-picks {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--clr-gold);
  margin-bottom: var(--sp-6);
}

.guide-note {
  font-size: var(--fs-xs);
  color: var(--clr-muted);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-12);
}

.guide-cta {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--clr-gold);
  transition: transform 0.3s var(--ease-out);
}

.guide-card:hover .guide-cta {
  transform: translateX(4px);
}

/* ---- Section Headers ---- */
.section-title {
  color: var(--clr-champagne);
  position: relative;
  display: inline-block;
}

.section-subtitle {
  color: var(--clr-silver);
}

/* ---- Gold Divider (after section headers) ---- */
.section-header::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-gold), transparent);
  margin: var(--sp-20) auto 0;
  position: relative;
}

/* ---- Product Cards ---- */
.products {
  background-color: var(--clr-bg);
  position: relative;
  overflow: hidden;
}

/* Ambient glow behind product grid */
.products::before {
  content: '';
  position: absolute;
  top: 30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(107, 30, 58, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.products::after {
  content: '';
  position: absolute;
  bottom: 20%;
  right: -10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(201, 165, 92, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.product-card {
  background: var(--glass-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  transition: all 0.5s var(--ease-out);
  position: relative;
}

/* Subtle top accent line */
.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 165, 92, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 2;
}

.product-card:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), 0 0 40px rgba(201, 165, 92, 0.06);
}

.product-card:hover::before {
  opacity: 1;
}

.product-card.hidden {
  display: none;
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background-color: var(--clr-surface);
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}

.product-card:hover .product-img {
  transform: scale(1.04);
}

.product-badge {
  position: absolute;
  top: var(--sp-12);
  left: var(--sp-12);
  padding: var(--sp-4) var(--sp-12);
  background-color: var(--clr-rose);
  color: var(--clr-ivory);
  font-size: 0.65rem;
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  border-radius: 0;
}

.product-badge.badge-him {
  background-color: var(--clr-badge-him);
}

.product-badge.badge-unisex {
  background-color: var(--clr-maroon);
}

.product-badge.badge-luxe {
  background: linear-gradient(135deg, var(--clr-gold-dark), var(--clr-gold));
  color: var(--clr-bg);
}

.product-info {
  padding: var(--sp-20);
}

.product-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
  margin-bottom: var(--sp-4);
}

.product-brand {
  font-family: var(--ff-body);
  font-size: 0.6875rem;
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 0;
}

.product-family {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--fam-clr, var(--clr-muted));
  background-color: color-mix(in srgb, var(--fam-clr, var(--clr-muted)) 12%, transparent);
  padding: var(--sp-2) var(--sp-8);
  border-radius: 0;
  border: 1px solid color-mix(in srgb, var(--fam-clr, var(--clr-muted)) 20%, transparent);
  white-space: nowrap;
  flex-shrink: 0;
}

.product-name {
  font-family: var(--ff-display);
  font-size: var(--fs-lg);
  font-weight: var(--fw-regular);
  color: var(--clr-champagne);
  margin-bottom: var(--sp-8);
}

.product-desc {
  font-size: var(--fs-sm);
  color: var(--clr-silver);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-12);
}

/* ---- Product Note Pills ---- */
.product-notes {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-6);
  margin-bottom: var(--sp-12);
}

.note-pill {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: var(--fw-medium);
  color: var(--clr-silver);
  background-color: rgba(255, 255, 255, 0.04);
  padding: var(--sp-2) var(--sp-8);
  border-radius: 0;
  border: 1px solid var(--clr-border);
  letter-spacing: var(--ls-wide);
}

/* ---- Product Includes ---- */
.product-includes {
  margin-bottom: var(--sp-12);
  padding: var(--sp-8) var(--sp-12);
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-border);
}

.includes-label {
  font-size: 0.6rem;
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--clr-gold-muted);
  margin-bottom: var(--sp-2);
}

.includes-list {
  font-size: var(--fs-xs);
  color: var(--clr-silver);
  line-height: var(--lh-relaxed);
}

/* ---- Product Meta Row ---- */
.product-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-6);
  margin-bottom: var(--sp-16);
}

.meta-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-4);
  font-size: 0.6rem;
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--clr-muted);
  padding: var(--sp-2) var(--sp-8);
  border-radius: 0;
  border: 1px solid var(--clr-border);
}

.meta-longevity::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--clr-maroon);
}

.meta-season::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--clr-amber);
}

.product-meta {
  margin-bottom: var(--sp-16);
}

.product-size {
  font-size: var(--fs-xs);
  color: var(--clr-muted);
}

.product-delivery {
  font-size: var(--fs-xs);
  color: var(--clr-success);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wide);
  margin-bottom: var(--sp-8);
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--sp-16);
  border-top: 1px solid var(--clr-border);
}

.product-pricing {
  display: flex;
  align-items: baseline;
  gap: var(--sp-8);
}

.product-price-was {
  font-size: var(--fs-sm);
  color: var(--clr-muted);
  text-decoration: line-through;
  opacity: 1;
}

.product-price {
  font-family: var(--ff-display);
  font-size: var(--fs-lg);
  font-weight: var(--fw-medium);
  color: var(--clr-champagne);
}

.product-cta {
  flex-shrink: 0;
}

/* ---- Filter Tabs ---- */
.filter-tab {
  padding: var(--sp-8) var(--sp-20);
  font-size: 0.75rem;
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--clr-silver);
  border: 1px solid var(--clr-border);
  border-radius: 0;
  background: transparent;
  transition: all var(--dur-base) var(--ease-out);
  cursor: pointer;
}

.filter-tab:hover {
  border-color: var(--clr-gold-muted);
  color: var(--clr-gold);
}

.filter-tab.active {
  background: linear-gradient(135deg, var(--clr-gold) 0%, var(--clr-gold-light) 100%);
  border-color: transparent;
  color: var(--clr-bg);
}

/* Unisex filter tab variant */
.filter-tab[data-filter="unisex"].active {
  background: linear-gradient(135deg, var(--clr-maroon) 0%, #8B2D4F 100%);
}

.filter-tab[data-filter="unisex"]:hover {
  border-color: var(--clr-maroon);
  color: var(--clr-maroon);
}

.filter-tab[data-filter="him"].active {
  background: linear-gradient(135deg, var(--clr-badge-him) 0%, #60A5FA 100%);
}

.filter-tab[data-filter="him"]:hover {
  border-color: var(--clr-badge-him);
  color: var(--clr-badge-him);
}

.filter-tab[data-filter="her"].active {
  background: linear-gradient(135deg, var(--clr-rose) 0%, #C44569 100%);
}

.filter-tab[data-filter="her"]:hover {
  border-color: var(--clr-rose);
  color: var(--clr-rose);
}

/* ---- Bundle Cards ---- */
.bundles {
  background-color: var(--clr-surface);
  position: relative;
  overflow: hidden;
}

/* Ambient glow */
.bundles::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(201, 165, 92, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.bundle-card {
  background: var(--glass-bg);
  border-radius: var(--radius-lg);
  padding: var(--sp-32);
  position: relative;
  border: 1px solid var(--glass-border);
  transition: all 0.4s var(--ease-out);
}

.bundle-card:hover {
  transform: translateY(-4px);
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), 0 0 40px rgba(201, 165, 92, 0.06);
}

.bundle-badge {
  position: absolute;
  top: calc(-1 * var(--sp-12));
  left: var(--sp-24);
  padding: var(--sp-4) var(--sp-16);
  background: linear-gradient(135deg, var(--clr-rose) 0%, #C44569 100%);
  color: var(--clr-ivory);
  font-size: 0.65rem;
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  border-radius: 0;
}

.bundle-badge.badge-luxe {
  background: linear-gradient(135deg, var(--clr-gold-dark), var(--clr-gold));
  color: var(--clr-bg);
}

.bundle-name {
  font-family: var(--ff-display);
  font-size: var(--fs-xl);
  font-weight: var(--fw-regular);
  color: var(--clr-champagne);
  margin-bottom: var(--sp-12);
}

.bundle-desc {
  font-size: var(--fs-sm);
  color: var(--clr-silver);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-20);
}

.bundle-includes {
  margin-bottom: var(--sp-24);
}

.bundle-includes li {
  font-size: var(--fs-sm);
  color: var(--clr-silver);
  padding: var(--sp-4) 0;
  padding-left: var(--sp-20);
  position: relative;
}

.bundle-includes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 0;
  background-color: var(--clr-gold);
}

.bundle-pricing {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: var(--sp-8);
  margin-bottom: var(--sp-20);
}

.bundle-original {
  font-size: var(--fs-sm);
  color: var(--clr-muted);
  text-decoration: line-through;
}

.bundle-price {
  font-family: var(--ff-display);
  font-size: var(--fs-xl);
  font-weight: var(--fw-medium);
  color: var(--clr-champagne);
}

.bundle-save {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--clr-success);
  padding: var(--sp-2) var(--sp-8);
  background-color: rgba(37, 211, 102, 0.1);
  border-radius: 0;
  letter-spacing: var(--ls-wide);
}

.bundle-cta svg {
  flex-shrink: 0;
}

/* ---- FAQ Accordion ---- */
.faq {
  background-color: var(--clr-bg);
}

.faq-item {
  border-bottom: 1px solid var(--clr-border);
}

.faq-question {
  padding: var(--sp-20) 0;
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-medium);
  color: var(--clr-champagne);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-16);
  transition: color var(--dur-fast);
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::marker {
  display: none;
  content: '';
}

.faq-question::after {
  content: '+';
  font-size: var(--fs-xl);
  font-weight: var(--fw-light);
  color: var(--clr-gold);
  flex-shrink: 0;
  transition: transform var(--dur-base) var(--ease-out);
}

.faq-item[open] .faq-question::after {
  content: '\2212';
}

.faq-item[open] .faq-question {
  color: var(--clr-gold);
}

.faq-answer {
  padding-bottom: var(--sp-20);
}

.faq-answer p {
  font-size: var(--fs-sm);
  color: var(--clr-silver);
  line-height: var(--lh-relaxed);
}

/* ---- Final CTA ---- */
.final-cta {
  background: var(--clr-bg);
  color: var(--clr-champagne);
  position: relative;
  overflow: hidden;
  max-width: 100vw;
}

/* Aurora effect for final CTA */
.final-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(201, 165, 92, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(107, 30, 58, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.final-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-gold-muted), transparent);
}

.cta-title {
  color: var(--clr-champagne);
  margin-bottom: var(--sp-16);
}

.cta-title em {
  color: var(--clr-gold-light);
}

.cta-subtitle {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: var(--fw-light);
  font-size: var(--fs-md);
  color: var(--clr-silver);
  margin-bottom: var(--sp-32);
}

.cta-btn {
  background: linear-gradient(135deg, var(--clr-gold) 0%, var(--clr-gold-light) 50%, var(--clr-gold) 100%);
  background-size: 200% 200%;
  border-color: transparent;
  color: var(--clr-bg);
}

.cta-btn:hover {
  background-position: 100% 100%;
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-gold);
}

.cta-note {
  font-size: var(--fs-sm);
  color: var(--clr-muted);
  margin-top: var(--sp-16);
  letter-spacing: var(--ls-wide);
}

/* ---- Footer ---- */
.site-footer {
  background-color: var(--clr-surface);
  color: var(--clr-silver);
  border-top: 1px solid var(--clr-border);
}

.footer-brand .logo-text {
  color: var(--clr-gold);
  font-size: var(--fs-xl);
}

.footer-tagline {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: var(--fs-sm);
  color: var(--clr-muted);
  margin-top: var(--sp-8);
}

.footer-heading {
  font-family: var(--ff-body);
  font-size: 0.6875rem;
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--clr-champagne);
  margin-bottom: var(--sp-16);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-8);
}

.footer-links a {
  font-size: var(--fs-sm);
  color: var(--clr-muted);
  transition: color var(--dur-fast);
}

.footer-links a:hover {
  color: var(--clr-gold);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: var(--sp-12);
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 0;
  border: 1px solid var(--clr-border);
  color: var(--clr-muted);
  transition: all var(--dur-base) var(--ease-out);
}

.social-link:hover {
  border-color: var(--clr-gold);
  color: var(--clr-gold);
  box-shadow: 0 0 20px rgba(201, 165, 92, 0.1);
}

.footer-bottom {
  border-top: 1px solid var(--clr-border);
}

.footer-bottom p {
  font-size: var(--fs-xs);
  color: var(--clr-muted);
  text-align: center;
}

/* ---- Floating WhatsApp ---- */
.floating-whatsapp {
  position: fixed;
  bottom: var(--sp-16);
  right: var(--sp-16);
  z-index: var(--z-floating);
  display: none;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background-color: var(--clr-success);
  color: var(--clr-ivory);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
  transition: transform var(--dur-base) var(--ease-bounce),
              box-shadow var(--dur-base) var(--ease-out);
}

@media (min-width: 768px) {
  .floating-whatsapp {
    display: flex;
  }
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

/* ---- Product Discount Badge ---- */
.product-discount {
  position: absolute;
  top: var(--sp-12);
  right: var(--sp-12);
  padding: var(--sp-6) var(--sp-12);
  background: linear-gradient(135deg, #D32F2F 0%, var(--clr-rose) 100%);
  color: var(--clr-ivory);
  font-size: 0.8125rem;
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  border-radius: 0;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(211, 47, 47, 0.4);
}

/* ---- Scarcity Badge ---- */
.product-scarcity {
  position: absolute;
  bottom: var(--sp-12);
  left: var(--sp-12);
  padding: var(--sp-4) var(--sp-8);
  background-color: rgba(211, 47, 47, 0.9);
  color: var(--clr-ivory);
  font-size: 0.6rem;
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  border-radius: 0;
  z-index: 2;
  animation: scarcity-pulse 2s ease-in-out infinite;
}

@keyframes scarcity-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* ---- Popular / Best Seller Badge ---- */
.product-popular {
  position: absolute;
  bottom: var(--sp-12);
  left: var(--sp-12);
  padding: var(--sp-4) var(--sp-8);
  background: linear-gradient(135deg, var(--clr-gold-dark), var(--clr-gold));
  color: var(--clr-bg);
  font-size: 0.6rem;
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  border-radius: 0;
  z-index: 2;
}

/* ---- Testimonials ---- */
.testimonials {
  background-color: var(--clr-surface);
  padding-top: var(--sp-64);
  padding-bottom: var(--sp-64);
  position: relative;
  overflow: hidden;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-20);
}

.testimonial-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-24);
  transition: all 0.4s var(--ease-out);
}

.testimonial-card:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
  transform: translateY(-2px);
}

.testimonial-aggregate {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-12);
  margin-top: var(--sp-16);
}

.aggregate-stars {
  display: flex;
  gap: 2px;
  color: var(--clr-gold);
}

.aggregate-stars svg {
  filter: drop-shadow(0 0 3px rgba(201, 165, 92, 0.4));
}

.aggregate-text {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--clr-champagne);
  letter-spacing: var(--ls-wide);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  color: var(--clr-gold);
  margin-bottom: var(--sp-12);
}

.testimonial-stars svg {
  filter: drop-shadow(0 0 2px rgba(201, 165, 92, 0.3));
}

.testimonial-text {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: var(--fs-base);
  font-weight: var(--fw-light);
  color: var(--clr-champagne);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-16);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}

.testimonial-name {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--clr-champagne);
}

.testimonial-location {
  font-size: var(--fs-xs);
  color: var(--clr-muted);
}

.testimonial-location::before {
  content: '\2022';
  margin-right: var(--sp-8);
}

/* ---- FAQ CTA ---- */
.faq-cta {
  text-align: center;
  margin-top: var(--sp-40);
  padding-top: var(--sp-32);
  border-top: 1px solid var(--clr-border);
}

.faq-cta-text {
  font-family: var(--ff-display);
  font-size: var(--fs-lg);
  font-weight: var(--fw-regular);
  color: var(--clr-champagne);
  margin-bottom: var(--sp-16);
}

/* ---- Exit-Intent Popup ---- */
.exit-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  align-items: center;
  justify-content: center;
}

.exit-popup.active {
  display: flex;
}

.exit-popup-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.exit-popup-inner {
  position: relative;
  max-width: 420px;
  width: calc(100% - 40px);
  background: var(--clr-surface);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-40) var(--sp-32);
  text-align: center;
  z-index: 1;
  animation: popup-enter 0.4s var(--ease-out);
}

@keyframes popup-enter {
  from { opacity: 0; transform: translateY(20px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.exit-popup-close {
  position: absolute;
  top: var(--sp-12);
  right: var(--sp-16);
  background: none;
  border: none;
  color: var(--clr-muted);
  font-size: var(--fs-2xl);
  cursor: pointer;
  line-height: 1;
  transition: color var(--dur-fast);
}

.exit-popup-close:hover {
  color: var(--clr-champagne);
}

.exit-popup-eyebrow {
  font-size: 0.6875rem;
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: var(--sp-12);
}

.exit-popup-title {
  font-family: var(--ff-display);
  font-size: var(--fs-xl);
  font-weight: var(--fw-light);
  color: var(--clr-champagne);
  margin-bottom: var(--sp-12);
  line-height: var(--lh-snug);
}

.exit-popup-desc {
  font-size: var(--fs-sm);
  color: var(--clr-silver);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-24);
}

.exit-popup-cta {
  width: 100%;
  justify-content: center;
}

/* ---- Responsive ---- */
@media (min-width: 768px) {
  .hero-actions {
    flex-direction: row;
    gap: var(--sp-16);
  }

  .countdown-num {
    font-size: var(--fs-2xl);
  }

  .footer-links ul {
    align-items: flex-start;
  }

  .social-links {
    justify-content: flex-start;
  }

  .countdown-item {
    min-width: 64px;
  }

  .product-info {
    padding: var(--sp-24);
  }

  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-24);
  }

  .countdown-heading {
    font-size: var(--fs-xl);
  }

  .exit-popup-title {
    font-size: var(--fs-2xl);
  }

  .sticky-mobile-cta {
    display: none;
  }
}

/* ---- Sticky Mobile CTA ---- */
.sticky-mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  padding: var(--sp-12) var(--sp-16);
  background: linear-gradient(to top, rgba(10, 10, 15, 0.98) 0%, rgba(10, 10, 15, 0.95) 100%);
  border-top: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.sticky-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-8);
  width: 100%;
  padding: var(--sp-16) var(--sp-24);
  background: linear-gradient(135deg, var(--clr-success) 0%, #1DA851 100%);
  color: var(--clr-ivory);
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wide);
  border-radius: var(--radius-md);
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  transition: all 0.3s var(--ease-out);
}

.sticky-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
}

.sticky-cta-note {
  font-size: var(--fs-xs);
  color: var(--clr-gold);
  text-align: center;
  margin: var(--sp-6) 0 0;
  letter-spacing: var(--ls-wide);
}

@media (min-width: 768px) {
  .sticky-mobile-cta {
    display: none;
  }
}
