/* SodaMelt DTC — main stylesheet
   Palette derived from the official SodaMelt label (plum / violet / lavender base,
   teal as the high-energy complementary, milk cream as the dominant background).
   Built on the approved B3 funnel structure — same class names, new identity.
*/

:root {
  /* ==========================================================================
     SODAMELT — DESIGN SYSTEM
     Paleta derivada da label oficial (amostragem de pixel) + tons derivados
     para superficies, estados e feedback. Fonte: doc "Confeccao de paginas".
     ========================================================================== */

  /* --- core brand (direto da label) --- */
  --sm-navy:         #072287;  /* Navy marca      - wordmark, headlines, texto   */
  --sm-navy-soft:    #253788;  /* Navy variacao   - badges, selo, secundarios    */
  --sm-navy-deep:    #04154F;  /* derivado        - footer, banda mais profunda  */
  --sm-red:          #DE0307;  /* Vermelho selo   - urgencia, ribbons, "was"     */
  --sm-orange-deep:  #EF8006;  /* Laranja profundo- topo do gradiente de fundo   */
  --sm-orange:       #EA6504;  /* Laranja         - CTA, precos, acentos         */
  --sm-orange-dark:  #C24E02;  /* derivado        - hover / pressed do laranja   */
  --sm-orange-lite:  #F2A256;  /* Laranja claro   - ondas, superficies alt       */
  --sm-peach:        #F4C8B1;  /* Pessego claro   - gradiente central            */
  --sm-peach-tint:   #FDF1E8;  /* derivado        - cards e secoes tintadas      */
  --sm-cream:        #FFF8F1;  /* derivado        - fundo das bandas largas      */
  --sm-white:        #FFFFFF;  /* Branco          - cards, Supplement Facts      */

  /* --- feedback / suporte --- */
  --sm-green:        #16916B;  /* derivado - checks, FREE, garantia              */
  --sm-green-soft:   #E4F4EE;  /* derivado - tint verde                          */
  --sm-gold:         #E5A82E;  /* GOLDEN BUTTONS (ver css/gold-buttons.css)      */
  --sm-muted:        #5A6486;  /* texto secundario                               */
  --sm-line:         #EFE1D5;  /* bordas / divisores                             */

  /* --- gradientes de marca --- */
  --sm-grad-label:   linear-gradient(135deg,#EF8006 0%,#EA6504 55%,#F2A256 100%);
  --sm-grad-soft:    linear-gradient(180deg,#FFF8F1 0%,#FDF1E8 100%);

  /* ==========================================================================
     Aliases de compatibilidade - mantem o CSS herdado da estrutura B3
     funcionando sobre os tokens SodaMelt. Em codigo novo, use --sm-*.
     ========================================================================== */
  --milk:          var(--sm-cream);
  --milk-haze:     var(--sm-peach-tint);
  --white:         var(--sm-white);
  --plum:          var(--sm-navy);
  --plum-deeper:   var(--sm-navy-deep);
  --plum-shadow:   var(--sm-orange-dark);
  --orchid:        var(--sm-orange);
  --violet:        var(--sm-navy-soft);
  --lavender:      var(--sm-orange-lite);
  --lavender-soft: var(--sm-peach-tint);
  --teal:          var(--sm-green);
  --teal-soft:     var(--sm-green-soft);
  --ink:           var(--sm-navy);
  --muted:         var(--sm-muted);
  --line:          var(--sm-line);
}

/* ===== reset / base ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

.container { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }

/* anchor targets must clear the sticky header when jumped to */
#order-section, #Bonus, #About, #Ingredients, #FAQ { scroll-margin-top: 86px; }

/* visible keyboard focus on every interactive element */
a:focus-visible, button:focus-visible, .faq-q:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ===== SECTION 1 · HEADER ===== */
.navbar {
  position: sticky; top: 0; z-index: 300;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 14px rgba(7,34,135,.06);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 66px; gap: 20px;
}
.nav-logo {
  display: flex; align-items: center; gap: 9px;
  font-family: 'Oswald', sans-serif;
  font-size: 29px; font-weight: 500;
  letter-spacing: -.2px;
  line-height: 1;
}
.nav-logo .brand-word { display: inline-flex; align-items: baseline; }
.nav-logo .brand-slim { color: var(--plum); font-weight: 600; }
.nav-logo .brand-set { color: var(--teal);  font-weight: 400; }
.nav-logo .brand-mark { width: 26px; height: 26px; }
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links a {
  font-size: 14px; font-weight: 700; color: #2E3F86;
  transition: color .2s;
}
.nav-links a:hover { color: var(--orchid); }
.nav-links a b { color: var(--teal); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orchid); color: var(--white) !important;
  font-size: 13px; font-weight: 700; letter-spacing: .3px;
  padding: 10px 19px; border-radius: 8px;
  box-shadow: 0 4px 14px rgba(234,101,4,.28);
  transition: background .2s, transform .2s;
}
.nav-cta:hover { background: var(--plum-shadow); transform: translateY(-1px); }
.nav-cta svg { width: 15px; height: 15px; }

/* V4 (reduced page) — the nav is only the BUY NOW button, so it never collapses */
.nav-links--reduced { display: flex !important; }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--plum); border-radius: 2px; transition: all .3s; }

/* ===== SECTION 2 · HERO ===== */
.hero {
  position: relative;
  background:
    /* tide watermark — same seamless 600-unit cycle as the claim strips, lifted off
       the bottom edge so it reads as its own layer rather than a broken join with
       the plum band below */
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='120' viewBox='0 0 1200 120'%3E%3Cg fill='none' stroke-linecap='round'%3E%3Cpath d='M0 42q150-30 300 0t300 0t300 0t300 0' stroke='%23F4C8B1' stroke-opacity='.16' stroke-width='2.5'/%3E%3Cpath d='M0 78q150 30 300 0t300 0t300 0t300 0' stroke='%23F2A256' stroke-opacity='.34' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E"),
    radial-gradient(115% 80% at 82% 0%, rgba(242,162,86,.30) 0%, rgba(242,162,86,0) 58%),
    radial-gradient(90% 70% at 8% 100%, rgba(22,145,107,.11) 0%, rgba(22,145,107,0) 60%),
    linear-gradient(180deg, var(--milk-haze) 0%, var(--milk) 100%);
  background-repeat: repeat-x, no-repeat, no-repeat, no-repeat;
  background-position: center bottom 26px, 0 0, 0 0, 0 0;
  background-size: 1200px 120px, auto, auto, auto;
  padding: 48px 0 68px;
  overflow: hidden;
}
.hero-headline { text-align: center; max-width: 940px; margin: 0 auto 42px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Oswald', sans-serif; font-size: 12.5px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase; color: var(--plum-shadow);
  background: rgba(255,255,255,.75);
  border: 1px solid var(--lavender);
  border-radius: 40px; padding: 7px 20px; margin-bottom: 20px;
  backdrop-filter: blur(2px);
}
.hero-eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--teal);
  box-shadow: 0 0 0 3px rgba(22,145,107,.22);
}
.hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(32px, 4.6vw, 56px);
  font-weight: 600; color: var(--plum);
  line-height: 1.06; letter-spacing: -.4px; text-transform: none;
}
.hero-title .accent {
  color: var(--orchid);
  /* thin tapering teal stroke under the accent words */
  background-image: linear-gradient(90deg, rgba(22,145,107,.6), rgba(22,145,107,.18));
  background-repeat: no-repeat;
  background-size: 100% 5px;
  background-position: 0 94%;
  padding-bottom: 3px;
}
.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px); font-weight: 600;
  color: #3A4C93; line-height: 1.55; margin-top: 18px;
  max-width: 780px; margin-left: auto; margin-right: auto;
}
.hero-subtitle b { color: var(--plum); }

.hero-inner {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 48px; align-items: center;
}
.hero-left { position: relative; display: flex; flex-direction: column; align-items: center; gap: 18px; }
/* halo behind the pack so the transparent PNG reads as lit rather than pasted on */
.hero-left::before {
  content: '';
  position: absolute; top: -4%; left: 50%; transform: translateX(-50%);
  width: min(470px, 96%); aspect-ratio: 1/1; border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255,255,255,.85) 0%, rgba(255,255,255,0) 62%),
    radial-gradient(circle, rgba(242,162,86,.4) 0%, rgba(242,162,86,0) 66%);
  pointer-events: none;
}
.hero-left > * { position: relative; }
.hero-product-img { max-height: 460px; width: auto; object-fit: contain;
  filter: drop-shadow(0 26px 34px rgba(7,34,135,.26)); }
.hero-bonus-line {
  font-family: 'Oswald', sans-serif; font-size: 15px; font-weight: 500;
  letter-spacing: .6px; color: var(--plum); text-align: center;
  background: var(--teal-soft); border: 2px solid var(--teal);
  border-radius: 40px; padding: 7px 22px;
}
.hero-bonus-previews { display: flex; gap: 12px; justify-content: center; width: 100%; }
.hero-bonus-thumb { position: relative; flex: 1; max-width: 122px; }
.hero-bonus-thumb img {
  border-radius: 8px; border: 1px solid var(--line);
  box-shadow: 0 6px 18px rgba(7,34,135,.16);
  aspect-ratio: 3/4; object-fit: cover; object-position: 50% 8%;
}
.hero-bonus-thumb .free-tag {
  position: absolute; top: -8px; right: -6px;
  background: var(--teal); color: var(--white); font-family: 'Oswald', sans-serif;
  font-size: 11px; font-weight: 600; padding: 2px 10px; border-radius: 20px;
  letter-spacing: .5px; box-shadow: 0 2px 6px rgba(0,0,0,.2);
}

/* hero CTA card — right column (40%) */
.hero-card {
  position: relative;
  background: var(--white); border: 1px solid var(--line);
  border-radius: 22px; padding: 30px 28px;
  box-shadow: 0 2px 4px rgba(7,34,135,.05), 0 24px 56px rgba(7,34,135,.15);
  display: flex; flex-direction: column; gap: 16px; text-align: center;
  overflow: hidden;
}
/* gradient hairline across the top edge of the card */
.hero-card::before {
  content: '';
  position: absolute; inset: 0 0 auto 0; height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--violet) 50%, var(--orchid));
}
.hero-card h2 {
  font-family: 'Oswald', sans-serif; font-size: clamp(21px, 2.8vw, 28px);
  font-weight: 600; color: var(--plum); line-height: 1.18;
}
.hero-card-img { max-height: 225px; width: auto; margin: 0 auto; object-fit: contain; }
.hero-card-badge {
  font-family: 'Oswald', sans-serif; font-size: 12.5px; font-weight: 500;
  letter-spacing: .5px; color: var(--plum-shadow);
  background: var(--lavender-soft); border: 1px dashed var(--violet);
  border-radius: 10px; padding: 9px 12px;
}
.hero-cta-btn, .pkg-btn, .faq-cta-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 11px;
  background: var(--orchid); color: var(--white);
  font-family: 'Oswald', sans-serif; font-weight: 600;
  border: none; border-radius: 10px; cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
}
.hero-cta-btn {
  font-size: 19px; padding: 16px 26px; width: 100%;
  letter-spacing: .4px;
  animation: cta-pulse 2.2s ease-in-out infinite;
}
.pkg-btn { pointer-events: none; }
.hero-cta-btn:hover, .pkg-btn:hover, .faq-cta-btn:hover {
  background: var(--plum-shadow); animation: none; transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(194,78,2,.34);
}
.hero-cta-btn svg { width: 19px; height: 19px; }
@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(234,101,4,.30); transform: scale(1); }
  50% { box-shadow: 0 0 0 9px rgba(234,101,4,.09), 0 4px 18px rgba(234,101,4,.36); transform: scale(1.012); }
}
.hero-trust {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 6px 14px; font-size: 12.5px; font-weight: 700; color: var(--muted);
}
.hero-trust span { display: inline-flex; align-items: center; gap: 5px; }
.hero-trust svg { width: 14px; height: 14px; fill: var(--teal); }

/* ===== SHARED · TIDE BANDS (claim strips + free-shipping strip) =====
   Dark plum bands carrying the tide-wave motif. Sitting dark between the cream
   sections makes them read as moments rather than filler. */
.claim-strip,
.shipping-strip {
  position: relative; overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.14);
  border-bottom: 1px solid rgba(0,0,0,.3);
  padding: 34px 24px; text-align: center;
}
/* Tide lines. The tile MUST be seamless: each path starts and ends at the same y
   with the same tangent, and one full wave cycle is 600 — exactly half the 1200
   tile — so repeat-x never shows a step. Middle line runs in opposite phase so the
   lines cross like water instead of sitting parallel. */
.claim-strip::before,
.shipping-strip::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='130' viewBox='0 0 1200 130'%3E%3Cg fill='none' stroke-linecap='round'%3E%3Cpath d='M0 38q150-28 300 0t300 0t300 0t300 0' stroke='%23F4C8B1' stroke-opacity='.5' stroke-width='2.5'/%3E%3Cpath d='M0 70q150 28 300 0t300 0t300 0t300 0' stroke='%23F2A256' stroke-opacity='.4' stroke-width='2'/%3E%3Cpath d='M0 102q150-22 300 0t300 0t300 0t300 0' stroke='%23F4C8B1' stroke-opacity='.2' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat-x; background-position: center; background-size: 1200px 130px;
}
.claim-strip > *,
.shipping-strip > * { position: relative; }

/* ===== SECTION 3 / 12 · CLAIM STRIP =====
   Warm orchid corner keeps these distinct from the Science / FAQ bands. */
.claim-strip {
  background:
    radial-gradient(72% 170% at 50% -25%, rgba(242,162,86,.5) 0%, rgba(242,162,86,0) 62%),
    linear-gradient(160deg, #122E7A 0%, var(--plum) 46%, #8F3A02 100%);
}
.claim-strip h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(20px, 3.2vw, 32px); font-weight: 600;
  color: var(--milk-haze); line-height: 1.2; letter-spacing: -.2px;
}
.claim-strip p {
  display: inline-block;
  font-family: 'Oswald', sans-serif; font-weight: 500;
  font-size: clamp(13px, 1.6vw, 16px); letter-spacing: 1.4px; text-transform: uppercase;
  color: #063D2C; background: var(--teal);
  border-radius: 30px; padding: 6px 22px; margin-top: 14px;
  box-shadow: 0 4px 14px rgba(0,0,0,.32);
}

/* ===== SECTION 4 / 12 · PRICING ===== */
.packages-section { background: var(--milk); padding: 56px 0; }
.section-eyebrow {
  font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 500;
  letter-spacing: 2.4px; text-transform: uppercase; color: var(--teal);
  text-align: center;
}
.section-heading {
  font-family: 'Oswald', sans-serif; font-size: clamp(25px, 3.7vw, 40px);
  font-weight: 600; color: var(--plum); line-height: 1.14; letter-spacing: -.3px;
  text-align: center; margin-top: 8px;
}
/* small gradient flourish under every section heading */
.section-heading::after,
.faq-title::after {
  content: ''; display: block;
  width: 68px; height: 3px; border-radius: 3px; margin: 20px auto 0;
  background: linear-gradient(90deg, var(--teal), var(--orchid));
}
/* on the dark/teal bands the flourish switches to the warm gold accent */
.bonus-section .section-heading::after,
.faq-title::after { background: linear-gradient(90deg, #FFE9A8, rgba(255,255,255,.5)); }
.faq-title::after { margin-left: 0; }
.packages-grid {
  display: grid; grid-template-columns: 1fr 1.24fr 1fr; gap: 22px;
  /* the featured ribbon floats ~43px above the grid — this keeps it clear of the
     heading flourish above it */
  margin-top: 66px; align-items: start;
}
.pkg-card {
  /* beige surface, matching the tone used further down the page */
  background: var(--milk-haze); border: 2px solid var(--line); border-radius: 20px;
  overflow: visible; display: flex; flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  position: relative;
  box-shadow: 0 2px 4px rgba(7,34,135,.04), 0 10px 26px rgba(7,34,135,.07);
}
.pkg-card:hover {
  transform: translateY(-6px); border-color: var(--lavender);
  box-shadow: 0 4px 8px rgba(7,34,135,.06), 0 22px 46px rgba(7,34,135,.16);
}
.pkg-card.featured {
  border: 3px solid var(--orchid); margin-top: -14px; margin-bottom: -14px;
  box-shadow: 0 4px 10px rgba(234,101,4,.12), 0 26px 56px rgba(234,101,4,.26);
  z-index: 3;
}
.pkg-card.featured:hover { border-color: var(--plum-shadow); }
.pkg-ribbon {
  position: absolute; top: -29px; left: 50%; transform: translateX(-50%);
  background: var(--orchid); color: var(--white); border: 2px solid var(--plum-shadow);
  font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 600;
  letter-spacing: .8px; padding: 4px 18px; border-radius: 30px;
  display: inline-flex; align-items: center; gap: 6px; white-space: nowrap;
  box-shadow: 0 4px 12px rgba(7,34,135,.2); z-index: 2;
}
.pkg-head {
  background: linear-gradient(135deg, #6A749A, var(--violet));
  padding: 12px 16px; text-align: center;
  border-radius: 17px 17px 0 0;
}
.pkg-card.featured .pkg-head {
  background: linear-gradient(135deg, var(--plum-shadow), var(--plum));
  border-radius: 14px 14px 0 0;
}
.pkg-head h4 {
  font-family: 'Oswald', sans-serif; font-size: 16px; font-weight: 500;
  color: var(--white); letter-spacing: 1.8px; text-transform: uppercase;
}
.pkg-body { padding: 22px 20px; display: flex; flex-direction: column; gap: 14px; }
.pkg-qty {
  font-family: 'Oswald', sans-serif; font-size: 36px; font-weight: 600;
  color: var(--plum); text-align: center; line-height: 1;
}
.pkg-supply { font-size: 14px; font-weight: 700; color: var(--muted); text-align: center; margin-top: -8px; }
.pkg-img-wrap { min-height: 186px; display: flex; align-items: center; justify-content: center; position: relative; }
.pkg-img-wrap img { max-height: 205px; width: auto; object-fit: contain;
  filter: drop-shadow(0 12px 16px rgba(7,34,135,.18)); }
.pkg-bonus-tag {
  position: absolute; right: 6px; bottom: 10px;
  background: var(--teal); color: var(--white); font-family: 'Oswald', sans-serif;
  font-size: 12px; font-weight: 600; padding: 4px 11px; border-radius: 7px;
  letter-spacing: .5px; box-shadow: 0 3px 8px rgba(0,0,0,.2);
}
.pkg-price {
  font-family: 'Oswald', sans-serif; font-size: 64px; font-weight: 600;
  color: var(--orchid); text-align: center; line-height: .95;
}
.pkg-price-per { font-size: 14px; font-weight: 600; color: var(--muted); text-align: center; margin-top: -4px; }
.pkg-feats { display: flex; flex-direction: column; gap: 7px; padding: 4px 0; }
.pkg-feat { display: flex; align-items: center; gap: 9px; font-size: 14.5px; font-weight: 600; }
.pkg-feat svg { width: 17px; height: 17px; min-width: 17px; }
.pkg-feat.yes { color: #0B2470; } .pkg-feat.yes svg { fill: var(--teal); }
.pkg-feat.no  { color: #93A0C4; } .pkg-feat.no svg  { fill: #D2D8E8; }
.pkg-save {
  /* warm highlight so the pill belongs on the beige card surface */
  background: linear-gradient(135deg, #FFFDF7, var(--teal-soft));
  border: 1px solid var(--lavender);
  border-radius: 30px; text-align: center; padding: 9px 12px;
  font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 17px;
  letter-spacing: .3px; color: var(--plum-shadow);
}
.pkg-total { text-align: center; line-height: 1.2; }
.pkg-total .was { color: #93A0C4; text-decoration: line-through; font-size: 17px; margin-right: 6px; }
.pkg-total .now { font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 26px; color: var(--plum); }
.pkg-total .ship { display: block; font-size: 12.5px; color: var(--muted); margin-top: 2px; }
.pkg-btn { font-size: 20px; padding: 14px 16px; width: 100%; position: relative; }
.pkg-btn svg { width: 20px; height: 20px; }
.pkg-hand { position: absolute; right: -6px; bottom: -22px; width: 46px;
  pointer-events: none; animation: hand-tap 1.6s ease-in-out infinite; }
@keyframes hand-tap { 0%,100% { transform: translateY(0) rotate(-8deg);} 50% { transform: translateY(-7px) rotate(-8deg);} }
.pkg-pay { max-width: 180px; margin: 2px auto 0; opacity: .85; }

/* featured package — bigger & more prominent */
.pkg-card.featured .pkg-head { padding: 13px 16px; }
.pkg-card.featured .pkg-head h4 { font-size: 17px; }
.pkg-card.featured .pkg-body { padding: 22px 22px; gap: 13px; }
.pkg-card.featured .pkg-qty { font-size: 40px; }
.pkg-card.featured .pkg-supply { font-size: 15px; }
.pkg-card.featured .pkg-img-wrap { min-height: 265px; }
.pkg-card.featured .pkg-img-wrap img {
  max-height: 290px; max-width: 122%; width: auto;
  filter: drop-shadow(0 16px 24px rgba(7,34,135,.22));
}
.pkg-card.featured .pkg-bonus-tag { font-size: 13px; padding: 5px 13px; }
.pkg-card.featured .pkg-price { font-size: 72px; }
.pkg-card.featured .pkg-price-per { font-size: 15px; }
.pkg-card.featured .pkg-feat { font-size: 15.5px; gap: 10px; }
.pkg-card.featured .pkg-feat svg { width: 18px; height: 18px; min-width: 18px; }
.pkg-card.featured .pkg-save { font-size: 18px; padding: 10px; }
.pkg-card.featured .pkg-total .was { font-size: 19px; }
.pkg-card.featured .pkg-total .now { font-size: 30px; }
.pkg-card.featured .pkg-btn {
  font-size: 22px; padding: 17px 16px;
  box-shadow: 0 12px 26px rgba(234,101,4,.34);
}
.pkg-card.featured .pkg-btn svg { width: 24px; height: 24px; }
.pkg-card.featured .pkg-hand { width: 52px; right: -8px; bottom: -24px; }
.pkg-card.featured .pkg-pay { max-width: 200px; }

/* ===== SECTION 5 / 12 · GUARANTEE ===== */
.guarantee-section { background: var(--milk-haze); padding: 70px 0; border-bottom: 1px solid var(--line); }
.guarantee-inner { display: flex; flex-direction: column; gap: 26px; }
.guarantee-body {
  display: flex; align-items: center; gap: 34px;
  background: linear-gradient(135deg, var(--milk-haze), var(--lavender-soft));
  border: 1px solid var(--line); border-radius: 22px;
  padding: 30px 34px; margin-top: 6px;
  box-shadow: 0 12px 32px rgba(7,34,135,.07);
}
.guarantee-seal { width: 168px; min-width: 168px; height: auto; object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(7,34,135,.18)); }
.guarantee-text { font-size: 17px; line-height: 1.75; color: #1B3A8F; }
.guarantee-fda { max-width: 640px; margin: 8px auto 0; width: 100%; }
.guarantee-made { font-size: 15px; font-style: italic; color: var(--muted); text-align: center; }

/* ===== SECTION 6 · BONUSES ===== */
.bonus-section {
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.05) 0 24px, rgba(0,0,0,.03) 24px 48px),
    radial-gradient(90% 60% at 50% 0%, rgba(255,255,255,.14) 0%, rgba(255,255,255,0) 62%),
    var(--teal);
  padding: 72px 0;
}
.bonus-section .section-eyebrow { color: #DCF2EA; }
.bonus-section .section-heading { color: var(--white); }
.bonus-section .section-heading .hl { color: #FFE9A8; }
.bonus-value-line {
  text-align: center; margin-top: 16px;
  font-family: 'Oswald', sans-serif; font-size: clamp(15px, 2vw, 18px); font-weight: 500;
  letter-spacing: .4px; color: #ECF8F3;
}
.bonus-value-line s { color: rgba(255,255,255,.62); }
.bonus-value-line b { color: #FFE9A8; font-weight: 600; }
.bonus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px; }
.bonus-card { display: flex; flex-direction: column; gap: 14px; }
.bonus-card-img { position: relative; transition: transform .25s ease; }
.bonus-card:hover .bonus-card-img { transform: translateY(-6px); }
.bonus-card-img img { border-radius: 12px; width: 100%; background: var(--white);
  box-shadow: 0 18px 40px rgba(0,0,0,.32); }
/* thin spine on the left edge so the flat cover reads as a book */
.bonus-card-img::after {
  content: '';
  position: absolute; inset: 0 auto 0 0; width: 7px;
  border-radius: 12px 0 0 12px;
  background: linear-gradient(90deg, rgba(0,0,0,.3), rgba(255,255,255,.14));
  pointer-events: none;
}
.bonus-card-img .free-badge {
  position: absolute; top: 10px; right: 10px; background: var(--orchid); color: var(--white);
  font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 600;
  letter-spacing: .8px; padding: 4px 13px; border-radius: 30px; box-shadow: 0 3px 8px rgba(0,0,0,.3);
}
.bonus-num { font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 600;
  color: #D3EFE5; letter-spacing: 1.6px; text-transform: uppercase; }
.bonus-name { font-family: 'Oswald', sans-serif; font-size: 23px; font-weight: 600; color: var(--white); line-height: 1.2; }
.bonus-name .price { color: #FFE9A8; font-size: 17px; margin-left: 6px; }
.bonus-text { font-size: 14.5px; color: rgba(255,255,255,.86); line-height: 1.62; }
.bonus-dl { font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 500;
  letter-spacing: .8px; color: #FFE9A8; }

/* ===== SECTION 7 · FREE SHIPPING STRIP ===== */
/* ===== SECTION 7 · FREE SHIPPING STRIP =====
   Same tide band, but a violet-leaning gradient one step lighter than the plum
   Science band that follows it — otherwise the two full-bleed dark sections butt
   together and read as a single block. The teal hairline marks the boundary. */
.shipping-strip {
  background:
    radial-gradient(70% 160% at 50% -20%, rgba(242,162,86,.42) 0%, rgba(242,162,86,0) 64%),
    linear-gradient(160deg, #22408E 0%, #16327E 48%, #1B3A8F 100%);
  border-bottom: 2px solid var(--teal);
  padding: 34px 0;  /* the inner .container already carries the horizontal padding */
}
.shipping-inner { display: flex; align-items: center; gap: 12px; justify-content: center; text-align: center; flex-direction: column; }
.shipping-title {
  font-family: 'Oswald', sans-serif; font-size: clamp(20px, 3vw, 32px); font-weight: 600;
  color: var(--milk-haze); letter-spacing: -.2px;
}
.shipping-sub {
  font-size: 15px; font-weight: 700; color: #FDF1E8;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.24);
  border-radius: 30px; padding: 8px 22px;
}
.shipping-sub em { font-style: italic; font-weight: 600; color: var(--lavender); }

/* ===== SECTION 8 · ABOUT / SCIENCE ===== */
.science-band {
  background:
    radial-gradient(80% 100% at 50% 0%, rgba(242,162,86,.30) 0%, rgba(0,0,0,0) 62%),
    var(--plum);
  padding: 54px 0; text-align: center;
}
.science-band .date-label {
  font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 500;
  letter-spacing: 2.2px; text-transform: uppercase; color: var(--lavender);
}
.science-band h2 {
  font-family: 'Oswald', sans-serif; font-size: clamp(23px, 3.4vw, 38px);
  font-weight: 600; color: var(--white); line-height: 1.2; max-width: 920px; margin: 12px auto 0;
}
.science-band .subtitle { font-size: clamp(16px, 2vw, 20px); font-style: italic; color: rgba(255,255,255,.82); margin-top: 12px; }

.science-section { padding: 66px 0; background: var(--milk-haze); }
.science-block { display: grid; grid-template-columns: 2fr 3fr; gap: 36px; align-items: center; margin-bottom: 40px; }
.science-block.media-left { grid-template-columns: 2fr 3fr; }
.science-block.media-right { grid-template-columns: 3fr 2fr; }
.science-block.media-right .science-media { order: 2; }
/* editorial photos come in mixed orientations — a fixed ratio keeps both blocks even */
.science-media img {
  border-radius: 14px; width: 100%;
  aspect-ratio: 4/3; object-fit: cover; object-position: 50% 35%;
  box-shadow: 0 14px 34px rgba(7,34,135,.16);
}
.science-copy p { font-size: 16.5px; color: #1B3A8F; line-height: 1.75; margin-bottom: 14px; }
.science-copy h3 { font-family: 'Oswald', sans-serif; font-size: 26px; font-weight: 600; color: var(--plum); margin-bottom: 12px; line-height: 1.24; }
.science-copy b { color: var(--plum-shadow); }
.science-highlight {
  background: var(--lavender-soft); border-left: 4px solid var(--violet);
  border-radius: 0 12px 12px 0; padding: 16px 20px; font-size: 16px;
  color: #1B3A8F; line-height: 1.7; margin-top: 6px;
}
.quote-callout {
  position: relative;
  background: var(--white); border: 1px solid var(--line);
  border-top: 5px solid var(--teal); border-radius: 16px;
  padding: 30px 34px 26px; margin: 8px auto 40px; max-width: 820px;
  box-shadow: 0 12px 34px rgba(7,34,135,.1);
}
/* oversized quote mark as a watermark behind the citation */
.quote-callout::before {
  content: '\201C';
  position: absolute; top: 4px; left: 18px;
  font-family: 'Oswald', sans-serif; font-size: 92px; font-weight: 700;
  line-height: 1; color: rgba(22,145,107,.16); pointer-events: none;
}
.quote-callout .q { position: relative; font-size: 18.5px; font-style: italic; color: var(--plum); line-height: 1.58; font-weight: 600; }
.quote-callout .ref { font-size: 12px; color: var(--muted); line-height: 1.55; margin-top: 14px; }
.quote-callout .ref a { color: var(--teal); text-decoration: underline; }

/* ===== SECTION 9 · PRODUCT INTRO ===== */
.product-section { background: var(--milk); padding: 70px 0; }
.product-eyebrow { font-size: 17px; color: var(--muted); text-align: center; }
.product-title {
  font-family: 'Oswald', sans-serif; font-size: clamp(38px, 5.6vw, 60px);
  font-weight: 600; color: var(--plum); text-align: center; line-height: 1.05; margin-top: 2px;
}
.product-title .accent { color: var(--teal); }
.product-tagline {
  font-family: 'Oswald', sans-serif; font-size: clamp(18px, 2.4vw, 23px); font-weight: 400;
  color: #3A4C93; text-align: center; line-height: 1.34; margin: 14px auto 36px; max-width: 660px;
}
.product-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.product-inner img { width: 100%; max-height: 380px; object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(7,34,135,.2)); }
.product-copy p { font-size: 17px; font-weight: 500; color: #1B3A8F; line-height: 1.75; margin-bottom: 16px; }
.product-copy b { color: var(--plum-shadow); font-weight: 700; }

/* ===== SECTION 10 · INGREDIENTS ===== */
.ingredients-section { padding: 70px 0; background: var(--milk-haze); }
/* flex rather than grid: with 5 ingredients the orphan row centres itself */
.ingredients-grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; margin-top: 44px;
  max-width: 980px; margin-left: auto; margin-right: auto;
  counter-reset: ingredient;
}
.ingredient-card {
  display: flex; flex-direction: column; gap: 12px; counter-increment: ingredient;
  flex: 0 1 calc((100% - 60px) / 3); min-width: 240px;
}
.ingredient-img-wrap {
  position: relative;
  border: 2px solid var(--line); border-radius: 18px; overflow: hidden;
  aspect-ratio: 1/1; background: var(--white);
  box-shadow: 0 10px 26px rgba(7,34,135,.09);
  transition: transform .25s ease, box-shadow .25s ease;
}
.ingredient-card:hover .ingredient-img-wrap {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(7,34,135,.16);
}
.ingredient-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
/* plum veil at the base of the photo so the numbered badge stays legible */
.ingredient-img-wrap::before {
  content: '';
  position: absolute; inset: auto 0 0 0; height: 46%;
  background: linear-gradient(180deg, rgba(7,34,135,0) 0%, rgba(7,34,135,.5) 100%);
}
.ingredient-img-wrap::after {
  content: counter(ingredient);
  position: absolute; bottom: 12px; left: 14px;
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--white); color: var(--plum);
  font-family: 'Oswald', sans-serif; font-size: 16px; font-weight: 600;
  box-shadow: 0 4px 12px rgba(0,0,0,.28);
}
.ingredient-name { font-family: 'Oswald', sans-serif; font-size: 19px; font-weight: 600; color: var(--plum); line-height: 1.2; }
.ingredient-role { font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 400; font-style: italic; color: var(--teal); letter-spacing: .2px; margin-top: -6px; }
.ingredient-desc { font-size: 14px; color: #2E3F86; line-height: 1.58; }
.ingredients-notice {
  max-width: 820px; margin: 3rem auto 0;
  background: var(--lavender-soft); border: 1px solid var(--lavender);
  border-left: 5px solid var(--plum-shadow);
  border-radius: 0 14px 14px 0; padding: 20px 24px;
}
.ingredients-notice h4 {
  font-family: 'Oswald', sans-serif; font-size: 16px; font-weight: 600;
  letter-spacing: .8px; text-transform: uppercase; color: var(--plum-shadow); margin-bottom: 8px;
}
.ingredients-notice p { font-size: 14.5px; color: #1B3A8F; line-height: 1.65; }
.ingredients-closer { max-width: 820px; margin: 2rem auto 0; text-align: center; }
.ingredients-closer p { color: var(--muted); line-height: 1.65; font-style: italic; }

/* ===== SECTION 11 · BENEFITS ===== */
.benefits-section { background: var(--milk); border-top: 1px solid var(--line); padding: 62px 0; }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; }
.benefit-item {
  display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center;
  background: var(--white); border: 1px solid var(--line); border-radius: 20px;
  padding: 28px 22px 26px;
  box-shadow: 0 2px 4px rgba(7,34,135,.04), 0 10px 26px rgba(7,34,135,.06);
  transition: transform .22s ease, box-shadow .22s ease;
}
.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(7,34,135,.06), 0 20px 40px rgba(7,34,135,.13);
}
.benefit-icon {
  width: 68px; height: 68px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-soft), var(--lavender-soft));
  display: flex; align-items: center; justify-content: center; padding: 16px;
  box-shadow: inset 0 0 0 1px rgba(22,145,107,.24);
  border: none;
}
.benefit-icon svg { width: 100%; height: 100%; fill: var(--teal); }
.benefit-label { font-family: 'Oswald', sans-serif; font-size: 17px; font-weight: 600; color: var(--plum); line-height: 1.26; letter-spacing: -.1px; }
.benefit-text { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ===== SECTION 13 · FAQ ===== */
.faq-section {
  background:
    radial-gradient(80% 60% at 0% 0%, rgba(242,162,86,.26) 0%, rgba(0,0,0,0) 58%),
    var(--plum);
  padding: 72px 0;
}
.faq-inner { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 44px; align-items: center; }
.faq-aside { text-align: center; }
.faq-aside img { max-width: 400px; margin: 0 auto 20px; filter: drop-shadow(0 22px 34px rgba(0,0,0,.4)); }
.faq-aside .seal { max-width: 160px; margin: 0 auto 24px; filter: none; }
.faq-cta-btn { font-size: 18px; padding: 15px 24px; width: 100%; max-width: 320px; }
.faq-title {
  font-family: 'Oswald', sans-serif; font-size: clamp(28px, 4vw, 42px);
  font-weight: 600; color: var(--white); margin-bottom: 28px;
}
.faq-list { display: flex; flex-direction: column; gap: 11px; }
.faq-item {
  background: var(--white); border-radius: 14px; overflow: hidden;
  border-left: 4px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.faq-item.open { border-left-color: var(--teal); box-shadow: 0 12px 30px rgba(0,0,0,.22); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 16px 20px; cursor: pointer; user-select: none;
  transition: background-color .2s;
}
.faq-q:hover { background-color: var(--milk-haze); }
.faq-q h3 { font-family: 'Nunito Sans', sans-serif; font-size: 16.5px; font-weight: 700; color: var(--plum); line-height: 1.34; }
.faq-arrow { width: 20px; min-width: 20px; transition: transform .3s ease; fill: var(--teal); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 20px;
  font-size: 15.5px; color: #2E3F86; line-height: 1.72;
  transition: max-height .4s ease, opacity .3s ease .05s, padding-bottom .35s ease;
}
.faq-item.open .faq-a { max-height: 760px; opacity: 1; padding-bottom: 20px; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }

/* ===== SECTION 14 · SUPPLEMENT FACTS + REFERENCES ===== */
.label-section { padding: 66px 0 40px; background: var(--milk-haze); }
.label-img { max-width: 1100px; width: 100%; margin: 0 auto; border: 1px solid var(--line); border-radius: 14px; box-shadow: 0 14px 38px rgba(7,34,135,.12); }
.label-caption { text-align: center; font-size: 13.5px; color: var(--muted); margin-top: 16px; }
.references-section { padding: 0 0 60px; background: var(--milk-haze); }
.references-label {
  font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 600; color: #9DA8C7;
  text-align: center; text-transform: uppercase; letter-spacing: 1.8px; margin-bottom: 20px;
}
.references-logos { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; align-items: center; justify-items: center; margin-bottom: 14px; max-width: 760px; margin-left: auto; margin-right: auto; }
.references-logos img { max-height: 46px; width: auto; filter: grayscale(1); opacity: .55; }
.references-disclaimer { font-size: 12px; color: #A6B0CC; text-align: center; margin-bottom: 26px; }
.references-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.references-cols p { font-size: 12px; color: #8590B4; line-height: 1.65; margin-bottom: 10px; }
.references-cols b { color: #5A6486; }

/* ===== SECTION 15 · FOOTER ===== */
.bg-footer {
  background-color: var(--plum-deeper);
  color: var(--white);
  padding: 3rem 1.5rem;
  font-family: 'Nunito Sans', Arial, sans-serif;
  line-height: 1.4;
  box-sizing: border-box;
  width: 100%;
  overflow-x: hidden;
}
.bg-footer * { box-sizing: border-box; }
.bg-footer__container { max-width: 960px; margin: 0 auto; overflow-x: hidden; }
.bg-footer__links {
  list-style: none; margin: 0 0 1.5rem 0; padding: 0;
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: .5rem 1.5rem; text-align: center;
}
.bg-footer__links li { margin: 0; padding: 0; }
.bg-footer__links a {
  color: var(--white); text-decoration: none; font-size: .95rem; font-weight: 600;
  transition: color .2s;
}
.bg-footer__links a:hover { color: var(--lavender); text-decoration: underline; }
.bg-footer__disclaimer {
  color: rgba(255,255,255,.78); text-align: justify;
  font-size: .78rem; line-height: 1.45; margin: 0 0 1rem 0;
}
.bg-footer #disclaimer,
.bg-footer #disclaimer * { color: #fff !important; }

/* BuyGoods dynamic disclaimer — responsive container.
   Renders as a native horizontal table on desktop and stacks on mobile. */
#disclaimer {
  display: block;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  overflow: hidden;
  box-sizing: border-box;
}
#disclaimer * {
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
}
#disclaimer img { height: auto !important; }

@media (max-width: 767px) {
  .bg-footer { padding: 2rem 1rem; }
  .bg-footer__links { gap: .5rem 1rem; }
  #disclaimer table,
  #disclaimer tbody,
  #disclaimer tr,
  #disclaimer td,
  #disclaimer div {
    width: 100% !important;
    display: block !important;
  }
  #disclaimer td { padding: 8px !important; }
  #disclaimer img { display: block !important; margin: 0 auto 8px !important; }
}

/* ===== responsive ===== */
@media (max-width: 991px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute;
    top: 66px; left: 0; right: 0; background: var(--white); padding: 20px 24px;
    border-bottom: 1px solid var(--line); z-index: 400; gap: 16px;
    box-shadow: 0 8px 20px rgba(7,34,135,.12);
  }
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .science-block, .science-block.media-left, .science-block.media-right { grid-template-columns: 1fr; gap: 22px; }
  .science-block.media-right .science-media { order: 0; }
  .product-inner { grid-template-columns: 1fr; gap: 28px; }
  .bonus-grid { grid-template-columns: 1fr; max-width: 420px; margin: 36px auto 0; }
  .ingredient-card { flex: 0 1 calc((100% - 30px) / 2); }
  .faq-inner { grid-template-columns: 1fr; gap: 30px; }
  .faq-aside { position: static; min-width: 0; }
  .faq-aside img { max-width: 100%; width: auto; }

  /* packages: tame the featured emphasis so 3 columns still fit on tablets */
  .packages-grid { grid-template-columns: 1fr 1.2fr 1fr; gap: 16px; }
  .pkg-card.featured { margin-top: -12px; margin-bottom: -12px; box-shadow: 0 16px 34px rgba(234,101,4,.2); }
  .pkg-card.featured .pkg-body { padding: 20px 16px; gap: 13px; }
  .pkg-card.featured .pkg-img-wrap { min-height: 232px; }
  .pkg-card.featured .pkg-img-wrap img { max-height: 250px; max-width: 114%; }
  .pkg-card.featured .pkg-qty { font-size: 36px; }
  .pkg-card.featured .pkg-price { font-size: 60px; }
  .pkg-card.featured .pkg-save { font-size: 17px; }
  .pkg-card.featured .pkg-total .now { font-size: 27px; }
  .pkg-card.featured .pkg-btn { font-size: 19px; padding: 14px 12px; }
}
@media (max-width: 767px) {
  body { font-size: 16px; }
  .packages-grid { grid-template-columns: 1fr; max-width: 380px; margin: 58px auto 0; }
  .pkg-card { margin-top: 0; }
  .pkg-card.featured { margin-top: 0; margin-bottom: 0; }
  .pkg-card.featured .pkg-img-wrap img { max-width: 100%; }
  .pkg-card:nth-child(1) { order: 3; }
  .pkg-card:nth-child(2) { order: 1; }
  .pkg-card:nth-child(3) { order: 2; }
  .guarantee-body { flex-direction: column; align-items: center; text-align: center; padding: 26px 22px; }
  .ingredients-grid { max-width: 340px; margin: 36px auto 0; }
  .ingredient-card { flex: 0 1 100%; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .benefit-item { padding: 22px 16px 20px; }
  .references-logos { grid-template-columns: repeat(2, 1fr); }
  .references-cols { grid-template-columns: 1fr; }
  .quote-callout { padding: 26px 22px 22px; }
  .quote-callout::before { font-size: 70px; left: 12px; }
  /* phone tiles: their own 640-wide artwork (320 cycle, 2 per tile) rather than a
     squashed copy of the desktop one, so the stroke weight stays even */
  .claim-strip::before,
  .shipping-strip::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='640' height='130' viewBox='0 0 640 130'%3E%3Cg fill='none' stroke-linecap='round'%3E%3Cpath d='M0 38q80-26 160 0t160 0t160 0t160 0' stroke='%23F4C8B1' stroke-opacity='.5' stroke-width='2.5'/%3E%3Cpath d='M0 70q80 26 160 0t160 0t160 0t160 0' stroke='%23F2A256' stroke-opacity='.4' stroke-width='2'/%3E%3Cpath d='M0 102q80-20 160 0t160 0t160 0t160 0' stroke='%23F4C8B1' stroke-opacity='.2' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 640px 130px;
  }
}
@media (max-width: 479px) {
  .benefits-grid { grid-template-columns: 1fr; max-width: 340px; margin: 36px auto 0; }
  .hero-bonus-previews { gap: 8px; }
  .hero-eyebrow { font-size: 11px; letter-spacing: 1.4px; padding: 6px 15px; }
}

/* ==========================================================================
   SODAMELT · ADDENDUM
   Regras novas / ajustadas para as seções reescritas conforme o documento
   "Confecção de páginas SODAMELT". Usa apenas tokens --sm-* do design system.
   ========================================================================== */

/* --- S1 · logo como imagem --------------------------------------------- */
.nav-logo .brand-logo { width: auto; height: 38px; display: block; }
@media (max-width: 767px) { .nav-logo .brand-logo { height: 31px; } }

/* --- S2 · hero card: copy + bullet strip -------------------------------- */
.hero-card-copy {
  font-size: 14.5px; line-height: 1.62; color: var(--sm-muted);
  text-align: left; margin: 4px 0 2px;
}
.hero-card-copy b { color: var(--sm-navy); font-weight: 800; }
.hero-bullets { list-style: none; display: grid; gap: 9px; margin: 4px 0 2px; text-align: left; }
.hero-bullets li {
  position: relative; padding-left: 26px;
  font-size: 14.5px; font-weight: 600; line-height: 1.45; color: var(--sm-navy);
}
.hero-bullets li::before {
  content: ''; position: absolute; left: 0; top: 3px;
  width: 17px; height: 17px; border-radius: 50%;
  background: var(--sm-green) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%23fff' d='M9.5 16.2 5.3 12l-1.4 1.4 5.6 5.6L20.1 8.4 18.7 7z'/></svg>") center/12px no-repeat;
}

/* --- S5 · trust cards (Made in USA · Natural · GMP · FDA) --------------- */
.trust-cards {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  margin: 34px auto 0; max-width: 940px;
}
.trust-card {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 9px;
  background: var(--sm-white); border: 1px solid var(--sm-line); border-radius: 18px;
  padding: 24px 16px 22px;
  box-shadow: 0 2px 4px rgba(7,34,135,.04), 0 10px 24px rgba(7,34,135,.06);
  transition: transform .22s ease, box-shadow .22s ease;
}
.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 8px rgba(7,34,135,.06), 0 18px 36px rgba(7,34,135,.12);
}
.trust-icon {
  width: 56px; height: 56px; border-radius: 50%; padding: 13px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--sm-peach-tint), var(--sm-green-soft));
  box-shadow: inset 0 0 0 1px rgba(234,101,4,.22);
}
.trust-icon svg { width: 100%; height: 100%; fill: var(--sm-orange); }
.trust-label {
  font-family: 'Oswald', sans-serif; font-size: 16px; font-weight: 600;
  letter-spacing: .3px; color: var(--sm-navy); line-height: 1.2;
}
.trust-text { font-size: 13.5px; line-height: 1.5; color: var(--sm-muted); }

/* --- headings: subtítulo de seção -------------------------------------- */
.section-sub {
  max-width: 760px; margin: 14px auto 0; text-align: center;
  font-size: 16px; font-style: italic; line-height: 1.6; color: var(--sm-muted);
}

/* --- S8 · nota editorial ------------------------------------------------ */
.science-note { font-size: 13.5px; color: var(--sm-muted); margin-top: 4px; }

/* --- S9 · bullets + nota do product intro ------------------------------- */
.product-bullets { list-style: none; display: grid; gap: 11px; margin: 4px 0 18px; }
.product-bullets li {
  position: relative; padding-left: 30px;
  font-size: 16.5px; font-weight: 600; line-height: 1.55; color: var(--sm-navy);
}
.product-bullets li::before {
  content: ''; position: absolute; left: 0; top: 5px;
  width: 19px; height: 19px; border-radius: 50%;
  background: var(--sm-orange) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%23fff' d='M9.5 16.2 5.3 12l-1.4 1.4 5.6 5.6L20.1 8.4 18.7 7z'/></svg>") center/13px no-repeat;
}
.product-note { font-size: 15px; color: var(--sm-muted); }

/* --- S10 · grid 4x2 ----------------------------------------------------- */
.ingredients-grid { max-width: 1120px; gap: 26px; }
.ingredient-card { flex: 0 1 calc((100% - 78px) / 4); min-width: 210px; }
.ingredient-name span { font-weight: 400; color: var(--sm-muted); font-size: .84em; }
@media (max-width: 1000px) {
  .ingredient-card { flex: 0 1 calc((100% - 26px) / 2); }
}

/* --- S11 · 7 cards: última linha centralizada --------------------------- */
.benefits-grid { justify-content: center; }
.benefits-grid .benefit-item:nth-child(7) { grid-column: 2 / 3; }
@media (max-width: 1000px) {
  .benefits-grid .benefit-item:nth-child(7) { grid-column: 1 / -1; max-width: 50%; margin: 0 auto; }
}
@media (max-width: 767px) {
  .benefits-grid .benefit-item:nth-child(7) { grid-column: auto; max-width: none; }
}

/* --- S14 · final CTA block --------------------------------------------- */
.final-cta-section {
  padding: 66px 0; background: var(--sm-grad-soft);
  border-top: 1px solid var(--sm-line); border-bottom: 1px solid var(--sm-line);
}
.final-cta-inner {
  display: grid; grid-template-columns: .78fr 1.22fr; gap: 46px; align-items: center;
}
.final-cta-img {
  width: 100%; max-height: 360px; object-fit: contain;
  filter: drop-shadow(0 22px 34px rgba(7,34,135,.22));
}
.final-cta-eyebrow {
  font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 600;
  letter-spacing: 2.2px; text-transform: uppercase; color: var(--sm-orange); margin-bottom: 8px;
}
.final-cta-title {
  font-family: 'Oswald', sans-serif; font-size: clamp(28px, 3.4vw, 42px); font-weight: 600;
  line-height: 1.15; color: var(--sm-navy); margin-bottom: 14px;
}
.final-cta-price { font-family: 'Oswald', sans-serif; font-size: 26px; margin-bottom: 14px; }
.final-cta-price s { color: var(--sm-muted); font-weight: 400; margin-right: 8px; }
.final-cta-price b { color: var(--sm-orange); font-weight: 600; }
.final-cta-text { font-size: 16.5px; line-height: 1.7; color: var(--sm-muted); margin-bottom: 24px; }
.final-cta-section .hero-cta-btn { display: inline-flex; width: auto; padding-inline: 34px; }
.final-cta-trust {
  margin-top: 16px; font-size: 13.5px; font-weight: 600;
  letter-spacing: .3px; color: var(--sm-muted);
}
@media (max-width: 900px) {
  .trust-cards { grid-template-columns: repeat(2, 1fr); }
  .final-cta-inner { grid-template-columns: 1fr; gap: 26px; text-align: center; }
  .final-cta-img { max-height: 260px; }
}

/* --- S6 · banda de bônus na identidade SodaMelt (laranja da label) ------- */
.bonus-section {
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.06) 0 24px, rgba(0,0,0,.035) 24px 48px),
    radial-gradient(90% 60% at 50% 0%, rgba(255,255,255,.16) 0%, rgba(255,255,255,0) 62%),
    linear-gradient(135deg, var(--sm-orange-deep) 0%, var(--sm-orange) 58%, var(--sm-orange-dark) 100%);
}
.bonus-section .section-eyebrow { color: #FFE3C6; }

/* --- S3/S12 · claim strip na identidade SodaMelt (navy -> laranja limpo) --- */
.claim-strip {
  background:
    radial-gradient(72% 170% at 50% -25%, rgba(244,200,177,.34) 0%, rgba(244,200,177,0) 62%),
    linear-gradient(105deg, var(--sm-navy) 0%, var(--sm-navy-soft) 34%, var(--sm-orange) 82%, var(--sm-orange-deep) 100%);
}
.claim-strip p { color: #3A1400; background: var(--sm-orange-lite); }

/* cabeçalhos dos pricing cards alinhados à paleta */
.pkg-head { background: linear-gradient(135deg, var(--sm-navy-soft), var(--sm-navy)); }
.pkg-card.featured .pkg-head { background: linear-gradient(135deg, var(--sm-orange-deep), var(--sm-orange-dark)); }

/* --- S10 · ingredients: 1 card por linha em mobile (largura cheia) ------- */
@media (max-width: 767px) {
  .ingredients-grid { max-width: 340px; margin-left: auto; margin-right: auto; gap: 30px; }
  .ingredient-card { flex: 0 1 100%; min-width: 0; }
}

/* --- S10 · fechamento: separa a lista da label da linha de posologia ----- */
.ingredients-closer p + p { margin-top: 14px; }

/* ==========================================================================
   S3/S7/S12 · FAIXAS COM FUNDO DE EFERVESCÊNCIA
   A foto entra como camada de baixo; por cima vai um gradiente de marca
   semi-opaco que garante o contraste do texto branco. Derivada otimizada
   (1920x620, ~230KB) — o efervecent.jpg original tem 6144px/2.6MB.
   ========================================================================== */
.claim-strip,
.shipping-strip {
  background-image: url("../images/efervecent-strip.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* camada de cor por cima da foto (fica atrás do texto, acima do ::before) */
.claim-strip::after,
.shipping-strip::after {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
}
.claim-strip::after {
  background:
    radial-gradient(72% 170% at 50% -25%, rgba(244,200,177,.26) 0%, rgba(244,200,177,0) 62%),
    linear-gradient(105deg,
      rgba(7,34,135,.93) 0%,
      rgba(37,55,136,.88) 34%,
      rgba(234,101,4,.80) 82%,
      rgba(239,128,6,.78) 100%);
}
.shipping-strip::after {
  background:
    radial-gradient(70% 160% at 50% -20%, rgba(242,162,86,.24) 0%, rgba(242,162,86,0) 64%),
    linear-gradient(160deg,
      rgba(34,64,142,.93) 0%,
      rgba(22,50,126,.90) 48%,
      rgba(27,58,143,.90) 100%);
}
/* linhas de onda e conteúdo ficam acima da camada de cor */
.claim-strip::before,
.shipping-strip::before { z-index: 1; }
.claim-strip > *,
.shipping-strip > * { position: relative; z-index: 2; }
.shipping-strip { border-bottom-color: var(--sm-orange-lite); }
