/* ============================================================
   Peptideing (peptideing.io) — styles.css
   Clean medical-lab premium: white + deep navy + teal.
   Mobile-first. No external CSS frameworks.
   ============================================================ */

:root {
  /* Brand palette — references: clean white packaging, navy lettering,
     rich royal-blue caps, bright-blue details, silver-gray accents. */
  --navy: #061A35;         /* headings, product names, nav text, dark sections */
  --navy-2: #0B2B52;       /* dark hover/gradient end */
  --royal: #235095;        /* primary buttons, links, cart-fill, selected controls */
  --royal-dark: #061A35;   /* primary button hover */
  --accent: #2081D2;       /* small icon details, highlights (sparing) */
  --teal: #2081D2;         /* legacy token -> accent */
  --teal-dark: #235095;    /* legacy token -> royal */
  --ink: #061A35;
  --muted: #526174;        /* slate-gray supporting text */
  --line: #D7DEE7;         /* light border gray */
  --bg: #FFFFFF;
  --bg-soft: #F5F7FA;      /* cool off-white page background */
  --bg-softer: #EAF3FB;    /* very pale blue panels */
  --silver: #E7EAF1;       /* silver-gray accents */
  --danger: #e05252;
  --ok: #1a7f5c;
  --radius: 14px;
  --radius-sm: 9px;
  --shadow: 0 10px 30px rgba(6, 26, 53, .10);
  --shadow-sm: 0 3px 12px rgba(6, 26, 53, .08);
  --wrap: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img, svg { vertical-align: middle; }
a { color: var(--teal-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 18px; }
.hidden { display: none !important; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 300;
  background: var(--navy); color: #fff; padding: 10px 16px; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

/* ---------------- Trust bar ---------------- */
.trustbar {
  background: var(--navy); color: #d9f6f1;
  display: flex; flex-wrap: wrap; gap: 6px 26px; justify-content: center;
  padding: 7px 14px; font-size: .82rem; font-weight: 600; letter-spacing: .02em;
}
.trustbar span { display: inline-flex; align-items: center; gap: 6px; }
.trustbar svg { width: 15px; height: 15px; flex: 0 0 auto; }

/* ---------------- PDP purity panel (lab-evidence gated) ---------------- */
.purity-panel {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg-softer); border: 1px solid var(--line); border-radius: 10px;
  padding: 10px 14px; margin: 0 0 14px; font-size: .88rem; color: var(--ink);
}
.purity-panel svg { width: 19px; height: 19px; color: var(--royal); flex: 0 0 auto; }

/* ---------------- Header ---------------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-row {
  max-width: var(--wrap); margin: 0 auto; padding: 10px 18px;
  display: flex; align-items: center; gap: 12px;
}
.iconbtn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 12px;
  border: 1px solid var(--line); background: #fff; color: var(--navy);
  transition: background .15s, border-color .15s;
  flex: 0 0 auto;
}
.iconbtn:hover { background: var(--bg-soft); border-color: #cfdde8; }
.iconbtn[hidden] { display: none; }
.mini-count {
  position: absolute; top: -6px; right: -6px;
  min-width: 18px; height: 18px; padding: 0 4px;
  background: var(--royal); color: #fff;
  border-radius: 9px; font-size: .68rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.mini-count[hidden] { display: none; }

.logo { display: inline-flex; align-items: center; gap: 9px; flex: 0 0 auto; }
.logo:hover { text-decoration: none; }
.logo-mark { display: inline-flex; }
.logo-text { font-size: 1.18rem; font-weight: 800; color: var(--navy); letter-spacing: -.02em; white-space: nowrap; }
.logo-text em { font-style: normal; color: var(--teal-dark); }
.logo-tld { color: var(--muted); font-weight: 600; font-size: .8em; }

.searchwrap {
  position: relative; flex: 1 1 auto;
  display: flex; align-items: center; gap: 8px;
  background: var(--bg-soft); border: 1.5px solid var(--line);
  border-radius: 12px; padding: 0 12px; min-width: 0;
  transition: border-color .15s, box-shadow .15s;
}
.searchwrap:focus-within { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(45, 212, 191, .18); background: #fff; }
.search-ico { flex: 0 0 auto; color: var(--muted); }
#searchInput {
  flex: 1 1 auto; min-width: 40px;
  border: 0; outline: 0; background: transparent;
  padding: 11px 0; color: var(--ink);
}
#searchInput::placeholder { color: #93a8ba; }
.search-clear { border: 0; background: none; color: var(--muted); font-size: .95rem; padding: 4px; }

.search-results {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden; max-height: 65vh; overflow-y: auto; z-index: 120;
}
.sr-item {
  display: flex; gap: 12px; align-items: center; width: 100%;
  padding: 10px 14px; border: 0; background: none; text-align: left;
  border-bottom: 1px solid var(--bg-softer);
}
.sr-item:last-child { border-bottom: 0; }
.sr-item:hover { background: var(--bg-soft); }
.sr-thumb {
  width: 38px; height: 38px; border-radius: 10px; flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--navy), var(--navy-2)); color: var(--teal);
  font-size: 1.05rem;
}
.sr-name { font-weight: 700; color: var(--navy); font-size: .92rem; }
.sr-sub { font-size: .8rem; color: var(--muted); }
.sr-price { margin-left: auto; font-weight: 800; color: var(--teal-dark); white-space: nowrap; }
.sr-empty { padding: 14px; color: var(--muted); font-size: .9rem; }

.header-actions { display: flex; align-items: center; gap: 8px; flex: 0 0 auto; }

.cartbtn {
  position: relative; display: inline-flex; align-items: center; gap: 8px;
  background: var(--royal); color: #fff; border-radius: 12px; padding: 7px 12px 7px 8px;
}
.cartbtn:hover { text-decoration: none; background: var(--royal-dark); }
.cart-visual { position: relative; display: inline-flex; width: 34px; height: 34px; color: #fff; }
.cart-fill { position: absolute; inset: 0; color: var(--teal); }
.cart-count {
  position: absolute; top: -7px; right: -9px;
  min-width: 19px; height: 19px; padding: 0 5px;
  background: #fff; color: var(--royal);
  border-radius: 10px; font-size: .7rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.cart-total { font-weight: 800; font-size: .9rem; white-space: nowrap; }

/* ---------------- Drawer (A-Z categories) ---------------- */
.drawer-backdrop {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(8, 27, 45, .45);
  display: flex; justify-content: flex-end;
}
.drawer-backdrop[hidden] { display: none; }
.drawer {
  width: min(360px, 92vw); height: 100%;
  background: #fff; box-shadow: -18px 0 40px rgba(10, 37, 64, .2);
  display: flex; flex-direction: column;
  animation: slideIn .18s ease-out;
}
@keyframes slideIn { from { transform: translateX(30px); opacity: .4; } to { transform: none; opacity: 1; } }
.drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 18px; border-bottom: 1px solid var(--line);
}
.drawer-head h2 { font-size: 1.1rem; color: var(--navy); }
.drawer-note { padding: 10px 18px 0; font-size: .8rem; color: var(--muted); }
.drawer-list { flex: 1 1 auto; overflow-y: auto; padding: 8px 10px 12px; }
.drawer-list a {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 10px; border-radius: 10px; color: var(--ink); font-weight: 600; font-size: .97rem;
}
.drawer-list a:hover { background: var(--bg-soft); text-decoration: none; }
.drawer-list .d-emoji { width: 30px; text-align: center; }
.drawer-list .d-count { margin-left: auto; font-size: .75rem; color: var(--muted); font-weight: 700; }
.drawer-foot { border-top: 1px solid var(--line); padding: 6px 18px 8px; }
.drawer-foot-label { font-size: .6rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 1px; }
.drawer-foot-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 12px; }
.drawer-foot-grid a { font-size: .72rem; font-weight: 600; color: var(--muted); padding: 1px 0; }
.drawer-foot-grid a:hover { color: var(--navy); text-decoration: none; }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 12px; border: 1.5px solid transparent;
  font-weight: 700; font-size: .95rem; padding: 12px 20px;
  transition: transform .06s, box-shadow .15s, background .15s;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--royal); color: #fff; box-shadow: 0 6px 16px rgba(35, 80, 149, .28); }
.btn-primary:hover { background: var(--royal-dark); text-decoration: none; }
.btn-navy { background: var(--royal); color: #fff; }
.btn-navy:hover { background: var(--royal-dark); text-decoration: none; }
.btn-ghost { background: #fff; border-color: var(--royal); color: var(--royal); }
.btn-ghost:hover { background: var(--bg-softer); text-decoration: none; }
.btn-lg { padding: 15px 26px; font-size: 1.02rem; }
.btn[disabled] { opacity: .5; cursor: not-allowed; }

/* ---------------- Main / Home ---------------- */
main { min-height: 60vh; }

.hero {
  background:
    radial-gradient(900px 420px at 85% -10%, rgba(45, 212, 191, .16), transparent 60%),
    radial-gradient(700px 380px at -10% 110%, rgba(45, 212, 191, .10), transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff; overflow: hidden;
}
.hero-inner {
  max-width: var(--wrap); margin: 0 auto; padding: 54px 18px 58px;
  display: grid; gap: 30px;
}
.hero h1 { font-size: clamp(1.9rem, 5vw, 3.1rem); line-height: 1.12; letter-spacing: -.02em; font-weight: 900; }
.hero h1 .hl { color: var(--teal); }
.hero p.sub { margin-top: 14px; font-size: 1.06rem; color: #c9dbe8; max-width: 560px; }
.hero-ctas { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero-badges { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 8px; }
.hero-badges span {
  background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .16);
  padding: 7px 13px; border-radius: 999px; font-size: .8rem; font-weight: 600;
}
.hero-art { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; align-content: center; }
.vial {
  aspect-ratio: 1 / 1.35; border-radius: 16px; position: relative;
  background: linear-gradient(160deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .03));
  border: 1px solid rgba(255, 255, 255, .18);
  display: flex; align-items: center; justify-content: center; font-size: 2rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15);
}
.vial small {
  position: absolute; bottom: 8px; left: 0; right: 0; text-align: center;
  font-size: .62rem; color: #b9d2e2; font-weight: 600; letter-spacing: .04em;
}

.section { max-width: var(--wrap); margin: 0 auto; padding: 46px 18px 10px; }
.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 20px; }
.section-head h2 { font-size: clamp(1.3rem, 3vw, 1.7rem); color: var(--navy); letter-spacing: -.01em; }
.section-head .see-all { font-size: .88rem; font-weight: 700; white-space: nowrap; }

/* Goal cards */
.goal-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.goal-ico {
  position: absolute; top: 12px; right: 12px;
  width: 40px; height: 40px; border-radius: 12px;
  background: rgba(255, 255, 255, .14); border: 1px solid rgba(255, 255, 255, .22);
  display: flex; align-items: center; justify-content: center;
}
.goal-ico svg { width: 22px; height: 22px; }
.goal-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  padding: 18px 16px 16px; min-height: 128px;
  display: flex; flex-direction: column; justify-content: flex-end; gap: 3px;
  color: #fff; border: 1px solid rgba(255, 255, 255, .06);
  box-shadow: var(--shadow-sm);
  transition: transform .12s, box-shadow .15s;
}
.goal-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); text-decoration: none; }
.goal-emoji { position: absolute; top: 12px; right: 12px; font-size: 1.6rem; opacity: .95; }
.goal-card:hover .goal-ico { background: rgba(255, 255, 255, .22); }

/* Popular Picks note */
.picks-note { color: var(--muted); font-size: .88rem; margin: -8px 0 16px; }
.picks-note a { font-weight: 700; }
.picks-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }

/* First-order promo banner */
.promo-banner {
  background: linear-gradient(90deg, var(--navy), var(--royal));
  color: #fff; font-size: .88rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center; gap: 14px;
  padding: 9px 44px 9px 14px; position: relative; text-align: center;
}
.promo-banner[hidden] { display: none; }
.promo-banner button {
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  background: none; border: 0; color: rgba(255, 255, 255, .85); font-size: .95rem; padding: 4px;
}
.goal-card p { font-size: .8rem; color: rgba(255, 255, 255, .85); }
.g-weight   { background: linear-gradient(140deg, #061A35, #235095); }
.g-women    { background: linear-gradient(140deg, #061A35, #1c56a0); }
.g-men      { background: linear-gradient(140deg, #061A35, #235095); }
.g-beauty   { background: linear-gradient(140deg, #0B2B52, #2081D2); }
.g-recovery { background: linear-gradient(140deg, #061A35, #235095); }
.g-muscle   { background: linear-gradient(140deg, #061A35, #14507a); }
.g-sugar    { background: linear-gradient(140deg, #0B2B52, #1c56a0); }
.g-gut      { background: linear-gradient(140deg, #061A35, #2081D2); }
.g-repair   { background: linear-gradient(140deg, #061A35, #235095); }
.g-brain    { background: linear-gradient(140deg, #0B2B52, #14507a); }
.g-bundles  { background: linear-gradient(140deg, #0B2B52, #2081D2); }
.g-mix      { background: linear-gradient(140deg, #10233c, #526174); }

/* Product cards */
.prod-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.prod-card {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 14px; display: flex; flex-direction: column; gap: 8px;
  min-width: 0; max-width: 100%;
  transition: box-shadow .15s, transform .12s, border-color .15s;
}
.prod-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); border-color: #d3e2ec; }
.prod-thumb {
  border-radius: var(--radius-sm);
  background: linear-gradient(150deg, var(--bg-softer), #dcebf4);
  display: flex; align-items: center; justify-content: center;
  padding: 16px 0; margin-bottom: 2px;
}
.prod-thumb .pvial { width: 44px; }
.wish-btn {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line);
  background: rgba(255, 255, 255, .92); color: #9db2c4; font-size: 1rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
}
.wish-btn.on { color: #e0447a; border-color: #f3c1d6; background: #fff0f6; }
.prod-name { font-size: .95rem; font-weight: 800; color: var(--navy); letter-spacing: -.01em; }
.prod-name a { color: inherit; }
.prod-shop { font-size: .8rem; color: var(--muted); }
.prod-badges { display: flex; flex-wrap: wrap; gap: 5px; margin: 2px 0; }
.badge {
  font-size: .66rem; font-weight: 700; letter-spacing: .02em;
  padding: 3px 8px; border-radius: 999px;
  background: var(--bg-softer); color: #33607e; border: 1px solid var(--line);
}
.badge.teal { background: var(--bg-softer); color: var(--royal); border-color: #c7ddf2; }
.prod-price-row { margin-top: auto; display: flex; align-items: center; gap: 8px; }
.prod-price { font-weight: 900; color: var(--navy); font-size: 1.08rem; }
.prod-from { font-size: .72rem; color: var(--muted); font-weight: 600; }
.prod-add { margin-left: auto; }

/* Bundles */
.bundle-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.bundle-card {
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff;
  display: flex; flex-direction: column;
}
.bundle-top { background: linear-gradient(140deg, var(--navy), var(--navy-2)); color: #fff; padding: 18px; }
.bundle-top h3 { font-size: 1.05rem; }
.bundle-top .b-emoji { font-size: 1.7rem; float: right; }
.bundle-body { padding: 16px 18px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.bundle-body p { color: var(--muted); font-size: .9rem; }
.bundle-price { display: flex; align-items: baseline; gap: 10px; }
.bundle-price .now { font-size: 1.3rem; font-weight: 900; color: var(--navy); }
.bundle-price .was { color: var(--muted); text-decoration: line-through; font-size: .9rem; }
.save { color: var(--royal); font-weight: 800; font-size: .8rem; background: var(--bg-softer); border-radius: 999px; padding: 2px 9px; }

/* Value / quality strip */
.value-strip { display: grid; grid-template-columns: 1fr; gap: 12px; }
.value-card {
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px; display: flex; gap: 14px; align-items: flex-start;
}
.value-card .v-ico { font-size: 1.6rem; }
.value-card h3 { font-size: .98rem; color: var(--navy); margin-bottom: 3px; }
.value-card p { font-size: .86rem; color: var(--muted); }

/* Reviews */
.review-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.review-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 18px; }
.stars { color: #f5a623; font-size: .9rem; letter-spacing: 2px; }
.review-card p { margin: 8px 0 10px; font-size: .92rem; }
.review-who { font-size: .8rem; color: var(--muted); font-weight: 600; }

/* FAQ teaser + page FAQ */
.faq-list { display: grid; gap: 10px; }
details.faq {
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: #fff; padding: 0;
}
details.faq summary {
  cursor: pointer; list-style: none; padding: 14px 18px;
  font-weight: 700; color: var(--navy); font-size: .95rem;
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after { content: '+'; font-size: 1.2rem; color: var(--teal-dark); font-weight: 800; }
details.faq[open] summary::after { content: '–'; }
details.faq .faq-a { padding: 0 18px 15px; color: var(--muted); font-size: .92rem; }

/* CTA banner */
.cta-banner {
  max-width: var(--wrap); margin: 40px auto 0; padding: 0 18px;
}
.cta-inner {
  background: linear-gradient(140deg, var(--navy), var(--navy-2));
  border-radius: var(--radius); color: #fff; padding: 30px 26px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 18px; justify-content: space-between;
}
.cta-inner h2 { font-size: clamp(1.2rem, 3vw, 1.6rem); }
.cta-inner p { color: #c9dbe8; margin-top: 5px; font-size: .94rem; }

/* ---------------- Shop page ---------------- */
.page-head { max-width: var(--wrap); margin: 0 auto; padding: 34px 18px 0; }
.page-head h1 { font-size: clamp(1.6rem, 4vw, 2.2rem); color: var(--navy); letter-spacing: -.02em; }
.page-head p { color: var(--muted); margin-top: 6px; }

.shop-tools {
  max-width: var(--wrap); margin: 18px auto 0; padding: 0 18px;
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
}
.shop-tools select, .shop-tools input {
  border: 1.5px solid var(--line); border-radius: 10px; padding: 9px 12px; background: #fff; color: var(--ink);
}
.shop-tools label { font-size: .82rem; font-weight: 700; color: var(--muted); }
.result-count { margin-left: auto; font-size: .85rem; color: var(--muted); font-weight: 600; }

/* ---------------- Product page ---------------- */
.pdp { max-width: var(--wrap); margin: 0 auto; padding: 30px 18px 20px; display: grid; gap: 26px; }
.breadcrumbs { font-size: .82rem; color: var(--muted); margin-bottom: 4px; }
.pdp-grid { display: grid; gap: 22px; }
.pdp-gallery {
  background: linear-gradient(150deg, var(--bg-softer), #d8e9f3);
  border: 1px solid var(--line); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; padding: 44px 0;
}
.pdp-gallery .pvial { width: 92px; }
.pdp-info h1 { font-size: clamp(1.5rem, 4vw, 2rem); color: var(--navy); letter-spacing: -.02em; }
.pdp-shop { color: var(--teal-dark); font-weight: 700; margin-top: 3px; }
.pdp-desc { color: var(--muted); margin-top: 12px; }
.pdp-badges { margin-top: 14px; }
.pdp-price { margin-top: 18px; display: flex; align-items: baseline; gap: 10px; }
.pdp-price .now { font-size: 1.9rem; font-weight: 900; color: var(--navy); }
.pdp-price .was { text-decoration: line-through; color: var(--muted); }
.buybox {
  margin-top: 16px; border: 1.5px solid var(--line); border-radius: var(--radius);
  padding: 16px; display: grid; gap: 12px; background: var(--bg-soft);
}
.buybox-row { display: flex; gap: 10px; flex-wrap: wrap; }
.buybox select, .buybox input[type="number"] {
  border: 1.5px solid var(--line); border-radius: 10px; padding: 11px 12px; background: #fff;
}
.buybox .qty { width: 82px; }
.bulk-note { font-size: .8rem; color: var(--ok); font-weight: 700; }
.helps { margin-top: 18px; }
.helps h3 { font-size: .95rem; color: var(--navy); margin-bottom: 8px; }
.helps ul { list-style: none; display: grid; gap: 6px; }
.helps li { font-size: .92rem; color: var(--ink); display: flex; gap: 8px; align-items: baseline; }
.helps li::before { content: '✓'; color: var(--teal-dark); font-weight: 900; }
.dosage-note, .lab-note {
  margin-top: 14px; font-size: .84rem; color: var(--muted);
  background: var(--bg-soft); border: 1px dashed #cfdde8; border-radius: 10px; padding: 10px 12px;
}
.pdp-side { display: grid; gap: 18px; align-content: start; }
.pairs h3, .pdp-side h3 { font-size: 1rem; color: var(--navy); margin-bottom: 10px; }

/* ---------------- Cart ---------------- */
.cart-page { max-width: 880px; margin: 0 auto; padding: 30px 18px 30px; display: grid; gap: 18px; }
.ship-bar { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 14px 16px; }
.ship-bar .sb-text { font-size: .88rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.sb-track { height: 10px; background: var(--bg-softer); border-radius: 999px; overflow: hidden; }
.sb-fill { height: 100%; background: linear-gradient(90deg, var(--teal), var(--teal-dark)); border-radius: 999px; transition: width .3s; }
.cart-lines { display: grid; gap: 12px; }
.cart-line {
  display: grid; grid-template-columns: 56px 1fr auto; gap: 14px; align-items: center;
  border: 1px solid var(--line); border-radius: var(--radius); padding: 12px 14px; background: #fff;
}
.cart-line .cl-thumb {
  width: 56px; height: 56px; border-radius: 10px;
  background: linear-gradient(150deg, var(--bg-softer), #d8e9f3);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.cart-line .cl-thumb .cl-img {
  width: 100%; height: 100%; object-fit: contain; display: block;
}
.cart-line .cl-thumb .pvial { height: 46px; width: auto; }
.cl-name { font-weight: 800; color: var(--navy); font-size: .95rem; }
.cl-name a { color: inherit; }
.cl-size { font-size: .8rem; color: var(--muted); }
.cl-controls { display: flex; align-items: center; gap: 10px; margin-top: 6px; flex-wrap: wrap; }
.cl-controls input[type="number"] {
  width: 70px; border: 1.5px solid var(--line); border-radius: 8px; padding: 6px 8px;
}
.cl-remove { border: 0; background: none; color: var(--danger); font-size: .8rem; font-weight: 700; padding: 4px; }
.cl-price { font-weight: 900; color: var(--navy); text-align: right; white-space: nowrap; }
.cl-price small { display: block; color: var(--muted); font-weight: 600; font-size: .72rem; }
.cart-empty { text-align: center; padding: 46px 0; color: var(--muted); }
.cart-empty .big { font-size: 2.6rem; margin-bottom: 10px; }

.coupon-row { display: flex; gap: 10px; flex-wrap: wrap; }
.coupon-row input { flex: 1 1 180px; border: 1.5px solid var(--line); border-radius: 10px; padding: 11px 12px; text-transform: uppercase; }
.coupon-msg { font-size: .82rem; font-weight: 700; }
.coupon-msg.ok { color: var(--ok); }
.coupon-msg.bad { color: var(--danger); }

.summary {
  border: 1.5px solid var(--line); border-radius: var(--radius); padding: 18px; background: #fff;
  display: grid; gap: 9px;
}
.summary .row { display: flex; justify-content: space-between; font-size: .94rem; color: var(--muted); }
.summary .row.total { border-top: 1px solid var(--line); padding-top: 11px; margin-top: 4px; font-size: 1.12rem; font-weight: 900; color: var(--navy); }
.summary .row .free { color: var(--ok); font-weight: 800; }

/* ---------------- Checkout & forms ---------------- */
.checkout-grid { display: grid; gap: 18px; }
.panel { border: 1.5px solid var(--line); border-radius: var(--radius); padding: 20px; background: #fff; }
.panel h2 { font-size: 1.1rem; color: var(--navy); margin-bottom: 14px; }
.form-grid { display: grid; gap: 12px; }
.form-grid label { font-size: .8rem; font-weight: 700; color: var(--navy); display: grid; gap: 5px; }
.form-grid input, .form-grid textarea, .form-grid select {
  border: 1.5px solid var(--line); border-radius: 10px; padding: 11px 12px; width: 100%; background: #fff;
}
.form-grid input:focus, .form-grid textarea:focus { outline: 0; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(45, 212, 191, .16); }
.form-2col { display: grid; grid-template-columns: 1fr; gap: 12px; }
.pay-note {
  background: #fff8e8; border: 1px solid #f0dfb2; color: #7a5d1a;
  border-radius: 10px; padding: 11px 13px; font-size: .84rem;
}

/* ---------------- Static pages ---------------- */
.static { max-width: 780px; margin: 0 auto; padding: 30px 18px 40px; }
.static h1 { font-size: clamp(1.6rem, 4vw, 2.1rem); color: var(--navy); margin-bottom: 8px; letter-spacing: -.02em; }
.static h2 { font-size: 1.15rem; color: var(--navy); margin: 22px 0 8px; }
.static p, .static li { color: #3d5468; font-size: .96rem; }
.static ul { padding-left: 20px; display: grid; gap: 6px; }
.static .lead { font-size: 1.02rem; color: var(--muted); margin-bottom: 16px; }
.contact-box { display: grid; gap: 10px; margin-top: 14px; }

/* ---------------- Footer ---------------- */
.footer { background: var(--navy); color: #b9cfdf; margin-top: 54px; }
.foot-grid {
  max-width: var(--wrap); margin: 0 auto; padding: 40px 18px 26px;
  display: grid; gap: 28px; grid-template-columns: 1fr;
}
.logo-foot { gap: 8px; }
.logo-foot .logo-text { color: #fff; font-size: 1.25rem; font-weight: 800; }
.logo-foot .logo-text em { color: #67d8d0; font-style: normal; }
.logo-foot .logo-tld { color: #b9cfdf; }
.logo-foot + .foot-tag { margin-top: 12px; line-height: 1.5; }
.footer h4 { color: #fff; font-size: .95rem; margin-bottom: 10px; }
.footer h4.foot-sub { margin-top: 16px; }
.foot-tag { font-size: .88rem; max-width: 300px; }
.foot-badges { margin-top: 12px; display: flex; flex-wrap: wrap; gap: 6px; }
.foot-badges span { font-size: .72rem; background: rgba(255, 255, 255, .08); padding: 4px 10px; border-radius: 999px; border: 1px solid rgba(255, 255, 255, .14); }
.foot-links { display: grid; gap: 6px; }
.foot-links a { color: #b9cfdf; font-size: .88rem; }
.foot-links a:hover { color: var(--teal); }
.foot-pay { font-size: .84rem; }
.foot-disclaimer {
  border-top: 1px solid rgba(255, 255, 255, .12);
  max-width: var(--wrap); margin: 0 auto; padding: 16px 18px;
  font-size: .78rem; color: #8fabc0;
}
.foot-copy {
  max-width: var(--wrap); margin: 0 auto; padding: 0 18px 22px;
  font-size: .78rem; color: #8fabc0;
}

/* WhatsApp float */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 90;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 22px rgba(37, 211, 102, .4);
}
.wa-float:hover { transform: scale(1.06); }

.preview-image-link { display: block; color: inherit; text-decoration: none; }
.preview-image-link:focus-visible { outline: 3px solid var(--royal); outline-offset: 3px; border-radius: 10px; }
.preview-back { margin: 0 0 4px; justify-self: start; width: auto; }
.pdp-side .prod-grid { grid-template-columns: 1fr !important; }

/* Floating back button (bottom-left, mirrors the WhatsApp float) */
.back-float {
  position: fixed; left: 18px; bottom: 18px; z-index: 90;
  display: flex; align-items: center; gap: 7px;
  height: 54px; padding: 0 20px 0 16px; border-radius: 999px;
  background: var(--navy); color: #fff; border: 0; cursor: pointer;
  font-family: inherit; font-weight: 700; font-size: .92rem;
  box-shadow: 0 8px 22px rgba(6, 26, 53, .35);
  transition: transform .15s, background .15s;
}
.back-float:hover { transform: translateY(-2px); background: var(--navy-2); }
.back-float:active { transform: translateY(0); }
.back-float svg { display: block; }
.back-float[hidden] { display: none; }

/* ---------------- Age gate ---------------- */
.gate-backdrop {
  position: fixed; inset: 0; z-index: 400;
  background: rgba(7, 22, 37, .78); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.gate-backdrop[hidden] { display: none; }
.gate-card {
  background: #fff; border-radius: 20px; box-shadow: var(--shadow);
  max-width: 420px; width: 100%; padding: 30px 28px; text-align: center;
}
.gate-logo { margin-bottom: 12px; }
.gate-card h2 { color: var(--navy); font-size: 1.4rem; }
.gate-card p { color: var(--muted); margin-top: 10px; font-size: .92rem; }
.gate-btns { margin-top: 20px; display: grid; gap: 10px; }
.gate-fine { margin-top: 14px; font-size: .74rem; color: #93a8ba; }

/* ---------------- Toast ---------------- */
.toast {
  position: fixed; left: 50%; bottom: 24px; transform: translateX(-50%) translateY(20px);
  background: var(--navy); color: #fff; padding: 12px 20px; border-radius: 12px;
  font-weight: 600; font-size: .9rem; box-shadow: var(--shadow); z-index: 500;
  opacity: 0; pointer-events: none; transition: opacity .2s, transform .2s;
  max-width: 92vw; text-align: center;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast a { color: var(--teal); font-weight: 800; }

/* ---------------- Compare bar ---------------- */
.compare-scroll { overflow-x: auto; }
.compare-table { border-collapse: collapse; min-width: 640px; }
.compare-table th:not(:first-child), .compare-table td:not(:first-child) { min-width: 220px; }
.compare-buy { display: grid; gap: 8px; }
.compare-buy label { font-size: .8rem; font-weight: 700; color: var(--navy); }
.compare-buy select { width: 100%; max-width: 280px; padding: 10px; border: 1.5px solid var(--line); border-radius: 9px; background: #fff; }
.compare-buy button { justify-self: start; }
.compare-bar {
  position: fixed; left: 50%; bottom: 18px; transform: translateX(-50%);
  background: var(--navy); color: #fff; border-radius: 14px; padding: 10px 14px;
  display: flex; gap: 12px; align-items: center; z-index: 95; box-shadow: var(--shadow);
  font-size: .85rem; font-weight: 600;
}
.compare-bar button.cmp-go { background: var(--teal-dark); border: 0; color: #fff; font-weight: 800; border-radius: 9px; padding: 8px 14px; }
.compare-bar button.cmp-x { background: none; border: 0; color: #9db2c4; font-size: 1rem; }

/* Cart fill: smooth level transitions; gentle overflow accent above the rim */
.cart-fill-rect { transition: y .45s ease, height .45s ease, opacity .3s ease; }
.cart-overflow { animation: bubbleUp 1.8s ease-in-out infinite; }
@keyframes bubbleUp {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(-1.1px); opacity: .85; }
}
.cart-visual.cart-pop { animation: cartPop .45s ease; }
@keyframes cartPop {
  0% { transform: scale(1); }
  35% { transform: scale(1.18) rotate(-4deg); }
  100% { transform: scale(1); }
}

/* Wishlist heart pops out when the first item is saved */
#wishlistBtn { animation: none; }
#wishlistBtn.wish-pop { animation: wishPop .35s ease; }
@keyframes wishPop {
  0% { transform: scale(.3); opacity: 0; }
  70% { transform: scale(1.15); }
  100% { transform: scale(1); opacity: 1; }
}

/* Icon polish: consistent hover/tap feedback, comfortable tap targets */
.iconbtn, .goal-ico { transition: background .15s, border-color .15s, transform .12s; }
.iconbtn:active { transform: scale(.94); }
.goal-card:active .goal-ico { transform: scale(.92); }
.iconbtn { min-width: 42px; min-height: 42px; }

/* Product illustration tiles */
.prod-thumb { position: relative; }
.thumb-glyph {
  position: absolute; right: 10px; bottom: 10px;
  width: 30px; height: 30px; border-radius: 9px;
  background: rgba(255, 255, 255, .88); border: 1px solid var(--line); color: var(--teal-dark);
  display: flex; align-items: center; justify-content: center;
}
.thumb-glyph svg { width: 17px; height: 17px; }
.pdp-gallery { position: relative; }
.pdp-gallery .thumb-glyph { width: 46px; height: 46px; right: 18px; bottom: 18px; border-radius: 13px; }
.pdp-gallery .thumb-glyph svg { width: 26px; height: 26px; }

/* Reviews */
.review-star-pick { display: flex; gap: 4px; }
.review-star-pick button { background: none; border: 0; font-size: 1.5rem; color: #c9d6e2; padding: 2px 3px; cursor: pointer; }
.review-star-pick button.on { color: #f5a623; }
.field-err { color: var(--danger); font-size: .75rem; font-weight: 700; min-height: 1em; display: block; }
.form-grid input.invalid, .form-grid select.invalid, .form-grid textarea.invalid {
  border-color: var(--danger); background: #fff7f7;
}

/* Benefits strip + support box */
.benefits-strip {
  max-width: var(--wrap); margin: 16px auto 0; padding: 12px 18px;
  display: flex; flex-wrap: wrap; gap: 10px 24px; align-items: center; justify-content: center;
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius);
}
.benefits-strip .bn { display: flex; gap: 8px; align-items: center; font-size: .88rem; font-weight: 700; color: var(--navy); }
.benefits-strip .bn svg { width: 19px; height: 19px; color: var(--teal-dark); flex: 0 0 auto; }
.checkout-support {
  margin-top: 12px; display: flex; align-items: center; gap: 10px;
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: 10px;
  padding: 11px 13px; font-size: .85rem; color: var(--muted);
}
.checkout-support svg { width: 20px; height: 20px; color: var(--teal-dark); flex: 0 0 auto; }

/* Prominent footer disclaimer */
.foot-disclaimer {
  background: rgba(35, 80, 149, .18);
  border-top: 1px solid rgba(255, 255, 255, .25);
  padding: 18px;
}
.foot-disclaimer .fd-inner { max-width: var(--wrap); margin: 0 auto; }
.foot-disclaimer .fd-main { color: #ffffff; font-size: .95rem; font-weight: 800; line-height: 1.5; }
.foot-disclaimer p { margin-top: 6px; color: #c9d6e6; font-size: .85rem; }

/* Hero vial artwork: keeps its own layout space, never overlaps text */
.vial { display: flex; align-items: center; justify-content: center; overflow: hidden; }
.vial .pvial { height: 70%; width: auto; max-width: 64%; }
.hero-art { width: 100%; }
/* Real product photo filling hero cards edge-to-edge (zoom-crop, no gaps) */
.vial.vial-photo { padding: 0; }
.vial.vial-photo img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 16px;
}
.vial.hero-named-vial { background: #f0f6fb; }
.vial.hero-named-vial .preview-image-link { width: 100%; flex: 0 0 100%; }
.vial.hero-named-vial .hero-photo-square {
  width: 100%; height: auto; aspect-ratio: 1 / 1; flex: 0 0 auto;
}
.vial.hero-named-vial .hero-photo-square img { object-fit: contain; }
.vial.hero-named-vial small { z-index: 2; }
/* Preview variant: complete vial visible (contained, not cropped) */
.vial.vial-photo.vial-contain { padding: 10px 10px 0; }
.vial.vial-photo.vial-contain img {
  width: 100%; height: auto; max-height: 82%; object-fit: contain; border-radius: 10px;
}
.vial.vial-photo small {
  background: rgba(10, 25, 47, .62); padding: 3px 12px; border-radius: 999px; bottom: 8px;
}
@media (max-width: 639px) {
  .hero-inner { padding: 38px 18px 46px; gap: 28px; }
  .hero-art { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; max-width: 400px; margin: 0 auto; }
  .hero-art .vial small { font-size: .58rem; }
}
@media (min-width: 640px) and (max-width: 939px) {
  .hero-art { max-width: 480px; margin: 0 auto; }
}

/* Review empty state */
.review-empty {
  text-align: center; background: var(--bg-soft); border: 1px dashed #cfdde8;
  border-radius: var(--radius); padding: 30px 22px; max-width: 640px; margin: 0 auto;
}
.review-empty .re-ico { font-size: 2rem; margin-bottom: 8px; }
.review-empty h3 { color: var(--navy); font-size: 1.1rem; }
.review-empty p { color: var(--muted); font-size: .92rem; margin-top: 6px; }

/* Money-back guarantee */
.guarantee-card {
  background: linear-gradient(140deg, #061A35, #0B2B52);
  color: #fff; border-radius: var(--radius);
  display: flex; gap: 20px; align-items: flex-start;
  padding: 28px 26px; box-shadow: var(--shadow);
}
.g-badge {
  flex: 0 0 auto; width: 64px; height: 64px; border-radius: 50%;
  background: rgba(45, 212, 191, .16); border: 1.5px solid rgba(45, 212, 191, .55);
  color: var(--teal); display: flex; align-items: center; justify-content: center;
}
.g-badge svg { width: 34px; height: 34px; }
.g-body h2 { font-size: 1.35rem; letter-spacing: -.01em; }
.g-body p { margin: 8px 0 14px; color: #c9dbe8; max-width: 560px; }
.g-btns { display: flex; flex-wrap: wrap; gap: 10px; }
@media (max-width: 560px) {
  .guarantee-card { flex-direction: column; padding: 22px 18px; }
  .g-body h2 { font-size: 1.2rem; }
}

/* Research concentration calculator */
.calc-field { display: flex; align-items: center; gap: 8px; }
.calc-field input { flex: 1 1 auto; min-width: 0; }
.calc-unit { font-weight: 800; color: var(--navy); min-width: 34px; }
.calc-results {
  margin-top: 16px; border: 1.5px solid var(--line); border-radius: var(--radius);
  background: var(--bg-soft); padding: 6px 16px;
}
.cr-row { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--line); font-size: .95rem; }
.cr-row:last-child { border-bottom: 0; }
.cr-row span { color: var(--muted); }
.cr-row strong { color: var(--navy); font-variant-numeric: tabular-nums; }
.calc-results.stale { opacity: .45; }
.calc-results.stale::after { content: " — values outdated, press Calculate again"; font-size: .78rem; color: var(--danger); font-weight: 700; }
.calc-disclaimer { margin-top: 14px; font-size: .82rem; font-weight: 800; color: #7a5d1a; background: #fff8e8; border: 1px solid #f0dfb2; border-radius: 8px; padding: 8px 12px; }

/* Wholesale how-it-works */
.how-steps { padding-left: 20px; display: grid; gap: 8px; }
.how-steps li { font-size: .95rem; color: #3d5468; }

/* Real product photos */
.pdp-photo, .prod-thumb-photo { padding: 0; overflow: hidden; }
.pdp-photo img, .prod-thumb-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.prod-thumb-photo { aspect-ratio: 1 / 1; }
/* Product-page photo: panel is square like the source photo and the image is
   always shown 100% visible (contain) — never cropped on wide screens. */
.pdp-photo { aspect-ratio: 1 / 1; align-self: start; }
.pdp-photo img { object-fit: contain; }
.named-product-photo {
  position: relative;
  container-type: inline-size;
}
.named-product-photo .package-name {
  position: absolute; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  color: #071b42; font-family: Arial, Helvetica, sans-serif;
  font-weight: 900; line-height: 1.06; text-align: center;
  text-transform: uppercase; overflow-wrap: anywhere;
  text-shadow: 0 0 2px rgba(255, 255, 255, .9);
  pointer-events: none;
}
.named-product-photo .bottle-name {
  left: 17.5%; top: 54.3%; width: 27%; height: 6.2%; font-size: 3.35cqw;
}
.named-product-photo .box-name {
  left: 51%; top: 30.5%; width: 32%; height: 8%; font-size: 4.25cqw;
}
.named-product-photo.label-medium .bottle-name { font-size: 2.75cqw; }
.named-product-photo.label-medium .box-name { font-size: 2.5cqw; }
.named-product-photo.label-long .bottle-name { font-size: 2.15cqw; }
.named-product-photo.label-long .box-name { font-size: 2.75cqw; }
.named-product-photo.label-xl .bottle-name { font-size: 1.7cqw; }
.named-product-photo.label-xl .box-name { font-size: 2.2cqw; }
.named-product-photo.generic-photo .bottle-kind,
.named-product-photo.generic-photo .box-kind,
.named-product-photo.generic-photo .bottle-form,
.named-product-photo.generic-photo .box-form {
  position: absolute; z-index: 1;
  display: flex; align-items: center;
  color: #071b42; font-family: Arial, Helvetica, sans-serif;
  white-space: nowrap; pointer-events: none;
}
.named-product-photo.generic-photo .bottle-kind,
.named-product-photo.generic-photo .box-kind {
  font-size: 1.42cqw; font-weight: 700; letter-spacing: .12em;
}
.named-product-photo.generic-photo .bottle-kind { left: 17.5%; top: 60.5%; width: 27%; height: 2.3%; }
.named-product-photo.generic-photo .box-kind { left: 51.5%; top: 38.4%; width: 32%; height: 2.5%; }
.named-product-photo.generic-photo .bottle-form,
.named-product-photo.generic-photo .box-form {
  font-size: 1.42cqw; font-weight: 500;
}
.named-product-photo.generic-photo .bottle-form { left: 17.5%; top: 69.5%; width: 27%; height: 2.3%; }
.named-product-photo.generic-photo .box-form { left: 51.5%; top: 50.4%; width: 32%; height: 2.3%; }
/* Research-use notice (exact statement, readable everywhere) */
.research-note {
  background: #fff8e8; border: 1.5px solid #f0dfb2; color: #6b4e12;
  border-radius: 10px; padding: 10px 14px;
  font-size: .95rem; font-weight: 800; max-width: 560px;
}

/* Cart sanitizer notice */
.cart-notice {
  background: #fff8e8; border: 1px solid #f0dfb2; color: #7a5d1a;
  border-radius: 10px; padding: 11px 14px; font-size: .88rem; font-weight: 600; margin-bottom: 14px;
}

/* Bundle contents & pending state */
.bundle-contents { border-top: 1px dashed var(--line); padding-top: 10px; }
.bundle-contents h4 { font-size: .8rem; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 6px; }
.bundle-contents ul { list-style: none; display: grid; gap: 4px; }
.bundle-contents li { font-size: .88rem; color: var(--ink); }
.bundle-contents .bc-size { color: var(--muted); font-size: .8rem; }
.bundle-pending {
  background: #fff8e8; border: 1px solid #f0dfb2; color: #7a5d1a;
  border-radius: 10px; padding: 10px 12px; font-size: .85rem; font-weight: 600; margin-top: 10px;
}
.bundle-top .b-emoji svg { width: 26px; height: 26px; }

/* Tier ladder (Order more, save more) */
.tier-note {
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: 10px;
  padding: 9px 13px; font-size: .82rem; color: var(--ink); line-height: 1.5;
}
.tier-note strong { color: var(--navy); }

/* Logo polish */
.logo-mark svg { display: block; }
.logo-text { letter-spacing: -.015em; color: var(--royal); }
.logo-text em { letter-spacing: -.01em; }
@media (max-width: 560px) {
  .logo-mark svg { width: 24px; height: 24px; }
  .logo-text { font-size: .98rem; }
}

/* ---------------- Responsive ---------------- */
@media (max-width: 560px) {
  .trustbar, .back-float { display: none !important; }
  .header-row { padding: 10px 12px; gap: 8px; }
  .logo-text { font-size: 1.02rem; }
  .logo-tld { display: none; }
  .cartbtn { padding: 7px 8px 7px 6px; }
  .cart-total { display: none; }
  .iconbtn { min-width: 44px; min-height: 44px; }
  .foot-disclaimer .fd-main { font-size: .98rem; }
  .benefits-strip { gap: 8px 16px; padding: 12px 14px; }
  .prod-price-row { flex-wrap: wrap; row-gap: 6px; }
  .prod-price-row .btn { padding: 9px 12px; font-size: .88rem; }
  .section { padding: 34px 14px 8px; }
  .page-head { padding: 26px 14px 0; }
  .shop-tools { padding: 0 14px; }
  .cta-banner { padding: 0 14px; }
}
@media (min-width: 640px) {
  .goal-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .prod-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .value-strip { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: repeat(3, 1fr); }
  .bundle-grid { grid-template-columns: repeat(2, 1fr); }
  .form-2col { grid-template-columns: 1fr 1fr; }
  .checkout-grid { grid-template-columns: 1.4fr 1fr; align-items: start; }
  .pdp-grid { grid-template-columns: 1fr 1.15fr; }
  .pdp-side { grid-column: 1 / -1; }
}
@media (min-width: 940px) {
  .hero-inner { grid-template-columns: 1.2fr .8fr; align-items: center; padding: 70px 18px 76px; }
  .goal-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .prod-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .picks-grid { display: flex; flex-wrap: wrap; justify-content: center; }
  .picks-grid .prod-card { width: calc((100% - 28px) / 3); }
  .value-strip { grid-template-columns: repeat(4, 1fr); }
  .foot-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; }
  .pdp-grid { grid-template-columns: .95fr 1.05fr 300px; }
  .pdp-side { grid-column: auto; }
}

/* Rotating hero tagline (owner phrases): VANISH → BEAT → RISE. The outgoing
   phrase blurs out and drifts up (.45s), the h1 holds a short quiet beat, then
   the next phrase rises 14px into focus (.65s, soft ease-out). Slides share
   one grid cell so the h1 never reflows; motion is on the whole phrase. */
.hero-tagline { position: relative; display: grid; }
.hero-tagline .tagline-slide {
  grid-area: 1 / 1;
  opacity: 0; visibility: hidden;
  filter: blur(12px);
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity .45s ease-in, filter .45s ease-in, transform .45s ease-in, visibility 0s linear .45s;
}
.hero-tagline .tagline-slide.active {
  opacity: 1; visibility: visible; filter: blur(0); transform: translateY(0); pointer-events: auto;
  transition: opacity .65s cubic-bezier(.22,1,.36,1), filter .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1), visibility 0s;
}
.hero-tagline .tagline-slide.blur-out {
  opacity: 0; visibility: hidden;
  filter: blur(8px);
  transform: translateY(-10px);
  transition: opacity .45s ease-in, filter .45s ease-in, transform .45s ease-in, visibility 0s linear .45s;
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .hero-tagline .tagline-slide { transition: none; }
}

/* ---------------- Why Trust Us page (tq) — variant "Confident Standards" ---------------- */
.tq-hero {
  background:
    radial-gradient(900px 420px at 85% -10%, rgba(45, 212, 191, .16), transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff; padding: 72px 18px 108px; text-align: center;
}
.tq-eyebrow {
  display: inline-block; font-size: .78rem; font-weight: 800; letter-spacing: .14em;
  color: var(--teal); border: 1px solid rgba(45, 212, 191, .35); border-radius: 999px;
  padding: 6px 14px; margin-bottom: 18px; background: rgba(45, 212, 191, .08);
}
.tq-hero h1 { font-size: clamp(1.9rem, 4.6vw, 3rem); line-height: 1.12; letter-spacing: -.02em; font-weight: 900; }
.tq-hero-in { max-width: 780px; margin: 0 auto; }
.tq-hero h1 .hl { color: var(--teal); }
.tq-sub { margin: 16px auto 0; max-width: 640px; color: #c9dbe8; font-size: 1.06rem; }
.tq-ctas { margin-top: 26px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.tq-stats { margin-top: -56px; }
.tq-stats-grid {
  max-width: var(--wrap); margin: 0 auto; padding: 0 18px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.tq-stat {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); padding: 20px 14px; text-align: center;
}
.tq-stat .num { font-size: 1.7rem; font-weight: 900; color: var(--navy); letter-spacing: -.02em; }
.tq-stat .num em { font-style: normal; color: var(--teal-dark); }
.tq-stat .lab { margin-top: 4px; font-size: .8rem; color: var(--muted); font-weight: 600; }

.tq-feat { max-width: var(--wrap); margin: 0 auto; padding: 58px 18px 0; }
.tq-feat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: center; }
.tq-feat.flip .tq-media { order: 2; }
.tq-ico {
  width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center;
  justify-content: center; font-size: 1.5rem; background: var(--bg-soft);
  border: 1px solid var(--line); margin-bottom: 14px;
}
.tq-feat h2 { font-size: clamp(1.3rem, 2.6vw, 1.65rem); color: var(--navy); letter-spacing: -.01em; }
.tq-feat p { margin-top: 10px; color: var(--muted); font-size: .98rem; }
.tq-media {
  border-radius: var(--radius); aspect-ratio: 4 / 3; min-height: 210px;
  overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.tq-media img { display: block; width: 100%; height: 100%; object-fit: cover; }
.tq-m-navy { background: linear-gradient(150deg, var(--navy), var(--navy-2)); }
.tq-m-soft { background: linear-gradient(150deg, var(--bg-soft), #dcebf4); }

.tq-note { max-width: var(--wrap); margin: 0 auto; padding: 56px 18px 8px; }
.tq-note-card {
  background: linear-gradient(140deg, #0d3b33, #114f44); color: #d9f6f1;
  border-radius: 18px; padding: 34px 30px; box-shadow: var(--shadow);
  border: 1px solid rgba(45, 212, 191, .25);
}
.tq-note-badge {
  display: inline-block; margin-bottom: 14px; font-size: .72rem; letter-spacing: .12em;
  font-weight: 800; color: var(--teal);
}
.tq-quote { font-size: clamp(1.05rem, 2.2vw, 1.3rem); font-weight: 700; line-height: 1.45; }
.tq-who { margin-top: 12px; font-size: .85rem; color: #9be3d8; font-weight: 700; }

.tq-fine {
  text-align: center; font-size: .78rem; color: var(--muted);
  max-width: var(--wrap); margin: 0 auto; padding: 26px 18px 8px;
}

@media (max-width: 860px) {
  .tq-hero { padding: 52px 18px 92px; }
  .tq-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .tq-feat-grid { grid-template-columns: 1fr; }
  .tq-feat.flip .tq-media { order: 0; }
}
