/* =============================================
   RejuFem PDP — styles.css
   Design system: Inter + Lora, plum accent (#7C3AED)
   ============================================= */

/* --- Self-hosted Lora 700 (headings only — latin only) --- */
@font-face { font-family:'Lora'; font-style:normal; font-weight:700; font-display:swap; src:url(lora-latin-700.woff2) format('woff2'); }

/* --- Self-hosted Inter (body — latin only) --- */
@font-face { font-family:'Inter'; font-style:normal; font-weight:400; font-display:swap; src:url(inter-latin-400.woff2) format('woff2'); }
@font-face { font-family:'Inter'; font-style:normal; font-weight:500; font-display:swap; src:url(inter-latin-500.woff2) format('woff2'); }
@font-face { font-family:'Inter'; font-style:normal; font-weight:600; font-display:swap; src:url(inter-latin-600.woff2) format('woff2'); }
@font-face { font-family:'Inter'; font-style:normal; font-weight:700; font-display:swap; src:url(inter-latin-700.woff2) format('woff2'); }

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --plum: #7E3AF2;
  --plum-dark: #6D28D9;
  --plum-light: #DDD0F0;
  --plum-bg: #F3EEFF;
  --gold: #F59E0B;
  --gold-light: #FEF3C7;
  --sage: #10B981;
  --sage-light: #D1FAE5;
  --sage-dark: #065F46;
  --dark: #1E1B4B;
  --white: #FFFFFF;
  --bg: #FAFAF8;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --red: #DC2626;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-lg: 0 4px 16px rgba(0,0,0,0.12);

  /* Lavender palette (legacy --green-* names kept for compatibility) */
  --green-900: #2D1B4E;
  --green-800: #3C2568;
  --green-700: #5A3D8F;
  --green-600: #7B5CB5;
  --green-500: #9B7ED8;
  --green-400: #C5B4E3;
  --green-200: #E8DEFF;
  --green-100: #F3EEFF;
  --green-50: #FAF7FF;
  --lavender-50: #FAF7FF;
  --lavender-100: #F3EEFF;
  --lavender-200: #E8DEFF;
  --lavender-300: #D4C4F0;
  --gold-500: #EAB308;
  --gold-400: #FACC15;
  --red-500: #EF4444;
  --red-100: #FEE2E2;
  --orange-500: #F97316;
  --orange-100: #FFEDD5;
  --gray-900: #1a1a1a;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius-lg: 20px;
  --shadow-md: 0 4px 16px rgba(0,0,0,0.1), 0 8px 32px rgba(0,0,0,0.06);
  --transition: 0.3s ease;

  /* Quiz tier variables */
  --trustpilot: #00B67A;
  --tier-moderate: #EAB308;
  --tier-moderate-bg: #FEF9C3;
  --tier-advanced: #F97316;
  --tier-advanced-bg: #FFF7ED;
  --tier-severe: #EF4444;
  --tier-severe-bg: #FEF2F2;
  --offer-bg: #F8FAFC;
  --font-heading: 'Lora', Georgia, serif;
  --font-serif: 'Lora', Georgia, serif;
}

html { -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.25; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

.section-title {
  font-family: var(--font-heading);
  font-size: 28px;
  text-align: center;
  margin-bottom: 8px;
  color: #7B5CB5;
}
.section-sub {
  font-size: 16px;
  text-align: center;
  color: var(--gray-500);
  margin-bottom: 32px;
}

.stars { color: var(--gold); font-size: 16px; letter-spacing: 1px; }
.stars-lg { color: var(--gold); font-size: 22px; letter-spacing: 2px; }

/* =============================================
   1. TOP BANNER
   ============================================= */
.top-banner {
  background: var(--plum);
  color: var(--white);
  text-align: center;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
}
.top-banner strong { font-weight: 700; }

/* =============================================
   2. HERO
   ============================================= */
.hero {
  padding: 0 0 32px;
  background: var(--white);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Hero Text (right) — single column on desktop */
.hero-text {
  grid-column: 2;
  grid-row: 1;
  padding-top: 16px;
}
.hero-text-top { }
.hero-text-bottom { }

/* Hero Image (left on desktop, first on mobile) */
.hero-image-wrap {
  grid-column: 1;
  grid-row: 1 / span 2;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: sticky;
  top: 20px;
  align-self: start;
}

/* Hero Offer (right bottom) — bundle selector */
.hero-offer {
  grid-column: 2;
  grid-row: 2;
  position: sticky;
  top: 20px;
}
.hero-review-card {
  position: relative;
  background: #FDF8F4;
  border-radius: 16px;
  padding: 18px 20px;
  margin: 28px auto 0;
  max-width: 420px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.hrc-track-wrap { overflow: hidden; }
.hrc-track { display: flex; transition: transform 0.4s ease; }
.hrc-slide { flex: 0 0 100%; min-width: 0; display: flex; align-items: flex-start; gap: 14px; }
.hrc-avatar { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 2px solid #EDE5DA; }
.hrc-content { flex: 1; min-width: 0; }
.hrc-text { font-size: 14px; line-height: 1.55; color: var(--gray-700); margin: 0 0 10px; font-style: italic; }
.hrc-meta { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.hrc-name { font-size: 13px; font-weight: 600; color: var(--dark); display: flex; align-items: center; gap: 4px; }
.hrc-stars { color: var(--gold); font-size: 13px; letter-spacing: 1px; }
.hrc-nav { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 14px; }
.hrc-dots { display: flex; gap: 8px; }
.hrc-dot { width: 8px; height: 8px; border-radius: 50%; background: #E2C5B8; transition: background 0.2s; cursor: pointer; }
.hrc-dot.active { background: #D4836A; }
/* Hero Image Slider */
.hero-slider {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: var(--white);
  width: 100%;
  border: none;
}
.hero-slider-track {
  display: flex;
  transition: transform 0.15s ease;
}
.hero-slide {
  flex: 0 0 100%;
  min-width: 100%;
}
.hero-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
/* Thumbs nav wrapper — arrows + thumbnails in a row */
.hero-thumbs-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  width: 100%;
}
.hero-slider-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--lavender-300);
  color: var(--plum);
  font-size: 24px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s;
  padding: 0;
}
.hero-slider-arrow:hover {
  background: var(--lavender-200);
}

.hero-slider-thumbs {
  display: flex;
  gap: 8px;
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  padding: 4px;
  scrollbar-width: none;
}
.hero-slider-thumbs::-webkit-scrollbar { display: none; }
.hero-thumb {
  flex: 0 0 calc((100% - 44px) / 6.5);
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  border: none;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  cursor: pointer;
  padding: 0;
  background: var(--white);
  transition: box-shadow 0.2s;
}
.hero-thumb.active {
  box-shadow: 0 0 0 2px var(--plum), 0 1px 4px rgba(0,0,0,0.08);
}
.hero-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-product-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(90, 61, 143, 0.18), 0 2px 8px rgba(0,0,0,0.06);
}

.product-card-reviews {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.review-count { font-size: 13px; color: var(--gray-500); }

.product-title {
  font-size: 28px;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.product-title .highlight {
  color: var(--plum);
}
.product-title strong {
  font-weight: 800;
}

/* Hero Benefits with circular icons */
.hero-benefits {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 6px;
}
.hero-benefit-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-benefit-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--lavender-200);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-benefit-row span {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.4;
}

/* Batch Shipping Scarcity */
.batch-shipping {
  background: linear-gradient(180deg, var(--lavender-300) 0%, var(--white) 50%, var(--lavender-200) 100%);
  border-radius: var(--radius);
  padding: 8px 8px;
  margin-bottom: 6px;
}
.batch-shipping-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1px;
}
.batch-shipping-sub {
  font-size: 12px;
  color: var(--gray-500);
  margin-bottom: 2px;
}
.batch-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  margin-bottom: 2px;
  min-height: 28px;
  font-size: 11px;
}
.batch-row:last-child { margin-bottom: 0; }
.batch-sold-out {
  background: var(--gray-50);
  color: var(--gray-400);
  text-decoration: line-through;
}
.batch-sold-out .batch-status {
  text-decoration: none;
  font-weight: 600;
}
.batch-active {
  background: var(--plum);
  color: var(--white);
  font-weight: 700;
}
.batch-upcoming {
  background: var(--white);
  color: var(--gray-500);
  border: 1px solid var(--lavender-300);
}
.batch-upcoming .batch-status { font-weight: 600; }

/* Bundle selector (radio cards) */
.product-bundles {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 6px;
}

.bundle-option {
  position: relative;
  display: block;
  cursor: pointer;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  transition: all 0.2s;
  background: var(--white);
}
.bundle-option input { position: absolute; opacity: 0; pointer-events: none; }

.bundle-option-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 10px;
}

.bundle-option:has(input:checked) {
  border-color: var(--plum);
  background: var(--plum-bg);
}

.bundle-option:hover { border-color: var(--plum-light); }

.bundle-option.popular,
.bundle-option:has(.bundle-option-badge) {
  margin-top: 3px;
}
.bundle-option-badge {
  position: absolute;
  top: -12px;
  left: 16px;
  z-index: 1;
  background: var(--plum);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 4px;
  letter-spacing: 0.02em;
}
.bundle-option-badge.value-badge { background: var(--sage-dark); }

.bundle-bonus {
  background: var(--lavender-100);
  color: var(--plum-dark);
  font-size: 13px;
  font-weight: 600;
  padding: 3px 10px;
}
.bundle-bonus + .bundle-bonus {
  margin-top: 2px;
}
.bundle-bonus:last-child {
  border-radius: 0 0 10px 10px;
}
.bundle-option:has(input:checked) .bundle-bonus {
  background: var(--lavender-200);
}
.bundle-card-bonus {
  background: var(--lavender-100);
  color: var(--plum-dark);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
}

.bundle-option-name { font-weight: 700; font-size: 16px; display: block; }
.bundle-option-sub { font-size: 12px; color: var(--gray-500); display: block; }

.bundle-option-right { text-align: right; }
.bundle-option-price { font-weight: 800; font-size: 20px; color: var(--dark); }
.bundle-option-per { font-size: 12px; color: var(--gray-500); }
.bundle-option-was { display: block; font-size: 12px; color: var(--gray-400); }
.bundle-option-save { display: block; font-size: 14px; font-weight: 700; color: var(--sage); }

/* CTA Button */
.cta-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--green-600), var(--green-700));
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 14px rgba(123, 92, 181, 0.35);
}
.cta-btn:hover { background: linear-gradient(135deg, var(--green-500), var(--green-600)); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(123, 92, 181, 0.45); }
.cta-btn:active { transform: scale(0.98); }

.cta-btn-secondary {
  display: inline-block;
  width: auto;
  padding: 14px 32px;
  white-space: nowrap;
}

.payment-row {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}
.payment-icons { opacity: 0.8; max-width: 280px; height: auto; }

.safe-checkout-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 6px;
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 16px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--gray-100);
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--gray-600);
}
.hero-trust-item svg { flex-shrink: 0; }

.urgency-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 12px;
  color: #065F46;
  font-weight: 600;
  background: var(--sage-light);
  border-radius: 8px;
  padding: 6px 12px;
  white-space: nowrap;
}
.urgency-dot { color: var(--sage); }
.urgency-strip #urgencyShipDate,
.urgency-strip #ordersCounter { color: var(--dark); font-weight: 700; }

.product-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}
.trust-micro {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--gray-500);
  font-weight: 500;
}

/* =============================================
   3. TRUST BAR
   ============================================= */
.trust-bar {
  padding: 32px 0;
  background: var(--white);
  border-top: none;
  border-bottom: none;
}
.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.trust-icon { flex-shrink: 0; }
.trust-text strong { display: block; font-size: 15px; color: var(--dark); }
.trust-text span { font-size: 14px; color: var(--gray-500); }

/* =============================================
   DOCTOR ENDORSEMENT (in hero)
   ============================================= */
.doctor-endorsement {
  margin: 24px auto 0;
  max-width: 720px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 0 0 0 20px;
  position: relative;
  box-shadow: var(--shadow-md);
}
.doctor-endorsement-label {
  position: absolute;
  top: -10px;
  left: 20px;
  background: var(--plum);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 12px;
  border-radius: 4px;
}
.doctor-endorsement-inner {
  display: flex;
  gap: 16px;
  align-items: stretch;
}
.doctor-endorsement-text { flex: 1; padding: 28px 0; }
.doctor-endorsement-photo {
  flex: 0 0 38%;
  overflow: hidden;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.doctor-endorsement-photo img,
.doctor-endorsement-photo .img-placeholder {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.founder-quote {
  font-size: 12px;
  color: var(--gray-700);
  font-style: italic;
  line-height: 1.55;
  margin-bottom: 8px;
}
.founder-cite {
  font-size: 12px;
  color: var(--gray-500);
  font-style: normal;
}



/* =============================================
   QUIZ SECTIONS CONTAINER
   ============================================= */
.quiz-sections {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 20px 40px;
}


/* =============================================
   PROTOCOL CARDS (from quiz)
   ============================================= */
.protocol-cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 32px;
}
.protocol-card {
  background: var(--white);
  border-radius: 16px;
  padding: 24px 22px 22px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  text-align: center;
  position: relative;
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.protocol-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.proto-header {
  margin-bottom: 8px;
}
.proto-step-num {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--gray-400);
}
.proto-1 .proto-step-num { color: #7C3AED; }
.proto-2 .proto-step-num { color: #10B981; }
.proto-3 .proto-step-num { color: #D97706; }
.proto-name {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--gray-800);
  margin: 0 0 10px;
  line-height: 1.2;
}
.proto-badge {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}
.proto-badge-purple { background: #F3EAFF; color: #7C3AED; }
.proto-badge-green { background: #E6FFF5; color: #059669; }
.proto-badge-gold { background: #FFF8E6; color: #B45309; }
.proto-desc {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.55;
  margin: 0;
}
.protocol-clinical-stat {
  font-weight: 700;
  color: var(--gray-800);
}
.proto-connector {
  display: flex;
  justify-content: center;
  padding: 2px 0;
}
.proto-connector-line {
  width: 2px;
  height: 28px;
  background: linear-gradient(to bottom, var(--gray-200), var(--gray-300));
  border-radius: 1px;
}
.proto-1 { border-left: 3px solid #7C3AED; }
.proto-2 { border-left: 3px solid #10B981; }
.proto-3 { border-left: 3px solid #D97706; }


/* =============================================
   CLINICAL HIGHLIGHTS (from quiz)
   ============================================= */
.clinical-highlights {
  background: linear-gradient(135deg, #F0FDF4 0%, #ECFDF5 100%);
  border: 1px solid rgba(16,185,129,0.15);
  border-radius: 16px;
  padding: 22px 20px 18px;
  margin-bottom: 32px;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.clinical-highlights.visible {
  opacity: 1;
}
.ch-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.ch-icon { font-size: 20px; }
.ch-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-800);
  margin: 0;
  line-height: 1.3;
}
.ch-lead {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 16px;
}
.ch-bullets {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ch-bullet {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(124,58,237,0.08);
  border-radius: 12px;
  padding: 14px;
}
.ch-bullet-icon {
  font-size: 20px;
  flex-shrink: 0;
  width: 28px;
  text-align: center;
  line-height: 1.4;
}
.ch-bullet-body { flex: 1; }
.ch-bullet-title {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #047857;
  margin-bottom: 4px;
}
.ch-bullet-text {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.55;
  margin: 0;
}
.ch-source {
  font-size: 16px;
  color: var(--gray-400);
  font-style: italic;
  margin-top: 14px;
  padding-top: 10px;
  border-top: 1px solid rgba(124,58,237,0.08);
}


/* =============================================
   COUPON BANNER (from quiz)
   ============================================= */
.coupon-banner {
  position: relative;
  background: var(--white);
  border: 2px dashed var(--plum);
  border-radius: 14px;
  margin: 0 0 20px;
  overflow: visible;
}
.coupon-notch {
  position: absolute;
  top: 50%;
  width: 18px;
  height: 18px;
  background: var(--offer-bg, #F9F5FF);
  border-radius: 50%;
  transform: translateY(-50%);
  border: 2px dashed var(--plum);
  z-index: 2;
}
.coupon-notch-left { left: -10px; border-right-color: transparent; }
.coupon-notch-right { right: -10px; border-left-color: transparent; }
.coupon-inner {
  display: flex;
  align-items: center;
  padding: 16px 24px;
  gap: 16px;
}
.coupon-scissors {
  font-size: 18px;
  opacity: 0.4;
  flex-shrink: 0;
}
.coupon-main { flex: 1; }
.coupon-badge {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: var(--plum);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.coupon-code-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.coupon-code-box {
  font-family: 'Courier New', monospace;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--dark);
  background: rgba(124,58,237,0.06);
  padding: 4px 14px;
  border-radius: 6px;
  border: 1px solid rgba(124,58,237,0.15);
}
.coupon-applied {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  font-weight: 700;
  color: var(--sage);
}
.coupon-divider {
  width: 1px;
  height: 48px;
  background: repeating-linear-gradient(to bottom, var(--plum) 0, var(--plum) 4px, transparent 4px, transparent 8px);
  opacity: 0.4;
  flex-shrink: 0;
}
.coupon-timer-wrap {
  text-align: center;
  flex-shrink: 0;
}
.coupon-timer-label {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--gray-400);
  margin-bottom: 2px;
}
.coupon-timer-value {
  font-family: 'Courier New', monospace;
  font-size: 24px;
  font-weight: 800;
  color: var(--plum);
}
.discount-included-note {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--sage);
  margin: 8px 0 4px;
}


/* =============================================
   REVIEWS AGGREGATE (from quiz)
   ============================================= */
.reviews-aggregate {
  text-align: center;
  margin-bottom: 16px;
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.4;
}
.ra-stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 4px;
}
.ra-text strong { color: var(--dark); }


/* =============================================
   SOCIAL BADGE (from quiz)
   ============================================= */
.social-badge-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
}
.social-badge {
  background: var(--plum);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 8px 20px;
  border-radius: 6px;
  text-transform: uppercase;
  animation: badgeBounce 2s ease-in-out infinite;
  border: 2px solid #6d28d9;
  box-shadow: 0 2px 8px rgba(124,58,237,0.35);
}
.social-badge-arrow {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid var(--plum);
  animation: badgeBounce 2s ease-in-out infinite;
}


/* =============================================
   BUNDLE SELECTOR / CARDS (from quiz)
   ============================================= */
.bundle-selector {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}
.bundle-card {
  background: #fff;
  border: 2px solid var(--gray-200);
  border-radius: 16px;
  position: relative;
  overflow: visible;
  transition: transform 0.2s, box-shadow 0.2s;
}
.bundle-card.popular { order: -1; }
.bundle-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(124,58,237,0.12);
}
.bundle-card.popular {
  border-color: var(--plum);
  border-width: 2.5px;
  box-shadow: 0 4px 24px rgba(124,58,237,0.25);
  animation: plumGlow 2s ease-in-out infinite;
}
.bundle-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  z-index: 1;
}
.popular-badge {
  background: var(--plum);
  color: #fff;
}
.value-badge {
  background: var(--sage);
  color: #fff;
}
.bundle-card-inner {
  padding: 24px 20px 20px;
  text-align: center;
}
.bundle-header {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.bundle-subtitle {
  font-size: 16px;
  color: var(--gray-500);
  margin-bottom: 14px;
}
.bundle-img {
  text-align: center;
  margin-bottom: 14px;
}
.bundle-img img,
.bundle-product-img {
  width: 100%;
  max-width: 180px;
  height: auto;
  margin: 0 auto;
}
.bundle-pricing {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 4px;
}
.bundle-price {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 700;
  color: var(--dark);
}
.bundle-price small { font-size: 24px; }
.bundle-per {
  font-size: 17px;
  color: var(--gray-500);
}
.bundle-you-save {
  font-size: 17px;
  color: var(--sage);
  margin-bottom: 12px;
  font-weight: 500;
}
.bundle-you-save strong { font-weight: 700; }
.bundle-price-details {
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 10px 0;
  margin-bottom: 14px;
}
.bundle-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  color: var(--gray-500);
  padding: 3px 0;
}
.bundle-price-row s { color: var(--gray-400); }
.bundle-price-row.total-row { font-weight: 600; color: var(--dark); }
.bundle-price-row.total-row strong { color: var(--dark); }
.bundle-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
  font-size: 16px;
  color: var(--gray-600);
  text-align: left;
}
.bundle-details li::before {
  content: '\2713';
  color: var(--sage);
  font-weight: 700;
  margin-right: 6px;
}
.bundle-cta {
  display: block;
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--green-600), var(--green-700));
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 14px rgba(123, 92, 181, 0.35);
}
.bundle-cta:hover {
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(123, 92, 181, 0.45);
}
.bundle-cta:active {
  transform: scale(0.98);
}
.bundle-card.popular .bundle-cta {
  background: linear-gradient(135deg, var(--green-600), var(--green-700));
  color: var(--white);
}
.bundle-card.popular .bundle-cta:hover {
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
}
.bundle-safe-checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 16px;
  color: var(--gray-400);
  margin-top: 12px;
  font-weight: 500;
}
.secure-icon {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.bundle-safe-text {
  font-size: 16px;
  color: var(--gray-400);
  text-align: center;
  margin-top: 6px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.bundle-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 16px;
  color: var(--gray-400);
  margin-top: 6px;
  flex-wrap: wrap;
}


/* =============================================
   POST-BUNDLE TRUST (from quiz)
   ============================================= */
.post-bundle-trust {
  margin-top: 20px;
  margin-bottom: 16px;
}
.cert-badges-inline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 14px;
}
.cert-inline {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-600);
}
.guarantee-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.4;
}
.guarantee-row strong { color: var(--dark); }


/* =============================================
   TESTIMONIALS (from quiz)
   ============================================= */
.testimonials-section { margin-top: 48px; margin-bottom: 48px; padding-top: 16px; }
.testimonials-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-800);
  text-align: center;
  margin-bottom: 6px;
}
.tp-header {
  text-align: center;
  margin-bottom: 18px;
}
.tp-stars-summary {
  display: inline-flex;
  gap: 2px;
  margin-bottom: 6px;
}
.tp-stars-summary span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: #00B67A;
  color: #fff;
  font-size: 16px;
  line-height: 1;
}
.tp-rated {
  display: block;
  font-size: 16px;
  color: var(--gray-700);
  margin-top: 4px;
}
.tp-rated strong { color: var(--gray-900); }
.tp-count {
  display: block;
  font-size: 16px;
  color: var(--gray-400);
  margin-top: 2px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-top: 3px solid #00B67A;
  border-radius: 4px;
  padding: 24px;
  display: flex;
  gap: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s;
}
.testimonial-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.testimonial-content { flex: 1; display: flex; flex-direction: column; }
.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2.5px solid var(--gray-100);
}
.testimonial-footer {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--gray-100);
}
.testimonial-name {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}
.testimonial-footer .testimonial-name {
  font-style: normal;
}
.testimonial-stars {
  display: inline-flex;
  gap: 2px;
  margin-bottom: 10px;
}
.testimonial-stars span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: #00B67A;
  color: #fff;
  font-size: 16px;
  line-height: 1;
}
.testimonial-quote {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 14px;
  flex: 1;
}
.testimonial-title {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.testimonial-date {
  font-size: 14px;
  color: var(--gray-400);
  margin-top: 8px;
}
.testimonial-result {
  display: inline-block;
  background: var(--sage-light);
  color: var(--sage-dark);
  font-size: 16px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 10px;
}
.testimonials-extra { display: none; margin-top: 16px; }
.testimonials-extra.visible { display: grid; }
.show-more-btn {
  display: block;
  margin: 12px auto 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--plum);
  cursor: pointer;
  background: none;
  border: none;
}
.show-more-btn:hover { text-decoration: underline; }


/* =============================================
   INGREDIENTS ACCORDION (from quiz)
   ============================================= */
.ingredients-section {
  margin-bottom: 48px;
}
.ingredients-accordion {
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  border: 1px solid var(--gray-200);
  overflow: hidden;
}
.ingredients-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 16px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.ingredients-trigger-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.ingredients-trigger-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 6px;
}
.ingredients-trigger-text {
  display: flex;
  flex-direction: column;
}
.ingredients-trigger-text strong {
  font-size: 16px;
  color: var(--gray-800);
}
.ingredients-trigger-text span {
  font-size: 16px;
  color: var(--gray-400);
  margin-top: 2px;
}
.ingredients-chevron {
  width: 20px;
  height: 20px;
  color: var(--gray-400);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.ingredients-accordion.open .ingredients-chevron {
  transform: rotate(180deg);
}
.ingredients-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.ingredients-accordion.open .ingredients-body {
  max-height: 800px;
}
.ingredients-body-inner {
  padding: 0 16px 20px;
}
.ingredients-sub {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.5;
  margin-bottom: 16px;
}
.ingredients-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
}
.ingredients-table thead th {
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-400);
  padding: 8px 12px;
  border-bottom: 2px solid var(--gray-200);
}
.ingredients-table tbody tr {
  border-bottom: 1px solid var(--gray-100);
}
.ingredients-table tbody tr:last-child { border-bottom: none; }
.ingredients-table tbody td {
  padding: 10px 12px;
  color: var(--gray-700);
  vertical-align: top;
}
.ingredients-table tbody td:last-child {
  text-align: right;
  font-weight: 600;
  white-space: nowrap;
  color: var(--gray-800);
}
.ing-name-col { width: 70%; }
.ing-amt-col { width: 30%; text-align: right !important; }
.ing-note {
  display: block;
  font-size: 16px;
  color: var(--gray-400);
  font-weight: 400;
  margin-top: 1px;
}
.ingredients-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  justify-content: center;
}
.ing-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-600);
  background: var(--sage-light);
  padding: 5px 12px;
  border-radius: 20px;
}


/* =============================================
   FACTORY (from quiz)
   ============================================= */
.factory-section {
  margin-bottom: 0;
  padding: 32px 0;
  border-top: none;
}
.section-label {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: #7B5CB5;
  text-align: center;
  margin-bottom: 8px;
}
.factory-sub {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.5;
  margin-bottom: 24px;
  text-align: center;
}
.factory-layout {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
.factory-img-wrap {
  width: 100%;
  max-width: 400px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
}
.factory-img {
  width: 100%;
  height: auto;
  display: block;
}
.factory-info {
  width: 100%;
}
.factory-badge-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.factory-badge {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
}
.factory-badge-icon {
  flex-shrink: 0;
  margin-top: 2px;
}
.factory-badge-text {
  display: flex;
  flex-direction: column;
}
.factory-badge-text strong {
  font-size: 16px;
  color: var(--gray-800);
  line-height: 1.3;
}
.factory-badge-text span {
  font-size: 16px;
  color: var(--gray-400);
  margin-top: 2px;
}


/* =============================================
   FAQ (from quiz)
   ============================================= */
.faq-section { margin-bottom: 48px; padding-top: 16px; }
.faq-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-800);
  text-align: center;
  margin-bottom: 16px;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid var(--gray-200);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-700);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
}
.faq-chevron {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  color: var(--gray-400);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding: 0 16px 14px;
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.6;
}


/* =============================================
   FINAL CTA SECTION (from quiz)
   ============================================= */
.final-cta-section {
  background: var(--white);
  padding: 32px 20px;
  border-top: none;
}
.final-cta-inner {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}
.final-mini-gauge {
  width: 80px;
  margin: 0 auto 12px;
}
.final-score-text {
  font-size: 16px;
  color: var(--gray-600);
  margin-bottom: 4px;
}
.final-severity-text {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}
.final-headline {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: #7B5CB5;
  margin-bottom: 8px;
}
.final-subtext {
  font-size: 16px;
  color: var(--gray-500);
  margin-bottom: 20px;
}
.final-cta {
  display: block;
  width: 100%;
  max-width: 360px;
  margin: 0 auto 12px;
  padding: 16px;
  background: var(--plum);
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
  border-radius: var(--radius);
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(124,58,237,0.3);
}
.final-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(124,58,237,0.4);
}
.final-guarantee {
  font-size: 13px;
  color: var(--gray-400);
}

.final-bundle-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--gray-600);
  margin-bottom: 16px;
}
.fbs-divider { color: var(--gray-300); }

/* =============================================
   COMPLIANCE FOOTER (from quiz)
   ============================================= */
.compliance-footer {
  padding: 40px 20px;
  text-align: center;
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.7;
  max-width: 860px;
  margin: 0 auto;
}
.site-footer {
  padding: 48px 20px 100px;
  background: #2a2230;
  color: #a09aa6;
}
.footer-container { max-width: 1100px; margin: 0 auto; }
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-brand-name {
  font-family: 'Lora', serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.footer-tagline { font-size: 11px; color: #b8b0be; margin-bottom: 12px; }
.footer-contact-info { display: flex; flex-direction: column; gap: 2px; font-size: 12px; }
.footer-contact-info a { color: #b8b0be; text-decoration: none; }
.footer-contact-info a:hover { color: #fff; }
.footer-contact-info span { color: #908a96; }
.footer-nav { display: flex; gap: 28px; flex-wrap: wrap; padding-top: 4px; }
.footer-nav a { color: #c8c2ce; font-size: 11px; text-decoration: none; }
.footer-nav a:hover { color: #fff; }
.footer-divider { height: 1px; background: #3e3546; margin: 32px 0; }
.footer-bottom { text-align: left; }
.footer-disclaimer { font-size: 10px; color: #807a86; line-height: 1.6; margin-bottom: 10px; }
.footer-copyright { font-size: 10px; color: #807a86; margin-top: 6px; }


/* =============================================
   STICKY BAR (from quiz)
   ============================================= */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid var(--gray-200);
  padding: 10px 16px;
  z-index: 100;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.sticky-bar.visible { transform: translateY(0); }
.sticky-bar-inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.sticky-bar-info {
  font-size: 16px;
  line-height: 1.3;
}
.sticky-bar-info strong {
  display: block;
  color: var(--dark);
  font-size: 16px;
}
.sticky-bar-info span { color: var(--gray-500); font-size: 13px; }
.sticky-bar-info s { color: var(--gray-400); opacity: 0.6; }
.sticky-bar-btn {
  background: var(--plum);
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.2s ease;
}
.sticky-bar-btn:hover { background: var(--plum-dark, #6d28d9); }
.sticky-bar-free-ship {}




/* =============================================
   TIER RECOMMENDATION (from quiz)
   ============================================= */
.tier-recommendation {
  background: linear-gradient(135deg, #F5F0FF 0%, #faf5ff 100%);
  border: 1px solid var(--plum);
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 16px;
}
.tier-rec-inner {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.tier-rec-icon {
  flex-shrink: 0;
  color: var(--plum);
  margin-top: 2px;
}
.tier-rec-text {
  font-size: 16px;
  line-height: 1.5;
  color: var(--dark);
  margin: 0;
}
.tier-rec-text strong { color: var(--plum); }
.tier-rec-info-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(124,58,237,0.2);
  font-size: 14px;
  color: var(--gray-500);
}
.bib-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  white-space: nowrap;
}
.bib-item strong { color: var(--plum); font-weight: 700; }
.bib-divider { color: var(--gray-300); font-size: 14px; }
.bib-pulse {
  width: 8px;
  height: 8px;
  background: var(--plum);
  border-radius: 50%;
  animation: bibPulse 1.5s ease-in-out infinite;
}
.bib-stock { font-weight: 600; color: var(--plum); }


/* =============================================
   PER-CARD SCARCITY (from quiz)
   ============================================= */
.card-scarcity {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 16px;
  color: #EF4444;
  font-weight: 500;
}
.scarcity-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #EF4444;
  animation: scarcityPulse 1.5s ease-in-out infinite;
}


/* =============================================
   KEYFRAMES
   ============================================= */
@keyframes badgeBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes plumGlow {
  0%, 100% { box-shadow: 0 4px 24px rgba(124,58,237,0.25); }
  50% { box-shadow: 0 8px 36px rgba(124,58,237,0.5), 0 0 12px rgba(124,58,237,0.2); }
}
@keyframes scarcityPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
@keyframes bibPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}


/* =============================================
   HOMEPAGE SECTIONS
   ============================================= */

/* --- Supporting classes --- */
.text-green { color: var(--green-600); }
.text-red { color: var(--red-500); }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; border: none; border-radius: var(--radius-sm);
  padding: 14px 32px; transition: all var(--transition); cursor: pointer;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--green-600), var(--green-700));
  color: var(--white); box-shadow: 0 4px 14px rgba(123, 92, 181, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(123, 92, 181, 0.45);
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
}
.btn-lg { padding: 18px 48px; font-size: 1.1rem; border-radius: var(--radius); }
.cta-micro { font-size: 1rem; color: var(--gray-500); margin-top: 12px; }

/* --- Decor --- */
.decor-circle { display: none !important; }
.decor-circle-legacy {
  position: absolute;
  border-radius: 50%;
  background: rgba(197, 180, 227, 0.2);
  will-change: transform;
}
.decor-arrow {
  position: absolute; width: 80px; height: 80px;
  border: 4px solid rgba(197, 180, 227, 0.5); border-radius: 50%;
  border-top-color: transparent; border-left-color: transparent;
}
.section-decor {
  display: none;
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

/* Timeline decor */
.timeline-section { position: relative; overflow: hidden; }
.tl-dc-1 { width: 500px; height: 500px; top: -150px; left: -250px; background: rgba(197, 180, 227, 0.1); }
.tl-dc-2 { width: 350px; height: 350px; bottom: -100px; right: -120px; background: rgba(197, 180, 227, 0.12); }

/* Final CTA decor */
.final-cta-section { position: relative; overflow: hidden; }
.cta-dc-1 { display: none; }
.cta-dc-2 { display: none; }

/* Hero section decor */
.hero { position: relative; overflow: hidden; }
.hero-dc-1 { display: none; }
.hero-dc-2 { display: none; }


/* =============================================
   PROMISE (from homepage)
   ============================================= */
.promise-section {
  padding: 32px 0; background: var(--white);
}
.promise-title {
  text-align: center; font-size: 1.5rem; font-weight: 800;
  color: var(--gray-900); margin-bottom: 32px;
}
.promise-icons {
  display: flex; justify-content: center; gap: 40px; flex-wrap: wrap;
}
.promise-item {
  display: flex; flex-direction: column; align-items: center;
  gap: 10px; text-align: center;
}
.promise-circle {
  width: 72px; height: 72px; border-radius: 50%;
  border: 2px solid var(--green-800); display: flex;
  align-items: center; justify-content: center;
  color: var(--green-800);
}
.promise-circle svg { width: 36px; height: 36px; }
.promise-item span {
  font-size: 1rem; font-weight: 600; color: var(--gray-700);
}


/* =============================================
   PRODUCT SHOWCASE (from homepage)
   ============================================= */
.showcase-section {
  position: relative; padding: 32px 0;
  background: var(--white);
  overflow: hidden;
}
.showcase-decor { display: none; }
.dc-4 { width: 450px; height: 450px; top: 50px; right: -200px; background: rgba(197, 180, 227, 0.3); }
.dc-5 { width: 500px; height: 500px; bottom: -100px; left: -220px; background: rgba(197, 180, 227, 0.3); }
.da-1 { top: 120px; right: 80px; transform: rotate(45deg); }
.da-2 { bottom: 100px; left: 60px; transform: rotate(-135deg); }
.showcase-section .container { position: relative; z-index: 1; }
.showcase-top {
  display: grid; grid-template-columns: 200px 1fr 200px;
  gap: 24px; align-items: center; margin-bottom: 48px; text-align: center;
}
.showcase-bottle-left img,
.showcase-bottle-right img {
  max-height: 280px; margin: 0 auto;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.15));
}
.showcase-bottle-right img { transform: none; }
.showcase-heading h2 { margin-bottom: 12px; color: #7B5CB5; }
.showcase-heading p { color: var(--gray-500); font-size: 1rem; }
.ingredient-cards-row {
  display: flex; gap: 16px; margin-bottom: 16px;
  justify-content: center; flex-wrap: wrap;
}
.ing-card {
  flex: 1; min-width: 260px; max-width: 360px;
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--green-200);
  transition: all var(--transition);
}
.ing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.ing-header {
  background: linear-gradient(135deg, var(--green-600), var(--green-700));
  color: var(--white); padding: 12px 20px;
  font-weight: 700; font-size: 1rem;
  display: flex; justify-content: space-between; align-items: center;
}
.ing-header span { font-weight: 600; font-size: 1rem; opacity: 0.9; }
.ing-body { padding: 16px 20px; }
.ing-img { width: 80px; height: 80px; object-fit: contain; margin: 0 auto 12px; display: block; }
.ing-body p { font-size: 1rem; line-height: 1.6; color: var(--gray-700); }
.ing-probiotic { border-color: var(--orange-500); }
.ing-header-fire {
  background: linear-gradient(135deg, var(--orange-500), #ea580c);
}
.probiotic-heading {
  text-align: center; margin: 40px 0 8px;
  font-size: 1.3rem; font-weight: 800; color: #7B5CB5;
}
.probiotic-sub {
  text-align: center; color: var(--gray-500);
  font-size: 1rem; margin-bottom: 24px;
}
.showcase-cta { text-align: center; margin-top: 40px; }


/* =============================================
   FEATURED REVIEW (single card below BMI)
   ============================================= */
.rev-featured-section {
  padding: 32px 0;
  background: var(--white);
}
.rev-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 16px;
  padding: 32px 24px 24px;
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1), 0 1px 4px rgba(0,0,0,0.06);
}
.rev-featured-img {
  width: 100%;
  margin-bottom: 16px;
  border-radius: 14px;
  border: 1px solid var(--gray-300);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1), 0 1px 4px rgba(0,0,0,0.06);
  object-fit: cover;
}
.rev-quote-open {
  position: absolute;
  top: -8px;
  left: 20px;
  font-size: 56px;
  font-weight: 800;
  color: var(--plum);
  line-height: 1;
}
.rev-quote-close {
  position: absolute;
  bottom: 8px;
  right: 20px;
  font-size: 56px;
  font-weight: 800;
  color: var(--plum);
  line-height: 1;
}
.rev-stars {
  color: var(--gold);
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.rev-title {
  font-size: 20px;
  font-weight: 800;
  color: #7B5CB5;
  margin-bottom: 14px;
  line-height: 1.3;
}
.rev-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--gray-600);
  margin-bottom: 20px;
}
.rev-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.rev-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.rev-author strong {
  display: block;
  font-size: 15px;
  color: var(--gray-800);
}
.rev-verified {
  font-size: 14px;
  color: var(--sage);
  font-weight: 500;
}

/* =============================================
   ALL REVIEWS (star breakdown + list)
   ============================================= */
.all-reviews-section {
  padding: 32px 0;
  background: var(--white);
}
.ar-summary {
  max-width: 480px;
  margin: 0 auto 28px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.ar-summary-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--plum-dark);
  margin-bottom: 6px;
}
.ar-summary-stars {
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 4px;
}
.ar-summary-stars strong { color: var(--gray-800); }
.ar-summary-count {
  font-size: 12px;
  color: var(--gray-500);
  margin-bottom: 16px;
}
.ar-bars { max-width: 320px; margin: 0 auto; }
.ar-bar-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.ar-bar-label {
  font-size: 14px;
  color: var(--gray-600);
  width: 50px;
  text-align: right;
  flex-shrink: 0;
}
.ar-bar-track {
  flex: 1;
  height: 8px;
  background: var(--gray-100);
  border-radius: 4px;
  overflow: hidden;
}
.ar-bar-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 4px;
}
.ar-bar-pct {
  font-size: 14px;
  color: var(--gray-500);
  width: 30px;
  flex-shrink: 0;
}
.ar-list {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 600px) {
  .ar-list { grid-template-columns: 1fr 1fr; max-width: 800px; }
}
.ar-review {
  background: var(--white);
  border-radius: 14px;
  padding: 20px;
  border: 1px solid var(--gray-200);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.ar-review-stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.ar-review-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.ar-review-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.ar-review-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--plum-dark);
}
.ar-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  color: var(--white);
  background: var(--gray-800);
  padding: 1px 6px;
  border-radius: 3px;
  margin-left: 6px;
  vertical-align: middle;
}
.ar-review-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--gray-600);
}
.ar-review.ar-hidden { display: none; }
.ar-load-more-wrap { text-align: center; margin-top: 20px; }
.ar-load-more {
  background: var(--white);
  border: 1px solid var(--lavender-300);
  color: var(--plum);
  font-size: 15px;
  font-weight: 600;
  padding: 10px 28px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}
.ar-load-more:hover { background: var(--lavender-100); }

/* =============================================
   AUTO-ROTATING FULL-WIDTH SLIDER
   ============================================= */
.auto-slider-section {
  padding: 32px 0;
  background: var(--white);
}
.auto-slider {
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--gray-300);
  position: relative;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1), 0 1px 4px rgba(0,0,0,0.06);
}
.auto-slider-track {
  display: flex;
  transition: transform 0.6s ease;
  width: 100%;
}
.auto-slide {
  flex: 0 0 100%;
  width: 100%;
  overflow: hidden;
}
.auto-slide img {
  width: 100%;
  aspect-ratio: 361 / 271;
  display: block;
  object-fit: cover;
}

/* =============================================
   PRODUCT INFO ACCORDION (below featured review)
   ============================================= */
.prod-info-section {
  padding: 0 0 32px;
  background: var(--white);
}
.prod-info-list {
  max-width: 480px;
  margin: 0 auto;
  border: 1px solid var(--lavender-200);
  border-radius: 12px;
  overflow: hidden;
}
.prod-info-item {
  border-bottom: 1px solid var(--lavender-200);
}
.prod-info-item:last-child { border-bottom: none; }
.prod-info-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 18px;
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-800);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 12px;
}
.prod-info-chevron {
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--plum);
}
.prod-info-item.open .prod-info-chevron {
  transform: rotate(180deg);
}
.prod-info-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.prod-info-item.open .prod-info-a {
  max-height: 400px;
}
.prod-info-a-inner {
  padding: 0 18px 16px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--gray-600);
}

/* =============================================
   BMI / WEIGHT LOSS CALCULATOR
   ============================================= */
.bmi-section {
  padding: 32px 0;
  background: var(--white);
}
.bmi-intro {
  text-align: center;
  color: var(--gray-500);
  margin-bottom: 28px;
  font-size: 16px;
}
.bmi-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: var(--shadow);
  max-width: 480px;
  margin: 0 auto;
}
/* Result card at top */
.bmi-result-top {
  background: var(--lavender-100);
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
  margin-bottom: 24px;
}
.bmi-result-top-label {
  font-size: 15px;
  color: var(--gray-600);
  margin-bottom: 4px;
}
.bmi-result-top-number {
  display: block;
  font-size: 40px;
  font-weight: 800;
  color: var(--gray-800);
  line-height: 1.1;
}
.bmi-result-top-period {
  font-size: 15px;
  color: var(--gray-500);
  margin-top: 2px;
}
.bmi-see-why {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--plum);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
}
.bmi-see-why:hover { text-decoration: underline; }
.bmi-see-why-arrow {
  font-size: 10px;
  transition: transform 0.3s ease;
}
.bmi-see-why.open .bmi-see-why-arrow {
  transform: rotate(180deg);
}
.bmi-see-why-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray-600);
  text-align: center;
  padding: 0 16px;
}
.bmi-see-why-body.open {
  max-height: 200px;
  padding: 12px 16px 0;
}
/* Value bar above slider */
.bmi-val-bar {
  background: var(--gray-100);
  border-radius: 8px;
  padding: 10px 16px;
  text-align: center;
  font-size: 17px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 6px;
}
.bmi-slider-group {
  margin-bottom: 20px;
}
.bmi-label {
  display: block;
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 8px;
}
.bmi-range {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 8px;
  border-radius: 4px;
  background: var(--lavender-200);
  outline: none;
}
.bmi-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--plum);
  cursor: pointer;
  border: 3px solid var(--white);
  box-shadow: 0 2px 6px rgba(126, 58, 242, 0.35);
}
.bmi-range::-moz-range-thumb {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--plum);
  cursor: pointer;
  border: 3px solid var(--white);
  box-shadow: 0 2px 6px rgba(126, 58, 242, 0.35);
}
/* BMI inline result */
.bmi-inline-result {
  text-align: center;
  font-size: 16px;
  color: var(--gray-700);
  margin: 20px 0 16px;
}
.bmi-inline-result strong {
  font-size: 20px;
  font-weight: 800;
}
/* Category card */
.bmi-cat-card {
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 16px;
  border: 1px solid #FEE2E2;
  background: #FEF2F2;
}
.bmi-cat-card.bmi-cat-normal {
  border-color: #D1FAE5;
  background: #ECFDF5;
}
.bmi-cat-card.bmi-cat-over {
  border-color: #FEF3C7;
  background: #FFFBEB;
}
.bmi-cat-title {
  font-weight: 700;
  font-size: 15px;
  color: var(--gray-800);
  margin-bottom: 6px;
}
.bmi-cat-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--gray-600);
}
.bmi-disclaimer {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.5;
  text-align: center;
}

/* =============================================
   TIMELINE (redesigned — arrow left, content right)
   ============================================= */
/* --- Image Card (above timeline) --- */
.img-card-section {
  padding: 32px 0;
  background: var(--white);
}
.img-card-wrap {
  max-width: 500px;
  margin: 0 auto;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--gray-300);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.img-card-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.specialist-section {
  padding: 32px 0;
  background: var(--white);
}

/* --- Review Image Slider (same style as B&A) --- */
.review-img-slider-section {
  padding: 32px 0;
  background: var(--white);
}
.review-img-slider {
  max-width: 500px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--gray-300);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.review-img-slider-track {
  display: flex;
  transition: transform 0.4s ease;
}
.review-img-slide {
  flex: 0 0 100%;
  min-width: 100%;
}
.review-img-slide img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.timeline-section {
  padding: 32px 0;
  background: var(--white);
}
.tl-list {
  max-width: 600px;
  margin: 36px auto 0;
  position: relative;
  padding-left: 18px;
}
/* Vertical line per item (not on last) */
.tl-list::before { display: none; }
.tl-item::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 28px;
  bottom: 0;
  width: 2px;
  background: var(--lavender-300);
  z-index: 0;
}
.tl-item:last-child::before {
  display: none;
}
.tl-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}
.tl-icon-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 32px;
  position: relative;
}
.tl-dot-new {
  width: 28px;
  height: 28px;
  background: var(--plum);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--plum);
}
.tl-connector { display: none; }
.tl-content {
  flex: 1;
  padding-bottom: 20px;
}
.tl-item:last-child .tl-content {
  padding-bottom: 0;
}
.tl-period {
  font-size: 17px;
  font-weight: 700;
  color: #7B5CB5;
  margin-bottom: 8px;
}
.tl-content p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--gray-600);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 16px 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.timeline-cta { text-align: center; margin-top: 40px; }


/* =============================================
   HOW TO USE (from homepage)
   ============================================= */
.howto-section { padding: 32px 0; background: var(--white); }
.howto-steps {
  display: flex; align-items: center; justify-content: center;
  gap: 0; margin: 32px 0;
}
.howto-number {
  font-size: 1.8rem; color: var(--plum); font-weight: 900;
}
.howto-line {
  width: 120px; height: 2px; border-top: 2px dashed var(--plum-light);
}
.howto-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; text-align: center;
}
.howto-card { padding: 16px; }
.howto-img-wrap {
  width: 180px; height: 180px; margin: 0 auto 20px;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 3px solid var(--plum-light); box-shadow: var(--shadow-md);
}
.howto-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
}
.howto-card h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--plum-dark); }
.howto-card p { font-size: 1rem; color: var(--gray-500); line-height: 1.6; }


/* =============================================
   NEW SECTIONS — UK v3 COPY
   ============================================= */

/* --- Utility: content-narrow + long-copy --- */
.content-narrow { max-width: 760px; margin: 0 auto; }
.long-copy p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 20px;
}
.long-copy p:last-child { margin-bottom: 0; }
.nhc-footnote {
  font-size: 14px;
  color: var(--gray-400);
  margin-top: 8px;
  font-style: italic;
}

/* --- Benefits Bar --- */
.benefits-bar {
  padding: 32px 0;
  background: var(--white);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.benefit-card {
  text-align: center;
  padding: 24px 16px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow);
}
.benefit-icon { margin-bottom: 12px; }
.benefit-icon-img img,
.benefit-icon-img video { width: 100%; height: auto; border-radius: 8px; box-shadow: var(--shadow); }
.benefit-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.benefit-card p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.5;
}

/* --- Problem Section --- */
/* Reveal Grid (two-column text + image layout) */
.reveal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.reveal-text { }
.reveal-img { display: flex; align-items: start; justify-content: center; }
.reveal-img img { border-radius: var(--radius); box-shadow: var(--shadow-md); }
.img-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--gray-100);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 16px;
  border: 2px dashed var(--gray-200);
}

.problem-section {
  padding: 32px 0;
  background: var(--white);
}
.future-pacing-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 32px 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  text-align: center;
}

/* --- Mechanism / Solution Section --- */
.mechanism-section {
  padding: 32px 0;
  background: var(--white);
}
.mechanism-subhead {
  font-size: 24px;
  font-weight: 700;
  color: var(--plum);
  margin-top: 40px;
  margin-bottom: 8px;
}
.mechanism-lead {
  font-size: 16px;
  color: var(--gray-600);
  margin-bottom: 24px;
}
.mechanism-ingredients {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 16px;
}
.mech-item {
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 4px solid var(--plum);
  box-shadow: var(--shadow);
}
.mech-item h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
.mech-item p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}
.mechanism-closer {
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-800);
  margin-top: 24px;
  line-height: 1.6;
}
.mechanism-intro {
  font-size: 1.05rem;
  color: var(--gray-600);
  margin-bottom: 32px;
  text-align: center;
}
.mechanism-cards-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.mechanism-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 16px;
  padding: 24px 20px 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1), 0 1px 4px rgba(0,0,0,0.06);
}
.mechanism-card-img img { width: 100%; margin-bottom: 16px; border-radius: 14px; border: 1px solid var(--gray-300); box-shadow: 0 4px 20px rgba(0,0,0,0.1), 0 1px 4px rgba(0,0,0,0.06); }
.mechanism-card-body h3 { font-size: 1.05rem; font-weight: 700; color: #7B5CB5; margin: 0 0 10px; }
.mechanism-card-body p { font-size: 1rem; color: var(--gray-600); line-height: 1.6; margin: 0 0 10px; }
.mechanism-card-body p:last-child { margin-bottom: 0; }


/* --- Risk Reversal Section --- */
.risk-reversal-section {
  padding: 32px 0;
  background: var(--white);
}
.risk-reversal-cta {
  text-align: center;
  margin-top: 32px;
}
.risk-reversal-sub {
  display: block;
  margin-top: 8px;
  font-size: 15px;
  color: var(--gray-500);
}

/* --- Urgency Section --- */
.urgency-section { padding: 32px 0; background: var(--white); }
.urgency-box {
  display: grid; grid-template-columns: auto 1fr;
  gap: 20px; align-items: center;
  background: linear-gradient(135deg, var(--green-50) 0%, var(--gold-light) 100%);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  max-width: 900px; margin: 0 auto;
}
.urgency-img img {
  max-height: 240px;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.15));
}
.urgency-content h3 { font-size: 1.2rem; margin-bottom: 10px; line-height: 1.4; }
.urgency-detail {
  display: flex; gap: 12px; align-items: flex-start;
  margin-bottom: 12px;
}
.urgency-badge-img { width: 64px; height: 64px; flex-shrink: 0; object-fit: contain; }
.urgency-detail p { font-size: 1rem; line-height: 1.6; color: var(--gray-700); }
.urgency-content .cta-micro { margin-top: 8px; }

/* --- FAQ Full Section --- */
.faq-section-full {
  padding: 32px 0;
  background: var(--white);
}



/* =============================================
   RESPONSIVE — COMBINED
   ============================================= */

/* --- 320px and below (very narrow) --- */
@media (max-width: 320px) {
  .urgency-strip { font-size: 10px; padding: 4px 8px; }
  .hrc-avatar { width: 36px; height: 36px; }
  .hrc-slide { gap: 8px; }
  .hero-trust-row { gap: 4px 8px; }
}

/* --- 480px and below --- */
@media (max-width: 480px) {
  .sticky-bar-free-ship { display: none; }

  .bib-divider:nth-child(4),
  .bib-item.bib-viewing { display: none; }

  .coupon-inner { padding: 14px 18px; gap: 12px; }
  .coupon-code-box { font-size: 18px; padding: 3px 10px; }
  .coupon-timer-value { font-size: 20px; }
  .coupon-notch { width: 14px; height: 14px; }
  .coupon-notch-left { left: -8px; }
  .coupon-notch-right { right: -8px; }

  .btn-lg { padding: 16px 32px; font-size: 1rem; }
  .dc-1, .dc-2, .dc-4, .dc-5 { display: none; }
  .showcase-top { gap: 16px; }

  /* Benefits: single column on narrow mobile */
  .benefits-grid { grid-template-columns: 1fr; }

  /* Testimonial cards: stack avatar + text */
  .testimonial-card { flex-direction: column; gap: 12px; }

  /* Final bundle summary: 2x2 grid */
  .final-bundle-summary { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 8px; }
  .fbs-divider { display: none; }
}

/* --- 600px and below (mobile) --- */
@media (max-width: 600px) {
  .urgency-box { grid-template-columns: 1fr; text-align: center; }
  .urgency-img img { max-height: 180px; margin: 0 auto; }
  .urgency-detail { flex-direction: column; align-items: center; text-align: center; }
  .urgency-badge-img { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-avatar { width: 64px; height: 64px; }

  .urgency-strip { white-space: normal; flex-direction: column; gap: 2px; font-size: 11px; }
  .urgency-dot { display: none; }

  .section-title { font-size: 22px; }
  .product-title { font-size: 20px; margin-bottom: 14px; }


  /* Factory badges: 1 column */
  .factory-badge-grid { grid-template-columns: 1fr; }

  .trust-bar-grid { grid-template-columns: 1fr; }
  .hero-trust-item span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

  .hero-slider { border-radius: 12px; }
  .hero-thumb { flex: 0 0 calc((100% - 28px) / 3.5); }

  .hero { padding: 0 0 32px; }

  .sticky-bar-info { min-width: 0; }
  .sticky-bar-info strong { font-size: 14px; }
  .sticky-bar-info span { font-size: 14px; }
}

/* --- 768px and below (tablet) --- */
@media (max-width: 768px) {
  .ingredient-cards-row { flex-direction: column; align-items: center; }
  .ing-card { max-width: 500px; min-width: unset; }
  .mechanism-cards-row { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }

  .howto-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
  .timeline-row { gap: 8px; }
  .timeline-card p { font-size: 1rem; }
  .timeline-section { padding: 32px 0; }

  .promise-icons { gap: 20px; }
  .promise-circle { width: 56px; height: 56px; }
  .promise-circle svg { width: 28px; height: 28px; }

  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .cost-table { min-width: 400px; }
}

/* --- Tablet compact (769–1100px) --- */
@media (min-width: 769px) and (max-width: 1100px) {
  .mechanism-cards-row { gap: 8px; }
  .mechanism-card { padding: 10px 10px 10px; border-radius: 10px; }
  .mechanism-card-img img { margin-bottom: 8px; border-radius: 8px; }
  .mechanism-card-body h3 { font-size: 0.82rem; margin: 0 0 4px; }
  .mechanism-card-body p { font-size: 0.78rem; line-height: 1.4; margin: 0 0 4px; }
  .ing-card { min-width: 180px; max-width: 280px; }
  .ing-header { padding: 6px 12px; font-size: 0.82rem; }
  .ing-body { padding: 10px 12px; }
  .ing-img { width: 50px; height: 50px; margin-bottom: 6px; }
  .ing-body p { font-size: 0.82rem; line-height: 1.4; }
}

/* --- min 768px (quiz tablet+) --- */
@media (min-width: 768px) {
  .quiz-sections {
    max-width: 860px;
  }

  .protocol-cards { max-width: 520px; margin-left: auto; margin-right: auto; }

  .bundle-card.popular { order: initial; }
  .bundle-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    width: 90vw;
    max-width: 960px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
  .bundle-card-inner { padding: 24px 16px 18px; }
  .bundle-img img, .bundle-product-img { max-width: 140px; }

  .faq-question { padding: 16px 20px; }
  .faq-answer-inner { padding: 0 20px 16px; }

  .ingredients-trigger-img { width: 56px; height: 56px; }

  .factory-layout { flex-direction: row; align-items: flex-start; }
  .factory-img-wrap { flex: 0 0 280px; }
  .factory-info { flex: 1; }

  .testimonials-extra.visible { margin-top: 20px; }

  .ch-title { font-size: 22px; }
  .proto-name { font-size: 26px; }
  .proto-desc { font-size: 17px; }
  .testimonials-title { font-size: 24px; }
  .faq-title { font-size: 24px; }
  .final-headline { font-size: 28px; }
}

/* --- Desktop only: hide sections between BMI and bottom FAQ --- */
@media (min-width: 901px) {
  .mobile-tablet-only { display: none; }
}

/* --- 900px and below (shop tablet) --- */
@media (max-width: 900px) {
  .hero-grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .hero-text { display: contents; }
  .hero-text-top { order: 3; }
  .hero-text-bottom { order: 4; }
  .hero-offer { order: 5; }
  .hero-offer { position: static; }
  .hero-image-wrap { display: contents; }
  .hero-slider { order: 1; border-radius: 12px; margin: 0 -20px 0; width: calc(100% + 40px); background: #FFFFFF; }
  .hero-thumbs-nav { order: 2; margin-top: 0; }
  .hero-slide img { border-radius: 0; }
  .hero-thumb { flex: 0 0 calc((100% - 28px) / 3.5); }
  .reveal-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero-review-card { order: 6; width: calc(100% - 48px); max-width: 320px; margin: 0 auto; }
  .hrc-avatar { width: 40px; height: 40px; }
  .hrc-slide { gap: 10px; }
  .reveal-img-right .reveal-img { order: -1; }
  .doctor-endorsement-label { top: -10px; left: 16px; }
  .trust-bar-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

/* --- min 1024px (quiz desktop) --- */
@media (min-width: 1024px) {
  .showcase-top { grid-template-columns: 200px 1fr 200px; }

  .timeline-row { grid-template-columns: 1fr auto 1fr !important; }
  .timeline-left { grid-template-columns: 1fr auto 1fr !important; }
  .timeline-bottle { display: block; }

  .bundle-selector { gap: 20px; }
  .bundle-card-inner { padding: 28px 20px 22px; }
  .bundle-img img, .bundle-product-img { max-width: 160px; }

  .testimonials-grid { gap: 24px; }

  .clinical-highlights { padding: 24px 28px; }
  .ch-title { font-size: 24px; }
  .proto-name { font-size: 28px; }
  .bundle-header { font-size: 28px; }
  .final-headline { font-size: 30px; }
}

/* --- max 1024px (homepage tablet) --- */
@media (max-width: 1024px) {
  .showcase-top { grid-template-columns: 1fr; }
  .showcase-bottle-left, .showcase-bottle-right { display: none; }

  .timeline-row { grid-template-columns: auto auto 1fr !important; }
  .timeline-left { grid-template-columns: 1fr auto 1fr !important; }
  .timeline-bottle { display: none; }
}

/* --- min 1280px (quiz wide desktop) --- */
@media (min-width: 1280px) {
  .bundle-selector { gap: 24px; }
  .bundle-card.popular { transform: scale(1.03); z-index: 1; }
  .bundle-card.popular:hover { transform: scale(1.05); }

  .testimonial-avatar { width: 80px; height: 80px; }
}
@media (max-width: 1024px) {
  .footer-top { flex-direction: column; text-align: center; align-items: center; gap: 24px; }
  .footer-contact-info { align-items: center; }
  .footer-nav { justify-content: center; }
  .footer-bottom { text-align: center; }
}
