/* ============================================================
   wankerfest.css — shared styles for all pages
   wankerfest.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 {
      background: #fff;
      border-radius: 16px;
      max-width: 520px;
      width: 100%;
      max-height: 88vh;
      overflow-y: auto;
      position: relative;
      box-shadow: 0 24px 64px rgba(0,0,0,.22);
    }
    .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: 16px 16px 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: #fff;
      border: 0.5px solid #e0e0e0;
      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%;
      background: none;
    }
    .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: .78rem; color: #888;
      cursor: pointer; margin-bottom: .9rem;
      text-decoration: none; transition: color .15s;
      background: none; border: none; padding: 0;
    }
    .prod-back-link:hover { color: #D85A30; }

    .prod-item {
      display: flex; gap: 1rem; align-items: flex-start;
      padding: .9rem 0; border-bottom: 1px solid #f5f0f5;
    }
    .prod-item:last-child { border-bottom: none; padding-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%; height: 200px;
      background: linear-gradient(135deg, #FAECE7, #E1F5EE);
      border-radius: 10px 10px 0 0;
      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: 1.5rem 1.5rem 2rem; }
    .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; }
.text-brand-dark { color: var(--brand-dark) !important; }
.bg-brand-light  { background: var(--brand-light) !important; }
.bg-accent-light { background: var(--accent-light) !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.1rem;
  font-weight: 700;
  color: #111;
  text-decoration: none;
}
.nav-logo span { color: var(--brand); }
@media (max-width: 540px) {
  .nav-links { display: none; }
}

/* ── 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;
}

/* ── 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: 0.5px solid var(--border);
  border-color: #4a1a4a;
  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; }
.edu-card-hint {
  font-size: .72rem;
  color: var(--brand);
  font-weight: 500;
  letter-spacing: .04em;
  margin-top: .75rem;
  display: flex;
  align-items: center;
  gap: 4px;
  opacity: .8;
}

/* ── PRODUCT CARDS ── */
.prod-card {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .15s;
  cursor: pointer;
  height: 100%;
}
.prod-card:hover { border-color: var(--accent); }
.prod-thumb {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  border-bottom: 0.5px solid var(--border);
}
.prod-thumb.a { background: #EEEDFE; }
.prod-thumb.b { background: var(--accent-light); }
.prod-thumb.c { background: var(--brand-light); }
.prod-thumb.d { background: #FAEEDA; }
.price {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  color: var(--brand);
  font-weight: 700;
}
.badge-new {
  font-size: 10px;
  background: var(--accent-light);
  color: #0F6E56;
  padding: 2px 8px;
  border-radius: 999px;
  font-weight: 500;
  vertical-align: middle;
  margin-left: 6px;
}

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

/* ── 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: 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;
}

/* ── MISSION CALLOUT ── */
.mission-callout {
  background: var(--accent-light);
  border-left: 3px solid var(--accent);
  border-radius: 0 8px 8px 0;
  padding: .75rem 1.25rem;
  font-size: .92rem;
  color: #085041;
  max-width: 600px;
  margin: 0 auto 1.5rem;
  text-align: left;
}

/* ── 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: 8px 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; }