/* ========================================================
   HER BIOTIC KANDIDA — MOFU LANDING PAGE
   Aesthetic: Intimate Editorial / Botanical Wellness
   Brand: Eko Škrnicl
   ======================================================== */

/* ---------- CUSTOM PROPERTIES ---------- */
:root {
  /* Brand */
  --color-primary: #A71962;
  --color-primary-dark: #8A1450;
  --color-primary-light: #C44D87;
  --color-primary-glow: rgba(167, 25, 98, 0.12);

  /* Palette */
  --color-bg: #FBF6F0;
  --color-bg-warm: #F5EDE3;
  --color-bg-rose: #FDF2F6;
  --color-surface: #FFFFFF;
  --color-text: #2D1B21;
  --color-text-muted: #6B5660;
  --color-text-light: #9A8B91;
  --color-accent-green: #6B8F71;
  --color-accent-green-light: #E8F2E9;
  --color-accent-pink: #F2D9E3;
  --color-border: #E8DDD2;
  --color-border-light: #F0E8DF;

  /* Typography */
  --font-display: Georgia, 'Times New Roman', serif;
  --font-body: Georgia, 'Times New Roman', serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Layout */
  --container-max: 1140px;
  --container-narrow: 780px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-pill: 100px;

  /* Shadows */
  --shadow-soft: 0 2px 20px rgba(45, 27, 33, 0.06);
  --shadow-card: 0 4px 32px rgba(45, 27, 33, 0.08);
  --shadow-elevated: 0 12px 48px rgba(45, 27, 33, 0.12);
}


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

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover {
  color: var(--color-primary-dark);
}

strong {
  font-weight: 600;
}

::selection {
  background: var(--color-accent-pink);
  color: var(--color-text);
}


/* ---------- CONTAINER ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}


/* ---------- TYPOGRAPHY ---------- */
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: var(--space-md);
  font-variation-settings: 'opsz' 32;
}

.section-title em {
  font-style: italic;
  color: var(--color-primary);
}

.section-intro {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 620px;
  margin-bottom: var(--space-lg);
}


/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  border-radius: var(--radius-pill);
}

.btn--primary {
  background: var(--color-primary);
  color: #fff;
  padding: 0.9rem 2.2rem;
  box-shadow: 0 4px 20px rgba(170, 26, 102, 0.25);
}

.btn--primary:hover {
  background: var(--color-primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(170, 26, 102, 0.35);
}

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

.btn--primary:disabled {
  background: var(--color-primary);
  opacity: 0.7;
  cursor: default;
  transform: none;
}

.btn--secondary {
  background: transparent;
  color: var(--color-primary);
  padding: 0.8rem 2rem;
  border: 1.5px solid var(--color-primary);
}

.btn--secondary:hover {
  background: var(--color-primary);
  color: #fff;
}

.btn--lg {
  padding: 1.05rem 2.8rem;
  font-size: 1.05rem;
}

.btn--sm {
  padding: 0.6rem 1.5rem;
  font-size: 0.85rem;
}

.btn--outline-sm {
  background: transparent;
  color: var(--color-text-muted);
  padding: 0.55rem 1.3rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn--outline-sm:hover {
  border-color: var(--color-text-muted);
  color: var(--color-text);
}

.btn--primary-sm {
  background: var(--color-primary);
  color: #fff;
  padding: 0.55rem 1.3rem;
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn--primary-sm:hover {
  background: var(--color-primary-dark);
}


/* ---------- REAL IMAGES ---------- */
.hero__img {
  width: 100%;
  height: auto;
  max-height: 540px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.philosophy__img {
  width: 100%;
  max-width: 460px;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.product__img {
  width: 100%;
  max-width: 520px;
  height: auto;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 1;
}

.protocol__img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
}

.placeholder-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-accent-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--color-primary);
  flex-shrink: 0;
}


/* ---------- SCROLL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }


/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(45, 27, 33, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1.2rem 1.25rem;
  transform: translateY(100%);
  animation: slideUp 0.5s 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes slideUp {
  to { transform: translateY(0); }
}

.cookie-banner__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-banner__inner p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
  line-height: 1.5;
  flex: 1;
  min-width: 260px;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}

.cookie-banner .btn--outline-sm {
  color: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.25);
}

.cookie-banner .btn--outline-sm:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}


/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(251, 246, 240, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border-light);
  transition: box-shadow 0.3s ease;
}

.header.is-scrolled {
  box-shadow: var(--shadow-soft);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.header__logo {
  display: flex;
  align-items: center;
}

.header__logo-img {
  height: 60px;
  width: auto;
  display: block;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.35rem;
  color: var(--color-text);
  letter-spacing: -0.02em;
  font-variation-settings: 'opsz' 20;
}

.header__nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

.header__nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.25s ease;
  position: relative;
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--color-primary);
  transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.header__nav a:hover {
  color: var(--color-text);
}

.header__nav a:hover::after {
  width: 100%;
}

.header__cart {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text);
  padding: 0.4rem;
  position: relative;
  transition: color 0.25s ease;
}

.header__cart:hover {
  color: var(--color-primary);
}

.header__cart-count {
  position: absolute;
  top: -2px;
  right: -6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding-top: calc(64px + var(--space-xl));
  padding-bottom: var(--space-2xl);
  position: relative;
  overflow: hidden;
}

/* Decorative organic shape */
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(ellipse, var(--color-primary-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.hero__content {
  max-width: 560px;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent-green);
  margin-bottom: var(--space-sm);
  position: relative;
  padding-left: 1.6rem;
}

.hero__eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-accent-green);
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.15;
  color: var(--color-text);
  margin-bottom: var(--space-md);
  font-variation-settings: 'opsz' 40;
}

.hero__title em {
  font-style: italic;
  color: var(--color-primary);
}

.hero__subtitle {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
  max-width: 480px;
}

.hero__image {
  position: relative;
}

/* Decorative corner accent */
.hero__image::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 80px;
  height: 80px;
  border: 2px solid var(--color-accent-pink);
  border-radius: var(--radius-lg);
  z-index: -1;
}


/* ============================================================
   PROOF BAR
   ============================================================ */
.proof-bar {
  background: #A71962;
  border-top: none;
  border-bottom: none;
  padding: var(--space-md) 0;
}

.proof-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.proof-bar__item {
  text-align: center;
  padding: 0.3rem 0.8rem;
}

.proof-bar__item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}

.proof-bar__item span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.02em;
}

.proof-bar__divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.25);
}


/* ============================================================
   SYMPTOMS
   ============================================================ */
.symptoms {
  padding: var(--space-2xl) 0;
}

.symptoms__inner {
  max-width: var(--container-narrow);
  text-align: center;
}

.symptoms__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: var(--space-lg);
  text-align: left;
}

.symptom-card {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 1rem 1.25rem;
  background: var(--color-surface);
  border: 1.5px solid var(--color-border-light);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  user-select: none;
}

.symptom-card:hover {
  border-color: var(--color-accent-pink);
  box-shadow: var(--shadow-soft);
}

.symptom-card:has(:checked) {
  border-color: var(--color-primary);
  background: var(--color-bg-rose);
  box-shadow: 0 0 0 3px var(--color-primary-glow);
}

.symptom-card__check {
  appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border: 2px solid var(--color-border);
  border-radius: 6px;
  flex-shrink: 0;
  position: relative;
  transition: all 0.25s ease;
  cursor: pointer;
}

.symptom-card__check:checked {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.symptom-card__check:checked::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 6px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.symptom-card__icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.symptom-card__label {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text);
}

.symptoms__result {
  text-align: center;
  padding: var(--space-md) var(--space-lg);
  background: var(--color-bg-rose);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-accent-pink);
  animation: fadeInUp 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.symptoms__result p {
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ============================================================
   EDUCATION (ROOT CAUSE)
   ============================================================ */
.education {
  padding: var(--space-2xl) 0;
  background: var(--color-surface);
  position: relative;
}

/* Decorative shape */
.education::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -100px;
  transform: translateY(-50%);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(ellipse, var(--color-accent-green-light) 0%, transparent 70%);
  pointer-events: none;
}

.education__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.education__text p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
  font-size: 1.02rem;
}

.education__text p:last-child {
  margin-bottom: 0;
}

.education__text p strong {
  color: var(--color-text);
}

.education__visual {
  display: flex;
  justify-content: center;
}


/* ============================================================
   VICIOUS CYCLE — CIRCULAR ANIMATED DIAGRAM
   ============================================================ */
.cycle {
  padding: var(--space-2xl) 0;
  text-align: center;
}

.cycle__inner {
  max-width: var(--container-narrow);
}

.cycle__diagram {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: var(--space-lg) auto;
  aspect-ratio: 1;
}

.cycle-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Animated arc stroke */
.cycle-arc {
  stroke-dashoffset: 400;
  transition: stroke-dashoffset 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.cycle__diagram.is-animated .cycle-arc {
  stroke-dashoffset: 0;
}

.cycle-arc--1 { transition-delay: 0.2s; }
.cycle-arc--2 { transition-delay: 0.6s; }
.cycle-arc--3 { transition-delay: 1s; }

.cycle-arc--loop {
  stroke-dashoffset: 400;
  transition: stroke-dashoffset 1.2s cubic-bezier(0.22, 1, 0.36, 1) 1.4s;
}

.cycle__diagram.is-animated .cycle-arc--loop {
  stroke-dashoffset: 0;
  animation: pulseLine 2.5s ease-in-out 2.8s infinite;
}

@keyframes pulseLine {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

/* Step cards positioned absolutely over the SVG */
.cycle__card {
  position: absolute;
  background: var(--color-surface);
  border: 1.5px solid var(--color-border-light);
  border-radius: var(--radius-md);
  padding: 0.8rem 1rem;
  width: 42%;
  max-width: 190px;
  text-align: center;
  transition: all 0.3s ease;
  opacity: 0;
  transform: scale(0.9);
}

.cycle__diagram.is-animated .cycle__card {
  opacity: 1;
  transform: scale(1);
}

.cycle__card--1 {
  top: 4%;
  left: 50%;
  transform: translateX(-50%) scale(0.9);
  transition-delay: 0.1s;
}
.cycle__diagram.is-animated .cycle__card--1 {
  transform: translateX(-50%) scale(1);
}

.cycle__card--2 {
  top: 38%;
  right: 2%;
  transition-delay: 0.4s;
}

.cycle__card--3 {
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%) scale(0.9);
  transition-delay: 0.7s;
}
.cycle__diagram.is-animated .cycle__card--3 {
  transform: translateX(-50%) scale(1);
}

.cycle__card--4 {
  top: 38%;
  left: 2%;
  transition-delay: 1s;
}

.cycle__card:hover {
  box-shadow: var(--shadow-card);
  border-color: var(--color-accent-pink);
}

.cycle__card .cycle__step-number {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-primary-glow);
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.3rem;
}

.cycle__card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
  font-variation-settings: 'opsz' 20;
}

.cycle__card p {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

.cycle__conclusion {
  margin-top: var(--space-md);
  font-size: 1.05rem;
  color: var(--color-text-muted);
}

.cycle__conclusion strong {
  color: var(--color-text);
}


/* ============================================================
   PHILOSOPHY (SOLUTION)
   ============================================================ */
.philosophy {
  padding: var(--space-2xl) 0;
  background: var(--color-surface);
}

.philosophy__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.philosophy__image {
  display: flex;
  justify-content: center;
}

.philosophy__list {
  list-style: none;
  margin-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.philosophy__list li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-left: 1.4rem;
  position: relative;
}

.philosophy__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent-green);
}

.philosophy__list li strong {
  font-size: 1rem;
  color: var(--color-text);
}

.philosophy__list li span {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}



/* ============================================================
   PRODUCT
   ============================================================ */
.product {
  padding: var(--space-2xl) 0;
  background: linear-gradient(135deg, #FDF2F6 0%, #FAE8EF 50%, #F5DAE6 100%);
  position: relative;
  overflow: hidden;
}

/* Decorative gradient */
.product::before {
  content: '';
  position: absolute;
  bottom: -200px;
  right: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(170, 26, 102, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.product__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.product__image {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.product__blob {
  position: absolute;
  inset: -15%;
  z-index: 0;
  pointer-events: none;
}

.product__image img {
  position: relative;
  z-index: 1;
  width: 90%;
  max-height: none;
  object-fit: contain;
}

.morph-blob {
  animation: morphBlob 12s ease-in-out infinite;
  transform-origin: center;
}

@keyframes morphBlob {
  0%, 100% {
    d: path("M 250 80 C 340 80, 420 140, 420 250 C 420 360, 340 420, 250 420 C 160 420, 80 360, 80 250 C 80 140, 160 80, 250 80 Z");
  }
  25% {
    d: path("M 260 70 C 360 90, 430 160, 410 260 C 390 370, 320 430, 230 430 C 140 430, 70 350, 90 240 C 110 130, 160 50, 260 70 Z");
  }
  50% {
    d: path("M 240 90 C 330 60, 440 150, 430 240 C 420 330, 360 440, 250 430 C 140 420, 60 340, 70 240 C 80 140, 150 120, 240 90 Z");
  }
  75% {
    d: path("M 270 75 C 370 100, 420 170, 400 270 C 380 370, 310 440, 220 420 C 130 400, 70 320, 100 230 C 130 140, 170 50, 270 75 Z");
  }
}

/* Star rating */
.product__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 0.5rem;
}

.product__star {
  color: #F5A623;
  font-size: 1.1rem;
}

/* Product title & subtitle */
.product__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: 0.2rem;
  line-height: 1.3;
}

.product__subtitle {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.product__hero-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.product__divider {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 0.75rem 0;
}

/* Availability */
.product__availability {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

.product__availability svg {
  flex-shrink: 0;
}

/* Description */
.product__desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

/* Variant selector */
.product__variants {
  margin-bottom: var(--space-md);
}

.product__variants-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}

.product__variants-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  align-items: stretch;
}

.product__variant {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 1.6rem 0.75rem 1.2rem;
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.product__variant:hover {
  border-color: var(--color-text-light);
  box-shadow: 0 2px 12px rgba(167, 25, 98, 0.06);
}

.product__variant input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.product__variant--active,
.product__variant:has(input:checked) {
  border-color: var(--color-primary);
  box-shadow: inset 0 0 0 0.5px var(--color-primary), 0 0 0 3px var(--color-primary-glow);
}

/* Best value card emphasis */
.product__variant--best {
  background: linear-gradient(180deg, #FDF2F6 0%, var(--color-surface) 100%);
}

.product__variant--best.product__variant--active,
.product__variant--best:has(input:checked) {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-glow), 0 4px 20px rgba(167, 25, 98, 0.10);
}

.product__variant-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.2rem 0.7rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  line-height: 1.4;
}

.product__variant-badge--best {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  padding: 0.25rem 0.8rem;
  font-size: 0.6rem;
  box-shadow: 0 2px 8px rgba(167, 25, 98, 0.25);
}

.product__variant-name {
  font-size: 0.95rem;
  color: var(--color-text);
  font-weight: 600;
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.product__variant-price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.3;
}

.product__variant-price s {
  color: var(--color-text-light);
  font-size: 0.8rem;
  font-weight: 400;
  margin-right: 0.2rem;
  text-decoration: line-through;
}

.product__variant-shipping {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.5rem;
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-accent-green);
  background: none;
  padding: 0;
}

/* Purchase type */
.product__purchase-type {
  margin-bottom: var(--space-lg);
}

.product__purchase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.product__purchase {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.25rem 0.75rem;
  min-height: 70px;
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.product__purchase:hover {
  border-color: var(--color-text-light);
  box-shadow: 0 2px 12px rgba(167, 25, 98, 0.06);
}

.product__purchase input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.product__purchase--active,
.product__purchase:has(input:checked) {
  border-color: var(--color-primary);
  box-shadow: inset 0 0 0 0.5px var(--color-primary), 0 0 0 3px var(--color-primary-glow);
}

.product__purchase-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-text);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.2rem 0.7rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  line-height: 1.4;
}

.product__purchase-name {
  font-size: 0.95rem;
  color: var(--color-text);
  font-weight: 600;
}

/* Subscription details */
.product__subscription {
  margin-top: 1rem;
}

.product__subscription-label {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.product__subscription-box {
  background: var(--color-blush);
  border: 2px solid var(--color-primary);
  border-radius: 8px;
  padding: 1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.product__subscription-box strong {
  font-size: 0.95rem;
  color: var(--color-text);
}

.product__subscription-price {
  font-size: 0.95rem;
  color: var(--color-text);
}

.product__subscription-price s {
  color: var(--color-muted);
  font-size: 0.85rem;
  margin-right: 0.3rem;
}

.product__subscription-qty {
  font-size: 0.85rem;
  color: var(--color-primary);
  font-weight: 600;
}

.product__subscription-policy {
  display: inline-block;
  margin-top: 0.6rem;
  font-size: 0.8rem;
  color: var(--color-text);
  text-decoration: underline;
}

.product__subscription-note {
  margin-top: 0.4rem;
  font-size: 0.85rem;
  color: var(--color-muted);
  text-align: center;
}

/* Subscription buy button */
#subscription-buy-btn {
  text-decoration: none;
}

#subscription-buy-btn .btn {
  background: var(--color-primary);
  color: #fff;
  border-radius: 100px;
  font-family: Georgia, serif;
  font-weight: 600;
  font-size: 15px;
  padding: 16px 36px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s ease;
}

#subscription-buy-btn .btn:hover {
  background: var(--color-primary-dark);
}

/* Buy button */
.product__buy-btn {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: var(--space-sm);
}

.product__buy-btn .btn--primary,
.product__buy-btn .btn[disabled] {
  background: var(--color-primary);
  box-shadow: none;
  border-radius: 4px;
}

.product__buy-btn .btn--primary:hover {
  background: var(--color-primary-dark);
}

/* Hide Shopify SDK's own variant selector, quantity, and price — we use our custom UI */
.product__buy-btn .shopify-buy__option-select-wrapper,
.product__buy-btn .shopify-buy__quantity,
.product__buy-btn .shopify-buy__product__variant-selectors,
.product__buy-btn [data-element="option-select"],
.product__buy-btn .shopify-buy__option-select {
  display: none !important;
}

/* Style the Shopify SDK button to match our design */
.product__buy-btn .shopify-buy__btn {
  background: var(--color-primary) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 100px !important;
  font-family: Georgia, serif !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  padding: 16px 36px !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  width: 100% !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.5rem !important;
  transition: background 0.2s ease !important;
}

.product__buy-btn .shopify-buy__btn:hover {
  background: var(--color-primary-dark) !important;
}

/* Hide any SVG icons the SDK injects */
.product__buy-btn .shopify-buy__icon {
  display: none !important;
}

.btn--full {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* Trust badges */
.product__trust-badges {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
}

.product__trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.4rem;
  flex: 1;
}

.product__trust-badge img {
  width: 42px;
  height: 42px;
  opacity: 0.7;
}

.product__trust-badge span {
  font-size: 0.75rem;
  color: var(--color-muted);
  line-height: 1.3;
}


/* ============================================================
   INGREDIENTS
   ============================================================ */
.ingredients {
  padding: var(--space-2xl) 0;
}

.ingredients__inner {
  text-align: center;
}

.ingredients__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  text-align: left;
  margin-top: var(--space-md);
}

.ingredients__card {
  padding: var(--space-md);
  background: var(--color-surface);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.ingredients__card:hover {
  box-shadow: var(--shadow-card);
  border-color: var(--color-accent-pink);
  transform: translateY(-2px);
}

.ingredients__card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--color-primary);
  margin-bottom: 0.4rem;
  font-variation-settings: 'opsz' 18;
  font-style: italic;
}

.ingredients__card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}


/* ============================================================
   RESULTS / STATS
   ============================================================ */
.results {
  padding: var(--space-2xl) 0;
  background: var(--color-text);
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Grain texture overlay */
.results::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  pointer-events: none;
  opacity: 0.5;
}

.results__inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.results .section-eyebrow {
  color: var(--color-primary-light);
}

.results .section-title {
  color: #fff;
}

.results .section-intro {
  color: rgba(255, 255, 255, 0.6);
  margin-left: auto;
  margin-right: auto;
}

.results__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.results__stat {
  padding: var(--space-lg) var(--space-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.3s ease;
}

.results__stat:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(170, 26, 102, 0.4);
}

.results__number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 300;
  color: var(--color-primary-light);
  display: block;
  margin-bottom: 0.5rem;
  line-height: 1;
  font-variation-settings: 'opsz' 48;
}

.results__stat p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.results__stat p strong {
  color: rgba(255, 255, 255, 0.9);
}


/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: var(--space-2xl) 0;
}

.testimonials__inner {
  text-align: center;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
  text-align: left;
}

.testimonial {
  background: var(--color-surface);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  transition: all 0.3s ease;
  position: relative;
}

.testimonial::before {
  content: '\201C';
  position: absolute;
  top: 0.5rem;
  right: 1.2rem;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--color-accent-pink);
  line-height: 1;
  pointer-events: none;
}

.testimonial:hover {
  box-shadow: var(--shadow-card);
}

.testimonial__stars {
  font-size: 0.85rem;
  color: #F0A500;
  letter-spacing: 2px;
  margin-bottom: var(--space-sm);
}

.testimonial__text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: var(--space-md);
  font-style: italic;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.testimonial__name {
  font-style: normal;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--color-text);
  display: block;
}

.testimonial__detail {
  font-size: 0.8rem;
  color: var(--color-text-light);
}

/* Doctor endorsement */
.testimonials__doctor {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  background: var(--color-bg-warm);
  border-radius: var(--radius-lg);
  text-align: left;
  border-left: 4px solid var(--color-accent-green);
}

.testimonials__doctor .placeholder-avatar {
  background: var(--color-accent-green-light);
  color: var(--color-accent-green);
  width: 56px;
  height: 56px;
  font-size: 0.85rem;
  font-weight: 700;
}

.testimonials__doctor p {
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: 0.5rem;
  font-style: italic;
}

.testimonials__doctor cite {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-weight: 500;
}


/* ============================================================
   PROTOCOL (HOW TO USE)
   ============================================================ */
.protocol {
  padding: var(--space-2xl) 0;
  background: var(--color-surface);
}

.protocol__inner {
  text-align: center;
}

.protocol__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
  text-align: center;
}

.protocol__step {
  position: relative;
}

.protocol__step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-sm);
  position: relative;
  z-index: 1;
}

.protocol__step-image {
  margin-bottom: var(--space-sm);
}

.protocol__step h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
  font-variation-settings: 'opsz' 20;
}

.protocol__step p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  max-width: 300px;
  margin: 0 auto;
  line-height: 1.6;
}


/* ============================================================
   GUARANTEE
   ============================================================ */
.guarantee {
  padding: var(--space-2xl) 0;
  text-align: center;
}

.guarantee__inner {
  max-width: 640px;
}

.guarantee__badge {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--color-accent-green-light);
  color: var(--color-accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
}

.guarantee__inner .section-title {
  color: var(--color-text);
}

.guarantee__inner p {
  font-size: 1.02rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.guarantee__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm) var(--space-lg);
}

.guarantee__trust span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-muted);
  position: relative;
  padding-left: 1.2rem;
}

.guarantee__trust span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent-green);
}


/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: var(--space-2xl) 0;
  background: var(--color-surface);
}

.faq__inner {
  max-width: var(--container-narrow);
  text-align: center;
}

.faq__list {
  margin-top: var(--space-lg);
  text-align: left;
}

.faq__item {
  border-bottom: 1px solid var(--color-border-light);
}

.faq__item:first-child {
  border-top: 1px solid var(--color-border-light);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text);
  cursor: pointer;
  list-style: none;
  transition: color 0.25s ease;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--color-text-light);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq__item[open] .faq__question::after {
  content: '−';
  color: var(--color-primary);
}

.faq__question:hover {
  color: var(--color-primary);
}

.faq__answer {
  padding-bottom: var(--space-md);
}

.faq__answer p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}


/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  padding: var(--space-3xl) 0;
  text-align: center;
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-rose) 50%, var(--color-bg) 100%);
  position: relative;
}

.final-cta__inner {
  max-width: 560px;
}

.final-cta .section-title {
  font-size: clamp(2rem, 5vw, 3rem);
}

.final-cta p {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}

.final-cta small {
  display: block;
  margin-top: var(--space-md);
  font-size: 0.88rem;
  color: var(--color-text-light);
}

.final-cta small a {
  color: var(--color-text-muted);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: var(--color-border);
  text-underline-offset: 3px;
}


/* ============================================================
   SIGNATURE
   ============================================================ */
.signature {
  position: relative;
  background: url('img/Frame_30.webp') center center / cover no-repeat;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.signature::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(26, 16, 24, 0.82) 0%,
    rgba(26, 16, 24, 0.65) 45%,
    rgba(26, 16, 24, 0.15) 75%,
    transparent 100%
  );
}

.signature__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-md);
}

.signature__content {
  max-width: 520px;
}

.signature__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.25;
  color: #fff;
  margin-bottom: var(--space-md);
}

.signature__rule {
  border: none;
  height: 2px;
  width: 80px;
  background: var(--color-primary);
  margin: 0 0 var(--space-lg);
}

.signature__text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-lg);
}

.signature__closing {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-sm);
}

.signature__img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: var(--space-xl) 0 var(--space-md);
  background: var(--color-text);
  color: rgba(255, 255, 255, 0.6);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand .logo-text {
  color: #fff;
  margin-bottom: 0.5rem;
  display: block;
}

.footer__brand p {
  font-size: 0.85rem;
  line-height: 1.6;
}

.footer__links h4 {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-sm);
}

.footer__links a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.5rem;
  transition: color 0.25s ease;
}

.footer__links a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.footer__bottom {
  padding-top: var(--space-md);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
}

.footer__bottom p {
  font-size: 0.78rem;
}

.footer__disclaimer {
  font-size: 0.75rem;
  opacity: 0.5;
}


/* ============================================================
   MOBILE STICKY CTA
   ============================================================ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border-light);
  box-shadow: 0 -4px 20px rgba(45, 27, 33, 0.08);
  padding: 0.75rem 1.25rem;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.sticky-cta.is-visible {
  transform: translateY(0);
}

.sticky-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
}

.sticky-cta__info strong {
  display: block;
  font-size: 0.92rem;
  color: var(--color-text);
}

.sticky-cta__info span {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}


/* ============================================================
   RESPONSIVE — SMALL MOBILE (up to 480px)
   ============================================================ */
@media (max-width: 767px) {
  /* Cycle diagram: vertical list on mobile */
  .cycle__diagram {
    aspect-ratio: auto;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .cycle-svg {
    display: none;
  }

  .cycle__card {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none !important;
    width: 100%;
    max-width: 100%;
    opacity: 1;
    margin-bottom: 0;
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
  }

  .cycle__diagram.is-animated .cycle__card {
    transform: none !important;
  }

  /* Vertical connecting line between cards */
  .cycle__card::after {
    content: '';
    position: absolute;
    bottom: -24px;
    left: 28px;
    width: 2px;
    height: 24px;
    background: var(--color-border-light);
  }

  /* Arrow dot at bottom of line */
  .cycle__card::before {
    content: '';
    position: absolute;
    bottom: -28px;
    left: 24px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid var(--color-primary);
    z-index: 1;
  }

  /* Last card: loop arrow back to top */
  .cycle__card:last-child::after {
    display: none;
  }

  .cycle__card:last-child::before {
    display: none;
  }

  /* Space between cards for the connector */
  .cycle__card + .cycle__card {
    margin-top: 24px;
  }

  .cycle__card .cycle__step-number {
    flex-shrink: 0;
  }

  .cycle__card h3 {
    text-align: left;
  }

  .cycle__card p {
    text-align: left;
  }
}

@media (max-width: 480px) {
  /* Variant selector: stack vertically on small screens */
  .product__variants-grid {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .product__variant {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    padding: 1rem 1rem;
  }

  .product__variant-name {
    font-size: 0.9rem;
  }

  .product__variant-price {
    font-size: 0.9rem;
    text-align: right;
  }

  .product__variant-badge {
    position: absolute;
    top: -8px;
    right: 12px;
    left: auto;
    transform: none;
  }

  .product__variant-badge--best {
    right: 12px;
    left: auto;
  }

  .product__variant-shipping {
    text-align: right;
  }

  /* Trust badges: keep row but shrink */
  .product__trust-badge img {
    width: 34px;
    height: 34px;
  }

  .product__trust-badge span {
    font-size: 0.68rem;
  }

  /* Signature: full overlay on mobile */
  .signature::before {
    background: linear-gradient(
      to bottom,
      rgba(26, 16, 24, 0.75) 0%,
      rgba(26, 16, 24, 0.65) 60%,
      rgba(26, 16, 24, 0.4) 100%
    );
  }

  .signature {
    min-height: 400px;
  }

  .signature__content {
    max-width: 100%;
  }

  /* Proof bar: 2x2 grid */
  .proof-bar__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .proof-bar__divider {
    display: none;
  }

  /* Hero title */
  .hero__title {
    font-size: 1.8rem;
  }

  .hero__subtitle {
    font-size: 0.9rem;
  }
}


/* ============================================================
   RESPONSIVE — TABLET (768px+)
   ============================================================ */
@media (min-width: 768px) {
  .header__nav {
    display: flex;
  }

  .hero__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }

  .symptoms__grid {
    grid-template-columns: 1fr 1fr;
  }

  .education__inner {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .cycle__card {
    max-width: 180px;
    padding: 0.7rem 0.8rem;
  }

  .philosophy__inner {
    grid-template-columns: 0.45fr 0.55fr;
  }

  .product__inner {
    grid-template-columns: 0.6fr 0.4fr;
    align-items: start;
  }

  .ingredients__grid {
    grid-template-columns: 1fr 1fr;
  }

  .results__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .testimonials__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .protocol__steps {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
  }

  .footer__inner {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }

  /* Hide mobile sticky on tablet+ */
  .sticky-cta {
    display: none !important;
  }
}


/* ============================================================
   RESPONSIVE — DESKTOP (1024px+)
   ============================================================ */
@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }

  .hero {
    padding-top: calc(64px + var(--space-2xl));
    padding-bottom: var(--space-3xl);
  }

  .hero__inner {
    grid-template-columns: 0.55fr 0.45fr;
  }

  .hero__title {
    font-size: 3.2rem;
  }

  .proof-bar__inner {
    gap: var(--space-xl);
  }

  .cycle__card {
    max-width: 200px;
    padding: 0.8rem 1rem;
  }

  .ingredients__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonial {
    padding: var(--space-xl) var(--space-lg);
  }
}


/* ============================================================
   HERO DECORATIVE DOTS & BLOBS
   ============================================================ */

/* --- Dark scattered dots (top-right cluster) --- */
.hero__dots {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 400px;
  height: 400px;
  pointer-events: none;
  z-index: 2;
}

.dot {
  position: absolute;
  will-change: transform;
  overflow: visible;
}

.dot--1  { width: 16px; height: 16px; top: 5%;  right: 8%;  opacity: 0.8;  animation: driftDot1 7s ease-in-out infinite; transform: rotate(15deg); }
.dot--2  { width: 10px; height: 10px; top: 12%; right: 22%; opacity: 0.6;  animation: driftDot2 9s ease-in-out 0.5s infinite; transform: rotate(90deg); }
.dot--3  { width: 20px; height: 20px; top: 3%;  right: 35%; opacity: 0.45; animation: driftDot1 11s ease-in-out 1s infinite; transform: rotate(200deg); }
.dot--4  { width: 12px; height: 12px; top: 20%; right: 12%; opacity: 0.7;  animation: driftDot2 8s ease-in-out 1.5s infinite; transform: rotate(45deg); }
.dot--5  { width: 8px;  height: 8px;  top: 28%; right: 28%; opacity: 0.55; animation: driftDot1 10s ease-in-out 2s infinite; transform: rotate(130deg); }
.dot--6  { width: 18px; height: 18px; top: 15%; right: 45%; opacity: 0.35; animation: driftDot2 12s ease-in-out 0.8s infinite; transform: rotate(260deg); }
.dot--7  { width: 11px; height: 11px; top: 35%; right: 6%;  opacity: 0.65; animation: driftDot1 9s ease-in-out 2.5s infinite; transform: rotate(310deg); }
.dot--8  { width: 7px;  height: 7px;  top: 8%;  right: 55%; opacity: 0.5;  animation: driftDot2 8s ease-in-out 3s infinite; transform: rotate(75deg); }
.dot--9  { width: 14px; height: 14px; top: 42%; right: 18%; opacity: 0.4;  animation: driftDot1 11s ease-in-out 1.2s infinite; transform: rotate(170deg); }
.dot--10 { width: 9px;  height: 9px;  top: 25%; right: 50%; opacity: 0.45; animation: driftDot2 10s ease-in-out 0.3s infinite; transform: rotate(220deg); }
.dot--11 { width: 17px; height: 17px; top: 1%;  right: 16%; opacity: 0.6;  animation: driftDot1 13s ease-in-out 1.8s infinite; transform: rotate(340deg); }

@keyframes driftDot1 {
  0%, 100% { transform: translate(0, 0) rotate(var(--r, 0deg)); }
  25%      { transform: translate(-5px, 7px) rotate(calc(var(--r, 0deg) + 8deg)); }
  50%      { transform: translate(4px, -6px) rotate(calc(var(--r, 0deg) - 5deg)); }
  75%      { transform: translate(-7px, -3px) rotate(calc(var(--r, 0deg) + 3deg)); }
}

@keyframes driftDot2 {
  0%, 100% { transform: translate(0, 0) rotate(var(--r, 0deg)); }
  25%      { transform: translate(6px, -4px) rotate(calc(var(--r, 0deg) - 6deg)); }
  50%      { transform: translate(-3px, 8px) rotate(calc(var(--r, 0deg) + 10deg)); }
  75%      { transform: translate(5px, 3px) rotate(calc(var(--r, 0deg) - 4deg)); }
}

/* --- Organic pink blobs --- */
.hero__blobs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.blob {
  position: absolute;
  will-change: transform;
}

.blob--1 {
  width: 320px;
  height: 320px;
  top: -80px;
  right: -60px;
  animation: morphBlob1 16s ease-in-out infinite;
}

.blob--3 {
  width: 180px;
  height: 180px;
  bottom: 10%;
  right: 15%;
  animation: morphBlob3 14s ease-in-out 1s infinite;
}


.blob--5 {
  width: 220px;
  height: 220px;
  bottom: -30px;
  left: 5%;
  animation: morphBlob3 22s ease-in-out 3s infinite;
}

@keyframes morphBlob1 {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
  33%      { transform: translate(-20px, 15px) rotate(8deg) scale(1.05); }
  66%      { transform: translate(10px, -10px) rotate(-5deg) scale(0.97); }
}

@keyframes morphBlob2 {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
  33%      { transform: translate(15px, -20px) rotate(-6deg) scale(1.08); }
  66%      { transform: translate(-10px, 10px) rotate(4deg) scale(0.95); }
}

@keyframes morphBlob3 {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
  33%      { transform: translate(10px, 12px) rotate(10deg) scale(1.06); }
  66%      { transform: translate(-15px, -8px) rotate(-8deg) scale(0.96); }
}

.hero__inner {
  position: relative;
  z-index: 1;
}


/* ============================================================
   MICROBIOME SVG ANIMATION
   ============================================================ */
.microbiome-svg {
  display: flex;
  justify-content: center;
}

.microbe {
  will-change: transform, opacity;
}

.microbe--pulse-1 {
  animation: microbePulse 3s ease-in-out infinite;
}

.microbe--pulse-2 {
  animation: microbePulse 3.5s ease-in-out 0.5s infinite;
}

.microbe--pulse-3 {
  animation: microbePulse 4s ease-in-out 1s infinite;
}

@keyframes microbePulse {
  0%, 100% {
    transform: scale(1);
    opacity: var(--pulse-base-opacity, 1);
  }
  50% {
    transform: scale(1.12);
    opacity: calc(var(--pulse-base-opacity, 1) * 1.15);
  }
}

/* Glow animation for imbalanced side */
.microbiome-bg {
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}


/* ============================================================
   SHIELD DRAW ANIMATION
   ============================================================ */
.shield-svg {
  overflow: visible;
}

.shield-outline {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.shield-check {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.8s;
}

.guarantee__badge.is-animated .shield-outline {
  stroke-dashoffset: 0;
}

.guarantee__badge.is-animated .shield-check {
  stroke-dashoffset: 0;
}

.guarantee__badge.is-animated {
  animation: badgeBounce 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

@keyframes badgeBounce {
  0% { transform: scale(0.8); opacity: 0; }
  60% { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}


/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero__dots,
  .hero__blobs {
    display: none;
  }

  .cycle__card {
    opacity: 1;
    transform: scale(1);
  }

  .cycle__card--1,
  .cycle__card--3 {
    transform: translateX(-50%) scale(1);
  }

  .cycle-arc,
  .cycle-arc--loop {
    stroke-dashoffset: 0;
  }

  .shield-outline,
  .shield-check {
    stroke-dashoffset: 0;
  }

  .morph-blob {
    animation: none;
  }
}
