/* ═══════════════════════════════════════════════════════════════════════
   topvapeflavors.com · hyperdrop.css — "Hyper Drop" design system
   Ported from the Direction B handoff (designed for TVF, 2026-05-23).
   Maximalist drop-culture: cream substrate · purple + acid lime + hot pink
   + electric cyan + amber. Bricolage Grotesque display · DM Sans body ·
   JetBrains Mono label. Chunky bordered buttons with offset drop-shadows,
   rotated stickers, marquee strips.
   Scope root: .fl  ·  token prefix: --fl-
   Coexists with the legacy .oh / core.css skin during phased migration;
   page bodies carry `class="oh fl"` until each page type is re-dressed.
   ═══════════════════════════════════════════════════════════════════════ */

:root {
  /* ── palette (Direction B "DB" constants, verbatim) ── */
  --fl-cream:   #fef4e4;   /* primary page background */
  --fl-cream2:  #fde9c8;   /* secondary band */
  --fl-ink:     #0e0a14;   /* text / borders / shadow */
  --fl-ink2:    #4a4255;   /* muted text */
  --fl-rule:    rgba(14,10,20,0.12);
  --fl-purple:  #8a3ffc;   /* logo — primary signal */
  --fl-acid:    #c6f019;   /* acid lime — pop highlight */
  --fl-hot:     #ff3d6e;   /* hot pink/coral — drop tag */
  --fl-cyan:    #00d4ff;   /* electric — utility / cold */
  --fl-teal:    #2dd4bf;   /* Foger brand axis — dual-mode / product */
  --fl-teal-deep: #0d9488; /* Foger deep teal */
  --fl-amber:   #ffb800;   /* weekly / new */
  --fl-white:   #ffffff;
  --fl-black:   #0e0a14;

  /* ── flavor-family chip tints (from DB chip[data-fam]) ── */
  --fl-fam-berry:    #f5e9ff;
  --fl-fam-fruit:    #ffe4dc;
  --fl-fam-tropical: #fff0c8;
  --fl-fam-mint:     #d9f4ec;
  --fl-fam-citrus:   #fff4c0;
  --fl-fam-candy:    #ffd9e8;
  --fl-fam-lemonade: #fff7a8;
  --fl-fam-dessert:  #f5e2d0;
  --fl-fam-tart:     #e0f5b8;
  --fl-fam-cosmos:   #ddd0ff;

  /* ── type stack ── */
  --fl-font-display: "Bricolage Grotesque", "DM Sans", system-ui, sans-serif;
  --fl-font-body:    "DM Sans", system-ui, -apple-system, sans-serif;
  --fl-font-mono:    "JetBrains Mono", ui-monospace, monospace;

  /* ── geometry ── */
  --fl-pad-x: 56px;
  --fl-maxw:  1168px;
}

/* ─────────────────────────────────────────────────────────────────────────
   1 — Base + primitives
   ───────────────────────────────────────────────────────────────────────── */
.fl {
  background: var(--fl-cream);
  color: var(--fl-ink);
  font-family: var(--fl-font-body);
  font-size: 15px;
  line-height: 1.55;
}
.fl *, .fl *::before, .fl *::after { box-sizing: border-box; }
.fl a { color: inherit; text-decoration: none; }
.fl button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; padding: 0; }
.fl img, .fl svg { max-width: 100%; display: block; }

.fl .fl-display {
  font-family: var(--fl-font-display);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 0.92;
  font-variation-settings: "wdth" 100, "opsz" 96;
}
.fl .fl-mono { font-family: var(--fl-font-mono); letter-spacing: 0.04em; }

.fl-container { max-width: var(--fl-maxw); margin: 0 auto; padding: 0 var(--fl-pad-x); }
.fl-section   { padding: 96px 0; }
.fl-hr        { height: 2px; background: var(--fl-ink); border: 0; }

/* visible woven internal anchors — specificity beats the .fl a reset */
.fl a.fl-ilink { color: var(--fl-purple); font-weight: 600; text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 2px; }
.fl a.fl-ilink:hover { color: var(--fl-hot); }

/* ── Buttons — chunky, rounded, offset drop-shadow ── */
.fl-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 26px; font-family: var(--fl-font-body); font-weight: 700; font-size: 14px;
  border-radius: 999px; border: 2px solid var(--fl-ink); box-shadow: 4px 4px 0 var(--fl-ink);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.fl-btn:hover  { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--fl-ink); }
.fl-btn:active { transform: translate(2px,2px);   box-shadow: 0 0 0 var(--fl-ink); }
.fl-btn-purple { background: var(--fl-purple); color: #fff; }
.fl-btn-acid   { background: var(--fl-acid);   color: var(--fl-ink); }
.fl-btn-hot    { background: var(--fl-hot);    color: #fff; }
.fl-btn-cyan   { background: var(--fl-cyan);   color: var(--fl-ink); }
.fl-btn-cream  { background: var(--fl-cream);  color: var(--fl-ink); }
.fl-btn-ink    { background: var(--fl-ink);    color: var(--fl-cream); }

/* ── Stickers — rotated chips / badges ── */
.fl-sticker {
  display: inline-flex; align-items: center; gap: 6px; padding: 11px 16px;
  border: 2px solid var(--fl-ink); border-radius: 999px; font-weight: 700; font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.04em; text-decoration: none;
  line-height: 1;
}
a.fl-sticker { transition: transform .1s ease, box-shadow .1s ease; }
a.fl-sticker:hover { transform: translate(-1px, -1px); box-shadow: 2px 2px 0 var(--fl-ink); }
.fl-sticker.purple { background: var(--fl-purple); color: #fff; }
.fl-sticker.acid   { background: var(--fl-acid);   color: var(--fl-ink); }
.fl-sticker.hot    { background: var(--fl-hot);    color: #fff; }
.fl-sticker.cyan   { background: var(--fl-cyan);   color: var(--fl-ink); }
.fl-sticker.teal   { background: var(--fl-teal);   color: var(--fl-ink); }
.fl-sticker.amber  { background: var(--fl-amber);  color: var(--fl-ink); }
.fl-sticker.cream  { background: var(--fl-cream);  color: var(--fl-ink); }

/* ── Flavor / device chips ── */
.fl-chip {
  display: inline-flex; align-items: center; gap: 6px; padding: 9px 16px;
  border: 2px solid var(--fl-ink); border-radius: 999px; background: var(--fl-white);
  font-weight: 600; font-size: 13px; cursor: pointer; transition: transform 0.1s ease, box-shadow 0.1s ease;
}
.fl-chip:hover { transform: translate(-1px,-1px); box-shadow: 2px 2px 0 var(--fl-ink); }
.fl-chip.selected { background: var(--fl-ink); color: var(--fl-cream); }
.fl-chip[data-fam="berry"]    { background: var(--fl-fam-berry); }
.fl-chip[data-fam="fruit"]    { background: var(--fl-fam-fruit); }
.fl-chip[data-fam="tropical"] { background: var(--fl-fam-tropical); }
.fl-chip[data-fam="mint"]     { background: var(--fl-fam-mint); }
.fl-chip[data-fam="citrus"]   { background: var(--fl-fam-citrus); }
.fl-chip[data-fam="candy"]    { background: var(--fl-fam-candy); }
.fl-chip[data-fam="lemonade"] { background: var(--fl-fam-lemonade); }
.fl-chip[data-fam="dessert"]  { background: var(--fl-fam-dessert); }
.fl-chip[data-fam="tart"]     { background: var(--fl-fam-tart); }
.fl-chip[data-fam="cosmos"]   { background: var(--fl-fam-cosmos); }

/* ── Cards — chunky border + offset shadow ── */
.fl-card {
  background: var(--fl-white); border: 2px solid var(--fl-ink); border-radius: 24px;
  box-shadow: 5px 5px 0 var(--fl-ink); overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.fl-card.is-link:hover { transform: translate(-2px,-2px); box-shadow: 8px 8px 0 var(--fl-ink); }

/* ── Diagonal stripe ticker ── */
.fl-stripe {
  background: var(--fl-acid); color: var(--fl-ink); padding: 14px 0;
  border-top: 2px solid var(--fl-ink); border-bottom: 2px solid var(--fl-ink);
  overflow: hidden; white-space: nowrap;
  font-family: var(--fl-font-display); font-weight: 800; font-size: 20px;
  letter-spacing: -0.01em; text-transform: uppercase;
}
.fl-stripe .fl-stripe-row { display: inline-flex; gap: 32px; align-items: center; animation: fl-marquee 26s linear infinite; }
.fl-stripe .fl-star { color: var(--fl-purple); }
@keyframes fl-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .fl-stripe .fl-stripe-row, .fl-topbar .fl-marquee-row { animation: none; } }

/* ─────────────────────────────────────────────────────────────────────────
   2 — Top promo bar (marquee)
   ───────────────────────────────────────────────────────────────────────── */
.fl-topbar {
  background: var(--fl-ink); color: var(--fl-cream);
  font-family: var(--fl-font-mono); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; padding: 11px 0; overflow: hidden;
}
.fl-topbar .fl-marquee { display: flex; overflow: hidden; }
.fl-topbar .fl-marquee-row { display: inline-flex; gap: 40px; white-space: nowrap; padding-right: 40px; animation: fl-marquee 32s linear infinite; }
.fl-topbar .fl-marquee-row span { display: inline-flex; gap: 14px; align-items: center; }
.fl-topbar .fl-marquee-row b { color: var(--fl-acid); font-weight: 700; }
.fl-topbar .fl-tick { color: var(--fl-acid); }

/* ─────────────────────────────────────────────────────────────────────────
   3 — Header / masthead
   ───────────────────────────────────────────────────────────────────────── */
.fl-header {
  background: var(--fl-cream); padding: 18px var(--fl-pad-x); display: flex; align-items: center;
  gap: 48px; border-bottom: 2px solid var(--fl-ink); position: sticky; top: 0; z-index: 60;
}
.fl-logo { display: flex; align-items: center; gap: 12px; }
.fl-logo .fl-mark {
  font-family: var(--fl-font-display); font-weight: 900; font-size: 26px; letter-spacing: -0.04em;
  color: var(--fl-purple); font-style: italic; transform: rotate(-3deg) translateY(-2px); display: inline-block;
}
.fl-logo img { height: 40px; width: auto; }
.fl-logo .fl-sub {
  font-family: var(--fl-font-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  background: var(--fl-ink); color: var(--fl-cream); padding: 4px 8px; border-radius: 4px;
}
.fl-nav { display: flex; gap: 26px; }
.fl-nav-item { position: relative; }
.fl-nav-button {
  display: inline-flex; align-items: center; gap: 5px; font-size: 14px; font-weight: 600;
  transition: color 0.12s ease; padding: 6px 0;
}
.fl-nav-item:hover .fl-nav-button { color: var(--fl-purple); }
.fl-nav-arrow { transition: transform 0.15s ease; }
.fl-nav-item:hover .fl-nav-arrow { transform: rotate(180deg); }

/* mega panel */
.fl-mega {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: var(--fl-white); border: 2px solid var(--fl-ink); border-radius: 20px;
  box-shadow: 6px 6px 0 var(--fl-ink); padding: 24px; min-width: 460px;
  opacity: 0; visibility: hidden; transition: opacity 0.14s ease, transform 0.14s ease; z-index: 70;
}
.fl-mega.fl-mega--narrow { min-width: 280px; }
/* invisible bridge over the 14px gap so moving the cursor button→panel keeps :hover (was collapsing) */
.fl-mega::before { content: ""; position: absolute; left: 0; right: 0; top: -18px; height: 20px; }
.fl-nav-item:hover .fl-mega, .fl-nav-item:focus-within .fl-mega {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.fl-mega-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.fl-mega-col { display: flex; flex-direction: column; gap: 4px; }
.fl-mega-label { font-family: var(--fl-font-mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--fl-ink2); margin-bottom: 8px; }
.fl-mega-link, .fl-mega-flavor { font-size: 14px; font-weight: 600; padding: 7px 10px; border-radius: 10px; transition: background 0.1s ease, color 0.1s ease; }
.fl-mega-link:hover, .fl-mega-flavor:hover { background: var(--fl-fam-berry); color: var(--fl-purple); }
.fl-mega-flavors { display: flex; flex-direction: column; gap: 2px; }

.fl-rail { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.fl-rail-icon {
  display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px;
  border: 2px solid var(--fl-ink); border-radius: 999px; background: var(--fl-white);
  position: relative; transition: transform 0.1s ease, box-shadow 0.1s ease;
}
.fl-rail-icon:hover { transform: translate(-1px,-1px); box-shadow: 2px 2px 0 var(--fl-ink); }
.fl-rail-bag { background: var(--fl-purple); color: #fff; }
.fl-rail-badge {
  position: absolute; top: -6px; right: -6px; min-width: 20px; height: 20px; padding: 0 5px;
  background: var(--fl-acid); color: var(--fl-ink); border: 2px solid var(--fl-ink); border-radius: 999px;
  font-family: var(--fl-font-mono); font-size: 10px; font-weight: 700; display: flex; align-items: center; justify-content: center;
}
.fl-age-pill {
  border: 2px solid var(--fl-ink); background: var(--fl-amber); color: var(--fl-ink);
  padding: 6px 12px; border-radius: 999px; font-family: var(--fl-font-mono); font-size: 11px;
  font-weight: 700; letter-spacing: 0.08em;
}
.fl-burger { display: none; }

/* ─────────────────────────────────────────────────────────────────────────
   4 — Footer
   ───────────────────────────────────────────────────────────────────────── */
.fl-foot { background: var(--fl-ink); color: var(--fl-cream); padding: 72px var(--fl-pad-x) 36px; }
.fl-foot-inner { max-width: var(--fl-maxw); margin: 0 auto; }

.fl-foot-subscribe {
  background: var(--fl-acid); color: var(--fl-ink); border: 2px solid var(--fl-cream); border-radius: 32px;
  padding: 44px; margin-bottom: 52px; position: relative; overflow: hidden;
}
.fl-foot-subscribe .fl-sub-sticker { position: absolute; top: 24px; right: 24px; transform: rotate(8deg); }
.fl-foot-subscribe h2 { font-family: var(--fl-font-display); font-weight: 800; font-size: clamp(34px,5vw,56px); line-height: 0.94; max-width: 640px; }
.fl-foot-subscribe p { font-size: 15px; margin-top: 14px; max-width: 520px; opacity: 0.82; }
.fl-foot-sub-form { display: flex; gap: 12px; margin-top: 28px; max-width: 560px; flex-wrap: wrap; }
.fl-foot-sub-form input {
  flex: 1; min-width: 220px; background: var(--fl-cream); border: 2px solid var(--fl-ink); border-radius: 999px;
  padding: 14px 22px; font-size: 15px; font-family: var(--fl-font-body); outline: none;
}
.fl-foot-sub-msg { margin-top: 12px; font-weight: 700; font-size: 13px; }
.fl-foot-sub-msg--ok  { color: var(--fl-ink); }
.fl-foot-sub-msg--bad { color: #b3001b; }

.fl-foot-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 44px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.18); }
.fl-foot-cols h4 { font-family: var(--fl-font-display); font-weight: 800; font-size: 17px; margin-bottom: 16px; color: var(--fl-acid); }
.fl-foot-cols ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.fl-foot-cols a { font-size: 14px; opacity: 0.85; }
.fl-foot-cols a:hover { color: var(--fl-acid); opacity: 1; }
.fl-foot-social { display: flex; gap: 8px; margin-top: 22px; }
.fl-foot-social a { width: 36px; height: 36px; border: 2px solid var(--fl-acid); color: var(--fl-acid); border-radius: 999px; display: flex; align-items: center; justify-content: center; font-size: 10.5px; font-weight: 700; }
.fl-foot-social a:hover { background: var(--fl-acid); color: var(--fl-ink); }

.fl-foot-warn { background: var(--fl-hot); color: #fff; border: 2px solid var(--fl-cream); border-radius: 16px; padding: 16px 22px; margin-top: 28px; font-size: 13px; line-height: 1.6; font-weight: 600; }
.fl-foot-legal { display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; margin-top: 22px; flex-wrap: wrap; }
.fl-foot-legal .fl-foot-social { margin-top: 0; flex: none; }
.fl-foot-fine { font-size: 12px; opacity: 0.62; line-height: 1.65; max-width: 820px; }
.fl-foot-fine a { color: var(--fl-acid); }
.fl-foot-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 26px; font-family: var(--fl-font-mono); font-size: 10.5px; opacity: 0.5; letter-spacing: 0.12em; }

/* ─────────────────────────────────────────────────────────────────────────
   5 — Cart side panel + mobile sheet (global chrome)
   ───────────────────────────────────────────────────────────────────────── */
.fl-cart-panel {
  position: fixed; top: 0; right: 0; width: min(420px, 92vw); height: 100dvh; z-index: 90;
  background: var(--fl-cream); border-left: 2px solid var(--fl-ink); box-shadow: -8px 0 0 rgba(14,10,20,0.08);
  transform: translateX(100%); transition: transform 0.22s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
}
.fl-cart-panel.is-open { transform: translateX(0); }
.fl-cart-head { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 2px solid var(--fl-ink); }
.fl-cart-title { font-family: var(--fl-font-mono); font-weight: 700; letter-spacing: 0.1em; }
.fl-cart-body { flex: 1; overflow-y: auto; padding: 20px 24px; }
.fl-cart-items { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.fl-cart-item { display: grid; grid-template-columns: 60px 1fr auto; gap: 12px; align-items: start; padding-bottom: 16px; border-bottom: 1px solid var(--fl-rule); }
.fl-cart-item img { border: 2px solid var(--fl-ink); border-radius: 12px; }
.fl-cart-item-name { font-weight: 700; font-size: 14px; }
.fl-cart-item-var { font-size: 12px; color: var(--fl-ink2); }
.fl-cart-qty { display: inline-flex; align-items: center; gap: 8px; margin-top: 8px; }
.fl-cart-qty button { width: 26px; height: 26px; border: 2px solid var(--fl-ink); border-radius: 8px; font-weight: 700; }
.fl-cart-rm { width: auto !important; border: 0 !important; font-size: 11px; text-decoration: underline; color: var(--fl-ink2); }
.fl-cart-price { font-weight: 700; }
.fl-cart-foot { padding: 20px 24px; border-top: 2px solid var(--fl-ink); display: flex; flex-direction: column; gap: 12px; }
.fl-cart-subtotal { display: flex; justify-content: space-between; font-size: 16px; }
.fl-cart-promo-slot { padding: 14px 24px 0; }
.fl-muted { color: var(--fl-ink2); }

.fl-sheet { position: fixed; inset: 0; z-index: 95; display: none; }
.fl-sheet.is-open { display: block; }
.fl-sheet-veil { position: absolute; inset: 0; background: rgba(14,10,20,0.5); }
.fl-sheet-panel {
  position: absolute; bottom: 0; left: 0; right: 0; max-height: 88dvh; overflow-y: auto;
  background: var(--fl-cream); border-top: 2px solid var(--fl-ink); border-radius: 28px 28px 0 0;
  padding: 24px; animation: fl-sheet-up 0.26s cubic-bezier(.4,0,.2,1);
}
@keyframes fl-sheet-up { from { transform: translateY(100%); } to { transform: translateY(0); } }
.fl-sheet-head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.fl-sheet-title { font-family: var(--fl-font-display); font-weight: 800; font-size: 22px; }
.fl-sheet-shut { margin-left: auto; width: 38px; height: 38px; border: 2px solid var(--fl-ink); border-radius: 999px; }
.fl-sheet-nav { display: flex; flex-direction: column; gap: 6px; }
.fl-sheet-cta { display: block; text-align: center; margin-bottom: 8px; }
.fl-sheet-group summary { font-family: var(--fl-font-display); font-weight: 800; font-size: 17px; padding: 12px 0; border-bottom: 1px solid var(--fl-rule); cursor: pointer; list-style: none; }
.fl-sheet-group summary::-webkit-details-marker { display: none; }
.fl-sheet-group a, .fl-sheet-row { display: block; padding: 9px 12px; font-size: 14px; font-weight: 600; }
.fl-sheet-rule { border: 0; border-top: 1px solid var(--fl-rule); margin: 10px 0; }

/* ─────────────────────────────────────────────────────────────────────────
   6 — Home section helpers
   ───────────────────────────────────────────────────────────────────────── */
.fl-eyebrow { font-family: var(--fl-font-mono); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--fl-ink2); }
.fl-hero-h1 { font-family: var(--fl-font-display); font-weight: 800; font-size: clamp(56px,9vw,116px); line-height: 0.9; letter-spacing: -0.03em; margin-top: 16px; }
.fl-hl { background: var(--fl-acid); padding: 2px 8px; border-radius: 6px; border: 2px solid var(--fl-ink); }
.fl-grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.fl-grid-5 { display: grid; grid-template-columns: repeat(5,1fr); gap: 14px; }
.fl-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.fl-sec-head { display: flex; align-items: baseline; gap: 18px; margin-bottom: 36px; flex-wrap: wrap; }
.fl-sec-head h2 { font-family: var(--fl-font-display); font-weight: 800; font-size: clamp(40px,6vw,72px); line-height: 0.94; }
.fl-sec-head .fl-see-all { margin-left: auto; font-family: var(--fl-font-mono); font-size: 12px; font-weight: 700; letter-spacing: 0.14em; }

/* ─────────────────────────────────────────────────────────────────────────
   7 — Responsive
   ───────────────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --fl-pad-x: 28px; }
  .fl-grid-4 { grid-template-columns: repeat(2,1fr); }
  .fl-grid-5 { grid-template-columns: repeat(3,1fr); }
  .fl-grid-3 { grid-template-columns: 1fr 1fr; }
  .fl-foot-cols { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  :root { --fl-pad-x: 18px; }
  .fl-nav, .fl-rail .fl-rail-icon:not(.fl-rail-bag):not(.fl-burger), .fl-age-pill { display: none; }
  .fl-burger { display: inline-flex; }
  .fl-header { gap: 18px; padding: 14px var(--fl-pad-x); }
  .fl-section { padding: 60px 0; }
  .fl-grid-4, .fl-grid-5, .fl-grid-3, .fl-foot-cols { grid-template-columns: 1fr 1fr; }
  .fl-foot-subscribe { padding: 28px; }
}
@media (max-width: 480px) {
  .fl-grid-4, .fl-grid-5, .fl-grid-3, .fl-foot-cols { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────────────────────────────────
   8 — Home page components (Phase 1 — Hyper Drop home, added 2026-05-31)
   All colors read from the Direction B --fl-* tokens above. No legacy CSS.
   ───────────────────────────────────────────────────────────────────────── */
.fl-lede { font-size: 17px; color: var(--fl-ink2); max-width: 680px; line-height: 1.6; }

/* hero */
.fl-hero { padding: 56px 0 52px; position: relative; overflow: hidden; }
.fl-hero-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center; }
.fl-hero-lede { font-size: 19px; margin-top: 26px; max-width: 540px; line-height: 1.55; font-weight: 500; }
.fl-hero-cta { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.fl-hero-art { position: relative; min-height: 440px; }
.fl-hero-block { position: absolute; inset: 0; background: var(--fl-purple); border: 3px solid var(--fl-ink);
  border-radius: 32px; box-shadow: 10px 10px 0 var(--fl-ink); overflow: hidden;
  display: flex; align-items: center; justify-content: center; }
.fl-hero-block img { width: 100%; height: 100%; object-fit: contain; padding: 26px; }
.fl-hero-block .fl-ghost { font-family: var(--fl-font-display); font-weight: 800; font-size: 210px; color: rgba(255,255,255,0.14); }
.fl-hero-art .fl-sticker { position: absolute; }

/* TL;DR card */
.fl-tldr { background: var(--fl-cream2); border: 2px solid var(--fl-ink); border-radius: 24px; box-shadow: 5px 5px 0 var(--fl-ink); padding: 32px; }
.fl-tldr p { font-size: 15px; line-height: 1.65; margin-top: 12px; }
.fl-tldr p:first-of-type { margin-top: 16px; }

/* device / generic product cards (colored) */
.fl-prod-card { display: flex; flex-direction: column; padding: 22px; min-height: 220px; position: relative; }
.fl-prod-card h3 { font-family: var(--fl-font-display); font-weight: 800; font-size: 26px; line-height: 0.98; }
.fl-prod-card .fl-prod-spec { font-size: 12.5px; margin-top: 8px; opacity: 0.85; flex: 1; font-weight: 500; }
.fl-prod-foot { display: flex; justify-content: space-between; align-items: flex-end; margin-top: 14px;
  padding-top: 12px; border-top: 2px solid rgba(14,10,20,0.18); }
.fl-prod-foot .fl-price { font-family: var(--fl-font-display); font-weight: 800; font-size: 24px; }
.fl-prod-foot .fl-arr { font-size: 22px; font-weight: 900; }

/* flavor family color blocks */
.fl-fam { padding: 22px; border: 2px solid var(--fl-ink); border-radius: 20px; box-shadow: 4px 4px 0 var(--fl-ink); display: block; transition: transform .12s ease, box-shadow .12s ease; }
.fl-fam:hover { transform: translate(-2px,-2px); box-shadow: 7px 7px 0 var(--fl-ink); }
.fl-fam .fl-fam-emoji { font-size: 28px; }
.fl-fam h3 { font-family: var(--fl-font-display); font-weight: 800; font-size: 22px; margin-top: 8px; line-height: 1; }
.fl-fam p { font-size: 12px; margin-top: 8px; color: var(--fl-ink2); line-height: 1.45; }
.fl-fam[data-fam="fruit"]    { background: var(--fl-fam-fruit); }
.fl-fam[data-fam="menthol"]  { background: var(--fl-fam-mint); }
.fl-fam[data-fam="tropical"] { background: var(--fl-fam-tropical); }
.fl-fam[data-fam="dessert"]  { background: var(--fl-fam-candy); }
.fl-fam[data-fam="tobacco"]  { background: #e8ddd0; }
.fl-fam[data-fam="beverage"] { background: var(--fl-fam-tart); }
.fl-fam[data-fam="mixed"]    { background: var(--fl-fam-cosmos); }
.fl-fam[data-fam="all"]      { background: var(--fl-ink); color: var(--fl-cream); }
.fl-fam[data-fam="all"] p    { color: rgba(255,255,255,0.7); }

/* scoring axes */
.fl-axis-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.fl-axis { padding: 24px; }
.fl-axis .fl-axis-n { font-family: var(--fl-font-display); font-weight: 800; font-size: 30px; color: var(--fl-purple); line-height: 1; }
.fl-axis h3 { font-family: var(--fl-font-display); font-weight: 800; font-size: 20px; margin-top: 10px; }
.fl-axis p { font-size: 13px; color: var(--fl-ink2); margin-top: 8px; line-height: 1.55; }

/* brand ranked cards */
.fl-brand-card { padding: 20px; display: flex; flex-direction: column; gap: 6px; min-height: 140px; }
.fl-brand-card h3 { font-family: var(--fl-font-display); font-weight: 800; font-size: 24px; line-height: 1; }
.fl-brand-card .fl-brand-meta { font-size: 12.5px; opacity: 0.85; flex: 1; }
.fl-brand-card .fl-brand-link { font-family: var(--fl-font-mono); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }

/* guide / compare link cards */
.fl-link-card { padding: 22px; display: block; }
.fl-link-card .fl-link-eyebrow { font-family: var(--fl-font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fl-ink2); }
.fl-link-card h3 { font-family: var(--fl-font-display); font-weight: 800; font-size: 21px; margin-top: 8px; line-height: 1.05; }
.fl-link-card p { font-size: 13px; color: var(--fl-ink2); margin-top: 8px; line-height: 1.5; }
.fl-link-card .fl-go { margin-top: 12px; font-weight: 700; font-size: 13px; color: var(--fl-purple); }

/* editorial team */
.fl-team-card { padding: 22px; }
.fl-team-card .fl-team-av { width: 50px; height: 50px; border-radius: 999px; border: 2px solid var(--fl-ink); background: var(--fl-cream2); display: flex; align-items: center; justify-content: center; font-family: var(--fl-font-display); font-weight: 800; font-size: 20px; margin-bottom: 12px; }
.fl-team-card h3 { font-family: var(--fl-font-display); font-weight: 800; font-size: 19px; }
.fl-team-card p { font-size: 12.5px; color: var(--fl-ink2); margin-top: 5px; line-height: 1.45; }

/* FAQ accordion */
.fl-faq { display: flex; flex-direction: column; gap: 14px; }
.fl-faq details { padding: 20px 24px; }
.fl-faq summary { display: flex; gap: 18px; align-items: flex-start; cursor: pointer; list-style: none; font-weight: 700; font-size: 16px; }
.fl-faq summary::-webkit-details-marker { display: none; }
.fl-faq summary .fl-faq-n { font-family: var(--fl-font-display); font-weight: 800; font-size: 28px; color: var(--fl-purple); flex-shrink: 0; line-height: 1; }
.fl-faq summary .fl-faq-q { flex: 1; }
.fl-faq summary .fl-faq-plus { font-family: var(--fl-font-display); font-weight: 800; font-size: 26px; transition: transform 0.16s ease; }
.fl-faq details[open] summary .fl-faq-plus { transform: rotate(45deg); }
.fl-faq-a { font-size: 14px; color: var(--fl-ink2); margin-top: 14px; line-height: 1.65; padding-left: 46px; }
.fl-faq-a a { color: var(--fl-purple); font-weight: 600; }

/* big CTA band */
.fl-cta-band { background: var(--fl-purple); border: 2px solid var(--fl-ink); border-radius: 32px; box-shadow: 8px 8px 0 var(--fl-ink); padding: 56px; color: #fff; text-align: center; }
.fl-cta-band h2 { font-family: var(--fl-font-display); font-weight: 800; font-size: clamp(36px,6vw,60px); line-height: 0.96; max-width: 760px; margin: 0 auto; }
.fl-cta-band p { font-size: 16px; opacity: 0.9; max-width: 600px; margin: 16px auto 0; line-height: 1.55; }
.fl-cta-row { display: flex; gap: 14px; justify-content: center; margin-top: 28px; flex-wrap: wrap; }

@media (max-width: 1024px) { .fl-hero-grid { grid-template-columns: 1fr; } .fl-axis-grid { grid-template-columns: 1fr 1fr; } .fl-hero-art { min-height: 300px; } }
@media (max-width: 768px) { .fl-axis-grid { grid-template-columns: 1fr; } .fl-faq-a { padding-left: 0; } .fl-cta-band { padding: 32px; } }


/* ── photo product cards (Top-Rated device grid — restores real imgs + /products/ links) ── */
.fl-pcard { background: #fff; color: var(--fl-ink); display: flex; flex-direction: column; padding: 0; overflow: hidden; }
.fl-pcard-img { width: 100%; aspect-ratio: 1/1; object-fit: cover; background: var(--fl-cream2); border-bottom: 2px solid var(--fl-ink); }
.fl-pcard-body { padding: 16px; display: flex; flex-direction: column; flex: 1; }
.fl-pcard-brand { align-self: flex-start; margin-bottom: 8px; }
.fl-pcard h3 { font-family: var(--fl-font-display); font-weight: 800; font-size: 21px; line-height: 1; }
.fl-pcard-spec { font-size: 12.5px; color: var(--fl-ink2); margin-top: 6px; flex: 1; }
.fl-pcard-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; padding-top: 12px; border-top: 2px solid var(--fl-rule); }
.fl-pcard-price { font-family: var(--fl-font-display); font-weight: 800; font-size: 22px; }
.fl-pcard-cta { font-family: var(--fl-font-mono); font-size: 10.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; background: var(--fl-acid); border: 2px solid var(--fl-ink); border-radius: 999px; padding: 6px 11px; }

/* brand logo chip on the ranked color-block cards (restores brand logos) */
.fl-brand-card .fl-brand-logo { width: 40px; height: 40px; object-fit: contain; background: #fff; border: 2px solid var(--fl-ink); border-radius: 10px; padding: 4px; margin-bottom: 8px; }

/* ═══════════════════════════════════════════════════════════════════════
   9 — HOME (.fl-hp__*) — Hyper Drop skin over the VERBATIM lifted editorial
   hub (raw/home.json). Original markup + copy + H1 + FAQ JS + JSON-LD are
   rendered unchanged via homePage.contentHtml; only the visual styling is
   swapped here. Lifted markup references var(--fl-berry)/(--fl-cream) inline
   → remapped to the Hyper Drop palette under .fl-hp.
   ═══════════════════════════════════════════════════════════════════════ */
.fl-hp {
  --fl-berry: var(--fl-purple);
  --fl-cream: var(--fl-cream2);
  max-width: var(--fl-maxw); margin: 0 auto; padding: 0 var(--fl-pad-x);
  font-family: var(--fl-font-body); color: var(--fl-ink);
}
.fl-hp h2, .fl-hp h3, .fl-hp h4 { font-family: var(--fl-font-display); font-weight: 800; letter-spacing: -0.02em; line-height: 1; }
.fl-hp a { color: inherit; text-decoration: none; }
.fl-hp p { margin: 0; }
.fl-hp .fl-heading { font-size: clamp(32px,5vw,60px); line-height: 0.96; margin: 72px 0 8px; }
.fl-hp .fl-subtext { font-size: 17px; color: var(--fl-ink2); max-width: 720px; margin-bottom: 34px; line-height: 1.55; }

/* buttons (4 legacy variants → Hyper Drop) */
.fl-hp__btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 15px 28px; font-family: var(--fl-font-body); font-weight: 700; font-size: 15px; border-radius: 999px; border: 2px solid var(--fl-ink); box-shadow: 4px 4px 0 var(--fl-ink); transition: transform 0.12s ease, box-shadow 0.12s ease; }
.fl-hp__btn:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--fl-ink); }
.fl-hp__btn:active { transform: translate(2px,2px); box-shadow: 0 0 0 var(--fl-ink); }
.fl-hp__btn--white { background: var(--fl-cream); color: var(--fl-ink); }
.fl-hp__btn--outline { background: transparent; color: #fff; border-color: #fff; box-shadow: 4px 4px 0 rgba(0,0,0,0.35); }
.fl-hp__btn--berry { background: var(--fl-purple); color: #fff; }
.fl-hp__btn--sec { background: var(--fl-acid); color: var(--fl-ink); }

/* hero — purple color block */
.fl-hp__hero { background: var(--fl-purple); color: #fff; border: 2px solid var(--fl-ink); border-radius: 32px; box-shadow: 8px 8px 0 var(--fl-ink); padding: clamp(28px,5vw,64px); margin-top: 36px; position: relative; overflow: hidden; }
.fl-hp__hero-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 22px; }
.fl-hp__hero-badges span { display: inline-flex; align-items: center; padding: 8px 14px; border: 2px solid var(--fl-ink); border-radius: 999px; background: var(--fl-acid); color: var(--fl-ink); font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: 0.04em; }
.fl-hp__hero-badges span:nth-child(2) { background: var(--fl-cyan); }
.fl-hp__hero-badges span:nth-child(3) { background: var(--fl-amber); }
.fl-hp__hero h1 { font-family: var(--fl-font-display); font-weight: 800; font-size: clamp(34px,5.5vw,72px); line-height: 0.96; letter-spacing: -0.03em; color: #fff; }
.fl-hp__hero > p { font-size: 18px; margin-top: 22px; max-width: 760px; line-height: 1.6; color: rgba(255,255,255,0.92); }
.fl-hp__hero-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 36px; }
.fl-hp__hero-stat { background: var(--fl-cream); color: var(--fl-ink); border: 2px solid var(--fl-ink); border-radius: 16px; padding: 18px; text-align: center; }
.fl-hp__hero-stat strong { display: block; font-family: var(--fl-font-display); font-weight: 800; font-size: 34px; color: var(--fl-purple); line-height: 1; }
.fl-hp__hero-stat span { font-family: var(--fl-font-mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fl-ink2); margin-top: 6px; display: block; }
.fl-hp__hero-cta { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }

/* TL;DR */
.fl-hp__tldr { background: var(--fl-acid); border: 2px solid var(--fl-ink); border-radius: 24px; box-shadow: 5px 5px 0 var(--fl-ink); padding: 32px; margin-top: 40px; }
.fl-hp__tldr h3 { font-size: 24px; margin-bottom: 14px; }
.fl-hp__tldr p { font-size: 15px; line-height: 1.65; margin-bottom: 10px; }

/* products */
.fl-hp__products { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.fl-hp__product { background: #fff; border: 2px solid var(--fl-ink); border-radius: 20px; box-shadow: 4px 4px 0 var(--fl-ink); overflow: hidden; display: flex; flex-direction: column; transition: transform 0.13s ease, box-shadow 0.13s ease; }
.fl-hp__product:hover { transform: translate(-2px,-2px); box-shadow: 7px 7px 0 var(--fl-ink); }
.fl-hp__product-img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-bottom: 2px solid var(--fl-ink); background: var(--fl-cream2); }
.fl-hp__product-info { padding: 16px; display: flex; flex-direction: column; flex: 1; }
.fl-hp__product-brand { font-family: var(--fl-font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fl-purple); font-weight: 700; }
.fl-hp__product-info h4 { font-size: 20px; margin: 4px 0 6px; }
.fl-hp__product-meta { font-size: 12.5px; color: var(--fl-ink2); flex: 1; }
.fl-hp__product-bottom { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; padding-top: 12px; border-top: 2px solid var(--fl-rule); }
.fl-hp__product-price { font-family: var(--fl-font-display); font-weight: 800; font-size: 22px; color: var(--fl-ink); }
.fl-hp__product-btn { font-family: var(--fl-font-mono); font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; background: var(--fl-acid); border: 2px solid var(--fl-ink); border-radius: 999px; padding: 6px 12px; }

/* category cards */
.fl-hp__cats { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.fl-hp__cat { background: #fff; border: 2px solid var(--fl-ink); border-radius: 20px; box-shadow: 4px 4px 0 var(--fl-ink); padding: 24px; transition: transform 0.13s ease, box-shadow 0.13s ease; }
.fl-hp__cat:hover { transform: translate(-2px,-2px); box-shadow: 7px 7px 0 var(--fl-ink); }
.fl-hp__cat:nth-child(1){ background: var(--fl-fam-fruit); } .fl-hp__cat:nth-child(2){ background: var(--fl-fam-mint); }
.fl-hp__cat:nth-child(3){ background: var(--fl-fam-tropical); } .fl-hp__cat:nth-child(4){ background: var(--fl-fam-candy); }
.fl-hp__cat:nth-child(5){ background: var(--fl-fam-dessert); } .fl-hp__cat:nth-child(6){ background: var(--fl-fam-citrus); }
.fl-hp__cat:nth-child(7){ background: var(--fl-fam-berry); } .fl-hp__cat:nth-child(8){ background: var(--fl-cyan); }
.fl-hp__cat-icon { font-size: 32px; display: block; margin-bottom: 10px; }
.fl-hp__cat h3 { font-size: 22px; margin-bottom: 6px; }
.fl-hp__cat p { font-size: 13px; color: var(--fl-ink2); line-height: 1.5; }

/* scoring */
.fl-hp__scoring { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.fl-hp__score-card { background: #fff; border: 2px solid var(--fl-ink); border-radius: 18px; box-shadow: 4px 4px 0 var(--fl-ink); padding: 24px; }
.fl-hp__score-card svg { width: 44px; height: 44px; margin-bottom: 12px; }
.fl-hp__score-card h4 { font-size: 19px; margin-bottom: 6px; }
.fl-hp__score-card p { font-size: 13.5px; color: var(--fl-ink2); line-height: 1.5; }

/* trust */
.fl-hp__trust { display: grid; grid-template-columns: repeat(5,1fr); gap: 14px; background: var(--fl-ink); border-radius: 24px; padding: 28px; margin-top: 36px; }
.fl-hp__trust-item { text-align: center; color: var(--fl-cream); }
.fl-hp__trust-item strong { display: block; font-family: var(--fl-font-display); font-weight: 800; font-size: 26px; color: var(--fl-acid); }
.fl-hp__trust-item span { font-family: var(--fl-font-mono); font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.8; margin-top: 4px; display: block; }

/* brands */
.fl-hp__brands { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.fl-hp__brand { background: #fff; border: 2px solid var(--fl-ink); border-radius: 18px; box-shadow: 4px 4px 0 var(--fl-ink); padding: 18px; display: flex; align-items: center; gap: 14px; transition: transform 0.13s ease, box-shadow 0.13s ease; }
.fl-hp__brand:hover { transform: translate(-2px,-2px); box-shadow: 7px 7px 0 var(--fl-ink); }
.fl-hp__brand-logo { width: 56px; height: 56px; object-fit: contain; flex-shrink: 0; }
.fl-hp__brand-info h4 { font-size: 18px; margin-bottom: 4px; }
.fl-hp__brand-stats { font-size: 12px; color: var(--fl-ink2); line-height: 1.45; }

/* guides */
.fl-hp__guides { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.fl-hp__guide { background: #fff; border: 2px solid var(--fl-ink); border-radius: 18px; box-shadow: 4px 4px 0 var(--fl-ink); padding: 22px; display: flex; flex-direction: column; gap: 8px; transition: transform 0.13s ease, box-shadow 0.13s ease; }
.fl-hp__guide:hover { transform: translate(-2px,-2px); box-shadow: 7px 7px 0 var(--fl-ink); }
.fl-hp__guide-tag { align-self: flex-start; background: var(--fl-acid) !important; color: var(--fl-ink) !important; border: 2px solid var(--fl-ink); border-radius: 999px; padding: 4px 12px; font-family: var(--fl-font-mono); font-size: 11px; font-weight: 700; letter-spacing: 0.04em; }
.fl-hp__guide h4 { font-size: 19px; }
.fl-hp__guide p { font-size: 13.5px; color: var(--fl-ink2); line-height: 1.5; flex: 1; }

/* compare */
.fl-hp__compare { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.fl-hp__compare-card { background: #fff; border: 2px solid var(--fl-ink); border-radius: 18px; box-shadow: 4px 4px 0 var(--fl-ink); padding: 24px; display: flex; flex-direction: column; gap: 10px; transition: transform 0.13s ease, box-shadow 0.13s ease; }
.fl-hp__compare-card:hover { transform: translate(-2px,-2px); box-shadow: 7px 7px 0 var(--fl-ink); }
.fl-hp__compare-type { align-self: flex-start; border: 2px solid var(--fl-ink); border-radius: 999px; padding: 5px 13px; font-family: var(--fl-font-mono); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
.fl-hp__compare-type--vs { background: var(--fl-hot); color: #fff; }
.fl-hp__compare-type--cross { background: var(--fl-cyan); color: var(--fl-ink); }
.fl-hp__compare-card h4 { font-size: 22px; }
.fl-hp__compare-card p { font-size: 14px; color: var(--fl-ink2); line-height: 1.55; flex: 1; }

/* quiz + cta */
.fl-hp__quiz, .fl-hp__cta { background: var(--fl-hot); color: #fff; border: 2px solid var(--fl-ink); border-radius: 32px; box-shadow: 8px 8px 0 var(--fl-ink); padding: clamp(28px,4vw,52px); margin: 56px 0; text-align: center; }
.fl-hp__cta { background: var(--fl-purple); }
.fl-hp__quiz h2, .fl-hp__cta h2 { font-size: clamp(30px,4.5vw,52px); line-height: 0.96; color: #fff; }
.fl-hp__quiz p, .fl-hp__cta p { font-size: 16px; margin: 16px auto 28px; max-width: 640px; line-height: 1.6; color: rgba(255,255,255,0.92); }
.fl-hp__cta-links { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* team */
.fl-hp__team { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.fl-hp__editor { background: #fff; border: 2px solid var(--fl-ink); border-radius: 18px; box-shadow: 4px 4px 0 var(--fl-ink); padding: 24px; text-align: center; }
.fl-hp__editor-avatar svg { width: 72px; height: 72px; border-radius: 999px; border: 2px solid var(--fl-ink); margin: 0 auto 12px; }
.fl-hp__editor h4 { font-size: 18px; margin-bottom: 6px; }
.fl-hp__editor p { font-size: 12.5px; color: var(--fl-ink2); line-height: 1.5; }

/* faq (click .open) */
.fl-hp__faq { display: flex; flex-direction: column; gap: 14px; }
.fl-hp__faq-item { background: #fff; border: 2px solid var(--fl-ink); border-radius: 16px; box-shadow: 3px 3px 0 var(--fl-ink); overflow: hidden; }
.fl-hp__faq-q { font-family: var(--fl-font-display); font-weight: 800; font-size: 18px; padding: 20px 24px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.fl-hp__faq-q::after { content: "+"; font-size: 26px; color: var(--fl-purple); transition: transform 0.15s ease; }
.fl-hp__faq-item.open .fl-hp__faq-q::after { transform: rotate(45deg); }
.fl-hp__faq-a { max-height: 0; overflow: hidden; padding: 0 24px; font-size: 14.5px; line-height: 1.65; color: var(--fl-ink2); transition: max-height 0.2s ease, padding 0.2s ease; }
.fl-hp__faq-item.open .fl-hp__faq-a { max-height: 700px; padding: 0 24px 22px; }
.fl-hp__faq-a a { color: var(--fl-purple); font-weight: 600; text-decoration: underline; }

/* warning */
.fl-hp__warning { background: var(--fl-hot); color: #fff; border: 2px solid var(--fl-ink); border-radius: 16px; padding: 18px 24px; margin: 36px 0; font-size: 13.5px; line-height: 1.6; font-weight: 600; }
.fl-hp__warning a { color: #fff; text-decoration: underline; }

@media (max-width: 1024px) {
  .fl-hp__products, .fl-hp__cats, .fl-hp__brands { grid-template-columns: repeat(2,1fr); }
  .fl-hp__guides, .fl-hp__scoring { grid-template-columns: 1fr 1fr; }
  .fl-hp__team { grid-template-columns: 1fr 1fr; }
  .fl-hp__hero-stats { grid-template-columns: 1fr 1fr; }
  .fl-hp__trust { grid-template-columns: repeat(3,1fr); row-gap: 18px; }
}
@media (max-width: 600px) {
  .fl-hp__products, .fl-hp__cats, .fl-hp__brands, .fl-hp__guides, .fl-hp__scoring, .fl-hp__compare, .fl-hp__team { grid-template-columns: 1fr; }
  .fl-hp__trust { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════════
   10 — oh-* BRIDGE (Phase 2/3/5 — re-skin the handwritten legacy primitives
   to Hyper Drop, under the .fl scope, WITHOUT touching their markup).
   Strategy: (a) retune the oh- design TOKENS to Hyper Drop values — core.css
   reads everything from these vars, so the whole oh- system recolors at once;
   (b) a thin "character" layer adds the signature 2px-ink chunky borders,
   offset drop-shadows and Bricolage display headings the token retune can't
   express. Covers: /shop /shop/{cat} /brand /brand/ /guide/ /best/ index hubs,
   the PDP (oh-pdp-*), the info archetype (oh-info-*) and the cart/checkout/
   account/search/tracking utility pages (oh-checkout-*/oh-cart-*/oh-acct-*).
   Loaded after core.css → these win on cascade + specificity.
   ═══════════════════════════════════════════════════════════════════════ */
.fl {
  /* substrate → Hyper Drop cream */
  --oh-paper: #fef4e4; --oh-paper-deep: #fde9c8; --oh-paper-warm: #fde9c8;
  /* ink scale */
  --oh-ink: #0e0a14; --oh-ink-2: #4a4255; --oh-ink-3: #6f6878; --oh-ink-4: #aca4b0;
  --oh-hair: rgba(14,10,20,0.12); --oh-hair-2: rgba(14,10,20,0.22);
  /* brand accent → purple */
  --oh-accent: #8a3ffc; --oh-accent-deep: #6b1fd9; --oh-accent-soft: rgba(138,63,252,0.12);
  --oh-c-lavender: #8a3ffc;   /* oh-btn-accent fill */
  /* glass → opaque white card (chunky border + offset shadow come from the character layer) */
  --oh-glass: #ffffff; --oh-glass-deep: #ffffff; --oh-glass-edge: #ffffff;
  --oh-glass-blur: none;
  --oh-glass-shadow: 4px 4px 0 #0e0a14;
  /* type → Hyper Drop */
  --oh-font-display: "Bricolage Grotesque","DM Sans",system-ui,sans-serif;
  --oh-font-body: "DM Sans",system-ui,-apple-system,sans-serif;
  --oh-font-serif: "Bricolage Grotesque","DM Sans",sans-serif;
  --oh-font-mono: "JetBrains Mono",ui-monospace,monospace;
  /* radii → chunky rounded */
  --oh-r-lg: 18px; --oh-r-xl: 22px; --oh-r-md: 14px;
  /* elevation → offset ink shadows */
  --oh-elev-1: 3px 3px 0 #0e0a14; --oh-elev-2: 4px 4px 0 #0e0a14; --oh-elev-3: 6px 6px 0 #0e0a14;
}

/* hide the diffuse atmosphere blobs — Hyper Drop is flat cream, not gradient haze */
.fl .oh-atmosphere { display: none !important; }

/* cards / panels — chunky 2px ink border + offset drop-shadow */
.fl .oh-glass,
.fl .oh-checkout-block,
.fl .oh-checkout-summary-card,
.fl .oh-info-section,
.fl .oh-info-callout,
.fl .oh-info-faq,
.fl .oh-acct-shell {
  background: #fff !important;
  border: 2px solid var(--fl-ink) !important;
  border-radius: 18px !important;
  box-shadow: 4px 4px 0 var(--fl-ink) !important;
  -webkit-backdrop-filter: none !important; backdrop-filter: none !important;
}
.fl .oh-flat {
  background: #fff !important; border: 2px solid var(--fl-ink) !important;
  border-radius: 12px !important; box-shadow: 3px 3px 0 var(--fl-ink) !important;
}

/* display headings → Bricolage */
.fl .oh-display, .fl .oh-h2, .fl .oh-h3, .fl .oh-pdp-title,
.fl .oh-info-section-h2, .fl .oh-info-h1, .fl .oh-util-h1, .fl .oh-info-callout-h2 {
  font-family: var(--fl-font-display) !important; font-weight: 800 !important; letter-spacing: -0.02em !important;
}
.fl .oh-mono, .fl .oh-font-mono, .fl .oh-eyebrow, .fl .oh-micro, .fl .oh-label { font-family: var(--fl-font-mono) !important; }
.fl .oh-num { font-family: var(--fl-font-display) !important; color: var(--fl-purple); }

/* buttons → chunky pill, 2px ink border, offset shadow */
.fl .oh-btn {
  border: 2px solid var(--fl-ink); border-radius: 999px; box-shadow: 3px 3px 0 var(--fl-ink);
  font-weight: 700; transition: transform .12s ease, box-shadow .12s ease;
}
.fl .oh-btn:hover  { transform: translate(-2px,-2px); box-shadow: 5px 5px 0 var(--fl-ink); }
.fl .oh-btn:active { transform: translate(2px,2px); box-shadow: 0 0 0 var(--fl-ink); }
.fl .oh-btn-primary { background: var(--fl-purple); color: #fff; }
.fl .oh-btn-primary:hover { background: var(--fl-purple); color: #fff; }
.fl .oh-btn-accent { background: var(--fl-acid); color: var(--fl-ink); }
.fl .oh-btn-ghost { background: var(--fl-white); color: var(--fl-ink); }
.fl .oh-pdp-add { background: var(--fl-purple); color: #fff; border: 2px solid var(--fl-ink); border-radius: 999px; box-shadow: 4px 4px 0 var(--fl-ink); }
.fl .oh-pdp-add:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--fl-ink); }

/* pills / chips → bordered capsules */
.fl .oh-pill, .fl .oh-chip {
  border: 2px solid var(--fl-ink) !important; border-radius: 999px !important; background: var(--fl-white);
}
.fl .oh-chip-ink, .fl .oh-pill.is-active, .fl .oh-pdp-flavor-pill.is-active { background: var(--fl-ink) !important; color: var(--fl-cream) !important; }
.fl .oh-chip-shipfree { background: var(--fl-acid) !important; color: var(--fl-ink) !important; }
.fl .oh-pill:hover { background: var(--fl-fam-berry); }

/* links + rules */
.fl .oh-ilink { color: var(--fl-purple); font-weight: 600; text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 2px; }
.fl .oh-ilink:hover { color: var(--fl-hot); }
.fl .oh-rule, .fl .oh-rule-lite { background: var(--fl-rule); border-color: var(--fl-rule); }

/* PDP gallery image frame → Hyper Drop block */
.fl .oh-pdp-gallery-main { background: var(--fl-purple) !important; border: 3px solid var(--fl-ink) !important; border-radius: 28px !important; box-shadow: 8px 8px 0 var(--fl-ink) !important; }

/* ═══════════════════════════════════════════════════════════════════════
   11 — .fl-rich — wrapper for LIFTED editorial blocks (guide / best / misc /
   blog). The block keeps its own (now palette-retuned via lib/redress.js)
   inline <style>; this only guarantees the body font + a Bricolage heading
   fallback + visible woven-anchor color, and gives the scoped :root var defs
   (renamed to .fl-rich by redress.js) a home so they never touch the chrome.
   ═══════════════════════════════════════════════════════════════════════ */
.fl-rich { font-family: var(--fl-font-body); color: var(--fl-ink); }
.fl-rich h1, .fl-rich h2, .fl-rich h3, .fl-rich h4 { font-family: var(--fl-font-display); letter-spacing: -0.02em; }
.fl-rich a.fl-ilink { color: var(--fl-purple); font-weight: 600; text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 2px; }
.fl-rich a.fl-ilink:hover { color: var(--fl-hot); }
/* sitewide woven internal-link band (brand-anchors.njk) — keep anchors visible */
.oh-related-anchors a.fl-ilink { color: var(--fl-purple); font-weight: 600; text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 2px; }
.oh-related-anchors a.fl-ilink:hover { color: var(--fl-hot); }

/* ── Prose defaults for LIFTED pages that ship NO inline <style> (the 5 real
   info/policy pages: contact/privacy/terms/refund/shipping — clean semantic
   HTML). Hub/guide/best blocks carry their own higher-specificity inline rules
   so these generic defaults don't touch them. ── */
.fl-info-rich { max-width: 860px; margin: 0 auto; padding: 8px 22px 72px; }
.fl-info-rich .fl-rich { line-height: 1.68; font-size: 15.5px; }
.fl-info-rich .fl-rich h2 { font-size: 26px; margin: 38px 0 12px; padding-bottom: 8px; border-bottom: 2px solid var(--fl-ink); }
.fl-info-rich .fl-rich h3 { font-size: 18px; margin: 26px 0 8px; color: var(--fl-purple); }
.fl-info-rich .fl-rich p { margin: 0 0 14px; }
.fl-info-rich .fl-rich a { color: var(--fl-purple); text-decoration: underline; text-decoration-thickness: 1.5px; text-underline-offset: 2px; font-weight: 600; }
.fl-info-rich .fl-rich a:hover { color: var(--fl-hot); }
.fl-info-rich .fl-rich ul, .fl-info-rich .fl-rich ol { margin: 0 0 16px; padding-left: 22px; }
.fl-info-rich .fl-rich li { margin: 0 0 7px; }
.fl-info-rich .fl-rich a.fl-btn { display: inline-block; background: var(--fl-purple); color: #fff; padding: 9px 18px; border-radius: 10px; border: 2px solid var(--fl-ink); box-shadow: 3px 3px 0 var(--fl-ink); text-decoration: none; margin-top: 4px; }
.fl-info-rich .fl-rich a.fl-btn:hover { color: #fff; transform: translate(1px,1px); box-shadow: 2px 2px 0 var(--fl-ink); }
.fl-info-rich .fl-rich table { width: 100%; border-collapse: collapse; margin: 6px 0 22px; font-size: 14px; background: #fff; border: 2px solid var(--fl-ink); box-shadow: 4px 4px 0 var(--fl-ink); }
.fl-info-rich .fl-rich th, .fl-info-rich .fl-rich td { text-align: left; padding: 9px 12px; border-bottom: 1px solid rgba(16,18,24,.12); vertical-align: top; }
.fl-info-rich .fl-rich th { background: var(--fl-cream2, #f4e9d6); font-family: var(--fl-font-display); font-size: 13px; }
.fl-info-rich .fl-rich tr:last-child td { border-bottom: none; }
.fl-info-rich .fl-rich .fl-updated { font-size: 13px; color: var(--fl-muted, #6b6357); margin-bottom: 20px; padding: 10px 14px; background: var(--fl-cream2, #f4e9d6); border-radius: 10px; border: 1.5px dashed rgba(16,18,24,.25); }
.fl-info-rich .fl-rich .fl-contact-methods { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 14px; margin: 18px 0 26px; }
.fl-info-rich .fl-rich .fl-contact-card { background: #fff; border: 2px solid var(--fl-ink); border-radius: 14px; box-shadow: 4px 4px 0 var(--fl-ink); padding: 18px; }
.fl-info-rich .fl-rich .fl-contact-card h3 { margin-top: 0; }
.fl-info-rich .fl-rich .fl-contact-info { background: var(--fl-cream2, #f4e9d6); border: 2px solid var(--fl-ink); border-radius: 14px; padding: 18px 20px; margin-top: 8px; }
.fl-info-rich .fl-rich .fl-contact-info p { margin: 0 0 8px; }
@media (max-width: 680px) { .fl-info-rich { padding: 6px 16px 56px; } .fl-info-rich .fl-rich table { display: block; overflow-x: auto; } }
