/* ============================================================
   Wankercare.css — shared styles for all pages
   wankercare.com
   ============================================================ */

   /* ============================================================
       GENDER ICONS  — used in filter cards and product badges
       ============================================================ */
    .gender-icon {
      font-size: 1.3rem;
      font-weight: 700;
      line-height: 1;
      flex-shrink: 0;
    }
    .gender-him      { color: #378ADD; }   /* blue  — For Him   ♂ */
    .gender-her      { color: #D4537E; }   /* rose  — For Her   ♀ */
    .gender-everyone { color: #7F77DD; }   /* purple— For Everyone ⚥ */

    /* small badge version shown on product cards */
    .gender-badge {
      display: inline-flex;
      align-items: center;
      gap: 3px;
      font-size: .72rem;
      font-weight: 600;
      border-radius: 999px;
      padding: 2px 8px;
      margin-left: .4rem;
      vertical-align: middle;
    }
    .gender-badge.him      { background: #E6F1FB; color: #185FA5; }
    .gender-badge.her      { background: #FBEAF0; color: #72243E; }
    .gender-badge.everyone { background: #EEEDFE; color: #3C3489; }

    /* ============================================================
       FILTER MODAL  (Layer 1 — new)
       ============================================================ */
    .filter-overlay {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 7500;
      background: rgba(0,0,0,.55);
      backdrop-filter: blur(3px);
      -webkit-backdrop-filter: blur(3px);
      align-items: center;
      justify-content: center;
      padding: 1rem;
    }
    .filter-overlay.active { display: flex; }

    .filter-modal {
      border-radius: 20px;
      max-width: 520px;
      width: 100%;
      max-height: 88vh;
      overflow-y: auto;
      position: relative;
      background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(90deg, var(--brand), var(--accent)) border-box;
      border: 4.5px solid transparent;
      box-shadow: 0 24px 60px rgba(0,0,0,.18);
    }
    .filter-modal-header {
      padding: 1.4rem 1.5rem 1rem;
      border-bottom: 1px solid #f0e8f0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      position: sticky;
      top: 0;
      background: #fff;
      border-radius: 20px 20px 0 0;
      z-index: 1;
    }
    .filter-modal-title {
      font-family: 'Fraunces', Georgia, serif;
      font-size: 1.25rem;
      font-weight: 700;
      color: #4a1a4a;
      margin: 0;
    }
    .filter-modal-close {
      width: 30px; height: 30px;
      border-radius: 50%; border: none;
      background: #f0e8f0; cursor: pointer;
      flex-shrink: 0; position: relative;
      display: flex; align-items: center; justify-content: center;
    }
    .filter-modal-close::before,
    .filter-modal-close::after {
      content: ''; position: absolute;
      width: 14px; height: 2px;
      background: #4a1a4a; border-radius: 2px;
    }
    .filter-modal-close::before { transform: rotate(45deg); }
    .filter-modal-close::after  { transform: rotate(-45deg); }

    .filter-modal-body {
      padding: 1.25rem 1.5rem 1.75rem;
    }
    .filter-modal-intro {
      font-size: .95rem;
      color: #555;
      line-height: 1.65;
      margin-bottom: 1.25rem;
    }

    /* Filter option card — styled like edu-card so customers know to click */
    .filter-card {
      background: none;
      border: 2px solid var(--accent);
      border-radius: 12px;
      padding: 1.1rem 1.25rem;
      margin-bottom: .75rem;
      cursor: pointer;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 1rem;
      transition: border-color .15s, box-shadow .15s, transform .15s;
      text-align: left;
      width: 100%;
    }
    .filter-card:hover {
      border-color: #D85A30;
      box-shadow: 0 4px 20px rgba(216,90,48,.12);
      transform: translateY(-2px);
    }
    .filter-card:last-child { margin-bottom: 0; }

    .filter-card-left { flex: 1; }
    .filter-card-name {
      font-family: 'Fraunces', Georgia, serif;
      font-size: 1.05rem;
      font-weight: 700;
      color: #2d0d2d;
      margin: 0 0 .4rem;
    }
    .filter-card-desc {
      font-size: .92rem;
      color: #444;
      line-height: 1.65;
      margin: 0;
    }
    .filter-card-right {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2px;
      flex-shrink: 0;
      padding-top: .1rem;
    }

    /* ============================================================
       PRODUCT LIST MODAL  (Layer 2)
       ============================================================ */
    .prod-overlay {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 8000;
      background: rgba(0,0,0,.45);
      backdrop-filter: blur(2px);
      -webkit-backdrop-filter: blur(2px);
      align-items: center;
      justify-content: center;
      padding: 1rem;
    }
    .prod-overlay.active { display: flex; }

    .prod-modal {
      background: #fff;
      border-radius: 16px;
      max-width: 560px;
      width: 100%;
      max-height: 88vh;
      overflow-y: auto;
      position: relative;
      box-shadow: 0 24px 64px rgba(0,0,0,.22);
    }
    .prod-modal-header {
      padding: 1.4rem 1.5rem 1rem;
      border-bottom: 1px solid #f0e8f0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      position: sticky;
      top: 0;
      background: #fff;
      border-radius: 16px 16px 0 0;
      z-index: 1;
    }
    .prod-modal-title {
      font-family: 'Fraunces', Georgia, serif;
      font-size: 1.1rem;
      font-weight: 700;
      color: #4a1a4a;
      margin: 0;
      line-height: 1.2;
    }
    .prod-modal-emoji { font-size: 1.4rem; line-height: 1; }
    .prod-modal-close {
      width: 30px; height: 30px;
      border-radius: 50%; border: none;
      background: #f0e8f0; cursor: pointer;
      flex-shrink: 0; position: relative;
      display: flex; align-items: center; justify-content: center;
    }
    .prod-modal-close::before,
    .prod-modal-close::after {
      content: ''; position: absolute;
      width: 14px; height: 2px;
      background: #4a1a4a; border-radius: 2px;
    }
    .prod-modal-close::before { transform: rotate(45deg); }
    .prod-modal-close::after  { transform: rotate(-45deg); }

    .prod-modal-body { padding: 1.25rem 1.5rem 1.5rem; }
    .prod-back-link {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #D85A30;
  cursor: pointer;
  margin-bottom: .9rem;
  text-decoration: none;
  transition: color .15s;
  background: none;
  border: none;
  padding: 0;
}
    .prod-back-link-bottom {
      display: block;
      margin-top: 1rem;
      /* opacity: 0.75;        quieter so it doesn't fight the buy buttons */
    }
    .prod-back-link:hover { color: #D85A30; }

    .prod-item {
      display: flex; gap: 1rem; align-items: flex-start;
      padding: .9rem; margin-bottom: .75rem;
      border: 2px solid var(--accent); border-radius: 12px;
    }
    .prod-item:last-child { margin-bottom: 0; }
    .prod-item-icon { font-size: 2rem; line-height: 1; flex-shrink: 0; width: 44px; text-align: center; }
    .prod-item-info { flex: 1; }
    .prod-item-name  { font-weight: 600; font-size: .95rem; color: #2d0d2d; margin: 0 0 .15rem; }
    .prod-item-price { font-family: 'Fraunces', serif; font-size: .95rem; color: #D85A30; font-weight: 700; margin: 0 0 .25rem; }
    .prod-item-desc  { font-size: .88rem; color: #555; line-height: 1.6; margin: 0 0 .6rem; }
    .prod-section-label {
      font-size: .7rem; font-weight: 600; letter-spacing: .1em;
      text-transform: uppercase; color: #aaa; margin: 0 0 .75rem;
    }
    .view-product-btn {
      display: inline-block;
      font-size: .78rem; font-weight: 600;
      color: #D85A30; text-decoration: none;
      letter-spacing: .04em; text-transform: uppercase;
      border-bottom: 1px solid rgba(216,90,48,.3);
      padding-bottom: 1px; cursor: pointer;
      transition: color .2s, border-color .2s;
      background: none; border-top: none; border-left: none; border-right: none;
    }
    .view-product-btn:hover { color: #b34420; border-bottom-color: #b34420; }

    /* ============================================================
       PRODUCT DETAIL MODAL  (Layer 3)
       ============================================================ */
    .detail-overlay {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 8500;
      background: rgba(0,0,0,.35);
      backdrop-filter: blur(2px);
      -webkit-backdrop-filter: blur(2px);
      align-items: center;
      justify-content: center;
      padding: 1rem;
    }
    .detail-overlay.active { display: flex; }

    .detail-modal {
      border-radius: 16px;
      max-width: 480px;
      width: 100%;
      max-height: 90vh;
      overflow-y: auto;
      position: relative;
      box-shadow: 0 32px 80px rgba(0,0,0,.28);
      background:
        linear-gradient(#fff,#fff) padding-box,
        linear-gradient(135deg, #D85A30, #1D9E75) border-box;
      border: 5px solid transparent;
    }
    .detail-modal-img-placeholder {
      width: 100%; max-width: 320px; aspect-ratio: 1 / 1;
      margin: 0 auto;
      overflow: hidden;
      background: linear-gradient(135deg, #FAECE7, #E1F5EE);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 5rem;
    }
    .detail-modal-close {
      position: absolute; top: .75rem; right: .75rem;
      width: 32px; height: 32px;
      border-radius: 50%; border: none;
      background: rgba(255,255,255,.9);
      box-shadow: 0 2px 8px rgba(0,0,0,.15);
      cursor: pointer; z-index: 2;
      display: flex; align-items: center; justify-content: center;
    }
    .detail-modal-close::before,
    .detail-modal-close::after {
      content: ''; position: absolute;
      width: 14px; height: 2px;
      background: #4a1a4a; border-radius: 2px;
    }
    .detail-modal-close::before { transform: rotate(45deg); }
    .detail-modal-close::after  { transform: rotate(-45deg); }

    .detail-modal-body { padding: 0rem 1.5rem 2rem; }
    /* .detail-modal-body { padding: 0.25rem 1.5rem 1rem; } */

    .detail-back-link {
      display: inline-block; font-size: .78rem; color: #888;
      cursor: pointer; margin-bottom: 1rem;
      text-decoration: none; transition: color .15s;
      background: none; border: none; padding: 0;
    }
    .detail-back-link:hover { color: #D85A30; }

    .detail-modal-badge {
      display: inline-block; font-size: .7rem; font-weight: 600;
      letter-spacing: .06em; text-transform: uppercase;
      background: #E1F5EE; color: #085041;
      border-radius: 999px; padding: 3px 10px; margin-bottom: .6rem;
    }
    .detail-modal-name {
      font-family: 'Fraunces', Georgia, serif;
      font-size: 1.35rem; font-weight: 700;
      color: #2d0d2d; margin: 0 0 .3rem; line-height: 1.2;
    }
    .detail-modal-price {
      font-family: 'Fraunces', serif;
      font-size: 1.4rem; font-weight: 700;
      color: #D85A30; margin: 0 0 .75rem;
    }
    .detail-modal-desc {
      font-size: .92rem; color: #444; line-height: 1.7;
      margin: 0 0 1rem;
    }
    .detail-modal-features {
      list-style: none; padding: 0; margin: 0 0 1.5rem;
    }
    .detail-modal-features li {
      font-size: .88rem; color: #444; line-height: 1.6;
      padding: .3rem 0 .3rem 1.4rem; position: relative;
      border-bottom: .5px solid #f0f0f0;
    }
    .detail-modal-features li:last-child { border-bottom: none; }
    .detail-modal-features li::before {
      content: ''; position: absolute; left: 2px; top: 50%;
      transform: translateY(-50%) rotate(45deg);
      width: 5px; height: 9px;
      border: 2px solid #1D9E75; border-top: none; border-left: none;
    }
    .btn-buy-now {
      display: block; width: 100%;
      background: #D85A30; color: #fff;
      border: none; border-radius: 10px;
      padding: .9rem; font-size: 1.05rem; font-weight: 600;
      text-align: center; text-decoration: none;
      cursor: pointer; letter-spacing: .02em;
      transition: background .15s, transform .1s;
    }
    .btn-buy-now:hover { background: #993C1D; color: #fff; transform: translateY(-1px); }
    .btn-buy-now-note {
      font-size: .75rem; color: #aaa; text-align: center;
      margin-top: .6rem; line-height: 1.5;
    }

/* ── TOKENS ── */
:root {
  --brand:        #D85A30;
  --brand-light:  #FAECE7;
  --brand-dark:   #993C1D;
  --accent:       #1D9E75;
  --accent-light: #E1F5EE;
  --border:       #e0e0e0;
  --muted:        #666;
  --surface:      #ffffff;
  --bg:           #fafaf8;
}

/* ── BASE ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: #111;
  margin: 0;
}
.ff-serif { font-family: 'Fraunces', serif; }
.text-brand      { color: var(--brand) !important; }

/* ── NAV ── */
.site-nav {
  background: var(--surface);
  border-bottom: 0.5px solid var(--border);
  padding: .75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #111;
  text-decoration: none;
}
.nav-logo span { color: var(--brand); }
.nav-links {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: 1.25rem;
}
@media (max-width: 540px) {
  .site-nav {
    flex-wrap: wrap;
    row-gap: .25rem;
  }
  .nav-links {
    order: 3;
    width: 100%;
    flex: 0 0 100%;
    flex-direction: column;
    align-items: center;
    gap: .25rem;
  }
}

/* ── BADGES ── */
.hero-badge {
  background: var(--brand-light);
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 500;
  padding: 4px 14px;
  border-radius: 999px;
  letter-spacing: .04em;
  display: inline-block;
}
.age-badge {
  background: var(--brand-light);
  color: var(--brand-dark);
  font-size: .7rem;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid var(--brand);
  white-space: nowrap;
}

/* ── BUTTONS ── */
.btn-brand {
  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 10px 26px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background .15s, transform .1s;
  text-decoration: none;
  display: inline-block;
}
.btn-brand:hover {
  background: var(--brand-dark);
  color: #fff;
  transform: translateY(-1px);
}
.btn-outline-brand {
  background: transparent;
  color: #111;
  border: 1.5px solid #ddd;
  border-radius: 999px;
  padding: 10px 26px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color .15s, background .15s;
  text-decoration: none;
  display: inline-block;
}
.btn-outline-brand:hover {
  border-color: var(--brand);
  background: var(--brand-light);
  color: #111;
}
.btn-sm.btn-outline-brand {
  padding: 5px 14px;
  font-size: 13px;
}
.guide-links a.btn-outline-brand {
  border: 2px solid var(--accent);
  transition: border-color .15s, box-shadow .15s, transform .15s;
}
.guide-links a.btn-outline-brand:hover {
  border-color: var(--brand);
  background: transparent;
  box-shadow: 0 4px 20px rgba(216,90,48,.12);
  transform: translateY(-2px);
}
.btn-sm.btn-brand {
  padding: 2px 8px;
  font-size: 11px;
}

/* ── DIVIDER ── */
.divider { height: 0.5px; background: var(--border); }

/* ── SECTION LABEL ── */
.section-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--brand);
  text-transform: uppercase;
}

/* ── EDU CARDS ── */
.edu-card {
  background: var(--surface);
  border: 2px solid var(--border);
  border-color: var(--accent);
  border-radius: 12px;
  padding: 1.25rem;
  transition: border-color .15s, box-shadow .15s, transform .15s;
  height: 100%;
  cursor: pointer;
  position: relative;
}
.edu-card:hover {
  border-color: var(--brand);
  box-shadow: 0 4px 20px rgba(216,90,48,.12);
  transform: translateY(-2px);
}
.edu-card .icon { font-size: 1.6rem; margin-bottom: .75rem; }

.price {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  color: var(--brand);
  font-weight: 700;
}

/* ── GUIDE LINKS ── */
.guide-links { text-align: center; padding: 1.5rem 1rem 1rem; }
.guide-links h2 {
  font-family: 'Fraunces', serif;
  font-size: 1.75rem;
  color: #111;
  margin-bottom: .5rem;
}
.guide-links p {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto .9rem;
}
.guide-links .btn-outline-brand {
  margin: .25rem .2rem;
  font-size: 16.25px;
  padding: 6.25px 17.5px;
}

/* ── FOOTER ── */
.footer-bar {
  background: #f7f7f5;
  border-top: 0.5px solid var(--border);
  padding: 1.25rem 1.5rem;
}
.footer-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 700;
}

/* ── WORD TICKER (index only) ── */
.wf-track-wrap {
  overflow: hidden;
  position: relative;
  height: 2.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wf-word {
  position: absolute;
  font-size: clamp(1.2rem,4vw,2.4rem);
  font-weight: 500;
  opacity: 0;
  white-space: nowrap;
  letter-spacing: .01em;
  transition: opacity .45s ease, transform .45s ease;
}
.wf-word.active  { opacity: 1; transform: translate(0,0) !important; }
.wf-word.exit    { opacity: 0; }
.wf-dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: .85rem;
  flex-wrap: wrap;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}
.wf-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ccc;
  transition: background .3s, transform .3s;
}
.wf-dot.active { transform: scale(1.5); }

/* ── PAGE HERO (sub-pages) ── */
.page-hero {
  background: var(--brand-light);
  padding: 3rem 1.5rem 2rem;
  text-align: center;
  border-bottom: 1px solid #f0d5cc;
}
.page-hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem,5vw,3rem);
  color: var(--brand-dark);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.page-hero p {
  font-size: 1.1rem;
  color: #555;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── INTRO BLOCK (sub-pages) ── */
.intro-block {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e8e8e8;
}
.intro-block h2 {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  color: var(--brand-dark);
  margin-bottom: .75rem;
}
.intro-block p {
  font-size: .97rem;
  color: #444;
  line-height: 1.75;
  margin-bottom: .6rem;
}
.intro-block p:last-child { margin-bottom: 0; }

/* ── STATEMENT BOX (sub-pages) ── */
.statement-box {
  background: var(--accent-light);
  border-left: 4px solid var(--accent);
  border-radius: 0 8px 8px 0;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  color: #085041;
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* ── BENEFIT LIST (sub-pages) ── */
.benefit-list { list-style: none; padding: 0; margin: 0; }
.benefit-list li {
  font-size: 1rem;
  color: #333;
  line-height: 1.65;
  padding: .6rem 0 .6rem 1.6rem;
  position: relative;
  border-bottom: .5px solid #e8e8e8;
}
.benefit-list li:last-child { border-bottom: none; }
.benefit-list li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 6px;
  height: 10px;
  border: 2px solid var(--accent);
  border-top: none;
  border-left: none;
}

/* ── RELATED PAGES (sub-pages) ── */
.related-pages {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin-top: 2rem;
}
.related-pages h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  color: #111;
  margin-bottom: .75rem;
}
.related-pages a {
  display: inline-block;
  margin: .25rem .25rem .25rem 0;
  padding: .3rem .9rem;
  background: var(--brand-light);
  color: var(--brand-dark);
  border-radius: 999px;
  font-size: .82rem;
  text-decoration: none;
  transition: background .15s;
}
.related-pages a:hover { background: var(--brand); color: #fff; }

/* ── CONTENT WRAP (sub-pages) ── */
.content-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
}

/* ── QUOTE CARD (sub-pages) ── */
.quote-card {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-left: 4px solid var(--brand);
  border-radius: 0 8px 8px 0;
  padding: 1.1rem 1.4rem;
  margin-bottom: 1.1rem;
}
.quote-card .quote-text {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.02rem;
  color: #333;
  line-height: 1.75;
  margin-bottom: .5rem;
  white-space: pre-line;
}
.quote-card .quote-author {
  font-size: .85rem;
  color: var(--brand-dark);
  text-align: right;
  margin: 0;
}

/* ── MODAL STYLES ── */
.edu-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  pointer-events: none;
  transition: background .25s;
}
.edu-overlay.active {
  background: rgba(20,12,8,.55);
  pointer-events: all;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.edu-modal {
  border-radius: 20px;
  width: 100%;
  max-width: 520px;
  max-height: 85vh;
  overflow: visible;
  position: relative;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(90deg, var(--brand), var(--accent)) border-box;
  border: 4.5px solid transparent;
  transform: translateY(24px) scale(.97);
  opacity: 0;
  transition: transform .3s cubic-bezier(.22,1,.36,1), opacity .25s;
  box-shadow: 0 24px 60px rgba(0,0,0,.18);
}
.edu-overlay.active .edu-modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.modal-scroll-inner {
  max-height: calc(85vh - 30px);
  overflow-y: auto;
  border-radius: 8px;
}
.modal-header-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 1.25rem 1.5rem 0;
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand);
}
.modal-header-row img {
  height: 64px;
  width: auto;
  object-fit: contain;
}
.modal-header-divider {
  height: 1px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  margin: 1rem 1.5rem 0;
}
.modal-body-inner { padding: 1.25rem 1.75rem 2rem; }
.modal-statement {
  font-size: 1.4rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 1.1rem;
}
.modal-facts { list-style: none; padding: 0; margin: 0; }
.modal-facts li {
  font-size: 1.4rem;
  color: #444;
  line-height: 1.6;
  padding: .35rem 0 .35rem 1.4rem;
  position: relative;
  border-bottom: .5px solid #f0f0f0;
}
.modal-facts li:last-child { border-bottom: none; }
.modal-facts li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 5px;
  height: 9px;
  border: 2px solid var(--accent);
  border-top: none;
  border-left: none;
}
.modal-close {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 36px;
  height: 36px;
  background: var(--brand-light);
  border: 2px solid var(--brand);
  border-radius: 50%;
  font-size: .9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--brand-dark);
  transition: background .15s, color .15s;
  z-index: 10;
}
.modal-close::before,
.modal-close::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 2px;
  background: var(--brand-dark);
  border-radius: 2px;
}
.modal-close::before { transform: rotate(45deg); }
.modal-close::after  { transform: rotate(-45deg); }
.modal-close:hover { background: var(--brand); }
.modal-close:hover::before,
.modal-close:hover::after { background: #fff; }

.detail-modal-img-placeholder img {
  width: 101%;
  height: 101%;
  object-fit: cover;
  display: block;
}

/* ============================================================
   SKIP LINK
   ============================================================ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: #D85A30;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 0 0 8px 8px;
  z-index: 10000;
  font-size: 0.9rem;
  text-decoration: none;
  font-weight: 500;
}
.skip-link:focus { top: 0; }

/* ============================================================
   AGE GATE — non-critical typography/decoration
   ============================================================ */
.age-gate-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #993C1D;
  background: #FAECE7;
  border-radius: 999px;
  padding: 3px 12px;
  margin-bottom: 1rem;
}
.age-gate-box h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.4rem;
  margin: 0 0 0.5rem;
}
.age-gate-box p {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.65;
  margin: 0 0 1.5rem;
}
.age-gate-box .fine-print {
  font-size: 0.72rem;
  color: #aaa;
  margin-top: 0.9rem;
  line-height: 1.5;
  margin-bottom: 0;
}
.btn-age-enter {
  display: block;
  width: 100%;
  padding: 0.75rem;
  background: #D85A30;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  margin-bottom: 0.65rem;
  touch-action: manipulation;
}
.btn-age-leave {
  display: block;
  width: 100%;
  padding: 0.75rem;
  background: transparent;
  color: #666;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  touch-action: manipulation;
}
.btn-age-enter:focus-visible,
.btn-age-leave:focus-visible {
  outline: 3px solid #D85A30;
  outline-offset: 2px;
}
.age-leave-msg {
  padding: 1rem 0;
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ============================================================
   PRODUCT SECTION OVERRIDES
   ============================================================ */
#products .icon { font-size: 0.9rem; font-weight: 500; }
#products .edu-card {
  padding-top: 1.2rem;
  padding-bottom: 0.55rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  #products .row { width: 75%; margin-left: auto; margin-right: auto; }
}

/* Clickable card centering — replaces deprecated <center> */
.edu-card-wrap { text-align: center; cursor: pointer; }

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-image: none;
  width: 3rem;
  height: 3rem;
}

.carousel-control-prev-icon::before {
  content: "\2039"; /* ‹ */
}
.carousel-control-next-icon::before {
  content: "\203A"; /* › */
}

.carousel-control-prev-icon::before,
.carousel-control-next-icon::before {
  font-size: 3.75rem;
  font-weight: bold;
  color: var(--brand);
  display: block;
  line-height: 1;
}

.prod-toprow {
  display: grid;
  grid-template-columns: 1fr auto 1fr; /* left / center / right, keeps label truly centered */
  align-items: center;
  margin-bottom: 0.75rem;
}

.prod-toprow .prod-back-link {
  justify-self: start;
}

.prod-toprow .prod-section-label {
  grid-column: 2;
  justify-self: center;
  margin: 0; /* kill any default <p> margin throwing off centering */
}

.prod-toprow-spacer {
  grid-column: 3;
}

.modal-guide-link {
  display: inline-block;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  width: 100%;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--brand);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.modal-guide-link:hover {
  color: #B84A25; /* darker shade of --brand for hover */
  transform: translateX(2px);
}

/* ── MYTH / FACT LABELS ── */
.myth-label {
  color: #960000;
  font-weight: 700;
}
.fact-label {
  color: #005202;
  font-weight: 700;
  text-decoration: underline;
}

/* ============================================================
   GUIDE DOWNLOAD MODAL  (Layer 4 — email-gated PDF lead magnet)
   ============================================================ */
.guide-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9200;
  background: rgba(20,12,8,.55);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.guide-overlay.active { display: flex; }

.guide-modal {
  border-radius: 20px;
  width: 100%;
  max-width: 460px;
  max-height: 90vh;
  max-height: 90dvh;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(90deg, var(--brand), var(--accent)) border-box;
  border: 4.5px solid transparent;
  box-shadow: 0 24px 60px rgba(0,0,0,.18);
}
.guide-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  background: var(--brand-light);
  border: 2px solid var(--brand);
  border-radius: 50%;
  cursor: pointer;
  color: var(--brand-dark);
  transition: background .15s, color .15s;
  z-index: 10;
}
.guide-modal-close::before,
.guide-modal-close::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 14px;
  height: 2px;
  background: var(--brand-dark);
  border-radius: 2px;
  transform: translate(-50%,-50%) rotate(45deg);
}
.guide-modal-close::after { transform: translate(-50%,-50%) rotate(-45deg); }
.guide-modal-close:hover { background: var(--brand); }
.guide-modal-close:hover::before,
.guide-modal-close:hover::after { background: #fff; }

.guide-modal-body { padding: 2rem 1.75rem 1.75rem; text-align: center; }
.guide-modal-icon { font-size: 2.4rem; line-height: 1; margin-bottom: .5rem; }
.guide-modal-icon img { width: 56px; height: 56px; }
.guide-modal-body h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.5rem;
  color: var(--brand-dark);
  margin: 0 0 .6rem;
}
.guide-modal-body p.guide-modal-intro {
  font-size: .95rem;
  color: #555;
  line-height: 1.6;
  margin: 0 0 1.4rem;
}
.guide-modal-form { text-align: left; }
.guide-modal-form label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--brand-dark);
  margin-bottom: .4rem;
}
.guide-modal-form input[type="email"] {
  width: 100%;
  padding: .7rem .9rem;
  border: 1.5px solid #ddd;
  border-radius: 10px;
  font-size: .95rem;
  font-family: 'DM Sans', sans-serif;
  margin-bottom: 1rem;
  transition: border-color .15s;
}
.guide-modal-form input[type="email"]:focus {
  outline: none;
  border-color: var(--brand);
}
/* honeypot — hidden from sighted users, still reachable by bots that fill every field */
.guide-hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.guide-modal-submit {
  width: 100%;
  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: .8rem 1.5rem;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s, transform .1s;
}
.guide-modal-submit:hover { background: var(--brand-dark); }
.guide-modal-submit:disabled { opacity: .6; cursor: default; }
.guide-modal-note {
  font-size: .76rem;
  color: #999;
  text-align: center;
  margin: .9rem 0 0;
  line-height: 1.5;
}
.guide-modal-msg {
  font-size: .85rem;
  border-radius: 8px;
  padding: .6rem .8rem;
  margin: 0 0 1rem;
  display: none;
}
.guide-modal-msg.show { display: block; }
.guide-modal-msg.error {
  background: #FBEAF0;
  color: #72243E;
}
.guide-modal-success { text-align: center; }
.guide-modal-success .guide-modal-icon { color: var(--accent); }
.guide-modal-success a.btn-brand { margin-top: .5rem; }