/** Shopify CDN: Minification failed

Line 10:0 Unexpected "<"
Line 72:0 All "@import" rules must come first
Line 4249:32 Expected identifier but found bad string token
Line 4249:33 Unterminated string token
Line 6509:0 Unexpected "<"

**/
<script>

/* CSS 1 */

/* ─────────────────────────────────────────
   OVERFLOW & VIEWPORT FIX
   Prevents any slide or element from causing horizontal scroll.
───────────────────────────────────────── */
/* ─────────────────────────────────────────
   STICKY HEADER FIX — CRITICAL
   overflow-x:hidden on <html> breaks position:sticky in all browsers.
   Only body gets overflow-x:hidden. html must stay overflow:visible.
───────────────────────────────────────── */
html {
  overflow: visible;
}
body {
  overflow-x: hidden;
}
/* Global overflow guard — mobile elements only (not desktop full-bleed containers) */
.mhero-panel,
.mhero-viewport,
.mhero-track,
.po-cards,
.po-card,
.gifts-row,
.gifts-grid,
.gift-tile,
.size-row,
.size-row__opts,
.micro-trust-row,
.sb,
.sb-row,
.drawer,
.drawer__body,
.drawer__po-cards,
.drawer__po-card,
.drawer__gifts-strip {
  box-sizing: border-box;
  max-width: 100%;
}

/* product-page-body and product-hero are full-bleed on desktop via
   Horizon theme margin: 0 -30px / -300px — do NOT constrain with max-width:100% */
.product-page-body { box-sizing: border-box; }
.product-hero      { box-sizing: border-box; width: 100%; }
.product-hero__mobile { box-sizing: border-box; max-width: 100%; }

/* Trust bar and inner — full-width but content centred via .trust-inner */
.trust-bar   { width: 100%; box-sizing: border-box; }
.trust-inner { box-sizing: border-box; }

/* ═══════════════════════════════════════════════════════════════
   ALIGNFORM™ PRODUCT PAGE — FULL CSS v3
   White/cream premium wellness-tech aesthetic.
   Hero = gallery + full purchase panel.
   Old dark navy offer section removed.
═══════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────
   1. FONT IMPORTS & DESIGN TOKENS
───────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --navy:         #0b1728;
  --navy-mid:     #122241;
  --teal:         #0d9e7a;
  --teal-glow:    #11c99a;
  --teal-light:   rgba(13,158,122,0.08);
  --teal-border:  rgba(13,158,122,0.22);
  --cream:        #f6f1e9;
  --cream-light:  #faf7f2;
  --off-white:    #f9f8f6;
  --white:        #ffffff;
  --gold:         #c9973a;
  --gold-light:   #e2b55a;
  --red:          #c0392b;
  --text-100:     #0e1621;
  --text-70:      #2d3a4a;
  --text-60:      #4b5a6e;
  --text-40:      #8594a6;
  --text-30:      #b0bcc8;
  --border-light: rgba(11,23,40,0.08);
  --border-mid:   rgba(11,23,40,0.13);
  --r-xs:   5px;
  --r-sm:   10px;
  --r-md:   16px;
  --r-lg:   22px;
  --r-xl:   28px;
  --shadow-sm:   0 1px 4px rgba(11,23,40,0.06), 0 2px 12px rgba(11,23,40,0.04);
  --shadow-card: 0 2px 16px rgba(11,23,40,0.06), 0 8px 32px rgba(11,23,40,0.04);
  --shadow-lift: 0 4px 24px rgba(11,23,40,0.10), 0 16px 48px rgba(11,23,40,0.07);
  --shadow-teal: 0 4px 20px rgba(13,158,122,0.30);
  --shadow-gold: 0 3px 14px rgba(201,151,58,0.22);
  --font-serif:  'DM Serif Display', serif;
  --font-sans:   'Poppins', sans-serif;
  --ease:        cubic-bezier(0.22,1,0.36,1);
  --transition:  0.20s var(--ease);
}

/* ─────────────────────────────────────────
   2. RESET & BASE
───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body { font-family: var(--font-sans); color: var(--text-100); background: var(--white); }
img  { max-width: 100%; height: auto; display: block; }
.page-width-narrow,.page-width-wide,.page-width-normal,.page-width-content { --page-margin: 0px !important; }
@media screen and (min-width: 750px) {
  .page-width-narrow,.page-width-wide,.page-width-normal,.page-width-content { --page-margin: 0px !important; }
}

.mobile-only  { display: block; }
.desktop-only { display: none !important; }

/* Extra: hide desktop hero on mobile with maximum specificity */
.product-hero__desktop { display: none !important; }

@media (min-width: 768px) {
  .mobile-only  { display: none !important; }
  .desktop-only { display: block !important; }
  .product-hero__desktop { display: grid !important; }
  .product-hero__mobile  { display: none !important; }
  .wrap { max-width: 900px; }
}

@media (min-width: 990px) {
  .wrap { max-width: 960px; padding: 0 40px; }
  .section-cream, .section-dark, .section-white { padding: 108px 0 !important; }
  .benefit-icon-wrap { width: 56px; height: 56px; }
  .benefit-icon { width: 45px; height: 45px; }
  .benefit-title { font-size: 15px; }
  .who-icon-wrap { width: 46px; height: 46px; }
  .who-icon { width: 45px; height: 45px; }
  /* Desktop grid layouts */
  .benefits-grid { grid-template-columns: repeat(4, 1fr); }
  .who-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1200px) {
  .wrap { max-width: 1100px; padding: 0 48px; }
}

@media (max-width: 640px) {
  /* Ensure section content doesn't overflow on small phones */
  .section-cream, .section-dark, .section-white { padding: 72px 0 !important; }
  .wrap { padding: 0 18px; }
  .benefits-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .who-grid { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────
   3. LAYOUT
───────────────────────────────────────── */
.wrap { max-width: 369px; margin: 0 auto; padding: 0 28px; }

/* ─────────────────────────────────────────
   4. ANNOUNCEMENT BAR
───────────────────────────────────────── */
.ann-bar {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.ann-pill {
  background: var(--gold);
  color: var(--navy);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  padding: 3px 10px;
  border-radius: 50px;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────
   5. COUNTDOWN BAR
   Compact, single-line — sits below announcement bar.
───────────────────────────────────────── */
.countdown-bar {
  background: var(--navy-mid);
  border-bottom: 1px solid rgba(17,201,154,0.15);
  padding: 9px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: nowrap;
  min-height: 48px;
}
.countdown-bar__label {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 5px;
}
.countdown-bar__label-star { font-size: 13px; line-height: 1; }
.countdown-bar__units { display: flex; align-items: center; gap: 4px; flex-shrink: 0; }
.cdb-unit { display: flex; flex-direction: column; align-items: center; gap: 2px; }
/*.cdb-box {
  background: rgba(255,255,255,0.09);
  border: 1.5px solid rgba(17,201,154,0.32);
  border-radius: 5px;
  min-width: 40px;
  padding: 3px 5px 2px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}*/

.cdb-box {
    background: rgb(255 255 255);
    border: 1.5px solid rgb(255 255 255 / 32%);
    border-radius: 5px;
    min-width: 40px;
    padding: 3px 5px 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}


.cdb-box::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: rgba(255,255,255,0.16);
  border-radius: 5px 5px 0 0;
}
.cdb-val {
  font-family: var(--font-sans);
  font-size: 20px; font-weight: 600;
color: #000000;
  /*color: var(--teal-glow); */line-height: 1;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  min-width: 2ch; text-align: center;
}
.cdb-lbl {
  font-family: var(--font-sans);
  font-size: 7.5px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,1); line-height: 1;
}
/*.cdb-sep {
  font-family: var(--font-sans);
  font-size: 18px; font-weight: 700;
  color: rgba(17,201,154,0.40); line-height: 1;
  margin-top: -10px; flex-shrink: 0;
}*/

.cdb-sep {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-top: -10px;
    flex-shrink: 0;
}

.countdown-bar__closed {
  display: none;
  font-family: var(--font-sans);
  font-size: 11.5px; font-weight: 700;
  color: rgba(255,255,255,0.48);
  letter-spacing: 0.09em; text-transform: uppercase;
}
@media (max-width: 380px) {
  .countdown-bar__label { font-size: 12px; }
  .cdb-box { min-width: 34px; }
  .cdb-val { font-size: 17px; }
  .countdown-bar { gap: 6px; }
}

/* ─────────────────────────────────────────
   6. PROMO HEADLINE SECTION
   White, between countdown and hero.
───────────────────────────────────────── */
.promo-headline-section {
  background: var(--white);
  padding: 12px 20px 10px;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
}
.promo-headline-section__main {
  font-family: var(--font-serif);
  font-size: clamp(20px, 5vw, 28px);
  font-weight: 400;
  color: var(--text-100);
  line-height: 1.12;
  letter-spacing: -0.00em;
  margin-bottom: 4px;
}
.promo-headline-section__main em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--teal);
}
/*.promo-headline-section__sub {
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
}*/

.promo-headline-section__sub {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 0;
    letter-spacing: 0.0em;
    text-transform: uppercase;
    color: var(--teal);
}

/* ═══════════════════════════════════════════════════════════════
   7. UNIFIED HERO — WHITE BACKGROUND SPLIT LAYOUT
   This is now the ONLY purchase section.
   Mobile: stacked (image → purchase panel)
   Desktop: two-column grid
═══════════════════════════════════════════════════════════════ */
.product-hero {
  background: var(--white);
  position: relative;
}

/* ── MOBILE HERO ── */
.product-hero__mobile {
  padding-bottom: 72px;
}

/* Mobile image carousel */
.mhero-viewport {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  background: var(--off-white);
}
.mhero-viewport:active { cursor: grabbing; }
.mhero-viewport {
  touch-action: pan-y;
}

.mhero-arrow--disabled,
.mhero-arrow:disabled {
  opacity: 0.28;
  pointer-events: none;
}
.mhero-track {
  position: relative;
  height: 100%;
  width: 100%;
}

.mhero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  pointer-events: none;
}

.mhero-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mhero-img {
  width: 100%; height: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.mhero-img-contain { object-fit: contain; background: var(--white); }
.mhero-img-cream   { background: var(--cream); }

.mhero-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 4;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--border-mid);
  color: var(--text-60);
  font-size: 14px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s, box-shadow 0.15s;
  box-shadow: var(--shadow-sm);
}
.mhero-arrow:hover { background: var(--white); box-shadow: var(--shadow-card); }
.mhero-arrow-prev { left: 10px; }
.mhero-arrow-next { right: 10px; }

/* Mobile thumbnails strip */
.mhero-thumbs {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 6px;
  padding: 9px 15px 0;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  background: var(--white);
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;

  justify-content: flex-start;
}

/* Center thumbnail group when total width fits screen */
.mhero-thumbs::before,
.mhero-thumbs::after {
  content: "";
  flex: 1 0 0;
}

.mhero-thumbs::-webkit-scrollbar {
  display: none;
}

.mhero-thumb {
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: var(--r-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.18s, opacity 0.18s, transform 0.15s;
  opacity: 0.55;
  background: none;
  scroll-snap-align: center;
}

.mhero-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
}

.mhero-thumb:hover {
  opacity: 0.80;
}
/* ─────────────────────────────────────────
   MOBILE HERO REVIEW ROW
───────────────────────────────────────── */
.mhero-review-row {
  padding: 18px 18px 0px;
  text-align: center;
  background: var(--white);
}
.mhero-review-row__stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 14.1px;
  color: #000000;
  margin-bottom: 5px;
margin-top:9px
}
.mhero-review-row__tagline {
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 400;
  font-style: italic;
  color: var(--text-40);
  line-height: 1.7;
  max-width: 290px;
  margin: 0 auto;
  letter-spacing: 0.01em;
  padding-bottom: 2px;
}

/* Mobile purchase panel */
.mhero-panel {
  padding: 12px 16px 0;
}
.mhero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--teal-light);
  border: 1px solid var(--teal-border);
  color: var(--teal);
  font-family: var(--font-sans);
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.10em; text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
  margin-bottom: 8px;
}
.mhero-h1 {
  font-family: var(--font-sans);
  font-size: clamp(20px, 5.5vw, 27px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-100);
  margin-bottom: 5px;
}
.mhero-h1 em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--teal);
}
.mhero-sub {
  font-family: var(--font-sans);
  font-size: 13.5px;
  color: var(--text-60);
  line-height: 1.55;
  margin-bottom: 8px;
  display: none;
}
@media (min-width: 500px) {
  .mhero-sub { display: block; }
}
.mhero-proof {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: var(--text-60);
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.stars { color: var(--gold-light); letter-spacing: 2px; font-size: 18px; }






.mhero-arrow--disabled,
.mhero-arrow:disabled {
  opacity: 0.28;
  pointer-events: none;
}

/* ─────────────────────────────────────────
   8. HERO — DESKTOP SPLIT LAYOUT
   White background, clean two-column
───────────────────────────────────────── */
.product-hero__desktop {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 56px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* Left gallery */
.phd-gallery {
  position: sticky;
  top: 20px;
}
.phd-main {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: var(--shadow-card);
  background: var(--off-white);
  margin-bottom: 12px;
  border: 1px solid var(--border-light);
  position: relative;
}
.phd-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: var(--r-xl);
}
.phd-main-contain { object-fit: contain !important; background: var(--white) !important; }
.phd-main-cream   { background: var(--cream) !important; }

.phd-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.phd-thumb {
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.55;
  transition: opacity 0.18s, border-color 0.18s, transform 0.15s;
  aspect-ratio: 1 / 1;
  background: var(--off-white);
}
.phd-thumb img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.phd-thumb-contain { object-fit: contain !important; }
.phd-thumb-cream   { background: var(--cream); }
.phd-thumb.active  { border-color: var(--teal); opacity: 1; transform: scale(1.04); }
.phd-thumb:hover   { opacity: 0.80; }

/* Right purchase panel */
.phd-panel {
  padding-top: 8px;
}

.phd-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--teal-light);
  border: 1px solid var(--teal-border);
  color: var(--teal);
  font-family: var(--font-sans);
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.10em; text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.phd-h1 {
  font-family: var(--font-sans);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--text-100);
  margin-bottom: 10px;
}
.phd-h1 em {
  font-style: italic;
  font-family: var(--font-serif);
  color: var(--teal);
  font-size: 1.05em;
}

.phd-sub {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text-60);
  line-height: 1.65;
  margin-bottom: 16px;
  max-width: 400px;
}

.phd-proof {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--text-60);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.phd-proof .stars { font-size: 15px; }

/* ─────────────────────────────────────────
   9. PRICE DISPLAY (shared — hero panel)
───────────────────────────────────────── */
.price-display {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
display:none;
}
.price-display__now {
  font-family: var(--font-sans);
  font-size: 42px;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  letter-spacing: -0.03em;
}
.price-display__was {
  font-size: 18px;
  color: var(--text-40);
  text-decoration: line-through;
  font-weight: 400;
}
.price-display__badge {
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: var(--r-xs);
  line-height: 1.4;
  flex-shrink: 0;
}

/* Mobile price */
.price-display--mobile { margin-bottom: 10px; }
.price-display--mobile .price-display__now { font-size: 30px; }

/* ─────────────────────────────────────────
   10. SIZE SELECTOR (hero panels)
───────────────────────────────────────── */
.size-row {
  margin-bottom: 3px;
}
.size-row__label {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-70);
  margin-bottom: 7px;
  display: block;
}
.size-row__opts {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
}
.size-pill {
    padding: 8px 14px;
    border-radius: var(--r-sm);
    border: 1.5px solid var(--border-mid);
    background: #fafafa;
    color: #7d8896;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s, color 0.15s, box-shadow 0.15s;
    -webkit-appearance: none;
}
.size-pill:hover   { border-color: var(--teal); background: var(--teal-light); color: var(--teal); }
.size-pill.selected {
    border-color: #000000;
    background: rgb(255 255 255 / 38%);
    color: #000000;
    font-weight: 600;
    /* box-shadow: 0 0 0 1px #000000; */
}
.size-row__error {
  font-size: 12px;
  color: var(--red);
  margin-top: 8px;
  display: none;
}
.size-row.has-error .size-row__error { display: block; }
.size-row.has-error .size-row__opts {
  animation: shake 0.38s var(--ease);
  border-radius: var(--r-sm);
  outline: 1.5px solid rgba(192,57,43,0.40);
  outline-offset: 4px;
}
.size-row.has-error .size-row__label {
  color: var(--red);
}

/* ─────────────────────────────────────────
   11. SIZE GUIDE ACCORDION (hero panel)
───────────────────────────────────────── */
.size-guide-inline {
  margin-bottom: 9px;
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--off-white);
}
.size-guide-inline__toggle {
  width: 100%;
  background: none;
  border: none;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-70);
  gap: 8px;
  transition: color 0.15s;
}
.size-guide-inline__toggle:hover { color: var(--teal); }
.size-guide-inline__chevron {
  flex-shrink: 0;
  font-size: 12px;
  color: var(--teal);
  transition: transform 0.22s var(--ease);
}
.size-guide-inline.open .size-guide-inline__chevron { transform: rotate(180deg); }
.size-guide-inline__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s var(--ease), padding 0.22s;
  padding: 0 16px;
}
.size-guide-inline.open .size-guide-inline__body {
  max-height: 520px;
  padding: 0 16px 16px;
}
.size-guide-inline__helper {
  font-size: 12px;
  color: var(--text-60);
  margin-bottom: 12px;
  line-height: 1.5;
}
.size-chart-click {
  width: 100%;
  cursor: zoom-in;
  position: relative;
  border-radius: var(--r-sm);
  overflow: hidden;
  margin-bottom: 12px;
}
.size-chart-click::after {
  content: 'Tap to enlarge';
  position: absolute;
  bottom: 7px; right: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.70);
  background: rgba(11,23,40,0.55);
  padding: 3px 9px;
  border-radius: 50px;
  pointer-events: none;
}
.size-chart-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--r-sm);
  cursor: zoom-in;
}
.size-table-mini {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  color: var(--text-60);
}
.size-table-mini th {
  background: var(--teal-light);
  color: var(--teal);
  font-weight: 700;
  padding: 7px 10px;
  text-align: left;
  letter-spacing: 0.06em;
  font-size: 10.5px;
  text-transform: uppercase;
}
.size-table-mini td {
  padding: 7px 10px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-70);
}
.size-table-mini tr:last-child td { border-bottom: none; }

/* ─────────────────────────────────────────
   12. PURCHASE OPTION CARDS (hero)
   Light bg, premium active/inactive states
───────────────────────────────────────── */
.po-cards {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 15px;
}

.po-card {
  border-radius: var(--r-sm);
  padding: 10px 13px 9px;
  overflow: hidden;
  min-width: 0;
  word-break: break-word;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.20s var(--ease);
  text-align: left;
  border: 1.5px solid var(--border-mid);
  background: var(--off-white);
  opacity: 0.72;
}
.po-card:hover { opacity: 0.88; transform: translateY(-1px); }

/* Selected state */
.po-card.po-selected {
    border-color: #000000;
    background: var(--teal-light);
    box-shadow: 0px 4px 4px 0px #00000026;
    opacity: 1;
    transform: none;
}
.po-card.po-selected::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  /*background: linear-gradient(90deg, var(--teal), var(--teal-glow));*/
  border-radius: 2px 2px 0 0;
}




.po-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 7px;
  margin-bottom: 3px;
}

.po-card__radio {
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--border-mid);
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.15s;
}
.po-card__radio-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0;
  transition: opacity 0.15s, transform 0.15s;
  transform: scale(0.3);
}
.po-card.po-selected .po-card__radio     { border-color: var(--teal); }
.po-card.po-selected .po-card__radio-dot { opacity: 1; transform: scale(1); }

.po-card__title-area {
  display: flex;
  align-items: center;
  gap: 7px;
  flex: 1;
}
.po-card__title {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-60);
  transition: color 0.20s;
}
.po-card.po-selected .po-card__title { color: var(--text-100); }

.po-card__popular {
  display: inline-block;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 3px;
  background: var(--teal);
  color: var(--white);
  opacity: 0.4;
  transition: opacity 0.20s;
}
.po-card.po-selected .po-card__popular { opacity: 1; }

.po-card__price-area {
  text-align: right;
  flex-shrink: 0;
}
.po-card__price-now {
  font-family: var(--font-sans);
  font-size: 15px; font-weight: 600;
  color: var(--text-40);
  line-height: 1;
  letter-spacing: -0.02em;
  transition: color 0.20s;
}
.po-card.po-selected .po-card__price-now { color: var(--text-100); }
.po-card__price-was {
  font-size: 11px;
  color: var(--text-30);
  text-decoration: line-through;
  font-weight: 400;
  transition: color 0.20s;
}
.po-card.po-selected .po-card__price-was { color: var(--text-40); }

/* Sale strip — animates in when selected */
.po-card__strip {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(13,158,122,0.10);
  border: 1px solid var(--teal-border);
  border-radius: 5px;
  padding: 4px 10px;
  margin-bottom: 3px;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.20s, max-height 0.25s var(--ease), margin 0.20s;
}
.po-card.po-selected .po-card__strip {
  opacity: 1;
  max-height: 44px;
  margin-bottom: 5px;
}
.po-card__strip-text {
  font-family: var(--font-sans);
  font-size: 10.5px; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--teal);
}

.po-card__includes {
  font-family: var(--font-sans);
  font-size: 15px;
font-weight: inherit;
  color: var(--text-40);
  transition: color 0.20s;
  margin-bottom: 2px;
}
.po-card.po-selected .po-card__includes { color: var(--text-60); }

.po-card__micro {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--text-30);
  font-style: italic;
  letter-spacing: 0.01em;
  transition: color 0.20s;
text-align: center;
}
.po-card.po-selected .po-card__micro { color: rgba(13,158,122,0.65); }

/* ─────────────────────────────────────────
   13. FREE GIFTS (hero section)
───────────────────────────────────────── */
.gifts-row {
    margin-bottom: 9px;
    margin-top: 12px;
}
.gifts-row__heading {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.gifts-row__heading::before,
.gifts-row__heading::after {
  content: '';
  flex: 1; height: 1px;
  background: var(--border-light);
}
.gifts-row__heading-text {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--teal);
}
.gifts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  width: 100%;
  min-width: 0;
}
.gift-tile {
  position: relative;
  border-radius: var(--r-sm);
  border: 1.5px dashed var(--teal-border);
  background: var(--off-white);
  padding: 6px 3px 6px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  transition: border-color 0.20s, opacity 0.20s;
  overflow: hidden;
  min-height: 76px;
}
.gift-tile--unlocked {
  border-color: var(--teal-border);
  opacity: 1;
}
.gift-tile--locked {
  border-color: var(--border-light);
  /* No opacity here — we fade content children individually so overlay stays bright */
}
/* Fade content behind the lock, but NOT the overlay itself */
.gift-tile--locked .gift-tile__value,
.gift-tile--locked .gift-tile__icon {
  opacity: 0.35;
}
.gift-tile__lock-overlay {
  display: none;
  position: absolute;
  inset: -1px; /* slightly larger than the tile */
  background: rgba(246,241,233,0.88);
  border-radius: var(--r-sm);
  align-items: center;
  justify-content: center;
  /* Lock emoji rendered at ~75% of tile height (tile is 76px min → 56px emoji) */
  font-size: 32px;
  line-height: 1;
  z-index: 10;  /* well above all content */
  opacity: 1;   /* always full opacity — parent no longer fades */
  pointer-events: auto; /* capture clicks */
  cursor: pointer;
  transition: background 0.15s;
}
.gift-tile__lock-overlay:active { background: rgba(240,235,228,0.92); }
.gift-tile--locked .gift-tile__lock-overlay { display: flex; }
.gift-tile__value {
  font-family: var(--font-sans);
  font-size: 8.4px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--teal);
  color: var(--white);
  padding: 2px 6px;
  border-radius: 3px; line-height: 1.4;
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 3px; flex-wrap: nowrap;
}
.gift-tile--locked .gift-tile__value { background: var(--text-30); }

/* Strikethrough original price inside value badge */
.gift-tile__value-free {
  font-weight: 600;
  white-space: nowrap;
}
.gift-tile__value-orig {
  font-weight: 500;
  opacity: 0.75;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  white-space: nowrap;
}
/* When locked: both parts dim */
.gift-tile--locked .gift-tile__value-orig { opacity: 0.5; }

/* Locked gift message tooltip */
/* GIFT UNLOCK TOAST — fixed at bottom of screen, never clipped */
.gift-toast {
  position: fixed;
  bottom: 80px; /* above sticky bar */
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  background: var(--navy);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 24px;
  white-space: nowrap;
  z-index: 99999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.22s ease, transform 0.22s ease;
  box-shadow: 0 4px 20px rgba(11,23,40,0.28);
  letter-spacing: 0.02em;
  text-align: center;
  max-width: calc(100vw - 40px);
}
.gift-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Gifts container — no longer needs relative for tooltip */
.gifts-row { position: relative; }
.gifts-grid { position: relative; }

/* Remove old per-tile msg divs (kept in HTML but hidden) */
.gift-locked-msg { display: none !important; }
.gift-tile__icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(13,158,122,0.08);
  border: 1px solid var(--teal-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; flex-shrink: 0;
  position: relative; z-index: 1;
}
.gift-tile--locked .gift-tile__icon {
  background: rgba(11,23,40,0.04);
  border-color: var(--border-light);
}
.gift-item {
  text-align: center;
  min-width: 0;
}

.gift-title-outside {
  margin-top: 6px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--text-100);
  text-align: center;
  letter-spacing: -0.01em;
}

.gift-tile__title {
  display: none;
}

/* ─────────────────────────────────────────
   14. MAIN ATC BUTTON
───────────────────────────────────────── */
/* moved to css2
.main-atc-btn {
  display: block;
  width: 100%;
  background: var(--teal);
  color: var(--white);
  border: none;
  border-radius: var(--r-md);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 20px;
  cursor: pointer;
  box-shadow: var(--shadow-teal);
  transition: background 0.18s, transform 0.15s, box-shadow 0.18s;
  text-align: center;
  letter-spacing: 0.01em;
  margin-bottom: 9px;
}*/
.main-atc-btn:hover { background: var(--teal-glow); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(13,158,122,0.40); }
.main-atc-btn:active { transform: translateY(0); }
.main-atc-btn:disabled { opacity: 0.65; cursor: not-allowed; transform: none; box-shadow: none; }

/* ─────────────────────────────────────────
   15. MICRO TRUST (below ATC)
───────────────────────────────────────── */
.micro-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  width: 100%;
  overflow-x: hidden;
}
.micro-trust-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-sans);
  font-size: 10.5px;
  color: var(--text-40);
  font-weight: 500;
}
.micro-trust-item img { width: 14px; height: 14px; object-fit: contain; }

/* ─────────────────────────────────────────
   16. TRUST BAR (full-width below hero)
───────────────────────────────────────── */
.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
}
.trust-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 760px;
  margin: 0 auto;
  gap: 12px;
  flex-wrap: wrap;
}
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 6px; min-width: 64px; }
.trust-icon { width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-label { font-family: var(--font-sans); font-size: 10.5px; font-weight: 700; color: var(--text-60); text-transform: uppercase; letter-spacing: 0.05em; text-align: center; line-height: 1.35; }

/* ─────────────────────────────────────────
   17. SECTION PRIMITIVES
───────────────────────────────────────── */
.section { padding: 0; }
.section-cream  { background: var(--cream);      padding: 88px 0 !important; }
.section-dark   { background: var(--navy-mid) !important;       padding: 88px 0 !important; color: #fff; }
.section-white  { background: var(--white);      padding: 88px 0 !important; }
.section-sep    { height: 1px; background: linear-gradient(90deg, transparent, var(--border-light) 25%, var(--border-light) 75%, transparent); }

.section-label { display: inline-block; font-family: var(--font-sans); font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--teal); margin-bottom: 12px; }
.section-dark .section-label { color: var(--teal-glow); }
.section-title { font-family: var(--font-sans); font-size: clamp(36px, 6vw, 46px); font-weight: 700; line-height: 39px; margin: 0px auto 72px; letter-spacing: -0.03em; }
.section-body  { font-family: var(--font-sans); font-size: 16px; color: var(--text-60); line-height: 1.75; max-width: 560px; }
.section-dark .section-body { color: rgba(255,255,255,0.65); }
.accent-line   { width: 32px; height: 2.5px; background: linear-gradient(90deg, var(--teal), var(--teal-glow)); border-radius: 4px; margin-bottom: 32px; 
display:none;}

.cta-btn {
  display: block; width: 100%; max-width: 440px; margin: 0 auto 10px;
  background: var(--teal); color: var(--white);
  text-align: center; text-decoration: none;
  font-family: var(--font-sans); font-size: 16px; font-weight: 700;
  padding: 18px 28px; border-radius: var(--r-md); border: none; cursor: pointer;
  box-shadow: var(--shadow-teal);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.cta-btn:hover { background: var(--teal-glow); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(13,158,122,0.40); }
.cta-btn:active { transform: translateY(0); }
.cta-hint { text-align: center; font-size: 12px; color: rgba(255,255,255,0.40); }


/* ─────────────────────────────────────────
   19. WHO IT'S FOR
───────────────────────────────────────── */
.who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 8px; }
.who-item {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--r-md); padding: 16px 14px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.20s, transform 0.20s;
}
.who-item:hover { box-shadow: var(--shadow-card); transform: translateY(-2px); }
.who-icon-wrap {
  width: 42px; height: 42px; background: rgb(255 251 245);
  border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.who-icon { width: 45px; height: 45px; object-fit: contain; display: block; flex-shrink: 0; }
.who-text { font-family: var(--font-sans); font-size: 13.5px; font-weight: 600; color: var(--text-100); line-height: 1.35; }

/* ─────────────────────────────────────────
   20. PROBLEM SECTION
───────────────────────────────────────── */
.problem-img-wrap { margin: 28px -24px 24px; box-shadow: var(--shadow-card); }
.product-img-problem { width: 100%; object-fit: cover; display: block; }
.problem-callout {
  background: var(--white); border-left: 3px solid var(--red);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: 20px 22px; margin-top: 24px;
  font-family: var(--font-sans); font-size: 15px; font-style: italic;
  color: var(--text-70); line-height: 1.65; box-shadow: var(--shadow-sm);
}

/* ─────────────────────────────────────────
   21. HOW IT WORKS
───────────────────────────────────────── */
.steps { margin-top: 36px; display: flex; flex-direction: column; gap: 0; position: relative; list-style: none; }
.steps::before {
  content: ''; position: absolute;
  left: 19px; top: 40px; bottom: 40px;
  width: 2px; background: linear-gradient(to bottom, var(--teal), rgba(13,158,122,0.06)); z-index: 0;
}
.step { display: flex; align-items: flex-start; gap: 20px; padding: 22px 0; position: relative; z-index: 1; }
.step-num {
  flex-shrink: 0; width: 38px; height: 38px; background: var(--teal); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-sans); font-size: 18px; font-weight: 800;
  box-shadow: 0 3px 12px rgba(13,158,122,0.35);
}
.step-text { font-family: var(--font-sans); font-size: 16px; font-weight: 600; color: rgba(255,255,255,0.92); line-height: 1.35; margin-bottom: 4px; }
.step-desc { font-family: var(--font-sans); font-size: 14px; color: rgba(255,255,255,0.50); line-height: 1.55; }
.solution-visual { margin: 40px auto 0; max-width: 420px; border-radius: var(--r-lg); overflow: hidden; box-shadow: 0 8px 36px rgba(0,0,0,0.35); }
.product-img-solution { width: 100%; object-fit: cover; border-radius: var(--r-lg); display: block; }

/* ─────────────────────────────────────────
   22. REVIEWS — UGC CAROUSEL
───────────────────────────────────────── */

/* ── Section heading ── */
/*.ugc-reviews-section {
  background: var(--cream);
  padding: 72px 0 99px;
  overflow: hidden;
}*/
.ugc-reviews-section {
  background: #ffffff;
  padding: 72px 0 80px;
  overflow: hidden;
}
.ugc-reviews-section .ugc-heading {
    font-family: var(--font-sans);
    font-size: clamp(33px, 7vw, 64px);
    font-weight: 700;
    color: var(--text-100);
    text-align: center;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-bottom: 51px;
    padding: 0 24px;
    max-width: 450px;
}

/* ── Slider viewport ── */
.ugc-slider-outer {
  position: relative;
  width: 100%;
}
.ugc {}
.ugc-slider-viewport {
  overflow: hidden;
  width: 100%;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}
.ugc-slider-viewport:active { cursor: grabbing; }
.ugc-slider-track {
  display: flex;
  gap: 16px;
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  padding: 0 24px;
}

/* ── Individual card ── */
.ugc-card {
  flex: 0 0 calc(85vw - 16px);
  max-width: 320px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
}
.ugc-card--hidden { display: none !important; }

.ugc-card__img-wrap {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  overflow: hidden;
  background: var(--off-white);
  margin-bottom: 16px;
  flex-shrink: 0;
}
.ugc-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  pointer-events: none;
}

.ugc-card__quote {
  font-family: var(--font-sans);
  font-size: clamp(18px, 4vw, 22px);
  font-weight: 700;
  color: var(--text-100);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  quotes: "\201C" "\201D";
}
.ugc-card__quote::before { content: open-quote; }
.ugc-card__quote::after  { content: close-quote; }




.ugc-card__text {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-60);
  line-height: 1.65;
  margin-bottom: 12px;
  flex: 1;
}

.ugc-card__name {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-40);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── Arrow buttons ── */
.ugc-arrow {
  position: absolute;
  top: calc(38% - 22px); /* vertically centered on image portion */
  z-index: 4;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--text-100);
  color: #fff;
  border: none;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(11,23,40,0.22);
  transition: background 0.15s, transform 0.12s;
  -webkit-tap-highlight-color: transparent;
}
.ugc-arrow:hover  { background: var(--teal); }
.ugc-arrow:active { transform: scale(0.93); }
.ugc-arrow--prev { left: 12px; }
.ugc-arrow--next { right: 12px; }
.ugc-arrow:disabled { opacity: 0.3; pointer-events: none; }

/* ── Desktop: show 3–4 cards ── */
@media (min-width: 768px) {
  .ugc-slider-track { padding: 0 48px; gap: 20px; }
  .ugc-card {
    flex: 0 0 calc(25% - 16px);
    max-width: none;
  }
  .ugc-arrow--prev { left: 8px; }
  .ugc-arrow--next { right: 8px; }
}
@media (min-width: 1200px) {
  .ugc-card { flex: 0 0 calc(23% - 16px); }
  .ugc-slider-track { padding: 0 56px; }
}



/* ─────────────────────────────────────────
   23. GUARANTEE
───────────────────────────────────────── */
.guarantee-box { background: var(--white); border-radius: var(--r-lg); border: 1.5px solid var(--teal-border); padding: 34px 30px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 18px; }
.guarantee-header { display: flex; align-items: center; gap: 16px; }
.guarantee-badge  { flex-shrink: 0; width: 64px; height: 64px; background: rgb(253 253 245); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.guarantee-title  { font-family: var(--font-serif); font-size: clamp(20px, 4.5vw, 27px); font-weight: 400; line-height: 1.2; color: var(--text-100); letter-spacing: -0.03em; }
.guarantee-body   { font-family: var(--font-sans); font-size: 15px; color: var(--text-60); line-height: 1.75; }
.guarantee-points { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.guarantee-points li { display: flex; align-items: flex-start; gap: 9px; font-size: 14px; color: var(--text-100); font-weight: 500; }
.guarantee-points li::before { content: '✓'; color: var(--teal); font-weight: 700; font-size: 12px; margin-top: 2px; flex-shrink: 0; }
.guarantee-contact { font-size: 13px; color: var(--text-40); border-top: 1px solid var(--border-light); padding-top: 16px; }
.guarantee-contact a { color: var(--teal); text-decoration: none; font-weight: 600; }

/* ─────────────────────────────────────────
   24. FAQ
───────────────────────────────────────── */
.faq-list { margin-top: 30px; }
.faq-item { border-radius: var(--r-sm); margin-bottom: 8px; background: var(--white); border: 1px solid var(--border-light); box-shadow: var(--shadow-sm); overflow: hidden; transition: box-shadow 0.18s; }
.faq-item:hover { box-shadow: var(--shadow-card); }
.faq-q { width: 100%; background: none; border: none; text-align: left; padding: 20px 22px; font-family: var(--font-sans); font-size: 15px; font-weight: 600; color: var(--text-100); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; line-height: 1.4; }
.faq-icon { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--off-white); border: 1.5px solid var(--teal-border); color: var(--teal); font-size: 17px; display: flex; align-items: center; justify-content: center; font-weight: 300; transition: transform 0.22s var(--ease), background 0.18s; line-height: 1; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--teal); color: #fff; border-color: var(--teal); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.32s var(--ease), padding 0.22s; font-family: var(--font-sans); font-size: 14.5px; color: var(--text-60); line-height: 1.72; padding: 0 22px; }
.faq-item.open .faq-a { max-height: 260px; padding: 0 22px 20px; }

/* ─────────────────────────────────────────
   25. FINAL CTA
───────────────────────────────────────── */
.final-cta { background: #0d1829; color: #fff; text-align: center; padding: 88px 24px; position: relative; overflow: hidden; }
.final-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% -20%, rgba(13,158,122,0.14), transparent 60%); pointer-events: none; }
.final-cta h2 { font-family: var(--font-serif); font-size: clamp(26px, 6vw, 42px); font-weight: 400; line-height: 1.12; margin-bottom: 10px; position: relative; letter-spacing: -0.03em; }
.final-cta p  { font-family: var(--font-sans); color: rgba(255,255,255,0.55); font-size: 15px; margin-bottom: 30px; position: relative; }

/* ─────────────────────────────────────────
   26. ANIMATIONS
───────────────────────────────────────── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes shake {
  0%,100% { transform: translateX(0); }
  20%      { transform: translateX(-5px); }
  40%      { transform: translateX(5px); }
  60%      { transform: translateX(-3px); }
  80%      { transform: translateX(3px); }
}
.fade-up { animation: fadeUp 0.60s var(--ease) both; }
.d1 { animation-delay: 0.06s; }
.d2 { animation-delay: 0.12s; }
.d3 { animation-delay: 0.18s; }
.d4 { animation-delay: 0.24s; }

@media (min-width: 640px) {
    
.sb.sb--visible {
    display: none !important;
    visibility: visible !important;
}
}




/* CSS 2 */

/* ─────────────────────────────────────────
   18. BENEFITS — EDITORIAL CENTERED STACK
───────────────────────────────────────── */
.benefits-editorial {
  padding: 99px 0 96px !important;
}

.benefits-wrap {
  max-width: 369px;
  text-align: center;
}

.benefits-title {
margin-bottom: 0px;
  /*margin-bottom: 72px;*/
max-width: 333px;
font-size: 36px;
line-height: 1.05;
letter-spacing: -0.03em;
}
.benefits-intro {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 400;
  color: #1B2235;
  text-align: center;
  max-width: 310px;
  margin: 27px auto 72px;
  letter-spacing: -0.01em;
}
/* Stack — single column centered on mobile */
.ben-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}

/* Each block: icon → headline → desc, all centered */
.ben-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 360px;
  width: 100%;

}

/* Icon container */
.ben-icon-wrap {
  width: 138px;
  height: 138px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 45px;
  flex-shrink: 0;
  margin-top: 33px;
}

.ben-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Headline */
.ben-headline {
  font-family: var(--font-sans);
  font-size: clamp(22px, 5vw, 26px);
  font-weight: 600;
  color: var(--text-100);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
max-width: 222px;
}

/* Description */
.ben-desc {
  font-family: var(--font-sans);
  font-size: 15.5px;
  font-weight: 400;
  color: #5B6475;
  line-height: 1.71;
  margin: 0;
  max-width: 270px;

}

/* Desktop: spacious 2-column, still centered editorial feel */
@media (min-width: 768px) {
  .benefits-wrap { max-width: 880px; text-align: center; }

  .ben-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px 48px;
    align-items: start;
    justify-items: center;
  }

  .ben-block { max-width: 340px; }
  .ben-icon-wrap { width: 210px; height: 210px; }
}

/* Preserve old names so nothing else breaks */
.benefits-grid,
.benefit-card,
.benefit-icon-wrap,
.benefit-icon,
.benefit-title { /* preserved stubs — unused */ }

/* ─────────────────────────────────────────
   27. STICKY ADD-TO-CART BAR
   Lightweight bar — opens compact drawer
───────────────────────────────────────── */
.product-page-body { padding-bottom: 0; }

.sb {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--white);
  border-top: 1px solid var(--border-mid);
  box-shadow: 0 -4px 20px rgba(11,23,40,0.09);
  padding: 9px 14px;
  padding-bottom: calc(9px + env(safe-area-inset-bottom, 0px));
  display: none;
  /* Ensure it never shows partially in Shopify theme */
  visibility: hidden;
}
/* Show only when explicitly made visible by JS */
.sb.sb--visible {
  display: flex !important;
  visibility: visible !important;
}
.sb-row {
  display: flex; align-items: center; gap: 9px;
  max-width: 580px; margin: 0 auto;
}
.sb-price { flex-shrink: 0; display: flex; flex-direction: column; gap: 2px; line-height: 1; }
.sb-price-top { display: flex; align-items: baseline; gap: 5px; }
.sb-was { font-size: 11px; color: var(--text-40); text-decoration: line-through; font-weight: 400; }
.sb-now { font-size: 19px; font-weight: 800; color: var(--text-100); letter-spacing: -0.01em; }
.sb-badge {
  display: inline-block;
  background: var(--teal-light);
  border: 1px solid var(--teal-border);
  color: var(--teal);
  font-size: 9px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  padding: 2px 7px; border-radius: 50px; line-height: 1.4; white-space: nowrap;
}
.sb-badge--vip { background: var(--teal-light); border-color: var(--teal-border); color: var(--teal); }

.sb-size-btn {
  flex: 1; min-width: 0; min-height: 44px;
  background: var(--off-white);
  border: 1.5px solid var(--border-mid);
  border-radius: var(--r-sm); padding: 0 12px;
  font-family: var(--font-sans); font-size: 13.5px; font-weight: 600; color: var(--text-100);
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 7px;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
  white-space: nowrap; overflow: hidden;
}
.sb-size-btn:hover  { border-color: var(--teal); background: var(--teal-light); }
.sb-size-btn.has-size { border-color: var(--teal); background: var(--teal-light); color: var(--teal); }
.sb-size-btn.error    { border-color: var(--red);  background: rgba(192,57,43,0.04); color: var(--red); }
.sb-size-label { overflow: hidden; text-overflow: ellipsis; }
.sb-size-chevron { flex-shrink: 0; font-size: 8px; color: var(--text-40); opacity: 0.7; }

.sb-add-btn {
  flex-shrink: 0; min-height: 44px;
  background: var(--teal); color: var(--white); border: none; border-radius: var(--r-sm);
  font-family: var(--font-sans); font-size: 13.5px; font-weight: 700;
  padding: 0 20px; cursor: pointer;
  box-shadow: var(--shadow-teal);
  transition: background 0.15s, transform 0.12s, box-shadow 0.15s;
  white-space: nowrap;
}
.sb-add-btn:hover { background: var(--teal-glow); transform: translateY(-1px); box-shadow: 0 5px 18px rgba(13,158,122,0.36); }
.sb-add-btn:active { transform: translateY(0); }
.sb-add-btn:disabled { opacity: 0.60; cursor: not-allowed; transform: none; box-shadow: none; }

/* ─────────────────────────────────────────
   28. QUICK-BUY DRAWER
   Compact bottom sheet. Opens from sticky bar.
   Contains: size, purchase options, gifts, ATC.
   Premium but NOT a giant popup.
───────────────────────────────────────── */
.drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(11,23,40,0.45);
  z-index: 10000;
  opacity: 0; pointer-events: none;
  transition: opacity 0.24s var(--ease);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  visibility: hidden;
}
.drawer-overlay.open { 
  opacity: 1; 
  pointer-events: auto; 
  visibility: visible;
}

.drawer {
  position: fixed;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  top: auto;
  width: 100%;
  max-width: 100vw;
  margin: 0;
  z-index: 10001;
  background: var(--white);
  border-radius: 20px 20px 0 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  transform: translateY(100%);
  transition: transform 0.28s var(--ease);
  max-height: calc(100vh - 64px);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding-bottom: env(safe-area-inset-bottom, 8px);
  box-shadow: 0 -8px 40px rgba(11,23,40,0.18), 0 -2px 0 rgba(11,23,40,0.04);
  visibility: hidden;
  pointer-events: none;
  box-sizing: border-box;
  /* Ensure it's truly at bottom — override any parent transforms */
  will-change: transform;
}
.drawer * {
  box-sizing: border-box;
  max-width: 100%;
}
.drawer.open {
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}
/* .drawer::before removed — replaced by .drawer__handle element */

.drawer__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 18px 10px;
  border-bottom: 1px solid var(--border-light);
  position: sticky; top: 0; background: var(--white); z-index: 1;
  width: 100%;
}
.drawer__title {
  font-family: var(--font-sans); font-size: 15px; font-weight: 700;
  color: var(--text-100); letter-spacing: -0.01em;
}
.drawer__close {
  width: 32px; height: 32px; border-radius: 50%; border: none;
  background: var(--off-white); color: var(--text-60); font-size: 14px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.drawer__close:hover { background: var(--border-light); }

.drawer__body {
  padding: 12px 16px 14px;
  width: 100%;
  overflow-x: hidden;
}

/* Drawer price row */
.drawer__price-row {
  display: flex; align-items: baseline; gap: 7px;
  margin-bottom: 10px; flex-wrap: wrap;
  width: 100%;
}
.drawer__price-now {
  font-family: var(--font-serif);
  font-size: 26px; font-weight: 700; color: var(--teal); line-height: 1;
}
.drawer__price-was {
  font-size: 15px; color: var(--text-40); text-decoration: line-through; font-weight: 400;
}
.drawer__price-badge {
  background: var(--teal); color: var(--white);
  font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em;
  padding: 3px 8px; border-radius: 3px;
}

/* Drawer size row */
.drawer__section-label {
  font-family: var(--font-sans);
  font-size: 10px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--text-60); margin-bottom: 6px; display: block;
  width: 100%;
}
.drawer__size-pills { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 8px; width: 100%; }
.drawer__size-pill {
  padding: 7px 14px; border-radius: var(--r-sm);
  border: 1.5px solid var(--border-mid);
  background: var(--white); color: var(--text-70);
  font-family: var(--font-sans); font-size: 12.5px; font-weight: 600;
  cursor: pointer; transition: border-color 0.14s, background 0.14s, color 0.14s;
  -webkit-appearance: none;
  flex: 1; min-width: 0; text-align: center;
}
.drawer__size-pill:hover   { border-color: var(--teal); background: var(--teal-light); color: var(--teal); }
.drawer__size-pill.selected { border-color: var(--teal); background: var(--teal-light); color: var(--teal); font-weight: 700; box-shadow: 0 0 0 1px var(--teal); }

/* Drawer error */
.drawer__error {
  display: none; font-size: 12.5px; color: var(--red); font-weight: 600;
  background: rgba(192,57,43,0.05); border: 1px solid rgba(192,57,43,0.16);
  border-radius: var(--r-sm); padding: 9px 13px; margin-bottom: 14px; line-height: 1.4;
}
.drawer__error.show { display: block; }

/* Drawer purchase option cards (compact) */
.drawer__po-cards { display: flex; flex-direction: column; gap: 4px; margin-bottom: 8px; width: 100%; }
.drawer__po-card {
  border-radius: var(--r-sm);
  padding: 9px 11px;
  cursor: pointer; position: relative; overflow: hidden;
  transition: all 0.18s var(--ease);
  border: 1.5px solid var(--border-mid);
  background: var(--off-white);
  opacity: 0.72;
  display: flex; align-items: center; justify-content: space-between; gap: 6px;
  width: 100%;
  min-width: 0;
}
.drawer__po-card:hover { opacity: 0.88; }
.drawer__po-card.po-selected {
  border-color: var(--teal); background: var(--teal-light);
  box-shadow: 0 0 0 1px rgba(13,158,122,0.16);
  opacity: 1;
}
.drawer__po-card.po-selected::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--teal-glow));
}
.drawer__po-left { display: flex; align-items: center; gap: 6px; flex: 1; min-width: 0; overflow: hidden; }
.drawer__po-radio {
  flex-shrink: 0; width: 16px; height: 16px; border-radius: 50%;
  border: 1.5px solid var(--border-mid); background: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.14s;
}
.drawer__po-radio-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--teal);
  opacity: 0; transition: opacity 0.14s, transform 0.14s; transform: scale(0.3);
}
.drawer__po-card.po-selected .drawer__po-radio     { border-color: var(--teal); }
.drawer__po-card.po-selected .drawer__po-radio-dot { opacity: 1; transform: scale(1); }
.drawer__po-title { font-size: 12px; font-weight: 700; color: var(--text-60); transition: color 0.18s; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.drawer__po-card.po-selected .drawer__po-title { color: var(--text-100); }
.drawer__po-tag {
  font-size: 7.5px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--teal); color: var(--white); padding: 2px 6px; border-radius: 3px;
  opacity: 0.4; transition: opacity 0.18s;
}
.drawer__po-card.po-selected .drawer__po-tag { opacity: 1; }
.drawer__po-price {
  font-family: var(--font-serif); font-size: 16px; font-weight: 700;
  color: var(--text-40); transition: color 0.18s; flex-shrink: 0;
}
.drawer__po-card.po-selected .drawer__po-price { color: var(--text-100); }

/* Drawer po info column (title + microcopy) */
.drawer__po-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
  flex: 1;
  overflow: hidden;
}
.drawer__po-title-row {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
  min-width: 0;
}
.drawer__po-micro {
  font-family: var(--font-sans);
  font-size: 9px;
  color: var(--text-30);
  font-style: italic;
  line-height: 1.3;
  transition: color 0.18s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.drawer__po-card.po-selected .drawer__po-micro { color: rgba(13,158,122,0.55); }

/* Drawer gifts strip (ultra compact) */
.drawer__gifts-strip {
  display: flex;
  gap: 4px;
  margin-bottom: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  max-width: 100%;
  padding-bottom: 2px;
}
.drawer__gifts-strip::-webkit-scrollbar { display: none; }
.drawer__gift-chip {
  flex: 0 0 auto;
  display: flex; align-items: center; gap: 3px;
  background: var(--off-white); border: 1px dashed var(--teal-border);
  border-radius: 4px; padding: 3px 7px;
  font-size: 9.5px; font-weight: 600; color: var(--text-60);
  white-space: nowrap; overflow: hidden;
  transition: opacity 0.18s, border-color 0.18s;
}
.drawer__gift-chip--locked {
  border-color: var(--border-light);
  /* No opacity — we fade text separately, lock stays bright */
  position: relative;
  overflow: visible; /* allow slightly oversized lock overlay */
  cursor: pointer;
}
/* Fade the chip text/icon behind the lock */
.drawer__gift-chip--locked .drawer__gift-chip-icon,
.drawer__gift-chip--locked span:not(.drawer__gift-chip-icon) {
  opacity: 0.3;
}
/* Lock overlay — larger than chip, fully opaque, centered */
.drawer__gift-chip--locked::before {
  content: '\1F512';
  position: absolute;
  inset: -3px; /* slightly larger than chip */
  background: rgba(246,241,233,0.90);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px; /* ~75-100% of chip height (~28px chip → 15px emoji) */
  line-height: 1;
  z-index: 5;
  pointer-events: none; /* clicks handled by .drawer__gift-chip itself */
}
.drawer__gift-chip-icon { font-size: 11px; line-height: 1; }

/* Drawer trust */
.drawer__trust {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; margin-top: 7px; flex-wrap: wrap;
  width: 100%;
}
.drawer__trust-item {
  display: flex; align-items: center; gap: 3px;
  font-family: var(--font-sans); font-size: 10px; color: var(--text-40); font-weight: 500;
}
.drawer__trust-item::before { content: '✓'; color: var(--teal); font-size: 9px; font-weight: 700; }

/* Drawer size guide link */
/* drawer__size-guide-link moved to new block above */

.drawer {
  transform: translateY(100%);
  transition: transform 260ms ease;
}

.drawer.open {
  transform: translateY(0);
}

.drawer.drawer--dragging {
  transition: none !important;
}

.drawer__handle,
.drawer__header {
  touch-action: none;
}



/* ─────────────────────────────────────────
   29. SIZE CHART LIGHTBOX
───────────────────────────────────────── */
.sc-lb-overlay {
  position: fixed; inset: 0; background: rgba(7,14,26,0.90); z-index: 20000;
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; pointer-events: none; transition: opacity 0.26s var(--ease);
  overflow-y: auto; -webkit-overflow-scrolling: touch;
}
.sc-lb-overlay.open { opacity: 1; pointer-events: auto; }
.sc-lb-box { position: relative; max-width: 94vw; max-height: 90vh; margin: auto; transform: scale(0.92); transition: transform 0.26s var(--ease); }
.sc-lb-overlay.open .sc-lb-box { transform: scale(1); }
.sc-lb-img { display: block; width: auto; height: auto; max-width: 94vw; max-height: 86vh; border-radius: 10px; box-shadow: 0 20px 70px rgba(0,0,0,0.65); touch-action: pinch-zoom; user-select: none; }
.sc-lb-close { position: fixed; top: 15px; right: 15px; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.12); border: 1.5px solid rgba(255,255,255,0.20); color: #fff; font-size: 18px; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.15s; z-index: 20001; }
.sc-lb-close:hover { background: rgba(255,255,255,0.20); }

/* ─────────────────────────────────────────
   30. RESPONSIVE MEDIA QUERIES
───────────────────────────────────────── */
/* ─────────────────────────────────────────
   BODY SCROLL LOCK — when drawer open
   Use position:fixed to prevent iOS momentum scroll bleed-through
───────────────────────────────────────── */
body.drawer-open {
  overflow: hidden !important;
  /* iOS: prevent bounce scroll on body while drawer is open */
  touch-action: none;
}

/* ─────────────────────────────────────────
   DRAWER HANDLE — clickable swipe indicator
───────────────────────────────────────── */
.drawer__handle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px 0 6px;
  cursor: pointer;
  touch-action: pan-y;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}
.drawer__handle-bar {
  width: 36px;
  height: 4px;
  border-radius: 2px;
  background: rgba(11,23,40,0.13);
  transition: background 0.15s, width 0.15s;
  pointer-events: none;
}
.drawer__handle:active .drawer__handle-bar,
.drawer__handle:hover  .drawer__handle-bar {
  background: rgba(11,23,40,0.22);
  width: 48px;
}

/* ─────────────────────────────────────────
   FULLSCREEN SIZE CHART LIGHTBOX (v2)
   Higher z-index than drawer, pinch-zoom, pan, close btn
───────────────────────────────────────── */
.sz-lb {
  position: fixed;
  inset: 0;
  z-index: 20500;
  background: rgba(7,14,26,0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.24s ease, visibility 0.24s;
  touch-action: none;
  overscroll-behavior: contain;
}
.sz-lb.open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
.sz-lb__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.10);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20501;
  transition: background 0.15s;
  -webkit-tap-highlight-color: transparent;
  flex-shrink: 0;
}
.sz-lb__close:hover { background: rgba(255,255,255,0.20); }
.sz-lb__hint {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-sans);
  font-size: 11px;
  color: rgba(255,255,255,0.40);
  letter-spacing: 0.06em;
  pointer-events: none;
  white-space: nowrap;
  z-index: 20502;
}
.sz-lb__img-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  touch-action: none;
  cursor: grab;
  user-select: none;
}
.sz-lb__img-wrap:active { cursor: grabbing; }
.sz-lb__img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
  user-select: none;
  -webkit-user-drag: none;
  transform-origin: center center;
  transition: none;
  will-change: transform;
}

/* Drawer size guide link — opens lightbox now */
.drawer__size-guide-link {
  display: block;
  text-align: center;
  margin-top: 6px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: var(--teal-border);
  text-underline-offset: 3px;
  padding: 5px 0;
  transition: color 0.14s;
}
.drawer__size-guide-link:hover { color: var(--text-70); }

/* Cursor hint on size chart images */
.size-chart-click { cursor: zoom-in; }
.size-chart-img   { cursor: zoom-in; }

/* Remove old ::before handle pseudo-element */

/* Drawer ATC button — force full width, no overflow */
.drawer .main-atc-btn {
  width: 100%;
  max-width: 100%;
  padding: 13px 16px;
  font-size: 14.5px;
  margin-bottom: 8px;
  box-sizing: border-box;
}

/* Drawer error: full width */
.drawer__error {
  width: 100%;
}

@media (min-width: 640px) {
  .sb { display: none !important; visibility: hidden !important; }

}
@media (max-width: 639px) {
  /* Mobile: sb/drawer start hidden, shown by JS */
  .sb { display: none; }
}

@media (max-width: 640px) {
  .free-shopping-annoucement { display: inline; }
  .benefits-grid  { gap: 10px; }
  .benefit-card   { padding: 20px 16px; }
  .who-grid { grid-template-columns: 1fr; gap: 8px; }
  .guarantee-box  { padding: 24px 20px; }
  .size-pill { padding: 9px 16px; font-size: 13px; }
  .section-cream, .section-dark, .section-white { padding: 81px 0 !important; }
}

@media (min-width: 768px) {
  .benefits-grid { grid-template-columns: repeat(4, 1fr); }
  .who-grid { grid-template-columns: repeat(3, 1fr); }
  .wrap { max-width: 900px; }
  .trust-icon { width: 64px; height: 64px; }
}

@media (min-width: 990px) {
  .section-cream, .section-dark, .section-white { padding: 108px 0 !important; }
  .benefit-icon-wrap { width: 56px; height: 56px; }
  .benefit-title { font-size: 15px; }
  .who-icon-wrap { width: 46px; height: 46px; }
}

@media (min-width: 1100px) {
  .product-hero__desktop { gap: 80px; }
}

/* ─────────────────────────────────────────
   31. THEME OVERRIDES
───────────────────────────────────────── */
.shopify-section-group-footer-group .section { padding: 0px 24px !important; }
.utilities, .utilities a { color: #fff !important; }
.product-page-body { display: block !important; }
@media screen and (min-width: 750px) {
  .product-page-body { margin: 0 -30px !important; }
  .header__columns { padding: 10px; }
}
@media screen and (min-width: 1500px) { .product-page-body { margin: 0 -300px !important; } }

/* ─────────────────────────────────────────
   32. ICON IMAGE SYSTEM
───────────────────────────────────────── */
.trust-icon-img     { width: 56px; height: 56px; object-fit: contain; display: block; }
.benefit-icon       { width: 45px; height: 45px; object-fit: contain; display: block; }
.who-icon           { width: 45px; height: 45px; object-fit: contain; display: block; flex-shrink: 0; }
.micro-icon-img     { width: 14px; height: 14px; object-fit: contain; display: block; flex-shrink: 0; }
.guarantee-icon-img { width: 54px; height: 54px; object-fit: contain; display: block; }
.size-guide-icon-img{ width: 14px; height: 14px; object-fit: contain; display: block; flex-shrink: 0; }

@media (max-width: 480px) { .trust-icon-img { width: 48px; height: 48px; } }



/* ─────────────────────────────────────────
   BENEFITS TICKER / MARQUEE
───────────────────────────────────────── */

.benefits-ticker {
  background: #122241;
  overflow: hidden;
  height: 58px;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding-top: 45px;
  padding-bottom: 45px;
}

.benefits-ticker__track {
  display: flex;
  align-items: center;
  width: max-content;
  white-space: nowrap;
  animation: ticker-scroll 28s linear infinite;
  will-change: transform;
}

.benefits-ticker__set {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.benefits-ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 32px;
  font-family: var(--font-sans);
  font-size: 27px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  white-space: nowrap;
  flex-shrink: 0;
}

.benefits-ticker__icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

@keyframes ticker-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .benefits-ticker__track {
    animation-play-state: paused;
  }
}

@media (min-width: 768px) {
  .benefits-ticker {
    height: 64px;
  }

  .benefits-ticker__item {
    font-size: 27px;
    padding: 0 40px;
  }
}

.ugc-card__quote,
.ugc-card__text{
  font-family: "Poppins", sans-serif;
}

.ugc-card__quote{
  font-size: 22px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  color: #050505;
  margin: 22px 0 18px;
}

.ugc-card__text{
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
  text-align: center;
  color: #111;
  max-width: 300px;
  margin: 0 auto;
}

@media (max-width: 768px){
  .ugc-card__quote{
    font-size: 21px;
  }

  .ugc-card__text{
    font-size: 15px;
  }
}

/* Desktop arrow visibility fix */
.ugc-reviews-section {
  overflow: visible;
}

.ugc-slider-outer {
  overflow: visible;
  max-width: 100%;
}

.ugc-slider-viewport {
  overflow: hidden;
  touch-action: pan-y;
}

.ugc-arrow {
  z-index: 20;
}

@media (min-width: 768px) {
  .ugc-arrow--prev {
    left: 36px;
  }

  .ugc-arrow--next {
    right: 36px;
  }
}

.reviews-stars{
  display:flex;
  align-items:center;
  gap:2px;
}

.reviews-stars svg{
  width:18px;
  height:18px;
  flex-shrink:0;
}



/* ─────────────────────────────────────────
   SIZE SELECTOR — REPOSITIONED ABOVE PO CARDS
───────────────────────────────────────── */
.size-section-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  margin-top: 4px;
}
.size-section-heading::before,
.size-section-heading::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-mid);
}
.size-section-heading__text {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.0em;
  text-transform: uppercase;
  color: #8a8a8a;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Size guide link — replaces accordion */
.size-guide-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 600;
  color: #8a8a8a;
  text-decoration: underline;
  text-decoration-color: var(--border-mid);
  text-underline-offset: 3px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  margin-top: 0px;
  margin-bottom: 21px;
  transition: color 0.14s;
  -webkit-tap-highlight-color: transparent;
}
.size-guide-link:hover { color: var(--teal); text-decoration-color: var(--teal); }

/* Size guide modal */
.sg-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11,23,40,0.55);
  z-index: 20600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.24s ease, visibility 0.24s;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}
.sg-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
.sg-modal-box {
  background: var(--white);
  border-radius: var(--r-lg);
  max-width: 480px;
  width: 100%;
  padding: 24px 20px 20px;
  position: relative;
  transform: translateY(12px);
  transition: transform 0.24s ease;
  box-shadow: 0 20px 60px rgba(11,23,40,0.22);
  max-height: 90vh;
  overflow-y: auto;
}
.sg-modal-overlay.open .sg-modal-box {
  transform: translateY(0);
}
.sg-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: var(--off-white);
  color: var(--text-60);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.14s;
  flex-shrink: 0;
}
.sg-modal-close:hover { background: var(--border-light); }
.sg-modal-title {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-100);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.sg-modal-hint {
  font-size: 12px;
  color: var(--text-40);
  margin-bottom: 12px;
  line-height: 1.5;
}
.sg-modal-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--r-sm);
  cursor: zoom-in;
  margin-bottom: 14px;
}


.po-card2.po-selected {
  border-color: var(--teal);
  background: var(--teal-light);
  box-shadow: 0 0 0 1px rgba(13,158,122,0.18), var(--shadow-sm);
  opacity: 1;
  transform: none;
}
.po-card2.po-selected::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--teal-glow));
  border-radius: 2px 2px 0 0;
}


.po-card.po-selected .po-card__radio     { border-color: var(--teal); }
.po-card.po-selected .po-card__radio-dot { opacity: 1; transform: scale(1); }

.po-card2.po-selected .po-card__title { color: var(--text-100); }

.po-card2.po-selected .po-card__popular { opacity: 1; }

.po-card2.po-selected .po-card__price-now { color: var(--text-100); }
.po-card2.po-selected .po-card__price-was { color: var(--text-40); }
.po-card2.po-selected .po-card__strip {
  opacity: 1;
  max-height: 44px;
  margin-bottom: 5px;
}
.po-card2.po-selected .po-card__includes { color: var(--text-60); }


.po-card2.po-selected .po-card__micro { color: rgba(13,158,122,0.65); }

.po-card2 {
  border-radius: var(--r-sm);
  padding: 10px 13px 9px;
  overflow: hidden;
  min-width: 0;
  word-break: break-word;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.20s var(--ease);
  text-align: left;
  border: 1.5px solid var(--border-mid);
  background: var(--off-white);
  opacity: 0.72;
}
.po-card2:hover { opacity: 0.88; transform: translateY(-1px); }

/* =========================================================
   BASE CARD RESET
========================================================= */
.po-card {
  background: #fff;
  border: 1.5px solid #d9d9d9;
  transition: all .22s ease;
  /* Increase padding for breathing room */
  padding: 14px 14px 12px;
}

/* =========================================================
   VIP CARD HEADER LAYOUT
   Title + "Most Popular" stacked, price on right
========================================================= */
#mPoCardVip .po-card__header,
#dPoCardVip .po-card__header {
  align-items: flex-start;
  margin-bottom: 0;
  padding-bottom: 10px;
}

/* Stack title and "Most Popular" vertically */
#mPoCardVip .po-card__title-area,
#dPoCardVip .po-card__title-area {
  flex-direction: column;
  align-items: flex-start;
  gap: 0px;
}

/* VIP title — always full size and readable */
#mPoCardVip .po-card__title,
#dPoCardVip .po-card__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-100);
  white-space: normal;
  line-height: 1.3;
}

/* "Most Popular" as plain text under title, not a badge */
#mPoCardVip .po-card__popular, #dPoCardVip .po-card__popular {
    background: none;
    color: #1f6b45;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.00em;
    padding: 0;
    border-radius: 0;
    text-transform: uppercase;
    opacity: 1 !important;
}

/* VIP price area — slightly larger */
#mPoCardVip .po-card__price-now,
#dPoCardVip .po-card__price-now {
  font-size: 18px;
}

/* Thin divider line under header, above strip/includes */
#mPoCardVip .po-card__header,
#dPoCardVip .po-card__header {
  border-bottom: 1px solid rgba(11,23,40,0.08);
}

/* Space above strip/includes content */
#mPoCardVip .po-card__strip,
#dPoCardVip .po-card__strip {
  margin-top: 10px;
}
#mPoCardVip .po-card__includes,
#dPoCardVip .po-card__includes {
  margin-top: 8px;
}

/* =========================================================
   VIP SELECTED (GREEN ACTIVE)
========================================================= */
#mPoCardVip.po-selected,
#dPoCardVip.po-selected {
  background: #02a4901f;
  border: 1.5px solid #1f6b45;
  box-shadow: 0px 4px 4px 0px #00000026;
  opacity: 1;
}

#mPoCardVip.po-selected .po-card__header,
#dPoCardVip.po-selected .po-card__header {
  border-bottom-color: rgba(31,107,69,0.15);
}

#mPoCardVip.po-selected .po-card__strip,
#dPoCardVip.po-selected .po-card__strip {
  opacity: 1;
}

#mPoCardVip.po-selected .po-card__radio,
#dPoCardVip.po-selected .po-card__radio {
  border-color: #111;
}

#mPoCardVip.po-selected .po-card__radio-dot,
#dPoCardVip.po-selected .po-card__radio-dot {
  background: #111;
}

/* =========================================================
   VIP INACTIVE (one-time selected)
   Header stays full opacity — only body content fades
========================================================= */
#mPoCardVip:not(.po-selected),
#dPoCardVip:not(.po-selected) {
  /* No opacity on the whole card — only fade body parts below */
  opacity: 1;
  background: #fff;
  border: 1.5px solid #d9dde3;
  box-shadow: none;
}

/* Header stays crisp and readable when VIP inactive */
#mPoCardVip:not(.po-selected) .po-card__header,
#dPoCardVip:not(.po-selected) .po-card__header {
  opacity: 1;
  border-bottom-color: rgba(11,23,40,0.08);
}

#mPoCardVip:not(.po-selected) .po-card__title,
#dPoCardVip:not(.po-selected) .po-card__title {
  color: var(--text-100);
  opacity: 1;
}

#mPoCardVip:not(.po-selected) .po-card__price-now,
#dPoCardVip:not(.po-selected) .po-card__price-now {
  color: var(--text-70);
  opacity: 1;
}

#mPoCardVip:not(.po-selected) .po-card__price-was,
#dPoCardVip:not(.po-selected) .po-card__price-was {
  opacity: 1;
}

#mPoCardVip:not(.po-selected) .po-card__radio,
#dPoCardVip:not(.po-selected) .po-card__radio {
  opacity: 1;
}

/* Body content fades when VIP inactive */
#mPoCardVip:not(.po-selected) .po-card__strip,
#dPoCardVip:not(.po-selected) .po-card__strip {
  opacity: 0.45;
  max-height: 44px;
  margin-bottom: 5px;
  margin-top: 10px;
  background: #e6f2ec;
  border-color: #d7e8df;
}

#mPoCardVip:not(.po-selected) .po-card__strip-text,
#dPoCardVip:not(.po-selected) .po-card__strip-text {
  color: #7e9b90;
}

#mPoCardVip:not(.po-selected) .po-card__includes,
#dPoCardVip:not(.po-selected) .po-card__includes {
  opacity: 0.4;
}

#mPoCardVip:not(.po-selected) .po-card__micro,
#dPoCardVip:not(.po-selected) .po-card__micro {
  opacity: 0.35;
}

/* =========================================================
   ONE-TIME SELECTED (MINIMAL WHITE/BLACK)
========================================================= */
#mPoCardOnetime.po-selected,
#dPoCardOnetime.po-selected {
  background: #fff;
  border: 1.5px solid #111;
  box-shadow: none;
  opacity: 1;
}

#mPoCardOnetime.po-selected .po-card__radio,
#dPoCardOnetime.po-selected .po-card__radio {
  border-color: #111;
  background: #fff;
}

#mPoCardOnetime.po-selected .po-card__radio-dot,
#dPoCardOnetime.po-selected .po-card__radio-dot {
  background: #111;
}

/* =========================================================
   ONE-TIME STRIP — ALWAYS HIDDEN
========================================================= */
#mPoCardOnetime .po-card__strip,
#dPoCardOnetime .po-card__strip {
  display: none !important;
}

/* =========================================================
   ONE-TIME INACTIVE — stays dim as before
========================================================= */
#mPoCardOnetime:not(.po-selected),
#dPoCardOnetime:not(.po-selected) {
  opacity: 0.72;
  background: #f8f8f8;
  border: 1px solid #dcdcdc;
}

.sz-lb {
  z-index: 999999 !important;
}

.sg-modal-overlay {
  z-index: 99990;
}

.sg-modal-box {
  z-index: 99991;
}

.main-atc-btn {
    display: block;
    width: 100%;
    background: var(--teal);
    color: var(--white);
    border: none;
    border-radius: var(--r-md);
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 700;
    padding: 14px 20px;
    cursor: pointer;
    box-shadow: var(--shadow-teal);
    transition: background 0.18s, transform 0.15s, box-shadow 0.18s;
    text-align: center;
    letter-spacing: 0.01em;
    margin-bottom: 15px;
    margin-top: 54px;
}

.mhero-thumb.active {
    border-color: #00000000;
    opacity: 1;
    transform: scale(1.00);
}





/* =========================
   COMPARE SECTION — RESET & BASE
========================= */
.af-compare-section {
  background: #0F1F3D;
  padding: 72px 20px 80px;
  position: relative;
  overflow: hidden;
}
 
/* Subtle radial glow behind content */
.af-compare-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(24,191,163,0.10) 0%, transparent 70%);
  pointer-events: none;
}
 
.af-compare-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 52px;
  align-items: center;
}
 
/* =========================
   LEFT — IMAGE STACK
========================= */
.af-compare-images {
  display: flex;
  flex-direction: column;
  gap: 5px;
  max-width: 540px;
  margin: 0 auto;
  width: 100%;
}
 
.af-compare-card {
  position: relative;
  overflow: hidden;
  background: #000;
}
 
.af-before {
  border-radius: 28px 28px 0 0;
}
 
.af-after {
  border-radius: 0 0 28px 28px;
}
 
.af-compare-img {
  width: 100%;
  display: block;
  object-fit: cover;
  /* Slightly desaturate before; vivid after handled via overlay */
}
 
/* =========================
   LABEL OVERLAYS
========================= */
.af-compare-overlay {
  position: absolute;
  top: 16px;
  left: 18px;
  z-index: 2;
  display: none;
  /*display: flex;*/
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
 
.af-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 20, 20, 0.78);
  color: #fff;
  border-radius: 999px;
  padding: 7px 18px;
  font-family: var(--font-sans, 'Outfit', sans-serif);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.12);
}
 
.af-label--after {
  background: rgba(24,191,163,0.92);
  border-color: rgba(255,255,255,0.20);
}
 
/* =========================
   BADGE
========================= */
.af-badge {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: #18BFA3;
  color: #fff;
  display: none;
  /*display: flex;*/
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: var(--font-sans, 'Outfit', sans-serif);
  text-align: center;
  z-index: 2;
  box-shadow: 0 4px 16px rgba(24,191,163,0.45);
  border: 2px solid rgba(255,255,255,0.20);
}
 
.af-badge-line1 {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
}
 
.af-badge-line2 {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.88;
  line-height: 1.2;
  margin-top: 2px;
}
 
/* =========================
   RIGHT — SALES CONTENT
========================= */
.af-compare-content {
    max-width: 522px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}
 
/* Section label */
.af-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 699;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #18BFA3;
  margin-bottom: 9px;
}
 
.af-eyebrow::before {
  content: '';
display: none;
  /*display: block;*/
  width: 21px;
  height: 2px;
  background: #18BFA3;
  border-radius: 2px;
  flex-shrink: 0;
}
 
/* Headline */
.af-heading {
    font-family: var(--font-sans, sans-serif);
    font-size: clamp(36px, 6vw, 57px);
    line-height: 1.08;
    letter-spacing: -0.03em;
    font-weight: 699;
    color: #ffffff;
    margin: 0 0 27px;
}
 
.af-heading em {
  font-style: normal;
  color: #18BFA3;
}
 
/* Body copy */
.af-text {
    font-family: var(--font-sans);
    font-size: 18px;
    line-height: 1.74;
    color: rgba(255,255,255,0.66);
    margin-bottom: 33px;
    letter-spacing: -0.006em;
}
.af-text:nth-of-type(2) {
  text-align: lef;
}

 
.af-text strong {
  font-weight: 700;
  color: rgba(255,255,255,0.90);
}
 
/* Divider */
.af-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 28px 0;
}
 
/* Price */
.af-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 24px;
}
 
.af-old-price {
  font-family: var(--font-sans, 'Outfit', sans-serif);
  font-size: 22px;
  color: rgba(255,255,255,0.32);
  text-decoration: line-through;
  font-weight: 500;
}
 
.af-new-price {
  font-family: var(--font-sans, 'Outfit', sans-serif);
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
}
 
.af-save-pill {
  display: inline-flex;
  align-items: center;
  background: rgba(24,191,163,0.15);
  border: 1px solid rgba(24,191,163,0.35);
  color: #18BFA3;
  font-family: var(--font-sans, 'Outfit', sans-serif);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 999px;
  margin-left: 4px;
}
 
/* CTA button */
.af-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 420px;
  padding: 19px 28px;
  border-radius: 14px;
  background: #18BFA3;
  color: #fff;
  text-decoration: none;
  font-family: var(--font-sans, 'Outfit', sans-serif);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: background 0.18s ease, transform 0.14s ease, box-shadow 0.18s ease;
  box-shadow: 0 6px 28px rgba(24,191,163,0.38);
  border: none;
  cursor: pointer;
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
}
 
.af-button::after {
  content: '→';
  position: absolute;
  right: 22px;
  font-size: 18px;
  opacity: 0.75;
  transition: right 0.18s ease;
}
 
.af-button:hover {
  background: #15d4b5;
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(24,191,163,0.46);
}
 
.af-button:hover::after {
  right: 18px;
}
 
.af-button:active {
  transform: translateY(0);
}
 
/* Trust row */
.af-trust-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}
 
.af-trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-sans, 'Outfit', sans-serif);
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
}
 
.af-trust-item::before {
  content: '✓';
  color: #18BFA3;
  font-weight: 700;
  font-size: 11px;
  flex-shrink: 0;
}
 
/* Bullet points list */
.af-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 45px;
    display: flex;
    flex-direction: column;
    gap: 9px;
    text-align: left;
}
 
.af-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-family: var(--font-sans, 'Outfit', sans-serif);
    font-size: 18px;
    font-weight: 600;
    color: rgba(255,255,255,90);
    line-height: 1.5;
}
 
.af-bullets li::before {
  content: '→';
  color: #18BFA3;
  font-weight: 700;
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}
 
/* =========================
   DESKTOP
========================= */
@media (min-width: 768px) {
  .af-compare-section {
    padding: 100px 40px 108px;
  }
}
 
@media (min-width: 990px) {
  .af-compare-grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
 
  .af-compare-images {
    max-width: none;
    margin: 0;
    gap: 6px;
  }
 
  .af-compare-content {
    max-width: none;
    margin: 0;
  }
 
  .af-button {
    max-width: 380px;
  }
}
 
@media (min-width: 1200px) {
  .af-compare-grid {
    gap: 100px;
  }
}


#offer{
  scroll-margin-top: 120px;
}


/* Hide sticky ATC on desktop */
@media (min-width: 768px) {
  #stickyBar {
    display: none !important;
    visibility: hidden !important;
  }
}


/* Desktop aligns left */
@media (min-width: 768px) {
  .af-trust-row {
    justify-content: flex-start;
  }
}




/* CSS 3 */


/* ===========================================
   ALIGNFORM LIFESTYLE SECTION
   Paste into CSS File 2 (or your theme CSS)
=========================================== */

/* ── Section shell ── */
.afl-section {
  background: #ffffff;
  padding: 80px 20px 88px;
}

.afl-container {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

/* ── Header — full width ── */
.afl-header {
  text-align: center;
  margin-bottom: 44px;
}

.afl-eyebrow {
  display: inline-block;
  font-family: var(--font-sans, 'Outfit', sans-serif);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #18BFA3;
  margin-bottom: 14px;
}

.afl-heading {
    font-family: var(--font-sans, 'Outfit', sans-serif);
    font-size: clamp(36px, 9vw, 69px);
    line-height: 1.08;
    letter-spacing: -0.03em;
    font-weight: 699;
    color: #0F1F3D;
    margin: 0 0 15px;
}

.afl-subtext {
  font-family: var(--font-sans, 'Outfit', sans-serif);
  font-size: 17px;
  line-height: 1.65;
  color: #4B5563;
  max-width: 520px;
  margin: 0 auto;
  letter-spacing: -0.01em;
}

/* ── Image column ── */
.afl-image-col {
  margin-bottom: 44px;
}

.afl-image-wrap {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: #f3f4f6;
}

.afl-image {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 28px;
  /* Aspect ratio for placeholder state */
  min-height: 320px;
}

/* Floating rating badge over image */
.afl-img-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.94);
  border-radius: 999px;
  padding: 9px 16px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(15,31,61,0.12);
}

.afl-img-badge__stars {
  color: #F59E0B;
  font-size: 13px;
  letter-spacing: 1px;
  line-height: 1;
}

.afl-img-badge__text {
  font-family: var(--font-sans, 'Outfit', sans-serif);
  font-size: 12px;
  font-weight: 700;
  color: #111827;
  white-space: nowrap;
}

/* ── Content column ── */
.afl-content-col {
  /* full width on mobile */
}

/* ── Benefits list ── */
.afl-benefits {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 36px;
}

.afl-benefit {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.afl-benefit__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(24,191,163,0.09);
  border: 1px solid rgba(24,191,163,0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.afl-benefit__body {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.afl-benefit__title {
  font-family: var(--font-sans, 'Outfit', sans-serif);
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin: 0;
}

.afl-benefit__text {
  font-family: var(--font-sans, 'Outfit', sans-serif);
  font-size: 14.5px;
  line-height: 1.65;
  color: #4B5563;
  margin: 0;
}

/* ── Divider ── */
.afl-divider {
  height: 1px;
  background: rgba(15,31,61,0.08);
  margin-bottom: 28px;
}

/* ── Price ── */
.afl-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.afl-price-was {
  font-family: var(--font-sans, 'Outfit', sans-serif);
  font-size: 20px;
  font-weight: 500;
  color: #9CA3AF;
  text-decoration: line-through;
}

.afl-price-now {
  font-family: var(--font-sans, 'Outfit', sans-serif);
  font-size: 40px;
  font-weight: 800;
  color: #0F1F3D;
  letter-spacing: -0.03em;
  line-height: 1;
}

.afl-price-pill {
  display: inline-flex;
  align-items: center;
  background: rgba(24,191,163,0.12);
  border: 1px solid rgba(24,191,163,0.30);
  color: #18BFA3;
  font-family: var(--font-sans, 'Outfit', sans-serif);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 999px;
  margin-left: 4px;
  align-self: center;
}

/* ── CTA Button ── */
.afl-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 400px;
  padding: 18px 28px;
  border-radius: 14px;
  background: #18BFA3;
  color: #fff;
  text-decoration: none;
  font-family: var(--font-sans, 'Outfit', sans-serif);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: background 0.18s ease, transform 0.14s ease, box-shadow 0.18s ease;
  box-shadow: 0 6px 24px rgba(24,191,163,0.34);
  border: none;
  cursor: pointer;
  margin-bottom: 14px;
}

.afl-button__arrow {
  font-size: 17px;
  transition: transform 0.16s ease;
}

.afl-button:hover {
  background: #15d4b5;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(24,191,163,0.42);
}

.afl-button:hover .afl-button__arrow {
  transform: translateX(4px);
}

.afl-button:active {
  transform: translateY(0);
}

/* ── Trust row ── */
.afl-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  flex-wrap: wrap;
}

.afl-trust__item {
  font-family: var(--font-sans, 'Outfit', sans-serif);
  font-size: 12.5px;
  font-weight: 500;
  color: #9CA3AF;
}

.afl-trust__dot {
  font-size: 12px;
  color: #D1D5DB;
}

/* ── Desktop layout ── */
@media (min-width: 768px) {
  .afl-section {
    padding: 96px 40px 104px;
  }

  .afl-image {
    min-height: 420px;
  }
}

@media (min-width: 990px) {
  .afl-container {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr;
    column-gap: 72px;
    row-gap: 0;
    align-items: start;
  }

  /* Header spans full width */
  .afl-header {
    grid-column: 1 / -1;
    margin-bottom: 56px;
    text-align: left;
  }

  .afl-eyebrow {
    /* left-align on desktop */
  }

  .afl-subtext {
    margin: 0;
    max-width: 560px;
  }

  /* Image: left column */
  .afl-image-col {
    margin-bottom: 0;
    position: sticky;
    top: 100px;
    align-self: start;
  }

  .afl-image {
    min-height: 520px;
  }

  /* Content: right column */
  .afl-content-col {
    padding-top: 8px;
  }

  .afl-button {
    max-width: 360px;
  }
}

@media (min-width: 1200px) {
  .afl-container {
    column-gap: 96px;
  }
}


.afl-benefit__icon {
  width: 42px;
  height: 42px;
  min-width: 42px;

  border-radius: 999px;

  background: rgba(24,191,163,0.12);

  display: flex;
  align-items: center;
  justify-content: center;

  color: #18BFA3;
}

.afl-benefit__icon svg {
  display: block;
}


/* ══════════════════════════════════════
   ALIGNFORM REVIEWS CAROUSEL — CSS
══════════════════════════════════════ */

/* ── Section shell ── */
.afr-section {
  padding: 80px 0 88px;
  overflow: hidden;
}

/* ── Header ── */
.afr-header {
  text-align: center;
  padding: 0 24px;
  margin-bottom: 48px;
}

.afr-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}

.afr-heading {
    font-family: var(--font-sans);
    font-size: clamp(36px, 6vw, 63px);
    font-weight: 699;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--text-100);
    margin: 0 0 21px;
}

.afr-aggregate {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 999px;
  padding: 8px 18px;
  box-shadow: var(--shadow-sm);
  flex-wrap: wrap;
  justify-content: center;
}

.afr-agg-stars {
  color: var(--gold-light);
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 1;
}

.afr-agg-score {
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 800;
  color: var(--text-100);
}

.afr-agg-count {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-40);
}

/* ── Slider outer ── */
.afr-slider-outer {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

/* ── Viewport ── */
.afr-slider-viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  touch-action: pan-y;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;

  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 5%,
    black 95%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 5%,
    black 95%,
    transparent 100%
  );
}

/* ── Track ── */
.afr-slider-track {
  display: flex;
  width: 100%;
  max-width: 100%;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

/* ── Individual slide ── */
.afr-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
  padding: 0 24px;
  box-sizing: border-box;
  align-items: center;
  overflow: hidden;
}

/* Prevent children from forcing slide wider than viewport */
.afr-slide > * {
  min-width: 0;
}

/* ── Image area ── */
.afr-slide__media {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.afr-slide__media--double {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  max-width: 100%;
}

.afr-slide__media--single {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

.afr-img {
  width: 100%;
  max-width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 20px;
  background: var(--off-white);
  box-shadow: 0 8px 32px rgba(15, 31, 61, 0.10);
}

.afr-slide__media--double .afr-img {
  aspect-ratio: 3 / 5;
}

.afr-slide__media--single .afr-img {
  aspect-ratio: 1 / 1;
}


/* ── Content area ── */
.afr-slide__content {
  width: 100%;
  max-width: 480px;
  min-width: 0;
}

/* Stars */
.afr-stars {
  color: var(--gold-light);
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom: 18px;
  line-height: 1;
}

/* Quote */
.afr-quote {
  font-family: var(--font-sans);
  font-size: clamp(17px, 3.5vw, 22px);
  font-weight: 500;
  line-height: 1.62;
  color: var(--text-100);
  letter-spacing: -0.01em;
  margin: 0 0 28px;
  quotes: none;
  position: relative;
  padding-left: 20px;
  border-left: 3px solid var(--teal);
  overflow-wrap: break-word;
}

/* Reviewer row */
.afr-reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.afr-reviewer__avatar {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--teal-light);
  border: 1.5px solid var(--teal-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
}

.afr-reviewer__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.afr-reviewer__name {
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text-100);
  line-height: 1.2;
}

.afr-reviewer__location {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  color: var(--text-40);
  line-height: 1.2;
}

.afr-verified {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--teal);
  flex-shrink: 0;
}

/* ── Arrow buttons ── */
.afr-arrow {
  position: absolute;
  top: 32%;
  transform: translateY(-50%);
  z-index: 4;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--border-mid);
  color: var(--text-70);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(15, 31, 61, 0.10);
  transition: background 0.15s, color 0.15s, transform 0.12s, box-shadow 0.15s;
  -webkit-tap-highlight-color: transparent;
}

.afr-arrow:hover {
  background: var(--text-100);
  color: #fff;
  border-color: var(--text-100);
  box-shadow: 0 6px 20px rgba(15, 31, 61, 0.20);
}

.afr-arrow:active {
  transform: translateY(-50%) scale(0.92);
}

.afr-arrow:disabled {
  opacity: 0.25;
  pointer-events: none;
}

.afr-arrow--prev {
  left: 4px;
}

.afr-arrow--next {
  right: 4px;
}

/* ── Dots ── */
.afr-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  padding: 0 24px;
}

.afr-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--border-mid);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: width 0.24s cubic-bezier(0.22, 1, 0.36, 1), background 0.18s;
  -webkit-tap-highlight-color: transparent;
}

.afr-dot.active {
  width: 28px;
  background: var(--teal);
}

/* ── Desktop layout ── */
@media (min-width: 768px) {
  .afr-section {
    padding: 96px 0 104px;
  }

  .afr-header {
    margin-bottom: 56px;
  }

  .afr-arrow--prev {
    left: 12px;
  }

  .afr-arrow--next {
    right: 12px;
  }
}

@media (min-width: 990px) {
  .afr-slide {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 72px;
    padding: 0 80px;
    align-items: center;
  }

  .afr-slide__media--single {
    max-width: none;
    margin: 0;
  }

  .afr-img {
    border-radius: 28px;
    aspect-ratio: 3 / 4;
  }

  .afr-slide__content {
    max-width: 460px;
  }

  .afr-quote {
    font-size: 22px;
  }

  .afr-arrow {
    top: 40%;
  }

  .afr-arrow--prev {
    left: 20px;
  }

  .afr-arrow--next {
    right: 20px;
  }
}

@media (min-width: 1200px) {
  .afr-slide {
    padding: 0 100px;
    gap: 88px;
  }
}

/* First slide double images: make them taller/narrower */
.afr-slide__media--double .afr-img {
  aspect-ratio: 3 / 5;
}


/*   3 SIMPLE STEPS SECTION   */

.section-soft-green {
  background: #DCEEE2 !important;
}

.af-steps {
  padding: 76px 20px 80px;
  text-align: center;
}

.af-steps__inner {
  max-width: 1180px;
  margin: 0 auto;
}

.af-steps__header {
  margin-bottom: 56px;
}

.af-steps__header p {
  font-size: 25px;
  line-height: 1.1;
  font-weight: 800;
  color: #111;
  margin: 0 0 10px;
  letter-spacing: -0.03em;
}

.af-steps__header h2 {
  font-size: clamp(44px, 8vw, 82px);
  line-height: 0.95;
  font-weight: 900;
  color: #006B38;
  margin: 0;
  letter-spacing: -0.06em;
}

.af-steps__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 70px;
}

.af-step {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.af-step__num {
  font-size: 44px;
  line-height: 1;
  font-weight: 900;
  color: #000;
  margin-bottom: 22px;
}

.af-step h3 {
  font-size: 30px;
  line-height: 1.05;
  font-weight: 900;
  color: #000;
  /*max-width: 320px;*/
  margin: 0 0 22px;
  letter-spacing: -0.06em;
  /*text-transform: lowercase;*/'
}

.af-step__icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 900;
  margin-bottom: 26px;
}

.af-step__icon--check {
    background: #006B38;
    color: #dceee2;
}

.af-step img {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 0.72 / 1;
  object-fit: cover;
  border-radius: 10px;
  border: 1.5px solid #000;
  display: block;
}

.af-steps__footer {
  max-width: 780px;
  margin: 62px auto 0;
  font-size: 22px;
  line-height: 1.45;
  font-weight: 600;
  color: #000;
  letter-spacing: -0.02em;
}

@media (min-width: 900px) {
  .af-steps {
    padding: 92px 40px 92px;
  }

  .af-steps__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 70px;
    align-items: start;
  }

  .af-step img {
    max-width: 230px;
  }
}


/* ══════════════════════════════════════
   ALIGNFORM COMPARISON TABLE — CSS
   Paste into CSS File 1 or CSS File 2
══════════════════════════════════════ */

/* ── Section shell ── */
.afct-section {
  padding: 88px 20px 96px;
}

.afct-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 0;
}

/* ── Header ── */
.afct-header {
  text-align: center;
  margin-bottom: 52px;
}

.afct-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #18BFA3;
  margin-bottom: 14px;
}

.afct-heading {
    font-family: var(--font-sans);
    font-size: clamp(36px, 6.6vw, 54px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: #0F1F3D;
    margin: 0 0 16px;
}

.afct-subtext {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: #4B5563;
  max-width: 480px;
  margin: 0 auto;
}

/* ══════════════════
   TABLE STRUCTURE
══════════════════ */
.afct-table {
  width: 100%;
  border-radius: 0;
  overflow: hidden;
  border: none;
  border-top: 1.5px solid rgba(15,31,61,0.10);
  border-bottom: 1.5px solid rgba(15,31,61,0.10);
  box-shadow: none;
  background: #fff;
}

@media (min-width: 480px) {
  .afct-table {
    border-radius: 20px;
    border: 1.5px solid rgba(15,31,61,0.10);
    box-shadow: 0 4px 32px rgba(15,31,61,0.07);
  }
}

/* Every row */
.afct-row {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  border-bottom: 1px solid rgba(15,31,61,0.07);
}

.afct-row:last-child {
  border-bottom: none;
}

/* Every cell */
.afct-cell {
  padding: 18px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  box-sizing: border-box;
}

/* Feature cell — left-aligned */
.afct-cell--feature {
  justify-content: flex-start;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  padding-left: 20px;
  border-right: 1px solid rgba(15,31,61,0.07);
}

/* AlignForm column — highlighted with subtle teal tint */
.afct-cell--alignform {
  background: rgba(24,191,163,0.04);
  border-right: 1px solid rgba(24,191,163,0.14);
  flex-direction: column;
  gap: 4px;
}

/* Other column */
.afct-cell--other {
  background: transparent;
  flex-direction: column;
  gap: 4px;
}

/* ── HEAD ROW ── */
.afct-row--head {
  background: #0F1F3D;
  border-bottom: none;
}

.afct-row--head .afct-cell {
  min-height: 80px;
  border-bottom: none;
}

.afct-row--head .afct-cell--feature {
  border-right: 1px solid rgba(255,255,255,0.08);
  background: transparent;
}

.afct-row--head .afct-cell--alignform {
  background: rgba(24,191,163,0.14);
  border-right: 1px solid rgba(24,191,163,0.20);
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
}

.afct-row--head .afct-cell--other {
  background: transparent;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
}

.afct-col-badge {
  display: inline-flex;
  align-items: center;
  background: #18BFA3;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 999px;
  white-space: nowrap;
  line-height: 1.4;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.afct-col-brand {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
  text-align: center;
  line-height: 1.2;
}

.afct-col-brand--other {
  color: rgba(255,255,255,0.45);
  font-weight: 600;
}

.afct-col-price {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.70);
  letter-spacing: -0.01em;
}

.afct-col-price--other {
  color: rgba(255,255,255,0.30);
}

/* ── Feature text ── */
.afct-feature-text {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.afct-feature-sub {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  color: #9CA3AF;
  line-height: 1.4;
}

/* ── Icons ── */
.afct-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: block;
}

/* Subtle scale on yes cells for visual pop */
.afct-cell--yes .afct-icon {
  transition: transform 0.18s ease;
}

.afct-cell--yes:hover .afct-icon {
  transform: scale(1.12);
}

/* ── CTA row ── */
.afct-row--cta {
  background: rgba(24,191,163,0.04);
  border-top: 1.5px solid rgba(24,191,163,0.16);
  border-bottom: none;
}

.afct-row--cta .afct-cell--feature {
  border-right: 1px solid rgba(15,31,61,0.07);
}

.afct-row--cta .afct-cell--feature .afct-feature-text {
  font-size: 13px;
  color: #374151;
  font-weight: 600;
  line-height: 1.4;
}

.afct-row--cta .afct-cell--alignform {
  padding: 14px 10px;
}

.afct-row--cta .afct-cell--other {
  padding: 14px 10px;
}
.afct-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #18BFA3;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.01em;
  padding: 10px 8px;
  border-radius: 10px;
  text-decoration: none;
  white-space: normal;
  text-align: center;
  line-height: 1.3;
  box-shadow: 0 4px 14px rgba(24,191,163,0.32);
  transition: background 0.16s ease, transform 0.12s ease, box-shadow 0.16s ease;
  box-sizing: border-box;
}
.afct-cta-btn:hover {
  background: #15d4b5;
  transform: translateY(-2px);
  box-shadow: 0 7px 20px rgba(24,191,163,0.40);
}

.afct-cta-btn:active {
  transform: translateY(0);
}

.afct-no-label {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  color: #D1D5DB;
  letter-spacing: 0.01em;
}

/* ── Alternating row tint for scannability ── */
.afct-row:nth-child(even):not(.afct-row--head):not(.afct-row--cta) {
  background: rgba(249,250,251,0.60);
}

.afct-row:nth-child(even) .afct-cell--alignform {
  background: rgba(24,191,163,0.06);
}

/* ── Mobile ── */
@media (max-width: 480px) {
  .afct-section {
    padding: 72px 0 80px;
  }

  .afct-row {
    grid-template-columns: 1.3fr 0.85fr 0.85fr;
  }

  .afct-cell {
    padding: 14px 10px;
    min-height: 64px;
  }

  .afct-cell--feature {
    padding-left: 14px;
  }

  .afct-feature-text {
    font-size: 13px;
  }

  .afct-feature-sub {
    font-size: 11px;
  }

  .afct-icon {
    width: 28px;
    height: 28px;
  }

  .afct-col-brand {
    font-size: 12px;
  }

  .afct-col-price {
    font-size: 11px;
  }

  .afct-col-badge {
    font-size: 8px;
    padding: 2px 8px;
  }

  .afct-cta-btn {
    font-size: 11.5px;
    padding: 9px 12px;
    border-radius: 8px;
  }

  .afct-row--head .afct-cell {
    min-height: 70px;
  }
}

/* ── Desktop expansion ── */
@media (min-width: 768px) {
  .afct-section {
    padding: 104px 40px 112px;
  }

  .afct-wrap {
    max-width: 820px;
  }

  .afct-cell {
    padding: 22px 20px;
    min-height: 80px;
  }

  .afct-cell--feature {
    padding-left: 28px;
  }

  .afct-feature-text {
    font-size: 15px;
  }

  .afct-feature-sub {
    font-size: 13px;
  }

  .afct-icon {
    width: 36px;
    height: 36px;
  }

  .afct-col-brand {
    font-size: 15px;
  }

  .afct-cta-btn {
    font-size: 13.5px;
    padding: 12px 22px;
  }
}

.afct-section {
    padding: 81px 0 !important;
    margin: 0px 9px 0px;
}


/* ══════════════════════════════════════
   ALIGNFORM FEATURES SECTION — CSS
   Paste into CSS File 1 or CSS File 2
══════════════════════════════════════ */

/* ── Section shell ── */
.aff-section {
  background: #DCEEE2;
  padding: 80px 24px 88px;
}

.aff-inner {
  max-width: 1080px;
  margin: 0 auto;
}

/* ── Header ── */
.aff-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 60px;
}

.aff-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1a7a50;
  margin-bottom: 14px;
}

.aff-heading {
  font-family: var(--font-sans);
  font-size: clamp(32px, 6vw, 52px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: #0F1F3D;
  margin: 0 0 14px;
}

.aff-subtext {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: #374151;
  margin: 0;
}

/* ── Feature grid ── */
.aff-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

/* ── Individual feature item ── */
.aff-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 320px;
  margin: 0 auto;
  width: 100%;
}

/* ── Image wrapper ── */
.aff-img-wrap {
  width: 100%;
  max-width: 260px;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,0.55);
  margin-bottom: 22px;
  flex-shrink: 0;
  /* Subtle depth */
  box-shadow: 0 2px 16px rgba(15,31,61,0.07);
  transition: transform 0.24s cubic-bezier(0.22,1,0.36,1), box-shadow 0.24s;
}

.aff-img-wrap:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(15,31,61,0.11);
}

.aff-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ── Text body ── */
.aff-item__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.aff-item__title {
  font-family: var(--font-sans);
  font-size: clamp(18px, 4vw, 20px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: #0F1F3D;
  margin: 0;
}

.aff-item__text {
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 400;
  line-height: 1.65;
  color: #4B5563;
  margin: 0;
  max-width: 280px;
}

/* ── Divider between mobile items ── */
.aff-item + .aff-item {
  padding-top: 48px;
  border-top: 1px solid rgba(15,31,61,0.07);
}

/* ── Tablet: 2-column ── */
@media (min-width: 600px) {
  .aff-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 32px;
  }

  .aff-item + .aff-item {
    padding-top: 0;
    border-top: none;
  }

  .aff-item {
    max-width: none;
    margin: 0;
  }

  .aff-img-wrap {
    max-width: 100%;
  }
}

/* ── Desktop: 4-column ── */
@media (min-width: 900px) {
  .aff-section {
    padding: 96px 40px 108px;
  }

  .aff-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }

  .aff-header {
    margin-bottom: 68px;
    max-width: 620px;
  }

  .aff-img-wrap {
    border-radius: 18px;
  }

  .aff-item__title {
    font-size: 18px;
  }

  .aff-item__text {
    font-size: 14px;
    max-width: none;
  }
}

@media (min-width: 1200px) {
  .aff-grid {
    gap: 40px;
  }
}

/* FREE GIFTS — ESKIIN STYLE */

.gifts-row {
  margin: 12px 0 18px;
}

.gifts-row__heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.gifts-row__heading::before,
.gifts-row__heading::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #006B38;
}

.gifts-row__heading-text {
  font-size: 10px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: .08em;
  color: #006B38;
  text-transform: uppercase;
  white-space: nowrap;
}

.gifts-row__heading-text strong {
  font-weight: 900;
}

.gifts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding-top: 10px;
}

.gift-item {
  min-width: 0;
  text-align: center;
}

.gift-tile {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 1.5px dashed #18BFA3;
  border-radius: 9px;
  background: #F8FFFC;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gift-tile__value {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: #008C54;
  color: #fff;
  border-radius: 4px;
  padding: 2px 7px;
  font-size: 8.5px;
  line-height: 1;
  font-weight: 800;
  white-space: nowrap;
}

.gift-tile__value-free,
.gift-tile__value-orig {
  color: #fff;
}

.gift-tile__value-orig {
  opacity: .9;
  text-decoration: line-through;
}

.gift-tile__image {
  width: 94%;
  height: 94%;
  object-fit: contain;
  display: block;
}

.gift-title-outside {
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.11;
  font-weight: 600;
  color: #000;
  letter-spacing: -0.024em;
}

.gift-tile__title {
  position: absolute;
  top: calc(100% + 7px);
  left: 50%;
  transform: translateX(-50%);
  width: 1125%;
  text-align: center;
  font-size: 11px;
  line-height: 1.12;
  font-weight: 800;
  color: #000;
  letter-spacing: -0.025em;
}

/* lock image */
.gift-tile__lock-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.gift-lock-img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  opacity: .66;
  pointer-events: none;
}

/* hide lock on unlocked state if JS/classes require it */
.gift-tile--unlocked .gift-tile__lock-overlay {
  display: none;
}

.gift-tile--locked .gift-tile__lock-overlay {
  display: flex;
}

.gift-tile--locked .gift-tile__image {
  opacity: .35;
}

.gift-tile--locked {
  background: #F4F6F5;
}

/* locked message */
.gift-locked-msg {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  transform: translateX(-50%);
  z-index: 40;
  display: none;
  width: 150px;
  background: #0F1F3D;
  color: #fff;
  border-radius: 8px;
  padding: 8px 9px;
  font-size: 10px;
  line-height: 1.25;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 8px 24px rgba(15,31,61,.18);
}

.gift-locked-msg.is-visible {
  display: block;
}

@media (max-width: 480px) {
  .gifts-grid {
    gap: 5px;
  }

  .gift-lock-img {
    width: 38px;
    height: 38px;
  }

  .gift-title-outside,
  .gift-tile__title {
    font-size: 10.5px;
  }
}

.gift-lock-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  pointer-events: none;

  /*filter:
    drop-shadow(1px 1px #8d8d8d)
    drop-shadow(1px 1px #8d8d8d)
    drop-shadow( 1px 1px #8d8d8d)
    drop-shadow(1px 1px #8d8d8d);*/
}



/* Desktop gift titles */
#dGiftsRow .gift-tile {
  margin-bottom: 34px !important;
}

#dGiftsRow .gift-tile__title {
  display: block !important;
  position: absolute !important;
  top: calc(100% + 6px) !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 120% !important;
  text-align: center !important;

  font-size: 12px !important;
  line-height: 1.11 !important;
  font-weight: 600 !important;
  color: #000 !important;
  letter-spacing: -0.024em !important;
  z-index: 6 !important;
}

#dGiftsRow .gifts-grid {
  margin-bottom: 36px !important;
}

/* ══════════════════════════════════════
   ALIGNFORM QUICK-BUY DRAWER — CSS
   Replace your existing drawer CSS block.
   Uses "dr-" prefix for new classes to avoid
   conflicts. Existing IDs preserved.
══════════════════════════════════════ */

/* ── Overlay ── */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 23, 40, 0.50);
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.26s ease, visibility 0.26s;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}

.drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

/* ── Drawer shell ── */
.drawer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  top: auto;
  width: 100%;
  max-width: 100vw;
  z-index: 10001;
  background: #ffffff;
  border-radius: 21px 21px 0 0;
  transform: translateY(100%);
  transition: transform 0.30s cubic-bezier(0.22, 1, 0.36, 1);
  max-height: calc(100vh - 57px);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding-bottom: env(safe-area-inset-bottom, 12px);
  box-shadow: 0 -6px 39px rgba(11, 23, 40, 0.14);
  will-change: transform;
  visibility: hidden;
  pointer-events: none;
  box-sizing: border-box;
  font-family: 'Poppins', var(--font-sans), sans-serif;
}

.drawer * { box-sizing: border-box; max-width: 100%; }

.drawer.open {
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}

.drawer.drawer--dragging {
  transition: none !important;
}

/* ── Drag handle ── */
.drawer__handle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 0 6px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.drawer__handle-bar {
  width: 36px;
  height: 3px;
  border-radius: 3px;
  background: rgba(11, 23, 40, 0.14);
  transition: background 0.15s, width 0.15s;
  pointer-events: none;
}

.drawer__handle:active .drawer__handle-bar {
  background: rgba(11, 23, 40, 0.28);
  width: 48px;
}

/* ── Header ── */
.drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3px 18px 15px;
  border-bottom: 1.5px solid rgba(11, 23, 40, 0.07);
}

.drawer__title {
  font-size: 18px;
  font-weight: 600;
  color: #101828;
  letter-spacing: -0.03em;
  line-height: 1.11;
}

.drawer__close {
  width: 33px;
  height: 33px;
  border-radius: 50%;
  border: none;
  background: #F3F4F6;
  color: #6B7280;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.14s, color 0.14s;
  -webkit-tap-highlight-color: transparent;
}

.drawer__close:hover { background: #E5E7EB; color: #374151; }
.drawer__close:active { background: #D1D5DB; }

/* ── Body ── */
.drawer__body {
  padding: 15px 15px 21px;
}

/* ── Stars row ── */
.dr-stars-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.dr-stars {
  color: #FBAA19;
  font-size: 15px;
  letter-spacing: 1.5px;
  line-height: 1;
}

.dr-stars-text {
  font-size: 12px;
  font-weight: 600;
  color: #374151;
  line-height: 1;
}

/* ── Size heading — lines either side ── */
.dr-size-heading {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 3px 0 12px;
}

.dr-size-heading::before,
.dr-size-heading::after {
  content: '';
  flex: 1;
  height: 1.5px;
  background: rgba(11, 23, 40, 0.10);
}

.dr-size-heading__text {
  font-size: 12px;
  font-weight: 800;
  color: #6B7280;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── Size pills — 4 equal columns ── */
.drawer__size-pills {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
  margin-bottom: 6px;
}

.drawer__size-pill {
  height: 45px;
  border-radius: 9px;
  border: 1.5px solid #E1E5EA;
  background: #ffffff;
  color: #536071;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s, box-shadow 0.15s;
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
}

.drawer__size-pill:hover {
  border-color: #18BFA3;
  background: #F0FFFA;
  color: #0F8C6A;
}

.drawer__size-pill.selected {
  border-color: #18BFA3;
  background: #F0FFFA;
  color: #0F8C6A;
  font-weight: 700;
  box-shadow: 0 0 0 1.5px #18BFA3;
}

/* Size error */
.drawer__error {
  display: none;
  font-size: 12px;
  font-weight: 700;
  color: #D92D20;
  margin: 3px 0 6px;
  padding: 9px 12px;
  background: rgba(217, 45, 32, 0.06);
  border: 1.5px solid rgba(217, 45, 32, 0.18);
  border-radius: 9px;
}

.drawer__error.show { display: block; }

/* Size guide link */
.drawer__size-guide-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 0 15px;
  padding: 3px 0;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  color: #9CA3AF;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: color 0.14s;
}

.drawer__size-guide-link:hover { color: #18BFA3; }

/* ── Purchase option cards ── */
.drawer__po-cards {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 15px;
}

.dr-po-card {
  border: 1.5px solid #E1E5EA;
  border-radius: 12px;
  background: #ffffff;
  padding: 12px 15px 12px;
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s, box-shadow 0.18s;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  overflow: hidden;
}

.dr-po-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: transparent;
  border-radius: 3px 3px 0 0;
  transition: background 0.18s;
}

.dr-po-card.po-selected {
  border-color: #008C54;
  background: #EDF9F3;
  box-shadow: 0 3px 21px rgba(0, 107, 56, 0.10);
}

.dr-po-card.po-selected::after {
  background: linear-gradient(90deg, #008C54, #18BFA3);
}
#drPoOnetime.dr-po-card.po-selected::after {
  background: none;
}
/* Card header row */
.dr-po-card__header {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-bottom: 0;
}

/* Radio dot */
.dr-po-radio {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 3px solid #D0D5DD;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3px;
  transition: border-color 0.15s;
}

.dr-po-card.po-selected .dr-po-radio {
  border-color: #008C54;
}

.dr-po-radio__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: transparent;
  transform: scale(0.3);
  transition: background 0.15s, transform 0.15s, opacity 0.15s;
  opacity: 0;
}

.dr-po-card.po-selected .dr-po-radio__dot {
  background: #008C54;
  transform: scale(1);
  opacity: 1;
}

/* Title column */
.dr-po-card__title-col {
  flex: 1;
  min-width: 0;
}

.dr-po-card__title {
  font-size: 18px;
  font-weight: 600;
  color: #101828;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.dr-po-card__popular {
  display: block;
  margin-top: 3px;
  font-size: 12px;
  font-weight: 900;
  color: #006B38;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1;
}

/* Price column */
.dr-po-card__price-col {
  text-align: right;
  flex-shrink: 0;
}

.dr-po-card__price {
  font-size: 18px;
  font-weight: 600;
  color: #101828;
  letter-spacing: -0.03em;
  line-height: 1.11;
}

.dr-po-card__was {
  font-size: 12px;
  font-weight: 500;
  color: #9CA3AF;
  text-decoration: line-through;
  line-height: 1.3;
  margin-top: 3px;
}

/* Sale strip */
.dr-po-card__strip {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 9px 0 9px;
  padding: 9px 9px;
  background: rgba(24, 191, 163, 0.10);
  border: 1.5px solid rgba(24, 191, 163, 0.30);
  border-radius: 6px;
  font-size: 9px;
  font-weight: 900;
  color: #007A56;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 0;
  transition: max-height 0.22s ease, opacity 0.18s ease, margin 0.18s, padding 0.18s;
}

.dr-po-card.po-selected .dr-po-card__strip {
  max-height: 45px;
  opacity: 1;
  padding: 9px 9px;
  margin: 9px 0 9px;
}

/* Includes line */
.dr-po-card__includes {
  font-size: 12px;
  font-weight: 500;
  color: #536071;
  line-height: 1.45;
  margin-top: 9px;
}

.dr-po-card__includes strong { color: #101828; }

/* Micro copy */
.dr-po-card__micro {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  font-style: italic;
  color: #18BFA3;
  text-align: center;
  line-height: 1;
}

/* ── Free gifts ── */
.dr-gifts-section {
  margin: 3px 0 21px;
}

.dr-gifts-heading {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
}

.dr-gifts-heading::before,
.dr-gifts-heading::after {
  content: '';
  flex: 1;
  height: 1.5px;
  background: rgba(11, 23, 40, 0.08);
}

.dr-gifts-heading__text {
  font-size: 9px;
  font-weight: 700;
  color: #6B7280;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.03em;
}

.dr-gifts-heading__text strong {
  color: #18BFA3;
}

/* 4-column gift grid */
.dr-gifts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

/* Each gift item: tile + label below */
.dr-gift-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

/* Gift tile */
.dr-gift-tile {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 1.5px dashed #18BFA3;
  border-radius: 9px;
  background: #F8FFFC;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.dr-gift-tile--locked {
  border-color: #E1E5EA;
  background: #F9FAFB;
}

/* Badge top-left */
.dr-gift-tile__badge {
  position: absolute;
  top: -1.5px;
  left: 50%;
  transform: translateX(-50%);
  background: #18BFA3;
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 3px 6px;
  border-radius: 0 0 6px 6px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 3px;
  z-index: 2;
  line-height: 1.3;
}

.dr-gift-tile--locked .dr-gift-tile__badge {
  background: #9CA3AF;
}

.dr-gift-tile__orig {
  font-weight: 500;
  text-decoration: line-through;
  opacity: 0.75;
}

/* Gift image */
.dr-gift-tile__img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  display: block;
  margin-top: 9px; /* offset badge */
}

/* Lock overlay */
.dr-gift-tile__lock {
  position: absolute;
  inset: 0;
  background: rgba(249, 250, 251, 0.88);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.14s;
}

.dr-gift-tile__lock:active { background: rgba(235, 238, 240, 0.92); }

.dr-gift-lock-img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  pointer-events: none;
}

/* When unlocked (VIP selected) — hide lock overlay */
.dr-gift-tile--unlocked .dr-gift-tile__lock {
  display: none;
}

/* Gift label below tile */
.dr-gift-item__label {
  font-size: 9px;
  font-weight: 800;
  color: #101828;
  letter-spacing: -0.03em;
  text-align: center;
  line-height: 1.2;
  margin: 0;
}

/* ── Add to Cart button ── */
.dr-atc-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  height: 57px !important;
  border-radius: 12px !important;
  background: #008C54 !important;
  color: #fff !important;
  border: none !important;
  font-family: inherit !important;
  font-size: 15px !important;
  font-weight: 900 !important;
  letter-spacing: -0.03em !important;
  cursor: pointer !important;
  box-shadow: 0 6px 21px rgba(0, 107, 56, 0.28) !important;
  transition: background 0.16s ease, transform 0.12s ease, box-shadow 0.16s ease !important;
  margin: 0 0 12px !important;
  -webkit-tap-highlight-color: transparent !important;
}

.dr-atc-btn:hover {
  background: #009D5E !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 9px 27px rgba(0, 107, 56, 0.34) !important;
}

.dr-atc-btn:active {
  transform: translateY(0) !important;
}

.dr-atc-btn:disabled {
  opacity: 0.65 !important;
  cursor: not-allowed !important;
  transform: none !important;
  box-shadow: none !important;
}

/* ── Trust row ── */
.dr-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  padding-top: 3px;
}

.dr-trust-item {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 12px;
  font-weight: 600;
  color: #9CA3AF;
  white-space: nowrap;
}

/* ── Body scroll lock ── */
body.drawer-open {
  overflow: hidden !important;
  touch-action: none;
}

/* ── Hide on desktop (639px+) ── */
@media (min-width: 639px) {
  /*.drawer,
  .drawer-overlay {
    display: none !important;
    visibility: hidden !important;
  }*/
}
/* ── Drawer gift locked state ── */
.dr-gift-tile--locked {
  border-color: #E1E5EA;
  background: #F9FAFB;
  opacity: 0.65;
}

.dr-gift-tile--locked .dr-gift-tile__lock {
  display: flex !important;
}

.dr-gift-tile--locked .dr-gift-tile__badge {
  background: #9CA3AF;
}

.dr-gift-tile--locked .dr-gift-tile__img {
  opacity: 0.40;
}

/* ── Drawer unselected purchase card ── */
.dr-po-card:not(.po-selected) .dr-po-card__popular {
  color: #6B7280;
}
.dr-po-card:not(.po-selected) .dr-po-card__title {
  color: #6B7280;
}

.dr-po-card:not(.po-selected) .dr-po-card__includes {
  color: #6B7280;
}
.dr-po-card:not(.po-selected) .dr-po-card__includes strong {
  color: #6B7280;
}
.dr-po-card:not(.po-selected) .dr-po-card__micro {
  color: #6B7280;
}

.dr-po-card:not(.po-selected) .dr-po-card__price {
  color: #9CA3AF;
}

#drPoOnetime.po-selected {
  background: #fff;
  border: 1.5px solid #111;
  box-shadow: none;
  opacity: 1;
}

.dr-po-card__strip {display:none;}

/* ══════════════════════════════════════
   DRAWER COMPACT OVERRIDES
   Paste at bottom of drawer CSS file.
   All values divisible by 3 (or 1.5px).
══════════════════════════════════════ */

.drawer__handle        { padding: 9px 0 3px; }
.drawer__header        { padding: 3px 18px 9px; }
.drawer__title         { font-size: 15px; }
.drawer__close         { width: 30px; height: 30px; }
.drawer__body          { padding: 9px 15px 15px; }

.dr-stars-row          { margin-bottom: 9px; gap: 6px; }
.dr-stars              { font-size: 12px; }
.dr-stars-text         { font-size: 12px; }

.dr-size-heading       { margin: 0 0 9px; }
.drawer__size-pills    { gap: 6px; margin-bottom: 0; }
.drawer__size-pill     { height: 39px; font-size: 12px; border-radius: 9px; }
.drawer__size-guide-link { margin: 3px 0 9px; font-size: 12px; padding: 0; }
.drawer__error         { padding: 6px 9px; margin: 3px 0 3px; font-size: 12px; }

.drawer__po-cards      { gap: 6px; margin-bottom: 9px; }

/* Both cards tighter */
.dr-po-card            { padding: 9px 12px; border-radius: 9px; }
.dr-po-card__header    { gap: 9px; }
.dr-po-card__title     { font-size: 15px; line-height: 1.2; }
.dr-po-card__popular   { font-size: 9px; margin-top: 3px; }
.dr-po-card__price     { font-size: 15px; }
.dr-po-card__was       { font-size: 9px; margin-top: 3px; }
.dr-po-card__includes  { font-size: 12px; margin-top: 6px; line-height: 1.35; }
.dr-po-card__micro     { font-size: 12px; margin-top: 3px; }

/* Unselected card — slightly collapsed */
.dr-po-card:not(.po-selected) { padding: 9px 12px 6px; }

/* Gifts section */
.dr-gifts-section      { margin: 3px 0 12px; }
.dr-gifts-heading      { margin-bottom: 9px; }
.dr-gifts-heading__text { font-size: 9px; }
.dr-gifts-grid         { gap: 6px; }
.dr-gift-item          { gap: 3px; }
.dr-gift-tile          { border-radius: 9px; }
.dr-gift-tile__img     { width: 69%; height: 69%; margin-top: 12px; }
.dr-gift-tile__badge   { font-size: 6px; padding: 3px 6px; }
.dr-gift-item__label   { font-size: 9px; line-height: 1.2; }
.dr-gift-lock-img      { width: 24px; height: 24px; }

/* CTA + trust */
.dr-atc-btn            { height: 51px !important; font-size: 15px !important; border-radius: 12px !important; margin: 0 0 9px !important; }
.dr-trust-row          { gap: 12px; padding-top: 0; }
.dr-trust-item         { font-size: 9px; gap: 3px; }





.af-rc-benefits-link {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  margin-top: 6px;
  display: inline-flex;
  align-self: flex-start;
  gap: 6px;
  color: #006B38;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  -webkit-tap-highlight-color: transparent;
}

.af-rc-benefits-link:hover {
  color: #005132;
}

.af-rc-benefits-link:focus-visible {
  outline: 2px solid rgba(0, 107, 56, 0.22);
  outline-offset: 3px;
  border-radius: 6px;
}

.af-rc-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  background: rgba(11, 24, 48, 0);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-backdrop-filter: blur(0);
  backdrop-filter: blur(0);
  transition:
    opacity 0.22s ease,
    background 0.22s ease,
    -webkit-backdrop-filter 0.22s ease,
    backdrop-filter 0.22s ease,
    visibility 0s linear 0.22s;
}

.af-rc-modal-overlay.open,
.af-rc-modal-overlay.closing {
  visibility: visible;
  transition:
    opacity 0.22s ease,
    background 0.22s ease,
    -webkit-backdrop-filter 0.22s ease,
    backdrop-filter 0.22s ease;
}

.af-rc-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
  background: rgba(11, 24, 48, 0.56);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.af-rc-modal-overlay.closing {
  opacity: 0;
  pointer-events: none;
  background: rgba(11, 24, 48, 0);
  -webkit-backdrop-filter: blur(0);
  backdrop-filter: blur(0);
}

.af-rc-modal {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(100%, 560px);
  max-width: 560px;
  max-height: 94dvh;
  background: #ffffff;
  border: 1px solid rgba(18, 34, 65, 0.10);
  border-bottom: none;
  box-shadow: 0 -8px 40px rgba(11, 24, 48, 0.22);
  transform: translate3d(0, 100%, 0);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.af-rc-modal-overlay.open .af-rc-modal {
  transform: translate3d(0, 0, 0);
}

.af-rc-modal-overlay.closing .af-rc-modal {
  transform: translate3d(0, 100%, 0);
}

.af-rc-modal__handle {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  padding: 12px 0 4px;
  cursor: grab;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
}

.af-rc-modal__handle:active {
  cursor: grabbing;
}

.af-rc-modal__handle-bar {
  width: 36px;
  height: 4px;
  border-radius: 999px;
  background: rgba(18, 34, 65, 0.14);
}

.af-rc-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: #F3F4F6;
  color: #667085;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.14s ease, color 0.14s ease, transform 0.14s ease;
}

.af-rc-modal__close:hover {
  background: #E5E7EB;
  color: #374151;
}

.af-rc-modal__close:focus-visible {
  outline: 2px solid rgba(0, 107, 56, 0.25);
  outline-offset: 2px;
}

.af-rc-modal__scroll {
  flex: 1 1 auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  scrollbar-width: none;
  touch-action: pan-y;
  padding: 8px 22px 36px;
  padding-bottom: calc(28px + env(safe-area-inset-bottom, 0px));
}

.af-rc-modal__scroll::-webkit-scrollbar {
  display: none;
}

.af-rc-modal__header {
  padding-top: 6px;
  margin-bottom: 18px;
}

.af-rc-modal__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #EAF8F2;
  border: 1px solid #BFE7D5;
  color: #006B38;
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 12px;
}

.af-rc-modal__title {
  margin: 0 0 9px;
  color: #101828;
  font-size: 27px;
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.af-rc-modal__subtitle {
  margin: 0;
  color: #667085;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 420;
}

.af-rc-modal__price-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 22px;
}

.af-rc-modal__price-card {
  padding: 14px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.af-rc-modal__price-card--today {
  background: linear-gradient(145deg, #EAF8F2, #F0FFF8);
  border: 1px solid #BFE7D5;
}

.af-rc-modal__price-card--monthly {
  background: #F8FAFC;
  border: 1px solid rgba(18, 34, 65, 0.09);
}

.af-rc-modal__price-card__label {
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1;
}

.af-rc-modal__price-card--today .af-rc-modal__price-card__label {
  color: #006B38;
}

.af-rc-modal__price-card--monthly .af-rc-modal__price-card__label {
  color: #98A2B3;
}

.af-rc-modal__price-card__amount {
  font-size: 27px;
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 1.05;
  color: #101828;
}

.af-rc-modal__price-card__note {
  font-size: 12px;
  color: #98A2B3;
  font-weight: 600;
  line-height: 1;
  margin-top: 2px;
}

.af-rc-modal__section-label {
  font-size: 10.5px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #98A2B3;
  margin-bottom: 12px;
}

.af-rc-modal__benefit-list {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.af-rc-modal__benefit {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(18, 34, 65, 0.06);
}

.af-rc-modal__benefit:first-child {
  padding-top: 0;
}

.af-rc-modal__benefit:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.af-rc-modal__benefit-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: #008C54;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.af-rc-modal__benefit-icon svg {
  width: 15px;
  height: 15px;
}

.af-rc-modal__benefit-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.af-rc-modal__benefit-body strong {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: #101828;
  letter-spacing: -0.024em;
  line-height: 1.2;
}

.af-rc-modal__benefit-body span {
  display: block;
  font-size: 12px;
  color: #667085;
  font-weight: 420;
  line-height: 1.5;
}

.af-rc-modal__reassurance {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px 14px;
  border-radius: 14px;
  background: #EAF8F2;
  border: 1px solid #BFE7D5;
  color: #1a4a2e;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

.af-rc-modal__reassurance svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

@media (min-width: 600px) {
  .af-rc-modal-overlay {
    align-items: center;
    padding: 24px;
  }

  .af-rc-modal {
    border-radius: 22px;
    border-bottom: 1px solid rgba(18, 34, 65, 0.10);
    max-height: 88dvh;
    max-height: 88vh;
    transform: translate3d(0, 18px, 0) scale(0.98);
  }

  .af-rc-modal-overlay.open .af-rc-modal {
    transform: translate3d(0, 0, 0) scale(1);
  }

  .af-rc-modal-overlay.closing .af-rc-modal {
    transform: translate3d(0, 18px, 0) scale(0.98);
  }

  .af-rc-modal__handle {
    display: none;
  }
}

@media (max-width: 599px) {
  .af-rc-modal {
    width: 100%;
    max-width: 100%;
    border-radius: 20px 20px 0 0;
    max-height: 94dvh;
    max-height: 94vh;
  }

  .af-rc-modal__title {
    font-size: 21px;
  }

  .af-rc-modal__price-card__amount {
    font-size: 24px;
  }

  .af-rc-modal__price-row {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .af-rc-modal__scroll {
    padding: 9px 21px 33px;
    padding-bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  }
}

/* ══════════════════════════════════════
   RC MODAL — Bottom sheet on mobile, centered on desktop
══════════════════════════════════════ */

/* Overlay */
.af-rc-modal-overlay {
  position: fixed; inset: 0; z-index: 999999;
  display: flex; align-items: flex-end; justify-content: center;
  background: rgba(11,24,48,0);
  pointer-events: none;
  -webkit-backdrop-filter: blur(0px);
  backdrop-filter: blur(0px);
}
.af-rc-modal-overlay.open {
  pointer-events: auto;
}

/* Sheet */
.af-rc-modal {
  position: relative;
  width: 100%;
  max-width: 560px;
  border-radius: 22px 22px 0 0;
  background: #ffffff;
  border: 1px solid rgba(18,34,65,.10);
  border-bottom: none;
  box-shadow: 0 -6px 48px rgba(11,24,48,.18);
  transform: translate3d(0,100%,0);
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: flex; flex-direction: column;
  max-height: 92dvh; max-height: 92vh;
  overflow: hidden;
}
.af-rc-modal::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #006B38, #12A37F);
  border-radius: 22px 22px 0 0; z-index: 1; pointer-events: none;
}

/* Drag handle */
.af-rc-modal__handle {
  flex-shrink: 0; display: flex; justify-content: center; padding: 12px 0 4px;
}
.af-rc-modal__handle-bar {
  width: 36px; height: 4px; border-radius: 2px; background: rgba(18,34,65,.14);
}

/* Close button */
.af-rc-modal__close {
  position: absolute; top: 14px; right: 14px;
  width: 34px; height: 34px; border-radius: 50%; border: none;
  background: #F3F4F6; color: #667085; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 2; transition: background .14s, color .14s;
  -webkit-tap-highlight-color: transparent;
}
.af-rc-modal__close:hover { background: #E5E7EB; color: #374151; }

/* Scrollable content */
.af-rc-modal__scroll {
  flex: 1 1 auto; overflow-y: auto;
  -webkit-overflow-scrolling: touch; overscroll-behavior: contain;
  padding: 8px 22px 36px;
  padding-bottom: calc(28px + env(safe-area-inset-bottom, 0px));
  scrollbar-width: none; touch-action: pan-y;
}
.af-rc-modal__scroll::-webkit-scrollbar { display: none; }
@media (max-width: 768px) {
  .af-rc-modal {
    max-height: 82dvh !important;
    max-height: 82vh !important;
  }
}
/* Header */
.af-rc-modal__header { margin-bottom: 20px; padding-right: 44px; padding-top: 4px; }
.af-rc-modal__badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 10px; border-radius: 999px;
  background: #EAF8F2; border: 1px solid #BFE7D5; color: #006B38;
  font-size: 10.5px; font-weight: 900; letter-spacing: 0.05em;
  text-transform: uppercase; line-height: 1; margin-bottom: 12px;
}
.af-rc-modal__title { margin: 0 0 9px; color: #101828; font-size: 27px; line-height: 1.05; font-weight: 600; letter-spacing: -0.03em; }
.af-rc-modal__subtitle { margin: 0; color: #667085; font-size: 15px; line-height: 1.5; font-weight: 420; }

/* Price row */
.af-rc-modal__price-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 22px; }
.af-rc-modal__price-card { padding: 14px; border-radius: 16px; display: flex; flex-direction: column; gap: 4px; }
.af-rc-modal__price-card--today { background: linear-gradient(145deg,#EAF8F2,#F0FFF8); border: 1px solid #BFE7D5; }
.af-rc-modal__price-card--monthly { background: #F8FAFC; border: 1px solid rgba(18,34,65,.10); }
.af-rc-modal__price-card__label { font-size: 9px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; line-height: 1; }
.af-rc-modal__price-card--today   .af-rc-modal__price-card__label { color: #006B38; }
.af-rc-modal__price-card--monthly .af-rc-modal__price-card__label { color: #98A2B3; }
.af-rc-modal__price-card__amount { font-size: 27px; font-weight: 600; letter-spacing: -0.06em; line-height: 1.05; color: #101828; }
.af-rc-modal__price-card__note { font-size: 11px; color: #98A2B3; font-weight: 600; line-height: 1; margin-top: 2px; }

/* Section label */
.af-rc-modal__section-label { font-size: 10.5px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.08em; color: #98A2B3; margin-bottom: 12px; }

/* Benefit list */
.af-rc-modal__benefit-list { list-style: none; margin: 0 0 18px; padding: 0; display: flex; flex-direction: column; gap: 0; }
.af-rc-modal__benefit { display: flex; align-items: flex-start; gap: 12px; padding: 13px 0; border-bottom: 1px solid rgba(18,34,65,.06); }
.af-rc-modal__benefit:last-child { border-bottom: none; padding-bottom: 0; }
.af-rc-modal__benefit:first-child { padding-top: 0; }
.af-rc-modal__benefit-icon {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 6px;
  background: #008C54; display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.af-rc-modal__benefit-icon svg { width: 14px; height: 14px; }
.af-rc-modal__benefit-body { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.af-rc-modal__benefit-body strong { display: block; font-size: 13.5px; font-weight: 600; color: #101828; letter-spacing: -0.024em; line-height: 1.2; }
.af-rc-modal__benefit-body span { display: block; font-size: 12px; color: #667085; font-weight: 420; line-height: 1.5; }

/* Reassurance footer */
.af-rc-modal__reassurance {
  display: flex; align-items: center; gap: 9px;
  padding: 13px 14px; border-radius: 15px;
  background: #EAF8F2; border: 1px solid #BFE7D5;
  color: #1a4a2e; font-size: 12px; font-weight: 600; line-height: 1.5;
}
.af-rc-modal__reassurance svg { flex-shrink: 0; width: 15px; height: 15px; }

/* Desktop — centered dialog */
@media screen and (min-width: 600px) {
  .af-rc-modal-overlay { align-items: center; padding: 24px; }
  .af-rc-modal { border-radius: 21px; border-bottom: 1px solid rgba(18,34,65,.10); max-height: 87dvh; max-height: 87vh; }
  .af-rc-modal::before { border-radius: 21px 21px 0 0; }
  .af-rc-modal__handle { display: none; }
}

/* Mobile narrow */
@media screen and (max-width: 599.1px) {
  .af-rc-modal { border-radius: 21px 21px 0 0; max-height: 93dvh; max-height: 93vh; }
  .af-rc-modal__title { font-size: 21px; }
  .af-rc-modal__price-card__amount { font-size: 24px; }
  .af-rc-modal__price-row { grid-template-columns: 1fr; gap: 9px; }
  .af-rc-modal__scroll { padding: 9px 21px 33px; padding-bottom: calc(24px + env(safe-area-inset-bottom, 0px)); }
}

.af-rc-modal__handle {
  cursor: grab;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
}

.af-rc-modal__handle:active {
  cursor: grabbing;
}
.af-rc-modal-overlay:not(.open) {
  pointer-events: none !important;
  visibility: hidden;
}

.af-rc-modal-overlay:not(.open) .af-rc-modal {
  transform: translate3d(0, 120%, 0) !important;
}


.po-card__billing,
.dr-po-card__billing {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #006B38;
  line-height: 1.35;
  margin-top: 6px;
}
.po-card__billing strong,
.dr-po-card__billing strong {
  font-weight: 700;
}

</script>