/* ==========================================================================
   justblt master stylesheet  (canonical, from CD "THE PARTS BIN" foundations)
   Single source of truth. Every page links this file and uses the tokens.
   The product is always light: there is no theme toggle and no dark mode.
   The footer and interviews band are dark by design and use literal hexes.
   ========================================================================== */

:root {
  --font-display: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

  --bg: #FFFFFF;
  --surface: #FFFFFF;
  --surface-2: #F7F4EF;
  --border: #E7E2DA;
  --border-strong: #D8D1C6;
  --text: #211C15;
  --text-2: #6E665B;
  --text-3: #9C9387;
  --green: #157C44;
  --green-press: #0F6739;
  --on-green: #FFFFFF;
  --tomato: #DD4A39;
  --crust: #C0894A;
  --sky: #2E8FCC;
  --amber: #E59A00;
  --on-amber: #2A2000;
  --ring: #2E8FCC;
}

/* The product is always light by decision: there is no user theme toggle and
   no dark mode. The footer and interviews band are dark by design and use
   literal dark hexes, not tokens. */

/* ------------------------------------------------------------------- reset */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
}
img, svg { max-width: 100%; display: block; }
*:focus-visible { outline: 2px solid var(--ring); outline-offset: 2px; }
a { -webkit-tap-highlight-color: transparent; }

/* --------------------------------------------------------------- utilities */
.container { max-width: 1120px; margin: 0 auto; padding: 0 16px; }
.hscroll { overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.hscroll::-webkit-scrollbar { display: none; }
.hatch {
  background-color: var(--surface-2);
  background-image: repeating-linear-gradient(135deg, rgba(128,128,128,0.10) 0 1px, transparent 1px 8px);
}
/* mobile-first toggles. Put these on bare wrapper divs so they never fight
   a child's own flex/grid display. */
.desktop-only { display: none; }
.mobile-only { display: block; }
@media (min-width: 760px) {
  .desktop-only { display: block; }
  .mobile-only { display: none; }
}
@keyframes jb-blink { 0%,49%{opacity:1} 50%,100%{opacity:0} }
@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; } }

/* -------------------------------------------------------------- BLT mark */
.blt-mark {
  width: 96px; height: 96px; border-radius: 14px; flex: none;
  object-fit: contain; display: block;
}

.wordmark { font-weight: 800; font-size: 21px; letter-spacing: -0.02em; color: var(--text); }
.wordmark .blt { color: var(--green); }

/* ---------------------------------------------------------------- buttons */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  font: inherit; font-size: 15px; font-weight: 700;
  border-radius: 13px; cursor: pointer; min-height: 46px; padding: 0 17px;
  border: 1px solid transparent; text-decoration: none;
  transition: background .15s ease, border-color .15s ease;
}
.btn--primary { background: var(--green); color: var(--on-green); }
.btn--primary:hover { background: var(--green-press); }
.btn--ghost { background: var(--surface); color: var(--text); border-color: var(--border-strong); }
.btn--ghost:hover { background: var(--surface-2); }

.icon-btn {
  position: relative; width: 46px; height: 46px; flex: none;
  border-radius: 13px; border: 1px solid var(--border); background: var(--surface);
  color: var(--text); cursor: pointer; font-size: 21px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .15s ease, border-color .15s ease;
}
.icon-btn:hover { background: var(--surface-2); }
.bell-dot {
  display: none;
  position: absolute; top: 9px; right: 9px; width: 10px; height: 10px;
  border-radius: 999px; background: var(--tomato); border: 2px solid var(--surface);
}
.bell-dot.is-on { display: block; }

/* ---------------------------------------------------------- pills / badges */
.pill {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; padding: 3px 8px; border-radius: 999px; white-space: nowrap;
}
.pill--verified { font-size: 13px; font-weight: 600; color: var(--sky);
  background: color-mix(in srgb, var(--sky) 12%, transparent); padding: 4px 10px; }
.pill--verified i { color: var(--amber); }
.pill--fresh { color: var(--text-2); background: var(--surface-2); border: 1px solid var(--border); }
.pill--stale { font-weight: 600; color: var(--amber);
  background: color-mix(in srgb, var(--amber) 14%, transparent); }
.pill--sub { font-size: 12px; color: var(--text-2); background: var(--surface-2); padding: 3px 9px; }
.badge--promoted {
  display: inline-flex; align-items: center; gap: 4px; text-transform: uppercase;
  font-size: 11px; font-weight: 700; letter-spacing: .03em;
  color: var(--on-amber); background: var(--amber); padding: 4px 9px; border-radius: 7px;
}

/* --------------------------------------------------------------- header */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: saturate(1.5) blur(12px); -webkit-backdrop-filter: saturate(1.5) blur(12px);
  border-bottom: 1px solid var(--border);
  padding-top: env(safe-area-inset-top);
}
.header-bar { max-width: 1120px; margin: 0 auto; padding: 11px 16px;
  display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.header-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.header-actions { display: flex; align-items: center; gap: 8px; }
.header-mobile { padding: 9px 12px; display: flex; align-items: center; gap: 10px; }

.m-search { flex: 1; min-width: 0; display: flex; align-items: center; gap: 10px;
  padding: 13px 15px; border-radius: 15px; background: var(--surface-2); border: 1px solid var(--border); }
.m-search input { flex: 1; min-width: 0; border: none; background: transparent; outline: none;
  font: inherit; font-size: 16px; color: var(--text); }
.m-search i { font-size: 21px; color: var(--text-2); flex: none; }

/* ----------------------------------------------------------------- hero */
.hero-band { background: var(--bg); border-bottom: 1px solid var(--border); }
.hero-inner { max-width: 1120px; margin: 0 auto; text-align: center; padding: 46px 16px 52px; }
.hero-wrap { overflow: hidden; transition: max-height .4s ease .05s, margin .4s ease .05s;
  max-height: 440px; margin-bottom: 14px; }
.hero-wrap.is-collapsed { max-height: 0; margin-bottom: 0; }
.hero-head {
  font-family: var(--font-display); font-weight: 400; font-size: clamp(40px, 8.5vw, 68px);
  line-height: 0.92; letter-spacing: 0.01em; color: var(--text); margin: 0;
  transform-origin: 50% 135%;
  transition: transform .46s cubic-bezier(.6,.05,.95,.3), opacity .4s ease;
}
.hero-head.is-sucking { transform: translateY(64px) scale(0.04); opacity: 0; }
.hero-head .caret { color: var(--green); margin-left: 2px; display: inline-block; animation: jb-blink .8s steps(1) infinite; }
.hero-sub { font-size: 17px; color: var(--text-2); margin: 14px 0 30px;
  transition: opacity .4s ease, transform .4s ease; }
.hero-sub.is-sucking { opacity: 0; transform: translateY(16px); }

.search-card { display: flex; gap: 10px; max-width: 820px; margin: 0 auto; text-align: left;
  background: var(--surface); border: 1px solid var(--border); border-radius: 24px; padding: 10px;
  box-shadow: 0 16px 50px rgba(0,0,0,0.12); }
.search-field { flex: 1; min-width: 0; display: flex; align-items: center; gap: 15px;
  padding: 20px 22px; border-radius: 18px; background: var(--surface-2); }
.search-field i { font-size: 28px; color: var(--text-2); flex: none; }
.search-field input { flex: 1; min-width: 0; border: none; background: transparent; outline: none;
  font: inherit; font-size: 21px; color: var(--text); }
.search-catbtn { flex: none; display: inline-flex; align-items: center; gap: 10px; padding: 0 22px;
  border-radius: 18px; border: 1px solid var(--border); background: var(--surface); color: var(--text);
  font: inherit; font-size: 17px; font-weight: 600; cursor: pointer; white-space: nowrap; }
.search-catbtn:hover { background: var(--surface-2); }
.search-catbtn i { font-size: 16px; color: var(--text-2); }

/* ------------------------------------------------------------- categories */
.section-bg { background: var(--bg); }
.cat-head { text-align: center; margin-bottom: 28px; }
.cat-head h2, .sec-head h2 {
  font-family: var(--font-display); font-weight: 400; letter-spacing: 0.02em;
  color: var(--text); margin: 0; line-height: 1;
}
.cat-head h2 { font-size: clamp(21px, 5.5vw, 42px); }

.cat-grid-desktop { max-width: 1180px; margin: 0 auto; }
.cat-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px 8px; }
.cat-btn {
  appearance: none; border: none; background: transparent; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 10px 2px; width: 100px;
  text-decoration: none;
}
.cat-circle {
  width: 88px; height: 88px; border-radius: 999px; flex: none;
  display: flex; align-items: center; justify-content: center;
  background: color-mix(in srgb, var(--accent) 16%, transparent);
  transition: background .15s ease;
}
.cat-svg { width: 58%; height: 58%; display: block; object-fit: contain;
  transition: transform .15s ease; }
.cat-grid-desktop .cat-svg { width: 67%; height: 67%; }
.cat-btn:hover .cat-circle { background: color-mix(in srgb, var(--accent) 26%, transparent); }
.cat-btn:hover .cat-svg { transform: scale(1.06); }
.cat-label { font-size: 12.5px; font-weight: 600; color: var(--text); text-align: center; line-height: 1.2;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.cat-carousel { display: grid; grid-auto-flow: column; grid-template-rows: repeat(2, auto);
  grid-auto-columns: 74px; gap: 18px 10px; padding: 4px 2px 2px; scroll-snap-type: x proximity; }
.cat-btn--m { width: 100%; gap: 9px; padding: 2px; scroll-snap-align: start; }
.cat-circle--m { width: 58px; height: 58px; font-size: 27px; }
.cat-btn--m .cat-label { font-size: 11.5px; line-height: 1.15; }
.cat-progress-track { max-width: 120px; margin: 14px auto 0; height: 4px; border-radius: 999px;
  background: var(--surface-2); position: relative; overflow: hidden; }
.cat-progress-thumb { position: absolute; top: 0; left: 0; height: 100%; width: 40%;
  border-radius: 999px; background: var(--border-strong); }

/* ----------------------------------------------------------- just updated */
.sec-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  margin-bottom: 16px; flex-wrap: wrap; }
.sec-head-l { display: flex; align-items: baseline; gap: 11px; flex-wrap: wrap; }
.sec-head h2 { font-size: clamp(19px, 4.5vw, 34px); }
.sec-head .cap { font-size: 13px; color: var(--text-3); }
.link-green { font-size: 13px; font-weight: 600; color: var(--green); text-decoration: none;
  display: inline-flex; align-items: center; gap: 5px; }

.listing-list { display: flex; flex-direction: column; gap: 12px; }
.listing-row { display: flex; gap: 20px; align-items: center; padding: 21px;
  border: 1px solid var(--border); border-radius: 20px; background: var(--surface); text-decoration: none;
  transition: border-color .15s ease; }
.listing-row:hover { border-color: var(--border-strong); }
.listing-list { padding-left: 56px; }
.listing-row { position: relative; }
.listing-row .fav-btn { position: absolute; left: -56px; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border: none; background: transparent; }
.listing-row .fav-btn i { font-size: 24px; }
.listing-thumb { flex: none; width: 168px; height: 118px; border-radius: 14px; overflow: hidden;
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; }
.thumb-label { font-family: ui-monospace, Menlo, monospace; font-size: 10px; letter-spacing: .02em;
  color: var(--text-3); text-align: center; }
.listing-main { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 9px; }
.listing-title { font-weight: 700; font-size: 22px; color: var(--text); }
.listing-meta { font-size: 14.5px; color: var(--text-2); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.listing-meta b { color: var(--text); font-weight: 600; }
.listing-chips { display: flex; flex-wrap: wrap; gap: 7px; align-items: center; }
.listing-right { flex: none; display: flex; align-items: center; gap: 12px; }
.listing-price-wrap { text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
.listing-price { font-family: var(--font-display); font-size: 36px; line-height: 1; color: var(--text); }
.promo-was { font-size: 15px; color: var(--text-3); text-decoration: line-through; line-height: 1; }
.listing-price.promo-now, .card-price.promo-now { color: var(--green); }
.card-price-promo { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.promo-code { display: inline-flex; align-items: center; gap: 5px; font-size: 13px; font-weight: 700;
  color: var(--text); background: var(--surface-2); border: 1px dashed var(--border-strong);
  padding: 4px 9px; border-radius: 8px; width: max-content; }
.promo-reveal { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700;
  color: var(--on-amber); background: var(--amber); border: none; border-radius: 8px;
  padding: 6px 11px; cursor: pointer; width: max-content; }
.promo-reveal:hover { background: color-mix(in srgb, var(--amber) 90%, black); }

.fav-btn { width: 54px; height: 54px; flex: none; border-radius: 14px; border: 1px solid var(--border);
  background: var(--surface); color: var(--text-2); cursor: pointer; font-size: 24px;
  display: inline-flex; align-items: center; justify-content: center; transition: border-color .15s ease; }
.fav-btn:hover { border-color: var(--border-strong); }
.fav-btn.is-on { color: var(--tomato); }

/* mobile listing cards */
.listing-scroll-wrap { position: relative; }
.listing-scroll { display: flex; gap: 12px; overflow-x: auto; padding: 2px 2px 8px; scroll-snap-type: x proximity; }
.listing-scroll-fade { position: absolute; top: 0; right: 0; bottom: 8px; width: 42px; pointer-events: none;
  background: linear-gradient(to right, transparent, var(--bg) 88%); }
.listing-card { scroll-snap-align: start; flex: 0 0 170px; display: flex; flex-direction: column;
  border: 1px solid var(--border); border-radius: 16px; background: var(--surface); overflow: hidden; text-decoration: none; }
.card-thumb { position: relative; width: 100%; aspect-ratio: 1/1; display: flex; align-items: center;
  justify-content: center; border-bottom: 1px solid var(--border); }
.card-thumb .thumb-label { font-size: 10px; }
.fav-btn--float { position: absolute; top: 8px; right: 8px; width: 38px; height: 38px; border-radius: 999px;
  border: none; background: color-mix(in srgb, var(--surface) 90%, transparent); box-shadow: 0 1px 5px rgba(0,0,0,0.18);
  font-size: 18px; }
.card-body { display: flex; flex-direction: column; gap: 5px; padding: 11px 12px 13px; }
.card-title { font-weight: 700; font-size: 14.5px; line-height: 1.25; color: var(--text);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 36px; }
.card-price { font-family: var(--font-display); font-size: 25px; line-height: 1; color: var(--text); }
.card-cat1 { font-size: 11.5px; color: var(--text-2); line-height: 1.3; }
.card-cat2 { font-size: 11px; color: var(--text-3); line-height: 1.3; }
.card-by, .card-fresh { font-size: 11px; color: var(--text-3); line-height: 1.35; }

/* ----------------------------------------------------------- interviews */
.interviews { background: #141210; }
.interviews .inner { max-width: 1120px; margin: 0 auto; padding: 54px 16px 64px; }
.eyebrow-dark { font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: #ABA398; margin-bottom: 8px; }
.iv-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; }
.iv-card { display: flex; flex-direction: column; gap: 14px; text-decoration: none; }
.iv-tile { position: relative; width: 100%; aspect-ratio: 5/4; border-radius: 16px; overflow: hidden;
  border: 1px solid #322E27; background-color: #2A2620;
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 9px);
  transition: box-shadow .18s ease; }
.iv-card:hover .iv-tile { box-shadow: inset 0 0 0 999px rgba(0,0,0,0.35); }
.iv-scrim { position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0) 26%, rgba(0,0,0,0) 56%, rgba(0,0,0,0.62)); }
.iv-name { position: absolute; top: 14px; left: 14px; right: 14px; color: #fff; font-weight: 700;
  font-size: 17px; line-height: 1.15; text-shadow: 0 1px 4px rgba(0,0,0,0.5); }
.iv-co { position: absolute; bottom: 14px; left: 14px; right: 14px; color: #fff; font-weight: 600;
  font-size: 13.5px; text-shadow: 0 1px 4px rgba(0,0,0,0.55); }
.iv-sum { font-weight: 600; font-size: 15px; line-height: 1.35; color: #F2EEE7; }
.iv-date { font-size: 12px; color: #ABA398; }
.iv-more { font-size: 13px; font-weight: 700; color: #F5B731; display: inline-flex; align-items: center; gap: 5px; }

/* --------------------------------------------------------------- blog */
.blog { background: var(--bg); border-top: 1px solid var(--border); }
.blog .inner { max-width: 1120px; margin: 0 auto; padding: 56px 16px; }
.eyebrow { font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--text-3); margin-bottom: 8px; }
.see-all { display: inline-flex; align-items: center; gap: 6px; margin: 0 0 22px;
  font-size: 13.5px; font-weight: 700; color: var(--green); text-decoration: none; }
.see-all i { font-size: 15px; }
.see-all:hover { color: var(--green-press); }
.see-all--dark { color: #33C078; }
.see-all--dark:hover { color: #5FD894; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(470px, 1fr)); gap: 30px; }
.blog-card { display: flex; gap: 24px; background: var(--surface); border: 1px solid var(--border);
  border-radius: 20px; padding: 24px; }
.blog-thumb { flex: none; width: 168px; height: 168px; border-radius: 14px; overflow: hidden;
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; }
.blog-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 10px; }
.blog-meta { font-size: 12.5px; color: var(--text-2); line-height: 1.4; }
.blog-meta a { color: var(--green); text-decoration: none; font-weight: 600; }
.blog-title { font-weight: 700; font-size: 20px; line-height: 1.25; color: var(--text); text-decoration: none; }
.blog-title:hover { color: var(--green); }
.blog-sum { font-size: 14.5px; color: var(--text-2); line-height: 1.5; }
.blog-more { margin-top: auto; font-size: 13.5px; font-weight: 600; color: var(--green); text-decoration: none;
  display: inline-flex; align-items: center; gap: 5px; }
@media (max-width: 759.98px) { .blog-grid { grid-template-columns: 1fr; } .blog-card { flex-direction: column; gap: 16px; } .blog-thumb { width: 100%; height: 180px; } }

/* --------------------------------------------------------------- footer */
.site-footer { background: #141210; color: #F2EEE7; }
.footer-top { max-width: 1180px; margin: 0 auto; padding: 60px 22px 56px;
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 34px 56px; }
.footer-lockup { display: flex; align-items: center; gap: clamp(14px, 2vw, 24px); margin-right: 8px; }
.footer-mark { width: 180px; height: 180px; border-radius: 30px; flex: none;
  object-fit: contain; display: block; }
.footer-word { font-family: var(--font-display); font-weight: 400; font-size: clamp(96px, 11vw, 150px);
  line-height: 0.8; letter-spacing: .01em; color: #F2EEE7; }
.footer-word .blt { color: #33C078; }
.footer-col { display: flex; flex-direction: column; gap: 14px; }
.footer-col a { color: #ABA398; text-decoration: none; font-size: 15px; }
.footer-col a:hover { color: #F2EEE7; }
.footer-col a.head { color: #F2EEE7; font-weight: 600; }
.footer-col a.head:hover { color: #33C078; }
.footer-legal { border-top: 1px solid #2B2720; }
.footer-legal .inner { max-width: 1180px; margin: 0 auto;
  padding: 18px 22px calc(18px + env(safe-area-inset-bottom));
  display: flex; flex-wrap: wrap; gap: 8px 22px; align-items: center; justify-content: center;
  text-align: center; font-size: 13px; }
.footer-legal a { color: #ABA398; text-decoration: none; }
.footer-legal a:hover { color: #F2EEE7; }
.footer-legal .copy { color: #ABA398; }
.footer-legal a.head { color: #F2EEE7; font-weight: 600; }
.footer-legal a.head:hover { color: #33C078; }
@media (max-width: 759.98px) {
  .hero-inner { padding: 20px 16px; transition: padding .4s ease .05s; }
  .hero-band:has(.hero-wrap.is-collapsed) .hero-inner { padding: 0; }
  .hero-band:has(.hero-wrap.is-collapsed) { border-bottom: 0; }
  .footer-mark { width: 72px; height: 72px; border-radius: 16px; }
  .footer-word { font-size: 40px; }
  .footer-top { gap: 26px 22px; align-items: flex-start; }
  .footer-lockup { flex-basis: 100%; justify-content: center; margin-right: 0; }
  .footer-col { align-items: center; text-align: center; }
  .listing-card { flex-basis: 150px; }
}

/* ------------------------------------------------------------- mobile nav */
.mobile-nav { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; width: 100%;
  background: color-mix(in srgb, var(--bg) 94%, transparent);
  backdrop-filter: saturate(1.5) blur(12px); -webkit-backdrop-filter: saturate(1.5) blur(12px);
  border-top: 1px solid var(--border);
  padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
  display: flex; align-items: flex-end; justify-content: space-around; }
.nav-item { display: flex; flex-direction: column; align-items: center; gap: 3px; background: none;
  border: none; cursor: pointer; color: var(--text-2); font: inherit; min-width: 52px; padding: 2px 0; text-decoration: none; }
.nav-item i { font-size: 24px; }
.nav-item span { font-size: 10.5px; font-weight: 600; }
.nav-item.is-active { color: var(--green); }
.nav-item.is-active span { font-weight: 700; }
.nav-fab { display: flex; align-items: center; justify-content: center; width: 56px; height: 56px;
  margin: 0 2px -16px; border-radius: 999px; border: none; background: var(--green); color: var(--on-green);
  cursor: pointer; box-shadow: 0 6px 18px color-mix(in srgb, var(--green) 45%, transparent); font-size: 27px; flex: none; }
@media (max-width: 759px){ body { padding-bottom: 76px; } }

/* --------------------------------------------------------- cookie consent */
.cookiebar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  background: var(--surface); border-top: 1px solid var(--border); box-shadow: 0 -8px 32px rgba(0,0,0,0.12);
  padding: 14px 16px calc(14px + env(safe-area-inset-bottom));
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap; justify-content: center; }
.cookiebar p { margin: 0; font-size: 13.5px; color: var(--text-2); }
.cookiebar .actions { display: flex; gap: 10px; }
.cookiebar .btn { min-height: 42px; font-size: 14px; padding: 0 16px; }
.cookiebar[hidden] { display: none; }
