/* ============================================================
   Torres OS — Global Styles  ·  Torres Liquidations brand
   Dark #111 + orange (#ff7a00 / #e15505), Oswald + Barlow Condensed.
   Layout: StockX-style marketplace.
   ============================================================ */
:root {
  --bg:        #111113;
  --bg-2:      #16161a;
  --surface:   #1c1c21;
  --surface-2: #26262c;
  --line:      #2b2b33;
  --line-2:    #3d3d47;
  --text:      #f5f5f7;
  --muted:     #a3a3af;
  --accent:    #ff7a00;   /* Torres orange */
  --accent-2:  #e15505;   /* deep orange */
  --dark:      #0b0b0d;
  --green:     #35d07f;
  --red:       #ff5a60;
  --amber:     #fbbf24;
  --amber-bg:  rgba(251,191,36,.14);
  --radius:    12px;
  --maxw:      1280px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.4);
  --shadow-md: 0 14px 34px -14px rgba(0,0,0,.65);
  --glow:      0 0 0 1px rgba(255,122,0,.35), 0 10px 30px -12px rgba(255,122,0,.35);
  --font:      'Barlow Condensed', 'Inter', -apple-system, sans-serif;
  --font-head: 'Oswald', 'Barlow Condensed', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 17px;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: var(--font-head); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; }
input, select, textarea { font-family: inherit; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
/* NOTE: anything that also carries .wrap must set padding with the LONGHAND
   (padding-top / padding-bottom). `padding: 60px 0 58px` silently deletes the
   24px sides above and runs content to the window edge. That shipped three
   times -- the hero, the policy pages and the reviews section. */

/* The hidden attribute has to beat a class that sets display.
   Eight elements here are shown and hidden with it -- the filter bar, the
   active-filter badge, Clear all, each filter group, Load more and the
   reviews section -- and the UA rule for [hidden] loses to any author
   `display`, so without this they stay on screen while marked hidden. */
[hidden] { display: none !important; }
.mono { font-variant-numeric: tabular-nums; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 22px; border-radius: 999px; font-weight: 600;
  font-size: 15px; letter-spacing: .04em; transition: .15s ease;
  background: var(--surface); color: var(--text); border: 1px solid var(--line-2);
  font-family: var(--font-head); text-transform: uppercase;
}
.btn:hover { border-color: var(--accent); color: #fff; }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff; border-color: transparent;
}
.btn-primary:hover { filter: brightness(1.12); box-shadow: var(--glow); }
.btn-green { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; border-color: transparent; }
.btn-green:hover { filter: brightness(1.12); box-shadow: var(--glow); }
.btn-ghost { background: transparent; border-color: transparent; }
.btn-ghost:hover { background: var(--surface-2); border-color: transparent; }
.btn-sm { padding: 7px 14px; font-size: 13.5px; }
.btn-block { width: 100%; }
.btn:disabled { opacity: .45; cursor: not-allowed; }

/* ---------- Announcement bar ---------- */
.announce {
  background: linear-gradient(90deg, var(--accent-2), var(--accent), var(--accent-2));
  color: #fff; text-align: center;
  font-size: 13.5px; font-weight: 700; padding: 9px 16px; letter-spacing: .05em;
  font-family: var(--font-head); text-transform: uppercase;
}
.announce b { color: #111; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(17,17,19,.9); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; gap: 18px; height: 76px; }
.logo { display: flex; align-items: center; gap: 10px; white-space: nowrap; }
.logo img.logo-img { height: 62px; width: auto; }
.logo .mark {
  width: 34px; height: 34px; border-radius: 9px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: grid; place-items: center; color: #fff; font-size: 17px; font-weight: 900;
}
.nav-search {
  flex: 1; max-width: 560px; margin: 0 auto;
  display: flex; align-items: center; gap: 10px; background: var(--surface);
  border: 1px solid var(--line); border-radius: 10px; padding: 10px 15px; transition: .15s;
}
.nav-search:focus-within { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(255,122,0,.15); }
.nav-search input { background: none; border: none; color: var(--text); outline: none; width: 100%; font-size: 16px; font-weight: 500; }
.nav-search input::placeholder { color: var(--muted); }
.nav-right { display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.cart-btn { position: relative; }
.cart-badge {
  position: absolute; top: -6px; right: -6px; background: var(--accent); color: #fff;
  font-size: 11px; font-weight: 800; min-width: 19px; height: 19px; border-radius: 10px;
  display: grid; place-items: center; padding: 0 5px;
}
/* category strip under nav */
.nav-cats { border-bottom: 1px solid var(--line); background: var(--bg-2); }
.nav-cats-inner { display: flex; gap: 4px; justify-content: center; overflow-x: auto; }
.nav-cats a {
  padding: 12px 20px; font-size: 15px; font-weight: 600; color: var(--text);
  border-bottom: 2px solid transparent; white-space: nowrap;
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: .05em;
}
.nav-cats a:hover { border-bottom-color: var(--accent); color: var(--accent); }

/* ---------- Hero ---------- */
.hero {
  border-bottom: 1px solid var(--line); overflow: hidden;
  background:
    radial-gradient(900px 420px at 80% -10%, rgba(255,122,0,.16), transparent 60%),
    radial-gradient(700px 380px at 5% 115%, rgba(225,85,5,.10), transparent 60%),
    var(--bg-2);
}
.hero-inner { padding-top: 60px; padding-bottom: 58px; display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.badge-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 22px; }
.pill {
  display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600;
  padding: 7px 14px; border-radius: 999px; background: var(--surface); border: 1px solid var(--line); color: var(--text);
  letter-spacing: .04em; text-transform: uppercase; font-family: var(--font-head);
}
.pill.live { color: #ff8b60; border-color: rgba(255,122,0,.45); }
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; animation: pulse 1.6s infinite; }
@keyframes pulse { 50% { opacity: .35; } }
.hero h1 { font-size: 60px; line-height: 1.04; letter-spacing: .01em; font-weight: 700; text-transform: uppercase; }
.hero h1 .grad {
  background: linear-gradient(120deg, var(--accent), #ffb347);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.sub { color: var(--muted); font-size: 19px; margin: 18px 0 28px; max-width: 500px; font-weight: 400; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 34px; margin-top: 40px; }
.hero-stats .s b { font-size: 28px; font-weight: 700; display: block; font-family: var(--font-head); }
.hero-stats .s span { font-size: 12.5px; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }

.hero-card { background: var(--surface); border: 1px solid var(--line); border-radius: 18px; padding: 22px; box-shadow: var(--shadow-md); }
.hero-card h3 { font-size: 13px; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); margin-bottom: 14px; font-weight: 600; }
.channel { display: flex; align-items: center; gap: 14px; padding: 13px 14px; border-radius: 12px; border: 1px solid var(--line); margin-bottom: 10px; transition: .15s; background: var(--surface-2); }
.channel:hover { border-color: var(--accent); transform: translateX(3px); }
.channel .ic { width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center; font-size: 20px; flex-shrink: 0; color: #fff; }
.channel .ic.ic-brand { background: transparent !important; }
.channel .ic svg { width: 42px; height: 42px; display: block; }
.channel b { display: block; font-size: 17px; font-family: var(--font-head); font-weight: 600; letter-spacing: .02em; }
.channel span { font-size: 14px; color: var(--muted); }
.channel .go { margin-left: auto; color: var(--accent); font-weight: 700; }

/* ---------- Category tiles ---------- */
.cat-tiles { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.cat-tile {
  background: var(--surface); border-radius: 16px; padding: 0 0 18px;
  text-align: center; transition: .18s ease; border: 1px solid var(--line);
  cursor: pointer; overflow: hidden;
}
.cat-tile:hover { border-color: var(--accent); box-shadow: var(--glow); transform: translateY(-3px); }
/* real product photo instead of an emoji */
.cat-tile .ct-photo {
  aspect-ratio: 4/3; background: linear-gradient(180deg, #202026, #17171b);
  display: grid; place-items: center; overflow: hidden; margin-bottom: 14px;
}
.cat-tile .ct-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .35s ease;
}
.cat-tile:hover .ct-photo img { transform: scale(1.06); }
.cat-tile .ct-emoji { font-size: 42px; line-height: 1; }
.cat-tile .em { font-size: 42px; line-height: 1; }
.cat-tile b { display: block; font-size: 17px; font-weight: 600; font-family: var(--font-head); text-transform: uppercase; letter-spacing: .04em; padding: 0 12px; }
.cat-tile span { font-size: 13.5px; color: var(--muted); font-weight: 500; }

/* ---------- Section headings ---------- */
.section { padding: 56px 0; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 24px; gap: 16px; }
.section-head h2 { font-size: 32px; font-weight: 700; text-transform: uppercase; letter-spacing: .02em; }
.section-head p { color: var(--muted); font-size: 16px; margin-top: 2px; font-weight: 400; font-family: var(--font); }
.eyebrow { color: var(--accent); font-weight: 600; font-size: 13px; letter-spacing: .16em; text-transform: uppercase; font-family: var(--font-head); }
.see-all { font-size: 15px; font-weight: 600; color: var(--accent); border-bottom: 2px solid var(--accent); padding-bottom: 1px; font-family: var(--font-head); text-transform: uppercase; letter-spacing: .04em; }

/* ---------- Filter chips ---------- */
.cat-row { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  display: inline-flex; align-items: center; gap: 7px; padding: 8px 17px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--line-2); color: var(--text); font-weight: 600; font-size: 14.5px; transition: .15s;
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: .04em;
}
.chip:hover { border-color: var(--accent); color: var(--accent); }
.chip.active { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; border-color: transparent; }
.chip .n { opacity: .6; font-size: 12.5px; font-weight: 700; }

/* ---------- Product grid ---------- */
.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column; transition: .18s ease; cursor: pointer;
}
.card:hover { box-shadow: var(--glow); transform: translateY(-3px); border-color: rgba(255,122,0,.5); }
.card .thumb {
  aspect-ratio: 4/3; position: relative; display: grid; place-items: center; font-size: 58px;
  background: linear-gradient(180deg, #202026, #17171b); overflow: hidden;
}
/* contain, not cover: cover crops the edges off Lou's product photos to
   fill the frame. Letterbox against the thumb gradient instead so the whole
   item is always visible. box-sizing keeps padding inside the 100% box. */
.card .thumb img { width: 100%; height: 100%; object-fit: contain; padding: 10px; box-sizing: border-box; }
.card .tag {
  position: absolute; top: 10px; left: 10px; font-size: 11px; font-weight: 700; padding: 4px 10px;
  border-radius: 6px; background: rgba(11,11,13,.72); backdrop-filter: blur(6px); border: 1px solid var(--line); color: var(--text);
  text-transform: uppercase; letter-spacing: .05em; font-family: var(--font-head);
}
.card .tag.low { background: var(--accent-2); color: #fff; border-color: transparent; }
.card .body { padding: 14px 15px 15px; display: flex; flex-direction: column; gap: 3px; flex: 1; }
.card .brand { font-size: 12px; color: var(--accent); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; font-family: var(--font-head); }
.card .name { font-weight: 600; font-size: 17px; line-height: 1.25; font-family: var(--font-head); letter-spacing: .01em; }
.card .meta { font-size: 14px; color: var(--muted); font-weight: 400; }
/* ---------- Apple Pay button ----------
   Apple's guidelines require their own mark on a plain black (or white)
   button — no custom colours, no extra wording. */
.apple-pay-btn {
  -apple-pay-button-style: black;
  -apple-pay-button-type: buy;
  display: block; width: 100%; height: 50px; border-radius: 999px; cursor: pointer;
  /* fallback for browsers without the native button styling */
  background: #000 center/contain no-repeat;
  background-image: -webkit-named-image(apple-pay-logo-white);
}
@supports (-webkit-appearance: -apple-pay-button) {
  .apple-pay-btn { -webkit-appearance: -apple-pay-button; background-image: none; }
}
.apple-pay-btn:active { opacity: .85; }

/* ---------- Brand filter row ---------- */
.brand-row { display: flex; gap: 9px; flex-wrap: wrap; margin-bottom: 22px; }
.brand-chip {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 9px 15px; border-radius: 999px; cursor: pointer; transition: .15s ease;
  background: var(--surface); border: 1px solid var(--line-2); color: var(--text);
  min-height: 42px;
}
.brand-chip:hover { border-color: var(--accent); }
.brand-chip.active { background: var(--dark); border-color: var(--accent); box-shadow: var(--glow); }
.brand-chip .bc-logo {
  height: 17px; width: auto; max-width: 74px; display: block;
  /* A wide wordmark (Invicta is 5.4:1) hits max-width while height is
     fixed, which squashes it. contain scales it down instead. */
  object-fit: contain; object-position: left center;
  /* Brand marks arrive in whatever colour their owner ships: Simple Icons are
     black, Wikimedia's are often mid-grey. brightness(0) flattens ANY of them
     to black while keeping the alpha, and invert then makes it white — so a
     new logo reads identically without per-file tuning. */
  filter: brightness(0) invert(1);
  opacity: .85; transition: .15s ease;
}
.brand-chip:hover .bc-logo, .brand-chip.active .bc-logo { opacity: 1; }
.brand-chip .bc-label {
  font-family: var(--font-head); font-size: 14.5px; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase; white-space: nowrap;
}
.brand-chip .n {
  font-size: 12px; font-weight: 700; color: var(--muted);
  font-family: 'Inter', sans-serif; background: var(--bg-2);
  padding: 1px 7px; border-radius: 999px; min-width: 20px; text-align: center;
}
.brand-chip.active .n { background: var(--accent); color: #fff; }
@media (max-width: 640px) {
  .brand-row { gap: 7px; }
  .brand-chip { padding: 7px 12px; min-height: 38px; }
  .brand-chip .bc-logo { height: 15px; max-width: 62px; }
  .brand-chip .bc-label { font-size: 13px; }
}

/* size chips previewed on a card */
.size-peek { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 8px; }
.size-peek .sz {
  font-size: 11px; font-weight: 600; padding: 2px 7px; border-radius: 5px;
  background: var(--surface-2); border: 1px solid var(--line); color: var(--muted);
  font-family: 'Inter', sans-serif; white-space: nowrap;
}
.size-peek .sz.out { opacity: .38; text-decoration: line-through; }
.size-peek .sz.more { border-style: dashed; }

/* size picker inside the product modal */
.size-grid { display: flex; flex-wrap: wrap; gap: 7px; }
.size-btn {
  min-width: 52px; padding: 9px 12px; border-radius: 9px; cursor: pointer;
  background: var(--bg-2); border: 1.5px solid var(--line-2); color: var(--text);
  font-family: var(--font-head); font-size: 15px; font-weight: 600; letter-spacing: .02em;
  transition: .13s ease;
}
.size-btn:hover:not(:disabled) { border-color: var(--accent); color: var(--accent); }
.size-btn.on { background: var(--accent); border-color: var(--accent); color: #fff; }
.size-btn.out, .size-btn:disabled {
  opacity: .35; cursor: not-allowed; text-decoration: line-through; background: transparent;
}

.card .foot { display: flex; align-items: flex-end; justify-content: space-between; margin-top: auto; padding-top: 12px; }
.card .price-label { font-size: 11px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .07em; display: block; font-family: var(--font-head); }
.card .price { font-size: 20px; font-weight: 700; color: var(--accent); font-family: var(--font-head); }
.card .add {
  border-radius: 999px; background: transparent; border: 1px solid var(--line-2); color: var(--text);
  padding: 8px 16px; font-weight: 600; font-size: 14px; transition: .15s;
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: .03em;
}
.card .add:hover { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; border-color: transparent; }
.empty { text-align: center; padding: 60px 20px; color: var(--muted); grid-column: 1/-1; font-weight: 500; }

/* ---------- Modal / Drawer ---------- */
.overlay { position: fixed; inset: 0; background: rgba(0,0,0,.62); backdrop-filter: blur(3px); z-index: 100; opacity: 0; pointer-events: none; transition: .2s; }
.overlay.open { opacity: 1; pointer-events: auto; }
.modal {
  position: fixed; z-index: 101; top: 50%; left: 50%; transform: translate(-50%, -46%);
  width: min(780px, 94vw); max-height: 90vh; overflow: auto; background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: 18px; opacity: 0; pointer-events: none; transition: .2s; box-shadow: 0 30px 80px -20px rgba(0,0,0,.8);
}
.modal.open { opacity: 1; pointer-events: auto; transform: translate(-50%, -50%); }
.modal-grid { display: grid; grid-template-columns: 1fr 1fr; }
.modal-thumb { background: linear-gradient(180deg, #202026, #17171b); display: grid; place-items: center; font-size: 110px; min-height: 340px; }
.modal-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 18px; box-sizing: border-box; }
.modal-body { padding: 28px; }
.modal-body .name { font-size: 27px; font-weight: 700; margin: 6px 0 10px; line-height: 1.1; font-family: var(--font-head); text-transform: uppercase; }
.modal-body .desc { color: var(--muted); font-size: 16px; margin: 14px 0; font-weight: 400; }
.spec { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.spec span { color: var(--muted); font-weight: 400; }
.modal-price { font-size: 36px; font-weight: 700; margin: 18px 0 14px; color: var(--accent); font-family: var(--font-head); }
.modal-price small { font-size: 12.5px; color: var(--muted); font-weight: 600; display: block; text-transform: uppercase; letter-spacing: .08em; }

/* Cart drawer */
.drawer {
  position: fixed; z-index: 101; top: 0; right: 0; height: 100vh; width: min(430px, 92vw);
  background: var(--surface); border-left: 1px solid var(--line-2); transform: translateX(100%);
  transition: .24s ease; display: flex; flex-direction: column; box-shadow: -20px 0 60px -30px rgba(0,0,0,.7);
}
.drawer.open { transform: translateX(0); }
.drawer-head { padding: 20px 22px; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; }
.drawer-head h3 { font-size: 21px; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; }
.drawer-items { flex: 1; overflow: auto; padding: 8px 22px; }
.line { display: flex; gap: 13px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.line .li-thumb { width: 62px; height: 62px; border-radius: 10px; background: var(--surface-2); display: grid; place-items: center; font-size: 28px; flex-shrink: 0; overflow: hidden; }
.line .li-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 4px; box-sizing: border-box; }
.line .li-info { flex: 1; min-width: 0; }
.line .li-info b { font-size: 16px; display: block; font-family: var(--font-head); font-weight: 600; }
.line .li-info span { font-size: 14px; color: var(--muted); font-weight: 400; }
.line .li-x { color: var(--muted); background: none; font-size: 16px; }
.drawer-foot { padding: 20px 22px; border-top: 1px solid var(--line); background: var(--bg-2); }
.row-tot { display: flex; justify-content: space-between; margin-bottom: 6px; font-size: 15px; color: var(--muted); font-weight: 400; }
.row-tot.grand { color: var(--text); font-size: 22px; font-weight: 700; margin: 10px 0 16px; font-family: var(--font-head); }
.row-tot.grand span:last-child { color: var(--accent); }
.icon-btn { background: var(--surface-2); border: 1px solid var(--line-2); width: 36px; height: 36px; border-radius: 999px; color: var(--text); display: grid; place-items: center; font-size: 16px; cursor: pointer; transition: .15s; }
.icon-btn:hover { border-color: var(--accent); color: var(--accent); }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line-2); border-radius: 999px; overflow: hidden; }
.qty button { background: var(--surface-2); color: var(--text); width: 32px; height: 32px; font-size: 16px; font-weight: 700; }
.qty button:hover { color: var(--accent); }
.qty span { width: 38px; text-align: center; font-weight: 700; font-size: 15px; }

/* ---------- Trust bar ---------- */
.trust { border-bottom: 1px solid var(--line); background: var(--bg); }
.trust-inner { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px;
               padding-top: 22px; padding-bottom: 22px; }
.trust .t { text-align: center; display: flex; align-items: center; justify-content: center; gap: 10px; }
.trust .t .ic { font-size: 20px; }
.trust .t b { display: block; font-size: 15px; font-family: var(--font-head); font-weight: 600; letter-spacing: .03em; text-transform: uppercase; }
.trust .t span { font-size: 13px; color: var(--muted); font-weight: 400; }
.trust .t > div { text-align: left; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding: 52px 0 32px; background: var(--bg-2); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 34px; }
.footer h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 14px; font-weight: 600; }
.footer a { display: block; color: var(--text); font-size: 16px; padding: 5px 0; font-weight: 400; }
.footer a:hover { color: var(--accent); }
.footer a.foot-chan { display: flex; align-items: center; gap: 9px; }
.foot-logo { width: 20px; height: 20px; flex-shrink: 0; display: block; }
.footer .fine { color: var(--muted); font-size: 15px; font-weight: 400; }
.footer img.logo-img { height: 84px; width: auto; }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; color: var(--muted); font-size: 14px; font-weight: 400; }
.pay-marks { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.pay-marks .pm { background: var(--surface); border: 1px solid var(--line-2); border-radius: 6px; padding: 5px 9px; font-size: 10.5px; font-weight: 800; letter-spacing: .03em; font-family: 'Inter', sans-serif; }
.pay-logo { height: 26px; width: auto; display: block; border-radius: 4px; box-shadow: 0 0 0 1px rgba(255,255,255,.08); }

/* ---------- Toast ---------- */
.toast-wrap { position: fixed; bottom: 22px; left: 50%; transform: translateX(-50%); z-index: 200; display: flex; flex-direction: column; gap: 8px; align-items: center; }
.toast {
  background: var(--dark); color: #fff; padding: 12px 22px; border-radius: 999px; border: 1px solid var(--accent-2);
  font-size: 15px; font-weight: 600; box-shadow: 0 0 24px -6px rgba(255,122,0,.5); animation: pop .25s ease;
  font-family: var(--font-head); letter-spacing: .03em;
}
@keyframes pop { from { opacity: 0; transform: translateY(10px); } }

/* ---------- Forms ---------- */
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 12.5px; font-weight: 600; color: var(--muted); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .07em; font-family: var(--font-head); }
.field input, .field select, .field textarea {
  width: 100%; background: var(--bg-2); border: 1px solid var(--line-2); border-radius: 10px;
  padding: 11px 13px; color: var(--text); font-size: 16px; outline: none; transition: .15s; font-weight: 400;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(255,122,0,.14); }
.field textarea { resize: vertical; min-height: 80px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
select.btn { appearance: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .grid { grid-template-columns: repeat(3, 1fr); }
  .cat-tiles { grid-template-columns: repeat(3, 1fr); }
  .trust-inner { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 46px; }
  .modal-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cat-tiles { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 38px; }
  .trust-inner { grid-template-columns: 1fr 1fr; }
  .logo img.logo-img { height: 48px; }

  /* Search gets its own full-width row on phones instead of being hidden.
     With 500+ products, search is the main way people find anything. */
  .nav-inner { flex-wrap: wrap; height: auto; padding-top: 10px; padding-bottom: 10px; gap: 10px; }
  .logo { order: 1; }
  .nav-right { order: 2; margin-left: auto; }
  .nav-search { order: 3; flex: 1 1 100%; max-width: none; margin: 0; padding: 12px 14px; }
  .nav-search input { font-size: 16px; }   /* 16px stops iOS zooming on focus */
}

/* ===== Jewelry care card (jewelry product modal only) =====
   Torres Jewelry's materials/quality notice. Rebuilt in markup rather than
   dropped in as the supplied artwork: that asset is a white card, which
   fights this dark modal, and its copy is baked into pixels -- unreadable
   at phone width and invisible to search. Gold here is the jewelry
   sub-brand's, deliberately not Torres orange. */
.jw-care {
  --gold:   #d4a952;
  --gold-2: #f0d089;
  margin: 18px 0;
  padding: 18px 16px 14px;
  border: 1px solid rgba(212,169,82,.34);
  border-radius: var(--radius);
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(212,169,82,.10), transparent 62%),
    var(--bg-2);
  text-align: center;
}
.jw-care .jw-mark {
  font-family: var(--font-head);
  font-size: 11px; letter-spacing: .3em; text-indent: .3em;
  color: var(--gold); font-weight: 600; margin-bottom: 10px;
}
.jw-care .jw-rule {
  height: 1px; margin: 0 auto 12px; max-width: 190px;
  background: linear-gradient(90deg, transparent, rgba(212,169,82,.6), transparent);
}
.jw-care h4 {
  font-family: var(--font-head);
  font-size: 16px; line-height: 1.25; letter-spacing: .02em;
  text-transform: uppercase; color: var(--text); margin: 0 0 9px;
}
.jw-care p {
  margin: 0; font-size: 14px; line-height: 1.55; color: var(--muted);
}
.jw-care p b { color: var(--gold-2); font-weight: 700; }
.jw-care .jw-badges {
  /* minmax(0,…) not 1fr: a bare 1fr floors at min-content, so the longest
     label ("Water friendly") would steal width and leave uneven columns. */
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px; margin-top: 14px;
  border-top: 1px solid rgba(212,169,82,.2); padding-top: 12px;
}
.jw-care .jw-badge {
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  font-size: 9.5px; font-weight: 700; line-height: 1.2;
  letter-spacing: .05em; text-transform: uppercase; color: var(--muted);
}
.jw-care .jw-badge svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; }
/* Four across is tight on small phones -- go two-up rather than shrink the type. */
@media (max-width: 420px) {
  .jw-care .jw-badges { grid-template-columns: repeat(2, 1fr); gap: 12px 6px; }
}

/* ===== Product gallery + lightbox ===== */
.modal-thumb.gal { display: flex; flex-direction: column; padding: 0; }
.gal .gal-main {
  flex: 1; position: relative; border: 0; padding: 0; background: transparent;
  cursor: zoom-in; display: grid; place-items: center; min-height: 0; overflow: hidden;
}
.gal .gal-main img { width: 100%; height: 100%; object-fit: contain; padding: 18px; box-sizing: border-box; }
.gal .gal-zoom {
  position: absolute; right: 12px; bottom: 12px; width: 34px; height: 34px;
  display: grid; place-items: center; border-radius: 9px; font-size: 15px;
  background: rgba(11,11,13,.72); border: 1px solid var(--line-2); color: var(--text);
  backdrop-filter: blur(6px); opacity: 0; transition: opacity .18s ease;
}
.gal .gal-main:hover .gal-zoom, .gal .gal-main:focus-visible .gal-zoom { opacity: 1; }
.gal .gal-strip {
  display: flex; gap: 8px; padding: 10px; overflow-x: auto;
  border-top: 1px solid var(--line); background: rgba(0,0,0,.2); flex-shrink: 0;
}
.gal .gal-dot {
  width: 54px; height: 54px; flex-shrink: 0; padding: 0; cursor: pointer;
  border-radius: 9px; overflow: hidden; background: var(--surface-2);
  border: 2px solid transparent; transition: border-color .15s ease;
}
.gal .gal-dot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gal .gal-dot.on { border-color: var(--accent); }

.lightbox {
  position: fixed; inset: 0; z-index: 200; display: none;
  align-items: center; justify-content: center;
  background: rgba(6,6,8,.93); backdrop-filter: blur(4px);
  cursor: zoom-out; padding: 40px 64px;
}
.lightbox.open { display: flex; }
/* The photo is the point: cap it to the viewport and never crop it. */
.lightbox img { max-width: 100%; max-height: 100%; object-fit: contain; cursor: default; border-radius: 6px; }
.lightbox .lb-close, .lightbox .lb-nav {
  position: absolute; background: rgba(28,28,33,.9); color: var(--text);
  border: 1px solid var(--line-2); cursor: pointer; display: grid; place-items: center;
  border-radius: 50%; transition: .15s ease;
}
.lightbox .lb-close:hover, .lightbox .lb-nav:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.lightbox .lb-close { top: 18px; right: 18px; width: 42px; height: 42px; font-size: 17px; }
.lightbox .lb-nav { top: 50%; transform: translateY(-50%); width: 46px; height: 46px; font-size: 30px; line-height: 1; padding-bottom: 4px; }
.lightbox .lb-prev { left: 14px; }
.lightbox .lb-next { right: 14px; }
.lightbox .lb-count {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  font-size: 13px; color: var(--muted); letter-spacing: .06em; font-weight: 600;
}
/* On a phone the side arrows would sit on top of the photo — move them down. */
@media (max-width: 560px) {
  .lightbox { padding: 56px 12px 76px; }
  .lightbox .lb-nav { top: auto; bottom: 16px; transform: none; }
  .lightbox .lb-prev { left: 22%; }
  .lightbox .lb-next { right: 22%; }
  .lightbox .lb-count { bottom: 30px; }
}

/* ===== Payment marks on the product popup ===== */
/* Afterpay's own logo, not an emoji — the 🅰️ that used to sit here rendered
   as an unexplained boxed "A" that told the shopper nothing. */
.pay-split {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 10px;
  padding: 10px 12px; margin-bottom: 12px; font-size: 13.5px; color: var(--muted);
}
.pay-split b { color: var(--text); }
.pay-split .pay-logo { height: 22px; flex-shrink: 0; }
.pay-tab .tab-logo { height: 19px; width: auto; vertical-align: -4px; border-radius: 3px; }
.accepted { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 14px; }
.accepted-label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .07em; color: var(--muted); font-family: var(--font-head);
}
.accepted-marks { display: flex; gap: 6px; flex-wrap: wrap; }
.accepted-marks .pay-logo { height: 22px; }

/* Apple Pay hint in the cart. Rendered only where the device can actually use
   it, so it is never a promise the checkout has to break. */
.cart-applepay {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 10px; font-size: 12.5px; color: var(--muted);
}
.cart-applepay img { height: 20px; width: auto; border-radius: 3px; display: block; }

/* ===== Missing-photo placeholder =====
   A faint image mark drawn by the container, not an emoji. Images sit on top;
   `onerror="this.remove()"` simply uncovers this, so a broken URL degrades to
   something deliberate instead of a browser's torn-page icon. */
.card .thumb, .modal-thumb, .line .li-thumb, .cat-tile .ct-photo, .ph-cell {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3.2' y='4.6' width='17.6' height='14.8' rx='2.2'/%3E%3Ccircle cx='8.6' cy='10' r='1.7'/%3E%3Cpath d='m4.4 17.6 4.9-4.6 3.5 3.2 3-2.6 4 3.8'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.line .li-thumb { background-size: 22px; }
.card .thumb, .cat-tile .ct-photo { background-size: 34px; }
.modal-thumb { background-size: 46px; }
/* The photo itself must cover the mark, never blend with it. */
.card .thumb img, .modal-thumb img, .line .li-thumb img,
.cat-tile .ct-photo img, .gal .gal-main img { background: var(--bg-2); }

/* Icons sit on the text baseline wherever they replaced an emoji. */
.ic-svg { display: inline-block; vertical-align: -0.18em; flex-shrink: 0; }
.btn .ic-svg, .chip .ic-svg, .pill .ic-svg { margin-right: 2px; }
.thumb-none { display: grid; place-items: center; color: var(--line-2); width: 100%; height: 100%; }

/* ===== Sort + Filters ===== */
.sort-wrap { display: inline-flex; align-items: center; gap: 8px; }
.sort-label {
  font-family: var(--font-head); font-size: 11.5px; font-weight: 700;
  letter-spacing: .09em; text-transform: uppercase; color: var(--muted); white-space: nowrap;
}
.sort-wrap select { padding-right: 30px; }

.filters {
  margin-bottom: 18px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
}
/* The panel drops onto its own line under the buttons. */
.filters-body, .filters.open .filters-body { flex-basis: 100%; }
/* The filter panel is collapsed at EVERY width. Fully expanded it pushed the
   products themselves below the fold and read as clutter, which is the
   opposite of what a filter is for. One tap opens it; the count badge says
   how many are on while it is shut. */
.filters-toggle { display: inline-flex; align-items: center; gap: 8px; }
.filters-count {
  display: inline-grid; place-items: center; min-width: 19px; height: 19px; padding: 0 5px;
  border-radius: 999px; background: var(--accent); color: #fff; font-size: 11px; font-weight: 800;
}
.filters-body { display: none; }
.filters.open .filters-body {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 16px 22px;
  margin-top: 12px;
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 14px; padding: 16px 18px;
}
.filter-group h4 {
  font-family: var(--font-head); font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted); margin: 0 0 9px;
}
.filter-chips { display: flex; flex-wrap: wrap; gap: 7px; }
.fchip {
  display: inline-flex; align-items: center; gap: 6px; cursor: pointer;
  padding: 7px 12px; border-radius: 999px; font-size: 13.5px; font-weight: 600;
  background: var(--surface); border: 1px solid var(--line-2); color: var(--text);
  transition: .14s ease; min-height: 38px;          /* comfortable tap target */
}
.fchip:hover { border-color: var(--accent); }
.fchip.on { background: var(--accent); border-color: var(--accent); color: #fff; }
.fchip-n { font-size: 11.5px; opacity: .62; font-weight: 700; }
.fchip.on .fchip-n { opacity: .85; }


/* ===== Load more ===== */
.load-more-wrap { text-align: center; margin: 26px 0 8px; }
.load-more-count { color: var(--muted); font-size: 13.5px; margin-bottom: 12px; }

/* ===== Mobile ===== */
@media (max-width: 760px) {
  /* Collapse is handled above for every width; a phone just stacks the groups. */
  .filters.open .filters-body { grid-template-columns: 1fr; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 12px; }
  .sort-wrap { width: 100%; }
  .sort-wrap select { flex: 1; min-height: 44px; }
  .fchip { min-height: 42px; font-size: 14px; }   /* thumb-sized */
}

/* ===== Product detail panels =====
   Closed by default. On a phone the buy button has to stay reachable, so the
   answers sit under it folded rather than pushing it off the screen. */
.pdp-details { margin-top: 18px; border-top: 1px solid var(--line); }
.pdp-panel { border-bottom: 1px solid var(--line); }
.pdp-panel > summary {
  cursor: pointer; list-style: none; padding: 13px 2px;
  font-family: var(--font-head); font-size: 13px; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase; color: var(--text);
  display: flex; align-items: center; justify-content: space-between;
}
.pdp-panel > summary::-webkit-details-marker { display: none; }
/* A rotating chevron drawn in CSS — no icon font, no emoji. */
.pdp-panel > summary::after {
  content: ''; width: 8px; height: 8px; margin-left: 12px; flex-shrink: 0;
  border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted);
  transform: rotate(45deg) translateY(-2px); transition: transform .18s ease;
}
.pdp-panel[open] > summary::after { transform: rotate(-135deg) translateY(-2px); }
.pdp-panel > summary:hover { color: var(--accent-2); }
.pdp-body { padding: 0 2px 15px; font-size: 14px; line-height: 1.6; color: var(--muted); }
.pdp-body p { margin: 0 0 10px; }
.pdp-body p:last-child { margin-bottom: 0; }
.pdp-body b { color: var(--text); }
.pdp-body .spec { margin-bottom: 6px; }
.pdp-ask { margin-top: 16px; }

/* ===== Contact form ===== */
.contact-wrap { padding: 26px 28px 30px; max-width: 520px; position: relative; }
.contact-x { position: absolute; top: 14px; right: 14px; }
.contact-wrap h3 { font-family: var(--font-head); font-size: 22px; margin: 0 0 6px; }
.contact-lead { color: var(--muted); font-size: 14px; line-height: 1.6; margin: 0 0 16px; }
.contact-item {
  background: var(--surface-2); border-left: 3px solid var(--accent-2);
  border-radius: 8px; padding: 10px 13px; font-size: 14px; margin-bottom: 16px;
}
.fld { display: block; margin-bottom: 13px; }
.fld > span {
  display: block; font-size: 12px; font-weight: 700; letter-spacing: .05em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 6px;
  font-family: var(--font-head);
}
.fld input, .fld textarea {
  width: 100%; box-sizing: border-box; padding: 11px 13px; font: inherit;
  font-size: 15px; color: var(--text); background: var(--surface-2);
  border: 1px solid var(--line); border-radius: 9px; resize: vertical;
}
.fld input:focus, .fld textarea:focus { outline: none; border-color: var(--accent-2); }
/* Honeypot: off-screen rather than display:none, because some bots skip
   hidden inputs but happily fill one that is merely positioned away. */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.contact-alt { font-size: 13px; color: var(--muted); margin: 12px 0 0; line-height: 1.6; }
.contact-alt a { color: var(--accent-2); }
.contact-done { padding: 40px 30px; text-align: center; }
.contact-done h3 { margin-bottom: 8px; }
.contact-done p { color: var(--muted); font-size: 15px; line-height: 1.6; margin: 0 0 20px; }

@media (max-width: 760px) {
  .contact-wrap { padding: 22px 18px 26px; }
  .fld input, .fld textarea { font-size: 16px; }  /* 16px stops iOS zooming on focus */
  .pdp-panel > summary { padding: 15px 2px; }     /* 42px+ tap target */
}

/* ===== Information pages (shipping, returns, warranty, legal) =====
   Deliberately narrow. These are read, not scanned, and a 40-em measure is
   the difference between someone finding the returns address and giving up. */
.info-wrap { padding-top: 40px; padding-bottom: 70px; max-width: 780px; }
.crumb { font-size: 13px; color: var(--muted); margin-bottom: 18px; }
.crumb a { color: var(--muted); }
.crumb a:hover { color: var(--accent-2); }
.crumb span { margin: 0 7px; opacity: .5; }
.crumb b { color: var(--text); font-weight: 600; }

.info-wrap h1 {
  font-family: var(--font-head); font-size: clamp(30px, 5vw, 44px);
  line-height: 1.1; margin: 0 0 22px;
}
.info-body { font-size: 16px; line-height: 1.75; color: var(--muted); }
.info-body .lead { font-size: 18px; color: var(--text); margin: 0 0 28px; }
.info-body h2 {
  font-family: var(--font-head); font-size: 19px; letter-spacing: .02em;
  color: var(--text); margin: 34px 0 10px;
}
.info-body p { margin: 0 0 14px; }
.info-body b { color: var(--text); }
.info-body a { color: var(--accent-2); text-decoration: underline; text-underline-offset: 2px; }
.info-body ul, .info-body ol { margin: 0 0 14px; padding-left: 22px; }
.info-body li { margin-bottom: 8px; }

.info-table { width: 100%; border-collapse: collapse; margin: 4px 0 16px; }
.info-table th, .info-table td {
  text-align: left; padding: 11px 0; border-bottom: 1px solid var(--line);
  font-weight: 400; vertical-align: top;
}
.info-table th { color: var(--text); font-weight: 600; width: 45%; padding-right: 18px; }

.info-address {
  background: var(--surface-2); border-left: 3px solid var(--accent-2);
  border-radius: 8px; padding: 13px 16px; color: var(--text);
  font-weight: 600; line-height: 1.55;
}

.info-more { margin-top: 54px; padding-top: 26px; border-top: 1px solid var(--line); }
.info-more h3 {
  font-family: var(--font-head); font-size: 13px; text-transform: uppercase;
  letter-spacing: .08em; color: var(--muted); margin: 0 0 14px;
}
.info-links { display: flex; flex-wrap: wrap; gap: 9px; }
.info-links a {
  border: 1px solid var(--line); border-radius: 999px; padding: 9px 15px;
  font-size: 14px; color: var(--text); white-space: nowrap;
}
.info-links a:hover { border-color: var(--accent-2); color: var(--accent-2); }

.info-body form { margin: 6px 0 10px; max-width: 480px; }
.foot-legal a { color: var(--muted); }
.foot-legal a:hover { color: var(--accent-2); }

@media (max-width: 760px) {
  .info-wrap { padding-top: 26px; padding-bottom: 50px; }
  .info-body { font-size: 15.5px; }
  .info-table th { width: auto; display: block; border: 0; padding-bottom: 2px; }
  .info-table td { display: block; padding-top: 0; }
  .info-links a { min-height: 42px; display: flex; align-items: center; }
}

/* ===== Customer reviews ===== */
.reviews { padding-top: 20px; padding-bottom: 60px; }
.reviews-head {
  font-family: var(--font-head); font-size: clamp(22px, 3.4vw, 30px);
  margin: 0 0 22px; letter-spacing: .01em;
}
.reviews-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.review {
  margin: 0; padding: 20px 22px; background: var(--surface);
  border: 1px solid var(--line); border-radius: 14px;
  display: flex; flex-direction: column; gap: 12px;
}
.review blockquote {
  margin: 0; font-size: 15px; line-height: 1.65; color: var(--text);
}
.review blockquote::before { content: '\201C'; }
.review blockquote::after  { content: '\201D'; }
.review figcaption { font-size: 13px; color: var(--muted); margin-top: auto; }
.review figcaption b { color: var(--text); font-weight: 600; }
.review figcaption span::before { content: ' · '; }

.stars { display: flex; gap: 2px; }
.star { fill: var(--line-2); flex-shrink: 0; }
.star.on { fill: var(--accent-2); }

@media (max-width: 760px) {
  .reviews { padding-top: 10px; padding-bottom: 44px; }
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ===== Admin: review rows ===== */
.review-row {
  border: 1px solid var(--line); border-radius: 10px; padding: 14px 15px;
  background: var(--surface-2);
}
.review-row-meta {
  display: grid; gap: 10px; align-items: end; margin-top: 4px;
  grid-template-columns: 1fr 80px 1fr auto;
}
@media (max-width: 700px) {
  .review-row-meta { grid-template-columns: 1fr 1fr; }
  .review-row-meta > button { grid-column: 1 / -1; }
}

/* ===== Touch targets =====
   Measured on a 375px viewport: most controls landed at 34-39px, just under
   what a thumb reliably hits. Everything interactive is brought to 42px+.
   Applied at all widths where it costs nothing, and only forced on mobile
   where the layout would otherwise get airy. */
@media (max-width: 760px) {
  /* The search box was a 19px input floating inside a 47px shell, so most of
     the visible field did not respond to a tap. Let the input own the height. */
  .nav-search { padding: 0 15px; }
  .nav-search input { padding: 14px 0; height: auto; }

  .footer a, .foot-chan {
    min-height: 42px; display: inline-flex; align-items: center;
  }
  .footer .pay-marks a, .footer .pay-marks { min-height: 0; }

  .see-all, .pill {
    min-height: 42px; display: inline-flex; align-items: center;
  }
  .chip { min-height: 42px; }
  .brand-chip { min-height: 42px; }
  .card .add { min-height: 42px; }
  .icon-btn, .btn-sm { min-height: 42px; }
  .size-btn { min-height: 42px; min-width: 42px; }
}

/* ===== Hero video =====
   The clip is 524x960 -- shot on a phone, portrait. It leads the hero in a
   column of its own at its native aspect, with the copy beside it. Capped at
   340px so it stays a video and not a billboard. */
/* Restores the 24px side padding .wrap provides: the original rule was
   `padding: 60px 0 58px`, and the shorthand zeroed it, running the headline
   and the stats hard against the window edge. */
.hero-inner {
  grid-template-columns: minmax(0, 340px) minmax(0, 1fr); gap: 48px;
}
.hero-video { position: relative; }
.hero-video video {
  display: block; width: 100%; aspect-ratio: 524 / 960;
  object-fit: cover; border-radius: 18px;
  background: var(--surface-2);          /* stands in before the first frame */
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.visit-sound {
  position: absolute; left: 12px; top: 12px;
  display: inline-flex; align-items: center; gap: 7px;
  min-height: 42px; padding: 0 13px; border-radius: 999px; cursor: pointer;
  font: inherit; font-size: 13px; font-weight: 600;
  color: #fff; background: rgba(0, 0, 0, .62); border: 1px solid rgba(255, 255, 255, .28);
  backdrop-filter: blur(6px);
}
.visit-sound:hover { background: rgba(0, 0, 0, .8); }
/* Only one of the two icons shows, decided by the pressed state. */
.visit-sound .ic-unmuted { display: none; }
.visit-sound[aria-pressed="true"] .ic-unmuted { display: inline-block; }
.visit-sound[aria-pressed="true"] .ic-muted { display: none; }

.visit-cta {
  display: flex; align-items: center; justify-content: center; text-align: center;
  margin-top: 14px; width: 100%; min-height: 50px; padding: 0 18px;
  font-size: 14px; line-height: 1.25;
}

/* ===== Find us (full-width row under the hero) ===== */
.find-us { padding-bottom: 46px; }
.find-us .hero-card { padding: 18px 20px; }
.find-us .hero-card h3 { margin-bottom: 12px; }
/* The three channels sit side by side now there is a whole row for them. */
.find-us .hero-card { display: grid; grid-template-columns: 1fr; gap: 0; }
.find-us .hero-card h3 { grid-column: 1 / -1; }
@media (min-width: 861px) {
  .find-us .hero-card { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .find-us .channel { margin-bottom: 0; }
}

@media (max-width: 860px) {
  /* Stack, and keep the video to a sane width -- it must not fill a whole
     phone screen on its own or the headline never gets seen. */
  .hero-inner { grid-template-columns: 1fr; gap: 26px; padding-top: 34px; padding-bottom: 30px; }
  /* Stacked, the video alone is taller than a phone screen. Left in place it
     pushed the headline 937px down, so a visitor met the clip and had to
     scroll a whole screen to learn what the shop even sells.
     `display: contents` dissolves the copy wrapper so its children become
     flex items of the hero itself, letting the video slot BETWEEN the
     sub-headline and the buttons instead of landing after everything. */
  .hero-inner { display: flex; flex-direction: column; }
  .hero-copy { display: contents; }
  .badge-row  { order: 1; margin-bottom: 0; }
  .hero h1    { order: 2; }
  .hero p.sub { order: 3; margin: 14px 0 0; }
  .hero-video { order: 4; }
  .hero-cta   { order: 5; }
  .hero-stats { order: 6; margin-top: 4px; }
  .hero-video { max-width: 280px; margin: 0 auto; width: 100%; }
  .hero h1 { font-size: 40px; }
  .find-us { padding-bottom: 30px; }
}

/* Someone who asks for less motion gets a still frame and real controls
   instead of a clip that starts moving on its own. */
@media (prefers-reduced-motion: reduce) {
  .visit-sound { display: none; }
}

/* ===== Leave a review ===== */
.reviews-cta { margin-top: 22px; text-align: center; }
.reviews-ask { color: var(--muted); font-size: 15px; margin: 0 0 14px; line-height: 1.6; }
.reviews-btn {
  display: inline-flex; align-items: center; gap: 9px;
  min-height: 50px; padding: 0 26px; font-size: 15px;
}
/* With no reviews yet the section is just the invitation, so it does not need
   the full spacing a wall of quotes would. */
.reviews-grid:empty { display: none; }
.reviews-grid:empty + .reviews-cta { margin-top: 4px; }

@media (max-width: 760px) {
  .reviews-btn { width: 100%; justify-content: center; }
}
