/** Shopify CDN: Minification failed

Line 25:0 All "@import" rules must come first

**/
/* ============================================================
   THE RV PART STORE — Shopify theme stylesheet
   Ported verbatim from the prototype design system.
   Sourced: styles.css, shell.css, pages.css, conv.css, extra.css
   ============================================================ */

/* Overlays (mobile menu, cart drawer, vehicle dropdown, modal, scrims) are
   always in the DOM and toggled via the [hidden] attribute. Author CSS sets
   display on their classes, which would otherwise beat the UA [hidden] rule —
   so make hidden authoritative. */
[hidden] { display: none !important; }


/* ===== styles.css ===== */
/* ============================================================
   THE RV PARTS — design system
   Rugged / road-ready · black · red · white
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Saira+Condensed:wght@500;600;700;800;900&family=Barlow:ital,wght@0,400;0,500;0,600;0,700;1,500&family=JetBrains+Mono:wght@400;500;700&display=swap');

:root {
  /* surfaces — light / white theme */
  --bg:        #ffffff;
  --bg-2:      #f5f4f1;
  --surface:   #ffffff;
  --surface-2: #f7f6f3;
  --surface-3: #ececea;
  --line:      #e6e4df;
  --line-2:    #d3d1ca;

  /* ink */
  --text:    #141418;
  --muted:   #6a6a72;
  --muted-2: #9a9aa1;
  --ink:     #131317;   /* dark anchor (topbar, hazard) */

  /* brand */
  /* brand — warm saddle brown (named --red for legacy class compatibility) */
  --red:       #8a5524;
  --red-hot:   #a56a31;
  --red-deep:  #663d16;
  --red-glow:  rgba(138, 85, 36, 0.30);
  --white:     #ffffff;
  --amber:     #f59e00;
  --green:     #18a558;

  /* type */
  --display: 'Saira Condensed', 'Arial Narrow', sans-serif;
  --body:    'Barlow', system-ui, sans-serif;
  --mono:    'JetBrains Mono', ui-monospace, monospace;

  --r: 3px;
  --maxw: 1320px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body { overflow-x: clip; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select { font-family: inherit; }

::selection { background: var(--red); color: #fff; }

/* scrollbar */
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--surface-3); border: 2px solid var(--bg); border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: var(--line-2); }

/* ---------- typography helpers ---------- */
.display {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.92;
}
.kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 500;
}
.mono { font-family: var(--mono); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; width: 100%; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 16px;
  padding: 13px 24px;
  border-radius: var(--r);
  transition: transform .12s ease, background .15s ease, box-shadow .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-red {
  background: var(--red); color: #fff;
  box-shadow: 0 0 0 0 var(--red-glow);
}
.btn-red:hover { background: var(--red-hot); box-shadow: 0 8px 26px -8px var(--red-glow); }
.btn-ghost {
  background: transparent; color: var(--text);
  border: 1.5px solid var(--line-2);
}
.btn-ghost:hover { border-color: var(--red); color: #fff; }
.btn-white { background: #fff; color: var(--ink); border: 1.5px solid var(--ink); }
.btn-white:hover { background: var(--ink); color: #fff; }
.btn-sm { padding: 9px 16px; font-size: 13px; }
.btn-lg { padding: 16px 32px; font-size: 19px; }

/* ---------- chips / tags ---------- */
.tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 2px;
  display: inline-flex; align-items: center; gap: 5px;
}
.tag-sale { background: var(--red); color: #fff; }
.tag-new  { background: var(--text); color: #0a0a0b; }
.tag-hot  { background: var(--amber); color: #0a0a0b; }
.tag-line { border: 1px solid var(--line-2); color: var(--muted); }

/* ---------- placeholder imagery (striped) ---------- */
.ph {
  position: relative;
  background:
    repeating-linear-gradient(
      -45deg,
      #f1f0ec 0px, #f1f0ec 9px,
      #e8e7e2 9px, #e8e7e2 18px
    );
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.ph::after {
  content: attr(data-label);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
  padding: 4px 8px;
  border: 1px dashed var(--line-2);
  border-radius: 2px;
  background: rgba(255,255,255,0.7);
}

/* hazard stripe divider */
.hazard {
  height: 6px;
  background: repeating-linear-gradient(
    -45deg,
    var(--red) 0 14px,
    var(--ink) 14px 28px
  );
}

/* utility */
.skew { transform: skewX(-10deg); }
.unskew { transform: skewX(10deg); }
.divider { height: 1px; background: var(--line); }
.fade-up { animation: fadeUp .5s cubic-bezier(.2,.7,.2,1) both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* number / rating stars */
.stars { display: inline-flex; gap: 1px; color: var(--amber); }


/* ===== shell.css ===== */
/* ============================================================
   Shell styles — topbar, header, nav, selector, footer
   ============================================================ */

/* ---------- top bar (marquee) ---------- */
.topbar {
  background: var(--ink);
  overflow: hidden;
  height: 34px;
  display: flex; align-items: center;
}
.topbar-track {
  display: flex; gap: 46px;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
  padding-left: 46px;
}
.topbar:hover .topbar-track { animation-play-state: paused; }
.topbar-item {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  display: inline-flex; align-items: center; gap: 8px;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- header shell ---------- */
/* The section group wraps each section in its own .shopify-section div, which is
   exactly the header's height — so sticky must live on that wrapper to have room
   to travel. :has targets the wrapper holding the header; .hdr keeps a fallback
   for contexts where the header isn't wrapped (e.g. theme-editor preview). */
.shopify-section:has(> .hdr) { position: sticky; top: 0; z-index: 60; }
.hdr { position: sticky; top: 0; z-index: 60; }
.hdr-main { background: rgba(255,255,255,0.92); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.hdr-row { display: flex; align-items: center; gap: 22px; height: 76px; }

.hdr-burger { display: none; color: var(--text); }

/* logo */
.logo { display: inline-flex; align-items: center; gap: 11px; cursor: pointer; flex-shrink: 0; }
.logo-mark {
  position: relative; width: 38px; height: 38px;
  display: grid; place-items: center; color: #fff;
}
.logo-mark::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: var(--red); border-radius: 3px;
  transform: skewX(-9deg);
  box-shadow: 0 0 24px -6px var(--red-glow);
}
.logo-mark svg { position: relative; z-index: 1; }
.logo-txt {
  font-family: var(--display); font-weight: 900; font-size: 25px;
  letter-spacing: -0.01em; line-height: 1; color: var(--text);
  display: inline-flex; align-items: baseline; white-space: nowrap;
}
.logo-accent { color: var(--red); }
.logo-tld { font-style: normal; font-size: 14px; color: var(--muted); font-family: var(--mono); font-weight: 500; margin-left: 3px; }

/* search */
.hdr-search {
  flex: 1; display: flex; align-items: center; gap: 10px;
  background: var(--surface); border: 1.5px solid var(--line);
  border-radius: var(--r); padding: 0 6px 0 14px; height: 46px;
  transition: border-color .15s ease;
  position: relative;
}
.hdr-search:focus-within { border-color: var(--line-2); }
.hdr-search input { flex: 1; background: none; border: none; outline: none; color: var(--text); font-size: 15px; }
.hdr-search input::placeholder { color: var(--muted-2); }
.hdr-search-go {
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  font-size: 13px; letter-spacing: 0.05em; color: #fff; background: var(--red);
  padding: 9px 16px; border-radius: 2px; transition: background .15s ease;
}
.hdr-search-go:hover { background: var(--red-hot); }

/* live (predictive) search results */
.psearch {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r); box-shadow: 0 20px 44px -14px rgba(20,20,24,0.28);
  z-index: 70; max-height: min(70vh, 460px); overflow-y: auto; padding: 6px;
}
.psearch-list { list-style: none; margin: 0; padding: 0; }
.psearch-item {
  display: flex; align-items: center; gap: 12px;
  padding: 8px 10px; border-radius: var(--r); color: var(--text);
  transition: background .12s ease;
}
.psearch-item:hover, .psearch-item.is-active { background: var(--surface-2); }
.psearch-thumb {
  width: 44px; height: 44px; flex: 0 0 44px;
  border: 1px solid var(--line); border-radius: var(--r); overflow: hidden;
  background: #fff; display: grid; place-items: center;
}
.psearch-thumb img { width: 100%; height: 100%; object-fit: contain; }
.psearch-info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.psearch-brand { font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.psearch-title {
  font-size: 14px; font-weight: 600; color: var(--text); line-height: 1.25;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.psearch-price { font-size: 13px; font-weight: 700; color: var(--text); white-space: nowrap; }
.psearch-all {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 11px; margin-top: 4px; border-top: 1px solid var(--line);
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  font-size: 13px; letter-spacing: 0.04em; color: var(--red);
}
.psearch-all:hover { color: var(--red-hot); }
.psearch-empty { padding: 18px 14px; text-align: center; color: var(--muted); font-size: 14px; }

/* actions */
.hdr-actions { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.hdr-ico {
  position: relative; display: flex; flex-direction: column; align-items: center; gap: 2px;
  color: var(--text); padding: 6px 10px; border-radius: var(--r);
  transition: background .15s ease, color .15s ease;
}
.hdr-ico:hover { background: var(--surface); color: var(--red); }
.hdr-ico-lbl { font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.08em; text-transform: uppercase; }
.cart-badge {
  position: absolute; top: -2px; right: 2px;
  min-width: 18px; height: 18px; padding: 0 4px;
  background: var(--red); color: #fff; border-radius: 9px;
  font-family: var(--mono); font-size: 11px; font-weight: 700;
  display: grid; place-items: center; line-height: 1;
}

/* nav */
.hdr-nav { background: var(--bg-2); border-bottom: 1px solid var(--line); position: relative; }
.hdr-nav-row { display: flex; align-items: center; gap: 4px; height: 46px; overflow-x: auto; scrollbar-width: none; }
.hdr-nav-row::-webkit-scrollbar { display: none; }
.navlink {
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  font-size: 14.5px; letter-spacing: 0.03em; color: var(--text);
  padding: 8px 14px; border-radius: 2px; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 6px;
  transition: color .15s ease, background .15s ease;
}
.navlink:hover { color: var(--red); background: var(--surface); }
.navlink-deals { color: var(--red); }
.navlink-deals:hover { background: var(--red); color: #fff; }
.navlink.is-open { color: var(--red); background: var(--surface); }
.navlink svg { transition: transform .15s ease; }
.navlink.is-open svg { transform: rotate(180deg); opacity: 1 !important; }

/* ---------- mega menu ---------- */
.mega {
  position: absolute; top: 100%; left: 0; right: 0; z-index: 59;
  background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  box-shadow: 0 32px 56px -28px rgba(0,0,0,0.22);
}
.mega-inner { display: grid; grid-template-columns: 1fr 330px; gap: 40px; padding: 26px 28px 30px; }
.mega-head { display: flex; align-items: baseline; justify-content: space-between; gap: 18px; margin-bottom: 18px; }
.mega-head h4 { font-size: 22px; text-transform: uppercase; margin: 0; }
.mega-all { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.04em; color: var(--red); display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; transition: gap .15s ease; }
.mega-all:hover { gap: 11px; }
.mega-subs { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 2px 22px; }
.mega-sub { display: flex; align-items: center; gap: 9px; padding: 9px 10px; border-radius: var(--r); font-size: 14px; color: var(--text); text-align: left; transition: background .12s ease, color .12s ease; }
.mega-sub:hover { background: var(--surface-2); color: var(--red); }
.mega-sub svg { color: var(--muted-2); flex-shrink: 0; }
.mega-sub:hover svg { color: var(--red); }
/* third level — group column: level-2 heading + its level-3 links */
.mega-col { display: flex; flex-direction: column; gap: 1px; margin-bottom: 12px; }
.mega-col-head {
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  font-size: 13px; letter-spacing: 0.04em; color: var(--text);
  padding: 8px 10px 5px; transition: color .12s ease;
}
.mega-col-head:hover { color: var(--red); }
.mega-sub3 { font-size: 13.5px; padding-top: 7px; padding-bottom: 7px; color: var(--muted); }
.mega-sub3:hover { color: var(--red); }
.mega-side { border-left: 1px solid var(--line); padding-left: 32px; }
.mega-side .kicker { display: block; margin-bottom: 12px; }
.mega-side-lead { font-size: 13.5px; color: var(--muted); margin: 0 0 16px; line-height: 1.5; }
.mega-side-note { font-size: 11px; color: var(--muted-2); margin: 12px 0 0; }
.vsel-mega .vsel-head { display: none; }
.vsel-mega .vsel-grid { grid-template-columns: 1fr 1fr; }

/* ---------- vehicle selector ---------- */
.vsel { width: 100%; }
.vsel-head { display: flex; align-items: center; gap: 9px; margin-bottom: 11px; }
.vsel-grid { display: grid; grid-template-columns: 1fr 1.2fr 1.4fr auto; gap: 10px; }
.vs-field {
  position: relative; display: flex; align-items: center;
  background: var(--surface-2); border: 1.5px solid var(--line-2); border-radius: var(--r);
}
.vs-field.is-disabled { opacity: 0.45; }
.vs-field select {
  appearance: none; -webkit-appearance: none;
  width: 100%; background: none; border: none; outline: none;
  color: var(--text); font-size: 15px; font-weight: 500;
  padding: 13px 36px 13px 14px; cursor: pointer;
}
.vs-field select:disabled { cursor: not-allowed; }
.vs-field svg { position: absolute; right: 12px; pointer-events: none; color: var(--muted); }
.vs-field option { background: var(--surface-2); color: var(--text); }

.vsel-pop .vsel-head { margin-bottom: 14px; }
.vsel-pp .vsel-head { display: none; }

/* fit badge */
.fitbadge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface-2); border: 1px solid var(--line-2);
  border-left: 3px solid var(--green);
  padding: 8px 10px 8px 12px; border-radius: var(--r);
  font-size: 13.5px; color: var(--muted);
}
.fitbadge b { color: var(--text); font-weight: 600; }
.fitbadge button { color: var(--muted-2); display: grid; place-items: center; padding: 2px; }
.fitbadge button:hover { color: var(--red); }

/* selector dropdown */
.sel-pop {
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--surface); border-bottom: 1px solid var(--line);
  box-shadow: 0 30px 60px -24px rgba(0,0,0,0.18);
  padding: 24px 0;
}
.scrim { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 70; }
.scrim-sel { background: rgba(0,0,0,0.45); z-index: 50; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }

/* ---------- mobile menu ---------- */
.mobile-menu {
  position: fixed; top: 0; left: 0; bottom: 0; width: min(86vw, 360px);
  background: var(--surface); z-index: 80; padding: 20px;
  display: flex; flex-direction: column; gap: 4px;
  border-right: 1px solid var(--line);
  overflow-y: auto; -webkit-overflow-scrolling: touch; overscroll-behavior: contain;
}
@keyframes slideIn { from { transform: translateX(-100%); } to { transform: none; } }
.mobile-menu-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; color: var(--text); }
.mm-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 12px; font-family: var(--display); font-weight: 700; font-size: 17px;
  text-transform: uppercase; color: var(--text); border-radius: var(--r);
  border-bottom: 1px solid var(--line);
}
.mm-link:hover { background: var(--surface-2); color: var(--red); }
.mm-deals { color: var(--red); }
.mm-group { border-bottom: 1px solid var(--line); }
.mm-cat { padding: 0; border-bottom: none; cursor: pointer; -webkit-tap-highlight-color: transparent; }
.mm-cat-label { flex: 1; text-align: left; padding: 15px 12px; font-family: var(--display); font-weight: 700; font-size: 17px; text-transform: uppercase; color: var(--text); }
.mm-cat:hover .mm-cat-label { color: var(--red); }
.mm-cat-toggle { display: flex; align-items: center; padding: 15px 14px; color: var(--muted); }
.mm-cat-toggle svg { transition: transform .15s ease; }
.mm-sub-all { display: flex; align-items: center; gap: 7px; color: var(--red); font-family: var(--mono); font-size: 12px; letter-spacing: 0.03em; text-transform: uppercase; padding: 8px 12px 10px; }
.mm-sub-all svg { transition: transform .15s ease; }
.mm-sub-all:hover svg { transform: translateX(3px); }
.mm-subs { display: flex; flex-direction: column; padding: 2px 0 12px 14px; }
.mm-sub { text-align: left; padding: 9px 12px; font-size: 14px; color: var(--muted); }
.mm-sub:hover { color: var(--red); }
/* third level (mobile) — level-2 acts as a heading, level-3 links indent beneath */
.mm-subhead { color: var(--text); font-weight: 700; padding-bottom: 4px; }
.mm-sub3 { padding-left: 26px; font-size: 13.5px; color: var(--muted-2); }
.mm-sub3:hover { color: var(--red); }

/* ---------- footer ---------- */
.ftr { background: var(--bg-2); border-top: 1px solid var(--line); margin-top: 80px; }
.ftr-grid {
  display: grid; grid-template-columns: 1.7fr 1fr 1.1fr 1.1fr; gap: 40px;
  padding: 56px 28px 40px;
}
.ftr-brand .logo { margin-bottom: 16px; }
.ftr-blurb { color: var(--muted); font-size: 14px; max-width: 320px; line-height: 1.6; }
.ftr-trust { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.ftr-trust span { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); white-space: nowrap; }
.ftr-trust span svg { flex-shrink: 0; }

/* newsletter subscribe */
.ftr-news { margin-top: 22px; max-width: 320px; }
.ftr-news-lbl { display: block; font-size: 15px; text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 10px; }
.ftr-news-form { display: flex; gap: 8px; }
.ftr-news-form input { flex: 1; min-width: 0; background: var(--surface); border: 1.5px solid var(--line-2); border-radius: var(--r); padding: 11px 13px; font-size: 14px; color: var(--text); outline: none; transition: border-color .15s ease; }
.ftr-news-form input:focus { border-color: var(--text); }
.ftr-news-form button { flex-shrink: 0; width: 46px; background: var(--red); color: #fff; border-radius: var(--r); display: grid; place-items: center; transition: background .15s ease; }
.ftr-news-form button:hover { background: var(--red-hot); }
.ftr-news-ok { display: flex; align-items: center; gap: 7px; font-size: 13px; color: var(--text); margin: 0; }
.ftr-news-fine { font-size: 10.5px; color: var(--muted-2); letter-spacing: 0.03em; margin: 9px 0 0; }

/* store address */
.ftr-addr { font-style: normal; display: flex; flex-direction: column; gap: 8px; margin-top: 20px; }
.ftr-addr span { display: inline-flex; align-items: flex-start; gap: 8px; font-size: 13px; color: var(--muted); line-height: 1.45; }
.ftr-addr span svg { flex-shrink: 0; margin-top: 1px; }
.ftr-addr span:last-child { white-space: nowrap; }
.ftr-col h4 {
  font-family: var(--display); font-weight: 800; text-transform: uppercase;
  font-size: 14px; letter-spacing: 0.05em; color: var(--text); margin: 0 0 16px;
}
.ftr-col button { display: block; width: 100%; color: var(--muted); font-size: 14px; padding: 6px 0; text-align: left; line-height: 1.4; transition: color .15s ease; }
.ftr-col button:hover { color: var(--red); }
.ftr-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 20px 28px 30px; border-top: 1px solid var(--line); flex-wrap: wrap;
}
.ftr-bottom .mono { font-size: 11px; color: var(--muted-2); letter-spacing: 0.04em; }
.ftr-pay { display: flex; gap: 6px; }
.paychip {
  font-size: 10px; font-weight: 700; letter-spacing: 0.06em; color: var(--muted);
  border: 1px solid var(--line-2); padding: 4px 8px; border-radius: 2px;
}

/* ---------- responsive ---------- */
@media (max-width: 1020px) {
  .ftr-grid { grid-template-columns: 1fr 1fr 1fr; }
  .ftr-brand { grid-column: 1 / -1; }
}
@media (max-width: 860px) {
  .hdr-burger { display: grid; place-items: center; color: var(--text); }
  .hide-sm { display: none; }
  .hdr-ico-lbl { display: none; }
  .logo-txt { font-size: 20px; }
  .vsel-grid { grid-template-columns: 1fr 1fr; }
  .hdr-nav { display: none; }
  /* Top line: burger left · logo centered · cart right (auto margins absorb the
     freed space). The search wraps onto its own full-width line beneath. */
  .hdr-row { flex-wrap: wrap; height: auto; gap: 12px 14px; }
  /* More specific than .wrap so the 560px rule can't zero the vertical padding;
     horizontal padding still comes from .wrap. */
  .hdr-main .hdr-row { padding-top: 8px; padding-bottom: 9px; }
  .logo { margin: 0 auto; }
  .hdr-search { order: 5; flex: 1 0 100%; height: 44px; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 16px; }
  .ftr-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}


/* ===== pages.css ===== */
/* ============================================================
   Page styles — home, catalog, product, cart
   ============================================================ */

.page { min-height: 60vh; }

/* toast */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 90; background: var(--surface-2); border: 1px solid var(--line-2);
  border-left: 3px solid var(--green); border-radius: var(--r);
  padding: 14px 16px; display: flex; align-items: center; gap: 12px;
  box-shadow: 0 18px 40px -16px rgba(0,0,0,0.24); max-width: 92vw;
}
.toast span { font-size: 14px; font-weight: 500; }
.toast-go {
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  font-size: 13px; letter-spacing: 0.04em; color: var(--red); white-space: nowrap;
  padding-left: 6px; border-left: 1px solid var(--line-2);
}
.toast-go:hover { color: var(--red-hot); }
@keyframes toastIn { from { opacity: 0; transform: translate(-50%, 20px); } to { opacity: 1; transform: translate(-50%, 0); } }

/* shared section + headers */
.sec { padding: 56px 28px; }
.sechead { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 30px; }
.sechead-title { font-size: 40px; margin: 8px 0 0; position: relative; display: block; }
.sechead-bar { display:block; height: 4px; width: 64px; background: var(--red); margin-top: 10px; }
.sechead-action {
  font-family: var(--display); font-weight: 700; text-transform: uppercase; font-size: 14px;
  letter-spacing: 0.04em; color: var(--text); display: inline-flex; align-items: center; gap: 7px;
  white-space: nowrap; transition: color .15s ease, gap .15s ease;
}
.sechead-action:hover { color: var(--red); gap: 11px; }

/* ---------- HERO ---------- */
.hero {
  position: relative; overflow: hidden; border-bottom: 1px solid var(--line);
  background:
    radial-gradient(130% 90% at 84% -12%, rgba(230,35,12,0.10), transparent 52%),
    repeating-linear-gradient(-45deg, #faf9f6 0 11px, #f1f0ec 11px 22px),
    var(--bg);
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(95deg, rgba(255,255,255,0.96) 28%, rgba(255,255,255,0.35) 68%, transparent 100%);
}
/* optional full-bleed banner image */
.hero-bg { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; }
.hero--has-image { min-height: var(--hero-min-h, 0); display: flex; align-items: center; }
.hero--has-image::before {
  background: linear-gradient(95deg,
    rgba(255,255,255, var(--hero-veil, 0.9)) 26%,
    rgba(255,255,255, calc(var(--hero-veil, 0.9) * 0.4)) 62%,
    transparent 100%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; padding: 78px 28px 86px; }
.hero-copy { max-width: 620px; }
.hero-h1 { font-size: clamp(48px, 7vw, 96px); font-weight: 900; margin: 14px 0 22px; letter-spacing: -0.02em; }
.hero-h1-red { color: var(--red); text-shadow: 0 0 50px var(--red-glow); }
.hero-sub { font-size: 18px; color: var(--muted); max-width: 500px; line-height: 1.55; margin-bottom: 30px; }
.hero-selector {
  background: rgba(15,15,17,0.78); backdrop-filter: blur(10px);
  border: 1px solid var(--line-2); border-radius: var(--r);
  padding: 18px; max-width: 600px;
}
.hero-fitrow { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; margin-top: 34px; }
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats b { font-size: 34px; color: var(--text); line-height: 1; }
.hero-stats span { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-top: 6px; }

/* ---------- value bar ---------- */
.valuebar { border-bottom: 1px solid var(--line); background: var(--bg-2); }
.valuebar-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.valuecard { display: flex; gap: 14px; padding: 26px 24px; border-left: 1px solid var(--line); }
.valuecard:first-child { border-left: none; }
.value-ico { color: var(--red); flex-shrink: 0; margin-top: 2px; }
.valuecard h4 { font-size: 17px; margin: 0 0 6px; text-transform: uppercase; line-height: 1.04; }
.valuecard p { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.45; }

/* ---------- category grid ---------- */
.catgrid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.catcard {
  position: relative; text-align: left; border: 1px solid var(--line);
  border-radius: var(--r); overflow: hidden; background: var(--surface);
  min-height: 230px; display: flex; flex-direction: column; transition: border-color .2s ease, transform .2s ease;
}
.catcard:hover { border-color: var(--red); transform: translateY(-3px); }
.catcard-wide { grid-column: span 1; }
.catcard-ph { position: absolute; inset: 0; opacity: 0.45; }
.catcard-body { position: relative; z-index: 1; margin-top: auto; padding: 20px; background: linear-gradient(0deg, var(--surface) 60%, transparent); }
.catcard-ico { display: inline-grid; place-items: center; width: 34px; height: 34px; background: var(--red); color: #fff; border-radius: 3px; transform: skewX(-9deg); margin-bottom: 12px; }
.catcard-ico svg { transform: skewX(9deg); }
.catcard-body h3 { font-size: 24px; margin: 0 0 6px; text-transform: uppercase; line-height: 1.05; }
.catcard-body p { font-size: 13px; color: var(--muted); margin: 0 0 12px; line-height: 1.45; }
.catcard-go { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--red); display: inline-flex; align-items: center; gap: 7px; transition: gap .15s ease; }
.catcard:hover .catcard-go { gap: 11px; }

/* ---------- product rows / grids ---------- */
.prow { display: grid; grid-template-columns: repeat(5,1fr); gap: 14px; }
.pgrid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }

/* product card */
.pcard {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r);
  overflow: hidden; cursor: pointer; display: flex; flex-direction: column;
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.pcard:hover { border-color: var(--line-2); transform: translateY(-3px); box-shadow: 0 16px 30px -20px rgba(0,0,0,0.22); }
.pcard-media { position: relative; aspect-ratio: 1 / 1; background: #fff; }
.pcard-tags { position: absolute; top: 10px; left: 10px; display: flex; flex-direction: column; gap: 5px; align-items: flex-start; z-index: 2; }
.pcard-quick {
  position: absolute; left: 10px; right: 10px; bottom: 10px; z-index: 2;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(6px);
  border: 1px solid var(--line-2); color: var(--text);
  font-family: var(--display); font-weight: 700; text-transform: uppercase; font-size: 13px; letter-spacing: 0.03em;
  padding: 10px; border-radius: 2px; opacity: 0; transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, background .15s ease;
}
.pcard:hover .pcard-quick { opacity: 1; transform: none; }
.pcard-quick:hover { background: var(--red); border-color: var(--red); color: #fff; }
.pcard-quick.is-added { background: var(--green); border-color: var(--green); color: #04130a; opacity: 1; transform: none; }
.pcard-body { padding: 14px; display: flex; flex-direction: column; gap: 7px; flex: 1; }
.pcard-brand { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.pcard-name { font-size: 15px; font-weight: 600; margin: 0; line-height: 1.3; text-wrap: pretty; }
.pcard-rate { display: flex; align-items: center; gap: 7px; }
.pcard-rate .mono { font-size: 11px; color: var(--muted); }
.pcard-fit { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--green); display: inline-flex; align-items: center; gap: 5px; }
.pcard-foot { margin-top: auto; padding-top: 8px; display: flex; align-items: flex-end; justify-content: space-between; }
.pcard-price { display: flex; align-items: baseline; gap: 8px; }
.pcard-now { font-family: var(--display); font-weight: 800; font-size: 22px; }
.pcard-was { font-size: 13px; color: var(--muted-2); text-decoration: line-through; }
.pcard-cad { font-size: 10px; color: var(--muted-2); letter-spacing: 0.1em; }

/* deals section bg */
.deals-sec { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* ---------- brand marquee ---------- */
.brand-marquee {
  overflow: hidden; position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
}
.brand-track { display: flex; width: max-content; animation: brand-scroll var(--brand-speed, 40s) linear infinite; }
.brand-marquee:hover .brand-track,
.brand-marquee:focus-within .brand-track { animation-play-state: paused; }
@keyframes brand-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.brandcard {
  flex: 0 0 200px; width: 200px; margin-right: 12px;
  border: 1px solid var(--line); border-radius: var(--r); background: var(--surface);
  padding: 22px 14px; display: flex; flex-direction: column; gap: 6px; text-align: center; align-items: center;
  transition: border-color .18s ease, transform .18s ease;
}
.brandcard:hover { border-color: var(--red); transform: translateY(-3px); }
.brandcard-name { font-size: 24px; font-weight: 900; letter-spacing: -0.01em; }
.brandcard-tag { font-family: var(--mono); font-size: 9.5px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted-2); line-height: 1.3; }
@media (prefers-reduced-motion: reduce) {
  .brand-track { animation: none; width: 100%; overflow-x: auto; padding-bottom: 6px; }
}

/* ---------- build cta ---------- */
.buildcta { position: relative; border-radius: var(--r); overflow: hidden; border: 1px solid var(--line-2); }
.buildcta-bg { position: absolute; inset: 0; background:
  linear-gradient(120deg, var(--red-deep), var(--red) 70%);
}
.buildcta-bg .hazard { position: absolute; bottom: 0; left: 0; right: 0; opacity: 0.25; }
.buildcta-inner { position: relative; z-index: 1; padding: 54px 48px; max-width: 640px; }
.buildcta-h { color: #fff; font-size: clamp(30px,4vw,48px); margin: 12px 0 14px; }
.buildcta-inner p { color: rgba(255,255,255,0.9); font-size: 16px; margin-bottom: 26px; max-width: 480px; }

/* ============================================================
   CATEGORY PAGE
   ============================================================ */
.cat-hero { border-bottom: 1px solid var(--line); background: var(--bg-2); padding: 36px 0 30px; }
.crumb { font-size: 11px; letter-spacing: 0.1em; color: var(--muted); background: none; }
.crumb:hover { color: var(--red); }
.crumb-sep { color: var(--muted-2); margin: 0 8px; }
.crumb-here { color: var(--text); }
.cat-title { font-size: clamp(34px,5vw,56px); margin: 14px 0 0; }
.cat-blurb { color: var(--muted); margin: 10px 0 0; max-width: 540px; }

/* ---------- all brands grid + cards ---------- */
.bgrid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.bcard {
  border: 1px solid var(--line); border-radius: var(--r); background: var(--surface);
  padding: 22px; display: flex; flex-direction: column; gap: 18px; text-align: left;
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.bcard:hover { border-color: var(--red); transform: translateY(-3px); box-shadow: 0 16px 34px -20px rgba(0,0,0,0.28); }
.bcard-head { display: flex; align-items: center; gap: 14px; }
.bcard-mark { width: 52px; height: 52px; flex: 0 0 52px; border-radius: 2px; overflow: hidden; }
.bcard-mark-ph { width: 100%; height: 100%; }
.bcard-mark img { width: 100%; height: 100%; object-fit: contain; }
.bcard-id { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.bcard-name { font-size: 26px; font-weight: 900; letter-spacing: -0.01em; line-height: 1; margin: 0; }
.bcard-tag { font-size: 9.5px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted-2); }
.bcard-blurb { font-size: 14px; line-height: 1.55; color: var(--muted); margin: 0; text-wrap: pretty; }
.bcard-cats { display: flex; flex-wrap: wrap; gap: 6px; }
.bcard-cat {
  font-size: 9.5px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted);
  padding: 5px 9px; border: 1px solid var(--line-2); border-radius: 100px; background: var(--surface);
  transition: border-color .15s ease, color .15s ease, background .15s ease;
}
.bcard-cat:hover { border-color: var(--red); color: var(--red); }
.bcard-go {
  margin-top: auto; font-family: var(--display); font-weight: 700; text-transform: uppercase;
  font-size: 13px; letter-spacing: 0.04em; color: var(--red);
  display: inline-flex; align-items: center; gap: 7px; transition: gap .15s ease;
}
.bcard:hover .bcard-go { gap: 11px; }
@media (max-width: 1080px) { .bgrid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px)  { .bgrid { grid-template-columns: 1fr; } }

.cat-layout { display: grid; grid-template-columns: 250px 1fr; gap: 30px; padding-top: 30px; padding-bottom: 40px; align-items: start; }
.filt-toggle { display: none; }
.filters-wrap { position: sticky; top: 130px; }
.filters-mtop { display: none; }
.filters { display: flex; flex-direction: column; gap: 26px; }
.filt-block { border-bottom: 1px solid var(--line); padding-bottom: 22px; }
.filt-block:last-child { border-bottom: none; }
.filt-block h4 { font-family: var(--display); font-weight: 800; text-transform: uppercase; font-size: 15px; letter-spacing: 0.04em; margin: 0 0 14px; }
.filt-hint { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.5; }
.filt-checks { display: flex; flex-direction: column; gap: 11px; }
.filt-check { display: flex; align-items: center; gap: 10px; font-size: 14px; cursor: pointer; color: var(--text); user-select: none; }
.filt-check input { position: absolute; opacity: 0; pointer-events: none; }
.filt-box {
  width: 18px; height: 18px; border: 1.5px solid var(--line-2); border-radius: 3px;
  display: grid; place-items: center; color: transparent; flex-shrink: 0; transition: all .12s ease;
}
.filt-check input:checked + .filt-box { background: var(--red); border-color: var(--red); color: #fff; }
.filt-count { margin-left: auto; font-size: 11px; color: var(--muted-2); }
.filt-range { width: 100%; accent-color: var(--red); }
.filt-rangelbl { font-size: 12px; color: var(--muted); margin-top: 8px; }

.cat-bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.cat-count { font-size: 12px; color: var(--muted); letter-spacing: 0.06em; }
.cat-sort { display: flex; align-items: center; gap: 10px; }
.cat-sort label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.cat-sort .vs-field select { padding: 9px 34px 9px 12px; font-size: 13px; }
.cat-empty { text-align: center; padding: 80px 20px; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.cat-empty p { color: var(--muted); margin: 0; }

/* ============================================================
   PRODUCT PAGE
   ============================================================ */
.pp-crumb { padding-top: 24px; }
.pp-top { display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; padding-top: 22px; }
.pp-gallery { position: sticky; top: 130px; align-self: start; }
.pp-main { position: relative; aspect-ratio: 4 / 3; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; background: #fff; }
.pp-thumbs { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin-top: 10px; }
.pp-thumb { position: relative; aspect-ratio: 1; border: 1.5px solid var(--line); border-radius: 2px; overflow: hidden; cursor: pointer; }
.pp-thumb.is-active { border-color: var(--red); }

.pp-brandrow { display: flex; align-items: center; justify-content: space-between; }
.pp-brand { font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red); font-weight: 700; }
.pp-sku { font-size: 11px; color: var(--muted-2); }
.pp-title { font-size: clamp(28px,3.6vw,44px); margin: 10px 0 14px; }
.pp-rate { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.pp-rate .mono { font-size: 14px; }
.pp-reviews { font-size: 13px; color: var(--muted); }
.pp-blurb { font-size: 16px; color: var(--muted); line-height: 1.6; margin: 0 0 22px; }

.pp-fit { background: var(--surface); border: 1px solid var(--line-2); border-left: 3px solid var(--muted-2); border-radius: var(--r); padding: 16px; margin-bottom: 22px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.pp-fit-ok { border-left-color: var(--green); }
.pp-fit b { color: var(--text); }
.pp-fit span { color: var(--muted); font-size: 14px; }
.pp-fit-change { margin-left: auto; font-family: var(--mono); font-size: 12px; color: var(--red); text-decoration: underline; }
.pp-fit-head { display: flex; align-items: center; gap: 8px; font-family: var(--display); font-weight: 700; text-transform: uppercase; font-size: 14px; margin-bottom: 12px; color: var(--text); }

.pp-buy { border: 1px solid var(--line); border-radius: var(--r); padding: 20px; background: var(--bg-2); }
.pp-pricebox { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; margin-bottom: 16px; }
.pp-now { font-family: var(--display); font-weight: 900; font-size: 40px; line-height: 1; }
.pp-cad { font-size: 12px; color: var(--muted); letter-spacing: 0.1em; }
.pp-was { font-size: 17px; color: var(--muted-2); text-decoration: line-through; }
.pp-actions { display: flex; gap: 12px; }
.pp-add { flex: 1; }
.pp-add.is-added { background: var(--green); }
.qty { display: flex; align-items: center; border: 1.5px solid var(--line-2); border-radius: var(--r); overflow: hidden; }
.qty button { width: 46px; height: 54px; display: grid; place-items: center; color: var(--text); transition: background .12s ease; }
.qty button:hover { background: var(--surface-3); color: var(--red); }
.qty span { min-width: 38px; text-align: center; font-size: 16px; font-weight: 700; }
.qty-sm button { width: 34px; height: 38px; }
.qty-sm span { min-width: 30px; font-size: 14px; }

.pp-trust { list-style: none; padding: 0; margin: 20px 0 0; display: flex; flex-direction: column; gap: 11px; }
.pp-trust li { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--muted); }

/* tabs */
.pp-tabs-wrap { margin-top: 56px; }
.pp-tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--line); overflow-x: auto; scrollbar-width: none; }
.pp-tabs::-webkit-scrollbar { display: none; }
.pp-tab { font-family: var(--display); font-weight: 700; text-transform: uppercase; font-size: 15px; letter-spacing: 0.03em; color: var(--muted); padding: 14px 18px; border-bottom: 3px solid transparent; white-space: nowrap; }
.pp-tab.is-active { color: var(--text); border-bottom-color: var(--red); }
.pp-tab:hover { color: var(--text); }
.pp-tabpanel { padding: 28px 0; }
.spectable { width: 100%; max-width: 640px; border-collapse: collapse; }
.spectable tr { border-bottom: 1px solid var(--line); }
.spectable th { text-align: left; padding: 13px 0; font-weight: 600; color: var(--muted); width: 40%; font-size: 14px; }
.spectable td { padding: 13px 0; color: var(--text); font-size: 14px; }
.pp-desc { max-width: 720px; color: var(--muted); line-height: 1.7; }
.pp-desc p { margin: 0 0 14px; }

.pp-reviews-list { display: flex; flex-direction: column; gap: 16px; max-width: 720px; }
.reviewcard { border: 1px solid var(--line); border-radius: var(--r); padding: 18px; background: var(--surface); }
.review-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.review-top .mono { font-size: 12px; color: var(--muted); }
.reviewcard p { margin: 0 0 10px; color: var(--text); line-height: 1.55; }
.review-verified { font-size: 11px; color: var(--green); display: inline-flex; align-items: center; gap: 5px; }

/* ============================================================
   CART PAGE
   ============================================================ */
.cart-head { padding-top: 28px; }
.cart-title { font-size: clamp(32px,4.5vw,52px); margin: 14px 0 0; }
.cart-title-n { font-size: 0.5em; color: var(--muted); }
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 32px; padding-top: 28px; padding-bottom: 40px; align-items: start; }
.cart-lines { display: flex; flex-direction: column; }

.cart-ship-nudge { background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--r); padding: 14px 16px; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; font-size: 14px; color: var(--muted); }
.cart-ship-nudge b { color: var(--text); }
.ship-bar { width: 100%; height: 5px; background: var(--surface-3); border-radius: 3px; overflow: hidden; margin-top: 4px; }
.ship-fill { height: 100%; background: var(--red); transition: width .3s ease; }

.cartline { display: grid; grid-template-columns: 96px 1fr auto; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); align-items: center; }
.cartline-media { position: relative; aspect-ratio: 1; border: 1px solid var(--line); border-radius: 2px; overflow: hidden; cursor: pointer; }
.cartline-info { display: flex; flex-direction: column; gap: 5px; }
.cartline-name { font-size: 16px; font-weight: 600; color: var(--text); text-align: left; line-height: 1.3; }
.cartline-name:hover { color: var(--red); }
.cartline-sku { font-size: 11px; color: var(--muted-2); }
.cartline-right { display: flex; align-items: center; gap: 18px; }
.cartline-price { font-family: var(--display); font-weight: 800; font-size: 20px; min-width: 90px; text-align: right; }
.cartline-rm { color: var(--muted-2); padding: 6px; }
.cartline-rm:hover { color: var(--red); }
.cart-continue { font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); display: inline-flex; align-items: center; gap: 8px; padding: 22px 0; align-self: flex-start; }
.cart-continue:hover { color: var(--red); }

.cart-summary { position: sticky; top: 130px; border: 1px solid var(--line-2); border-radius: var(--r); background: var(--bg-2); padding: 24px; }
.cart-summary h3 { font-size: 22px; text-transform: uppercase; margin: 0 0 18px; }
.cart-promo { display: flex; gap: 8px; margin-bottom: 10px; }
.cart-promo input { flex: 1; background: var(--surface-2); border: 1.5px solid var(--line-2); border-radius: var(--r); color: var(--text); padding: 11px 12px; font-size: 13px; outline: none; }
.cart-promo input:focus { border-color: var(--line-2); }
.cart-promo button { font-family: var(--display); font-weight: 700; text-transform: uppercase; font-size: 13px; padding: 0 16px; border: 1.5px solid var(--line-2); border-radius: var(--r); color: var(--text); }
.cart-promo button:hover { border-color: var(--red); color: var(--red); }
.cart-promo-ok { font-size: 12px; color: var(--green); display: flex; align-items: center; gap: 6px; margin-bottom: 12px; }
.cart-rows { display: flex; flex-direction: column; gap: 11px; padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-top: 8px; }
.cart-row { display: flex; justify-content: space-between; font-size: 14px; color: var(--muted); }
.cart-row .mono { color: var(--text); }
.cart-row-disc .mono { color: var(--green); }
.cart-total { display: flex; align-items: baseline; justify-content: space-between; padding: 18px 0 20px; }
.cart-total .display { font-size: 22px; text-transform: uppercase; }
.cart-total-n { font-size: 30px; }
.cart-total-cad { font-size: 11px; color: var(--muted); margin-left: 6px; }
.cart-pay-note { display: flex; align-items: center; gap: 7px; justify-content: center; font-size: 10.5px; color: var(--muted-2); margin-top: 14px; letter-spacing: 0.04em; text-align: center; }

/* empty + order done */
.cart-empty, .order-done { text-align: center; padding: 90px 20px 110px; max-width: 560px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.cart-empty-ico, .order-check { width: 80px; height: 80px; border-radius: 50%; display: grid; place-items: center; }
.cart-empty-ico { background: var(--surface); border: 1px solid var(--line-2); color: var(--muted); }
.order-check { background: var(--green); color: #04130a; margin-bottom: 6px; }
.cart-empty h1, .order-h { font-size: clamp(32px,5vw,52px); margin: 6px 0; line-height: 1.0; }
.cart-empty p, .order-done p { color: var(--muted); margin: 0; font-size: 16px; line-height: 1.6; }
.order-done p b { color: var(--text); }
.order-actions { display: flex; gap: 12px; margin-top: 22px; flex-wrap: wrap; justify-content: center; }

/* ============================================================
   VEHICLE GATE MODAL
   ============================================================ */
.vmodal {
  position: fixed; top: 50%; left: 50%; transform: translate(-50%,-50%);
  z-index: 95; width: min(560px, 92vw); background: var(--surface);
  border: 1px solid var(--line-2); border-radius: var(--r); padding: 34px;
  box-shadow: 0 40px 90px -30px rgba(0,0,0,0.4);
}
.vmodal-close { position: absolute; top: 16px; right: 16px; color: var(--muted); padding: 4px; }
.vmodal-close:hover { color: var(--red); }
.vmodal-title { font-size: 32px; margin: 10px 0 22px; line-height: 1.0; }
.vmodal-sub { display: block; font-family: var(--body); font-weight: 400; font-size: 15px; text-transform: none; letter-spacing: 0; color: var(--muted); margin-top: 10px; }
.vmodal-skip { display: block; margin: 18px auto 0; font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em; color: var(--muted); text-decoration: underline; }
.vmodal-skip:hover { color: var(--red); }
.vsel-modal .vsel-head { display: none; }
.vsel-modal .vsel-grid { grid-template-columns: 1fr 1fr; }

/* ============================================================
   SHOP-FOR (category picker) PAGE
   ============================================================ */
.sf-band {
  position: relative; overflow: hidden; border-bottom: 1px solid var(--line);
  padding: 32px 0 36px;
  background:
    radial-gradient(120% 120% at 88% -20%, rgba(230,35,12,0.10), transparent 55%),
    var(--bg-2);
}
.sf-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-top: 16px; flex-wrap: wrap; }
.sf-title { font-size: clamp(30px,4.2vw,50px); margin: 8px 0 0; line-height: 1.1; }
.sf-veh { color: var(--red); }
.sf-headside { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.sf-fit { font-size: 13.5px; color: var(--muted); display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.sf-change { font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em; color: var(--text); border: 1.5px solid var(--line-2); border-radius: var(--r); padding: 9px 13px; display: inline-flex; align-items: center; gap: 7px; }
.sf-change:hover { border-color: var(--red); color: var(--red); }
.sf-sub { color: var(--muted); margin: 26px 0 0; max-width: 580px; }
.sf-selector { max-width: 600px; margin-top: 22px; background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--r); padding: 18px; }
.sf-secpad { padding-top: 40px; }

.sf-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.sf-card { position: relative; text-align: left; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; background: var(--surface); display: flex; flex-direction: column; min-height: 240px; transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease; }
.sf-card:hover { border-color: var(--red); transform: translateY(-3px); box-shadow: 0 16px 30px -20px rgba(0,0,0,0.2); }
.sf-card-ph { height: 116px; opacity: 0.55; }
.sf-card-body { padding: 18px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.sf-card-ico { width: 38px; height: 38px; display: grid; place-items: center; background: var(--red); color: #fff; border-radius: 3px; transform: skewX(-9deg); }
.sf-card-ico svg { transform: skewX(9deg); }
.sf-card-txt h3 { font-size: 21px; margin: 0 0 6px; text-transform: uppercase; line-height: 1.05; }
.sf-card-txt p { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.45; }
.sf-card-foot { margin-top: auto; padding-top: 12px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); }
.sf-card-count { font-size: 11px; color: var(--muted); letter-spacing: 0.04em; }
.sf-card-go { color: var(--red); display: grid; place-items: center; transition: transform .15s ease; }
.sf-card:hover .sf-card-go { transform: translateX(4px); }

.sf-extra { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 14px; }
.sf-extra-btn { display: flex; align-items: center; justify-content: space-between; gap: 16px; text-align: left; padding: 22px 24px; border: 1px solid var(--line-2); border-radius: var(--r); background: var(--surface); color: var(--text); transition: border-color .18s ease; }
.sf-extra-btn:hover { border-color: var(--red); }
.sf-extra-btn .display { display: block; font-size: 22px; text-transform: uppercase; }
.sf-extra-sub { display: block; font-size: 13px; color: var(--muted); margin-top: 4px; }
.sf-extra-btn svg { color: var(--red); flex-shrink: 0; }
.sf-extra-deals { background: var(--ink); color: #fff; border-color: var(--ink); }
.sf-extra-deals:hover { border-color: var(--red); }
.sf-extra-deals .sf-extra-sub { color: rgba(255,255,255,0.72); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .prow { grid-template-columns: repeat(3,1fr); }
  .brandgrid { grid-template-columns: repeat(4,1fr); }
  .catgrid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 920px) {
  .pp-top { grid-template-columns: 1fr; gap: 28px; }
  .pp-gallery { position: static; }
  .valuebar-grid { grid-template-columns: 1fr 1fr; }
  .valuecard:nth-child(3) { border-left: none; }
  .cart-layout { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
  .sf-grid { grid-template-columns: 1fr 1fr; }
  .sf-extra { grid-template-columns: 1fr; }
  .sf-headside { align-items: flex-start; }
}
@media (max-width: 760px) {
  .sec { padding: 40px 20px; }
  .sechead-title { font-size: 30px; }
  .prow, .pgrid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .cat-layout { grid-template-columns: 1fr; }
  .filt-toggle { display: inline-flex; margin-bottom: 18px; }
  .filters-wrap {
    position: fixed; top: 0; left: 0; bottom: 0; width: min(86vw,340px); z-index: 80;
    background: var(--surface); padding: 20px; overflow-y: auto; transform: translateX(-100%);
    transition: transform .25s ease; border-right: 1px solid var(--line);
  }
  .filters-wrap.is-open { transform: none; }
  .filters-mtop { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; color: var(--text); }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .hero-stats b { font-size: 26px; }
  .buildcta-inner { padding: 36px 24px; }
}
@media (max-width: 480px) {
  .prow, .pgrid { grid-template-columns: 1fr 1fr; }
  .brandgrid { grid-template-columns: 1fr 1fr; }
  .catgrid { grid-template-columns: 1fr; }
  .sf-grid { grid-template-columns: 1fr; }
  .vsel-modal .vsel-grid { grid-template-columns: 1fr; }
  .cartline { grid-template-columns: 72px 1fr; }
  .cartline-right { grid-column: 1 / -1; justify-content: space-between; }
  .valuebar-grid { grid-template-columns: 1fr; }
  .valuecard { border-left: none !important; border-top: 1px solid var(--line); }
  .valuecard:first-child { border-top: none; }
}


/* ===== conv.css ===== */
/* ============================================================
   Conversion-optimization styles
   (cards · listing · product · cart · checkout)
   ============================================================ */

/* ---------- product card: stock / social proof ---------- */
.pcard-stock {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.03em;
  color: var(--muted); margin-top: 2px;
}
.pcard-stock svg { color: var(--green); }
.pcard-stock-low { color: var(--red); font-weight: 700; }
.pcard-stock-low svg { color: var(--red); }

/* ---------- listing: trust strip + active filter chips ---------- */
.cat-trust {
  display: flex; flex-wrap: wrap; gap: 22px; padding-top: 18px; margin-top: 18px;
  border-top: 1px solid var(--line);
}
.cat-trust span { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); }
.cat-active { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-bottom: 18px; }
.fchip {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--surface-2); border: 1px solid var(--line-2); border-radius: 999px;
  padding: 6px 12px; font-size: 12.5px; font-weight: 600; color: var(--text);
  transition: border-color .15s ease, color .15s ease;
}
.fchip:hover { border-color: var(--red); color: var(--red); }
.fchip svg { color: var(--muted-2); }
.fchip:hover svg { color: var(--red); }
.fchip-clear { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.04em; color: var(--muted); text-decoration: underline; margin-left: 4px; }
.fchip-clear:hover { color: var(--red); }

/* ---------- product page conversion blocks ---------- */
.pp-installments { font-size: 13.5px; color: var(--muted); margin: -4px 0 14px; }
.pp-installments b { color: var(--text); }
.pp-payname { color: #5a31f4; font-weight: 700; }

.pp-stock {
  display: flex; align-items: center; gap: 9px; padding: 11px 14px; margin-bottom: 14px;
  border-radius: var(--r); font-size: 14px; background: rgba(24,165,88,0.08);
  border: 1px solid rgba(24,165,88,0.25); color: var(--text);
}
.pp-stock svg { color: var(--green); flex-shrink: 0; }
.pp-stock.is-low { background: rgba(230,35,12,0.07); border-color: rgba(230,35,12,0.28); }
.pp-stock.is-low svg { color: var(--red); }

.btn-shop { background: #5a31f4; color: #fff; }
.btn-shop:hover { background: #6b44ff; }

.pp-eta { display: flex; align-items: flex-start; gap: 11px; margin-top: 14px; padding: 13px 14px; background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--r); }
.pp-eta svg { flex-shrink: 0; margin-top: 2px; }
.pp-eta b { font-size: 14px; }
.pp-eta > div { display: flex; flex-direction: column; gap: 3px; }
.pp-eta-cut { font-size: 12.5px; color: var(--muted); }
.pp-eta-cut .mono { color: var(--red); font-weight: 700; }

/* frequently bought together */
.fbt { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; border: 1px solid var(--line); border-radius: var(--r); padding: 22px 24px; background: var(--surface); }
.fbt-items { display: flex; align-items: center; gap: 16px; flex: 1; min-width: 0; }
.fbt-item { display: flex; align-items: center; gap: 12px; text-align: left; min-width: 0; }
.fbt-item-link:hover .fbt-meta b { color: var(--red); }
.fbt-thumb { position: relative; width: 64px; height: 64px; border: 1px solid var(--line); border-radius: 2px; overflow: hidden; flex-shrink: 0; background: #fff; }
.fbt-meta { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.fbt-meta .mono { font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.fbt-meta b { font-size: 14px; line-height: 1.25; overflow: hidden; text-overflow: ellipsis; }
.fbt-price { font-family: var(--display); font-weight: 800; font-size: 16px; }
.fbt-plus { color: var(--muted-2); flex-shrink: 0; }
.fbt-buy { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.fbt-total-lbl { font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); }
.fbt-total { font-size: 26px; }
.fbt-buy .btn { margin-top: 6px; }

/* sticky add-to-cart */
.pp-sticky {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 55;
  background: rgba(255,255,255,0.96); backdrop-filter: blur(10px);
  border-top: 1px solid var(--line-2);
  transform: translateY(110%); transition: transform .25s cubic-bezier(.2,.7,.2,1);
  box-shadow: 0 -10px 30px -16px rgba(0,0,0,0.18);
}
.pp-sticky.is-on { transform: none; }
.pp-sticky-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 28px; }
.pp-sticky-info { display: flex; align-items: center; gap: 12px; min-width: 0; }
.pp-sticky-thumb { position: relative; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 2px; overflow: hidden; flex-shrink: 0; background: #fff; }
.pp-sticky-meta { display: flex; flex-direction: column; min-width: 0; }
.pp-sticky-meta b { font-size: 14px; line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 42vw; }
.pp-sticky-meta span { font-size: 12px; color: var(--muted); display: inline-flex; align-items: center; gap: 5px; }
.pp-sticky-buy { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.pp-sticky-price { font-size: 24px; }
.pp-sticky .btn.is-added { background: var(--green); }

/* ---------- cart: express / upsell / reassurance ---------- */
.express { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; margin-bottom: 14px; }
.xbtn { height: 46px; border-radius: var(--r); font-weight: 800; font-size: 15px; display: flex; align-items: center; justify-content: center; gap: 2px; transition: filter .15s ease; }
.xbtn:hover { filter: brightness(1.08); }
.xbtn-shop { background: #5a31f4; color: #fff; } .xbtn-shop span { font-weight: 800; }
.xbtn-pp { background: #ffc439; color: #003087; } .xbtn-pp i { font-style: italic; font-weight: 800; color: #003087; } .xbtn-pp b { font-style: italic; color: #009cde; }
.xbtn-gp { background: #000; color: #fff; } .xbtn-gp .gp-g { color: #4285f4; font-weight: 900; }
.express-or { text-align: center; position: relative; margin: 6px 0 16px; }
.express-or::before { content: ""; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: var(--line); }
.express-or span { position: relative; background: var(--bg-2); padding: 0 12px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted-2); }
.cart-summary .express-or span { background: var(--bg-2); }

.cart-ship-nudge.is-won { background: rgba(24,165,88,0.08); border-color: rgba(24,165,88,0.3); }
.cartline-instock { font-family: var(--mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--green); display: inline-flex; align-items: center; gap: 5px; }

.cart-upsell { margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--line); }
.cart-upsell h3 { font-size: 20px; text-transform: uppercase; margin: 0 0 16px; }
.upsell-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.upsell-card { display: flex; gap: 11px; border: 1px solid var(--line); border-radius: var(--r); padding: 10px; background: var(--surface); }
.upsell-media { position: relative; width: 60px; height: 60px; border-radius: 2px; overflow: hidden; flex-shrink: 0; background: #fff; }
.upsell-meta { display: flex; flex-direction: column; gap: 3px; min-width: 0; flex: 1; }
.upsell-meta .mono { font-size: 9.5px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); }
.upsell-name { font-size: 12.5px; font-weight: 600; text-align: left; line-height: 1.25; color: var(--text); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.upsell-name:hover { color: var(--red); }
.upsell-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; }
.upsell-price { font-family: var(--display); font-weight: 800; font-size: 15px; }
.upsell-add { display: inline-flex; align-items: center; gap: 4px; font-family: var(--mono); font-size: 11px; text-transform: uppercase; color: var(--red); border: 1px solid var(--line-2); border-radius: 2px; padding: 5px 8px; }
.upsell-add:hover { border-color: var(--red); background: var(--red); color: #fff; }

.cart-reassure { list-style: none; padding: 14px 0 0; margin: 14px 0 0; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 9px; }
.cart-reassure li { display: flex; align-items: center; gap: 9px; font-size: 12.5px; color: var(--muted); }

/* ============================================================
   CHECKOUT
   ============================================================ */
.co-bare { min-height: 100vh; background: var(--bg); }
.co-head { border-bottom: 1px solid var(--line); background: var(--bg); position: sticky; top: 0; z-index: 30; }
.co-head-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 70px; }
.co-head-secure { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; letter-spacing: 0.08em; color: var(--muted); }
.co-head-back { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 12px; color: var(--muted); }
.co-head-back:hover { color: var(--red); }

.co-layout { display: grid; grid-template-columns: 1fr 420px; gap: 48px; padding-top: 36px; padding-bottom: 60px; align-items: start; }
.co-form { max-width: 640px; }

.co-sec { margin-bottom: 30px; }
.co-sec-head { display: flex; align-items: center; gap: 12px; font-family: var(--display); font-weight: 800; text-transform: uppercase; font-size: 21px; letter-spacing: 0.02em; margin: 0 0 16px; }
.co-sec-n { display: grid; place-items: center; width: 26px; height: 26px; background: var(--ink); color: #fff; border-radius: 50%; font-size: 13px; font-weight: 700; }

.field { margin-bottom: 12px; }
.field label { display: block; font-size: 12.5px; font-weight: 600; color: var(--muted); margin-bottom: 6px; }
.field-input { position: relative; display: flex; align-items: center; }
.field-input input { width: 100%; background: var(--surface); border: 1.5px solid var(--line-2); border-radius: var(--r); padding: 12px 14px; font-size: 15px; color: var(--text); outline: none; transition: border-color .15s ease; }
.field-input.has-icon input { padding-right: 42px; }
.field-input svg { position: absolute; right: 13px; pointer-events: none; }
.field-input input:focus { border-color: var(--text); }
.field-err .field-input input, .field-err .vs-field { border-color: var(--red); }
.field-msg { display: block; font-size: 11.5px; color: var(--red); margin-top: 5px; }
.field-err .vs-field { border-width: 1.5px; }

.co-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.co-grid3 { display: grid; grid-template-columns: 1.4fr 0.8fr 1fr; gap: 12px; }
.co-country { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text); background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--r); padding: 10px 14px; margin-bottom: 12px; }

.co-check { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--text); cursor: pointer; user-select: none; margin-top: 4px; }
.co-check input { position: absolute; opacity: 0; pointer-events: none; }
.co-check .filt-box { width: 18px; height: 18px; border: 1.5px solid var(--line-2); border-radius: 3px; display: grid; place-items: center; color: transparent; flex-shrink: 0; }
.co-check input:checked + .filt-box { background: var(--red); border-color: var(--red); color: #fff; }
.co-samebill { margin: 20px 0; }
.co-secure { display: inline-flex; align-items: center; gap: 7px; font-size: 11.5px; color: var(--muted); margin-bottom: 12px; }

/* radio rows (shipping/payment) */
.rrow { border: 1.5px solid var(--line-2); border-radius: var(--r); margin-bottom: 10px; overflow: hidden; transition: border-color .15s ease; }
.rrow.is-active { border-color: var(--red); }
.rrow-head { display: flex; align-items: center; gap: 12px; width: 100%; text-align: left; padding: 15px 16px; }
.rrow-radio { width: 19px; height: 19px; border: 1.5px solid var(--line-2); border-radius: 50%; display: grid; place-items: center; flex-shrink: 0; }
.rrow.is-active .rrow-radio { border-color: var(--red); }
.rrow-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--red); }
.rrow-title { font-weight: 600; font-size: 15px; }
.rrow-price { margin-left: auto; font-family: var(--display); font-weight: 800; font-size: 16px; }
.rrow-sub { padding: 0 16px 14px 47px; font-size: 13px; color: var(--muted); margin-top: -4px; }
.co-cards { margin-left: auto; display: flex; gap: 5px; }
.co-cardform { padding: 4px 16px 18px; }
.co-cardform .co-grid2 { margin-top: 0; }

.co-pay { width: 100%; margin-top: 8px; }
.co-trust { list-style: none; padding: 0; margin: 18px 0 0; display: flex; justify-content: center; gap: 22px; flex-wrap: wrap; }
.co-trust li { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--muted); }

/* checkout summary */
.co-summary { position: sticky; top: 96px; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r); padding: 22px; }
.co-summary > h3 { font-size: 20px; text-transform: uppercase; margin: 0 0 16px; }
.co-sum-lines { display: flex; flex-direction: column; gap: 14px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.co-sum-line { display: flex; align-items: center; gap: 12px; }
.co-sum-thumb { position: relative; width: 56px; height: 56px; border: 1px solid var(--line); border-radius: 4px; overflow: hidden; flex-shrink: 0; background: #fff; }
.co-sum-qty { position: absolute; top: -7px; right: -7px; min-width: 20px; height: 20px; padding: 0 5px; background: var(--ink); color: #fff; border-radius: 10px; font-family: var(--mono); font-size: 11px; font-weight: 700; display: grid; place-items: center; }
.co-sum-meta { display: flex; flex-direction: column; gap: 2px; min-width: 0; flex: 1; }
.co-sum-meta b { font-size: 13.5px; line-height: 1.25; }
.co-sum-meta .mono { font-size: 10px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); }
.co-sum-price { font-size: 14px; flex-shrink: 0; }
.co-summary .cart-promo { margin-top: 16px; }
.co-cad { font-size: 11px; color: var(--muted); }

/* checkout confirmation */
.co-done { max-width: 620px; margin: 0 auto; text-align: center; padding: 70px 20px 90px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.co-done p { color: var(--muted); font-size: 16px; line-height: 1.6; margin: 0; }
.co-done p b { color: var(--text); }
.co-done-card { width: 100%; text-align: left; border: 1px solid var(--line); border-radius: var(--r); background: var(--surface); padding: 18px 20px; margin: 22px 0 6px; }
.co-done-line { display: flex; align-items: center; gap: 14px; padding: 10px 0; }
.co-done-name { flex: 1; font-weight: 600; font-size: 14px; }
.co-done-total { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); margin-top: 8px; padding-top: 14px; }
.co-done-total .display { font-size: 20px; text-transform: uppercase; }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .co-layout { grid-template-columns: 1fr; gap: 28px; }
  .co-summary { position: static; order: -1; }
}
@media (max-width: 760px) {
  .upsell-row { grid-template-columns: 1fr; }
  .fbt { gap: 18px; }
  .fbt-buy { width: 100%; align-items: stretch; }
  .fbt-buy .btn { width: 100%; }
  .pp-sticky-row { padding: 10px 16px; }
  .co-head-back { display: none; }
}
@media (max-width: 520px) {
  .express { grid-template-columns: 1fr; }
  .co-grid3 { grid-template-columns: 1fr 1fr; }
  .cat-trust { gap: 12px 18px; }
}


/* ===== extra.css ===== */
/* ============================================================
   Extra pages — auth, account, orders, content, contact, 404, blog
   Reuses tokens + .field / .vs-field / .co-grid2 from the system.
   ============================================================ */

/* ---------- status pill ---------- */
.statuspill {
  font-family: var(--mono); font-size: 10.5px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 6px 11px; border-radius: 999px; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 6px;
}
.statuspill::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.sp-placed   { background: var(--surface-3); color: var(--muted); }
.sp-building { background: rgba(245,158,0,0.14); color: #b3760a; }
.sp-transit  { background: rgba(230,35,12,0.10); color: var(--red); }
.sp-done     { background: rgba(24,165,88,0.12); color: var(--green); }

/* ============================================================
   AUTH (sign in / register)
   ============================================================ */
.auth { display: grid; grid-template-columns: 1.05fr 1fr; min-height: 660px; }
.auth-aside { position: relative; overflow: hidden; background:
  radial-gradient(120% 90% at 80% 0%, rgba(230,35,12,0.55), transparent 55%),
  linear-gradient(160deg, #1a1a1f, #0d0d10);
  color: #fff; }
.auth-aside::after { content:""; position:absolute; inset:0;
  background: repeating-linear-gradient(-45deg, rgba(255,255,255,0.03) 0 11px, transparent 11px 22px); }
.auth-aside-in { position: relative; z-index: 1; padding: 64px 56px; max-width: 520px; height: 100%; display: flex; flex-direction: column; justify-content: center; }
.auth-aside-h { font-size: clamp(36px,4vw,60px); margin: 16px 0 30px; color: #fff; }
.auth-perks { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }
.auth-perks li { display: flex; align-items: center; gap: 13px; font-size: 16px; color: rgba(255,255,255,0.86); }
.auth-perks svg { color: var(--red-hot); flex-shrink: 0; }
.auth-aside-haz { position: absolute; left: 0; right: 0; bottom: 0; opacity: 0.7; }

.auth-main { display: flex; align-items: center; justify-content: center; padding: 56px 28px; background: var(--bg-2); }
.auth-card { width: 100%; max-width: 432px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 34px 34px 30px; box-shadow: 0 24px 60px -34px rgba(0,0,0,0.3); }
.auth-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--r); padding: 4px; margin-bottom: 26px; }
.auth-tab { font-family: var(--display); font-weight: 700; text-transform: uppercase; font-size: 14px; letter-spacing: 0.03em; padding: 11px; border-radius: 2px; color: var(--muted); transition: all .15s ease; }
.auth-tab.is-active { background: var(--ink); color: #fff; }
.auth-h { font-size: 32px; margin: 0 0 6px; }
.auth-sub { color: var(--muted); font-size: 14.5px; margin: 0 0 22px; line-height: 1.5; }
.auth-forgot { font-family: var(--mono); font-size: 12px; color: var(--muted); text-decoration: underline; margin: 2px 0 4px; display: block; }
.auth-forgot:hover { color: var(--red); }
.auth-go { width: 100%; margin-top: 16px; }
.auth-or { text-align: center; position: relative; margin: 22px 0 16px; }
.auth-or::before { content:""; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: var(--line); }
.auth-or span { position: relative; background: var(--surface); padding: 0 12px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted-2); }
.auth-social { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
.auth-social-btn { border: 1.5px solid var(--line-2); border-radius: var(--r); padding: 11px; font-weight: 600; font-size: 13.5px; color: var(--text); transition: border-color .15s ease; }
.auth-social-btn:hover { border-color: var(--red); color: var(--red); }
.auth-fine { display: flex; align-items: center; justify-content: center; gap: 7px; font-size: 11px; color: var(--muted-2); margin: 22px 0 0; letter-spacing: 0.03em; }

/* ============================================================
   ACCOUNT DASHBOARD
   ============================================================ */
.acct-band { border-bottom: 1px solid var(--line); background:
  radial-gradient(120% 130% at 90% -30%, rgba(230,35,12,0.08), transparent 55%), var(--bg-2); }
.acct-band-in { display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; padding: 40px 28px 34px; flex-wrap: wrap; }
.acct-hi { font-size: clamp(32px,4.4vw,52px); margin: 10px 0 0; }
.acct-band-sub { font-size: 13px; color: var(--muted); margin: 10px 0 0; }
.acct-band-stats { display: flex; gap: 32px; }
.acct-band-stats div { display: flex; flex-direction: column; }
.acct-band-stats b { font-size: 30px; line-height: 1; }
.acct-band-stats span { font-family: var(--mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.07em; color: var(--muted); margin-top: 6px; }

.acct-layout { display: grid; grid-template-columns: 230px 1fr; gap: 40px; padding-top: 36px; padding-bottom: 60px; align-items: start; }
.acct-nav { position: sticky; top: 130px; display: flex; flex-direction: column; gap: 3px; }
.acct-navlink { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: var(--r); font-size: 15px; font-weight: 600; color: var(--muted); text-align: left; transition: all .14s ease; }
.acct-navlink svg { color: var(--muted-2); transition: color .14s ease; }
.acct-navlink:hover { background: var(--surface-2); color: var(--text); }
.acct-navlink.is-active { background: var(--ink); color: #fff; }
.acct-navlink.is-active svg { color: var(--red-hot); }
.acct-signout { margin-top: 14px; border-top: 1px solid var(--line); border-radius: 0; padding-top: 18px; color: var(--muted); }
.acct-signout:hover { background: none; color: var(--red); }

.acct-content { min-width: 0; }
.acct-sectitle { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.acct-sectitle h2 { font-size: 24px; text-transform: uppercase; margin: 0; }
.acct-sectitle-act { display: inline-flex; align-items: center; gap: 7px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em; color: var(--red); text-transform: uppercase; }
.acct-sectitle-act:hover { color: var(--red-hot); }

/* order card (shared overview + list) */
.ord-list { display: flex; flex-direction: column; gap: 14px; }
.ord-card { border: 1px solid var(--line); border-radius: var(--r); background: var(--surface); padding: 20px; cursor: pointer; transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease; }
.ord-card:hover { border-color: var(--line-2); box-shadow: 0 14px 30px -22px rgba(0,0,0,0.25); transform: translateY(-2px); }
.ord-card-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 16px; }
.ord-id { font-size: 13px; font-weight: 700; color: var(--text); }
.ord-date { display: block; font-size: 12.5px; color: var(--muted); margin-top: 3px; }
.ord-card-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 16px; }
.ord-thumbs { display: flex; align-items: center; gap: 8px; }
.ord-thumb { position: relative; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 3px; overflow: hidden; background: #fff; }
.ord-thumbs-eta { font-size: 11.5px; color: var(--muted); margin-left: 6px; }
.ord-card-go { display: inline-flex; align-items: center; gap: 7px; font-family: var(--display); font-weight: 700; text-transform: uppercase; font-size: 13px; color: var(--red); white-space: nowrap; }

/* order progress tracker */
.otrack { display: flex; align-items: flex-start; }
.otrack-step { position: relative; flex: 1; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.otrack-dot { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: var(--surface-2); border: 1.5px solid var(--line-2); color: var(--muted-2); position: relative; z-index: 1; transition: all .2s ease; }
.otrack-lbl { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); }
.otrack-line { position: absolute; top: 19px; left: 50%; width: 100%; height: 2px; background: var(--line-2); z-index: 0; }
.otrack-step.is-done .otrack-dot { background: var(--green); border-color: var(--green); color: #04130a; }
.otrack-step.is-done .otrack-line { background: var(--green); }
.otrack-step.is-done .otrack-lbl { color: var(--text); }
.otrack-step.is-current .otrack-dot { background: var(--red); border-color: var(--red); color: #fff; box-shadow: 0 0 0 5px var(--red-glow); }
.otrack-step.is-current .otrack-lbl { color: var(--text); font-weight: 700; }
.otrack-compact .otrack-dot { width: 28px; height: 28px; }
.otrack-compact .otrack-line { top: 14px; }

/* overview quick tiles */
.acct-tiles { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.acct-tile { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; text-align: left; border: 1px solid var(--line); border-radius: var(--r); background: var(--surface); padding: 18px; transition: border-color .15s ease, transform .15s ease; }
.acct-tile:hover { border-color: var(--red); transform: translateY(-2px); }
.acct-tile-ico { width: 40px; height: 40px; display: grid; place-items: center; background: var(--surface-2); border-radius: var(--r); color: var(--red); margin-bottom: 8px; }
.acct-tile-t { font-family: var(--display); font-weight: 700; text-transform: uppercase; font-size: 16px; }
.acct-tile-s { font-size: 12.5px; color: var(--muted); }

/* addresses */
.addr-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.addr-card { border: 1px solid var(--line); border-radius: var(--r); background: var(--surface); padding: 20px; }
.addr-card.is-default { border-color: var(--line-2); }
.addr-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.addr-label { font-family: var(--display); font-weight: 700; text-transform: uppercase; font-size: 16px; }
.addr-default { font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--green); background: rgba(24,165,88,0.12); padding: 4px 9px; border-radius: 999px; }
.addr-lines { font-size: 14px; color: var(--muted); line-height: 1.6; margin: 0 0 16px; }
.addr-lines b { color: var(--text); }
.addr-actions { display: flex; flex-wrap: wrap; gap: 14px; border-top: 1px solid var(--line); padding-top: 14px; }
.addr-act { display: inline-flex; align-items: center; gap: 6px; font-family: var(--mono); font-size: 12px; color: var(--muted); }
.addr-act:hover { color: var(--red); }
.addr-del:hover { color: var(--red); }
.addr-add { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; border: 1.5px dashed var(--line-2); border-radius: var(--r); background: var(--surface-2); color: var(--muted); min-height: 180px; transition: all .15s ease; }
.addr-add:hover { border-color: var(--red); color: var(--red); }
.addr-add span { font-family: var(--display); font-weight: 700; text-transform: uppercase; font-size: 15px; }

/* garage */
.garage-grid { display: flex; flex-direction: column; gap: 12px; }
.garage-card { display: flex; align-items: center; gap: 16px; border: 1px solid var(--line); border-radius: var(--r); background: var(--surface); padding: 18px 20px; }
.garage-card.is-primary { border-left: 3px solid var(--red); }
.garage-ico { width: 46px; height: 46px; display: grid; place-items: center; background: var(--surface-2); border-radius: var(--r); color: var(--red); flex-shrink: 0; }
.garage-meta { display: flex; flex-direction: column; gap: 4px; flex: 1; min-width: 0; }
.garage-name { font-size: 20px; }
.garage-tag { font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--green); display: inline-flex; align-items: center; gap: 6px; }
.garage-setp { font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--red); text-align: left; }
.garage-add { display: flex; align-items: center; justify-content: center; gap: 10px; border: 1.5px dashed var(--line-2); border-radius: var(--r); background: var(--surface-2); color: var(--muted); padding: 20px; transition: all .15s ease; }
.garage-add:hover { border-color: var(--red); color: var(--red); }
.garage-add span { font-family: var(--display); font-weight: 700; text-transform: uppercase; font-size: 15px; }

/* profile */
.prof-card { border: 1px solid var(--line); border-radius: var(--r); background: var(--surface); padding: 22px; max-width: 560px; }
.prefrow { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); cursor: pointer; }
.prefrow:last-child { border-bottom: none; }
.prefrow > span:first-child { display: flex; flex-direction: column; }
.prefrow b { font-size: 14.5px; }
.prefrow-sub { font-size: 12.5px; color: var(--muted); margin-top: 2px; }
.toggle { width: 44px; height: 25px; border-radius: 999px; background: var(--surface-3); position: relative; flex-shrink: 0; transition: background .18s ease; }
.toggle-dot { position: absolute; top: 3px; left: 3px; width: 19px; height: 19px; border-radius: 50%; background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,0.25); transition: left .18s ease; }
.toggle.is-on { background: var(--red); }
.toggle.is-on .toggle-dot { left: 22px; }

/* ============================================================
   ORDER DETAIL
   ============================================================ */
.ord-detail-crumb { padding-top: 24px; display: flex; align-items: center; }
.ord-detail-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; padding-top: 14px; padding-bottom: 6px; flex-wrap: wrap; }
.ord-detail-h { font-size: clamp(30px,4.2vw,48px); margin: 10px 0 0; }
.ord-detail-sub { color: var(--muted); margin: 8px 0 0; font-size: 15px; }
.ord-detail-layout { display: grid; grid-template-columns: 1fr 340px; gap: 36px; padding-top: 28px; padding-bottom: 60px; align-items: start; }

.ord-track-card { border: 1px solid var(--line); border-radius: var(--r); background: var(--surface); padding: 28px 24px 24px; margin-bottom: 30px; }
.ord-track-meta { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line); }
.ord-track-meta > div { display: flex; flex-direction: column; gap: 5px; }
.ord-track-lbl { font-size: 10px; text-transform: uppercase; letter-spacing: 0.07em; color: var(--muted); }
.ord-track-meta b { font-size: 14px; }
.ord-track-btn { margin-top: 22px; }

.ord-sec-h { font-size: 22px; text-transform: uppercase; margin: 0 0 16px; }
.ord-items { display: flex; flex-direction: column; }
.ord-item { display: grid; grid-template-columns: 76px 1fr auto; gap: 16px; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--line); }
.ord-item:last-child { border-bottom: none; }
.ord-item-media { position: relative; aspect-ratio: 1; border: 1px solid var(--line); border-radius: 3px; overflow: hidden; background: #fff; cursor: pointer; }
.ord-item-info { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.ord-item-name { font-size: 15.5px; font-weight: 600; text-align: left; line-height: 1.3; color: var(--text); }
.ord-item-name:hover { color: var(--red); }
.ord-item-right { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
.ord-item-price { font-family: var(--display); font-weight: 800; font-size: 19px; }
.ord-item-buy { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--red); border: 1px solid var(--line-2); border-radius: 2px; padding: 5px 10px; }
.ord-item-buy:hover { border-color: var(--red); background: var(--red); color: #fff; }

.ord-detail-side { display: flex; flex-direction: column; gap: 14px; position: sticky; top: 130px; }
.ord-side-card { border: 1px solid var(--line); border-radius: var(--r); background: var(--bg-2); padding: 20px; }
.ord-side-card h4 { font-size: 17px; text-transform: uppercase; margin: 0 0 14px; }
.ord-side-help { border: 1px solid var(--line); border-radius: var(--r); background: var(--surface); padding: 18px 20px; display: flex; flex-direction: column; gap: 12px; }
.ord-side-help > span { font-size: 12px; color: var(--muted); letter-spacing: 0.03em; }
.ord-side-helpbtn { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 600; color: var(--text); text-align: left; }
.ord-side-helpbtn:hover { color: var(--red); }
.ord-side-helpbtn svg { color: var(--red); }

/* ============================================================
   CONTENT PAGE TEMPLATE  (about / shipping / etc.)
   ============================================================ */
.ct-hero { position: relative; border-bottom: 1px solid var(--line); background:
  radial-gradient(120% 130% at 88% -30%, rgba(230,35,12,0.09), transparent 55%), var(--bg-2); }
.ct-hero-in { padding: 52px 28px 46px; }
.ct-hero-h { font-size: clamp(36px,5vw,64px); margin: 14px 0 0; }
.ct-hero-lead { font-size: 18px; color: var(--muted); max-width: 600px; margin: 20px 0 0; line-height: 1.55; text-wrap: pretty; }
.ct-updated { font-size: 11px; color: var(--muted-2); margin: 18px 0 0; letter-spacing: 0.04em; }

.ct-layout { display: grid; grid-template-columns: 1fr 300px; gap: 56px; padding-top: 44px; padding-bottom: 64px; align-items: start; }
.ct-body { max-width: 720px; min-width: 0; }

/* prose */
.prose { color: var(--text); }
.prose p { font-size: 16.5px; line-height: 1.75; color: var(--muted); margin: 0 0 20px; text-wrap: pretty; }
.prose-h { font-size: 26px; text-transform: uppercase; margin: 38px 0 14px; }
.prose-h:first-child { margin-top: 0; }
.prose-list { list-style: none; padding: 0; margin: 0 0 22px; display: flex; flex-direction: column; gap: 12px; }
.prose-list li { display: flex; align-items: flex-start; gap: 11px; font-size: 16px; color: var(--text); line-height: 1.5; }
.prose-list li svg { flex-shrink: 0; margin-top: 3px; }
.prose-note { display: flex; gap: 11px; background: var(--surface-2); border: 1px solid var(--line); border-left: 3px solid var(--red); border-radius: var(--r); padding: 16px 18px; margin: 0 0 24px; font-size: 14.5px; color: var(--text); line-height: 1.55; }

/* ordered steps list inside prose */
.prose-steps { counter-reset: step; list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 11px; }
.prose-steps li { counter-increment: step; display: flex; align-items: flex-start; gap: 13px; font-size: 16px; color: var(--text); line-height: 1.5; }
.prose-steps li::before { content: counter(step); flex-shrink: 0; width: 26px; height: 26px; display: grid; place-items: center; background: var(--ink); color: #fff; font-family: var(--display); font-weight: 800; font-size: 13px; border-radius: 50%; margin-top: -1px; }

/* FAQ accordion (used in content pages — native <details>/<summary>) */
.faq-list { display: flex; flex-direction: column; gap: 10px; margin: 4px 0 24px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--r); background: var(--surface); overflow: hidden; transition: border-color .16s ease, box-shadow .16s ease; }
.faq-item[open] { border-color: var(--line-2); box-shadow: 0 14px 30px -24px rgba(0,0,0,0.22); }
.faq-q { width: 100%; display: flex; align-items: center; gap: 16px; text-align: left; padding: 18px 20px; cursor: pointer; list-style: none; }
.faq-q::-webkit-details-marker { display: none; }
.faq-q-txt { flex: 1; font-family: var(--display); font-weight: 700; font-size: 15.5px; line-height: 1.3; color: var(--text); text-transform: uppercase; letter-spacing: 0.01em; }
.faq-q-ico { flex-shrink: 0; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: var(--surface-2); color: var(--muted); transition: transform .2s ease, background .16s ease, color .16s ease; }
.faq-item[open] .faq-q-ico { background: var(--red); color: #fff; transform: rotate(180deg); }
.faq-q:hover .faq-q-txt { color: var(--red); }
.faq-a-in { padding: 0 20px 20px 20px; font-size: 15.5px; line-height: 1.7; color: var(--muted); text-wrap: pretty; }

.ct-cta { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-top: 40px; padding: 26px 28px; border: 1px solid var(--line-2); border-radius: var(--r); background: var(--surface); }
.ct-cta-h { display: block; font-size: 22px; text-transform: uppercase; }
.ct-cta p { margin: 6px 0 0; color: var(--muted); font-size: 14.5px; max-width: 420px; }

/* content rail */
.ct-rail { position: sticky; top: 130px; display: flex; flex-direction: column; gap: 8px; }
.ct-rail-nav { display: flex; flex-direction: column; gap: 2px; margin: 12px 0 8px; }
.ct-rail-link { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 11px 14px; border-radius: var(--r); font-size: 14.5px; font-weight: 600; color: var(--muted); text-align: left; transition: all .14s ease; }
.ct-rail-link svg { color: var(--muted-2); }
.ct-rail-link:hover { background: var(--surface-2); color: var(--text); }
.ct-rail-link.is-active { background: var(--ink); color: #fff; }
.ct-rail-link.is-active svg { color: var(--red-hot); }
.ct-rail-card { border: 1px solid var(--line); border-radius: var(--r); background: var(--bg-2); padding: 20px; display: flex; flex-direction: column; gap: 6px; margin-top: 10px; }
.ct-rail-card b { font-size: 15px; margin-top: 4px; }
.ct-rail-card .mono { font-size: 11.5px; color: var(--muted); letter-spacing: 0.03em; }
.ct-rail-phone { font-family: var(--display); font-weight: 800; font-size: 22px; color: var(--red); margin-top: 2px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-form-h { font-size: 24px; text-transform: uppercase; margin: 0 0 20px; }
.contact-textarea { width: 100%; background: var(--surface); border: 1.5px solid var(--line-2); border-radius: var(--r); padding: 12px 14px; font-size: 15px; font-family: var(--body); color: var(--text); outline: none; resize: vertical; transition: border-color .15s ease; }
.contact-textarea:focus { border-color: var(--text); }
.contact-sent { text-align: center; padding: 30px 0 20px; max-width: 520px; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.contact-sent h2 { font-size: clamp(30px,4vw,44px); margin: 6px 0; }
.contact-sent p { color: var(--muted); font-size: 16px; line-height: 1.6; margin: 0; }
.contact-sent p b { color: var(--text); }

.contact-channels { display: flex; flex-direction: column; gap: 12px; margin: 12px 0 10px; }
.contact-channel { display: flex; gap: 13px; border: 1px solid var(--line); border-radius: var(--r); background: var(--surface); padding: 15px 16px; }
.contact-channel-ico { width: 40px; height: 40px; flex-shrink: 0; display: grid; place-items: center; background: var(--surface-2); border-radius: var(--r); color: var(--red); }
.contact-channel > div { display: flex; flex-direction: column; gap: 2px; }
.contact-channel b { font-size: 15px; }
.contact-channel-a { font-size: 13.5px; color: var(--text); }
.contact-channel-b { font-size: 11px; color: var(--muted); letter-spacing: 0.03em; }
.contact-addr { font-size: 13.5px; color: var(--muted); line-height: 1.5; margin-top: 2px; }

/* ============================================================
   404
   ============================================================ */
.nf { position: relative; display: flex; align-items: center; justify-content: center; min-height: 70vh; text-align: center; overflow: hidden; background:
  radial-gradient(110% 90% at 50% 0%, rgba(230,35,12,0.07), transparent 60%), var(--bg); }
.nf-in { padding: 70px 28px 90px; display: flex; flex-direction: column; align-items: center; max-width: 680px; }
.nf-code { font-size: clamp(90px,18vw,200px); line-height: 0.8; color: var(--surface-3); letter-spacing: -0.04em; margin-bottom: 8px; -webkit-text-stroke: 2px var(--line-2); }
.nf-h { font-size: clamp(30px,5vw,56px); margin: 14px 0 0; }
.nf-sub { color: var(--muted); font-size: 17px; max-width: 460px; margin: 18px 0 30px; line-height: 1.55; }
.nf-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.nf-links { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 34px; }
.nf-links .mono { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted-2); }
.nf-link { font-family: var(--mono); font-size: 12px; color: var(--text); border: 1px solid var(--line-2); border-radius: 999px; padding: 6px 13px; transition: all .14s ease; }
.nf-link:hover { border-color: var(--red); color: var(--red); }
.nf-stripe { position: absolute; bottom: 0; left: 0; right: 0; }

/* ============================================================
   BLANK TEMPLATE hint
   ============================================================ */
.blank-hint { display: flex; align-items: center; gap: 9px; font-size: 12px; color: var(--muted); border: 1px dashed var(--line-2); border-radius: var(--r); padding: 13px 16px; margin-top: 34px; background: var(--surface-2); }
.blank-hint b { color: var(--text); }

/* ============================================================
   BLOG
   ============================================================ */
.blog-hero .ct-hero-in { padding-bottom: 40px; }
.blog-wrap { padding-top: 40px; padding-bottom: 64px; }

.blog-feat { display: grid; grid-template-columns: 1.1fr 1fr; gap: 0; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; background: var(--surface); text-align: left; width: 100%; transition: border-color .18s ease, box-shadow .18s ease; margin-bottom: 40px; }
.blog-feat:hover { border-color: var(--line-2); box-shadow: 0 20px 44px -28px rgba(0,0,0,0.28); }
.blog-feat-media { position: relative; min-height: 320px; }
.blog-feat-flag { position: absolute; top: 14px; left: 14px; background: var(--red); color: #fff; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 11px; border-radius: 2px; }
.blog-feat-body { padding: 38px 40px; display: flex; flex-direction: column; }
.blog-feat-h { font-size: clamp(26px,3vw,40px); margin: 12px 0 14px; line-height: 1.02; }
.blog-feat-ex { font-size: 16px; color: var(--muted); line-height: 1.6; margin: 0 0 20px; max-width: 460px; }
.blog-feat-go { display: inline-flex; align-items: center; gap: 9px; font-family: var(--display); font-weight: 700; text-transform: uppercase; font-size: 15px; color: var(--red); margin-top: auto; }

.blog-cat { font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--red); font-weight: 700; }
.blog-meta { font-size: 11.5px; color: var(--muted); letter-spacing: 0.03em; }

.blog-filter { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.blog-chip { font-family: var(--mono); font-size: 12px; letter-spacing: 0.03em; color: var(--muted); border: 1px solid var(--line-2); border-radius: 999px; padding: 8px 15px; transition: all .14s ease; }
.blog-chip:hover { border-color: var(--red); color: var(--red); }
.blog-chip.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }

.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.blog-card { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; background: var(--surface); text-align: left; transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease; }
.blog-card:hover { border-color: var(--line-2); transform: translateY(-3px); box-shadow: 0 16px 32px -22px rgba(0,0,0,0.24); }
.blog-card-media { position: relative; aspect-ratio: 16/10; }
.blog-card-body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.blog-card-h { font-size: 18px; font-weight: 700; line-height: 1.25; margin: 2px 0; text-wrap: pretty; }
.blog-card-ex { font-size: 13.5px; color: var(--muted); line-height: 1.5; margin: 0; flex: 1; }
.blog-card .blog-meta { margin-top: 4px; }

/* ============================================================
   ARTICLE
   ============================================================ */
.art-crumb { padding-top: 24px; display: flex; align-items: center; }
.art-head { padding-top: 18px; max-width: 760px; }
.art-h { font-size: clamp(32px,4.6vw,56px); margin: 12px 0 0; }
.art-lead { font-size: 19px; color: var(--muted); line-height: 1.55; margin: 18px 0 0; text-wrap: pretty; }
.art-byline { display: flex; align-items: center; gap: 10px; margin-top: 22px; font-size: 13px; color: var(--muted); }
.art-author { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--text); }
.art-dot { color: var(--muted-2); }
.art-cover { position: relative; aspect-ratio: 21/9; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; margin-top: 32px; }
.art-cover .ph { position: absolute; inset: 0; }
.art-body { max-width: 720px; margin-top: 40px; padding-bottom: 20px; }
.art-prose p { font-size: 17.5px; }
.art-share { display: flex; align-items: center; gap: 9px; margin: 34px 0; padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.art-share .mono { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-right: 6px; }
.art-share-btn { width: 38px; height: 38px; border: 1.5px solid var(--line-2); border-radius: 50%; font-family: var(--mono); font-size: 11px; font-weight: 700; color: var(--muted); transition: all .14s ease; }
.art-share-btn:hover { border-color: var(--red); color: var(--red); }
.art-shopcta { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding: 32px 36px; border-radius: var(--r); background: linear-gradient(120deg, var(--red-deep), var(--red) 75%); margin-top: 20px; }
.art-shopcta-h { display: block; color: #fff; font-size: clamp(22px,2.6vw,32px); margin-top: 8px; }
.blog-more-sec { background: var(--bg-2); border-top: 1px solid var(--line); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .blog-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 980px) {
  .auth { grid-template-columns: 1fr; }
  .auth-aside { display: none; }
  .acct-layout { grid-template-columns: 1fr; gap: 24px; }
  .acct-nav { position: static; flex-direction: row; flex-wrap: wrap; gap: 6px; border-bottom: 1px solid var(--line); padding-bottom: 16px; }
  .acct-navlink { padding: 9px 13px; font-size: 14px; }
  .acct-signout { margin-top: 0; border-top: none; padding-top: 9px; margin-left: auto; }
  .ct-layout { grid-template-columns: 1fr; gap: 36px; }
  .ct-rail { position: static; }
  .ord-detail-layout { grid-template-columns: 1fr; gap: 28px; }
  .ord-detail-side { position: static; }
}
@media (max-width: 760px) {
  .acct-band-stats { gap: 22px; }
  .acct-band-stats b { font-size: 24px; }
  .acct-tiles { grid-template-columns: 1fr; }
  .addr-grid { grid-template-columns: 1fr; }
  .blog-feat { grid-template-columns: 1fr; }
  .blog-feat-media { min-height: 200px; aspect-ratio: 16/10; }
  .blog-feat-body { padding: 26px 24px; }
  .blog-grid { grid-template-columns: 1fr; }
  .ord-track-meta { grid-template-columns: 1fr; gap: 12px; }
  .otrack-lbl { font-size: 9.5px; }
}
@media (max-width: 480px) {
  .ct-hero-in, .acct-band-in { padding-left: 20px; padding-right: 20px; }
  .ord-item { grid-template-columns: 60px 1fr; }
  .ord-item-right { grid-column: 1 / -1; flex-direction: row; align-items: center; justify-content: space-between; margin-top: 4px; }
  .auth-main { padding: 32px 18px; }
  .auth-card { padding: 26px 22px; }
}




/* ===== Shopify theme bridge (RTE output, a11y, payment icons) ===== */
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.toast-host { position: fixed; left: 0; right: 0; bottom: 0; z-index: 95; pointer-events: none; }
.toast-host .toast { pointer-events: auto; transition: opacity .3s ease, transform .3s ease; }
.paychip-svg { height: 22px; width: auto; border-radius: 3px; }
.pagination .btn { min-width: 42px; }

/* Rich-text (Shopify) inside prose / product description / article body */
.rte > :first-child { margin-top: 0; }
.rte p { font-size: 16.5px; line-height: 1.75; color: var(--muted); margin: 0 0 20px; text-wrap: pretty; }
.rte h2, .rte h3 { font-family: var(--display); font-weight: 800; text-transform: uppercase; letter-spacing: -0.01em; color: var(--text); margin: 38px 0 14px; line-height: 1; }
.rte h2 { font-size: 26px; }
.rte h3 { font-size: 21px; }
.rte ul, .rte ol { padding-left: 0; margin: 0 0 22px; list-style: none; display: flex; flex-direction: column; gap: 12px; }
.rte ul li, .rte ol li { position: relative; padding-left: 26px; font-size: 16px; color: var(--text); line-height: 1.5; }
.rte ul li::before { content: ""; position: absolute; left: 4px; top: 9px; width: 8px; height: 8px; background: var(--red); border-radius: 2px; transform: skewX(-9deg); }
.rte ol { counter-reset: rte; }
.rte ol li { counter-increment: rte; }
.rte ol li::before { content: counter(rte); position: absolute; left: 0; top: 1px; font-family: var(--mono); font-size: 12px; font-weight: 700; color: var(--red); }
.rte a { color: var(--red); text-decoration: underline; }
.rte img { border-radius: var(--r); margin: 8px 0 22px; }
.rte blockquote { border-left: 3px solid var(--red); padding: 4px 0 4px 18px; margin: 0 0 22px; color: var(--text); font-size: 18px; }
.pp-desc.rte p, .art-prose.rte p { font-size: 17px; }

/* Product page main image fade on thumb switch */
.pp-main-img { transition: opacity .15s ease; }
