/* Pick of Trend — storefront styles
   One stylesheet for every page. Values are lifted from the design canvas;
   see the build sheet artboard for the reasoning behind each one. */

:root {
  --bg: #faf8f4;
  --sunk: #f3efe7;
  --card: #ffffff;
  --ink: #17140f;
  --ink-2: #4a453c;
  --ink-3: #8c8579;
  --ink-4: #b8b1a5;
  --line: #e3ded4;
  --line-2: #d9d3c7;
  --line-dark: #3a342b;
  --acc: #e0401c;
  --acc-dark: #b62f11;
  --ok: #1f7a4d;
  --disp: "Bricolage Grotesque", "Helvetica Neue", Helvetica, sans-serif;
  --text: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
  --gut: 80px;
  --maxw: 1280px;
}

* { box-sizing: border-box; }

/* Must come before any rule that sets display on a hideable element,
   otherwise an inline display wins over the UA [hidden] rule. */
[hidden] { display: none !important; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--text);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--acc); }
img { max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
input { font-family: inherit; }

:focus-visible { outline: 2px solid var(--acc); outline-offset: 2px; }

.disp { font-family: var(--disp); }
.num { font-variant-numeric: tabular-nums; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gut); }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- announcement bar ---------- */

.ann {
  background: var(--ink); color: var(--bg); height: 34px;
  display: flex; align-items: center; overflow: hidden;
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
}
.ann-static { justify-content: center; font-variant-numeric: tabular-nums; }

/* Sliding announcement bar: discrete messages that slide in from the right
   and slide the previous one out to the left — a real slide, not a
   crossfade. JS (announcementSlider() in pot.js) toggles is-active/is-prev;
   the default (neither class) position is off-screen right, so a message
   newly promoted to is-active animates in from there. */
.ann-slide { position: relative; }
.ann-slide .ann-track {
  /* .ann-track is the only in-flow child of the flex row .ann (the dots are
     position:absolute, so they don't compete for flex space) — but its own
     children (.ann-msg) are ALSO all position:absolute, contributing zero
     intrinsic size. Without an explicit width, a flex item with no sizing
     content collapses to near-zero, and every .ann-msg's translateX(100%)/
     inset:0 — which resolve against .ann-track's box, its nearest
     positioned ancestor — then computed against that near-zero width
     instead of the bar's real width. Messages overlapped in the top-left
     corner instead of sliding in from off-screen. flex + width together
     force it to actually fill the row. */
  position: relative; height: 100%; width: 100%; flex: 1 1 auto; min-width: 0;
}
.ann-msg {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  /* Fixed 34px bar height — a message that's too long for the viewport must
     truncate on one line, not wrap and overflow the bar (it did, and looked
     like garbled two-line text clipped top/bottom). Extra right padding on
     the slide variant so text never runs under the dots. */
  padding: 0 var(--gut); text-align: center; font-variant-numeric: tabular-nums;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  transform: translateX(100%); transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.ann-slide .ann-msg { padding-right: calc(var(--gut) + 34px); }
.ann-slide .ann-msg.is-active { transform: translateX(0); z-index: 1; }
.ann-slide .ann-msg.is-prev { transform: translateX(-100%); }
.ann-dots { position: absolute; right: var(--gut); top: 50%; transform: translateY(-50%); display: flex; gap: 5px; z-index: 2; }
.ann-dot { width: 5px; height: 5px; padding: 0; border: 0; border-radius: 50%; background: rgba(250, 248, 244, 0.35); }
.ann-dot.is-active { background: var(--bg); }
@media (max-width: 480px) {
  .ann-dots { display: none; }
  /* Dots are hidden here — no need to reserve room for them, so the message
     can go back to being truly centered. */
  .ann-slide .ann-msg { padding-right: var(--gut); }
}
@media (prefers-reduced-motion: reduce) {
  .ann-msg { transition: none; }
}
.mq { display: inline-block; white-space: nowrap; animation: mq 30s linear infinite; }
.mq span { padding: 0 22px; }
.mq i { color: var(--acc); font-style: normal; padding: 0; }
@keyframes mq { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .mq { animation: none; } }

/* ---------- header ---------- */

.hdr { border-bottom: 1px solid var(--line); background: var(--bg); }
.hdr-in {
  max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gut);
  height: 76px; display: flex; align-items: center; gap: 48px;
}
.logo { font-family: var(--disp); font-size: 21px; font-weight: 800; letter-spacing: -0.02em; white-space: nowrap; }
.logo b { color: var(--acc); font-weight: 800; }
.nav { display: flex; gap: 30px; font-size: 14px; font-weight: 500; flex-grow: 1; }
.nav a.on { color: var(--acc); font-weight: 600; border-bottom: 2px solid var(--acc); }
.nav a.all { color: var(--acc); font-weight: 600; }
.hdr-act { display: flex; align-items: center; gap: 12px; }
.h-search-mobile { display: none; }
.iconbtn {
  width: 44px; height: 44px; border: 0; background: transparent;
  display: flex; align-items: center; justify-content: center; color: var(--ink);
}
.iconbtn:hover { color: var(--acc); }
.cartbtn {
  display: flex; align-items: center; gap: 9px; background: var(--ink); color: var(--bg);
  height: 42px; padding: 0 18px; border-radius: 4px; font-size: 13px; font-weight: 600;
  white-space: nowrap;
}
.cartbtn:hover { background: var(--acc); color: var(--bg); }
.burger { display: none; }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 56px; padding: 0 30px; border: 0; border-radius: 4px;
  font-size: 15px; font-weight: 700; letter-spacing: -0.01em;
  background: var(--acc); color: var(--bg);
}
.btn:hover { background: var(--acc-dark); color: var(--bg); }
.btn-2 {
  display: inline-flex; align-items: center; justify-content: center;
  height: 56px; padding: 0 26px; border: 1.5px solid var(--ink); border-radius: 4px;
  background: transparent; color: var(--ink); font-size: 15px; font-weight: 600;
}
.btn-2:hover { background: var(--ink); color: var(--bg); }
.btn-dark {
  display: inline-flex; align-items: center; justify-content: center;
  height: 56px; padding: 0 30px; border: 0; border-radius: 4px;
  background: var(--ink); color: var(--bg); font-size: 15px; font-weight: 700;
}
.btn-dark:hover { background: var(--acc); color: var(--bg); }
.btn-full { width: 100%; }

/* ---------- hero ---------- */

.hero { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-bottom: 1px solid var(--line); }
.hero-copy { padding: 76px 60px 76px var(--gut); display: flex; flex-direction: column; justify-content: center; gap: 26px; }
.eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--acc);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--acc); }
.hero h1 { margin: 0; font-family: var(--disp); font-size: 76px; line-height: 0.94; letter-spacing: -0.035em; font-weight: 800; text-wrap: balance; }
.lede { margin: 0; font-size: 17px; line-height: 1.55; color: var(--ink-2); max-width: 430px; }
.hero-cta { display: flex; gap: 12px; padding-top: 4px; flex-wrap: wrap; }
.stars { display: flex; gap: 3px; }
.rating-row { display: flex; align-items: center; gap: 12px; padding-top: 14px; flex-wrap: wrap; font-size: 13px; }
.hero-shot { position: relative; background: #efebe3; min-height: 624px; display: flex; align-items: center; justify-content: center; }
.hero-shot > img { width: 420px; height: 420px; object-fit: cover; border-radius: 6px; }
.roundel {
  position: absolute; top: 46px; right: 46px; background: var(--acc); color: var(--bg);
  border-radius: 999px; width: 94px; height: 94px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; transform: rotate(9deg);
}
.roundel b { font-family: var(--disp); font-size: 28px; font-weight: 800; line-height: 1; font-variant-numeric: tabular-nums; }
.roundel span { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.shot-card {
  position: absolute; bottom: 46px; left: 46px; right: 46px; background: var(--bg);
  border: 1px solid var(--ink); border-radius: 6px; padding: 18px 20px;
  display: flex; align-items: center; gap: 16px;
}

/* ---------- trust strip ---------- */

.trust { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-bottom: 1px solid var(--line); background: var(--sunk); }
.trust > div { padding: 22px 28px; display: flex; align-items: center; gap: 13px; border-right: 1px solid var(--line); }
.trust > div:last-child { border-right: 0; }
.trust svg { flex-shrink: 0; color: var(--acc); }
.trust b { display: block; font-size: 13px; font-weight: 600; line-height: 1.35; }
.trust em { font-style: normal; font-weight: 400; color: var(--ink-3); }

/* ---------- sections ---------- */

.sec { padding: 74px var(--gut) 0; max-width: var(--maxw); margin: 0 auto; }
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; padding-bottom: 30px; flex-wrap: wrap; }
.sec-head h2, .sec > h2 { margin: 0; font-family: var(--disp); font-size: 42px; font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.meta { font-size: 13px; color: var(--ink-3); }
.link-acc { font-size: 14px; font-weight: 600; color: var(--acc); white-space: nowrap; }

/* ---------- category tiles ---------- */

.cats { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; }
.cat {
  border: 1px solid var(--line-2); border-radius: 6px; padding: 24px 20px 22px;
  display: flex; flex-direction: column; gap: 42px; background: var(--bg); color: var(--ink);
}
.cat:hover { background: var(--ink); color: var(--bg); }
.cat:hover .cat-n { color: var(--bg); opacity: 0.55; }
.cat-t { font-size: 17px; font-weight: 700; letter-spacing: -0.015em; }
.cat-n { font-size: 12px; color: var(--ink-3); padding-top: 3px; font-variant-numeric: tabular-nums; }

/* ---------- product grid + card ---------- */

.grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.card {
  border: 1px solid var(--line-2); border-radius: 6px; background: var(--card);
  overflow: hidden; display: flex; flex-direction: column;
}
.card:hover { border-color: var(--ink); }
.card:hover .qa { background: var(--acc); color: var(--bg); border-color: var(--acc); }
.card-img { position: relative; background: var(--sunk); display: block; }
.card-img img { width: 100%; height: 330px; object-fit: cover; display: block; }
.badge {
  position: absolute; top: 14px; left: 14px; background: var(--acc); color: var(--bg);
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em; padding: 6px 10px;
  border-radius: 3px; font-variant-numeric: tabular-nums;
}
.badge-best { background: var(--ink); }
.badge-new {
  position: absolute; top: 14px; right: 14px; background: var(--bg); border: 1px solid var(--ink);
  color: var(--ink); font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 5px 9px; border-radius: 3px;
}
.card-body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 10px; flex-grow: 1; }
.kicker { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); }
/* flex-grow so title height absorbs the slack — without it, a card whose
   title wraps to fewer lines than its row siblings has its price/button
   sitting higher than theirs (this used to be the short description's job
   before it was removed from the card; nothing replaced its flex-grow). */
.card-t { font-size: 17px; font-weight: 700; letter-spacing: -0.018em; line-height: 1.25; flex-grow: 1; }
.rate { display: flex; align-items: center; gap: 7px; font-size: 12px; }
.rate b { font-weight: 600; font-variant-numeric: tabular-nums; }
.rate span { color: var(--ink-3); font-variant-numeric: tabular-nums; }
/* Column, not row: a price *range* ("$13.17 – $15.72") wraps to two lines
   on narrower cards, and a row layout then straddles the button awkwardly
   between them. Stacking price above button sidesteps that regardless of
   how long the range is or how narrow the card gets. */
.prow { display: flex; flex-direction: column; align-items: stretch; gap: 10px; padding-top: 4px; }
.prices { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.pri { font-family: var(--disp); font-size: 26px; font-weight: 800; letter-spacing: -0.025em; font-variant-numeric: tabular-nums; }
.was { font-size: 13px; color: var(--ink-3); text-decoration: line-through; font-variant-numeric: tabular-nums; }
.from { font-size: 13px; color: var(--ink-3); font-variant-numeric: tabular-nums; }
.qa {
  width: 100%; display: inline-flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--ink); background: var(--bg); color: var(--ink);
  height: 40px; padding: 0 16px; border-radius: 4px; font-size: 13px; font-weight: 700;
  white-space: nowrap; flex-shrink: 0;
}

/* ---------- deal panel ---------- */

.deal { background: var(--ink); color: var(--bg); border-radius: 8px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); overflow: hidden; }
.deal-copy { padding: 56px 52px; display: flex; flex-direction: column; justify-content: center; gap: 20px; }
.deal h2 { margin: 0; font-family: var(--disp); font-size: 50px; line-height: 0.96; letter-spacing: -0.032em; font-weight: 800; }
.deal p { margin: 0; font-size: 16px; line-height: 1.55; color: var(--ink-4); max-width: 400px; }
.deal-price { display: flex; align-items: baseline; gap: 12px; padding-top: 6px; flex-wrap: wrap; }
.deal-price .big { font-family: var(--disp); font-size: 46px; font-weight: 800; letter-spacing: -0.03em; font-variant-numeric: tabular-nums; }
.chip { background: var(--acc); color: var(--bg); font-size: 12px; font-weight: 700; padding: 5px 10px; border-radius: 3px; font-variant-numeric: tabular-nums; }
.deal-shot { background: #211d17; display: flex; align-items: center; justify-content: center; padding: 40px; }
.deal-shot img { width: 340px; height: 340px; object-fit: cover; border-radius: 6px; }
.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; height: 56px; padding: 0 26px;
  border: 1.5px solid var(--ink-2); color: var(--bg); border-radius: 4px; font-size: 15px; font-weight: 600;
}
.btn-ghost:hover { border-color: var(--bg); color: var(--bg); }

/* ---------- proof tiles ---------- */

.proof { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.proof > div { border: 1px solid var(--line-2); border-radius: 6px; padding: 26px; background: var(--card); display: flex; flex-direction: column; gap: 14px; }
.proof .fig { font-family: var(--disp); font-size: 40px; font-weight: 800; letter-spacing: -0.03em; line-height: 1; font-variant-numeric: tabular-nums; }
.proof .lbl { font-size: 15px; font-weight: 700; letter-spacing: -0.015em; }
.todo { border: 1px dashed var(--ink-4); border-radius: 6px; padding: 18px 22px; font-size: 13px; color: var(--ink-3); line-height: 1.55; }
.todo b { color: var(--ink); font-weight: 600; }

/* ---------- newsletter ---------- */

.news {
  border: 1.5px solid var(--ink); border-radius: 8px; padding: 48px 52px; background: var(--sunk);
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 48px; align-items: center;
}
.news h2 { margin: 0 0 12px; font-family: var(--disp); font-size: 36px; font-weight: 800; letter-spacing: -0.03em; line-height: 1.02; }
.news p { margin: 0; font-size: 15px; line-height: 1.55; color: var(--ink-2); }
.news form { display: flex; gap: 10px; }
.fld {
  height: 56px; padding: 0 18px; border: 1.5px solid var(--ink); border-radius: 4px;
  font-size: 15px; background: var(--bg); color: var(--ink); width: 100%;
}
.fld:focus { outline: none; border-color: var(--acc); }
.fine { font-size: 12px; color: var(--ink-3); line-height: 1.5; }

/* ---------- footer ---------- */

.ftr { background: var(--ink); color: var(--bg); margin-top: 80px; }
.ftr-in { max-width: var(--maxw); margin: 0 auto; padding: 64px var(--gut) 32px; }
.ftr-cols { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 52px; }
.ftr-cols a { color: var(--bg); font-size: 14px; }
.ftr-cols a:hover { color: var(--acc); }
.ftr-col { display: flex; flex-direction: column; gap: 12px; }
.ftr-h { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); padding-bottom: 4px; }
.ftr-about { display: flex; flex-direction: column; gap: 16px; }
.ftr-about p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--ink-4); max-width: 300px; }
.ftr-bottom { border-top: 1px solid var(--line-dark); padding-top: 26px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 13px; color: var(--ink-3); }
.ph { color: #6b6459; }
.ftr-min { border-top: 1px solid var(--line); margin-top: 56px; }
.ftr-min-in { max-width: var(--maxw); margin: 0 auto; padding: 26px var(--gut); display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 12px; color: var(--ink-3); }
.ftr-min-in a { color: var(--ink-3); }

/* ---------- breadcrumb + page head ---------- */

.crumb { font-size: 12px; color: var(--ink-3); font-variant-numeric: tabular-nums; }
.crumb a { color: var(--ink-3); }
.crumb b { color: var(--ink); font-weight: 400; }
.page-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 60px; flex-wrap: wrap; }
.page-head h1 { margin: 0 0 14px; font-family: var(--disp); font-size: 58px; font-weight: 800; letter-spacing: -0.035em; line-height: 0.98; }
.count-box { border: 1px solid var(--line-2); border-radius: 6px; padding: 18px 22px; background: var(--sunk); min-width: 230px; }
.count-box .big { font-family: var(--disp); font-size: 32px; font-weight: 800; letter-spacing: -0.03em; line-height: 1; font-variant-numeric: tabular-nums; }

/* ---------- filters + sort ---------- */

.pills { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; padding-bottom: 18px; }
.pill {
  height: 44px; padding: 0 18px; border: 1.5px solid var(--line-2); background: var(--bg);
  color: var(--ink); border-radius: 999px; font-size: 13px; font-weight: 600;
  display: flex; align-items: center; gap: 7px; white-space: nowrap;
}
.pill:hover { border-color: var(--ink); }
.pill[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: var(--bg); }
.pill .n { color: var(--ink-3); font-variant-numeric: tabular-nums; }
.sortbar { display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 12px 0; flex-wrap: wrap; }
.sorts { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.sort-lbl { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); padding-right: 10px; }
.sortb { height: 40px; padding: 0 14px; border: 0; background: transparent; color: var(--ink-2); font-size: 13px; font-weight: 600; border-radius: 4px; white-space: nowrap; }
.sortb:hover { color: var(--ink); }
.sortb[aria-pressed="true"] { background: var(--ink); color: var(--bg); }

/* ---------- PDP ---------- */

.pdp { display: grid; grid-template-columns: 660px minmax(0, 1fr); gap: 60px; align-items: start; }
.gal { display: flex; flex-direction: column; gap: 14px; }
.gal-main { position: relative; aspect-ratio: 1; background: var(--sunk); border-radius: 6px; overflow: hidden; }
.gal-main img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.gal-main img[hidden] { display: none; }
.gal-badge { position: absolute; top: 20px; left: 20px; background: var(--acc); color: var(--bg); font-size: 12px; font-weight: 700; letter-spacing: 0.06em; padding: 8px 13px; border-radius: 3px; font-variant-numeric: tabular-nums; }
.gal-n { position: absolute; bottom: 20px; right: 20px; background: var(--bg); border: 1px solid var(--line-2); font-size: 12px; font-weight: 600; padding: 7px 12px; border-radius: 3px; font-variant-numeric: tabular-nums; }
.thumbs { display: flex; gap: 12px; flex-wrap: wrap; }
.thumb { border: 2px solid var(--line); border-radius: 5px; overflow: hidden; padding: 0; background: var(--sunk); width: 104px; height: 104px; }
.thumb:hover { border-color: var(--ink-3); }
.thumb[aria-pressed="true"] { border-color: var(--ink); }
.thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.buy { display: flex; flex-direction: column; gap: 20px; }
.buy h1 { margin: 0; font-family: var(--disp); font-size: 46px; font-weight: 800; letter-spacing: -0.032em; line-height: 1.02; }
.buy-price { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.buy-price .big { font-family: var(--disp); font-size: 52px; font-weight: 800; letter-spacing: -0.035em; line-height: 1; font-variant-numeric: tabular-nums; }
.buy-price .old { font-size: 20px; color: var(--ink-3); text-decoration: line-through; font-variant-numeric: tabular-nums; }
.chip-save { background: var(--acc); color: var(--bg); font-size: 13px; font-weight: 700; padding: 6px 11px; border-radius: 3px; font-variant-numeric: tabular-nums; }
.block { border-top: 1px solid var(--line); padding-top: 20px; }
.block-h { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding-bottom: 12px; }
.block-h b { font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.opts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.opt {
  border: 1.5px solid var(--line-2); background: var(--bg); border-radius: 5px; padding: 14px 16px;
  text-align: left; display: flex; align-items: center; gap: 14px; width: 100%; color: var(--ink);
}
.opt:hover { border-color: var(--ink-3); }
.opt[aria-pressed="true"] { border-color: var(--ink); background: var(--sunk); }
.dot { width: 18px; height: 18px; border-radius: 999px; border: 1.5px solid var(--ink-4); flex-shrink: 0; }
.opt[aria-pressed="true"] .dot, .radio[aria-pressed="true"] .dot { border: 5px solid var(--acc); background: var(--bg); }
.opt-t { display: block; font-size: 14px; font-weight: 700; letter-spacing: -0.01em; }
.opt-p { display: block; font-size: 13px; color: var(--ink-3); padding-top: 2px; font-variant-numeric: tabular-nums; }
.buy-row { display: flex; align-items: stretch; gap: 12px; }
.stepper { display: flex; align-items: center; border: 1.5px solid var(--ink); border-radius: 4px; height: 60px; }
.stepper button { width: 46px; height: 100%; border: 0; background: transparent; font-size: 19px; font-weight: 600; color: var(--ink); }
.stepper button:hover { color: var(--acc); }
.stepper .q { width: 44px; text-align: center; font-size: 17px; font-weight: 700; font-variant-numeric: tabular-nums; }
.add-big {
  flex-grow: 1; height: 60px; background: var(--acc); color: var(--bg); border: 0; border-radius: 4px;
  font-size: 16px; font-weight: 700; letter-spacing: -0.01em;
  display: flex; align-items: center; justify-content: center; gap: 12px;
}
.add-big:hover { background: var(--acc-dark); }
.add-big .sub { opacity: 0.75; font-variant-numeric: tabular-nums; }
.meter { border: 1px solid var(--line-2); border-radius: 6px; padding: 18px 20px; background: var(--sunk); display: flex; flex-direction: column; gap: 11px; }
.meter-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.meter-msg { font-size: 14px; font-weight: 700; color: var(--acc); font-variant-numeric: tabular-nums; }
.meter.met .meter-msg { color: var(--ok); }
.meter-of { font-size: 13px; color: var(--ink-3); font-variant-numeric: tabular-nums; }
.bar { height: 8px; background: var(--card); border-radius: 999px; overflow: hidden; border: 1px solid var(--line); }
.bar > i { display: block; height: 100%; background: var(--acc); border-radius: 999px; transition: width 0.25s ease; }
.meter.met .bar > i { background: var(--ok); }
.assure { display: flex; flex-direction: column; gap: 11px; border-top: 1px solid var(--line); padding-top: 20px; }
.assure div { display: flex; align-items: center; gap: 11px; font-size: 14px; color: var(--ink-2); }
.assure svg { flex-shrink: 0; }

/* ---------- accordion ---------- */

.acc { border-top: 1px solid var(--line); }
.acc:last-of-type { border-bottom: 1px solid var(--line); }
.acc-h { width: 100%; background: transparent; border: 0; padding: 24px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; text-align: left; color: var(--ink); }
.acc-h:hover .acc-t { color: var(--acc); }
.acc-t { font-size: 19px; font-weight: 700; letter-spacing: -0.02em; }
.acc-h .v { transition: opacity 0.15s; }
.acc-h[aria-expanded="true"] .v { opacity: 0; }
.acc-b { padding-bottom: 28px; font-size: 15px; line-height: 1.7; color: var(--ink-2); max-width: 660px; }
.acc-b[hidden] { display: none; }
.spec { display: grid; grid-template-columns: 200px minmax(0, 1fr); font-size: 14px; }
.spec dt, .spec dd { padding: 11px 0; border-top: 1px solid var(--line); margin: 0; }
.spec dt { color: var(--ink-3); }
.spec dd { font-weight: 600; }
.spec div:last-child dt, .spec div:last-child dd { border-bottom: 1px solid var(--line); }

/* ---------- cross-sell ---------- */

.xsell { background: var(--ink); color: var(--bg); border-radius: 8px; padding: 40px 44px; }
.xsell h2 { margin: 0 0 8px; font-family: var(--disp); font-size: 32px; font-weight: 800; letter-spacing: -0.03em; line-height: 1.05; }
.xsell p { margin: 0; font-size: 14px; color: var(--ink-4); font-variant-numeric: tabular-nums; }
.xgrid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.xcard { border: 1px solid var(--line-2); border-radius: 6px; background: var(--card); display: flex; align-items: center; gap: 16px; padding: 14px; color: var(--ink); }
.xcard:hover { border-color: var(--acc); }
.xcard:hover .xadd { background: var(--acc); color: var(--bg); border-color: var(--acc); }
.xcard img { width: 84px; height: 84px; object-fit: cover; border-radius: 4px; background: var(--sunk); flex-shrink: 0; }
.xcard .t { font-size: 14px; font-weight: 700; letter-spacing: -0.015em; line-height: 1.3; }
.xcard .p { display: flex; align-items: baseline; gap: 7px; padding-top: 5px; font-variant-numeric: tabular-nums; }
.xcard .p b { font-size: 17px; font-weight: 700; }
.xcard .p s { font-size: 12px; color: var(--ink-3); }
.xadd { border: 1.5px solid var(--ink); background: var(--bg); color: var(--ink); height: 42px; padding: 0 16px; border-radius: 4px; font-size: 13px; font-weight: 700; flex-shrink: 0; }

/* ---------- cart ---------- */

.cart-cols { display: grid; grid-template-columns: minmax(0, 1fr) 400px; gap: 52px; align-items: start; }
.line { display: grid; grid-template-columns: 120px minmax(0, 1fr) 150px 110px; gap: 24px; align-items: center; padding: 24px 0; border-bottom: 1px solid var(--line); }
.line:first-of-type { border-top: 1px solid var(--line); }
.line[hidden] { display: none; }
.line > img { width: 120px; height: 120px; object-fit: cover; border-radius: 5px; background: var(--sunk); }
.line-info { display: flex; flex-direction: column; gap: 7px; }
.line-info .t { font-size: 18px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.25; }
.line-info .v { font-size: 13px; color: var(--ink-3); }
.line-p { display: flex; align-items: baseline; gap: 8px; padding-top: 2px; font-variant-numeric: tabular-nums; }
.line-p b { font-size: 14px; font-weight: 600; }
.line-p s { font-size: 13px; color: var(--ink-3); }
.line-p em { font-style: normal; font-size: 12px; font-weight: 700; color: var(--acc); }
.line-q { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.line-q .stepper { height: 46px; }
.line-q .stepper button { width: 40px; font-size: 18px; }
.line-q .stepper .q { width: 34px; font-size: 16px; }
.rm { background: transparent; border: 0; padding: 0; font-size: 13px; color: var(--ink-3); text-decoration: underline; text-underline-offset: 3px; }
.rm:hover { color: var(--acc); }
.line-tot { font-family: var(--disp); font-size: 24px; font-weight: 800; letter-spacing: -0.025em; text-align: right; font-variant-numeric: tabular-nums; }
.summary { border: 1.5px solid var(--ink); border-radius: 6px; background: var(--card); padding: 28px; }
.summary h2 { margin: 0 0 20px; font-family: var(--disp); font-size: 22px; font-weight: 800; letter-spacing: -0.025em; }
.sum-rows { display: flex; flex-direction: column; gap: 14px; font-size: 15px; }
.sum-rows > div { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
.sum-rows .v { font-weight: 600; font-variant-numeric: tabular-nums; }
.sum-rows .lbl { color: var(--ink-2); }
.sum-rows .rule { border-top: 1px solid var(--line); padding-top: 14px; }
.sum-rows .tax { font-size: 13px; color: var(--ink-3); }
.sum-total { border-top: 1.5px solid var(--ink); margin-top: 22px; padding-top: 20px; display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
.sum-total .lbl { font-family: var(--disp); font-size: 19px; font-weight: 800; letter-spacing: -0.02em; }
.sum-total .v { font-family: var(--disp); font-size: 34px; font-weight: 800; letter-spacing: -0.03em; font-variant-numeric: tabular-nums; }
.save-note { font-size: 13px; color: var(--ok); font-weight: 600; padding-top: 8px; font-variant-numeric: tabular-nums; }
.secure { display: flex; align-items: center; justify-content: center; gap: 8px; padding-top: 14px; font-size: 12px; color: var(--ink-3); }
.side-box { border: 1px solid var(--line-2); border-radius: 6px; background: var(--sunk); padding: 20px 22px; display: flex; flex-direction: column; gap: 12px; }
.side-box .h { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); }
.fld-sm { height: 48px; padding: 0 14px; border: 1.5px solid var(--line-2); border-radius: 4px; font-size: 14px; background: var(--bg); color: var(--ink); width: 100%; }
.btn-sm { height: 48px; padding: 0 20px; border: 1.5px solid var(--ink); background: transparent; border-radius: 4px; font-size: 14px; font-weight: 700; color: var(--ink); }
.btn-sm:hover { background: var(--ink); color: var(--bg); }
.empty { border: 1px dashed var(--ink-4); border-radius: 6px; padding: 56px 40px; text-align: center; }
.empty[hidden] { display: none; }
.empty .h { font-family: var(--disp); font-size: 26px; font-weight: 800; letter-spacing: -0.025em; padding-bottom: 10px; }

/* ---------- checkout ---------- */

.co-hdr { height: 84px; border-bottom: 1px solid var(--line); background: var(--bg); }
.co-hdr-in { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gut); height: 100%; display: flex; align-items: center; gap: 20px; }
.co-secure { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; color: var(--ink-2); margin-left: auto; flex-wrap: wrap; }
.co-cols { display: grid; grid-template-columns: minmax(0, 1fr) 420px; gap: 60px; align-items: start; }
.steps { display: flex; flex-direction: column; gap: 16px; }
.step { border: 1.5px solid var(--line); border-radius: 6px; background: var(--card); overflow: hidden; }
.step.on { border-color: var(--ink); }
.step-h { width: 100%; background: transparent; border: 0; padding: 22px 26px; display: flex; align-items: center; gap: 16px; text-align: left; color: var(--ink); }
.step-n { width: 30px; height: 30px; border-radius: 999px; background: var(--sunk); color: var(--ink-3); font-size: 14px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-variant-numeric: tabular-nums; }
.step.on .step-n { background: var(--acc); color: var(--bg); }
.step-t { font-size: 18px; font-weight: 700; letter-spacing: -0.02em; flex-grow: 1; }
.step-s { font-size: 13px; color: var(--ink-3); font-variant-numeric: tabular-nums; }
.step-b { padding: 0 26px 26px; }
.step-b[hidden] { display: none; }
.f2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.f2 .span2 { grid-column: span 2; }
.lab { font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-3); padding-bottom: 7px; display: block; }
.fld-co { height: 54px; padding: 0 15px; border: 1.5px solid var(--line-2); border-radius: 4px; font-size: 15px; background: var(--bg); color: var(--ink); width: 100%; }
.fld-co:focus { outline: none; border-color: var(--ink); }
.check { display: flex; align-items: center; gap: 10px; padding-top: 16px; font-size: 14px; color: var(--ink-2); }
.check input { width: 18px; height: 18px; accent-color: var(--acc); }
.radio { border: 1.5px solid var(--line-2); background: var(--bg); border-radius: 5px; padding: 16px 18px; display: flex; align-items: center; gap: 14px; text-align: left; width: 100%; color: var(--ink); }
.radio:hover { border-color: var(--ink-3); }
.radio[aria-pressed="true"] { border-color: var(--ink); background: var(--sunk); }
.radio .t { display: block; font-size: 15px; font-weight: 700; letter-spacing: -0.01em; }
.radio .d { display: block; font-size: 13px; color: var(--ink-3); padding-top: 3px; }
.radio .amt { font-size: 16px; font-weight: 700; font-variant-numeric: tabular-nums; white-space: nowrap; }
.radios { display: flex; flex-direction: column; gap: 10px; }
.pay-big { width: 100%; height: 64px; background: var(--acc); color: var(--bg); border: 0; border-radius: 4px; font-size: 17px; font-weight: 700; display: flex; align-items: center; justify-content: center; gap: 12px; }
.pay-big:hover { background: var(--acc-dark); }
.dashed { border: 1.5px dashed var(--ink-4); border-radius: 5px; padding: 16px; font-size: 13px; color: var(--ink-3); line-height: 1.5; }
.dashed b { color: var(--ink); font-weight: 600; }
.or { display: flex; align-items: center; gap: 16px; padding: 18px 0 8px; }
.or span { flex-grow: 1; height: 1px; background: var(--line); }
.or b { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); }
.mini { display: flex; flex-direction: column; gap: 18px; padding-bottom: 22px; }
.mini > div { display: flex; gap: 14px; align-items: center; }
.mini img { width: 64px; height: 64px; object-fit: cover; border-radius: 4px; background: var(--sunk); flex-shrink: 0; }
.mini .t { font-size: 14px; font-weight: 700; letter-spacing: -0.015em; line-height: 1.3; }
.mini .v { font-size: 12px; color: var(--ink-3); padding-top: 3px; font-variant-numeric: tabular-nums; }
.mini .amt { font-size: 15px; font-weight: 700; font-variant-numeric: tabular-nums; margin-left: auto; }
.ticks { border: 1px solid var(--line-2); border-radius: 6px; background: var(--sunk); padding: 20px 22px; display: flex; flex-direction: column; gap: 13px; }
.ticks div { display: flex; align-items: flex-start; gap: 11px; font-size: 13px; line-height: 1.5; color: var(--ink-2); }
.ticks svg { flex-shrink: 0; margin-top: 1px; }

/* ---------- sticky mobile buy bar ---------- */

.buybar { display: none; }

/* ---------- added-to-cart toast ---------- */

.toast {
  position: fixed; right: 24px; bottom: 24px; z-index: 50;
  display: flex; align-items: center; gap: 16px;
  background: var(--ink); color: var(--bg); border-radius: 6px;
  padding: 16px 20px; max-width: 380px;
}
.toast svg { flex-shrink: 0; }
.toast .t { font-size: 14px; font-weight: 700; }
.toast .s { font-size: 13px; color: var(--ink-4); padding-top: 3px; font-variant-numeric: tabular-nums; }
@media (max-width: 900px) {
  .toast { right: 12px; left: 12px; bottom: 96px; max-width: none; }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1180px) {
  :root { --gut: 40px; }
  .hero h1 { font-size: 62px; }
  .pdp { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 40px; }
  .cart-cols { grid-template-columns: minmax(0, 1fr) 340px; gap: 36px; }
  .co-cols { grid-template-columns: minmax(0, 1fr) 360px; gap: 36px; }
  .cats { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  :root { --gut: 24px; }
  .nav { display: none; }
  .burger { display: flex; }
  /* Burger fixed left, cart/search/account group fixed right (the two
     remaining in-flow flex children, pushed to the row's ends), logo
     absolutely centered independent of either group's width — so it stays
     dead-center regardless of how many icons are showing at a given
     breakpoint, instead of just trailing wherever it lands after the
     burger. */
  .hdr-in { height: 64px; gap: 12px; position: relative; justify-content: space-between; }
  .logo { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); font-size: 17px; }
  /* No search icon in the mobile header — search moves to a dedicated bar
     under the hero on the home page, and into the hamburger drawer on every
     other page (header.php / front-page.php). */
  .hdr-act [data-search-open] { display: none; }
  .h-search-mobile { display: block; padding: 16px var(--gut); border-bottom: 1px solid var(--line); }
  .h-search-mobile form { display: flex; gap: 10px; }
  .h-search-mobile input[type="search"] { flex-grow: 1; min-width: 0; height: 48px; padding: 0 16px; border: 1.5px solid var(--ink); border-radius: 4px; font-size: 15px; background: var(--bg); color: var(--ink); }
  .h-search-mobile button[type="submit"] { flex-shrink: 0; height: 48px; padding: 0 20px; border: 0; border-radius: 4px; background: var(--ink); color: var(--bg); font-size: 14px; font-weight: 700; }
  .hero { grid-template-columns: minmax(0, 1fr); }
  .hero-copy { padding: 36px var(--gut) 32px; gap: 18px; order: 2; }
  .hero h1 { font-size: 40px; line-height: 0.96; }
  .hero-shot { min-height: 0; order: 1; padding: 0; }
  .hero-shot > img { width: 100%; height: 320px; border-radius: 0; }
  .roundel { width: 62px; height: 62px; top: 14px; right: 14px; }
  .roundel b { font-size: 19px; }
  .shot-card { left: 12px; right: 12px; bottom: 12px; padding: 13px 14px; }
  .trust { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust > div { padding: 16px; }
  .trust > div:nth-child(2) { border-right: 0; }
  .trust > div:nth-child(1), .trust > div:nth-child(2) { border-bottom: 1px solid var(--line); }
  .sec { padding-top: 34px; }
  .sec-head { padding-bottom: 18px; }
  .sec-head h2, .sec > h2 { font-size: 28px; }
  .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .card-img img { height: 167px; }
  .card-body { padding: 11px 12px 13px; gap: 6px; }
  .card-t { font-size: 13px; }
  .pri { font-size: 18px; }
  .was, .from { font-size: 11px; }
  .prow { gap: 8px; }
  .qa { height: 44px; }
  .cats { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .cat { gap: 24px; padding: 16px; }
  .deal, .news { grid-template-columns: minmax(0, 1fr); }
  .deal-copy { padding: 26px 22px; }
  .deal h2 { font-size: 30px; }
  .deal-price .big { font-size: 34px; }
  .deal-shot { order: -1; padding: 0; }
  .deal-shot img { width: 100%; height: 240px; border-radius: 0; }
  .news { padding: 26px 22px; gap: 20px; }
  .news h2 { font-size: 26px; }
  .news form { flex-direction: column; }
  .proof { grid-template-columns: minmax(0, 1fr); }
  .page-head h1 { font-size: 38px; }
  .count-box { min-width: 0; width: 100%; }
  .sortbar { padding: 10px 0; }
  .sort-lbl { width: 100%; padding-bottom: 6px; }
  .pdp { grid-template-columns: minmax(0, 1fr); gap: 20px; }
  .gal-main { border-radius: 0; margin: 0 calc(var(--gut) * -1); }
  .thumbs { justify-content: center; }
  .thumb { width: 64px; height: 64px; }
  .buy h1 { font-size: 30px; }
  .buy-price .big { font-size: 36px; }
  .opts { grid-template-columns: minmax(0, 1fr); }
  .acc-t { font-size: 16px; }
  .acc-h { padding: 18px 0; }
  .spec { grid-template-columns: 120px minmax(0, 1fr); font-size: 13px; }
  .xsell { padding: 24px 20px; border-radius: 6px; }
  .xsell h2 { font-size: 22px; }
  .xgrid { grid-template-columns: minmax(0, 1fr); }
  .cart-cols, .co-cols { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .line { grid-template-columns: 84px minmax(0, 1fr); gap: 14px; }
  .line > img { width: 84px; height: 84px; }
  .line-info .t { font-size: 15px; }
  .line-q { grid-column: 2; flex-direction: row; align-items: center; justify-content: space-between; width: 100%; }
  .line-tot { grid-column: 2; text-align: left; font-size: 20px; }
  .f2 { grid-template-columns: minmax(0, 1fr); }
  .f2 .span2 { grid-column: span 1; }
  .step-h { padding: 16px 18px; gap: 12px; }
  .step-t { font-size: 16px; }
  .step-b { padding: 0 18px 20px; }
  .ftr { margin-top: 36px; }
  .ftr-in { padding: 34px var(--gut) 26px; }
  .ftr-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; padding-bottom: 26px; }
  .ftr-min { margin-top: 32px; }

  /* sticky buy bar on product pages */
  body.has-buybar { padding-bottom: 84px; }
  .buybar {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
    background: var(--bg); border-top: 1px solid var(--line); padding: 12px var(--gut);
    align-items: center; gap: 12px;
  }
  .buybar .tot { font-family: var(--disp); font-size: 20px; font-weight: 800; letter-spacing: -0.025em; line-height: 1.1; font-variant-numeric: tabular-nums; }
  .buybar .sub { font-size: 10px; color: var(--ink-3); font-variant-numeric: tabular-nums; }
  .buybar button { flex-grow: 1; height: 56px; background: var(--acc); color: var(--bg); border: 0; border-radius: 4px; font-size: 16px; font-weight: 700; }
  .buy-row .add-big { display: none; }
  .buy-row { justify-content: flex-start; }
}

@media (max-width: 420px) {
  .cats { grid-template-columns: minmax(0, 1fr); }
}

/* mobile drawer nav */
.drawer { display: none; }
.drawer.open { display: block; position: fixed; inset: 0; z-index: 60; }
.drawer-bg { position: absolute; inset: 0; background: rgba(23, 20, 15, 0.5); }
.drawer-panel { position: absolute; top: 0; left: 0; bottom: 0; width: min(320px, 86vw); background: var(--bg); padding: 20px; display: flex; flex-direction: column; gap: 4px; overflow-y: auto; }
.drawer-panel a { padding: 14px 6px; font-size: 17px; font-weight: 600; border-bottom: 1px solid var(--line); }
.drawer-close { align-self: flex-end; width: 44px; height: 44px; border: 0; background: transparent; font-size: 24px; color: var(--ink); }
.drawer-search { padding: 4px 6px 14px; }
.drawer-search form { display: flex; gap: 8px; }
.drawer-search input[type="search"] { flex-grow: 1; min-width: 0; height: 46px; padding: 0 14px; border: 1.5px solid var(--ink); border-radius: 4px; font-size: 14px; background: var(--bg); color: var(--ink); }
.drawer-search button[type="submit"] { flex-shrink: 0; height: 46px; padding: 0 18px; border: 0; border-radius: 4px; background: var(--ink); color: var(--bg); font-size: 13px; font-weight: 700; }

@media print {
  .ann, .buybar, .drawer { display: none !important; }
}
