/* ============================================================
   ІСКРА — brutalist utilitarian retail.
   Paper #FFFFFF · ink #111111 · safety-orange #FF5A00 ·
   highlight electric-yellow #FFE600. Hard 2px edges, 0 radius.
   Anton display · IBM Plex Sans body · IBM Plex Mono labels.
   Mobile-first; base rules first, media overrides after.
   ============================================================ */

:root {
  --paper: #FFFFFF;
  --ink: #111111;
  --orange: #FF5A00;
  --yellow: #FFE600;
  --line: #111111;
  --muted: #4a4a4a;      /* >= 7:1 on white */
  --paper-2: #f3f3f1;    /* faint zebra */
  --bw: 2px;             /* hard border width */
  --shell: 1240px;
  --pad: 18px;
  --disp: "Anton", system-ui, sans-serif;
  --body: "IBM Plex Sans", system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }
html, body { overflow-x: clip; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: 12px 18px;
  font-family: var(--mono); text-transform: uppercase; font-size: 13px;
}
.skip:focus { left: 8px; top: 8px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.shell { width: 100%; max-width: var(--shell); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

/* ---------- display type ---------- */
h1, h2, h3 { font-family: var(--disp); font-weight: 400; letter-spacing: .01em; line-height: .95; margin: 0; text-transform: uppercase; }
h1 { font-size: clamp(40px, 9vw, 88px); }
h2 { font-size: clamp(26px, 5vw, 46px); }
h3 { font-size: clamp(17px, 2.4vw, 22px); }
p { margin: 0 0 1em; }

.mono { font-family: var(--mono); text-transform: uppercase; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--mono); font-weight: 600; text-transform: uppercase;
  font-size: 13px; letter-spacing: .04em; line-height: 1;
  padding: 15px 22px; border: var(--bw) solid var(--ink); border-radius: 0;
  text-decoration: none; cursor: pointer; background: var(--paper); color: var(--ink);
  transition: background .14s, color .14s, transform .08s;
}
.btn svg { width: 18px; height: 18px; }
.btn:active { transform: translate(1px, 1px); }
.btn-fill { background: var(--orange); color: var(--ink); border-color: var(--ink); }
.btn-fill:hover { background: var(--ink); color: var(--orange); }
.btn-line { background: var(--paper); color: var(--ink); }
.btn-line:hover { background: var(--ink); color: #fff; }
.btn-dark { background: var(--ink); color: #fff; border-color: #fff; }
.btn-dark:hover { background: var(--yellow); color: var(--ink); border-color: var(--ink); }
.btn-wide { width: 100%; }

/* ============================================================ HEADER */
.hdr {
  position: sticky; top: 0; z-index: 50;
  background: var(--paper);
  border-bottom: var(--bw) solid var(--ink);
}
.hdr-row { display: flex; align-items: center; gap: 14px; height: 64px; }
.logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.logo-mark { width: 30px; height: 30px; display: block; }
.logo-txt { display: flex; flex-direction: column; font-family: var(--disp); font-size: 22px; line-height: .9; letter-spacing: .02em; }
.logo-txt small { font-family: var(--mono); font-size: 9px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }
.logo-inv .logo-mark rect { fill: #fff; }
.logo-inv { color: #fff; }
.logo-inv .logo-txt small { color: #bdbdbd; }

.nav-main { display: none; margin-left: auto; }
.nav-main ul { display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-main a {
  font-family: var(--mono); font-size: 13px; font-weight: 500; text-transform: uppercase;
  letter-spacing: .03em; text-decoration: none; color: var(--ink);
  padding: 8px 12px; border: var(--bw) solid transparent;
}
.nav-main a:hover { background: var(--yellow); }
.nav-main a[aria-current="page"] { border-color: var(--ink); background: var(--orange); }

.hdr-act { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.hdr-age { font-family: var(--mono); font-weight: 600; font-size: 12px; background: var(--ink); color: #fff; padding: 6px 8px; }
.act-btn {
  position: relative; display: inline-flex; width: 44px; height: 44px;
  align-items: center; justify-content: center; color: var(--ink);
  border: var(--bw) solid var(--ink); background: var(--paper); text-decoration: none;
}
.act-btn:hover { background: var(--orange); }
.act-btn svg { width: 22px; height: 22px; }
.dot {
  position: absolute; top: -8px; right: -8px; min-width: 20px; height: 20px;
  display: none; align-items: center; justify-content: center; padding: 0 5px;
  background: var(--ink); color: var(--yellow); font-family: var(--mono); font-weight: 600;
  font-size: 11px; border: var(--bw) solid var(--ink);
}
.dot.on { display: inline-flex; }
.cart-link:hover .dot { background: #fff; color: var(--ink); }

.burger {
  width: 44px; height: 44px; display: inline-flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 5px;
  border: var(--bw) solid var(--ink); background: var(--paper); cursor: pointer;
}
.burger span { width: 22px; height: 2.5px; background: var(--ink); transition: transform .3s cubic-bezier(.5,0,.2,1), opacity .2s; }
.menu-open .burger span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-open .burger span:nth-child(2) { opacity: 0; }
.menu-open .burger span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* mobile menu — sibling of header, full-screen */
.m-menu {
  position: fixed; inset: 64px 0 0 0; z-index: 49;
  background: var(--ink); color: #fff;
  padding: 28px var(--pad) 40px;
  transform: translateY(-12px); opacity: 0; pointer-events: none;
  transition: opacity .3s ease, transform .35s cubic-bezier(.5,0,.2,1);
  overflow-y: auto;
}
.menu-open .m-menu { opacity: 1; transform: none; pointer-events: auto; }
.m-menu ul { list-style: none; margin: 0 0 24px; padding: 0; }
.m-menu li { border-bottom: var(--bw) solid #333; }
.m-menu ul a {
  display: block; padding: 16px 4px; color: #fff; text-decoration: none;
  font-family: var(--disp); font-size: 30px; text-transform: uppercase; letter-spacing: .02em;
  opacity: 0; transform: translateX(-14px);
  transition: opacity .3s ease, transform .3s ease;
  transition-delay: calc(var(--i, 0) * 55ms);
}
.menu-open .m-menu ul a { opacity: 1; transform: none; }
.m-menu ul a:hover, .m-menu ul a[aria-current="page"] { color: var(--orange); }
.m-tg {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); text-transform: uppercase; font-size: 13px; font-weight: 600;
  background: var(--orange); color: var(--ink); text-decoration: none;
  padding: 14px 20px; border: var(--bw) solid #fff;
}
.m-tg svg { width: 20px; height: 20px; }
.scrim { display: none; }

/* ============================================================ HERO */
.hero { border-bottom: var(--bw) solid var(--ink); }
.hero-in { display: grid; gap: 0; }
.hero-txt { padding: 36px 0 30px; }
.hero-kick { font-family: var(--mono); text-transform: uppercase; font-size: 11px; letter-spacing: .18em; color: var(--ink); margin: 0 0 16px; }
.hero h1 { font-size: clamp(54px, 16vw, 150px); line-height: .86; margin: 0 0 18px; }
.hero-dot { color: var(--orange); }
.hero-lead { font-size: 17px; max-width: 46ch; color: var(--ink); margin: 0 0 22px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 22px; }
.hero-age {
  display: inline-block; font-family: var(--mono); font-weight: 600; font-size: 11px;
  letter-spacing: .06em; background: var(--ink); color: #fff; padding: 8px 12px;
}
.hero-img { position: relative; margin: 0; border-top: var(--bw) solid var(--ink); background: var(--orange); }
.hero-img img { width: 100%; height: 320px; object-fit: cover; filter: grayscale(.05) contrast(1.05); }
.hero-tag {
  position: absolute; left: 0; bottom: 0;
  font-family: var(--mono); font-weight: 600; font-size: 12px; letter-spacing: .05em;
  background: var(--ink); color: var(--yellow); padding: 8px 12px; border-top: var(--bw) solid var(--ink); border-right: var(--bw) solid var(--ink);
}
/* black + orange diagonal stripe accent ribbon */
.hero-stripe {
  height: 16px;
  background: repeating-linear-gradient(45deg, var(--ink) 0 16px, var(--orange) 16px 32px);
  border-top: var(--bw) solid var(--ink);
}

/* ============================================================ VALUE ROW */
.vrow { background: var(--yellow); border-bottom: var(--bw) solid var(--ink); }
.vrow-in { display: grid; grid-template-columns: 1fr; }
.vrow-i { display: flex; align-items: center; gap: 12px; padding: 16px 0; border-bottom: var(--bw) solid var(--ink); }
.vrow-i:last-child { border-bottom: 0; }
.vrow-i svg { width: 28px; height: 28px; flex: 0 0 auto; color: var(--ink); }
.vrow-i b { display: block; font-family: var(--mono); font-weight: 600; text-transform: uppercase; font-size: 13px; letter-spacing: .04em; }
.vrow-i span { font-size: 14px; color: var(--ink); }

/* ============================================================ BLOCKS */
.block { padding: 44px 0; }
.block.alt { background: var(--paper-2); border-top: var(--bw) solid var(--ink); border-bottom: var(--bw) solid var(--ink); }
.block-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 26px; padding-bottom: 14px; border-bottom: var(--bw) solid var(--ink); }
.block-link {
  font-family: var(--mono); text-transform: uppercase; font-size: 12px; font-weight: 600;
  letter-spacing: .04em; text-decoration: none; color: var(--ink);
  display: inline-flex; align-items: center; gap: 8px; flex: 0 0 auto;
}
.block-link svg { width: 16px; height: 16px; }
.block-link:hover { color: var(--orange); }

/* category blocks (framed) */
.cats { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: var(--bw) solid var(--ink); }
.cat-block {
  position: relative; text-decoration: none; color: var(--ink);
  border-right: var(--bw) solid var(--ink); border-bottom: var(--bw) solid var(--ink);
  background: var(--paper); display: block; overflow: hidden;
}
.cats .cat-block:nth-child(2n) { border-right: 0; }
.cat-block img { width: 100%; height: 150px; object-fit: cover; transition: transform .3s; }
.cat-block:hover img { transform: scale(1.05); }
.cat-num { position: absolute; top: 8px; left: 8px; z-index: 2; font-family: var(--mono); font-weight: 600; font-size: 12px; background: var(--ink); color: var(--yellow); padding: 4px 7px; }
.cat-lbl {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--disp); text-transform: uppercase; font-size: 18px;
  padding: 12px 14px; border-top: var(--bw) solid var(--ink); background: var(--paper);
}
.cat-lbl svg { width: 18px; height: 18px; }
.cat-block:hover .cat-lbl { background: var(--orange); }

/* ============================================================ PRODUCT GRID + CARD */
.grid { display: grid; grid-template-columns: 1fr; gap: 0; border: var(--bw) solid var(--ink); }
.pc {
  display: flex; flex-direction: column;
  background: var(--paper);
  border-bottom: var(--bw) solid var(--ink);
  border-right: var(--bw) solid var(--ink);
}
.pc:last-child { border-bottom: 0; }
.pc.is-out { opacity: .72; }
.pc-top { display: flex; align-items: center; justify-content: space-between; padding: 8px 10px; border-bottom: var(--bw) solid var(--ink); }
.pc-sku { font-family: var(--mono); font-weight: 600; font-size: 11px; letter-spacing: .05em; text-transform: uppercase; color: var(--ink); }
.pc-wish {
  width: 30px; height: 30px; display: inline-flex; align-items: center; justify-content: center;
  border: var(--bw) solid var(--ink); background: var(--paper); cursor: pointer; color: var(--ink);
}
.pc-wish svg { width: 17px; height: 17px; }
.pc-wish:hover { background: var(--yellow); }
.pc-wish.on { background: var(--orange); }
.pc-img { position: relative; display: block; background: var(--paper-2); border-bottom: var(--bw) solid var(--ink); }
.pc-img img { width: 100%; height: 210px; object-fit: cover; }
.pc-badge {
  position: absolute; top: 0; left: 0; z-index: 2;
  font-family: var(--mono); font-weight: 600; font-size: 11px; text-transform: uppercase; letter-spacing: .04em;
  background: var(--ink); color: var(--yellow); padding: 5px 9px; border-right: var(--bw) solid var(--ink); border-bottom: var(--bw) solid var(--ink);
}
.pc-body { padding: 12px 12px 14px; flex: 1 1 auto; display: flex; flex-direction: column; }
.pc-cat { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); margin-bottom: 6px; }
.pc-name { margin: 0 0 8px; font-size: 18px; line-height: 1; }
.pc-name a { text-decoration: none; color: var(--ink); }
.pc-name a:hover { color: var(--orange); }
.pc-meta { font-size: 13px; color: var(--muted); margin: 0 0 12px; line-height: 1.45; flex: 1 1 auto; }
.pc-price { font-family: var(--disp); font-size: 30px; line-height: 1; color: var(--orange); }
.pc-add {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  width: 100%; border: 0; border-top: var(--bw) solid var(--ink);
  background: var(--ink); color: #fff; cursor: pointer;
  font-family: var(--mono); font-weight: 600; text-transform: uppercase; font-size: 13px; letter-spacing: .04em;
  padding: 13px 14px; transition: background .14s, color .14s;
}
.pc-add svg { width: 18px; height: 18px; }
.pc-add:hover:not(:disabled) { background: var(--orange); color: var(--ink); }
.pc-add.added { background: var(--yellow); color: var(--ink); }
.pc-add:disabled { background: #777; color: #fff; cursor: not-allowed; }

/* ============================================================ BAND (price / value) */
.band { background: var(--ink); color: #fff; border-bottom: var(--bw) solid var(--ink); }
.band-in { display: grid; gap: 28px; padding: 44px 0; }
.band-eyebrow { font-family: var(--mono); text-transform: uppercase; font-size: 11px; letter-spacing: .18em; color: var(--orange); }
.band-txt h2 { color: #fff; margin: 12px 0 14px; }
.band-txt p { color: #d6d6d6; max-width: 44ch; }
.band-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; border: var(--bw) solid #fff; }
.band-list li { display: flex; align-items: baseline; gap: 14px; padding: 16px 18px; border-bottom: var(--bw) solid #444; }
.band-list li:last-child { border-bottom: 0; }
.band-list b { font-family: var(--disp); font-size: 38px; color: var(--yellow); line-height: 1; flex: 0 0 auto; min-width: 90px; }
.band-list span { font-family: var(--mono); text-transform: uppercase; font-size: 12px; letter-spacing: .03em; color: #e4e4e4; }

/* ============================================================ CTA BAND */
.cta-band { background: var(--orange); border-top: var(--bw) solid var(--ink); border-bottom: var(--bw) solid var(--ink); }
.cta-in { display: grid; gap: 22px; padding: 40px 0; }
.cta-band h2 { color: var(--ink); margin-bottom: 8px; }
.cta-band p { color: var(--ink); max-width: 52ch; margin: 0; }
.cta-band .btn-fill { background: var(--ink); color: #fff; border-color: var(--ink); justify-self: start; }
.cta-band .btn-fill:hover { background: #fff; color: var(--ink); }

/* ============================================================ CATALOG */
.cat-head { padding: 36px 0 20px; }
.cat-head h1 { margin: 12px 0 12px; }
.cat-head p { max-width: 60ch; color: var(--ink); }

.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin: 0; padding: 0; font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: .03em; }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--orange); }
.crumbs svg { width: 12px; height: 12px; color: var(--muted); display: block; }
.crumbs [aria-current="page"] { color: var(--ink); }

.catbar { background: var(--ink); border-top: var(--bw) solid var(--ink); border-bottom: var(--bw) solid var(--ink); position: sticky; top: 64px; z-index: 30; }
.catbar-in { display: flex; flex-wrap: wrap; gap: 10px; padding: 12px 0; align-items: center; }
.cat-search { flex: 1 1 200px; display: flex; align-items: center; gap: 8px; background: #fff; border: var(--bw) solid #fff; padding: 0 12px; }
.cat-search svg { width: 18px; height: 18px; color: var(--ink); flex: 0 0 auto; }
.cat-search input { flex: 1; border: 0; background: transparent; padding: 11px 0; font-family: var(--mono); font-size: 13px; text-transform: uppercase; letter-spacing: .03em; color: var(--ink); }
.cat-search input::placeholder { color: #6a6a6a; }
.cat-search input:focus { outline: none; }
.cat-search:focus-within { outline: 3px solid var(--orange); outline-offset: 1px; }
.cat-sort select {
  font-family: var(--mono); font-size: 13px; text-transform: uppercase; letter-spacing: .03em;
  background: #fff; color: var(--ink); border: var(--bw) solid #fff; padding: 11px 12px; cursor: pointer;
}
.filt-toggle {
  font-family: var(--mono); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: .04em;
  background: var(--orange); color: var(--ink); border: var(--bw) solid #fff; padding: 11px 16px; cursor: pointer;
}

.cat-layout { display: block; padding: 24px 0 50px; }
.cat-count { font-family: var(--mono); text-transform: uppercase; font-size: 13px; letter-spacing: .04em; margin: 0 0 14px; }
.cat-count b { color: var(--orange); }

/* right filter rail */
.filt-rail {
  display: none; margin-top: 18px;
  border: var(--bw) solid var(--ink); background: var(--paper);
}
.filt-rail.open { display: block; }
.filt-grp { padding: 16px; border-bottom: var(--bw) solid var(--ink); }
.filt-h { font-family: var(--mono); font-weight: 600; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; margin: 0 0 12px; }
.fchk {
  display: flex; align-items: center; gap: 10px; cursor: pointer;
  font-size: 14px; padding: 6px 0; line-height: 1.3;
}
.fchk input { width: 18px; height: 18px; flex: 0 0 auto; accent-color: var(--orange); margin: 0; }
.filt-price { display: block; font-family: var(--disp); font-size: 19px; color: var(--orange); margin-bottom: 10px; }
.filt-grp input[type="range"] { width: 100%; accent-color: var(--orange); }
.filt-reset {
  width: 100%; font-family: var(--mono); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: .04em;
  background: var(--ink); color: #fff; border: 0; padding: 14px; cursor: pointer;
}
.filt-reset:hover { background: var(--orange); color: var(--ink); }

.cat-empty { font-family: var(--mono); text-transform: uppercase; font-size: 13px; padding: 30px 0; color: var(--muted); }

/* ============================================================ PRODUCT PAGE */
.pd-head { padding: 14px 0 18px; }
.pd-cat { font-family: var(--mono); text-transform: uppercase; font-size: 12px; letter-spacing: .05em; color: var(--muted); }
.pd-head h1 { margin: 8px 0 6px; font-size: clamp(30px, 6.4vw, 56px); }
.pd-sku { font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: .05em; color: var(--ink); background: var(--yellow); padding: 4px 8px; display: inline-block; }

.pd { display: grid; gap: 22px; padding-bottom: 44px; }
.pd-gallery { border: var(--bw) solid var(--ink); }
.pd-main { background: var(--paper-2); border-bottom: var(--bw) solid var(--ink); }
.pd-main img { width: 100%; height: 320px; object-fit: cover; }
.pd-thumbs { display: grid; grid-template-columns: repeat(3, 1fr); }
.pd-thumbs button { border: 0; border-right: var(--bw) solid var(--ink); background: var(--paper-2); padding: 0; cursor: pointer; }
.pd-thumbs button:last-child { border-right: 0; }
.pd-thumbs button.on { outline: 3px solid var(--orange); outline-offset: -3px; }
.pd-thumbs img { width: 100%; height: 72px; object-fit: cover; }

.pd-buy { border: var(--bw) solid var(--ink); padding: 18px; background: var(--paper); }
.pd-price-row { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; flex-wrap: wrap; margin-bottom: 6px; }
.pd-price { font-family: var(--disp); font-size: clamp(38px, 9vw, 56px); line-height: 1; color: var(--orange); }
.pd-stock { font-family: var(--mono); text-transform: uppercase; font-size: 12px; font-weight: 600; letter-spacing: .04em; padding: 5px 9px; }
.pd-stock.in { background: var(--ink); color: #fff; }
.pd-stock.low { background: var(--orange); color: var(--ink); }
.pd-stock.out { background: #777; color: #fff; }
.pd-meta { font-family: var(--mono); font-size: 13px; text-transform: uppercase; letter-spacing: .02em; color: var(--muted); margin: 0 0 16px; }
.pd-actions { display: flex; flex-wrap: wrap; gap: 10px; align-items: stretch; }
.qty { display: inline-flex; align-items: center; border: var(--bw) solid var(--ink); }
.qty button { width: 42px; height: 46px; border: 0; background: var(--paper); cursor: pointer; color: var(--ink); display: inline-flex; align-items: center; justify-content: center; }
.qty button:hover { background: var(--yellow); }
.qty button svg { width: 18px; height: 18px; }
.qty output { min-width: 40px; text-align: center; font-family: var(--mono); font-weight: 600; font-size: 16px; border-left: var(--bw) solid var(--ink); border-right: var(--bw) solid var(--ink); align-self: stretch; display: inline-flex; align-items: center; justify-content: center; }
.pd-add { flex: 1 1 200px; }
.pd-add b { font-weight: 600; }
.pd-wish { width: 46px; flex: 0 0 auto; border: var(--bw) solid var(--ink); background: var(--paper); cursor: pointer; color: var(--ink); display: inline-flex; align-items: center; justify-content: center; }
.pd-wish svg { width: 20px; height: 20px; }
.pd-wish:hover { background: var(--yellow); }
.pd-wish.on { background: var(--orange); }
.pd-tg { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: .03em; color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.pd-tg svg { width: 18px; height: 18px; color: var(--orange); }

.pd-desc { margin: 20px 0; font-size: 16px; line-height: 1.7; }
.pd-perks { list-style: none; margin: 0 0 22px; padding: 0; border: var(--bw) solid var(--ink); }
.pd-perks li { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border-bottom: var(--bw) solid var(--ink); font-size: 14px; }
.pd-perks li:last-child { border-bottom: 0; }
.pd-perks svg { width: 20px; height: 20px; color: var(--orange); flex: 0 0 auto; }

.pd-spec { width: 100%; border-collapse: collapse; border: var(--bw) solid var(--ink); }
.pd-spec caption { font-family: var(--mono); text-transform: uppercase; font-size: 12px; letter-spacing: .1em; text-align: left; padding: 10px 14px; background: var(--ink); color: #fff; }
.pd-spec th, .pd-spec td { padding: 11px 14px; border-top: var(--bw) solid var(--ink); text-align: left; font-size: 14px; }
.pd-spec th { font-family: var(--mono); font-weight: 500; text-transform: uppercase; font-size: 12px; letter-spacing: .03em; width: 45%; background: var(--paper-2); color: var(--ink); }
.pd-spec tr:nth-child(odd) td { background: var(--paper); }

/* ============================================================ CART */
.cart-wrap { padding: 26px 0 50px; }
.cart-wrap h1 { margin: 14px 0 22px; }
.cart-grid { display: grid; gap: 22px; }
.cart-lines { border: var(--bw) solid var(--ink); }
.cl { display: grid; grid-template-columns: 84px 1fr; gap: 14px; padding: 14px; border-bottom: var(--bw) solid var(--ink); }
.cl:last-child { border-bottom: 0; }
.cl-img { display: block; border: var(--bw) solid var(--ink); align-self: start; }
.cl-img img { width: 100%; height: 70px; object-fit: cover; }
.cl-info { min-width: 0; }
.cl-cat { font-family: var(--mono); text-transform: uppercase; font-size: 11px; letter-spacing: .03em; color: var(--muted); }
.cl-info h3 { font-size: 17px; margin: 5px 0; }
.cl-info h3 a { text-decoration: none; color: var(--ink); }
.cl-info h3 a:hover { color: var(--orange); }
.cl-info p { font-size: 13px; color: var(--muted); margin: 0 0 8px; }
.cl-del { display: inline-flex; align-items: center; gap: 6px; border: 0; background: none; color: var(--muted); font-family: var(--mono); font-size: 12px; text-transform: uppercase; cursor: pointer; padding: 0; }
.cl-del svg { width: 16px; height: 16px; }
.cl-del:hover { color: var(--orange); }
.cl-end { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.cl-sum { font-family: var(--disp); font-size: 24px; color: var(--orange); }

.cart-sum, .co-sum { border: var(--bw) solid var(--ink); padding: 18px; background: var(--paper-2); align-self: start; }
.cart-sum h2, .co-sum h2 { font-size: 24px; margin-bottom: 14px; padding-bottom: 12px; border-bottom: var(--bw) solid var(--ink); }
.sr { display: flex; justify-content: space-between; gap: 12px; font-size: 14px; padding: 7px 0; }
.sr span:first-child { color: var(--muted); }
.sr.tot { font-family: var(--mono); font-weight: 600; text-transform: uppercase; border-top: var(--bw) solid var(--ink); margin-top: 8px; padding-top: 12px; font-size: 16px; }
.sr.tot span:first-child { color: var(--ink); }
.sr.tot span:last-child { color: var(--orange); font-size: 22px; }
.cart-sum .btn { margin-top: 12px; }

.empty { text-align: center; padding: 50px 0; }
.empty svg { width: 52px; height: 52px; color: var(--orange); margin: 0 auto 14px; }
.empty h2 { margin-bottom: 8px; }
.empty p { color: var(--muted); margin-bottom: 18px; }

/* ============================================================ CHECKOUT */
.co-wrap { padding: 26px 0 50px; }
.co-wrap h1 { margin: 14px 0 24px; }
.co-grid { display: grid; gap: 22px; }
.co-fields { display: grid; gap: 18px; }
fieldset { border: var(--bw) solid var(--ink); padding: 16px; margin: 0; }
legend { font-family: var(--mono); text-transform: uppercase; font-size: 12px; font-weight: 600; letter-spacing: .08em; padding: 0 8px; }
.f { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.f:last-child { margin-bottom: 0; }
.f2 { display: grid; gap: 12px; }
.f label { font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: .03em; }
.opt { color: var(--muted); text-transform: none; }
.f input, .f textarea {
  font-family: var(--body); font-size: 16px; color: var(--ink);
  border: var(--bw) solid var(--ink); background: var(--paper); padding: 11px 12px; border-radius: 0;
}
.f input:focus, .f textarea:focus { outline: 3px solid var(--orange); outline-offset: -1px; }
.f input.bad, .f textarea.bad { border-color: #c40000; }
.err { color: #c40000; font-family: var(--mono); font-size: 12px; min-height: 14px; text-transform: uppercase; letter-spacing: .02em; }
.age-confirm .fchk { font-family: var(--body); text-transform: none; font-size: 14px; letter-spacing: 0; }
.age-confirm .fchk input { accent-color: var(--orange); }

.radios { display: grid; gap: 10px; }
.radio { display: flex; align-items: flex-start; gap: 10px; border: var(--bw) solid var(--ink); padding: 12px 14px; cursor: pointer; }
.radio input { margin-top: 3px; accent-color: var(--orange); width: 18px; height: 18px; flex: 0 0 auto; }
.radio span { display: flex; flex-direction: column; gap: 3px; font-size: 13px; color: var(--muted); }
.radio span b { font-size: 14px; color: var(--ink); font-weight: 600; }
.radio:has(input:checked) { background: var(--yellow); }
.addr { margin-top: 12px; }
.co-disc { font-size: 12px; color: var(--muted); margin-top: 12px; }
.co-disc a { color: var(--ink); }
.col-line { display: flex; justify-content: space-between; gap: 10px; font-size: 13px; padding: 7px 0; border-bottom: 1px dashed #bdbdbd; }
.col-line:last-of-type { border-bottom: 0; }

.co-done { text-align: center; max-width: 560px; margin: 20px auto; border: var(--bw) solid var(--ink); padding: 40px 24px; }
.co-done-mark { width: 66px; height: 66px; margin: 0 auto 18px; display: flex; align-items: center; justify-content: center; background: var(--orange); border: var(--bw) solid var(--ink); }
.co-done-mark svg { width: 36px; height: 36px; color: var(--ink); }
.co-done h2 { margin-bottom: 12px; }
.co-done p { color: var(--muted); margin-bottom: 8px; }
.co-done b { color: var(--ink); font-family: var(--mono); }
.co-done .btn { margin-top: 14px; }

/* ============================================================ CONTENT PAGES */
.page-head { padding: 36px 0 22px; border-bottom: var(--bw) solid var(--ink); }
.page-head h1 { margin: 12px 0 12px; }
.page-head p { max-width: 60ch; color: var(--ink); }
.about-lead { padding: 30px 0 0; }
.about-lead figure { margin: 0; border: var(--bw) solid var(--ink); }
.about-lead img { width: 100%; height: 280px; object-fit: cover; }

.two-col { display: grid; gap: 28px; padding: 36px 0; }
.prose h2 { margin: 24px 0 12px; }
.prose h2:first-child { margin-top: 0; }
.prose p { font-size: 16px; line-height: 1.75; }
.prose ul { padding-left: 20px; margin: 0 0 1em; }
.prose li { margin-bottom: 8px; line-height: 1.6; }
.prose a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--orange); }
.prose strong { font-weight: 600; }

.facts { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: var(--bw) solid var(--ink); align-self: start; }
.fact { padding: 18px; border-right: var(--bw) solid var(--ink); border-bottom: var(--bw) solid var(--ink); }
.facts .fact:nth-child(2n) { border-right: 0; }
.facts .fact:nth-last-child(-n+2) { border-bottom: 0; }
.fact b { display: block; font-family: var(--disp); font-size: 38px; color: var(--orange); line-height: 1; }
.fact span { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: .03em; color: var(--muted); }

.info-cards { display: grid; grid-template-columns: 1fr; gap: 0; border: var(--bw) solid var(--ink); }
.info-cards article { padding: 18px; border-bottom: var(--bw) solid var(--ink); background: var(--paper); }
.info-cards article:last-child { border-bottom: 0; }
.info-cards svg { width: 28px; height: 28px; color: var(--orange); margin-bottom: 10px; }
.info-cards h3 { margin-bottom: 8px; }
.info-cards p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.6; }

.map { margin-top: 30px; border: var(--bw) solid var(--ink); aspect-ratio: 16 / 10; }
.map iframe { width: 100%; height: 100%; border: 0; display: block; }

.tg-cta { display: grid; gap: 14px; align-items: center; border: var(--bw) solid var(--ink); background: var(--orange); padding: 20px; margin-top: 24px; }
.tg-cta > svg { width: 34px; height: 34px; color: var(--ink); }
.tg-cta b { display: block; font-family: var(--disp); font-size: 22px; text-transform: uppercase; }
.tg-cta > span > span { font-size: 14px; color: var(--ink); }
.tg-cta .btn { justify-self: start; }

.legal .prose { font-size: 15px; }
.legal-upd { font-family: var(--mono); font-size: 12px; text-transform: uppercase; color: var(--muted); margin-top: 22px; }
.legal-aside { align-self: start; }
.tg-mini { border: var(--bw) solid var(--ink); padding: 18px; background: var(--paper-2); }
.tg-mini svg { width: 28px; height: 28px; color: var(--orange); margin-bottom: 10px; }
.tg-mini b { display: block; font-family: var(--disp); font-size: 18px; text-transform: uppercase; margin-bottom: 6px; }
.tg-mini p { font-size: 14px; color: var(--muted); margin-bottom: 12px; }

.err404 { text-align: center; padding: 60px 0; }
.err-big { font-family: var(--disp); font-size: clamp(90px, 26vw, 200px); line-height: .85; color: var(--orange); margin: 0; }
.err404 h1 { margin: 8px 0 12px; }
.err404 p { color: var(--muted); margin-bottom: 22px; }
.err404 .hero-cta { justify-content: center; }

/* ============================================================ FOOTER */
.ftr { background: var(--ink); color: #fff; border-top: var(--bw) solid var(--ink); }
.ftr-grid { display: grid; gap: 28px; padding: 40px var(--pad); }
.ftr-brand p { color: #c7c7c7; font-size: 14px; max-width: 40ch; margin: 14px 0; }
.tg-pill { display: inline-flex; align-items: center; gap: 10px; font-family: var(--mono); text-transform: uppercase; font-size: 12px; font-weight: 600; letter-spacing: .04em; background: var(--orange); color: var(--ink); padding: 12px 16px; text-decoration: none; border: var(--bw) solid var(--ink); }
.tg-pill:hover { background: var(--yellow); }
.tg-pill svg { width: 18px; height: 18px; }
.ftr-age { display: flex; align-items: center; gap: 10px; margin-top: 18px; font-size: 12px; color: #c7c7c7; }
.age-box { font-family: var(--mono); font-weight: 600; background: var(--orange); color: var(--ink); padding: 4px 8px; flex: 0 0 auto; }
.ftr-col h2 { font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: .1em; color: var(--yellow); margin-bottom: 14px; }
.ftr-col ul { list-style: none; margin: 0; padding: 0; }
.ftr-col li { margin-bottom: 9px; }
.ftr-col a { color: #d6d6d6; text-decoration: none; font-size: 14px; }
.ftr-col a:hover { color: var(--orange); }
.ftr-col address { font-style: normal; color: #d6d6d6; font-size: 14px; line-height: 1.8; }
.ftr-col address a { color: #fff; }
.ftr-col address a:hover { color: var(--orange); }
.ftr-warn { padding: 18px var(--pad); border-top: var(--bw) solid #444; font-size: 12px; color: #bdbdbd; line-height: 1.6; }
.ftr-base { display: flex; flex-direction: column; gap: 8px; padding: 16px var(--pad) 26px; border-top: var(--bw) solid #444; font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: .03em; color: #bdbdbd; }
.ftr-base a { color: var(--orange); text-decoration: none; }
.ftr-base a:hover { text-decoration: underline; }

/* ============================================================ TOASTS */
.toasts { position: fixed; right: 14px; bottom: 14px; z-index: 120; display: flex; flex-direction: column; gap: 10px; max-width: calc(100vw - 28px); }
.toast { display: flex; align-items: center; gap: 10px; background: var(--ink); color: #fff; border: var(--bw) solid var(--orange); padding: 12px 14px; transform: translateX(8px); opacity: 0; animation: toastIn .26s forwards; }
.toast svg { width: 22px; height: 22px; color: var(--orange); flex: 0 0 auto; }
.toast p { margin: 0; font-size: 13px; line-height: 1.3; }
.toast b { display: block; font-family: var(--mono); text-transform: uppercase; font-size: 12px; }
.toast.out { animation: toastOut .3s forwards; }
@keyframes toastIn { to { transform: none; opacity: 1; } }
@keyframes toastOut { to { transform: translateX(8px); opacity: 0; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

/* ============================================================ RESPONSIVE (overrides) */
@media (min-width: 600px) {
  .grid { grid-template-columns: 1fr 1fr; }
  .pc:nth-child(2n) { border-right: 0; }
  .pc:nth-last-child(-n+2):nth-child(odd), .pc:last-child { border-bottom: 0; }
  .vrow-in { grid-template-columns: 1fr 1fr; }
  .vrow-i { border-right: var(--bw) solid var(--ink); padding: 16px; }
  .vrow-i:nth-child(2n) { border-right: 0; }
  .vrow-i:nth-last-child(-n+2) { border-bottom: 0; }
  .cats { grid-template-columns: 1fr 1fr 1fr; }
  .cats .cat-block:nth-child(2n) { border-right: var(--bw) solid var(--ink); }
  .cats .cat-block:nth-child(3n) { border-right: 0; }
  .f2 { grid-template-columns: 1fr 1fr; }
  .info-cards { grid-template-columns: 1fr 1fr; }
  .info-cards article { border-right: var(--bw) solid var(--ink); }
  .info-cards article:nth-child(2n) { border-right: 0; }
  .info-cards article:nth-last-child(-n+2) { border-bottom: 0; }
  .pd-main img { height: 420px; }
  .pd-thumbs img { height: 96px; }
  .ftr-base { flex-direction: row; justify-content: space-between; }
}

@media (min-width: 900px) {
  :root { --pad: 24px; }
  .nav-main { display: block; }
  .burger { display: none; }
  .m-menu { display: none; }
  .hero-in { grid-template-columns: 1.15fr .85fr; align-items: stretch; }
  .hero-txt { padding: 56px 40px 50px 0; }
  .hero-img { border-top: 0; border-left: var(--bw) solid var(--ink); }
  .hero-img img { height: 100%; min-height: 460px; }
  .grid { grid-template-columns: 1fr 1fr 1fr; }
  .pc:nth-child(2n) { border-right: var(--bw) solid var(--ink); }
  .pc:nth-child(3n) { border-right: 0; }
  .pc:nth-last-child(-n+2):nth-child(odd) { border-bottom: var(--bw) solid var(--ink); }
  .vrow-in { grid-template-columns: repeat(4, 1fr); }
  .vrow-i:nth-child(2n) { border-right: var(--bw) solid var(--ink); }
  .vrow-i:last-child { border-right: 0; }
  .vrow-i { border-bottom: 0; }
  .band-in { grid-template-columns: 1.1fr .9fr; align-items: center; }
  .cta-in { grid-template-columns: 1fr auto; align-items: center; }
  .cta-band .btn-fill { justify-self: end; }
  .two-col { grid-template-columns: 1.6fr 1fr; }
  .info-cards { grid-template-columns: repeat(4, 1fr); }
  .info-cards article { border-bottom: 0; }
  .info-cards article:nth-child(2n) { border-right: var(--bw) solid var(--ink); }
  .info-cards article:last-child { border-right: 0; }
  .about-lead img { height: 380px; }

  /* RIGHT filter rail layout */
  .catbar { top: 64px; }
  .filt-toggle { display: none; }
  .cat-layout { display: grid; grid-template-columns: 1fr 280px; gap: 26px; align-items: start; }
  .cat-main { order: 1; }
  .filt-rail { display: block; order: 2; margin-top: 0; position: sticky; top: 132px; }

  .pd { grid-template-columns: 1.1fr .9fr; gap: 30px; align-items: start; }
  .pd-gallery { position: sticky; top: 84px; }
  .pd-main img { height: 480px; }
  .cart-grid { grid-template-columns: 1fr 340px; }
  .cl { grid-template-columns: 110px 1fr auto; }
  .cl-img img { height: 90px; }
  .cl-end { grid-column: auto; flex-direction: column; align-items: flex-end; }
  .co-grid { grid-template-columns: 1fr 340px; align-items: start; }
  .co-sum { position: sticky; top: 84px; }
  .ftr-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
}

@media (min-width: 1100px) {
  .pc-img img { height: 230px; }
  .hero h1 { font-size: clamp(70px, 9vw, 130px); }
}
