/* =====================================================
   SCULPTIQUE LANDING PAGE — DESIGN TOKENS
   Colors sampled from live-site captures (reference/).
   ===================================================== */
:root {
  /* Greens */
  --emerald: #00A46B;       /* green title spans, checks, radio, links */
  --emerald-deep: #1E8A5F;  /* dark green banners (e-book, gift card) */
  --emerald-soft: #57A87F;  /* lighter green banner (free shipping) */
  --green-border: #2E9E63;  /* green panel/table borders */
  --tp-green: #00B67A;      /* Trustpilot star squares */
  --chart-green: #2E7D46;
  --sage-ring: #6FA287;     /* 91% mission ring */
  --ring-green: #3FA478;    /* hero stat donut arcs */
  --synergy-bg: #DFE9DA;    /* synergistic effect panel */
  --missing-bg: #E8F1E6;    /* the missing piece panel */

  /* Reds / pinks */
  --red: #C0392B;           /* red ✗ text and crosses */
  --chart-red: #C0272D;
  --pink-bg: #FCE0E0;       /* pink callouts */
  --pink-border: #EFA9A9;   /* "nobody's telling you" panel border */
  --salmon: #FA8A8A;        /* Judge.me review widget accent */

  /* Neutrals */
  --white: #FFFFFF;
  --black: #101010;         /* logo, titles, ADD TO CART, CTAs */
  --ink: #1E1E1E;           /* body text */
  --ink-soft: #5F5F5F;      /* secondary text */
  --cream: #F3EEE0;         /* cream section background */
  --cream-strip: #F0EADC;   /* press bar / trust strip */
  --cream-panel: #F0EBDD;   /* connection table / mission panel */
  --faq-bg: #FBF7EC;        /* FAQ card */
  --card-gray: #F5F4F2;     /* nothing-cards */
  --line: #E2E2E2;

  /* Brand extras */
  --sun-yellow: #F2BE3C;    /* Summer Sale badges */
  --card-cream: #F5F1E2;    /* hero infographic cards / review card */
  --card-tan: #D9D0AC;      /* tan infographic card */
  --maroon: #911E41;        /* footer background */

  /* Placeholder blocks */
  --ph-bg: #E9E4D6;
  --ph-text: #9A9280;

  /* Type */
  --font-serif: "Lora", Georgia, serif;
  --font-sans: "Nunito", -apple-system, "Helvetica Neue", Arial, sans-serif;

  --container: 1280px;
}

/* ============ RESET / BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.section { padding: 64px 0; }

/* Inline icon sprite — definitions only, never rendered */
.icon-sprite { display: none; }

/* ============ PLACEHOLDER BLOCKS ============ */
.ph {
  position: relative;
  background: var(--ph-bg);
  background-image: repeating-linear-gradient(
    45deg, transparent, transparent 12px,
    rgba(255,255,255,0.35) 12px, rgba(255,255,255,0.35) 24px);
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
}
.ph > span {
  color: var(--ph-text);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: 4px 8px;
  background: rgba(255,255,255,0.6);
  border-radius: 6px;
  max-width: 90%;
}

/* ============ TYPE ============ */
.section-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.25;
  color: var(--black);
  text-align: center;
  max-width: 920px;
  margin: 0 auto 16px;
}
.green-em { color: var(--emerald); }
.section-subtitle {
  text-align: center;
  color: var(--ink);
  max-width: 700px;
  margin: 0 auto 44px;
  font-size: 17px;
}
.section-subtitle.wide { max-width: 860px; }

/* ============ CTA BLOCK (black button + guarantee) ============ */
.cta-block { text-align: center; margin-top: 40px; }
.cta-block.left { text-align: left; }
.btn-cta {
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  padding: 20px 56px;
  min-width: min(520px, 100%);
  transition: opacity 0.15s ease;
}
.btn-cta:hover { opacity: 0.85; }
.cta-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  margin-top: 16px;
}
.cta-block.left .cta-guarantee { justify-content: flex-start; padding-left: 60px; }
.g-badge {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 2px solid var(--black);
  border-radius: 50%;
  font-size: 8px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
}

/* ============ HEADER ============ */
.site-header { background: var(--white); border-bottom: 1px solid #EFEFEF; }
.header-inner { display: flex; justify-content: center; align-items: center; padding-top: 18px; padding-bottom: 18px; }
.logo {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 30px;
  color: var(--black);
  text-decoration: none;
}
.logo b { font-weight: 800; }
.logo.light { color: var(--white); }

/* ============ HERO ============ */
.hero { background: var(--white); padding: 24px 0 64px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 48px;
  align-items: start;
}

/* --- Left: gallery + infographic cards --- */
.hero-main-wrap { position: relative; }
.hero-main-img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 6px; }
.sale-round {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: var(--sun-yellow);
  color: var(--white);
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.15;
}
.nutri-pill {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  padding: 13px 30px;
  font-size: 16px;
  color: #1d2a22;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.nutri-leaf { width: 22px; height: 22px; flex: 0 0 22px; color: #1d2a22; }

/* Carousel chrome is mobile-only; hidden by default so desktop is unchanged */
.gal-arrow, .gallery-thumbs { display: none; }

.gallery-row { display: grid; gap: 16px; margin-top: 16px; }
.gallery-row.two { grid-template-columns: 1fr 1fr; }
.gallery-row.three { grid-template-columns: 1fr 1fr 1fr; }

/* Composed infographic cards (square artwork) */
.card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
}

.ring-card {
  background: var(--white);
  border: 1px solid #E4E4E4;
  border-radius: 14px;
  padding: 34px 28px;
  text-align: center;
}
.ring-svg { width: 168px; height: 168px; }
.ring-copy {
  font-family: var(--font-serif);
  font-size: 21px;
  line-height: 1.4;
  color: var(--black);
  max-width: 300px;
  margin: 16px auto 12px;
}
.ring-foot {
  font-family: var(--font-serif);
  font-size: 15px;
  color: #555;
  max-width: 300px;
  margin: 0 auto;
}

/* --- Right: buy box --- */
.tp-row { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.tp-stars { display: inline-flex; gap: 3px; }
.tp-stars i {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  background: var(--tp-green);
  color: var(--white);
  font-style: normal;
  font-size: 15px;
}
.tp-stars.small i { width: 19px; height: 19px; font-size: 12px; }
.tp-stars.mini i { width: 17px; height: 17px; font-size: 11px; }
.tp-text { font-size: 15.5px; color: var(--black); }
.tp-text strong { font-weight: 700; }

.product-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(26px, 2.7vw, 34px);
  line-height: 1.3;
  color: var(--black);
  margin-bottom: 26px;
}

.benefit-list { list-style: none; margin-bottom: 26px; }
.benefit-list li {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 11px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
}
.b-ic { flex: 0 0 44px; width: 44px; height: 44px; object-fit: contain; }

/* Package picker */
.package-panel {
  background: #F3EEDD;
  border-radius: 16px;
  padding: 16px;
  display: grid;
  gap: 18px;
  margin-bottom: 22px;
}
.pkg { display: block; position: relative; cursor: pointer; }
.pkg input { position: absolute; opacity: 0; }
.pkg-box {
  border: 1.5px solid #CBE5D6;
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  transition: border-color 0.15s ease;
}
.pkg:hover .pkg-box { border-color: var(--emerald); }
.pkg.selected .pkg-box { border: 2px solid var(--emerald); }
.pkg-top { display: flex; align-items: center; gap: 16px; padding: 18px; }
.pkg-radio {
  flex: 0 0 26px;
  height: 26px;
  border: 2px solid var(--emerald);
  border-radius: 50%;
  position: relative;
}
.pkg.selected .pkg-radio::after {
  content: "";
  position: absolute;
  inset: 4px;
  background: var(--emerald);
  border-radius: 50%;
}
.pkg-names { flex: 1; }
.pkg-name { font-weight: 800; font-size: 19px; color: var(--black); }
.pkg-sub { font-size: 13.5px; color: #333; }
.pkg-price { text-align: right; }
.pkg-price .now { font-weight: 800; font-size: 20px; color: var(--black); }
.pkg-price .was { font-size: 14px; color: #999; text-decoration: line-through; }
/* Banner shade follows selection: light green when unselected, deep green when selected */
.pkg-banner {
  --banner-bg: var(--emerald-soft);
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--banner-bg);
  color: var(--white);
  font-weight: 700;
  font-size: 14.5px;
  padding: 8px 16px;
}
.pkg-banner + .pkg-banner { border-top: 1px solid rgba(255, 255, 255, 0.55); }
.pkg.selected .pkg-banner { --banner-bg: var(--emerald-deep); }
.banner-ic { width: 30px; height: 30px; flex: 0 0 30px; color: var(--white); }
.banner-ic.truck { color: var(--banner-bg); }

/* Automatic-refills toggle: white panel when on, greyed when off */
.refill-toggle {
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  border: 2px dashed var(--green-border);
  border-radius: 10px;
  background: var(--white);
  padding: 15px 16px;
  transition: background 0.15s ease;
}
.refill-toggle input { position: absolute; opacity: 0; }
.rt-box {
  flex: 0 0 34px;
  height: 34px;
  border-radius: 7px;
  background: var(--emerald-deep);
  border: 1px solid var(--emerald-deep);
  color: var(--white);
  display: grid;
  place-items: center;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.rt-box svg { width: 20px; height: 20px; }
.rt-text { display: block; }
.rt-title { display: block; font-weight: 800; font-size: 18px; color: var(--black); }
.rt-sub { display: block; font-size: 15px; color: #333; }
/* off state */
.refill-toggle.off { background: #DCD8CC; }
.refill-toggle.off .rt-box { background: #C6C2B6; border-color: #A9A599; color: transparent; }

.sale-tag {
  position: absolute;
  top: -14px;
  right: 14px;
  z-index: 2;
  background: var(--sun-yellow);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  padding: 7px 22px;
  border-radius: 50%/50%;
}
.sale-tag::before, .sale-tag::after {
  content: "✦";
  font-size: 9px;
  position: absolute;
  opacity: 0.95;
}
.sale-tag::before { top: 3px; left: 10px; }
.sale-tag::after { bottom: 3px; right: 10px; }

.delivery-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: var(--black);
  margin-bottom: 16px;
}
.delivery-ic { width: 34px; height: 23px; flex: 0 0 34px; color: var(--black); }
.date-chip {
  display: inline-block;
  background: #21A15E;
  color: var(--white);
  font-weight: 700;
  padding: 4px 13px;
  border-radius: 8px;
}

.btn-cart {
  width: 100%;
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 21px;
  margin-bottom: 14px;
  transition: opacity 0.15s ease;
}
.btn-cart:hover { opacity: 0.85; }

.payment-icons {
  display: flex;
  gap: 5px;
  flex-wrap: nowrap;
  justify-content: center;
}
.pay-chip {
  display: grid;
  place-items: center;
  flex: 1 1 0;
  min-width: 0;
  max-width: 58px;
  height: 32px;
  padding: 0 4px;
  border: 1px solid #E4E4E4;
  background: var(--white);
  border-radius: 5px;
}
.pay-chip svg { width: 100%; height: 15px; display: block; }

.refill-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  color: var(--black);
  margin: 20px 0 24px;
}
.refill-ic { width: 19px; height: 19px; flex: 0 0 19px; color: var(--black); }
.refill-line .sep { color: #D5D5D5; margin: 0 8px; }
.onetime-line {
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  margin: 20px 0 24px;
}
.onetime-line[hidden], .refill-line[hidden] { display: none; }

.featured-review {
  background: var(--card-cream);
  border-radius: 12px;
  padding: 26px 28px;
  margin-bottom: 22px;
}
.fr-head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.fr-avatar { flex: 0 0 58px; width: 58px; height: 58px; border-radius: 50%; object-fit: cover; }
.fr-name { font-weight: 800; font-size: 16.5px; color: var(--black); margin-bottom: 5px; }
.vc { color: var(--tp-green); font-weight: 700; font-size: 14px; margin-left: 6px; }
.fr-title { font-weight: 800; font-size: 16.5px; color: var(--black); margin-bottom: 10px; }
.fr-body { font-size: 15.5px; line-height: 1.65; color: #222; }

.hero-accs { display: grid; gap: 12px; }
.acc {
  border: 1px solid #DDD;
  border-radius: 20px;
  background: var(--white);
  overflow: hidden;
}
.acc summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 26px;
  font-weight: 600;
  font-size: 17px;
  color: var(--black);
  position: relative;
  padding-right: 66px;
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #E9F5EE;
  color: var(--emerald);
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 400;
}
.acc[open] summary::after { content: "–"; }
.acc-body { padding: 0 26px 20px; font-size: 15px; color: #333; }
.acc-body p { margin-bottom: 10px; }
.acc-body ul { margin: 0 0 10px 20px; }
.acc-body li { margin-bottom: 6px; }

/* ============ PRESS BAR (MARQUEE) ============ */
.press-bar { background: var(--cream-strip); padding: 26px 0 30px; text-align: center; overflow: hidden; }
.press-label { font-family: var(--font-serif); font-size: 25px; color: var(--black); margin-bottom: 18px; }
.press-marquee { overflow: hidden; }
.press-track {
  display: flex;
  align-items: center;
  gap: 90px;
  width: max-content;
  animation: press-scroll 40s linear infinite;
}
@keyframes press-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.press-logo { color: #111; white-space: nowrap; }
.press-logo.vogue { font-family: var(--font-serif); font-size: 34px; font-weight: 600; letter-spacing: 0.12em; }
.press-logo.grazia { font-family: var(--font-serif); font-size: 26px; font-weight: 400; letter-spacing: 0.34em; }
.press-logo.wh { font-family: var(--font-sans); font-size: 26px; font-weight: 800; letter-spacing: -0.01em; }

/* ============ AGITATE ============ */
.agitate-section { background: var(--white); }
.symptom-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; }
.symptom-card { background: #F7F7F7; border-radius: 8px; overflow: hidden; }
.symptom-img { width: 100%; aspect-ratio: 1 / 0.85; object-fit: cover; border-radius: 8px 8px 0 0; }
.symptom-card p { font-size: 15.5px; font-weight: 600; text-align: center; padding: 18px 16px 26px; line-height: 1.5; }

.converge-arrows { color: #222; max-width: 900px; margin: 6px auto 0; }
.converge-arrows svg { width: 100%; height: auto; display: block; }
.converge-arrows.small { max-width: 760px; }

.nobody-telling {
  background: var(--pink-bg);
  border: 1px solid var(--pink-border);
  border-radius: 12px;
  text-align: center;
  padding: 36px 32px;
  max-width: 1080px;
  margin: 0 auto;
}
.nobody-telling h3 { font-family: var(--font-serif); font-weight: 500; font-size: clamp(24px, 2.6vw, 34px); color: var(--black); margin-bottom: 10px; }
.nobody-telling p { color: #555; font-size: 18px; }

.chevron-down { display: flex; justify-content: center; margin: 44px 0; color: var(--black); }
.chevron-down svg { width: 42px; height: 32px; }

.connection-table {
  background: var(--cream-panel);
  border: 1.5px solid var(--green-border);
  border-radius: 14px;
  padding: 28px 44px 20px;
  max-width: 1120px;
  margin: 40px auto 0;
}
.ct-head {
  display: grid;
  grid-template-columns: 38% 1fr;
  padding: 8px 0 20px;
}
.ct-head p { font-family: var(--font-serif); font-size: 26px; font-weight: 500; color: var(--black); }
.ct-row {
  display: grid;
  grid-template-columns: 38% 1fr;
  align-items: center;
  border-top: 1px solid #D8D2C2;
  padding: 22px 0;
}
.ct-symptom { display: flex; align-items: center; gap: 14px; font-weight: 700; font-size: 18px; color: var(--black); }
.ct-icon {
  flex: 0 0 42px;
  height: 42px;
  border-radius: 50%;
  background: #3AAE7C;
  display: grid;
  place-items: center;
  font-size: 20px;
}
.ct-cause { font-size: 18px; color: #333; }

/* ============ DRAINAGE ============ */
.drainage-section { background: var(--white); padding-top: 0; }
.drainage-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: center;
  margin-top: 48px;
}
.drainage-grid.reversed { grid-template-columns: 1.05fr 1fr; }
.drainage-copy > p { margin-bottom: 16px; font-size: 17px; }
.green-checks { list-style: none; margin-bottom: 18px; }
.green-checks li { color: var(--emerald); font-weight: 700; padding: 4px 0; font-size: 17px; }
.green-checks li::before { content: "✔"; margin-right: 12px; font-size: 16px; }
.red-xs { list-style: none; margin-bottom: 16px; }
.red-xs li { color: var(--red); font-weight: 700; padding: 4px 0; font-size: 17px; }
.red-xs li::before { content: "✗"; margin-right: 12px; font-size: 17px; }
.pink-callout {
  background: var(--pink-bg);
  border-radius: 10px;
  padding: 20px 26px;
  margin-bottom: 18px;
}
.pink-callout p { font-size: 17px; font-weight: 600; color: var(--ink); margin-bottom: 10px; }
.pink-callout p:last-child { margin-bottom: 0; }
.pink-callout .red-xs { margin: 6px 0 0; }

.chart-card {
  background: var(--white);
  border: 1px solid #DDD;
  border-radius: 12px;
  padding: 30px 34px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.chart-title { font-family: var(--font-serif); font-weight: 500; font-size: 26px; color: var(--black); margin-bottom: 18px; }
.decline-chart { width: 100%; height: auto; }
.anatomy-img { min-height: 420px; border-radius: 12px; }

/* ============ WHY NOTHING HAS WORKED ============ */
.nothing-section { background: var(--cream); }
.nothing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-bottom: 10px; }
.nothing-card { background: var(--card-gray); border-radius: 10px; overflow: hidden; }
/* Photos already carry the red X and B&W treatment */
.nothing-img {
  width: 100%;
  aspect-ratio: 1 / 0.85;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
  display: block;
}
.nothing-body { padding: 24px 22px 26px; }
.nothing-body h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 21px;
  line-height: 1.35;
  text-align: center;
  margin-bottom: 18px;
  color: var(--black);
}
.why-failed {
  background: var(--pink-bg);
  border-radius: 10px;
  padding: 18px 20px;
  text-align: center;
}
.wf-label { font-weight: 800; font-size: 15px; margin-bottom: 8px; }
.wf-x { color: var(--red); font-size: 17px; }
.why-failed p:last-child { font-weight: 700; font-size: 15px; line-height: 1.5; }

.missing-piece {
  background: var(--missing-bg);
  border: 1.5px solid var(--green-border);
  border-radius: 14px;
  text-align: center;
  padding: 36px 48px;
  max-width: 1080px;
  margin: 0 auto;
}
.missing-piece h3 { font-family: var(--font-serif); font-weight: 500; font-size: clamp(24px, 2.6vw, 34px); margin-bottom: 12px; color: var(--black); }
.missing-piece p { font-size: 18px; color: #333; max-width: 900px; margin: 0 auto; }

/* ============ INGREDIENTS ============ */
.ingredients-section { background: var(--cream); }
/* 10 ingredients → a clean 5 × 2 grid with no empty cells */
.ingredient-table {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: var(--white);
  border: 1px solid #1A1A1A;
  border-radius: 12px;
  overflow: hidden;
}
.ing-cell { border-right: 1px solid #1A1A1A; border-bottom: 1px solid #1A1A1A; }
.ing-cell:nth-child(5n) { border-right: none; }
.ing-cell:nth-child(n+6) { border-bottom: none; }
.ing-cell summary { list-style: none; cursor: pointer; padding: 22px 16px 18px; text-align: center; }
.ing-cell summary::-webkit-details-marker { display: none; }
.ing-cat { color: #1B9E4B; font-weight: 700; font-size: 14.5px; line-height: 1.3; margin-bottom: 14px; }
/* Uniform square thumbnails — subject centred and never cropped */
.ing-img {
  width: 118px;
  height: 118px;
  margin: 0 auto 16px;
  object-fit: contain;
  background: var(--white);
  display: block;
}
.ing-name {
  font-family: var(--font-serif);
  font-size: 17.5px;
  line-height: 1.35;
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.ing-name sup { font-size: 0.6em; vertical-align: super; }
.ing-chev { font-style: normal; font-size: 18px; color: #333; transition: transform 0.2s ease; }
.ing-cell[open] .ing-chev { transform: rotate(180deg); }
.ing-body { padding: 0 22px 24px; font-size: 14px; color: #333; }
.ing-body p { margin-bottom: 8px; }
.ing-study { color: #777; font-size: 13px; }

.synergy-panel {
  background: var(--synergy-bg);
  border: 1.5px solid var(--green-border);
  border-radius: 14px;
  max-width: 800px;
  margin: 56px auto 0;
  padding: 48px 56px;
  text-align: center;
}
.synergy-panel h3 { font-family: var(--font-serif); font-weight: 500; font-size: 34px; color: var(--black); margin-bottom: 18px; }
.synergy-intro { font-size: 18px; margin-bottom: 22px; }
.synergy-panel .green-checks { display: inline-block; text-align: left; margin-bottom: 22px; }
.synergy-panel .green-checks li { color: var(--ink); font-weight: 600; font-size: 17.5px; }
.synergy-panel .green-checks li::before { color: #1B9E4B; }
.synergy-close { font-weight: 800; font-size: 18px; }

/* ============ REVIEWS (Judge.me style) ============ */
.reviews-section { background: var(--white); }
.tp-inline { text-align: center; font-size: 15px; color: #333; margin-bottom: 14px; }
.tp-logo { font-weight: 800; color: var(--black); }
.tp-logo::first-letter { color: var(--tp-green); }
.jdgm-title { font-family: var(--font-serif); font-weight: 500; font-size: 30px; text-align: center; margin: 40px 0 30px; color: var(--black); }

.jdgm-summary {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto 40px;
}
.jdgm-score { text-align: center; }
.jdgm-stars { color: var(--salmon); font-size: 22px; letter-spacing: 2px; }
.jdgm-stars span { color: #444; font-size: 18px; letter-spacing: 0; margin-left: 8px; }
.jdgm-count { color: #444; font-size: 16px; margin-top: 4px; }
.jdgm-verified { font-size: 14px; }
.jdgm-histogram { border-left: 1px solid var(--line); border-right: 1px solid var(--line); padding: 6px 40px; }
.jh-row { display: grid; grid-template-columns: 96px 1fr 50px; align-items: center; gap: 14px; padding: 3px 0; }
.jh-stars { color: var(--salmon); font-size: 15px; letter-spacing: 1px; }
.jh-stars i { font-style: normal; opacity: 0.35; }
.jh-bar { background: #EEE; height: 15px; overflow: hidden; }
.jh-bar i { display: block; height: 100%; background: var(--salmon); }
.jh-n { font-size: 14px; color: #555; text-align: right; }
.jdgm-action { text-align: center; }
.btn-review {
  background: var(--salmon);
  color: var(--white);
  border: none;
  border-radius: 3px;
  font-size: 17px;
  font-weight: 700;
  padding: 15px 46px;
}

.jdgm-sort { color: var(--salmon); font-weight: 700; font-size: 15px; max-width: 1120px; margin: 0 auto 8px; }

.jdgm-list { max-width: 1120px; margin: 0 auto; }
.jdgm-rev { border-top: 1px solid #EBEBEB; padding: 26px 0; }
.jr-top { display: flex; justify-content: space-between; align-items: baseline; }
.jr-stars { color: var(--salmon); font-size: 19px; letter-spacing: 2px; }
.jr-stars i { font-style: normal; opacity: 0.35; }
.jr-date { color: #999; font-size: 14px; }
.jr-author { display: flex; align-items: center; gap: 10px; color: var(--salmon); font-weight: 600; font-size: 17px; margin: 8px 0 12px; }
.jr-avatar {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  background: #F6F6F6;
  font-size: 17px;
}
.jr-title { font-weight: 800; font-size: 16.5px; color: var(--black); margin-bottom: 6px; }
.jr-body { font-size: 16px; color: #222; }

.jdgm-paginate { display: flex; justify-content: center; gap: 22px; border-top: 1px solid #EBEBEB; max-width: 1120px; margin: 0 auto; padding-top: 26px; font-size: 18px; }
.jdgm-paginate a { color: var(--salmon); text-decoration: none; font-weight: 600; }
.jp-current { color: #555; font-weight: 800; }

/* ============ TRUST ICONS STRIP ============ */
.trust-strip { background: var(--cream-strip); padding: 48px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.t-ic { width: 52px; height: 52px; color: #1B9E4B; margin: 0 auto 14px; display: block; }
.trust-name { font-weight: 800; font-size: 17px; color: var(--black); }
.trust-sub { font-size: 15.5px; color: #333; margin-top: 2px; }

/* ============ UGC VIDEOS ============ */
.ugc-section { background: var(--cream); }
.tp-stacked { text-align: center; margin-bottom: 16px; font-size: 15.5px; color: #333; }
.tp-stacked .tp-logo { font-size: 17px; display: block; margin-bottom: 6px; }
.tp-stacked p { display: flex; align-items: center; justify-content: center; gap: 8px; }
.ugc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin: 48px 0 22px; }
.ugc-video { aspect-ratio: 9 / 15.5; border-radius: 8px; }
.play-btn {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--black);
  display: grid;
  place-items: center;
  font-style: normal;
  font-size: 17px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}
.ugc-nav { display: flex; align-items: center; gap: 14px; margin-bottom: 8px; }
.ugc-progress { flex: 1; height: 5px; background: #CFCFCF; border-radius: 999px; overflow: hidden; margin-right: 100px; }
.ugc-progress i { display: block; width: 25%; height: 100%; background: #159A62; border-radius: 999px; }
.ugc-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid #159A62;
  background: var(--white);
  color: #159A62;
  font-size: 22px;
  line-height: 1;
}

/* ============ FAQ ============ */
.faq-section { background: var(--white); }
.faq-card {
  background: linear-gradient(180deg, var(--faq-bg) 0%, #FDFBF5 100%);
  border-radius: 20px;
  padding: 34px 60px;
  max-width: 1120px;
  margin: 48px auto 0;
}
.faq-item { border-bottom: 1px solid #E5DFCE; }
.faq-item:last-child { border-bottom: none; }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 19px;
  color: var(--black);
  padding: 30px 56px 30px 0;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-right: 2.5px solid var(--black);
  border-bottom: 2.5px solid var(--black);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: translateY(-30%) rotate(225deg); }
.faq-body { padding: 0 0 28px; font-size: 16px; color: #333; }
.faq-body p { margin-bottom: 12px; }
.faq-body p:last-child { margin-bottom: 0; }

/* ============ MISSION ============ */
.mission-section { background: var(--white); }
.mission-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
}
.mission-copy h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.3;
  color: var(--black);
  margin-bottom: 18px;
}
.mission-note { font-weight: 700; font-size: 17px; margin-bottom: 22px; }
.mission-panel {
  background: var(--cream-panel);
  border-radius: 14px;
  padding: 34px 40px 26px;
}
.mp-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
.mp-number { margin-bottom: 12px; }
.mp-number span {
  font-family: var(--font-serif);
  font-size: 46px;
  font-weight: 500;
  color: var(--black);
  border-bottom: 3px solid var(--green-border);
  padding-bottom: 2px;
}
.mp-stat p:last-child { font-size: 17px; color: #222; }
.mp-foot { text-align: center; font-size: 15px; color: #666; margin-top: 24px; }

.mission-visual { display: grid; grid-template-columns: 1.2fr 1fr; gap: 24px; align-items: center; }
/* contain, not cover — the whole bottle should be visible, never cropped */
.mission-bottle { width: 100%; aspect-ratio: 0.72; object-fit: contain; }
.mission-ring { text-align: center; }
.mission-ring svg { width: 150px; height: 150px; margin: 0 auto 14px; display: block; }
.mission-ring p { font-size: 16px; color: #333; }

/* ============ BEFORE / AFTER ============ */
.beforeafter-section { background: var(--cream); }
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: center;
}
.tp-line { display: flex; align-items: center; gap: 10px; font-size: 15px; color: #333; margin-bottom: 18px; }
.ba-copy h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.25;
  color: var(--black);
  margin-bottom: 20px;
}
.ba-copy > p { font-size: 17px; font-weight: 600; margin-bottom: 16px; }
.ba-collage { width: 100%; border-radius: 8px; }

/* ============ FOOTER ============ */
.site-footer { background: var(--maroon); color: var(--white); padding: 72px 0 56px; }
.footer-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 72px; }
.footer-brand .logo { font-size: 32px; display: block; margin-bottom: 24px; }
.footer-email { display: inline-block; color: var(--white); font-size: 19px; margin-bottom: 22px; }
.footer-address { font-size: 17px; line-height: 1.6; margin-bottom: 26px; }
.social-row { display: flex; gap: 18px; margin-bottom: 44px; }
.social-row a { color: var(--white); }
.social-row svg { width: 26px; height: 26px; }
.fn-title { font-weight: 800; font-size: 15px; letter-spacing: 0.04em; margin-bottom: 6px; }
.fn-sub { font-weight: 700; font-size: 16px; margin-bottom: 16px; }
.newsletter-form { display: flex; gap: 8px; max-width: 340px; }
.newsletter-form input {
  flex: 1;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  padding: 12px 16px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.55); }
.newsletter-form button {
  border: 1px solid rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-radius: 6px;
  padding: 0 18px;
  font-size: 16px;
}

.footer-menus { display: grid; grid-template-columns: repeat(4, auto); gap: 44px; justify-content: space-between; margin-bottom: 44px; }
.footer-head { font-weight: 800; font-size: 16px; letter-spacing: 0.03em; margin-bottom: 16px; }
.footer-col a {
  display: block;
  color: var(--white);
  text-decoration: none;
  font-size: 16px;
  padding: 5px 0;
  opacity: 0.95;
}
.footer-col a:hover { text-decoration: underline; }

.footer-disclaimer p { font-size: 14.5px; line-height: 1.7; margin-bottom: 18px; opacity: 0.95; }

.footer-pay { display: flex; flex-wrap: nowrap; gap: 5px; }
.footer-pay .pay-chip { background: var(--white); border-color: transparent; }

/* ============ NUTRITIONAL INFO MODAL ============ */
.nutri-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 200;
  display: grid;
  place-items: start center;
  padding: 32px 16px;
  overflow-y: auto;
}
.nutri-overlay[hidden] { display: none; }
.nutri-modal {
  position: relative;
  background: var(--white);
  border-radius: 16px;
  max-width: 560px;
  width: 100%;
  padding: 34px 30px 30px;
}
.nutri-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid #F5B8C6;
  background: var(--white);
  color: #E23A6E;
  font-size: 22px;
  line-height: 1;
}
.nutri-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 40px);
  text-align: center;
  color: var(--black);
  margin-bottom: 24px;
}

.facts-panel {
  background: #17A15F;
  border-radius: 12px;
  padding: 26px 24px 22px;
  color: var(--white);
  margin-bottom: 24px;
}
.facts-title { font-size: clamp(30px, 4.5vw, 42px); font-weight: 800; line-height: 1.1; margin-bottom: 10px; }
.facts-serving { font-size: 15.5px; font-weight: 700; line-height: 1.45; margin-bottom: 12px; }
.facts-bar { height: 9px; background: var(--white); margin: 10px 0; }
.facts-head {
  display: flex;
  justify-content: space-between;
  font-weight: 800;
  font-size: 16px;
  padding: 6px 0;
  border-bottom: 2px solid var(--white);
}
.facts-row {
  display: grid;
  grid-template-columns: 1fr auto 34px;
  gap: 10px;
  align-items: baseline;
  padding: 8px 0;
  font-size: 15.5px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.85);
}
.facts-row:last-of-type { border-bottom: none; }
.fr-name em { font-style: italic; }
.fr-sub { font-weight: 500; padding-left: 14px; }
.fr-amt { font-weight: 700; white-space: nowrap; }
.fr-dv { text-align: right; font-weight: 700; }
.facts-note { font-weight: 700; font-size: 15px; margin-bottom: 12px; }
.facts-other { font-size: 15px; line-height: 1.5; }

.nutri-cta { min-width: 100%; margin-bottom: 20px; }
.nutri-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 26px;
}
.nutri-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  color: var(--black);
}
.nutri-points span::before {
  content: "✔";
  display: inline-grid;
  place-items: center;
  width: 21px;
  height: 21px;
  border: 2px solid #E23A6E;
  border-radius: 50%;
  color: #E23A6E;
  font-size: 10px;
  flex: 0 0 auto;
}
body.modal-open { overflow: hidden; }

/* ============ CHAT BUBBLE ============ */
.chat-bubble {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: none;
  background: #0B66C2;
  color: var(--white);
  font-size: 22px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  z-index: 100;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .symptom-grid { grid-template-columns: repeat(3, 1fr); }
  .ugc-grid { grid-template-columns: repeat(2, 1fr); }
  .ingredient-table { grid-template-columns: repeat(2, 1fr); }
  .ing-cell:nth-child(5n) { border-right: 1px solid #1A1A1A; }
  .ing-cell:nth-child(2n) { border-right: none; }
  .ing-cell:nth-child(n+6) { border-bottom: 1px solid #1A1A1A; }
  .ing-cell:nth-child(n+9) { border-bottom: none; }
  .jdgm-summary { grid-template-columns: 1fr; gap: 24px; }
  .jdgm-histogram { border: none; padding: 0; max-width: 460px; width: 100%; margin: 0 auto; justify-self: center; }
}
@media (max-width: 960px) {
  .hero-grid, .drainage-grid, .drainage-grid.reversed,
  .mission-grid, .ba-grid, .footer-grid { grid-template-columns: 1fr; }
  .nothing-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); row-gap: 32px; }
  .footer-menus { grid-template-columns: repeat(2, 1fr); }
  .symptom-grid { grid-template-columns: repeat(2, 1fr); }
  .ct-head, .ct-row { grid-template-columns: 1fr; gap: 8px; }
  .connection-table { padding: 24px 26px 16px; }
  .mission-visual { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767px) {
  /* ---------------------------------------------------------------
     MOBILE ONLY — desktop layout above 767px is untouched.
     Mirrors the live site: hero art and testimonials become swipe
     carousels instead of stacking full-width.
     --------------------------------------------------------------- */

  .container { padding: 0 16px; }
  .section { padding: 36px 0; }
  .section-title { font-size: 26px; margin-bottom: 10px; }
  .section-subtitle { font-size: 15px; margin-bottom: 24px; }

  /* Hero art → one-at-a-time carousel with arrows + thumbnail strip */
  .hero { padding: 12px 0 36px; }
  .hero-grid { gap: 26px; }
  .hero-gallery-wrap { position: relative; }
  .hero-gallery {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .hero-gallery::-webkit-scrollbar { display: none; }
  .gallery-row { display: contents; }
  .hero-main-wrap,
  .hero-gallery .card-img,
  .ring-card {
    flex: 0 0 100%;
    width: 100%;
    margin: 0;
    scroll-snap-align: center;
  }
  .gal-arrow {
    display: grid;
    place-items: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: #1d2a22;
    z-index: 3;
  }
  .gal-arrow svg { width: 20px; height: 20px; }
  .gal-arrow.prev { left: 10px; }
  .gal-arrow.next { right: 10px; }
  .gal-arrow[disabled] { opacity: 0.35; }
  .gallery-thumbs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    margin-top: 10px;
  }
  .gallery-thumbs::-webkit-scrollbar { display: none; }
  .gal-thumb {
    flex: 0 0 74px;
    height: 74px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    background: var(--card-cream);
    display: grid;
    place-items: center;
  }
  .gal-thumb img { width: 100%; height: 100%; object-fit: cover; }
  .gal-thumb span {
    font-family: var(--font-serif);
    font-size: 19px;
    font-weight: 600;
    color: var(--green-border);
  }
  .gal-thumb.active { border-color: var(--black); }
  .sale-round { width: 84px; height: 84px; font-size: 15px; top: 16px; right: 16px; }
  .nutri-pill { padding: 10px 20px; font-size: 14px; bottom: 16px; }
  .ring-card { padding: 22px 18px; display: flex; flex-direction: column; justify-content: center; }
  .ring-svg { width: 118px; height: 118px; }
  .ring-copy { font-size: 17px; margin: 12px auto 8px; }
  .ring-foot { font-size: 13px; }

  /* Buy box */
  .product-title { font-size: 25px; margin-bottom: 18px; }
  .benefit-list { margin-bottom: 20px; }
  .benefit-list li { font-size: 15px; gap: 13px; padding: 8px 0; }
  .b-ic { flex: 0 0 36px; width: 36px; height: 36px; }
  .pkg-name { font-size: 17px; }
  .pkg-top { padding: 14px; gap: 12px; }
  .pkg-banner { font-size: 13px; padding: 7px 12px; gap: 9px; }
  .banner-ic { width: 25px; height: 25px; flex: 0 0 25px; }
  .btn-cart { font-size: 17px; padding: 18px; }
  .featured-review { padding: 20px; }
  .fr-body { font-size: 15px; }
  .acc summary { padding: 16px 20px; font-size: 15.5px; padding-right: 58px; }

  /* Symptom cards → one per row: image left, caption right */
  .symptom-grid { grid-template-columns: 1fr; gap: 10px; }
  .symptom-card {
    display: grid;
    grid-template-columns: 45% 1fr;
    align-items: stretch;
    overflow: hidden;
  }
  .symptom-img {
    aspect-ratio: auto;
    height: 100%;
    min-height: 150px;
    object-fit: cover;
    border-radius: 8px 0 0 8px;
  }
  .symptom-card p {
    font-size: 14.5px;
    font-weight: 600;
    padding: 14px 14px;
    align-self: center;
  }
  .converge-arrows { display: none; }
  .nobody-telling { padding: 22px 18px; }
  .nobody-telling h3 { font-size: 22px; }
  .nobody-telling p { font-size: 15px; }
  .chevron-down { margin: 24px 0; }
  .chevron-down svg { width: 30px; height: 23px; }
  .connection-table { padding: 18px 16px 10px; margin-top: 24px; }
  .ct-head { display: none; }
  .ct-row { padding: 14px 0; gap: 4px; }
  .ct-symptom { font-size: 15.5px; gap: 10px; }
  .ct-icon { flex: 0 0 34px; height: 34px; font-size: 16px; }
  .ct-cause { font-size: 14.5px; padding-left: 44px; }

  /* Drainage */
  .drainage-grid { gap: 24px; margin-top: 26px; }
  .drainage-copy > p { font-size: 15.5px; margin-bottom: 12px; }
  .green-checks li, .red-xs li { font-size: 15.5px; }
  .pink-callout { padding: 16px 18px; }
  .pink-callout p { font-size: 15.5px; }
  .chart-card { padding: 18px 16px; }
  .chart-title { font-size: 20px; margin-bottom: 12px; }
  .anatomy-img { min-height: 230px; }

  /* Why nothing worked */
  .nothing-grid { gap: 16px; }
  .nothing-body { padding: 16px 16px 18px; }
  .nothing-body h4 { font-size: 18px; margin-bottom: 12px; }
  .why-failed { padding: 14px 16px; }
  .why-failed p:last-child { font-size: 14px; }
  .missing-piece { padding: 24px 20px; }
  .missing-piece h3 { font-size: 22px; }
  .missing-piece p { font-size: 15.5px; }

  /* Ingredients → keep 2 across, tighter cells */
  .ingredient-table { grid-template-columns: 1fr 1fr; }
  .ing-cell { border-right: 1px solid #1A1A1A !important; border-bottom: 1px solid #1A1A1A !important; }
  .ing-cell:nth-child(2n) { border-right: none !important; }
  .ing-cell:nth-child(n+9) { border-bottom: none !important; }
  .ing-cell summary { padding: 14px 10px 12px; }
  .ing-cat { font-size: 12px; margin-bottom: 8px; }
  .ing-img { width: 78px; height: 78px; margin-bottom: 10px; }
  .ing-name { font-size: 14.5px; gap: 5px; }
  .ing-body { padding: 0 12px 16px; font-size: 13px; }
  .synergy-panel { padding: 28px 22px; margin-top: 30px; }
  .synergy-panel h3 { font-size: 25px; }
  .synergy-intro { font-size: 15.5px; margin-bottom: 16px; }
  .synergy-panel .green-checks li { font-size: 15px; }

  /* Reviews */
  .jdgm-title { font-size: 24px; margin: 24px 0 20px; }
  .jdgm-summary { gap: 18px; margin-bottom: 24px; }
  .jdgm-rev { padding: 18px 0; }
  .jr-body { font-size: 15px; }

  /* Trust strip */
  .trust-strip { padding: 30px 0; }
  .trust-grid { gap: 22px 12px; }
  .t-ic { width: 40px; height: 40px; margin-bottom: 8px; }
  .trust-name { font-size: 14.5px; }
  .trust-sub { font-size: 13.5px; }

  /* Testimonial videos → horizontal swipe carousel */
  .ugc-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 26px 0 16px;
  }
  .ugc-grid::-webkit-scrollbar { display: none; }
  .ugc-card { flex: 0 0 62%; scroll-snap-align: center; }
  .ugc-progress { margin-right: 12px; }

  /* FAQ */
  .faq-card { padding: 8px 20px; margin-top: 26px; border-radius: 14px; }
  .faq-item summary { font-size: 16px; padding: 20px 40px 20px 0; }
  .faq-body { font-size: 15px; padding-bottom: 20px; }

  /* Mission + before/after */
  .mission-grid, .ba-grid { gap: 26px; }
  .mission-copy h2, .ba-copy h2 { font-size: 25px; margin-bottom: 14px; }
  .mission-panel { padding: 22px 20px 18px; }
  .mp-stats { gap: 18px; }
  .mp-number span { font-size: 38px; }
  .mp-stat p:last-child { font-size: 15.5px; }
  .mission-visual { gap: 16px; }
  .mission-ring svg { width: 120px; height: 120px; }
  .ba-copy > p { font-size: 15.5px; }

  /* Shared CTAs */
  .cta-block { margin-top: 26px; }
  .btn-cta { font-size: 16px; padding: 17px 20px; }
  .cta-guarantee { font-size: 14.5px; }

  /* Nutritional Information popup — must fit one screen without scrolling */
  .nutri-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
  }
  .nutri-modal { margin: auto; padding: 13px 12px 12px; border-radius: 14px; }
  .nutri-close { top: 8px; right: 8px; width: 27px; height: 27px; font-size: 16px; }
  .nutri-title { font-size: 19px; margin-bottom: 9px; }
  .facts-panel { padding: 11px 11px 9px; border-radius: 9px; margin-bottom: 9px; }
  .facts-title { font-size: 21px; margin-bottom: 2px; }
  .facts-serving { font-size: 10px; margin-bottom: 4px; }
  .facts-bar { height: 4px; margin: 4px 0; }
  .facts-head { font-size: 10.5px; padding: 2px 0; border-bottom-width: 1.5px; }
  .facts-row {
    grid-template-columns: 1fr auto 15px;
    gap: 4px;
    font-size: 10px;
    line-height: 1.22;
    padding: 2.5px 0;
  }
  .fr-sub { padding-left: 6px; }
  .facts-note { font-size: 10px; margin-bottom: 4px; }
  .facts-other { font-size: 9px; line-height: 1.35; }
  .nutri-cta { font-size: 13.5px; padding: 11px 10px; margin-bottom: 9px; }
  .nutri-points { gap: 4px 12px; }
  .nutri-points span { font-size: 11px; gap: 5px; }
  .nutri-points span::before { width: 15px; height: 15px; font-size: 7px; }

  .payment-icons, .footer-pay { flex-wrap: wrap; }
  .payment-icons .pay-chip, .footer-pay .pay-chip { flex: 0 0 42px; max-width: 42px; height: 28px; }
  .pay-chip svg { height: 13px; }

  /* Footer */
  .site-footer { padding: 44px 0 36px; }
  .footer-grid { gap: 34px; }
  .footer-menus { gap: 26px 20px; margin-bottom: 30px; }
  .footer-col a, .footer-address, .footer-email { font-size: 15px; }
  .footer-disclaimer p { font-size: 13px; margin-bottom: 14px; }
}

@media (max-width: 560px) {
  .mp-stats { grid-template-columns: 1fr; }
  .btn-cta { min-width: 100%; }
  .cta-block.left .cta-guarantee { padding-left: 0; }
}

/* ============ FOOTER LEGAL LINE ============ */
.footer-legal-line { font-weight: 700; opacity: 0.9; }

/* ============ POLICY MODALS ============ */
.policy-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 300;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 32px 16px;
}
.policy-overlay[hidden] { display: none; }
.policy-modal {
  position: relative;
  background: var(--white);
  border-radius: 16px;
  max-width: 640px;
  width: 100%;
  max-height: calc(100dvh - 64px);
  margin: auto;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.policy-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid #F5B8C6;
  background: var(--white);
  color: #E23A6E;
  font-size: 22px;
  line-height: 1;
  z-index: 2;
}
.policy-body {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 40px 34px 34px;
}
.policy-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(26px, 3.4vw, 36px);
  color: var(--black);
  line-height: 1.2;
  margin: 0 44px 20px 0;
}
.policy-body h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 20px;
  color: var(--black);
  margin: 24px 0 8px;
}
.policy-body p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 14px;
}
.policy-body p:last-child { margin-bottom: 0; }
.policy-body strong { font-weight: 800; color: var(--black); }
.policy-body em { font-style: italic; }
.policy-body a { color: var(--emerald); }
.policy-note {
  background: var(--missing-bg);
  border-left: 3px solid var(--green-border);
  border-radius: 6px;
  padding: 12px 16px;
}
.policy-fda {
  border-top: 1px solid var(--line);
  padding-top: 16px;
  margin-top: 20px;
}
@media (max-width: 560px) {
  .policy-overlay { padding: 16px 12px; }
  .policy-modal { max-height: calc(100dvh - 24px); }
  .policy-body { padding: 34px 20px 24px; }
}
