/* CutPrice — Fresh Finds. Warm mint resale: soft rounded cards, hand-torn price
   tags, characterful display type, generous whitespace. "The joy of the hunt." */

:root {
  --ground: #F3FAF7;
  --surface: #E3F2EC;
  --surface-2: #D3E9E1;
  --card: #FFFFFF;
  --line: #CDE7DF;
  --line-strong: #B4D8CD;
  --ink: #0C2B24;
  --muted: #4E6A62;

  --teal: #0E6B5B;
  --teal-deep: #0A5346;
  --pink: #F5347F;
  --pink-bg: #FFE4EE;
  --amber: #E28C00;
  --amber-bg: #FFF7D6;

  --green: #0E6B5B;
  --green-soft: #DCEEE8;
  --danger: #C23B4B;
  --danger-soft: #FCE7EA;

  --font-display: "Bricolage Grotesque", "Helvetica Neue", system-ui, sans-serif;
  --font-body: "Karla", system-ui, -apple-system, sans-serif;
  --font-hand: "Caveat", "Bricolage Grotesque", cursive;
  --font-mono: "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --radius: 14px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  --maxw: 1160px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-deep); }
img { max-width: 100%; display: block; }
.mono { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }
:focus-visible { outline: 2px solid var(--pink); outline-offset: 2px; border-radius: 3px; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* ---- Utility bar ---- */
.utilbar {
  background: var(--surface);
  color: var(--muted);
  font-size: 12.5px;
  border-bottom: 1px solid var(--line);
}
.utilbar .inner {
  max-width: var(--maxw); margin: 0 auto; padding: 8px 24px;
  display: flex; gap: 20px; flex-wrap: wrap; align-items: center;
}
.utilbar span, .utilbar .inner > a:nth-child(2) { display: inline-flex; align-items: center; gap: 7px; }
.utilbar span::before, .utilbar .inner > a:nth-child(2)::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--teal); } /* incl. the now-linked "Money held safe" item */
.utilbar a { color: var(--teal); font-weight: 600; }
.utilbar .inner > a:last-child { margin-left: auto; } /* pushes only the trailing link to the far right */

/* ---- Masthead / nav ---- */
.masthead { background: var(--ground); border-bottom: 1px solid var(--line); }
.masthead .inner {
  max-width: var(--maxw); margin: 0 auto; padding: 16px 24px;
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
}
.brand {
  font-family: var(--font-display); font-weight: 800; font-size: 25px;
  letter-spacing: -.03em; color: var(--ink); position: relative;
}
.brand::after {
  content: ""; position: absolute; top: -2px; right: -11px;
  width: 9px; height: 9px; border-radius: 50%; background: var(--pink);
}
.brand:hover { color: var(--ink); }
.masthead nav { display: flex; gap: 18px; font-size: 14px; font-weight: 600; }
.masthead nav a { color: var(--muted); }
.masthead nav a:hover { color: var(--ink); }
.masthead .spacer { margin-left: auto; }
.masthead .actions { display: flex; gap: 10px; align-items: center; font-size: 14px; font-weight: 600; }

/* header search — pill */
.headsearch {
  flex: 1 1 260px; min-width: 200px; display: flex;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius-pill); overflow: hidden;
}
.headsearch input {
  flex: 1; border: 0; background: transparent; padding: 11px 18px;
  font: inherit; color: var(--ink); min-width: 0;
}
.headsearch input::placeholder { color: #8FA69D; }
.headsearch button {
  border: 0; background: var(--teal); color: #fff; font: inherit; font-weight: 700;
  font-size: 13px; padding: 0 20px; margin: 4px; border-radius: var(--radius-pill); cursor: pointer;
}
.headsearch button:hover { background: var(--teal-deep); }

/* ---- Category strip — pill chips ---- */
.catstrip { background: var(--ground); border-bottom: 1px solid var(--line); }
.catstrip .inner {
  max-width: var(--maxw); margin: 0 auto; padding: 12px 24px;
  display: flex; gap: 9px; overflow-x: auto; font-size: 13px;
}
.catstrip a {
  color: var(--ink); white-space: nowrap; font-weight: 600;
  background: var(--card); border: 1px solid var(--line);
  padding: 7px 14px; border-radius: var(--radius-pill);
}
.catstrip a:hover { border-color: var(--teal); color: var(--teal); }

/* ---- Layout ---- */
main { max-width: var(--maxw); margin: 0 auto; padding: 34px 24px 68px; }
.narrow { max-width: 460px; margin: 0 auto; }

h1 { font-family: var(--font-display); font-weight: 800; font-size: 2rem; letter-spacing: -.03em; margin: 0 0 8px; text-wrap: balance; }
h2 { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; letter-spacing: -.02em; margin: 0 0 12px; text-wrap: balance; }
.lead { color: var(--muted); margin: 0 0 24px; font-size: 1.03rem; }

/* ---- Forms ---- */
.card { border: 1px solid var(--line); background: var(--card); padding: 24px; border-radius: var(--radius-lg); }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 12.5px; font-weight: 700; margin-bottom: 5px; letter-spacing: .01em; }
.field input, .field select, .field textarea {
  width: 100%; padding: 10px 12px;
  border: 1px solid var(--line-strong); background: var(--card); color: var(--ink);
  font: inherit; border-radius: 10px;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--pink); outline-offset: -1px; border-color: var(--pink); }
.field .hint { font-size: 11.5px; color: var(--muted); margin-top: 4px; }

.btn {
  display: inline-block; padding: 11px 20px; border: 1px solid var(--ink);
  background: var(--ink); color: #fff; font: inherit; font-weight: 700; font-size: 14px;
  cursor: pointer; border-radius: var(--radius-pill); text-align: center;
}
.btn:hover { background: #08201A; color: #fff; }
.btn.gold { background: var(--pink); border-color: var(--pink); }
.btn.gold:hover { background: #D81E68; }
.btn.ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn.ghost:hover { background: var(--surface); color: var(--ink); }
.btn.block { display: block; width: 100%; }

.alert { padding: 11px 14px; border: 1px solid var(--line); font-size: 13.5px; margin-bottom: 16px; border-radius: 10px; }
.alert.error { background: var(--danger-soft); border-color: #EEC0C7; color: var(--danger); }
.alert.ok { background: var(--green-soft); border-color: #A9D6C8; color: var(--green); }

.formfoot { margin-top: 16px; font-size: 13px; color: var(--muted); }

/* ---- Status pill (orders.php, order.php) ---------------------------------- */
.pill { display: inline-block; font-family: var(--font-mono); font-size: 11px; font-weight: 600; padding: 2px 9px; border: 1px solid var(--line-strong); border-radius: var(--radius-pill); text-transform: uppercase; letter-spacing: .03em; }
.pill.ok { color: var(--green); border-color: #A9D6C8; background: var(--green-soft); }
.pill.warn { color: var(--amber); border-color: #E6D3AE; background: var(--amber-bg); }
.pill.bad { color: var(--danger); border-color: #E9B9C0; background: var(--danger-soft); }

/* ---- Order list rows (orders.php, dashboard.php) --------------------------- */
.orderlist { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.ordrow { display: flex; align-items: center; gap: 14px; padding: 13px 16px; border-bottom: 1px solid var(--line); color: var(--ink); }
.ordrow:last-child { border-bottom: none; }
.ordrow:hover { background: var(--surface); text-decoration: none; }
.ordrow img, .ordrow-noimg { width: 54px; height: 54px; object-fit: cover; border-radius: 10px; flex: 0 0 auto; background: var(--surface-2); }
.ordrow-noimg { display: grid; place-items: center; font-size: 9px; color: var(--muted); text-align: center; }
.ordrow-body { flex: 1; min-width: 0; }
.ordrow-title { font-weight: 700; font-size: 14px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ordrow-meta { font-size: 12px; color: var(--muted); margin-top: 2px; }
.ordrow-price { font-size: 14px; white-space: nowrap; color: var(--teal); font-weight: 700; }
@media (max-width: 600px) { .ordrow { flex-wrap: wrap; } .ordrow-price { order: 3; } }

/* ---- Category picker (onboarding) ---- */
.pickgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; }
.pickgrid label {
  background: var(--card); border: 1px solid var(--line); padding: 11px 13px; font-size: 13px; cursor: pointer;
  display: flex; gap: 8px; align-items: flex-start; border-radius: 12px;
}
.pickgrid label:hover { background: var(--surface); border-color: var(--teal); }
.pickgrid input:checked + span { font-weight: 700; color: var(--teal); }

/* ---- Footer ---- */
.trustband { border-top: 1px solid var(--line); background: var(--surface); }
.trustband .inner {
  max-width: var(--maxw); margin: 0 auto; padding: 30px 24px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 24px; font-size: 13px;
}
.trustband b { font-family: var(--font-display); font-weight: 700; display: block; font-size: 14px; margin-bottom: 3px; }
.trustband span { color: var(--muted); }
footer.site { background: var(--ground); border-top: 1px solid var(--line); }
footer.site > .inner {
  max-width: var(--maxw); margin: 0 auto; padding: 40px 24px 8px;
  display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 26px;
}
.footcol b { font-family: var(--font-display); font-weight: 700; font-size: 14px; display: block; margin-bottom: 12px; }
.footcol p { font-size: 12.5px; color: var(--muted); margin: 0; max-width: 32ch; }
.footcol a { display: block; font-size: 13px; color: var(--muted); margin-bottom: 9px; }
.footcol a:hover { color: var(--teal); }
.footbottom { border-top: 1px solid var(--line); margin-top: 22px; }
.footbottom .inner { max-width: var(--maxw); margin: 0 auto; padding: 16px 24px; font-size: 12px; color: var(--muted); }
@media (max-width: 820px) { footer.site > .inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { footer.site > .inner { grid-template-columns: 1fr; } }

/* ---- Homepage "how it works" 3-step band ---------------------------------- */
.home-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 34px 0 0; }
.home-steps > div { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 22px 24px; }
.home-steps .num { font-family: var(--font-hand); color: var(--pink); font-size: 20px; line-height: 1; }
.home-steps h3 { font-family: var(--font-display); font-weight: 700; font-size: 16px; margin: 8px 0 6px; }
.home-steps p { font-size: 13px; color: var(--muted); margin: 0; }
@media (max-width: 700px) { .home-steps { grid-template-columns: 1fr; } }

/* ---- Simple content pages (about, faq, terms, privacy, buyer-protection) -- */
.prose { max-width: 68ch; }
.prose h2 { margin-top: 30px; }
.prose p { margin: 0 0 14px; color: var(--ink); }
.prose ul, .prose ol { margin: 0 0 14px; padding-left: 20px; color: var(--ink); }
.prose li { margin-bottom: 6px; }
.faq-item { border-bottom: 1px solid var(--line); padding: 16px 0; }
.faq-item summary { cursor: pointer; font-weight: 700; font-size: 15px; }
.faq-item p { margin: 10px 0 0; color: var(--muted); }

/* ---- Home ---- */
/* ---- Hero carousel (index.php only) --------------------------------------
   Same mechanics as the flex-track carousel everywhere else: js/hero-carousel.js
   translates .hero-track by slide index and drives the .hero-dot pills. Only
   the skin differs here — rounded card, teal/pink, matching Fresh Finds. */
.hero-carousel { position: relative; overflow: hidden; border-radius: var(--radius-lg); background: var(--card); box-shadow: 0 16px 30px -20px rgba(12, 43, 36, .35); margin-bottom: 30px; }
.hero-track { display: flex; transition: transform .5s ease; }
@media (prefers-reduced-motion: reduce) { .hero-track { transition: none; } }
.hero-slide { flex: 0 0 100%; min-width: 0; min-height: 340px; display: flex; flex-direction: column; justify-content: center; }
.hero-slide-default { padding: 30px 34px; }
.hero-slide-default h1 { font-size: clamp(2rem, 5vw, 3.1rem); line-height: 1.05; max-width: 15ch; }
.hero-slide-default h1 .hl { color: var(--pink); }
.hero-slide-default .lead { max-width: 46ch; }
.home-cta { display: flex; gap: 12px; margin-top: 20px; align-items: center; flex-wrap: wrap; }
.home-cta .hand { font-family: var(--font-hand); font-size: 1.35rem; color: var(--amber); transform: rotate(-4deg); }

.hero-slide-deal { background-size: cover; background-position: center; padding: 30px 34px; }
.hero-deal-card {
  background: var(--teal-deep); color: #fff; padding: 24px 28px; max-width: 380px;
  border-radius: var(--radius); box-shadow: 0 20px 40px -18px rgba(10, 83, 70, .55);
}
.hero-eyebrow { font-family: var(--font-hand); font-size: 20px; color: var(--pink); line-height: 1; }
.hero-deal-card h2 { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; margin: 4px 0 14px; color: #fff; }
.hero-deal-price { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; margin-bottom: 12px; }
.hero-deal-price .ask { font-size: 1.3rem; font-weight: 700; font-family: var(--font-body); }
.hero-deal-price .mkt { color: #AFD3CA; text-decoration: line-through; font-size: 13px; }
.hero-deal-countdown { font-size: 13px; color: #DCEFEA; margin-bottom: 16px; }
.hero-deal-countdown strong { font-family: var(--font-mono); }

.hero-dots { position: absolute; left: 0; right: 0; bottom: 14px; display: flex; justify-content: center; gap: 8px; }
.hero-dot { width: 20px; height: 6px; padding: 0; border: none; border-radius: var(--radius-pill); background: rgba(12,43,36,.18); cursor: pointer; }
.hero-dot.on { background: var(--pink); }

/* ---- Horizontally-scrolling single row (e.g. "Most viewed") -------------- */
.lrow-wrap { position: relative; }
.lrow {
  display: flex; gap: 20px; overflow-x: auto; scroll-behavior: smooth;
  scroll-snap-type: x proximity; padding: 2px 2px 10px; -webkit-overflow-scrolling: touch;
}
.lrow::-webkit-scrollbar { height: 6px; }
.lrow::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: var(--radius-pill); }
.lrow .lcard { flex: 0 0 230px; scroll-snap-align: start; }
.lrow-nav {
  position: absolute; top: 50%; margin-top: -18px; width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--line-strong); background: var(--card); cursor: pointer;
  display: flex; align-items: center; justify-content: center; font-size: 15px; z-index: 1;
  box-shadow: 0 10px 20px -12px rgba(12, 43, 36, .4);
}
.lrow-nav:hover { border-color: var(--teal); color: var(--teal); }
.lrow-nav.prev { left: -16px; }
.lrow-nav.next { right: -16px; }
@media (max-width: 640px) { .lrow-nav { display: none; } /* touch swipe covers it */ }
.row-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 16px; }
.row-head h2 { margin: 0; }
.row-head a { font-size: 13px; font-weight: 700; }
.catgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 10px; }
.catgrid a { background: var(--card); color: var(--ink); border: 1px solid var(--line); padding: 14px 16px; font-size: 13.5px; font-weight: 600; border-radius: 12px; }
.catgrid a:hover { border-color: var(--teal); color: var(--teal); }

/* ---- Listing grid + cards ---- */
.lgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; align-items: start; }
.lcard {
  background: var(--card); color: var(--ink); display: flex; flex-direction: column;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 1px 2px rgba(12, 43, 36, .06);
  transition: transform .18s ease-out, box-shadow .18s ease-out;
}
.lcard:hover { transform: translateY(-3px); box-shadow: 0 16px 30px -20px rgba(12, 43, 36, .4); color: var(--ink); }
.lcard-img { position: relative; aspect-ratio: 1 / 1; flex: 0 0 auto; background: linear-gradient(150deg, var(--surface), var(--surface-2)); overflow: hidden; }
.lcard-img img { width: 100%; height: 100%; object-fit: cover; }
.lcard-img .noimg { position: absolute; inset: 0; display: grid; place-items: center; color: var(--muted); font-size: 12px; }

.chip { position: absolute; font-size: 11.5px; font-weight: 700; padding: 4px 9px; }
.chip.savings {
  left: 11px; top: 11px; font-family: var(--font-hand); font-size: 16px; line-height: 1;
  background: var(--amber-bg); color: #5B4A00; border: 1px dashed #E4C862;
  padding: 6px 11px 5px 9px; border-radius: 3px 11px 11px 3px; transform: rotate(-6deg);
  box-shadow: 1px 2px 3px rgba(0, 0, 0, .12);
}
.chip.countdown {
  left: 11px; bottom: 11px; background: rgba(12, 43, 36, .82); color: #fff;
  border-radius: var(--radius-pill); font-family: var(--font-mono); font-weight: 600; font-size: 11px;
}

.lcard-body { padding: 14px 15px 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.lcard-title {
  font-size: 14px; font-weight: 700; line-height: 1.32;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.lcard-price { font-size: 18px; font-weight: 700; color: var(--teal); margin-top: 2px; font-family: var(--font-body); }
.lcard-was { font-size: 12px; color: #8FA69D; text-decoration: line-through; }
.lcard-save { display: inline-block; align-self: flex-start; background: var(--pink-bg); color: var(--pink); font-size: 11.5px; font-weight: 700; padding: 2px 9px; border-radius: var(--radius-pill); }
.lcard-meta { font-size: 11.5px; color: var(--muted); margin-top: auto; padding-top: 6px; display: flex; justify-content: space-between; gap: 8px; }
.lcard-meta .star { color: var(--amber); }

/* ---- Browse layout ---- */
.browse { display: grid; grid-template-columns: 250px 1fr; gap: 30px; align-items: start; }
.filters { border: 1px solid var(--line); background: var(--card); padding: 18px; border-radius: var(--radius-lg); position: sticky; top: 16px; }
.filters .field.two, .field.two { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.results-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; font-size: 13px; }
.results-head select { padding: 8px 10px; border: 1px solid var(--line-strong); font: inherit; background: var(--card); color: var(--ink); border-radius: 10px; }
.pager { display: flex; gap: 6px; margin-top: 24px; flex-wrap: wrap; }
.pager a { padding: 7px 13px; border: 1px solid var(--line); font-family: var(--font-mono); font-size: 13px; border-radius: 10px; background: var(--card); }
.pager a.on { background: var(--teal); color: #fff; border-color: var(--teal); }

/* ---- Product page ---- */
.pdp { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.pdp-gallery #pdp-main, .pdp-noimg { width: 100%; aspect-ratio: 1; object-fit: cover; border: 1px solid var(--line); background: var(--surface-2); border-radius: var(--radius-lg); }
.pdp-noimg { display: grid; place-items: center; color: var(--muted); }
.thumbs { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.thumbs img { width: 64px; height: 64px; object-fit: cover; border: 1px solid var(--line); cursor: pointer; border-radius: 10px; }
.pdp-cat { font-size: 12.5px; color: var(--muted); margin: 0 0 4px; }
.pdp-cat a { color: var(--muted); }
.priceblock { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; margin: 14px 0; }
.priceblock .ask { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--teal); letter-spacing: -.02em; }
.priceblock .mkt { color: #8FA69D; text-decoration: line-through; }
.priceblock .chip.savings { position: static; transform: rotate(-3deg); }
.pdp-countdown { background: var(--amber-bg); border: 1px solid #E6D3AE; padding: 9px 13px; font-size: 13px; margin-bottom: 12px; border-radius: 10px; }
.pdp-loc { font-size: 13px; color: var(--muted); }
.pdp-owner { margin: 14px 0; }
.owner-actions { display: flex; gap: 8px; margin-top: 10px; }
.btn.big { font-size: 15px; padding: 14px 22px; width: 100%; margin-top: 8px; }
.pdp-protect { font-size: 12px; color: var(--green); margin-top: 8px; }
.pdp-seller { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 14px 0; margin: 20px 0; display: flex; justify-content: space-between; font-size: 13px; }
.pdp-desc { font-size: 14px; }
.pdp-desc h2 { margin-top: 0; }

/* ---- Seller profile ---- */
.seller-head { margin-bottom: 28px; }
.seller-stats { display: flex; gap: 18px; font-size: 13px; margin: 10px 0; flex-wrap: wrap; }
.reviews { display: grid; gap: 10px; }
.review { background: var(--card); border: 1px solid var(--line); padding: 14px 16px; font-size: 13.5px; border-radius: 12px; }
.review .rmeta { color: var(--muted); font-size: 12px; margin-top: 4px; }

/* ---- Stat tiles (dashboard) ---- */
.statgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; margin-bottom: 24px; }
.stat { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 16px 18px; }
.stat .n { font-family: var(--font-display); font-weight: 800; font-size: 1.7rem; color: var(--teal); letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.stat .l { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ---- How it works ---- */
.hiw-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin: 24px 0 8px; }
.hiw-track { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 22px 24px 26px; }
.hiw-track h2 { margin: 0 0 14px; }
.hiw-steps { list-style: none; counter-reset: hiw; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.hiw-steps li { counter-increment: hiw; position: relative; padding-left: 42px; font-size: 14px; line-height: 1.5; color: var(--muted); }
.hiw-steps li::before {
  content: counter(hiw); position: absolute; left: 0; top: -2px;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--pink-bg); color: var(--pink);
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  display: flex; align-items: center; justify-content: center;
}
.hiw-steps li b { display: block; color: var(--ink); font-weight: 700; margin-bottom: 2px; }
.hiw-note { margin-top: 20px; }
.hiw-note ul { margin: 0; padding-left: 20px; display: flex; flex-direction: column; gap: 8px; font-size: 14px; color: var(--muted); }
.hiw-note ul b { color: var(--ink); }

@media (max-width: 860px) {
  .browse { grid-template-columns: 1fr; }
  .filters { position: static; }
  .pdp { grid-template-columns: 1fr; }
  .hiw-cols { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .masthead nav { display: none; }
  h1 { font-size: 1.7rem; }
}
