/* ════════════════════════════════════════════════════════════════════
   Art Guides — shared stylesheet
   Single source of truth for tokens + components across all pages.
   Wireframe reference: /wireframes/storefront.html (do NOT diverge).
════════════════════════════════════════════════════════════════════ */

/* ─── tokens (lifted from Surroundings Guide source) ────────── */
:root {
  --cream: rgb(251,248,242);
  --paper: rgb(244,239,230);
  --ink: rgb(26,24,21);
  --ink-soft: rgb(111,106,96);
  --rule: rgb(184,177,164);
  --yellow: rgb(244,208,63);
  --terra: rgb(184,71,45);
  --sage: rgb(200,218,206);
  --moss: rgb(124,145,129);
  --steel: rgb(110,132,151);
  --tan: rgb(212,196,168);
  --tan-deep: rgb(184,168,140);
  --olive: rgb(157,171,164);
}

*,*:before,*:after { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--cream); }
html,body { margin:0; padding:0; }
body {
  background: var(--cream);
  font-family: "Geist", system-ui, sans-serif;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

/* page container — full-width on phone, capped on desktop */
.page {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  background: var(--cream);
  position: relative;
}

.inner { padding: 22px 22px 22px; background: var(--cream); }
.mono { font-family: "Geist Mono", ui-monospace, monospace; }
.ph-row {
  display:flex; justify-content:space-between; align-items:center;
  font-family:"Geist Mono"; font-size:9.5px; letter-spacing:1.33px;
  color: var(--ink-soft);
}

a { color: inherit; text-decoration: none; }
a:focus-visible { outline: 2px solid var(--terra); outline-offset: 2px; }
code { font-family: "Geist Mono", ui-monospace, monospace; font-size: 0.92em; }

/* ─── shared wireframe blocks ───────────────────────────────── */
.imgslot {
  position: relative;
  background:
    repeating-linear-gradient(135deg, rgba(26,24,21,.07) 0 8px, transparent 8px 18px),
    var(--tan);
  overflow: hidden;
  display:flex; align-items:center; justify-content:center;
}
.imgslot.dark   { background: repeating-linear-gradient(135deg, rgba(255,255,255,.05) 0 8px, transparent 8px 18px), var(--ink); }
.imgslot.moss   { background: repeating-linear-gradient(135deg, rgba(0,0,0,.06) 0 8px, transparent 8px 18px), var(--moss); }
.imgslot.steel  { background: repeating-linear-gradient(135deg, rgba(0,0,0,.06) 0 8px, transparent 8px 18px), var(--steel); }
.imgslot.olive  { background: repeating-linear-gradient(135deg, rgba(0,0,0,.06) 0 8px, transparent 8px 18px), var(--olive); }
.imgslot.sage   { background: repeating-linear-gradient(135deg, rgba(0,0,0,.06) 0 8px, transparent 8px 18px), var(--sage); }
.imgslot.neutral { background: repeating-linear-gradient(135deg, rgba(26,24,21,.06) 0 8px, transparent 8px 18px), rgba(26,24,21,.09); }
.imgslot.neutral .lbl { color: rgba(26,24,21,.55); }
.imgslot .lbl {
  font-family:"Geist Mono"; font-size:9px; letter-spacing:1.26px;
  color: rgba(251,248,242,.78); text-transform:uppercase;
  padding: 8px 10px; text-align:center;
}
.imgslot.imaged { background: none; }
.imgslot.imaged img {
  display:block; width:100%; height:100%;
  object-fit:cover; object-position:center top;
}
.imgslot.sage .lbl, .imgslot.tan .lbl,
.imgslot:not(.dark):not(.moss):not(.steel):not(.olive) .lbl { color: rgba(26,24,21,.55); }

/* ─── carousel (storefront guide-cards) ─────────────────────── */
.carousel { position: relative; overflow: hidden; }
.carousel .slides {
  display: flex; width: 100%; height: 100%;
  transition: transform .32s ease-out;
  will-change: transform;
}
.carousel .slides > img {
  flex: 0 0 100%;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
}
.carousel .dots {
  position: absolute; left: 50%; bottom: 8px;
  transform: translateX(-50%);
  display: flex; gap: 5px;
  pointer-events: none;
}
.carousel .dots > span {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(251,248,242,.45);
  box-shadow: 0 0 0 1px rgba(26,24,21,.25);
  transition: background .2s ease;
}
.carousel .dots > span.on { background: rgba(251,248,242,1); }
.carousel[data-interactive="true"] { touch-action: pan-y; cursor: grab; user-select: none; }
.carousel[data-interactive="true"]:active { cursor: grabbing; }
.carousel[data-interactive="true"] .slides > img { -webkit-user-drag: none; user-select: none; pointer-events: none; }
.carousel[data-interactive="true"] .dots { pointer-events: auto; bottom: 10px; gap: 7px; }
.carousel[data-interactive="true"] .dots > span { width: 8px; height: 8px; cursor: pointer; }

.stamp {
  display:inline-block;
  border:1px solid var(--ink);
  color: var(--ink);
  font-family:"Geist Mono"; font-weight:500; font-size:8.5px; letter-spacing:1.36px;
  padding:3px 8px;
  text-transform:uppercase;
}
.stamp.terra { border-color: var(--terra); color: var(--terra); }

.navbtn {
  display:flex; align-items:center; justify-content:space-between;
  border:1px solid var(--ink);
  padding: 10px 14px;
  height: 38px;
  color: var(--ink);
  font-family:"Geist Mono"; font-size:10.5px; letter-spacing:.63px;
  background: transparent;
}
.navbtn.ghost { border-color: rgba(26,24,21,.45); color: var(--ink-soft); }

/* ─── Buy CTA ───────────────────────────── */
.buy-cta {
  background: var(--terra);
  border: 1px dashed rgba(251,248,242,.45);
  padding: 16px 14px;
  display: flex; flex-direction: column; gap: 6px; align-items: center;
  color: var(--cream); text-align: center;
}
.buy-cta .big {
  font-family:"Geist"; font-weight:700; font-size:14.5px; letter-spacing: 0.4px;
}
.buy-cta .placeholder {
  font-family:"Geist Mono"; font-weight:500; font-size: 8.5px;
  letter-spacing:1.33px; text-transform: uppercase; color: rgba(251,248,242,.72);
}
.buy-cta .arr { font-family:"Geist Mono"; }
.buy-cta.unavailable {
  background: var(--ink-soft);
  border-color: rgba(251,248,242,.35);
  cursor: not-allowed;
}
.buy-cta.unavailable .big { color: var(--cream); }
.buy-cta.unavailable .placeholder { color: rgba(251,248,242,.78); }

/* ─── info-grid (k/v cells) ─────────────────────────────────── */
.info-grid { display:flex; border: 1px solid var(--ink); }
.info-grid > .cell {
  flex:1; padding: 12px 6px; display:flex; flex-direction:column; gap:5px; align-items:center;
  border-right: 1px solid var(--ink);
  text-align:center;
}
.info-grid > .cell:last-child { border-right: none; }
.info-grid .k {
  font-family:"Geist Mono"; font-size:8.5px; letter-spacing:1.19px;
  color: var(--ink-soft); text-transform:uppercase;
}
.info-grid .v {
  font-family:"Geist"; font-weight: 600; font-size: 16px;
  color: var(--ink); line-height: 1.15; letter-spacing: -0.1px;
}

/* ═══════════════════════════════════════════════════════════
   01 — STOREFRONT
═══════════════════════════════════════════════════════════ */
.store-hero {
  background: var(--cream);
  padding: 24px 22px 28px;
  border-bottom: 1px solid var(--rule);
}
.store-hero .top {
  display:flex; justify-content:space-between; align-items:center;
  font-family:"Geist Mono"; font-size: 9.5px; letter-spacing: 1.33px; color: var(--ink);
}
.store-hero h1 {
  font-family:"Geist"; font-weight:700; font-size: 46px; line-height: .96;
  letter-spacing:-1.2px; margin: 28px 0 6px; color: var(--ink);
}
.store-hero h1 .alt { color: var(--terra); display:block; }
.store-hero .sub {
  font-family:"Geist"; font-weight: 500; font-size: 15px;
  color: var(--ink-soft); margin-top: 14px; max-width: 320px; line-height: 1.42;
}
.guide-stack {
  background: var(--cream);
  padding: 6px 22px 22px;
  display: flex; flex-direction: column; gap: 16px;
}
.guide-stack .card-marker {
  display:flex; justify-content:space-between; align-items:center;
  font-family:"Geist Mono"; font-size: 10px; letter-spacing: 1.4px;
  color: var(--ink-soft);
  padding: 10px 0 0;
  text-transform: uppercase;
}
.guide-stack .card-marker .arr {
  font-size: 14px; letter-spacing: 0; line-height: 1;
}
.guide-card {
  border: 1px solid var(--ink);
  padding: 14px 14px 16px;
  background: var(--paper);
  display:flex; flex-direction:column; gap: 10px;
}
.guide-card .pic { height: 140px; }
.guide-card .row1 {
  display:flex; justify-content:space-between; align-items:baseline;
  font-family:"Geist Mono"; font-size: 8.5px; letter-spacing: 1.36px;
  color: var(--ink-soft); text-transform: uppercase;
}
.guide-card .row1 .lhs { color: var(--terra); font-weight: 600; }
.guide-card h3 {
  font-family:"Geist"; font-weight:700; font-size: 18px; letter-spacing: -0.18px;
  margin: 2px 0 4px; line-height: 1.16;
}
.guide-card .lede {
  font-family:"Geist"; font-weight: 600; font-size: 13px;
  color: var(--ink); margin: 0; line-height: 1.42;
}
.guide-card p {
  font-size: 11.5px; line-height: 1.5; margin: 0; color: var(--ink);
}
.guide-card .cta-row {
  display:flex; justify-content:space-between; align-items:center; margin-top: 6px;
  padding-top: 10px; border-top: 1px dotted rgba(26,24,21,.3);
}
.guide-card .price {
  font-family:"Geist"; font-weight: 700; font-size: 20px; font-variant-numeric: tabular-nums;
  color: var(--terra); line-height: 1; letter-spacing: -0.2px;
}
.guide-card .price .ph {
  font-family:"Geist Mono"; font-size: 8.5px; letter-spacing: 1.2px; color: var(--ink-soft);
  text-transform: uppercase; margin-left: 4px; font-style:normal;
}
.guide-card .view {
  font-family:"Geist"; font-weight: 700; font-size: 18px; letter-spacing: -0.2px;
  color: var(--terra); line-height: 1;
}
.store-section {
  padding: 22px 22px; background: var(--cream);
}
.store-section h2 {
  font-family:"Geist"; font-weight: 700; font-size: 24px;
  line-height: 1.05; letter-spacing: -0.5px; margin: 0 0 16px;
}
.why-list { display:flex; flex-direction: column; gap: 12px; margin: 6px 0 4px; }
.why-list .item { display:flex; gap: 12px; align-items: flex-start; }
.why-list .num {
  font-family:"Geist Mono"; font-weight: 700; font-size: 10.5px; letter-spacing: 1.3px;
  color: var(--terra); line-height: 1; flex: 0 0 26px; padding-top: 5px;
}
.why-list .body { font-size: 11.5px; line-height: 1.5; }
.why-list .body strong { font-weight: 600; }

.footer-links {
  background: var(--ink); color: var(--cream);
  padding: 22px 22px 26px;
}
.footer-links .lbl {
  font-family:"Geist Mono"; font-size: 9.5px; letter-spacing: 1.33px;
  color: rgba(251,248,242,.55); text-transform: uppercase; margin-bottom: 10px;
}
.footer-links ul { list-style:none; padding:0; margin: 0 0 16px; }
.footer-links li {
  font-family:"Geist"; font-size: 13px;
  padding: 9px 0; border-bottom: 1px solid rgba(251,248,242,.15);
  display:flex; justify-content:space-between; align-items:center;
}
.footer-links a {
  display:flex; justify-content:space-between; align-items:center;
  width: 100%; color: var(--cream);
}
.footer-links .arr { font-family:"Geist Mono"; color: rgba(251,248,242,.6); }
.footer-links .signoff {
  font-family:"Geist Mono"; font-weight: 500; font-size: 9.5px; letter-spacing: 1.4px;
  color: rgba(251,248,242,.5); text-transform: uppercase;
  text-align:center; margin-top: 18px;
}

/* ═══════════════════════════════════════════════════════════
   02–04 — GUIDE DETAIL
═══════════════════════════════════════════════════════════ */
.page.detail { padding-bottom: calc(72px + env(safe-area-inset-bottom)); }
.detail .hero { padding: 18px 22px 0; background: var(--cream); }
.detail .hero .top {
  display:flex; justify-content:space-between; align-items:center;
  font-family:"Geist Mono"; font-size: 9.5px; letter-spacing:1.33px; color: var(--ink-soft);
}
.detail .hero .back {
  font-family:"Geist Mono"; font-size: 10.5px; letter-spacing: 1px;
  color: var(--ink); display:flex; align-items:center; gap:6px;
}
.detail .tag {
  font-family:"Geist Mono"; font-weight:500; font-size:9.5px; letter-spacing:1.71px;
  color: var(--terra); text-transform: uppercase; margin: 14px 0 4px;
}
.detail h1 {
  font-family:"Geist"; font-weight: 700; font-size: 28px;
  line-height: 1.05; letter-spacing: -0.6px; margin: 4px 0 6px;
}
.detail .subtitle {
  font-family:"Geist"; font-size: 12.5px; color: var(--ink-soft); margin: 0 0 14px;
  font-weight: 500; letter-spacing: 0.3px;
}
.detail .hero-pic { height: 170px; margin: 0 22px; }
.detail .body {
  padding: 18px 22px 6px; background: var(--cream);
}
.detail .body p {
  font-family:"Geist"; font-size: 12.5px; line-height: 1.55; margin: 0 0 12px;
}
.detail .body .note {
  font-family:"Geist"; font-weight: 600; font-size: 13px; color: var(--ink);
  line-height: 1.45; margin: 14px 0 6px;
  border-left: 2px solid var(--terra); padding: 2px 0 2px 12px;
}
.detail .body h3 {
  font-family:"Geist"; font-weight:700; font-size: 11.5px; letter-spacing: 1.3px;
  text-transform: uppercase; color: var(--ink); margin: 18px 0 8px;
}
.detail .body ul.inside {
  list-style: none; padding: 0; margin: 0 0 12px;
}
.detail .body ul.inside li {
  padding: 9px 0; border-bottom: 1px dotted rgba(26,24,21,.3);
  display:flex; gap: 10px; align-items: baseline;
  font-size: 11.5px;
}
.detail .body ul.inside li .n {
  font-family:"Geist Mono"; font-weight: 600; font-size: 9.5px;
  letter-spacing: 1.1px; color: var(--terra); flex: 0 0 28px;
}
.detail .body ul.inside li .tag-mini {
  font-family:"Geist Mono"; font-size: 8.5px; letter-spacing: 1.2px;
  color: var(--ink-soft); text-transform: uppercase; margin-left: auto;
}
.detail .preview-grid {
  display:grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px; margin: 4px 0 12px;
}
.detail .preview-grid .imgslot { height: 86px; }
.detail .preview-grid .lbl { font-size: 8px; letter-spacing: 1px; padding: 4px 6px; }
.detail .cta-block {
  padding: 18px 22px 22px; background: var(--cream); border-top: 1px solid var(--rule);
}
.detail .cta-block .price-row {
  display:flex; justify-content:space-between; align-items:baseline; margin: 0 0 12px;
}
.detail .cta-block .price-row .price {
  font-family:"Geist"; font-weight: 700; font-size: 28px; color: var(--ink);
  line-height: 1; letter-spacing: -0.4px; font-variant-numeric: tabular-nums;
}
.detail .cta-block .price-row .price .ph {
  font-family:"Geist Mono"; font-size: 9px; letter-spacing: 1.2px; color: var(--ink-soft);
  text-transform: uppercase; margin-left: 6px; font-style: normal;
}
.detail .cta-block .price-row .delivery {
  font-family:"Geist Mono"; font-size: 9px; letter-spacing: 1.2px; color: var(--ink-soft);
  text-transform: uppercase; text-align: right; line-height: 1.5;
  max-width: 150px;
}
.detail .cta-block .links {
  display:flex; gap: 16px; margin-top: 14px;
  font-family:"Geist Mono"; font-size: 9.5px; letter-spacing: 1.2px;
  color: var(--ink-soft); text-transform: uppercase;
  justify-content: center;
}
.detail .cta-block .links a { border-bottom: 1px solid var(--ink-soft); padding-bottom: 1px; }

/* ═══════════════════════════════════════════════════════════
   05 — FAQ
═══════════════════════════════════════════════════════════ */
.faq .inner { padding-top: 18px; }
.faq h1 {
  font-family:"Geist"; font-weight: 700; font-size: 32px;
  line-height: 1; letter-spacing: -0.6px; margin: 14px 0 22px;
}
.faq .qa {
  border-top: 1px solid var(--rule);
  padding: 14px 0 16px;
}
.faq .qa:last-of-type { border-bottom: 1px solid var(--rule); }
.faq details.qa > summary { list-style: none; cursor: pointer; outline: none; }
.faq details.qa > summary::-webkit-details-marker { display: none; }
.faq details.qa > summary::marker { content: ""; }
.faq details.qa .q .plus::before { content: "+"; }
.faq details.qa[open] .q .plus::before { content: "−"; }
.faq .qa .q {
  display:flex; justify-content: space-between; align-items: flex-start; gap: 14px;
  font-family:"Geist"; font-weight: 600; font-size: 13.5px; line-height: 1.35; color: var(--ink);
}
.faq .qa .q .plus {
  font-family:"Geist Mono"; font-weight: 500; color: var(--terra); flex: 0 0 16px;
  text-align: right; font-size: 16px; line-height: 1;
}
.faq .qa .a {
  font-family:"Geist"; font-size: 11.5px; line-height: 1.5; color: var(--ink-soft);
  margin: 8px 0 0; padding-right: 22px;
}

/* ═══════════════════════════════════════════════════════════
   06 — SHIPPING
═══════════════════════════════════════════════════════════ */
.ship h1 {
  font-family:"Geist"; font-weight: 700; font-size: 32px;
  line-height: 1; letter-spacing: -0.6px; margin: 14px 0 14px;
}
.ship .lede {
  font-family:"Geist"; font-weight:500; font-size: 14.5px; line-height: 1.45; margin: 0 0 18px;
}
.ship .row {
  display:flex; gap: 14px; padding: 14px 0;
  border-top: 1px solid var(--rule);
}
.ship .row:last-of-type { border-bottom: 1px solid var(--rule); }
.ship .row .lhs {
  flex: 0 0 84px;
  font-family:"Geist Mono"; font-size: 9.5px; letter-spacing: 1.33px;
  color: var(--ink-soft); text-transform: uppercase; padding-top: 2px;
}
.ship .row .rhs h4 {
  font-family:"Geist"; font-weight: 600; font-size: 13px; margin: 0 0 4px;
}
.ship .row .rhs p {
  font-family:"Geist"; font-size: 11.5px; line-height: 1.5; margin: 0; color: var(--ink-soft);
}
.ship .yellow-cta {
  background: var(--terra); color: var(--cream); padding: 12px 14px; display:flex; gap: 14px; align-items:baseline;
  font-family:"Geist Mono"; font-weight:500; font-size:10.5px; letter-spacing:1.2px;
  margin: 20px 0 0;
}
.ship .yellow-cta .arr { margin-left:auto; }

/* ═══════════════════════════════════════════════════════════
   Sticky buy-bar (detail pages only, injected by main.js)
═══════════════════════════════════════════════════════════ */
.buy-bar-sticky {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  margin: 0 auto;
  max-width: 480px;
  background: var(--terra);
  color: var(--cream);
  /* bottom pad clears iPhone home indicator; bg extends through safe area */
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  display: flex; align-items: center; gap: 12px;
  font-family: "Geist", system-ui, sans-serif;
  z-index: 50;
  box-shadow: 0 -2px 12px rgba(0,0,0,.18);
  transform: translateZ(0);
}
.buy-bar-sticky .meta {
  display:flex; flex-direction: column; gap: 2px;
}
.buy-bar-sticky .label {
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 8.5px; letter-spacing: 1.33px; text-transform: uppercase;
  color: rgba(251,248,242,.7);
}
.buy-bar-sticky .price {
  font-weight: 700; font-size: 16px; letter-spacing: -0.2px;
  font-variant-numeric: tabular-nums;
}
.buy-bar-sticky .price .ph {
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 8.5px; letter-spacing: 1.2px; color: rgba(251,248,242,.65);
  margin-left: 4px; font-style: normal; text-transform: uppercase;
}
.buy-bar-sticky .buy {
  margin-left: auto;
  padding: 10px 16px;
  border: 1px solid rgba(251,248,242,.55);
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 10px; letter-spacing: 1.3px; text-transform: uppercase;
  color: var(--cream);
}
.buy-bar-sticky .buy:hover,
.buy-bar-sticky .buy:focus-visible { background: rgba(251,248,242,.12); }
.buy-bar-sticky.unavailable { background: var(--ink-soft); }
.buy-bar-sticky.unavailable .label { color: rgba(251,248,242,.7); }
.buy-bar-sticky.unavailable .status {
  margin-left: auto;
  padding: 10px 16px;
  border: 1px solid rgba(251,248,242,.4);
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 10px; letter-spacing: 1.3px; text-transform: uppercase;
  color: rgba(251,248,242,.85);
}

.guide-card .view.soon {
  color: var(--ink-soft);
}

/* ═══════════════════════════════════════════════════════════
   Cookie consent banner (mounted by main.js on first visit)
═══════════════════════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  margin: 0 auto;
  max-width: 480px;
  background: var(--cream);
  border-top: 2px solid var(--terra);
  padding: 14px 18px calc(14px + env(safe-area-inset-bottom));
  z-index: 1000;
  font-family: "Geist", system-ui, sans-serif;
  color: var(--ink);
  box-shadow: 0 -4px 14px rgba(26,24,21,.10);
}
.cookie-banner .msg {
  font-size: 12.5px; line-height: 1.5;
  margin: 0 0 12px;
}
.cookie-banner .msg strong { font-weight: 700; }
.cookie-banner .actions {
  display: flex; align-items: center; gap: 8px;
}
.cookie-banner .btn {
  font-family: "Geist", system-ui, sans-serif;
  font-size: 12px; font-weight: 600;
  padding: 10px 12px;
  border: 1px solid var(--terra);
  border-radius: 0;
  cursor: pointer;
  letter-spacing: 0.02em;
  flex: 1 1 0; min-width: 0;
  text-align: center;
  background: transparent;
  color: var(--terra);
}
.cookie-banner .btn.primary {
  background: var(--terra); color: var(--cream);
}
.cookie-banner .link {
  margin-left: 6px;
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 9px; letter-spacing: 1.2px;
  color: var(--ink-soft);
  text-transform: uppercase;
  border-bottom: 1px solid var(--ink-soft);
  padding-bottom: 1px;
  white-space: nowrap;
}
.cookie-banner .link:hover { color: var(--ink); border-color: var(--ink); }
body.consent-pending .buy-bar-sticky {
  bottom: var(--cookie-h, 120px);
}

.cookie-settings-floating {
  display: block;
  margin: 0;
  padding: 22px;
  width: 100%;
  background: none; border: none;
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 9.5px; letter-spacing: 1.2px;
  color: var(--ink-soft);
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
}
.cookie-settings-floating:hover { color: var(--ink); }

/* ─── desktop centering (≥481px): paper around the cream card ─── */
@media (min-width: 481px) {
  body { background: var(--paper); padding: 36px 0; }
  .page {
    zoom: 1.25;
    box-shadow: 0 2px 6px rgba(0,0,0,.08), 0 12px 30px rgba(0,0,0,.12);
  }
  .buy-bar-sticky { max-width: 600px; }
  .cookie-banner { max-width: 600px; }
}
