/* Stratoudakis Parts — OpenCart theme v2
   Brand-aligned: electric cyan + pure black + carbon fiber + bold condensed Greek caps. */

@import url('https://fonts.googleapis.com/css2?family=Geologica:wght@400;500;600;700;800;900&family=Roboto+Mono:wght@400;500;700&display=swap&subset=greek,latin');

:root{
  /* —— Brand —— */
  --cyan:        #00B0E8;     /* signature electric cyan from logo */
  --cyan-deep:   #0090BD;     /* hover */
  --cyan-bright: #1ECCFF;     /* glow */
  --cyan-soft:   #E1F6FD;     /* tint background */
  --cyan-line:   rgba(0,176,232,0.18);

  --black:       #000000;     /* header bar */
  --carbon:      #0A0A0C;     /* hero base */
  --carbon-2:    #14141A;     /* card on dark */
  --carbon-3:    #1F1F26;     /* hover on dark */

  --ink:         #0E0E12;
  --text:        #1F2024;
  --text-mid:    #62656D;
  --text-mute:   #9295A0;
  --text-on-dk:  rgba(255,255,255,0.78);
  --text-on-dk2: rgba(255,255,255,0.55);

  --bg:          #FFFFFF;
  --bg-2:        #F7F8FA;
  --bg-3:        #EDEEF1;
  --border:      #E5E7EB;
  --border-2:    #D4D7DD;
  --line:        #ECEDF0;

  --in-stock:    #16A35A;
  --low-stock:   #D08300;
  --out-stock:   #B0B3BA;

  /* —— Type —— */
  --f-sans:    "Geologica", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --f-display: "Geologica", system-ui, sans-serif;   /* heavy weight used for display — full Greek+Latin support */
  --f-mono:    "Roboto Mono", ui-monospace, SFMono-Regular, monospace;

  /* Radii — sharper, more automotive */
  --r-sm: 2px;
  --r-md: 4px;
  --r-lg: 8px;
  --r-xl: 12px;

  /* Density */
  --gap:    16px;
  --pad:    20px;
  --card-p: 18px;
  --row-h:  44px;
}

*,*::before,*::after{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: var(--f-sans);
  color: var(--text);
  background: var(--bg);
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

.mono { font-family: var(--f-mono); }
.display { font-family: var(--f-display); font-weight: 800; letter-spacing: -0.005em; text-transform: uppercase; }
.eyebrow {
  font-family: var(--f-display);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-mid);
}
.eyebrow--cyan { color: var(--cyan-deep); }
.eyebrow--red { color: var(--cyan-deep); } /* legacy alias — maps to brand cyan */
.eyebrow--white { color: rgba(255,255,255,0.6); }

/* —— Typography scale (display = condensed caps) —— */
.h-display { font-family: var(--f-display); font-size: 88px; line-height: 0.92; letter-spacing: -0.01em; font-weight: 900; color: var(--ink); text-transform: uppercase; }
.h1 { font-family: var(--f-display); font-size: 56px; line-height: 0.96; letter-spacing: -0.005em; font-weight: 800; color: var(--ink); text-transform: uppercase; }
.h2 { font-family: var(--f-display); font-size: 38px; line-height: 1; letter-spacing: 0; font-weight: 700; color: var(--ink); text-transform: uppercase; }
.h3 { font-size: 20px; line-height: 1.2; letter-spacing: -0.005em; font-weight: 600; color: var(--ink); }
.h4 { font-size: 15px; line-height: 1.3; font-weight: 600; color: var(--ink); }
.body { font-size: 14px; line-height: 1.55; color: var(--text); }
.body-sm { font-size: 12.5px; line-height: 1.5; color: var(--text-mid); }
.label { font-size: 11px; line-height: 1.3; color: var(--text-mid); font-weight: 500; }

/* Carbon fiber pattern */
.carbon {
  background-color: #0A0A0C;
  background-image:
    repeating-linear-gradient(45deg,
      rgba(255,255,255,0.025) 0 1px,
      transparent 1px 4px),
    repeating-linear-gradient(-45deg,
      rgba(255,255,255,0.04) 0 1px,
      transparent 1px 4px),
    radial-gradient(ellipse at center, #1c1c22 0%, #0a0a0c 70%);
}
.carbon-fine {
  background-color: #0A0A0C;
  background-image:
    repeating-linear-gradient(45deg,
      rgba(255,255,255,0.018) 0 1px,
      transparent 1px 3px),
    repeating-linear-gradient(-45deg,
      rgba(255,255,255,0.03) 0 1px,
      transparent 1px 3px);
}

/* —— App frame —— */
.app {
  width: 100%;
  background: var(--bg);
  color: var(--text);
  min-height: 100%;
}
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}

/* —— Buttons —— */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 140ms ease, transform 80ms ease, border-color 140ms ease, color 140ms ease, box-shadow 140ms ease;
  background: transparent;
  white-space: nowrap;
}
.btn:active { transform: scale(0.985); }

.btn--primary {
  background: var(--cyan);
  color: #fff;
  border-color: var(--cyan);
}
.btn--primary:hover { background: var(--cyan-deep); border-color: var(--cyan-deep); }

.btn--dark {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.btn--dark:hover { background: #000; }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border-2);
}
.btn--ghost:hover { border-color: var(--ink); }

.btn--ghost-dk {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.25);
}
.btn--ghost-dk:hover { border-color: var(--cyan); color: var(--cyan); }

.btn--text { padding: 0; height: auto; background: transparent; color: var(--ink); text-transform: none; letter-spacing: 0; font-weight: 500; }
.btn--text:hover { color: var(--cyan-deep); }

.btn--sm { height: 36px; padding: 0 14px; font-size: 11.5px; }
.btn--lg { height: 54px; padding: 0 30px; font-size: 14px; }
.btn--block { width: 100%; }

.btn--cyan-glow {
  background: var(--cyan);
  color: #fff;
  border-color: var(--cyan);
  box-shadow: 0 0 0 0 rgba(0,176,232,0.4);
}
.btn--cyan-glow:hover { box-shadow: 0 0 0 6px rgba(0,176,232,0.15); }

/* —— Inputs —— */
.input, .select {
  height: 44px;
  width: 100%;
  border: 1px solid var(--border-2);
  border-radius: var(--r-md);
  background: var(--bg);
  padding: 0 14px;
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
  transition: border-color 140ms ease, box-shadow 140ms ease;
  outline: none;
}
.input:focus, .select:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(0,176,232,0.12); }
.select { appearance: none; background-image: linear-gradient(45deg,transparent 50%, var(--text-mid) 50%), linear-gradient(135deg, var(--text-mid) 50%, transparent 50%); background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%; background-size: 5px 5px,5px 5px; background-repeat: no-repeat; padding-right: 36px; }

/* —— Cards —— */
.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}
.card--flat { border: none; background: var(--bg-2); }

/* —— Chips —— */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  height: 24px; padding: 0 10px;
  border-radius: 2px;
  font-size: 11px; font-weight: 600;
  background: var(--bg-2);
  color: var(--text);
  border: 1px solid transparent;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: var(--f-display);
}
.chip--outline { background: transparent; border-color: var(--border-2); }
.chip--cyan { background: var(--cyan); color: #fff; }
.chip--cyan-tint { background: var(--cyan-soft); color: var(--cyan-deep); }
.chip--red { background: var(--cyan); color: #fff; } /* legacy alias */
.chip--dark { background: var(--ink); color: #fff; }
.chip--green { background: #E6F4ED; color: var(--in-stock); }
.chip--amber { background: #FBF1DF; color: var(--low-stock); }

/* —— Divider —— */
.hr { height: 1px; background: var(--line); margin: 32px 0; border: none; }
.hr-dk { height: 1px; background: rgba(255,255,255,0.1); margin: 32px 0; border: none; }

/* —— Grid —— */
.grid { display: grid; gap: var(--gap); }
.flex { display: flex; }
.between { justify-content: space-between; }
.center { align-items: center; }

/* ─────────────────────────── HEADER ─────────────────────────── */

.topbar {
  background: var(--black);
  color: rgba(255,255,255,0.65);
  font-size: 12px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.topbar::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 4px);
  z-index: -1;
  pointer-events: none;
}
.topbar a { color: inherit; }
.topbar a:hover { color: var(--cyan-bright); }
.topbar .container {
  display: flex; align-items: stretch; height: 40px; gap: 0;
  padding-left: 32px; padding-right: 32px;
}
.topbar .tb-loc, .topbar .tb-hours, .topbar .tb-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0 20px; height: 100%;
  position: relative;
}
/* Diagonal separators between topbar items */
.topbar .tb-loc::after,
.topbar .tb-hours::after {
  content: "";
  position: absolute;
  right: 0; top: 10px; bottom: 10px;
  width: 1px;
  background: rgba(255,255,255,0.18);
  transform: skewX(-22deg);
}
.topbar .tb-loc { padding-left: 0; }
.topbar .tb-hours { color: rgba(255,255,255,0.55); }
.topbar .tb-tag {
  font-family: var(--f-display); font-weight: 700; font-size: 11px;
  letter-spacing: 0.16em; color: var(--cyan-bright);
  text-transform: uppercase;
}
.topbar .spacer { flex: 1; }
.topbar .links { display: flex; gap: 0; align-items: stretch; height: 100%; }
.topbar .phone {
  color: #fff; font-family: var(--f-display); font-weight: 800;
  letter-spacing: 0.04em; font-size: 13px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0 20px; height: 100%;
  position: relative;
  text-transform: uppercase;
}
.topbar .phone::before {
  content: "";
  position: absolute;
  left: 0; top: 10px; bottom: 10px;
  width: 1px;
  background: rgba(255,255,255,0.18);
  transform: skewX(-22deg);
}
.topbar .phone .acc { color: var(--cyan-bright); }
.topbar .b2b {
  background: var(--cyan);
  color: #fff;
  padding: 0 24px 0 32px;
  font-family: var(--f-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  align-self: stretch;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  clip-path: polygon(16px 0, 100% 0, 100% 100%, 0 100%);
  transition: background 140ms ease;
}
.topbar .b2b:hover { background: var(--cyan-deep); color: #fff; }
/* Legacy pipe (now hidden — we use diagonal separators instead) */
.topbar .pipe { display: none; }

/* DARK header — carbon gray bar so the PNG logo wordmark inverts to white and pops */
.hdr {
  background: var(--carbon);
  color: #fff;
  position: relative;
  z-index: 50;
  /* Brand stripe at the very bottom — cyan accent line */
  box-shadow: inset 0 -3px 0 var(--black), inset 0 -6px 0 var(--cyan);
  padding-bottom: 6px;
  isolation: isolate;
  overflow: hidden;
}
.hdr::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 7px),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 7px);
  pointer-events: none;
  z-index: -1;
}
.hdr-inner { display: flex; align-items: center; gap: 24px; height: 92px; position: relative; }

.brand {
  display: flex; align-items: center;
  cursor: pointer;
  position: relative;
}
/* PNG logo — black wordmark + cyan icon, displayed on light header */
.brand img {
  height: 64px; width: auto; display: block;
}
.brand::after { content: none; }

.search-wrap {
  flex: 1;
  max-width: 640px;
  position: relative;
}
.search-input {
  height: 48px;
  width: 100%;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 0;
  padding: 0 60px 0 18px;
  font-size: 14px;
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-family: inherit;
  outline: none;
  transition: border-color 160ms ease, background 160ms ease;
}
.search-input::placeholder { color: rgba(255,255,255,0.45); }
.search-input:focus { border-color: var(--cyan); background: rgba(255,255,255,0.09); }
.search-go {
  position: absolute;
  right: 0; top: 0;
  width: 56px; height: 48px;
  background: var(--cyan);
  color: #fff;
  border: none; border-radius: 0;
  display: grid; place-items: center;
  transition: background 140ms ease;
  clip-path: polygon(12px 0, 100% 0, 100% 100%, 0 100%);
  padding-left: 8px;
}
.search-go:hover { background: var(--cyan-deep); }

.hdr-actions { display: flex; align-items: center; gap: 0; }
.hdr-icon {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  border-radius: 0;
  color: #fff;
  background: transparent;
  border: none;
  font: inherit;
  font-weight: 500;
  position: relative;
  cursor: pointer;
}
.hdr-icon:hover { color: var(--cyan-bright); }
.hdr-icon .num { font-size: 10px; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.05em; font-family: var(--f-display); font-weight: 700; }
.hdr-icon .lbl { font-size: 13px; font-weight: 700; font-family: var(--f-display); text-transform: uppercase; letter-spacing: 0.04em; color: #fff; }
.hdr-icon .badge {
  position: absolute;
  width: 18px; height: 18px;
  background: var(--cyan); color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 10px; font-weight: 700;
  font-family: var(--f-mono);
  top: 4px; right: 4px;
}
.hdr-cart-wrap {
  background: var(--cyan);
  color: #fff;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-left: 12px;
  align-self: stretch;
  display: flex;
  align-items: center;
}
.hdr-cart-wrap::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(-45deg, rgba(255,255,255,0.08) 0 1px, transparent 1px 5px);
  pointer-events: none;
  z-index: -1;
}
.hdr-cart-wrap .hdr-icon { color: #fff; padding: 18px 24px 18px 28px; }
.hdr-cart-wrap .hdr-icon:hover { color: #fff; }
.hdr-cart-wrap .hdr-icon .num { color: rgba(255,255,255,0.85); }
.hdr-cart-wrap .hdr-icon .badge { background: var(--ink); top: 12px; right: 16px; }

/* —— Main nav (light band with diagonal separators between items) —— */
.mainnav {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.mainnav::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(-45deg, rgba(0,0,0,0.015) 0 1px, transparent 1px 8px);
  pointer-events: none;
  z-index: -1;
}
.mainnav-inner { display: flex; align-items: stretch; height: 54px; gap: 0; }
.nav-item {
  display: flex; align-items: center; gap: 6px;
  padding: 0 20px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: var(--f-display);
  position: relative;
  background: transparent;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
/* Diagonal separator between standard nav items */
.nav-item:not(.nav-item--cta):not(:last-child)::before {
  content: "";
  position: absolute;
  right: 0; top: 14px; bottom: 14px;
  width: 1px;
  background: var(--border-2);
  transform: skewX(-22deg);
}
.nav-item:hover { color: var(--cyan-deep); }
.nav-item.is-active { color: var(--cyan-deep); }
.nav-item.is-active::after {
  content: "";
  position: absolute; left: 20px; right: 20px; bottom: -1px;
  height: 3px; background: var(--cyan);
}
.nav-item--cta {
  background: var(--carbon);
  color: #fff !important;
  padding-right: 30px;
  padding-left: 24px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-right: 8px;
}
.nav-item--cta::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(-45deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 4px);
  pointer-events: none;
  z-index: -1;
}
.nav-item--cta::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0; right: 0;
  width: 5px;
  background: var(--cyan);
  transition: width 160ms ease;
}
.nav-item--cta:hover { color: #fff !important; }
.nav-item--cta:hover::after { width: 9px; }
/* Hide the old vertical pipes (we now use diagonal pseudo-elements) */
.nav-pipe { display: none; }

/* —— Vehicle bar (light, with clean cyan accent at bottom) —— */
.vbar {
  background: var(--bg-2);
  color: var(--ink);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 2px solid var(--cyan);
}
.vbar::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(-45deg, rgba(0,176,232,0.04) 0 1px, transparent 1px 10px);
  pointer-events: none;
  z-index: -1;
}
.vbar-inner { display: flex; align-items: center; gap: 14px; padding: 14px 0; position: relative; }
.vbar-label {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--f-display);
  font-size: 13px; font-weight: 700; color: var(--ink);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.vbar-label .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(0,176,232,0.18);
}
.vbar-selects { display: flex; gap: 6px; flex: 1; }
.vbar .select {
  height: 42px; background: var(--bg);
  color: var(--ink);
  border-color: var(--border-2);
}

/* —— Sections —— */
section { padding: 80px 0; }
section.sm { padding: 56px 0; }
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 32px; gap: 24px;
}
.section-head h2 { margin: 6px 0 0; }
.section-head .lnk { font-size: 12px; color: var(--ink); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; font-family: var(--f-display); }
.section-head .lnk:hover { color: var(--cyan-deep); }

/* ─────────────────────────── HERO (carbon + cyan) ─────────────────────────── */
.hero {
  position: relative;
  background: var(--carbon);
  color: #fff;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg,
      rgba(255,255,255,0.025) 0 1px,
      transparent 1px 5px),
    repeating-linear-gradient(-45deg,
      rgba(255,255,255,0.04) 0 1px,
      transparent 1px 5px);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute; right: -200px; top: 50%; transform: translateY(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle at center, rgba(0,176,232,0.25) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center;
  padding: 96px 0 88px;
}
.hero h1 {
  font-family: var(--f-display);
  font-size: 92px; line-height: 0.9; letter-spacing: -0.01em; font-weight: 900;
  color: #fff; text-transform: uppercase;
  margin: 18px 0 24px;
}
.hero h1 .accent { color: var(--cyan); }
.hero p.lead { font-size: 16px; line-height: 1.6; color: rgba(255,255,255,0.7); max-width: 520px; font-family: var(--f-sans); }
.hero-ctas { display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 48px; margin-top: 64px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1); }
.hero-stat .n { font-family: var(--f-display); font-size: 40px; font-weight: 900; color: #fff; letter-spacing: -0.01em; line-height: 1; }
.hero-stat .n .acc { color: var(--cyan); }
.hero-stat .l { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 8px; text-transform: uppercase; letter-spacing: 0.08em; font-family: var(--f-display); font-weight: 600; }

.hero-visual {
  aspect-ratio: 5/5;
  position: relative;
  border-radius: 0;
  overflow: hidden;
}
.hero-badge {
  position: absolute;
  top: 32px; left: 0;
  background: var(--cyan);
  color: #fff;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 12px;
  padding: 8px 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
  clip-path: polygon(0 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
  padding-right: 24px;
}

/* —— Marquee strip with cyan accent diagonal stripes —— */
.marquee {
  background: var(--cyan);
  color: #fff;
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}
.marquee-inner {
  display: flex; gap: 48px;
  white-space: nowrap;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  animation: marquee 40s linear infinite;
}
.marquee-inner span { display: inline-flex; align-items: center; gap: 12px; }
.marquee-inner .sep { color: rgba(255,255,255,0.5); font-size: 18px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─────────────────────────── BRAND TILES (now with cyan + carbon) ─────────────────────────── */
.brand-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.brand-tile {
  aspect-ratio: 4/3.2;
  background: var(--bg-2);
  border-radius: var(--r-lg);
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: background 200ms ease, transform 200ms ease;
  display: flex; flex-direction: column; justify-content: space-between;
  cursor: pointer;
  border: 1px solid transparent;
}
.brand-tile::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg,
      rgba(0,0,0,0.025) 0 1px,
      transparent 1px 6px);
  pointer-events: none;
}
.brand-tile:hover { transform: translateY(-3px); border-color: var(--border-2); }
.brand-tile .b-name { font-family: var(--f-display); font-weight: 900; font-size: 36px; letter-spacing: -0.01em; color: var(--ink); text-transform: uppercase; line-height: 1; }
.brand-tile .b-meta { font-size: 11px; color: var(--text-mid); display: flex; align-items: center; gap: 8px; text-transform: uppercase; letter-spacing: 0.06em; font-family: var(--f-display); font-weight: 600; }
.brand-tile .b-arrow {
  position: absolute; right: 18px; bottom: 18px;
  width: 40px; height: 40px;
  border-radius: 0;
  background: var(--ink); color: #fff;
  display: grid; place-items: center;
  transition: background 160ms ease, transform 160ms ease;
}
.brand-tile:hover .b-arrow { background: var(--cyan); transform: translate(3px,-3px); }
.brand-tile.dark { background: var(--carbon); color: #fff; }
.brand-tile.dark::before {
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 5px);
}
.brand-tile.dark .b-name { color: #fff; }
.brand-tile.dark .b-meta { color: rgba(255,255,255,0.55); }
.brand-tile.dark .b-arrow { background: var(--cyan); color: #fff; }
.brand-tile.cyan { background: var(--cyan); color: #fff; }
.brand-tile.cyan::before {
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.06) 0 1px, transparent 1px 5px);
}
.brand-tile.cyan .b-name, .brand-tile.cyan .b-meta { color: #fff; }
.brand-tile.cyan .b-arrow { background: #fff; color: var(--cyan-deep); }
.brand-tile > * { position: relative; z-index: 1; }

/* —— Category tiles —— */
.cat-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 12px; }
.cat-tile {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 16px 22px;
  text-align: center;
  transition: border-color 140ms ease, transform 140ms ease, background 140ms ease, color 140ms ease;
  cursor: pointer;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.cat-tile::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(-45deg, rgba(0,0,0,0.013) 0 1px, transparent 1px 6px);
  pointer-events: none;
  z-index: -1;
  opacity: 0;
  transition: opacity 200ms ease;
}
.cat-tile::after {
  /* Hover: cyan diagonal stripe accent at bottom */
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 3px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 200ms ease;
}
.cat-tile:hover { border-color: var(--ink); transform: translateY(-3px); }
.cat-tile:hover::before { opacity: 1; }
.cat-tile:hover::after { transform: scaleX(1); }
.cat-tile:hover .ico { color: var(--cyan); transform: scale(1.05); }
.cat-tile .ico {
  width: 72px; height: 72px; margin: 0 auto 14px;
  display: grid; place-items: center;
  color: var(--ink);
  transition: color 200ms ease, transform 200ms ease;
}
.cat-tile .nm { font-size: 13px; font-weight: 700; color: var(--ink); text-transform: uppercase; letter-spacing: 0.04em; font-family: var(--f-display); }
.cat-tile .cnt { font-size: 11px; color: var(--text-mid); margin-top: 4px; font-family: var(--f-mono); }

/* ─────────────────────────── PRODUCT CARD ─────────────────────────── */
.products { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.products.cols-3 { grid-template-columns: repeat(3,1fr); }
.products.cols-5 { grid-template-columns: repeat(5,1fr); }

.pcard {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
  position: relative;
  cursor: pointer;
}
.pcard:hover {
  border-color: var(--cyan);
  box-shadow: 0 16px 40px -20px rgba(0,176,232,0.4);
  transform: translateY(-3px);
}
.pcard .ph {
  aspect-ratio: 1/1;
  background: var(--bg-2);
  position: relative;
  display: grid; place-items: center;
  border-bottom: 1px solid var(--line);
}
.pcard .ph::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg,
      rgba(0,0,0,0.02) 0 1px,
      transparent 1px 8px);
  pointer-events: none;
}
.pcard .badges { position: absolute; top: 10px; left: 10px; display: flex; gap: 4px; z-index: 1; }
.pcard .fav {
  position: absolute; top: 10px; right: 10px;
  width: 32px; height: 32px;
  background: var(--bg); border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid var(--border);
  color: var(--text-mid);
  z-index: 1;
}
.pcard .fav:hover { color: var(--cyan); border-color: var(--cyan); }
.pcard .meta { padding: 14px 14px 0; }
.pcard .brand-line { display: flex; justify-content: space-between; align-items: center; font-family: var(--f-display); font-size: 11px; color: var(--text-mid); letter-spacing: 0.06em; text-transform: uppercase; font-weight: 700; }
.pcard .ttl { font-size: 14px; font-weight: 600; color: var(--ink); margin: 6px 0 4px; line-height: 1.35; text-wrap: pretty; min-height: 38px; }
.pcard .sku { font-family: var(--f-mono); font-size: 11px; color: var(--text-mute); }
.pcard .foot { padding: 12px 14px 14px; display: flex; align-items: center; justify-content: space-between; }
.pcard .price { font-family: var(--f-display); font-size: 22px; font-weight: 800; color: var(--ink); letter-spacing: -0.01em; line-height: 1; }
.pcard .price small { font-size: 11px; font-weight: 600; color: var(--text-mute); text-decoration: line-through; display: block; font-family: var(--f-mono); }
.pcard .add {
  width: 36px; height: 36px;
  background: var(--ink); color: #fff;
  border-radius: var(--r-sm); border: none;
  display: grid; place-items: center;
  transition: background 140ms ease;
}
.pcard .add:hover { background: var(--cyan); }
.pcard .stock {
  font-size: 11px; font-family: var(--f-display); color: var(--in-stock); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em;
  display: flex; align-items: center; gap: 6px; padding: 0 14px 12px;
}
.pcard .stock .d { width: 6px; height: 6px; border-radius: 50%; background: var(--in-stock); }
.pcard .stock.low { color: var(--low-stock); }
.pcard .stock.low .d { background: var(--low-stock); }
.pcard .stock.out { color: var(--text-mute); }
.pcard .stock.out .d { background: var(--text-mute); }

/* ─────────────────────────── FOOTER ─────────────────────────── */
.ftr {
  background: var(--carbon);
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  margin-top: 64px;
  position: relative;
  isolation: isolate;
  /* Cyan top accent strip */
  border-top: 4px solid var(--cyan);
}
.ftr::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(0,176,232,0.03) 0 1px, transparent 1px 6px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 6px);
  pointer-events: none;
  z-index: -1;
}
.ftr::after { content: none; }
.ftr-top { padding: 72px 0 56px; }
.ftr-grid { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 56px; }
.ftr h5 { color: var(--cyan-bright); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; margin: 0 0 18px; font-family: var(--f-display); }
.ftr ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.ftr a:hover { color: var(--cyan-bright); }
.ftr-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}
.ftr-bottom-links { display: flex; gap: 20px; }

.partners-strip {
  background: var(--bg-2);
  padding: 36px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.partners-grid { display: grid; grid-template-columns: repeat(8,1fr); gap: 24px; align-items: center; }
.partner {
  height: 48px;
  display: grid; place-items: center;
  font-family: var(--f-display);
  font-size: 14px;
  color: var(--text-mid);
  font-weight: 800;
  letter-spacing: 0.04em;
  filter: grayscale(1);
  opacity: 0.55;
  transition: opacity 160ms ease, filter 160ms ease, color 160ms ease;
  text-transform: uppercase;
}
.partner:hover { opacity: 1; filter: grayscale(0); color: var(--ink); }

/* ─────────────────────────── LISTING ─────────────────────────── */
.listing { display: grid; grid-template-columns: 280px 1fr; gap: 32px; padding: 32px 0 80px; }
.filters .grp { padding: 22px 0; border-bottom: 1px solid var(--line); }
.filters .grp:first-child { padding-top: 0; }
.filters h4 { font-family: var(--f-display); font-size: 12px; font-weight: 700; color: var(--ink); margin: 0 0 14px; display: flex; justify-content: space-between; align-items: center; text-transform: uppercase; letter-spacing: 0.06em; }
.filters h4 .ct { font-family: var(--f-mono); color: var(--text-mute); font-weight: 500; font-size: 11px; }
.filter-opt {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--text);
  padding: 6px 0;
  cursor: pointer;
}
.filter-opt .cb {
  width: 18px; height: 18px;
  border: 1.5px solid var(--border-2);
  border-radius: 2px;
  flex-shrink: 0;
  position: relative;
}
.filter-opt.checked .cb { background: var(--cyan); border-color: var(--cyan); }
.filter-opt.checked .cb::after { content: ""; position: absolute; inset: 3px; background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round'><path d='M3 8l3.5 3.5L13 5'/></svg>") center/contain no-repeat; }
.filter-opt .ct { margin-left: auto; font-family: var(--f-mono); font-size: 11px; color: var(--text-mute); }

.listing-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.listing-head .lh-left { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.listing-head .lh-right { display: flex; gap: 12px; align-items: center; }

.crumbs { display: flex; gap: 8px; align-items: center; font-size: 12px; color: var(--text-mid); padding: 16px 0; }
.crumbs a:hover { color: var(--cyan-deep); }
.crumbs .sep { color: var(--text-mute); }

.pager { display: flex; gap: 6px; justify-content: center; margin-top: 36px; }
.pager .pg {
  min-width: 40px; height: 40px; padding: 0 12px;
  border: 1px solid var(--border-2);
  border-radius: var(--r-sm);
  display: inline-grid; place-items: center;
  font-size: 13px; font-family: var(--f-mono); color: var(--text);
  cursor: pointer;
}
.pager .pg.is-active { background: var(--cyan); color: #fff; border-color: var(--cyan); font-weight: 700; }
.pager .pg:hover:not(.is-active) { border-color: var(--cyan); color: var(--cyan-deep); }

/* ─────────────────────────── PRODUCT DETAIL ─────────────────────────── */
.pdp { padding: 32px 0 80px; }
.pdp-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: flex-start; }
.gallery-main {
  aspect-ratio: 1/1;
  background: var(--bg-2);
  border-radius: var(--r-lg);
  position: relative;
  display: grid; place-items: center;
  overflow: hidden;
}
.gallery-main::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(0,0,0,0.02) 0 1px, transparent 1px 8px);
  pointer-events: none;
}
.gallery-thumbs { display: grid; grid-template-columns: repeat(5,1fr); gap: 10px; margin-top: 12px; }
.gallery-thumbs .t {
  aspect-ratio: 1/1;
  background: var(--bg-2);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  display: grid; place-items: center;
  cursor: pointer;
}
.gallery-thumbs .t.is-active { border-color: var(--cyan); border-width: 2px; }

.pdp-meta .brand-line { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.pdp-meta h1 { font-family: var(--f-display); font-size: 38px; line-height: 1; letter-spacing: 0; margin: 0 0 16px; color: var(--ink); font-weight: 800; text-transform: uppercase; }
.pdp-spec-row { display: flex; gap: 24px; padding: 14px 0; border-top: 1px solid var(--line); }
.pdp-spec-row:last-child { border-bottom: 1px solid var(--line); }
.pdp-spec-row .k { width: 160px; font-size: 11px; color: var(--text-mid); text-transform: uppercase; letter-spacing: 0.06em; font-family: var(--f-display); font-weight: 700; }
.pdp-spec-row .v { font-size: 13px; color: var(--ink); }

.pdp-price {
  display: flex; align-items: baseline; gap: 14px;
  margin: 24px 0 4px;
}
.pdp-price .now { font-size: 48px; font-weight: 900; color: var(--ink); font-family: var(--f-display); letter-spacing: -0.01em; line-height: 1; }
.pdp-price .was { font-size: 18px; color: var(--text-mute); text-decoration: line-through; font-family: var(--f-mono); }
.pdp-price .save { background: var(--cyan); color: #fff; padding: 4px 10px; border-radius: 2px; font-size: 11px; font-weight: 700; font-family: var(--f-display); text-transform: uppercase; letter-spacing: 0.05em; }

.qty {
  display: inline-flex; align-items: center;
  height: 52px;
  border: 1px solid var(--border-2);
  border-radius: var(--r-md);
  overflow: hidden;
}
.qty button {
  width: 48px; height: 100%;
  border: none; background: transparent;
  font-size: 18px;
  color: var(--ink);
}
.qty button:hover { background: var(--bg-2); }
.qty input {
  width: 50px; height: 100%;
  border: none;
  text-align: center;
  font-family: var(--f-mono);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  background: transparent;
  outline: none;
}

.compat-card {
  background: var(--cyan-soft);
  border-radius: var(--r-md);
  padding: 16px 18px;
  margin: 20px 0;
  display: flex; align-items: center; gap: 14px;
  border-left: 3px solid var(--cyan);
}
.compat-card .ic { width: 36px; height: 36px; background: var(--cyan); color: #fff; border-radius: 50%; display: grid; place-items: center; flex-shrink: 0; }
.compat-card .txt strong { color: var(--ink); font-size: 13px; font-family: var(--f-display); text-transform: uppercase; letter-spacing: 0.04em; font-weight: 700; }
.compat-card .txt div { font-size: 12px; color: var(--text); margin-top: 2px; }

.trust { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin: 24px 0; padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust .tb { display: flex; align-items: center; gap: 10px; }
.trust .tb svg { color: var(--cyan); }
.trust .tb .t1 { font-size: 11px; font-weight: 700; color: var(--ink); text-transform: uppercase; letter-spacing: 0.04em; font-family: var(--f-display); }
.trust .tb .t2 { font-size: 11px; color: var(--text-mid); }

.pdp-tabs { margin-top: 64px; }
.pdp-tabs .tabs { display: flex; gap: 0; border-bottom: 1px solid var(--line); }
.pdp-tabs .tab { padding: 16px 24px; font-size: 12px; font-weight: 700; color: var(--text-mid); border-bottom: 3px solid transparent; margin-bottom: -1px; cursor: pointer; text-transform: uppercase; letter-spacing: 0.05em; font-family: var(--f-display); }
.pdp-tabs .tab.is-active { color: var(--ink); border-color: var(--cyan); }
.pdp-tabs .panel { padding: 28px 0; }

.spec-table { width: 100%; border-collapse: collapse; max-width: 720px; }
.spec-table td { padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 13px; }
.spec-table td:first-child { color: var(--text-mid); width: 220px; font-family: var(--f-display); text-transform: uppercase; letter-spacing: 0.06em; font-size: 11px; font-weight: 700; }
.spec-table td:last-child { color: var(--ink); }

/* ─────────────────────────── CART ─────────────────────────── */
.cart { padding: 32px 0 80px; display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: flex-start; }
.cart-line { display: grid; grid-template-columns: 96px 1fr auto auto auto; gap: 20px; padding: 24px 0; border-top: 1px solid var(--line); align-items: center; }
.cart-line:last-child { border-bottom: 1px solid var(--line); }
.cart-line .ph { width: 96px; height: 96px; background: var(--bg-2); border-radius: var(--r-md); display: grid; place-items: center; }
.cart-line .info .brand { font-family: var(--f-display); font-size: 11px; color: var(--text-mid); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 700; }
.cart-line .info .name { font-size: 15px; font-weight: 600; color: var(--ink); margin: 4px 0; }
.cart-line .info .sku { font-family: var(--f-mono); font-size: 11px; color: var(--text-mute); }
.cart-line .price { font-family: var(--f-display); font-weight: 800; font-size: 20px; color: var(--ink); }
.cart-line .rm { background: transparent; border: none; color: var(--text-mute); padding: 8px; }
.cart-line .rm:hover { color: var(--cyan); }

.summary {
  background: var(--bg-2);
  border-radius: var(--r-lg);
  padding: 28px;
  position: sticky; top: 24px;
}
.summary h3 { margin: 0 0 20px; font-family: var(--f-display); font-size: 20px; font-weight: 800; color: var(--ink); text-transform: uppercase; letter-spacing: -0.005em; }
.summary .row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14px; }
.summary .row.tot { font-size: 20px; font-weight: 800; padding-top: 14px; border-top: 1px solid var(--border); margin-top: 12px; color: var(--ink); font-family: var(--f-display); text-transform: uppercase; letter-spacing: -0.005em; }
.summary .row .v { font-family: var(--f-mono); }
.summary .row.tot .v { font-family: var(--f-display); font-size: 28px; line-height: 1; }
.summary .promo { display: flex; gap: 8px; margin-bottom: 20px; }

/* ─────────────────────────── CHECKOUT ─────────────────────────── */
.checkout { padding: 32px 0 80px; display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: flex-start; }
.steps { display: flex; gap: 0; margin-bottom: 32px; align-items: center; }
.step { display: flex; align-items: center; gap: 10px; color: var(--text-mute); font-size: 12px; font-weight: 700; font-family: var(--f-display); text-transform: uppercase; letter-spacing: 0.06em; }
.step .n { width: 30px; height: 30px; border-radius: 50%; background: var(--bg-3); color: var(--text-mid); display: grid; place-items: center; font-family: var(--f-mono); font-size: 13px; font-weight: 700; }
.step.is-active { color: var(--ink); }
.step.is-active .n { background: var(--cyan); color: #fff; }
.step.is-done { color: var(--text); }
.step.is-done .n { background: var(--ink); color: #fff; }
.step-bar { width: 40px; height: 1px; background: var(--border-2); margin: 0 16px; }

.field { margin-bottom: 16px; }
.field label { display: block; font-size: 11px; color: var(--text-mid); margin-bottom: 6px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; font-family: var(--f-display); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field-row.three { grid-template-columns: 2fr 1fr 1fr; }

.method {
  display: flex; align-items: center; gap: 16px;
  border: 1px solid var(--border-2);
  border-radius: var(--r-md);
  padding: 16px 18px;
  cursor: pointer;
  margin-bottom: 10px;
  transition: border-color 140ms ease;
}
.method:hover { border-color: var(--cyan); }
.method.is-active { border-color: var(--cyan); background: var(--cyan-soft); border-width: 2px; padding: 15px 17px; }
.method .radio { width: 18px; height: 18px; border: 1.5px solid var(--border-2); border-radius: 50%; flex-shrink: 0; position: relative; }
.method.is-active .radio { border-color: var(--cyan); }
.method.is-active .radio::after { content: ""; position: absolute; inset: 3px; background: var(--cyan); border-radius: 50%; }
.method .ico { width: 40px; height: 28px; background: var(--bg); border: 1px solid var(--border); border-radius: 2px; display: grid; place-items: center; font-family: var(--f-mono); font-size: 9px; color: var(--text-mid); }
.method .body { flex: 1; }
.method .body .t { font-size: 14px; font-weight: 700; color: var(--ink); font-family: var(--f-display); text-transform: uppercase; letter-spacing: 0.04em; }
.method .body .s { font-size: 12px; color: var(--text-mid); margin-top: 2px; }
.method .pr { font-family: var(--f-display); font-weight: 800; font-size: 18px; color: var(--ink); }

/* ─────────────────────────── SEARCH ─────────────────────────── */
.search-hero { background: var(--carbon); color: #fff; padding: 56px 0 48px; position: relative; isolation: isolate; }
.search-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 5px);
  z-index: -1;
}
.search-hero .crumbs { color: rgba(255,255,255,0.5); }
.search-hero .crumbs a:hover { color: var(--cyan-bright); }
.search-hero .crumbs .sep { color: rgba(255,255,255,0.3); }
.search-hero .search-input { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.2); color: #fff; height: 60px; font-size: 16px; }
.search-hero .search-input::placeholder { color: rgba(255,255,255,0.4); }
.search-hero .search-go { width: 48px; height: 48px; top: 6px; right: 6px; }

.search-result-row {
  display: grid; grid-template-columns: 80px 1fr auto;
  gap: 20px; padding: 18px 0;
  border-top: 1px solid var(--line);
  align-items: center;
  cursor: pointer;
}
.search-result-row:hover { background: var(--bg-2); padding-left: 12px; padding-right: 12px; border-radius: 8px; }
.search-result-row .ph { width: 80px; height: 80px; background: var(--bg-2); border-radius: var(--r-md); display: grid; place-items: center; }

/* ─────────────────────────── ACCOUNT ─────────────────────────── */
.account { display: grid; grid-template-columns: 240px 1fr; gap: 40px; padding: 32px 0 80px; }
.account-side .item { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: var(--r-md); font-size: 13px; color: var(--text); cursor: pointer; margin-bottom: 4px; font-family: var(--f-display); text-transform: uppercase; letter-spacing: 0.04em; font-weight: 600; }
.account-side .item:hover { background: var(--bg-2); }
.account-side .item.is-active { background: var(--ink); color: #fff; }
.account-side .item .badge { margin-left: auto; font-family: var(--f-mono); font-size: 11px; color: var(--text-mute); }
.account-side .item.is-active .badge { color: rgba(255,255,255,0.6); }

.acc-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 24px; margin-bottom: 16px; }
.order-row { display: grid; grid-template-columns: 1fr 120px 100px 120px 100px; gap: 16px; padding: 16px 0; border-top: 1px solid var(--line); align-items: center; font-size: 13px; }
.order-row:first-of-type { border-top: none; }
.order-row .onum { font-family: var(--f-mono); font-weight: 600; color: var(--ink); }
.order-row .date { color: var(--text-mid); }
.order-row .total { font-family: var(--f-display); font-weight: 800; font-size: 18px; color: var(--ink); text-align: right; }

/* ─────────────────────────── VEHICLE SELECTOR ─────────────────────────── */
.vsel { padding: 48px 0 80px; }
.vsel-stage { background: var(--carbon); border-radius: var(--r-lg); padding: 48px; color: #fff; position: relative; isolation: isolate; overflow: hidden; }
.vsel-stage::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 5px);
  z-index: -1;
}
.vsel-stage h2 { color: #fff; font-family: var(--f-display); font-size: 48px; font-weight: 900; text-transform: uppercase; line-height: 0.95; letter-spacing: -0.01em; margin: 8px 0 12px; }
.vsel-stage .lead { color: rgba(255,255,255,0.7); }
.vsel-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin-top: 28px; }
.vsel-step {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-md);
  padding: 20px;
  position: relative;
  cursor: pointer;
  transition: border-color 140ms ease, background 140ms ease;
  color: #fff;
}
.vsel-step:hover { border-color: var(--cyan); }
.vsel-step.is-active { border-color: var(--cyan); border-width: 2px; padding: 19px; background: rgba(0,176,232,0.08); }
.vsel-step.is-done { background: var(--cyan); border-color: var(--cyan); }
.vsel-step .n { font-family: var(--f-display); font-size: 11px; color: rgba(255,255,255,0.5); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700; }
.vsel-step.is-done .n { color: rgba(255,255,255,0.7); }
.vsel-step .vl { font-size: 18px; font-weight: 800; color: #fff; margin-top: 6px; font-family: var(--f-display); text-transform: uppercase; }
.vsel-step .sub { font-size: 11px; color: rgba(255,255,255,0.6); margin-top: 2px; }
.vsel-step.is-done .sub { color: rgba(255,255,255,0.85); }

.opts-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 8px; margin-top: 24px; }
.opts-grid .opt {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-md);
  padding: 14px;
  text-align: center;
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  transition: border-color 140ms ease, background 140ms ease, transform 140ms ease;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.opts-grid .opt:hover { border-color: var(--cyan); transform: translateY(-2px); background: rgba(0,176,232,0.08); }
.opts-grid .opt.is-active { background: var(--cyan); color: #fff; border-color: var(--cyan); }

/* Brand page hero (dark, with photo placeholder) */
.brand-hero { background: var(--carbon); color: #fff; padding: 72px 0; position: relative; isolation: isolate; overflow: hidden; }
.brand-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 5px);
  z-index: -1;
}
.brand-hero .container { display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px; align-items: center; }
.brand-hero h1 { font-family: var(--f-display); font-size: 120px; color: #fff; margin: 12px 0 16px; font-weight: 900; text-transform: uppercase; line-height: 0.9; letter-spacing: -0.02em; }
.brand-hero .lead { color: rgba(255,255,255,0.7); font-size: 16px; line-height: 1.5; max-width: 520px; }
.brand-hero .stats { display: flex; gap: 40px; margin-top: 36px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.1); }
.brand-hero .st .n { font-family: var(--f-display); font-size: 32px; font-weight: 900; color: var(--cyan); text-transform: uppercase; line-height: 1; }
.brand-hero .st .l { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 6px; text-transform: uppercase; letter-spacing: 0.08em; font-family: var(--f-display); font-weight: 600; }
.brand-hero .visual {
  aspect-ratio: 4/4;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  display: grid; place-items: center;
  position: relative;
  overflow: hidden;
}
.brand-hero .visual .mark {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 220px;
  color: rgba(255,255,255,0.06);
  letter-spacing: -0.04em;
  line-height: 1;
}

/* sort dropdown */
.sort-wrap { display: flex; align-items: center; gap: 8px; font-size: 13px; }
.sort-wrap .select { width: 220px; height: 40px; }
.view-toggle { display: flex; border: 1px solid var(--border-2); border-radius: var(--r-sm); overflow: hidden; }
.view-toggle button { width: 38px; height: 38px; border: none; background: var(--bg); display: grid; place-items: center; color: var(--text-mid); cursor: pointer; }
.view-toggle button.is-active { background: var(--ink); color: #fff; }

/* dark "story" block (about) */
.story {
  background: var(--carbon);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 64px;
  position: relative; isolation: isolate; overflow: hidden;
}
.story::before {
  content:""; position:absolute; inset:0;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 5px);
  z-index: -1;
}
.story h2 { color: #fff; margin-top: 8px; margin-bottom: 20px; }
.story .grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }

/* Mobile menu trigger (hidden on desktop) */
.menu-trigger { display: none; }

/* ─────────────────────────── RESPONSIVE ─────────────────────────── */

/* Wide tablet */
@media (max-width: 1280px) {
  /* Trim less-essential nav items first */
  .nav-item.nav--opt { display: none; }
  .nav-item.nav--store, .nav-item.nav--contact { display: none; }
  /* Topbar: hide just the location label, keep phone + B2B visible */
  .topbar .tb-loc { display: none; }
  .topbar .pipe { display: none; }
}
@media (max-width: 1200px) {
  .container { padding: 0 24px; }
  .h-display { font-size: 72px; }
  .hero h1 { font-size: 72px; }
  .brand-hero h1 { font-size: 88px; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 40px; padding: 72px 0; }
  .ftr-grid { grid-template-columns: 1fr repeat(3, 1fr); gap: 40px; }
  .ftr-grid > div:last-child { display: none; }
  .products { grid-template-columns: repeat(3,1fr); }
  .cat-grid { grid-template-columns: repeat(4,1fr); }
  .listing { grid-template-columns: 240px 1fr; gap: 24px; }
  .brand-grid { grid-template-columns: repeat(2,1fr); }
  .vbar-selects { display: grid; grid-template-columns: repeat(4, 1fr); }
  /* Slideshow gets compressed */
  .hs-title { font-size: 44px; }
  .hs-brand { font-size: 72px; }
  .hs-text { padding: 48px 36px 48px 60px; }
}

/* Tablet */
@media (max-width: 1024px) {
  /* Header gets denser */
  .hdr-inner { gap: 16px; height: 76px; }
  .hdr-icon { padding: 6px 8px; }
  .hdr-icon .num { display: none; }
  .hdr-icon .lbl { font-size: 12px; }
  /* Hide nav items aggressively */
  .nav-item.nav--secondary { display: none; }
  .mainnav-inner { gap: 0; height: 46px; }
}

@media (max-width: 960px) {
  .h-display { font-size: 60px; }
  .h1 { font-size: 36px; }
  .h2 { font-size: 30px; }
  .hero h1 { font-size: 60px; }
  .brand-hero h1 { font-size: 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; padding: 56px 0; }
  .hero-visual { aspect-ratio: 16/9; }
  .brand-hero .container { grid-template-columns: 1fr; gap: 32px; }
  .brand-hero { padding: 48px 0; }
  .pdp-grid { grid-template-columns: 1fr; gap: 32px; }
  .cart { grid-template-columns: 1fr; }
  .checkout { grid-template-columns: 1fr; }
  .summary { position: static; }
  .account { grid-template-columns: 1fr; }
  .account-side { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 12px; }
  .account-side .item { white-space: nowrap; margin: 0; }
  .products { grid-template-columns: repeat(2,1fr); }
  .products.cols-3 { grid-template-columns: repeat(2,1fr); }
  .cat-grid { grid-template-columns: repeat(3,1fr); }
  .vsel-stage { padding: 28px; }
  .vsel-stage h2 { font-size: 36px; }
  .vsel-steps { grid-template-columns: repeat(2,1fr); }
  .opts-grid { grid-template-columns: repeat(4,1fr); }
  .story { padding: 40px; }
  .story .grid2 { grid-template-columns: 1fr; gap: 32px; }
  .hero-stats { gap: 24px; }
  .hero-stat .n { font-size: 32px; }
  .trust { grid-template-columns: repeat(2,1fr); }
}

/* Mobile */
@media (max-width: 720px) {
  .container { padding: 0 16px; }
  .h-display { font-size: 44px; }
  .h1 { font-size: 36px; }
  .h2 { font-size: 26px; }
  .hero h1 { font-size: 44px; }
  .brand-hero h1 { font-size: 48px; }

  section { padding: 48px 0; }
  section.sm { padding: 36px 0; }

  /* Header collapse */
  .topbar { display: none; }
  .hdr-inner { height: 64px; gap: 12px; }
  .brand img { height: 36px; }
  .hdr-actions .hdr-icon:not(.always) > div { display: none; }
  .hdr-actions .hdr-icon.cart-btn { padding: 8px; }
  .hdr-icon.account-btn, .hdr-icon.fav-btn { padding: 8px; }
  .hdr-icon.account-btn > div, .hdr-icon.fav-btn > div { display: none; }
  .menu-trigger { display: grid; place-items: center; width: 40px; height: 40px; background: transparent; border: 1px solid rgba(255,255,255,0.15); color: #fff; border-radius: 4px; }

  /* Move search to second row */
  .search-wrap { display: none; }
  .mobile-search-row { display: block; background: var(--black); padding: 0 16px 14px; }
  .mobile-search-row .search-wrap { display: block; max-width: none; }

  /* Hide main nav (use menu trigger) */
  .mainnav { display: none; }

  /* Vehicle bar — stack */
  .vbar-inner { flex-direction: column; align-items: stretch; gap: 12px; }
  .vbar-selects { display: grid; grid-template-columns: 1fr 1fr; }
  .vbar-label { justify-content: center; }

  /* Hero stats */
  .hero-stats { gap: 16px; flex-wrap: wrap; }
  .hero-stat { flex: 1 1 calc(50% - 8px); }
  .hero-stat .n { font-size: 28px; }

  /* Brand grid */
  .brand-grid { grid-template-columns: 1fr 1fr; }
  .brand-tile .b-name { font-size: 26px; }

  .cat-grid { grid-template-columns: repeat(2,1fr); }
  .products { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .products.cols-3, .products.cols-5 { grid-template-columns: repeat(2,1fr); }
  .pcard .price { font-size: 18px; }

  .partners-grid { grid-template-columns: repeat(3,1fr); gap: 16px; }
  .ftr-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .ftr-top { padding: 48px 0 32px; }
  .ftr-bottom { flex-direction: column; gap: 12px; text-align: center; }

  /* Listing: hide sidebar, give a sticky filter button */
  .listing { grid-template-columns: 1fr; }
  .filters { display: none; }
  .listing.with-filter-pill .filter-pill { display: inline-flex; }
  .listing-head { flex-direction: column; align-items: stretch; gap: 12px; }
  .listing-head .lh-left, .listing-head .lh-right { justify-content: space-between; }

  /* PDP */
  .pdp-meta h1 { font-size: 26px; }
  .pdp-price .now { font-size: 36px; }

  /* Cart line */
  .cart-line { grid-template-columns: 64px 1fr; gap: 12px; padding: 16px 0; }
  .cart-line .ph { width: 64px; height: 64px; }
  .cart-line .qty { grid-column: 1 / -1; height: 40px; }
  .cart-line .price { grid-column: 1 / -1; font-size: 18px; text-align: right; }
  .cart-line .rm { grid-column: 1 / -1; justify-self: end; }

  /* Checkout */
  .field-row, .field-row.three { grid-template-columns: 1fr; gap: 0; }

  /* Vehicle selector */
  .vsel-stage h2 { font-size: 28px; }
  .vsel-steps { grid-template-columns: 1fr; }
  .opts-grid { grid-template-columns: repeat(2,1fr); }

  /* Story */
  .story { padding: 28px; }

  /* Account */
  .order-row { grid-template-columns: 1fr auto; gap: 8px; font-size: 12px; }
  .order-row .date, .order-row > div:nth-child(3) { display: none; }

  /* Brand-hero visual mark */
  .brand-hero .visual .mark { font-size: 120px; }
}

/* Spec pill helper */
.spec-pill { background: var(--bg-2); padding: 6px 10px; border-radius: 2px; font-family: var(--f-mono); font-size: 11px; color: var(--ink); }

/* ====================================================================
   HERO SLIDESHOW (bigass image-driven, mirrors the real site)
   ==================================================================== */
.heroshow {
  position: relative;
  width: 100%;
  height: 640px;
  background: var(--carbon);
  overflow: hidden;
  isolation: isolate;
}
.heroshow-track {
  position: absolute; inset: 0;
}
.heroshow-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 700ms cubic-bezier(0.4, 0, 0.2, 1);
  display: grid;
  grid-template-columns: 62fr 38fr;
}
.heroshow-slide.is-active { opacity: 1; z-index: 1; }

/* Left: image area */
.hs-image {
  position: relative;
  overflow: hidden;
  background: #000;
}
.hs-image-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: hsZoom 12s ease-out forwards;
}
.heroshow-slide.is-active .hs-image-bg { animation: hsZoom 12s ease-out forwards; }
@keyframes hsZoom {
  from { transform: scale(1.0); }
  to   { transform: scale(1.1); }
}
/* Vignette */
.hs-image::after { display: none; }
/* Carbon fiber treatment for placeholder/missing images */
.hs-image.is-placeholder {
  background-color: #0c0c10;
  background-image:
    radial-gradient(ellipse at 30% 50%, rgba(0,176,232,0.12) 0%, transparent 55%),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.022) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 5px);
}
.hs-image .ph-mark {
  position: absolute; left: 8%; bottom: 8%;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 280px;
  color: rgba(255,255,255,0.05);
  letter-spacing: -0.04em;
  line-height: 0.85;
  text-transform: uppercase;
  pointer-events: none;
}
.hs-image .ph-tag {
  position: absolute; left: 8%; top: 8%;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* Right: carbon wedge with text */
.hs-text {
  position: relative;
  padding: 64px 56px 64px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  background-color: var(--carbon);
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.022) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.038) 0 1px, transparent 1px 5px);
}
/* Diagonal cut on the left edge of the text panel — mirrors the real site */
.hs-text::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: -60px;
  width: 100px;
  background-color: var(--carbon);
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.022) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.038) 0 1px, transparent 1px 5px);
  clip-path: polygon(60px 0, 100px 0, 40px 100%, 0 100%);
}
/* Cyan accent strip just inside the diagonal */
.hs-text::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: -8px;
  width: 3px;
  background: var(--cyan);
  transform: skewX(-22deg);
  z-index: 2;
}
.hs-eyebrow {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--cyan-bright);
  text-transform: uppercase;
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 20px;
}
.hs-eyebrow::before { content: "—"; color: var(--cyan); }
.hs-title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 60px;
  line-height: 0.95;
  letter-spacing: -0.005em;
  color: #fff;
  text-transform: uppercase;
  margin: 0;
  text-wrap: balance;
}
.hs-brand {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 96px;
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--cyan);
  text-transform: uppercase;
  margin: 16px 0 0;
  display: block;
}
.hs-cta {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 36px;
  align-self: flex-start;
  padding: 16px 28px;
  background: var(--cyan);
  color: #fff;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: none;
  cursor: pointer;
  transition: background 140ms ease, transform 80ms ease;
}
.hs-cta:hover { background: var(--cyan-deep); }
.hs-cta:active { transform: scale(0.985); }

/* Slideshow controls (over the image area) */
.hs-arrows {
  position: absolute;
  bottom: 32px; left: 32px;
  display: flex; gap: 6px;
  z-index: 5;
}
.hs-arrow {
  width: 48px; height: 48px;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  display: grid; place-items: center;
  cursor: pointer;
  transition: background 140ms ease, border-color 140ms ease;
}
.hs-arrow:hover { background: var(--cyan); border-color: var(--cyan); }

.hs-dots {
  position: absolute;
  bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px;
  z-index: 5;
}
.hs-dot {
  width: 32px; height: 3px;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: background 140ms ease;
  position: relative;
  overflow: hidden;
}
.hs-dot.is-active { background: rgba(255,255,255,0.2); }
.hs-dot.is-active::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--cyan);
  animation: hsProgress 6s linear forwards;
  transform-origin: left;
}
@keyframes hsProgress {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* Counter */
.hs-counter {
  position: absolute;
  top: 32px; right: 32px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.06em;
  z-index: 5;
  background: rgba(0,0,0,0.4);
  padding: 8px 14px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.1);
}
.hs-counter .now { color: var(--cyan-bright); font-size: 18px; }
.hs-counter .tot { color: rgba(255,255,255,0.5); }

@media (max-width: 960px) {
  .heroshow { height: 560px; }
  .heroshow-slide { grid-template-columns: 1fr; }
  .hs-image { grid-row: 1; height: 280px; }
  .hs-text { grid-row: 2; padding: 36px 24px; }
  .hs-text::before, .hs-text::after { display: none; }
  .hs-title { font-size: 32px; }
  .hs-brand { font-size: 56px; }
  .hs-arrows { bottom: 12px; left: 12px; }
  .hs-arrow { width: 40px; height: 40px; }
  .hs-dots { bottom: auto; top: 250px; }
  .hs-counter { top: 12px; right: 12px; }
  .hs-image .ph-mark { font-size: 140px; }
}
@media (max-width: 720px) {
  .heroshow { height: auto; min-height: 460px; }
  .hs-image { height: 200px; }
  .hs-title { font-size: 24px; }
  .hs-brand { font-size: 44px; }
  .hs-image .ph-mark { font-size: 100px; }
}

/* ====================================================================
   PARTNER MARQUEE (real logos)
   ==================================================================== */
.partners {
  background: var(--bg);
  padding: 56px 0 64px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.partners-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 0 32px; max-width: 1320px; margin: 0 auto 32px;
  gap: 24px;
}
.partners-head .eyebrow { color: var(--cyan-deep); }
.partners-head h3 { font-family: var(--f-display); font-size: 32px; font-weight: 800; color: var(--ink); text-transform: uppercase; margin: 8px 0 0; letter-spacing: -0.005em; line-height: 1; }
.partners-head .meta { display: flex; align-items: center; gap: 24px; }
.partners-head .meta .ct { font-family: var(--f-display); font-size: 48px; font-weight: 900; color: var(--cyan); letter-spacing: -0.01em; line-height: 1; }
.partners-head .meta .lbl { font-size: 11px; color: var(--text-mid); text-transform: uppercase; letter-spacing: 0.08em; font-family: var(--f-display); font-weight: 600; line-height: 1.3; max-width: 130px; }

.partners-marquee {
  display: flex;
  gap: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  position: relative;
}
.partners-track {
  display: flex;
  gap: 0;
  animation: partnersScroll 90s linear infinite;
  flex-shrink: 0;
}
.partners-marquee:hover .partners-track { animation-play-state: paused; }
@keyframes partnersScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.partner-logo {
  flex-shrink: 0;
  width: 140px;
  height: 80px;
  display: grid; place-items: center;
  border-right: 1px solid var(--line);
  filter: grayscale(1);
  opacity: 0.55;
  transition: opacity 200ms ease, filter 200ms ease;
  padding: 0 24px;
}
.partner-logo:hover { opacity: 1; filter: grayscale(0); }
.partner-logo img { max-width: 92px; max-height: 64px; object-fit: contain; }

.partners-second-row .partners-track { animation-duration: 110s; animation-direction: reverse; }

@media (max-width: 720px) {
  .partners { padding: 36px 0 40px; }
  .partners-head { padding: 0 16px; flex-direction: column; align-items: flex-start; gap: 12px; }
  .partners-head h3 { font-size: 22px; }
  .partners-head .meta .ct { font-size: 36px; }
  .partner-logo { width: 110px; height: 64px; padding: 0 16px; }
  .partner-logo img { max-width: 72px; max-height: 48px; }
}

/* ═══════════════════════════════════════════════════════════════════════
   STRATOUDAKIS — ADDITIONS for sub-pages (v0.2.0)
   Brand page / Manufacturer list / Category / PDP / Search /
   Cart / Checkout / Account / Vehicle Selector
   ═══════════════════════════════════════════════════════════════════════ */

/* ── Breadcrumbs ── */
.breadcrumbs { padding: 14px 0 4px; font-size: 12.5px; color: var(--text-mid); }
.breadcrumbs .container { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.breadcrumbs a { color: var(--text-mid); text-decoration: none; }
.breadcrumbs a:hover { color: var(--ink); }
.breadcrumbs .sep { color: var(--text-mute); opacity: 0.6; }
.breadcrumbs a.bc-home { display: inline-flex; align-items: center; color: var(--text-mid); }
.breadcrumbs a.bc-home:hover { color: var(--cyan-deep); }
.breadcrumbs--dark { padding: 0 0 18px; color: var(--text-on-dk2); }
.breadcrumbs--dark a { color: var(--text-on-dk2); }
.breadcrumbs--dark a:hover { color: var(--cyan); }

/* ── Generic page-header blocks ── */
.cat-header, .acc-header, .cart-header, .auth-header { padding: 8px 0 24px; }
.cat-header .h1, .acc-header .h1, .cart-header .h1, .auth-header .h1 { margin: 8px 0 8px; }
.cat-lead, .auth-header p { color: var(--text-mid); max-width: 720px; margin: 0 0 8px; }
.cat-count { font-size: 13px; color: var(--text-mid); margin-top: 4px; }
.cat-count .mono b { color: var(--ink); font-weight: 700; }
.m0 { margin: 0; }

/* ── Listing layout (Category & Search) ── */
.listing { display: grid; grid-template-columns: 280px 1fr; gap: 32px; padding: 8px 0 64px; }
.listing-head { display: flex; justify-content: space-between; align-items: center; padding: 8px 0 18px; border-bottom: 1px solid var(--border); margin-bottom: 18px; }
.listing-head .lh-left { font-size: 13px; color: var(--text-mid); display: flex; gap: 12px; align-items: center; }
.listing-head .lh-left b { color: var(--ink); font-weight: 700; }
.listing-head .lh-right { display: flex; align-items: center; gap: 14px; }
.sort-wrap { display: flex; gap: 8px; align-items: center; font-size: 13px; }
.sort-wrap .select { height: 36px; font-size: 13px; min-width: 200px; }
.view-toggle { display: flex; gap: 0; border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; }
.view-toggle button { width: 32px; height: 32px; background: var(--bg); border: 0; display: grid; place-items: center; color: var(--text-mid); cursor: pointer; }
.view-toggle button.is-active { background: var(--ink); color: #fff; }
.products.cols-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.products.cols-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 1100px) { .products.cols-3 { grid-template-columns: repeat(2, 1fr); } .products.cols-4 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .products.cols-3, .products.cols-4 { grid-template-columns: repeat(2, 1fr); } .listing { grid-template-columns: 1fr; } }
@media (max-width: 460px)  { .products.cols-3, .products.cols-4 { grid-template-columns: 1fr; } }

/* ── Filter sidebar ── */
.filters { background: transparent; padding: 24px 0 0; }
.filters .grp { padding: 16px 0; border-top: 1px solid var(--border); }
.filters .grp:first-child { border-top: 0; padding-top: 0; }
.filters .grp h4 { font-size: 13px; font-weight: 700; color: var(--ink); margin: 0 0 10px; display: flex; justify-content: space-between; align-items: center; }
.filters .grp .ct { font-family: var(--f-mono); font-size: 11px; color: var(--text-mid); font-weight: 500; }
.filter-opt { display: flex; align-items: center; gap: 10px; padding: 6px 0; font-size: 13px; color: var(--text); text-decoration: none; cursor: pointer; }
.filter-opt .cb { width: 14px; height: 14px; border: 1.5px solid var(--border-2); border-radius: 3px; flex-shrink: 0; background: var(--bg); position: relative; }
.filter-opt.checked .cb { background: var(--ink); border-color: var(--ink); }
.filter-opt.checked .cb::after { content: '✓'; position: absolute; inset: 0; display: grid; place-items: center; color: #fff; font-size: 10px; font-weight: 700; }
.filter-opt:hover { color: var(--ink); }
.filter-opt input[type="checkbox"] { display: none; }
.price-slider .track { height: 4px; background: var(--bg-3); border-radius: 2px; position: relative; margin: 8px 0 18px; }
.price-slider .track .fill { position: absolute; left: 15%; right: 45%; top: 0; bottom: 0; background: var(--ink); border-radius: 2px; }
.price-range { display: flex; gap: 8px; }
.price-range .input { height: 36px; font-size: 12px; font-family: var(--f-mono); }
.input { width: 100%; padding: 0 12px; border: 1px solid var(--border-2); border-radius: var(--r-md); background: var(--bg); font-size: 14px; color: var(--ink); }
.input:focus { outline: 2px solid var(--cyan-line); border-color: var(--cyan); }

/* ── Pager ── */
.pager { display: flex; justify-content: center; align-items: center; gap: 4px; padding: 32px 0; }
.pager .pg, .pager a, .pager span { display: inline-grid; place-items: center; min-width: 34px; height: 34px; padding: 0 10px; border: 1px solid var(--border); background: var(--bg); color: var(--ink); font-family: var(--f-mono); font-size: 13px; font-weight: 500; text-decoration: none; border-radius: var(--r-md); }
.pager .pg.is-active, .pager .active, .pager b { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ── Empty state ── */
.empty-state { text-align: center; padding: 80px 16px; }
.empty-state .h2 { margin: 12px 0 20px; color: var(--ink); }
.empty-state .eyebrow { color: var(--text-mid); }

/* ── Alerts ── */
.alert { padding: 14px 18px; border-radius: var(--r-md); margin: 16px 0; font-size: 14px; }
.alert--success { background: rgba(22,163,90,0.08); color: var(--in-stock); border: 1px solid rgba(22,163,90,0.18); }
.alert--warn    { background: rgba(208,131,0,0.08); color: var(--low-stock); border: 1px solid rgba(208,131,0,0.18); }
.alert--error   { background: rgba(255,0,0,0.06); color: #C0392B; border: 1px solid rgba(255,0,0,0.16); }

/* ── Brand page (manufacturer_info) ── */
.brand-hero { color: #fff; padding: 64px 0 56px; position: relative; overflow: hidden; }
.brand-hero-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px; align-items: center; position: relative; z-index: 2; }
.brand-hero-text { max-width: 580px; }
.brand-hero-text .eyebrow { color: var(--cyan); }
.brand-hero .display-xl { font-family: var(--f-display); font-weight: 900; font-size: 96px; line-height: 0.92; letter-spacing: -0.02em; margin: 12px 0 18px; text-transform: uppercase; }
.brand-lead { color: var(--text-on-dk); font-size: 16px; line-height: 1.6; margin: 0 0 24px; max-width: 480px; }
.brand-stats { display: flex; gap: 32px; margin-bottom: 28px; }
.brand-stats > div { display: flex; flex-direction: column; }
.brand-stats .display { font-family: var(--f-display); font-weight: 800; font-size: 36px; line-height: 1; color: #fff; }
.brand-stats .lbl { font-size: 12px; color: var(--text-on-dk2); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 4px; }
.brand-hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.brand-hero-mark { font-family: var(--f-display); font-weight: 900; font-size: 280px; line-height: 0.85; letter-spacing: -0.04em; color: rgba(255,255,255,0.05); text-align: right; user-select: none; white-space: nowrap; overflow: hidden; }
@media (max-width: 980px) { .brand-hero .display-xl { font-size: 56px; } .brand-hero-mark { font-size: 140px; text-align: center; } .brand-hero-grid { grid-template-columns: 1fr; } }

/* ── Manufacturer list page ── */
.mfg-section { margin: 32px 0; }
.mfg-letter { font-family: var(--f-display); font-weight: 800; font-size: 56px; color: var(--ink); border-bottom: 2px solid var(--ink); padding-bottom: 4px; margin-bottom: 18px; }
.mfg-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 8px; }
.mfg-tile { display: block; padding: 14px 16px; background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--r-md); color: var(--ink); text-decoration: none; font-weight: 500; transition: all 0.15s; }
.mfg-tile:hover { background: var(--ink); color: #fff; border-color: var(--ink); transform: translateY(-2px); }

/* ── Product card ── */
.products { gap: 14px; }
.pcard { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; transition: all 0.2s; display: flex; flex-direction: column; }
.pcard:hover { border-color: var(--cyan); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,176,232,0.1); }
.pcard .ph { position: relative; aspect-ratio: 1/1; background: var(--bg-2); display: grid; place-items: center; overflow: hidden; }
.pcard .ph img { max-width: 80%; max-height: 80%; object-fit: contain; mix-blend-mode: multiply; }
.pcard .ph .badges { position: absolute; top: 10px; left: 10px; display: flex; gap: 6px; }
.pcard .ph .fav { position: absolute; top: 10px; right: 10px; width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,0.95); border: 0; display: grid; place-items: center; cursor: pointer; color: var(--text-mid); }
.pcard .ph .fav:hover { color: var(--cyan); }
.pcard .meta { padding: 12px 12px 6px; }
.pcard .brand-line { display: flex; justify-content: space-between; font-size: 11px; font-family: var(--f-mono); color: var(--text-mid); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 4px; }
.pcard .ttl { display: block; font-size: 14px; font-weight: 600; color: var(--ink); line-height: 1.35; text-decoration: none; min-height: 38px; }
.pcard .ttl:hover { color: var(--cyan-deep); }
.pcard .sku { font-family: var(--f-mono); font-size: 11px; color: var(--text-mid); margin-top: 6px; }
.pcard .stock { display: flex; align-items: center; gap: 6px; padding: 0 12px; font-size: 12px; }
.pcard .stock .d { width: 7px; height: 7px; border-radius: 50%; background: var(--in-stock); }
.pcard .stock.stock--low .d { background: var(--low-stock); }
.pcard .stock.stock--out .d { background: var(--out-stock); }
.pcard .stock.stock--low { color: var(--low-stock); }
.pcard .stock.stock--out { color: var(--out-stock); }
.pcard .foot { display: flex; justify-content: space-between; align-items: center; padding: 8px 12px 12px; margin-top: auto; }
.pcard .price { font-family: var(--f-mono); font-size: 18px; font-weight: 700; color: var(--ink); display: flex; gap: 8px; align-items: baseline; }
.pcard .price small { font-size: 12px; font-weight: 500; color: var(--text-mute); text-decoration: line-through; }
.pcard .add { width: 32px; height: 32px; border-radius: var(--r-md); background: var(--ink); border: 0; color: #fff; display: grid; place-items: center; cursor: pointer; }
.pcard .add:hover { background: var(--cyan); }
.pcard .add .add-label { display: none; }
/* Mobile: full-width add-to-cart button with label under the price */
@media (max-width: 720px) {
  .pcard .foot { flex-direction: column; align-items: stretch; gap: 8px; }
  .pcard .add { width: 100%; height: 42px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; }
  .pcard .add .add-label { display: inline; font-family: var(--f-display); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.03em; }
}

/* ── PDP ── */
.pdp { padding: 8px 0 48px; }
.pdp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
@media (max-width: 980px) { .pdp-grid { grid-template-columns: 1fr; gap: 24px; } }
.gallery-main { position: relative; aspect-ratio: 1/1; background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--r-lg); display: grid; place-items: center; overflow: hidden; }
.gallery-main .pdp-img { max-width: 78%; max-height: 78%; object-fit: contain; mix-blend-mode: multiply; }
.pdp-badge { position: absolute; top: 18px; left: 18px; height: 24px; padding: 0 10px; font-family: var(--f-mono); font-weight: 600; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; margin-top: 12px; }
.gallery-thumbs .t { aspect-ratio: 1/1; background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--r-md); display: grid; place-items: center; cursor: pointer; overflow: hidden; }
.gallery-thumbs .t img { max-width: 70%; max-height: 70%; object-fit: contain; mix-blend-mode: multiply; }
.gallery-thumbs .t.is-active, .gallery-thumbs .t:hover { border-color: var(--ink); }
.trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 18px; }
.trust .tb { display: flex; gap: 10px; align-items: flex-start; padding: 12px; border: 1px solid var(--border); border-radius: var(--r-md); }
.trust .tb .t1 { font-size: 12.5px; font-weight: 600; color: var(--ink); line-height: 1.2; }
.trust .tb .t2 { font-size: 11px; color: var(--text-mid); line-height: 1.2; margin-top: 2px; }

.pdp-meta { display: flex; flex-direction: column; gap: 18px; }
.pdp-meta .brand-line { display: flex; gap: 8px; align-items: center; }
.pdp-meta .pdp-brand { font-size: 13px; font-weight: 700; color: var(--ink); }
.pdp-meta .flex-fill { flex: 1; }
.pdp-meta .rating { display: flex; gap: 4px; align-items: center; font-size: 12px; color: var(--text-mid); }
.pdp-meta .rating .mono b { color: var(--ink); font-weight: 600; }
.pdp-h1 { font-family: var(--f-display); font-weight: 800; font-size: 36px; line-height: 1.05; letter-spacing: -0.01em; color: var(--ink); margin: 0; text-transform: uppercase; }
.pdp-codes { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; font-size: 12px; color: var(--text-mid); }
.pdp-codes b { color: var(--ink); }
.btn-text-link { background: transparent; border: 0; padding: 0; font-size: 12px; color: var(--ink); text-decoration: underline; cursor: pointer; }
.sku-copy { display: inline-flex; align-items: center; text-decoration: none; }
.sku-copy .sku-copy-default { text-decoration: underline; }
.sku-copy .sku-copy-done { display: none; align-items: center; gap: 4px; color: var(--in-stock); font-weight: 700; }
.sku-copy .sku-copy-done svg { color: var(--in-stock); }
.sku-copy.is-copied .sku-copy-default { display: none; }
.sku-copy.is-copied .sku-copy-done { display: inline-flex; }

.compat-card { display: flex; gap: 14px; padding: 14px 16px; background: var(--cyan-soft); border: 1px solid var(--cyan-line); border-radius: var(--r-md); align-items: flex-start; }
.compat-card .ic { width: 32px; height: 32px; border-radius: 50%; background: var(--cyan); color: #fff; display: grid; place-items: center; flex-shrink: 0; }
.compat-card .txt strong { display: block; color: var(--ink); font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.compat-card .txt > div { font-size: 12.5px; color: var(--text-mid); line-height: 1.45; }
.compat-card--warn { background: rgba(208,131,0,0.08); border-color: rgba(208,131,0,0.25); }
.compat-card--warn .ic { background: var(--low-stock); }

.pdp-price { display: flex; gap: 14px; align-items: baseline; flex-wrap: wrap; padding: 4px 0; }
.pdp-price .now { font-family: var(--f-display); font-weight: 800; font-size: 40px; color: var(--ink); letter-spacing: -0.01em; }
.pdp-price .was { font-family: var(--f-mono); font-size: 18px; color: var(--text-mute); text-decoration: line-through; }
.pdp-price .save { font-family: var(--f-mono); font-size: 12px; color: var(--cyan-deep); background: var(--cyan-soft); padding: 4px 10px; border-radius: var(--r-sm); }
.pdp-tax { font-size: 13px; color: var(--text-mid); margin-top: -4px; }

.pdp-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.qty { display: flex; align-items: center; border: 1px solid var(--border-2); border-radius: var(--r-md); overflow: hidden; }
.qty button { width: 36px; height: 44px; border: 0; background: var(--bg); display: grid; place-items: center; cursor: pointer; color: var(--ink); }
.qty input { width: 50px; height: 44px; border: 0; text-align: center; font-family: var(--f-mono); font-size: 14px; font-weight: 600; background: var(--bg); color: var(--ink); }
.pdp-add { flex: 1; min-width: 180px; }
.pdp-fav { width: 52px; padding: 0; }
.pdp-stock { display: flex; gap: 8px; align-items: center; font-size: 13px; font-weight: 500; color: var(--in-stock); }
.pdp-stock .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--in-stock); }
.pdp-stock .dot.dot--low-stock { background: var(--low-stock); }
.pdp-stock .dot.dot--out { background: var(--out-stock); }
.pdp-spec-row { display: grid; grid-template-columns: 110px 1fr; gap: 14px; padding: 8px 0; border-bottom: 1px solid var(--line); font-size: 13px; }
.pdp-spec-row .k { color: var(--text-mid); }
.pdp-spec-row .v { color: var(--ink); }

.pdp-tabs { margin-top: 48px; }
.pdp-tabs .tabs { display: flex; gap: 6px; border-bottom: 1px solid var(--border); overflow-x: auto; overflow-y: hidden; align-items: flex-end; }
.pdp-tabs .tab { padding: 12px 20px; font-family: var(--f-display); font-weight: 600; font-size: 14px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text-mid); cursor: pointer; white-space: nowrap; border-radius: var(--r-md) var(--r-md) 0 0; transition: background 0.15s, color 0.15s; }
.pdp-tabs .tab:hover { color: var(--ink); }
.pdp-tabs .tab.is-active { background: var(--cyan); color: #fff; border-radius: var(--r-md); }
.pdp-tabs .panel { padding: 28px 0; display: none; font-size: 14px; line-height: 1.7; color: var(--text); }
.spec-table { width: 100%; border-collapse: collapse; max-width: 720px; }
.spec-table td { padding: 10px 14px; border-bottom: 1px solid var(--line); font-size: 13px; vertical-align: top; }
.spec-table td:first-child { color: var(--text-mid); width: 38%; }
.spec-table td:last-child { color: var(--ink); }
.rev-card { padding: 20px; border: 1px solid var(--border); border-radius: var(--r-md); }
.rev-score { display: flex; gap: 24px; align-items: center; }
.rev-num { font-size: 48px; font-weight: 700; color: var(--ink); }
.rev-stars { display: flex; gap: 2px; color: var(--cyan); }
.pdp-related { margin-top: 56px; }
.pdp-related .sec-head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 20px; }

/* ── Search hero ── */
.search-hero { padding: 36px 0 48px; color: #fff; }
.search-hero-form { display: flex; max-width: 100%; margin-top: 8px; }
.search-hero .lg-input { flex: 1; height: 56px; padding: 0 20px; font-size: 18px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); color: #fff; border-radius: var(--r-md) 0 0 var(--r-md); font-family: var(--f-mono); }
.search-hero .lg-input::placeholder { color: var(--text-on-dk2); }
.search-hero .lg-go { position: static; clip-path: none; flex: 0 0 auto; width: 56px; height: 56px; padding: 0; background: var(--cyan); border: 0; color: #fff; border-radius: 0 var(--r-md) var(--r-md) 0; cursor: pointer; display: grid; place-items: center; }
.search-hero-meta { display: flex; gap: 24px; margin-top: 24px; align-items: baseline; flex-wrap: wrap; color: var(--text-on-dk); font-size: 13px; }
.search-count { font-weight: 700; font-size: 18px; color: #fff; }
.search-query { color: var(--cyan); font-weight: 600; }
.search-filter-form .select { width: 100%; margin-top: 4px; }
.search-results-list { display: flex; flex-direction: column; gap: 10px; margin: 20px 0; }
.search-result-row { display: grid; grid-template-columns: 80px 1fr 140px; gap: 16px; padding: 12px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-md); align-items: center; text-decoration: none; color: var(--ink); }
.search-result-row:hover { border-color: var(--cyan); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(0,176,232,0.08); transition: all 0.15s; }
.search-result-row .ph { width: 80px; height: 80px; background: var(--bg-2); border-radius: var(--r-md); display: grid; place-items: center; overflow: hidden; }
.search-result-row .ph img { max-width: 80%; max-height: 80%; object-fit: contain; mix-blend-mode: multiply; }
.search-result-row .result-name { font-size: 15px; font-weight: 600; color: var(--ink); margin: 4px 0; }
.search-result-row .result-price { text-align: right; }
.search-result-row .result-price .mono { font-size: 18px; font-weight: 700; }
.brand-sku-line { font-size: 11px; color: var(--text-mid); text-transform: uppercase; letter-spacing: 0.04em; }
.top-match-card { padding: 20px; margin-bottom: 20px; border: 2px solid var(--cyan); }
.top-match-eyebrow { margin-bottom: 12px; }
.top-match-row { display: grid; grid-template-columns: 120px 1fr auto; gap: 20px; align-items: center; }
.top-match-img { width: 120px; height: 120px; background: var(--bg-2); border-radius: var(--r-md); display: grid; place-items: center; overflow: hidden; }
.top-match-img img { max-width: 82%; max-height: 82%; object-fit: contain; mix-blend-mode: multiply; }
.top-match-price { text-align: right; }
.top-match-price .price-now { font-size: 24px; font-weight: 700; color: var(--ink); }
.top-match-price .price-was { text-decoration: line-through; color: var(--text-mute); }
.stock--in-stock { color: var(--in-stock); }
.stock--low-stock { color: var(--low-stock); }
.stock--out { color: var(--out-stock); }

/* ── Cart ── */
.cart { display: grid; grid-template-columns: 1fr 380px; gap: 32px; padding: 8px 0 48px; }
@media (max-width: 980px) { .cart { grid-template-columns: 1fr; } }
.cart-vehicle-card { display: flex; align-items: center; gap: 12px; padding: 16px; margin-bottom: 16px; }
.cart-vehicle-ic { width: 36px; height: 36px; background: var(--bg-2); border-radius: 8px; display: grid; place-items: center; flex-shrink: 0; }
.cart-vehicle-info { flex: 1; }
.cart-vehicle-info .body-sm { color: var(--text-mid); font-size: 12px; }
.cart-vehicle-name { font-size: 14px; font-weight: 600; color: var(--ink); margin-top: 2px; }
.cart-line { display: grid; grid-template-columns: 96px 1fr 130px 100px 32px; gap: 16px; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--line); }
.cart-line .ph { width: 96px; height: 96px; background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--r-md); display: grid; place-items: center; overflow: hidden; }
.cart-line .ph img { max-width: 80%; max-height: 80%; object-fit: contain; mix-blend-mode: multiply; }
.cart-line .info .brand { font-family: var(--f-mono); font-size: 11px; color: var(--text-mid); text-transform: uppercase; }
.cart-line .info .name { display: block; font-size: 14px; font-weight: 600; color: var(--ink); margin: 4px 0; text-decoration: none; }
.cart-line .info .sku { font-family: var(--f-mono); font-size: 11px; color: var(--text-mid); }
.cart-line .info .line-chips { display: flex; gap: 6px; margin-top: 8px; flex-wrap: wrap; }
.cart-line .qty { height: 36px; }
.cart-line .qty button { width: 30px; height: 36px; }
.cart-line .qty input { width: 44px; height: 36px; font-size: 13px; }
.cart-line .price { font-family: var(--f-mono); font-size: 16px; font-weight: 700; color: var(--ink); text-align: right; }
.cart-line .rm { width: 32px; height: 32px; border-radius: var(--r-md); background: transparent; border: 0; color: var(--text-mid); display: grid; place-items: center; text-decoration: none; }
.cart-line .rm:hover { color: #C0392B; background: rgba(255,0,0,0.06); }
.cart-actions { display: flex; justify-content: space-between; align-items: center; margin-top: 20px; }

.summary { background: var(--bg-2); border-radius: var(--r-lg); padding: 24px 28px; align-self: start; position: sticky; top: 16px; }
.summary h3 { margin: 0 0 16px; font-size: 18px; font-weight: 700; color: var(--ink); }
.summary .promo { display: flex; gap: 8px; margin-bottom: 18px; }
.summary .promo .input { height: 40px; flex: 1; }
.summary .row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 13.5px; color: var(--text); align-items: center; }
.summary .row .v { font-family: var(--f-mono); font-weight: 600; color: var(--ink); }
.summary .row.tot { padding: 16px 0 8px; margin-top: 6px; border-top: 1px solid var(--border-2); }
.summary .row.tot span:first-child { font-family: var(--f-display); font-weight: 700; font-size: 16px; text-transform: uppercase; }
.summary .row.tot .v { font-family: var(--f-display); font-weight: 800; font-size: 32px; }
.summary-cta { margin-top: 20px; width: 100%; }
.summary-ssl { display: flex; align-items: center; gap: 8px; padding: 12px 0; border-top: 1px solid var(--border); margin-top: 16px; justify-content: center; color: var(--text-mid); }
.summary-pay { display: flex; gap: 6px; justify-content: center; margin-top: 8px; }
.summary-pay .pay-chip { padding: 4px 8px; border: 1px solid var(--border); border-radius: 4px; font-family: var(--f-mono); font-size: 10px; color: var(--text-mid); background: var(--bg); }

/* ── Checkout ── */
.checkout-header { padding: 24px 0 8px; display: flex; align-items: center; gap: 12px; }
.checkout-header .brand-mark { width: 34px; height: 34px; font-size: 17px; background: var(--cyan); color: #fff; display: grid; place-items: center; border-radius: var(--r-md); font-family: var(--f-display); font-weight: 800; }
.checkout { display: grid; grid-template-columns: 1fr 380px; gap: 32px; padding: 16px 0 64px; }
@media (max-width: 980px) { .checkout { grid-template-columns: 1fr; } }
.steps { display: flex; gap: 4px; margin-bottom: 20px; }
.step { flex: 1; display: flex; gap: 8px; align-items: center; padding: 12px 16px; border-radius: var(--r-md); background: var(--bg-2); font-size: 13px; color: var(--text-mid); }
.step .n { width: 24px; height: 24px; border-radius: 50%; background: var(--bg-3); color: var(--text-mid); display: grid; place-items: center; font-size: 12px; font-weight: 700; font-family: var(--f-mono); }
.step.is-active { background: var(--ink); color: #fff; }
.step.is-active .n { background: var(--cyan); color: #fff; }
.step.is-done { background: rgba(22,163,90,0.08); color: var(--in-stock); }
.step.is-done .n { background: var(--in-stock); color: #fff; }
.acc-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 24px; margin-bottom: 14px; }
.acc-card-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.acc-card .h4 { margin-top: 6px; font-size: 16px; font-weight: 700; color: var(--ink); }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.field label { font-size: 12px; font-weight: 500; color: var(--text-mid); }
.field .input, .field .select { height: 42px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field-row.three { grid-template-columns: 1fr 1fr 1fr; }
.checkout-summary-items { display: flex; flex-direction: column; gap: 14px; margin-bottom: 18px; }
.checkout-line-item { display: flex; gap: 12px; align-items: center; }
.cli-img { width: 48px; height: 48px; background: var(--bg); border-radius: var(--r-md); display: grid; place-items: center; position: relative; border: 1px solid var(--border); overflow: hidden; flex-shrink: 0; }
.cli-img img { max-width: 78%; max-height: 78%; object-fit: contain; mix-blend-mode: multiply; }
.cli-qty { position: absolute; top: -6px; right: -6px; width: 20px; height: 20px; border-radius: 50%; background: var(--ink); color: #fff; font-size: 11px; font-weight: 600; display: grid; place-items: center; }
.cli-info { flex: 1; min-width: 0; }
.cli-info .brand { font-size: 10px; color: var(--text-mid); text-transform: uppercase; }
.cli-info .name { font-size: 12px; font-weight: 600; color: var(--ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cli-price { font-weight: 700; font-size: 13px; color: var(--ink); }
.guarantee-card { display: flex; align-items: flex-start; gap: 8px; margin-top: 16px; padding: 12px; background: var(--bg); border-radius: var(--r-md); border: 1px solid var(--border); }
.guarantee-ic { color: var(--in-stock); flex-shrink: 0; margin-top: 2px; }

/* ── Account ── */
.account { display: grid; grid-template-columns: 240px 1fr; gap: 32px; padding: 8px 0 64px; }
@media (max-width: 980px) { .account { grid-template-columns: 1fr; } }
.account-side { display: flex; flex-direction: column; gap: 2px; }
.account-side .item { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border-radius: var(--r-md); color: var(--text); text-decoration: none; font-size: 14px; }
.account-side .item:hover { background: var(--bg-2); }
.account-side .item.is-active { background: var(--ink); color: #fff; }
.account-side .item.logout { color: var(--text-mid); margin-top: 8px; border-top: 1px solid var(--border); padding-top: 16px; border-radius: 0; }
.acc-vehicle-card { color: #fff; padding: 24px; border: 0; }
.acc-vehicle-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.acc-vehicle-name { font-family: var(--f-mono); font-size: 22px; font-weight: 700; color: #fff; margin: 8px 0 4px; letter-spacing: -0.01em; }
.acc-vehicle-meta { color: var(--text-on-dk2); }
.acc-vehicle-actions { display: flex; gap: 8px; }
.acc-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 14px; }
@media (max-width: 720px) { .acc-tiles { grid-template-columns: 1fr; } }
.acc-tile { display: block; padding: 18px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-lg); text-decoration: none; color: var(--ink); transition: all 0.15s; }
.acc-tile:hover { border-color: var(--cyan); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,176,232,0.08); }
.acc-tile-ic { width: 40px; height: 40px; background: var(--bg-2); border-radius: var(--r-md); display: grid; place-items: center; color: var(--ink); }
.acc-tile-name { margin-top: 12px; font-weight: 700; font-size: 15px; }
.acc-tile-sub { color: var(--text-mid); margin-top: 4px; }
.orders-table-head { display: grid; grid-template-columns: 1fr 120px 100px 120px 100px; gap: 16px; padding: 0 0 10px; font-size: 11px; color: var(--text-mid); font-family: var(--f-mono); text-transform: uppercase; letter-spacing: 0.04em; border-bottom: 1px solid var(--border); }
.orders-table-head .ta-right { text-align: right; }
.order-row { display: grid; grid-template-columns: 1fr 120px 100px 120px 100px; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); align-items: center; font-size: 13px; }
.order-row .onum { font-family: var(--f-mono); font-weight: 700; color: var(--ink); }
.order-row .date { color: var(--text-mid); font-size: 13px; }
.order-row .total { text-align: right; font-family: var(--f-mono); font-weight: 700; color: var(--ink); }

/* ── Auth (login + register) ── */
.auth-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding: 8px 0 64px; }
@media (max-width: 720px) { .auth-grid { grid-template-columns: 1fr; } }
.auth-form { display: grid; gap: 14px; padding: 8px 0 48px; }
.auth-actions { display: flex; justify-content: space-between; align-items: center; margin-top: 12px; }

/* ── Vehicle selector ── */
.vsel-stage { padding: 48px 32px; border-radius: var(--r-xl); margin: 16px 0 48px; color: #fff; position: relative; overflow: hidden; }
.vsel-head { display: grid; grid-template-columns: 1.4fr 1fr; gap: 24px; align-items: end; margin-bottom: 36px; }
.vsel-head-text .eyebrow { color: var(--cyan); }
.vsel-head .display-xl { font-family: var(--f-display); font-weight: 900; font-size: 80px; line-height: 0.92; letter-spacing: -0.02em; color: #fff; text-transform: uppercase; margin: 12px 0 14px; }
.vsel-lead { color: var(--text-on-dk); max-width: 480px; font-size: 15px; line-height: 1.55; margin: 0; }
.vsel-head-cta { display: flex; flex-direction: column; gap: 8px; align-items: flex-end; }
@media (max-width: 980px) { .vsel-head { grid-template-columns: 1fr; } .vsel-head-cta { align-items: flex-start; } .vsel-head .display-xl { font-size: 48px; } }

.vsel-progress { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 24px; }
.vsel-pcard { padding: 16px; border-radius: var(--r-md); background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); }
.vsel-pcard.is-active { background: rgba(0,176,232,0.12); border-color: var(--cyan); }
.vsel-pcard.is-done { background: rgba(22,163,90,0.1); border-color: var(--in-stock); }
.vsel-pcard-n { display: inline-grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,0.1); color: #fff; font-family: var(--f-mono); font-size: 13px; font-weight: 700; }
.vsel-pcard.is-active .vsel-pcard-n { background: var(--cyan); }
.vsel-pcard.is-done .vsel-pcard-n { background: var(--in-stock); }
.vsel-pcard-lbl { font-size: 12px; color: var(--text-on-dk2); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 10px; }
.vsel-pcard-val { font-family: var(--f-mono); font-size: 14px; font-weight: 600; color: #fff; margin-top: 4px; }

.vsel-divider { height: 1px; background: rgba(255,255,255,0.1); margin: 28px 0; }
.vsel-options { margin-bottom: 24px; }
.vsel-grid { display: grid; gap: 10px; }
.vsel-grid-4 { grid-template-columns: repeat(4, 1fr); }
.vsel-grid-6 { grid-template-columns: repeat(6, 1fr); }
@media (max-width: 980px) { .vsel-grid-4 { grid-template-columns: repeat(2, 1fr); } .vsel-grid-6 { grid-template-columns: repeat(3, 1fr); } }
.vsel-card { display: block; padding: 18px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--r-md); text-decoration: none; color: #fff; cursor: pointer; transition: all 0.15s; }
.vsel-card:hover { background: rgba(0,176,232,0.1); border-color: var(--cyan); transform: translateY(-2px); }
.vsel-card-name { font-size: 16px; font-weight: 700; color: #fff; letter-spacing: -0.01em; }
.vsel-card-meta { color: var(--text-on-dk2); margin-top: 4px; font-size: 12px; }
.vsel-year-tile { display: grid; place-items: center; padding: 18px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--r-md); color: #fff; text-decoration: none; font-family: var(--f-mono); font-size: 18px; font-weight: 600; cursor: pointer; transition: all 0.15s; }
.vsel-year-tile:hover { background: var(--cyan); color: var(--ink); border-color: var(--cyan); }
.vsel-engine-form { margin: 0; }
.vsel-engine-card { width: 100%; text-align: left; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); cursor: pointer; }
.vsel-actions { display: flex; justify-content: space-between; }
.btn--ghost-light { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.2); }
.btn--ghost-light:hover { background: rgba(255,255,255,0.06); }

/* ── Generic chips for sub-pages ── */
.chip--green { background: rgba(22,163,90,0.12); color: var(--in-stock); border-color: rgba(22,163,90,0.2); }
.chip--amber { background: rgba(208,131,0,0.12); color: var(--low-stock); border-color: rgba(208,131,0,0.2); }
.chip--outline { background: var(--bg); color: var(--ink); border: 1px solid var(--border); }
.chip--red { background: rgba(255,0,0,0.08); color: #C0392B; border-color: rgba(255,0,0,0.18); }

/* ── App main wrapper ── */
.app-main { min-height: 40vh; }
.btn--block { width: 100%; display: block; }

/* ── Vbar select / minor ── */
.vbar-summary { display: flex; align-items: center; gap: 10px; flex: 1; }
.vbar-detail { font-size: 13px; font-weight: 600; color: var(--ink); }
.vbar-clear { background: transparent; color: var(--text-mid); }

/* ═══════════════════════════════════════════════════════════════════════
   STRATOUDAKIS — Brand-tile BEM variants (v0.3)
   The original styles.css uses .brand-tile.dark/.cyan; templates use the
   BEM variants .brand-tile--dark/--cyan/--light + .bt-mark/.bt-meta etc.
   These rules bridge that gap.
   ═══════════════════════════════════════════════════════════════════════ */

.brand-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 980px) { .brand-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .brand-grid { grid-template-columns: 1fr; } }

.brand-tile { color: var(--ink); text-decoration: none; }
.brand-tile--dark  { background: var(--carbon); color: #fff; }
.brand-tile--dark::before {
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 5px);
}
.brand-tile--cyan  { background: var(--cyan); color: #fff; }
.brand-tile--cyan::before {
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.06) 0 1px, transparent 1px 5px);
}
.brand-tile--light { background: var(--bg-2); color: var(--ink); }

.brand-tile .bt-mark {
  font-family: var(--f-display); font-weight: 900; font-size: 56px;
  line-height: 0.9; letter-spacing: -0.02em; text-transform: uppercase;
  margin-bottom: auto;
}
.brand-tile--dark .bt-mark { color: #fff; }
.brand-tile--cyan .bt-mark { color: #fff; }
.brand-tile--light .bt-mark { color: var(--ink); }

.brand-tile .bt-meta {
  display: flex; flex-direction: column; gap: 6px;
  font-family: var(--f-display); font-weight: 600;
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em;
}
.brand-tile--dark .bt-meta  { color: rgba(255,255,255,0.65); }
.brand-tile--cyan .bt-meta  { color: rgba(255,255,255,0.85); }
.brand-tile--light .bt-meta { color: var(--text-mid); }

.brand-tile .bt-tagline { font-weight: 500; letter-spacing: 0; text-transform: none; font-family: var(--f-body); font-size: 13px; }
.brand-tile--dark .bt-tagline  { color: rgba(255,255,255,0.7); }
.brand-tile--cyan .bt-tagline  { color: rgba(255,255,255,0.9); }

.brand-tile .bt-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--f-display); font-weight: 700; font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.brand-tile--dark .bt-cta { color: var(--cyan); }
.brand-tile--cyan .bt-cta { color: #fff; }
.brand-tile--light .bt-cta { color: var(--ink); }

.brand-tile:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,176,232,0.16); }

/* Inside the dark .vsel-stage, give the light brand-tile variant a subtle outline so it isn't blinding */
.vsel-stage .brand-tile--light { background: rgba(255,255,255,0.96); }
.vsel-stage .brand-tile { aspect-ratio: 1.2/1; padding: 20px; }
.vsel-stage .brand-tile .bt-mark { font-size: 44px; }

/* Sec-head helpers */
.sec-head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 24px; gap: 24px; flex-wrap: wrap; }
.sec-head > .eyebrow,
.sec-head > .eyebrow--cyan { width: 100%; order: -1; margin-bottom: 0; }
.sec-head > h2, .sec-head > .h2 { margin: 0; }
.sec-head .eyebrow--cyan { color: var(--cyan); }
.sec-head > div .eyebrow { margin-bottom: 4px; }

/* Vehicle bar — make sure it has decent contrast when on white pages */
.vbar { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 12px 0; }
.vbar-inner { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.vbar-label { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-mid); font-weight: 500; }
.vbar-label .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); animation: vbarPulse 2s ease-in-out infinite; }
@keyframes vbarPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.vbar-selects { display: flex; gap: 6px; flex: 1; max-width: 720px; }
.vbar-selects .select { height: 36px; min-width: 130px; flex: 1; font-size: 13px; padding: 0 10px; border: 1px solid var(--border-2); border-radius: var(--r-md); background: var(--bg); color: var(--ink); }
.vbar-summary { font-size: 13px; }
.chip { display: inline-flex; align-items: center; gap: 4px; padding: 0 10px; height: 22px; border-radius: 4px; background: var(--bg-3); color: var(--ink); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; border: 1px solid transparent; }
.chip--dark { background: var(--ink); color: #fff; }
.chip--cyan { background: var(--cyan); color: #fff; }
.chip a { color: inherit; }

/* btn variants used everywhere */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 0 18px; height: 40px; font-family: var(--f-display); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 0.04em; border-radius: var(--r-md); border: 1px solid transparent; cursor: pointer; text-decoration: none; transition: all 0.15s; }
.btn--primary { background: var(--cyan); color: #fff; }
.btn--primary:hover { background: var(--cyan-deep); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--carbon-2); }
.btn--ghost { background: var(--bg); color: var(--ink); border-color: var(--border-2); }
.btn--ghost:hover { background: var(--bg-2); }
.btn--sm { height: 32px; padding: 0 12px; font-size: 12px; }
.btn--lg { height: 48px; padding: 0 22px; font-size: 14px; }

/* Eyebrow */
.eyebrow { font-family: var(--f-display); font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-mid); }
.eyebrow--cyan { color: var(--cyan-deep); }
.eyebrow--white { color: rgba(255,255,255,0.5); }

/* Body text helpers */
.body { font-family: var(--f-body); font-size: 14px; line-height: 1.55; color: var(--text); }
.body-sm { font-family: var(--f-body); font-size: 12.5px; line-height: 1.5; color: var(--text-mid); }
.mono { font-family: var(--f-mono); }

/* Headings */
.h1 { font-family: var(--f-display); font-weight: 800; font-size: 40px; line-height: 1.0; letter-spacing: -0.01em; color: var(--ink); text-transform: uppercase; }
.h2 { font-family: var(--f-display); font-weight: 700; font-size: 38px; line-height: 1; letter-spacing: -0.005em; color: var(--ink); text-transform: uppercase; }
.h3 { font-family: var(--f-body); font-weight: 600; font-size: 20px; line-height: 1.2; color: var(--ink); }
.h4 { font-family: var(--f-body); font-weight: 600; font-size: 15px; line-height: 1.3; color: var(--ink); }
.display { font-family: var(--f-display); font-weight: 800; }

@media (max-width: 720px) {
  .h1 { font-size: 36px; }
  .h2 { font-size: 28px; }
}


/* ═══════════════════════════════════════════════════════════════════════
   STRATOUDAKIS — v0.4 — additional fixes
   ═══════════════════════════════════════════════════════════════════════ */

/* Stats strip (homepage) */
.stats { padding: 36px 0; background: var(--bg); border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stats-grid .stat { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 4px; }
.stats-grid .stat-num { font-family: var(--f-display); font-weight: 800; font-size: 48px; line-height: 1; color: var(--ink); letter-spacing: -0.02em; }
.stats-grid .stat-lbl { font-size: 12px; color: var(--text-mid); text-transform: uppercase; letter-spacing: 0.06em; }
@media (max-width: 720px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; } .stats-grid .stat-num { font-size: 32px; } }

/* Promise marquee — cyan strip */
.promise-marquee { background: var(--cyan); color: #fff; overflow: hidden; padding: 14px 0; position: relative; }
.promise-marquee::before, .promise-marquee::after { content: none; }
.promise-track { display: flex; gap: 48px; white-space: nowrap; animation: promiseScroll 30s linear infinite; }
.promise-item { font-family: var(--f-display); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; }
@keyframes promiseScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Story block (carbon dark) */
.story { padding: 80px 0; color: #fff; }
.story-inner { max-width: 880px; }
.story-h { font-family: var(--f-display); font-weight: 800; font-size: 48px; line-height: 1.05; color: #fff; text-transform: uppercase; margin: 12px 0 18px; letter-spacing: -0.01em; }
.story-p { color: var(--text-on-dk); font-size: 16px; line-height: 1.65; max-width: 720px; margin: 0 0 36px; }
.story-timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.1); }
.story-timeline > div { display: flex; flex-direction: column; }
.story-timeline .display { font-size: 32px; font-weight: 800; color: #fff; margin-bottom: 6px; }

/* Value props grid */
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.value-card { background: var(--bg-2); border-radius: var(--r-lg); padding: 24px; }
.value-card:hover { background: var(--bg-3); transform: translateY(-2px); transition: all 0.2s; }
.value-ic { width: 48px; height: 48px; background: #fff; border-radius: var(--r-md); display: grid; place-items: center; color: var(--cyan); margin-bottom: 14px; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.value-h { font-family: var(--f-display); font-weight: 700; font-size: 16px; color: var(--ink); text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 6px; }
.value-p { font-size: 13px; line-height: 1.5; color: var(--text-mid); margin: 0; }
@media (max-width: 980px) { .value-grid { grid-template-columns: repeat(2, 1fr); } .story-timeline { grid-template-columns: repeat(2, 1fr); } }

/* Section helper */
.section { padding: 56px 0; }
.section--soft { background: var(--bg-2); }

/* Homepage brand-tile sizing — was sliced by aspect-ratio mismatch */
.brand-grid .brand-tile { aspect-ratio: 1/0.85; min-height: 180px; }
.brand-grid .brand-tile .bt-mark { font-size: 48px; }
@media (max-width: 720px) {
  .brand-grid .brand-tile { aspect-ratio: auto; min-height: 120px; }
  .brand-grid .brand-tile .bt-mark { font-size: 36px; }
}

/* ═══════════════════════════════════════════════════════════════════════
   STRATOUDAKIS — v0.5 — width + menu + hero + quickcheckout
   ═══════════════════════════════════════════════════════════════════════ */

/* Wider container — design's 1320 felt cramped on modern displays */
.container { max-width: 1600px !important; padding: 0 32px; }
@media (max-width: 1200px) { .container { padding: 0 24px; } }
@media (max-width: 720px)  { .container { padding: 0 16px; } }

/* ── Mainnav mega menu ── */
.mainnav { position: relative; z-index: 50; }
.nav-item--cta { position: relative; cursor: pointer; }
.megamenu {
  position: absolute; top: 100%; left: 0; right: 0;
  background: #fff; border-top: 2px solid var(--cyan);
  box-shadow: 0 24px 48px rgba(0,0,0,0.16);
  padding: 32px 0; display: none; z-index: 100;
}
.mainnav .nav-item--cta:hover .megamenu,
.megamenu:hover,
.megamenu.is-open { display: block; }
.megamenu-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  max-width: 1600px; margin: 0 auto; padding: 0 32px;
}
.megamenu-col h5 {
  font-family: var(--f-display); font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--ink); margin: 0 0 12px;
  padding-bottom: 10px; border-bottom: 1px solid var(--border);
}
.megamenu-col a {
  display: flex; align-items: center; gap: 10px;
  padding: 7px 0; font-size: 13px; color: var(--text); text-decoration: none;
}
.megamenu-col a:hover { color: var(--cyan-deep); }
.megamenu-col .ct {
  font-family: var(--f-mono); font-size: 11px; color: var(--text-mute);
  margin-left: auto;
}

/* ── Hero slideshow — pure CSS like the design (override Swiper) ── */
.heroshow {
  position: relative; width: 100%; height: 640px;
  background: var(--carbon); overflow: hidden; isolation: isolate;
}
.heroshow .swiper-wrapper {
  position: absolute; inset: 0; transform: none !important;
  display: block; width: 100%; height: 100%;
}
.heroshow .swiper-slide {
  position: absolute !important; inset: 0;
  width: 100% !important; height: 100% !important;
  opacity: 0; pointer-events: none;
  transition: opacity 700ms cubic-bezier(0.4, 0, 0.2, 1);
  display: grid !important;
  grid-template-columns: 62fr 38fr;
  transform: none !important;
}
.heroshow .swiper-slide-active,
.heroshow .swiper-slide.is-active {
  opacity: 1; pointer-events: auto; z-index: 1;
}
.heroshow .hs-image {
  position: relative; overflow: hidden; background: #000;
  background-size: cover; background-position: center;
}
.heroshow .hs-image::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, transparent 60%, rgba(10,10,12,0.85) 100%),
    radial-gradient(ellipse at 30% 60%, transparent 0%, rgba(0,0,0,0.4) 100%);
  pointer-events: none;
}
.heroshow .hs-image.is-placeholder {
  background-color: #0c0c10;
  background-image:
    radial-gradient(ellipse at 30% 50%, rgba(0,176,232,0.12) 0%, transparent 55%),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.022) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 5px);
}
.heroshow .hs-image .ph-mark {
  position: absolute; left: 8%; bottom: 8%;
  font-family: var(--f-display); font-weight: 900; font-size: 280px;
  color: rgba(255,255,255,0.05); letter-spacing: -0.04em; line-height: 0.85;
  text-transform: uppercase; pointer-events: none; white-space: nowrap;
}
.heroshow .hs-image .ph-tag {
  position: absolute; left: 8%; top: 8%;
  font-family: var(--f-display); font-weight: 600; font-size: 11px;
  color: rgba(255,255,255,0.3); letter-spacing: 0.2em; text-transform: uppercase;
}
.heroshow .hs-text {
  position: relative;
  padding: 64px 56px 64px 80px;
  display: flex; flex-direction: column; justify-content: center;
  color: #fff; background-color: var(--carbon);
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.022) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.038) 0 1px, transparent 1px 5px);
}
.heroshow .hs-text::before {
  content: ""; position: absolute; top: 0; bottom: 0; left: -60px;
  width: 100px; background-color: var(--carbon);
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.022) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.038) 0 1px, transparent 1px 5px);
  clip-path: polygon(60px 0, 100px 0, 40px 100%, 0 100%);
}
.heroshow .hs-text::after {
  content: ""; position: absolute; top: 0; bottom: 0; left: -8px;
  width: 3px; background: var(--cyan); transform: skewX(-22deg); z-index: 2;
}
.heroshow .hs-eyebrow {
  font-family: var(--f-display); font-weight: 700; font-size: 12px;
  letter-spacing: 0.16em; color: var(--cyan-bright);
  text-transform: uppercase;
  display: flex; align-items: center; gap: 10px; margin-bottom: 20px;
}
.heroshow .hs-title {
  font-family: var(--f-display); font-weight: 900; font-size: 60px;
  line-height: 0.95; letter-spacing: -0.005em; color: #fff;
  text-transform: uppercase; margin: 0;
}
.heroshow .hs-brand {
  font-family: var(--f-display); font-weight: 900; font-size: 96px;
  line-height: 0.95; letter-spacing: -0.01em; color: var(--cyan);
  text-transform: uppercase; margin: 16px 0 0; display: block;
}
.heroshow .hs-cta {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 36px; align-self: flex-start;
  padding: 16px 28px; background: var(--cyan); color: #fff;
  font-family: var(--f-display); font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.08em;
  border: none; cursor: pointer; text-decoration: none;
}
.heroshow .hs-cta:hover { background: var(--cyan-deep); }
.heroshow .hs-counter {
  position: absolute; right: 32px; top: 32px; z-index: 5;
  color: #fff; font-family: var(--f-mono);
}
.heroshow .hs-counter .now { font-size: 28px; font-weight: 700; }
.heroshow .hs-counter .tot { font-size: 14px; color: rgba(255,255,255,0.5); }
.heroshow .hs-arrows {
  position: absolute; right: 32px; bottom: 32px; z-index: 5;
  display: flex; gap: 8px;
}
.heroshow .hs-arrow {
  width: 44px; height: 44px; border: 1px solid rgba(255,255,255,0.2);
  background: transparent; color: #fff; display: grid; place-items: center;
  cursor: pointer;
}
.heroshow .hs-arrow:hover { background: var(--cyan); border-color: var(--cyan); }
.heroshow .hs-dots {
  position: absolute; left: 50%; transform: translateX(-50%); bottom: 32px; z-index: 5;
  display: flex; gap: 6px;
}
.heroshow .hs-dot, .heroshow .swiper-pagination-bullet {
  width: 32px; height: 3px; background: rgba(255,255,255,0.2);
  border: 0; cursor: pointer; padding: 0; border-radius: 0; opacity: 1;
}
.heroshow .swiper-pagination-bullet-active, .heroshow .hs-dot.is-active { background: var(--cyan); }

@media (max-width: 1024px) {
  .heroshow { height: 480px; }
  .heroshow .hs-title { font-size: 36px; }
  .heroshow .hs-brand { font-size: 56px; }
  .heroshow .hs-text { padding: 32px 24px 32px 56px; }
}
@media (max-width: 720px) {
  .heroshow .swiper-slide { grid-template-columns: 1fr; }
  .heroshow .hs-image { display: none; }
  .heroshow .hs-text { padding: 24px; }
  .heroshow .hs-text::before, .heroshow .hs-text::after { display: none; }
}

/* ── QuickCheckout extension theming overrides ── */
.quickcheckout-content { background: var(--bg); padding: 24px 0; }
#quickcheckout { display: grid; grid-template-columns: 1fr 380px; gap: 32px; padding: 16px 0 64px; }
@media (max-width: 980px) { #quickcheckout { grid-template-columns: 1fr; } }
#quickcheckout .panel,
#quickcheckout .panel-default {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 24px; margin-bottom: 14px; box-shadow: none;
}
#quickcheckout .panel-heading,
#quickcheckout legend {
  font-family: var(--f-display); font-weight: 700; font-size: 16px;
  text-transform: uppercase; letter-spacing: 0.04em; color: var(--ink);
  padding: 0 0 12px; margin: 0 0 16px; background: transparent;
  border: 0; border-bottom: 1px solid var(--border);
}
#quickcheckout .panel-body { padding: 0; background: transparent; }
#quickcheckout input.form-control,
#quickcheckout select.form-control,
#quickcheckout textarea.form-control {
  height: 42px; padding: 0 12px; border: 1px solid var(--border-2);
  border-radius: var(--r-md); font-size: 14px; background: var(--bg);
}
#quickcheckout textarea.form-control { height: auto; min-height: 80px; padding: 12px; }
#quickcheckout .form-group { margin-bottom: 14px; }
#quickcheckout .control-label {
  font-size: 12px; font-weight: 500; color: var(--text-mid);
  text-transform: none; letter-spacing: 0;
}
#quickcheckout .btn,
#quickcheckout button[type="button"],
#quickcheckout button[type="submit"] {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  height: 44px; padding: 0 22px; border-radius: var(--r-md);
  font-family: var(--f-display); font-weight: 600; font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.04em;
  background: var(--ink); color: #fff; border: 0; cursor: pointer;
}
#quickcheckout .btn-primary, #quickcheckout #button-confirm {
  background: var(--cyan); color: #fff;
}
#quickcheckout .btn-primary:hover, #quickcheckout #button-confirm:hover { background: var(--cyan-deep); }
#quickcheckout .radio, #quickcheckout .checkbox { margin: 8px 0; }
#quickcheckout .alert { border-radius: var(--r-md); }
#quickcheckout table { border-collapse: collapse; width: 100%; }
#quickcheckout table td, #quickcheckout table th { padding: 10px 8px; border-bottom: 1px solid var(--line); font-size: 13px; }
#quickcheckout table thead th { font-family: var(--f-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; font-size: 11px; color: var(--text-mid); }
#confirm-checkout { background: var(--bg-2); padding: 24px 28px; border-radius: var(--r-lg); position: sticky; top: 16px; }
#confirm-checkout h3 { margin: 0 0 16px; font-family: var(--f-display); font-weight: 700; font-size: 18px; text-transform: uppercase; color: var(--ink); }
.quickcheckout-table .product-image img { width: 48px; height: 48px; object-fit: contain; background: var(--bg); border-radius: var(--r-md); border: 1px solid var(--border); }

/* Wider brand-tile grid since container is wider now */
.brand-grid .brand-tile { aspect-ratio: 1.1/0.9; }

/* Story timeline bigger */
.story { padding: 96px 0; }
.story-timeline .display { font-size: 36px; }

/* ═══════════════════════════════════════════════════════════════════════
   STRATOUDAKIS — v0.6 — class-alias fixes (template uses BEM names that
   the original CSS doesn't define). Footer logo size cap.
   ═══════════════════════════════════════════════════════════════════════ */

/* Cat-tile alias: templates use cat-tile-ic / cat-tile-name / cat-tile-count */
.cat-tile { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; min-height: 160px; }
.cat-tile-ic {
  width: 72px; height: 72px;
  display: grid; place-items: center;
  margin: 0 auto 8px;
  color: var(--ink);
  transition: color 200ms ease, transform 200ms ease;
}
.cat-tile:hover .cat-tile-ic { color: var(--cyan); transform: scale(1.05); }
.cat-tile-name {
  font-family: var(--f-display); font-weight: 700; font-size: 13px;
  color: var(--ink); text-transform: uppercase; letter-spacing: 0.04em;
  text-align: center;
}
.cat-tile-count {
  font-family: var(--f-mono); font-size: 11px; color: var(--text-mid);
  margin-top: 4px; text-align: center;
}

/* Footer logo — was rendering at natural size (too big). Cap it. */
.ftr-logo-wrap { margin-bottom: 20px; }
.ftr-logo { height: 56px !important; width: auto !important; display: block; }
.ftr-about { color: rgba(255,255,255,0.65); font-size: 13px; line-height: 1.65; max-width: 320px; margin: 12px 0 0; }
.ftr-social { display: flex; gap: 10px; margin-top: 20px; }
.ftr-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: grid; place-items: center;
  color: #fff;
}
.ftr-social a:hover { background: var(--cyan); }
.ftr-bottom { padding: 18px 0; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; align-items: center; color: var(--text-on-dk2); font-size: 12.5px; flex-wrap: wrap; gap: 12px; }
.ftr-bottom-links { display: flex; gap: 20px; }
.ftr-bottom-links a { color: var(--text-on-dk2); }
.ftr-bottom-links a:hover { color: var(--cyan); }

/* Mainnav layout cleanup so items distribute nicely across wider container */
.mainnav-inner { display: flex; align-items: stretch; height: 54px; gap: 0; flex-wrap: nowrap; }
.mainnav-inner > .nav-item { display: inline-flex; align-items: center; gap: 6px; padding: 0 18px; height: 54px; font-family: var(--f-display); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--ink); text-decoration: none; border-right: 1px solid var(--line); position: relative; }
.mainnav-inner > .nav-item:hover { color: var(--cyan-deep); background: rgba(0,176,232,0.04); }
.mainnav-inner > .nav-item.is-active { color: var(--ink); }
.mainnav-inner > .nav-item.is-active::after { content: ''; position: absolute; left: 18px; right: 18px; bottom: 0; height: 2px; background: var(--cyan); }
.mainnav-inner > .nav-item--cta {
  background: var(--ink); color: #fff; padding: 0 22px;
  font-weight: 700; border-right: 0;
}
.mainnav-inner > .nav-item--cta:hover { background: var(--carbon-2); color: #fff; }
.mainnav-inner > .nav-item-spacer { flex: 1; border-right: 0; }
.mainnav-inner > .nav-item-right {
  margin-left: auto; padding: 0 16px;
  color: var(--cyan-deep); font-weight: 700;
}

/* Section heading layout — eyebrow above h2, both LEFT aligned (was breaking on wide layouts) */
.sec-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 24px; }
.sec-head > .sec-head-text,
.sec-head > div:first-child {
  display: flex; flex-direction: column; gap: 4px;
}
.sec-head .eyebrow, .sec-head .eyebrow--cyan { margin-bottom: 0; }
.sec-head .h2, .sec-head h2 { margin: 4px 0 0; }
/* Direct-child h2 sitting next to eyebrow shouldn't be pushed right */
.sec-head > .h2:last-child:not(:only-child) { margin-left: 0; }

/* ── Homepage product grid responsive: 5 → 4 → 3 → 2 → 1 ── */
.products.cols-5,
.home-products { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
@media (max-width: 1400px) { .products.cols-5, .home-products { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 1100px) { .products.cols-5, .home-products { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .products.cols-5, .home-products { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .products.cols-5, .home-products { grid-template-columns: 1fr; } }


/* ═══════════════════════════════════════════════════════════════════════
   STRATOUDAKIS — v0.7 — story section + 100% mobile-friendly + topbar fix
   ═══════════════════════════════════════════════════════════════════════ */

/* ── Topbar lighter gray (separate visually from main header) ── */
.topbar { background: #1A1A20 !important; border-bottom: 1px solid #2A2A30; color: rgba(255,255,255,0.72); font-size: 12px; padding: 8px 0; }
.topbar .container { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.topbar a { color: rgba(255,255,255,0.78); text-decoration: none; }
.topbar a:hover { color: var(--cyan); }
.topbar .links { display: flex; align-items: center; gap: 14px; flex: 0 0 auto; }
.topbar .spacer { flex: 1; }
.topbar .b2b { background: var(--cyan); color: #fff !important; padding: 4px 10px; border-radius: 3px; font-family: var(--f-display); font-weight: 700; }
.topbar .b2b:hover { background: var(--cyan-deep); }
.topbar .tb-tag { color: var(--cyan-bright); font-family: var(--f-display); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; font-size: 11px; }

/* ── Mainnav button "ΟΛΑ ΤΑ ΑΝΤΑΛΛΑΚΤΙΚΑ" — single line + prettier ── */
.mainnav-inner > .nav-item,
.mainnav-inner > .nav-item--cta { white-space: nowrap; }
.mainnav-inner > .nav-item--cta {
  background: var(--ink); color: #fff;
  padding: 0 22px; height: 54px;
  font-weight: 700; font-size: 13px;
  display: inline-flex; align-items: center; gap: 8px;
  border-right: 0; position: relative;
  text-transform: uppercase; letter-spacing: 0.04em;
  cursor: pointer; transition: background 0.15s;
}
.mainnav-inner > .nav-item--cta:hover { background: var(--cyan); color: #fff; }
.mainnav-inner > .nav-item--cta::after {
  content: ''; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 0; height: 0; border-top: 27px solid transparent; border-bottom: 27px solid transparent;
  border-left: 14px solid var(--ink);
  pointer-events: none;
}
.mainnav-inner > .nav-item--cta:hover::after { border-left-color: var(--cyan); }
.mainnav-inner > .nav-item--cta > svg { flex: 0 0 auto; color: var(--cyan); }
.mainnav-inner > .nav-item--cta:hover > svg { color: #fff; }
.mainnav-inner > .nav-item-right { margin-left: auto; color: var(--cyan-deep); font-weight: 700; }

/* ── Story section card ── */
.story-section { padding: 64px 0; }
.story-card {
  border-radius: var(--r-xl);
  padding: 56px 56px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.story-card::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0 1px, transparent 1px 6px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 6px);
  pointer-events: none; z-index: 0;
}
.story-grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 56px; align-items: center;
  position: relative; z-index: 1;
}
.story-text .eyebrow { color: rgba(255,255,255,0.5); margin-bottom: 16px; letter-spacing: 0.16em; }
.story-h {
  font-family: var(--f-display); font-weight: 800; font-size: 48px;
  line-height: 1.05; letter-spacing: -0.005em; color: #fff;
  text-transform: uppercase; margin: 0 0 18px;
}
.story-p { color: rgba(255,255,255,0.72); font-size: 15px; line-height: 1.65; margin: 0 0 28px; max-width: 520px; }
.story-stats { display: flex; gap: 32px; margin-bottom: 32px; flex-wrap: wrap; }
.ss-item { display: flex; flex-direction: column; gap: 4px; }
.ss-num.display { font-family: var(--f-display); font-weight: 800; font-size: 40px; line-height: 1; color: #fff; letter-spacing: -0.02em; }
.ss-lbl { font-size: 12px; color: rgba(255,255,255,0.55); text-transform: lowercase; letter-spacing: 0.02em; }
.story-cta { background: var(--cyan); color: #fff !important; }

/* ── Story timeline ── */
.story-timeline-card {
  background: rgba(0,0,0,0.25); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg); padding: 56px 36px;
  display: flex; align-items: center; justify-content: center;
  min-height: 240px;
}
.timeline-rail {
  display: flex; justify-content: space-between; align-items: center;
  position: relative; width: 100%;
}
.timeline-line {
  position: absolute; top: 50%; left: 14px; right: 14px;
  height: 1px; background: rgba(255,255,255,0.18); transform: translateY(-50%);
}
.t-step {
  position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center;
  gap: 18px; flex: 1;
}
.t-year { font-family: var(--f-mono); font-size: 13px; font-weight: 700; color: #fff; }
.t-dot {
  width: 14px; height: 14px; border-radius: 50%; background: #fff;
  border: 3px solid rgba(255,255,255,0.18);
  box-shadow: 0 0 0 4px rgba(0,0,0,0.4);
}
.t-step.is-current .t-dot { background: #FF3B30; border-color: rgba(255,59,48,0.4); }
.t-step.is-current .t-year { color: #FF3B30; }
.t-lbl { font-size: 11px; color: rgba(255,255,255,0.7); text-align: center; white-space: nowrap; }

/* ═══════════════════════════════════════════════════════════════════════
   MOBILE-FRIENDLY — 100% responsive across all pages
   ═══════════════════════════════════════════════════════════════════════ */

/* Tablets (1024px) */
@media (max-width: 1024px) {
  .container { padding: 0 20px; }

  /* Header */
  .topbar .tb-loc, .topbar .tb-hours { display: none; }
  .hdr-inner { gap: 12px; }
  .hdr-actions .hdr-icon div { display: none; }
  .hdr-actions .hdr-icon { padding: 8px; }

  /* Mainnav: scroll horizontally when overflow */
  .mainnav-inner { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .mainnav-inner::-webkit-scrollbar { display: none; }
  .mainnav-inner > .nav-item-right { margin-left: 0; }

  /* Story section */
  .story-card { padding: 36px 24px; }
  .story-grid { grid-template-columns: 1fr; gap: 32px; }
  .story-h { font-size: 32px; }
  .story-stats { gap: 20px; }
  .ss-num.display { font-size: 32px; }
  .story-timeline-card { padding: 32px 16px; min-height: 200px; }

  /* PDP */
  .pdp-grid { grid-template-columns: 1fr; gap: 24px; }
  .pdp-h1 { font-size: 26px; }
  .pdp-price .now { font-size: 32px; }
  .trust { grid-template-columns: repeat(2, 1fr); }

  /* Listing */
  .listing { grid-template-columns: 1fr; }
  .filters { order: 2; }
  .listing main { order: 1; }

  /* Cart + Checkout */
  .cart, .checkout { grid-template-columns: 1fr; }
  .summary { position: static; }
  .cart-line { grid-template-columns: 80px 1fr 32px; gap: 12px; }
  .cart-line .qty, .cart-line .price { grid-column: 2; justify-self: flex-start; }
  .cart-line .price { font-size: 14px; }

  /* Brand hero */
  .brand-hero .display-xl { font-size: 56px; }
  .brand-hero-mark { font-size: 100px; }
  .brand-hero-grid { grid-template-columns: 1fr; gap: 24px; }

  /* Vehicle selector */
  .vsel-head { grid-template-columns: 1fr; }
  .vsel-head-cta { align-items: flex-start; flex-direction: row; flex-wrap: wrap; }
  .vsel-head .display-xl { font-size: 40px; }
  .vsel-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .vsel-grid-6 { grid-template-columns: repeat(3, 1fr); }
  .vsel-progress { grid-template-columns: repeat(2, 1fr); }

  /* Auth */
  .auth-grid { grid-template-columns: 1fr; }
  .field-row, .field-row.three { grid-template-columns: 1fr; }

  /* Account */
  .account { grid-template-columns: 1fr; }
  .acc-tiles { grid-template-columns: repeat(2, 1fr); }
  .order-row, .orders-table-head { grid-template-columns: 1fr 80px 100px; gap: 10px; }
  .order-row .date, .orders-table-head > div:nth-child(2) { display: none; }
  .order-row > div:nth-child(3), .orders-table-head > div:nth-child(3) { display: none; }
}

/* Phones (720px) */
@media (max-width: 720px) {
  .container { padding: 0 16px; }

  /* Header */
  .topbar { padding: 6px 0; font-size: 11px; }
  .topbar .b2b, .topbar .tb-tag { display: none; }
  .hdr-inner { display: grid; grid-template-columns: 1fr auto auto; gap: 8px; padding: 8px 0; }
  .brand img { height: 32px; }
  .search-wrap { grid-column: 1 / -1; order: 3; margin-top: 4px; }
  .menu-trigger { display: grid; }
  .hdr-actions { gap: 4px; }
  .hdr-actions .hdr-icon { padding: 6px; }
  .hdr-cart-wrap .num, .hdr-cart-wrap .lbl { display: none; }

  /* Mainnav (mobile: horizontal scroll) */
  .mainnav-inner > .nav-item--cta { padding: 0 14px; }
  .mainnav-inner > .nav-item { padding: 0 12px; font-size: 12px; }
  .mainnav-inner > .nav-item--cta::after { display: none; }

  /* Vehicle bar mobile */
  .vbar-inner { gap: 10px; flex-flow: row wrap; align-items: center; }
  .vbar-label, .vbar-summary { flex: 1 1 100%; }
  .vbar-summary { flex-wrap: wrap; }
  .vbar-inner > a.btn { flex: 1 1 auto; justify-content: center; }
  .vbar-clear { flex: 0 0 auto; width: 44px; border: 1px solid var(--border); }
  .vbar-selects { flex-direction: column; flex: 1 1 100%; }
  .vbar-selects .select { width: 100%; }

  /* Hero */
  .heroshow { height: 420px; }
  .heroshow .hs-text { padding: 32px 20px; }
  .heroshow .hs-eyebrow { font-size: 10px; margin-bottom: 12px; }
  .heroshow .hs-title { font-size: 28px; }
  .heroshow .hs-brand { font-size: 44px; }
  .heroshow .hs-cta { padding: 12px 18px; font-size: 12px; }

  /* Sections / typography */
  .section { padding: 36px 0; }
  .h1 { font-size: 28px; }
  .h2 { font-size: 22px; }
  .h3 { font-size: 18px; }

  /* Story */
  .story-section { padding: 36px 0; }
  .story-card { padding: 28px 18px; border-radius: var(--r-md); }
  .story-h { font-size: 24px; }
  .story-stats { gap: 16px; }
  .ss-num.display { font-size: 24px; }
  .timeline-rail { flex-direction: column; gap: 0; align-items: stretch; }
  .timeline-line { display: none; }
  .t-step {
    display: grid; grid-template-columns: 52px 22px 1fr; align-items: center;
    gap: 14px; width: 100%; min-height: 52px;
  }
  .t-step .t-year { width: auto; text-align: right; }
  .t-step .t-dot { justify-self: center; margin: 0; position: relative; }
  .t-step:not(:last-child) .t-dot::after {
    content: ""; position: absolute; top: 50%; left: 50%; transform: translateX(-50%);
    width: 2px; height: 52px; background: rgba(255,255,255,0.16); z-index: -1;
  }
  .t-step .t-lbl { white-space: normal; text-align: left; }

  /* Stats strip on home */
  .stats { padding: 24px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stats-grid .stat-num { font-size: 28px; }

  /* Brand tiles on home */
  .brand-grid { grid-template-columns: 1fr; gap: 10px; }
  .brand-grid .brand-tile { aspect-ratio: auto; min-height: 120px; padding: 22px; }
  .brand-grid .brand-tile .bt-mark { font-size: 36px; }

  /* Category grid */
  .cat-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 8px; }
  .cat-tile { min-height: 120px; padding: 18px 10px; }
  .cat-tile-ic { width: 48px; height: 48px; margin-bottom: 4px; }
  .cat-tile-ic svg { width: 36px; height: 36px; }

  /* Products grid (already responsive but force 1col on tiny screens) */
  .products, .products.cols-3, .products.cols-4, .products.cols-5,
  .home-products { grid-template-columns: repeat(2, 1fr); }

  /* PDP gallery */
  .gallery-thumbs { grid-template-columns: repeat(4, 1fr); }
  .pdp-h1 { font-size: 22px; }
  .pdp-actions { flex-direction: column; align-items: stretch; }
  .pdp-actions .qty { width: 100%; }
  .pdp-add { width: 100%; flex: none; }
  .pdp-fav { width: 100%; }
  .pdp-tabs .tab { padding: 12px 14px; font-size: 12px; }

  /* Filter sidebar */
  .filters { padding: 0 0 20px; }
  .filters .grp h4 { font-size: 12px; }
  .listing-head { flex-direction: column; align-items: stretch; gap: 12px; }
  .lh-right { flex-direction: column; align-items: stretch; gap: 8px; }
  .sort-wrap .select { width: 100%; }

  /* Search hero */
  .search-hero { padding: 24px 0 32px; }
  .search-hero .lg-input { height: 48px; font-size: 14px; padding: 0 14px; }
  .search-hero .lg-go { width: 48px; height: 48px; }
  .search-result-row { grid-template-columns: 60px 1fr; gap: 12px; }
  .search-result-row .result-price { grid-column: 1 / -1; text-align: left; padding-top: 8px; border-top: 1px solid var(--line); }

  /* Cart line */
  .cart-line { grid-template-columns: 1fr; padding: 12px 0; }
  .cart-line .ph { width: 80px; height: 80px; }
  .cart-line .info .name { font-size: 13px; }
  .cart-line .qty, .cart-line .price, .cart-line .rm { justify-self: flex-start; }

  /* Summary */
  .summary { padding: 18px 20px; }
  .summary .row.tot .v { font-size: 24px; }

  /* Footer */
  .ftr-top { padding: 32px 0 16px !important; }
  .ftr-grid { grid-template-columns: 1fr !important; gap: 24px; }
  .ftr-bottom { flex-direction: column; align-items: flex-start; gap: 10px; padding: 16px 0; }
  .ftr-logo { height: 40px !important; }

  /* Partners marquee */
  .partner-logo { width: 100px; height: 56px; padding: 0 12px; }
  .partner-logo img { max-width: 64px; max-height: 40px; }

  /* Account */
  .acc-tiles { grid-template-columns: 1fr; }
  .acc-vehicle-row { flex-direction: column; align-items: flex-start; gap: 14px; }
  .acc-vehicle-name { font-size: 18px; }

  /* Brand page */
  .brand-hero { padding: 36px 0 28px; }
  .brand-hero .display-xl { font-size: 36px; }
  .brand-hero-mark { font-size: 60px; text-align: center; }
  .brand-stats { gap: 18px; }
  .brand-stats .display { font-size: 26px; }
  .brand-hero-cta { gap: 8px; }
  .brand-hero-cta .btn { width: 100%; justify-content: center; }

  /* Vehicle selector */
  .vsel-stage { padding: 32px 18px; border-radius: var(--r-md); margin: 8px 0 32px; }
  .vsel-head .display-xl { font-size: 28px; }
  .vsel-progress { grid-template-columns: 1fr 1fr; gap: 6px; }
  .vsel-pcard { padding: 12px; }
  .vsel-pcard-lbl { font-size: 10px; }
  .vsel-grid-4 { grid-template-columns: 1fr; }
  .vsel-grid-6 { grid-template-columns: repeat(2, 1fr); }
  .vsel-card { padding: 14px; }
  .vsel-card-name { font-size: 14px; }

  /* Pager */
  .pager .pg, .pager a, .pager span { min-width: 30px; height: 30px; padding: 0 8px; font-size: 12px; }
}

/* Tiny screens */
@media (max-width: 420px) {
  .brand-stats { flex-direction: column; gap: 12px; }
  .heroshow { height: 380px; }
  .heroshow .hs-title { font-size: 24px; }
  .heroshow .hs-brand { font-size: 36px; }
}

/* ═══════════════════════════════════════════════════════════════════════
   STRATOUDAKIS — v0.8 — cleanup pass
   - Remove vertical separators in mainnav (keep diagonal pattern bg)
   - Smaller vehicle-selector display h1
   - Hide grid/list view toggle (not wired)
   ═══════════════════════════════════════════════════════════════════════ */

/* Remove vertical lines between mainnav items */
.mainnav-inner > .nav-item,
.mainnav-inner > a.nav-item { border-right: 0 !important; }
.mainnav-inner > .nav-item:not(.nav-item--cta):hover { background: transparent; color: var(--cyan-deep); }

/* Carbon-fiber mainnav background — keep diagonal pattern */
.mainnav {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.mainnav::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(0,0,0,0.015) 0 1px, transparent 1px 7px),
    repeating-linear-gradient(-45deg, rgba(0,0,0,0.02) 0 1px, transparent 1px 7px);
  pointer-events: none; z-index: 0;
}
.mainnav .container { position: relative; z-index: 1; }

/* Vehicle selector h1 — smaller */
.vsel-head .display-xl,
.vsel-head h1 { font-size: 52px !important; }
@media (max-width: 980px) { .vsel-head .display-xl, .vsel-head h1 { font-size: 36px !important; } }
@media (max-width: 720px) { .vsel-head .display-xl, .vsel-head h1 { font-size: 26px !important; } }

/* Hide the grid/list view toggle (not implemented yet) */
.view-toggle { display: none !important; }

/* ═══════════════════════════════════════════════════════════════════════
   STRATOUDAKIS — v0.9 — full-bleed cart button, normalized B2B
   ═══════════════════════════════════════════════════════════════════════ */

/* B2B — plain cyan rectangle, no wedges/clips */
.topbar .b2b {
  background: var(--cyan) !important; color: #fff !important;
  padding: 4px 12px !important; border-radius: 3px !important;
  font-family: var(--f-display); font-weight: 700; font-size: 11px;
  letter-spacing: 0.06em; text-transform: uppercase;
  border: 0 !important; clip-path: none !important;
  transform: none !important; box-shadow: none !important;
  display: inline-flex; align-items: center; gap: 6px;
}
.topbar .b2b::before, .topbar .b2b::after { content: none !important; display: none !important; }
.topbar .b2b:hover { background: var(--cyan-deep) !important; }

/* Cart button bleeds to the right edge of the viewport */
.hdr { overflow: visible; }
.hdr-inner { position: relative; }
.hdr-cart-wrap { position: relative; }
.hdr-cart-wrap .cart-btn { background: var(--cyan); color: #fff; padding: 12px 18px; border-radius: 0; position: relative; }
.hdr-cart-wrap .cart-btn::after {
  content: '';
  position: absolute; left: 100%; top: 0; bottom: 0;
  width: 100vw; background: var(--cyan);
  pointer-events: none;
}
.hdr-cart-wrap .cart-btn:hover { background: var(--cyan-deep); }
.hdr-cart-wrap .cart-btn:hover::after { background: var(--cyan-deep); }
.hdr-cart-wrap .cart-btn .num { color: rgba(255,255,255,0.85); font-size: 10px; font-family: var(--f-display); text-transform: uppercase; letter-spacing: 0.06em; }
.hdr-cart-wrap .cart-btn .lbl { color: #fff; font-family: var(--f-mono); font-weight: 700; font-size: 14px; }
.hdr-cart-wrap .cart-btn svg { color: #fff; }

@media (max-width: 720px) {
  .hdr-cart-wrap .cart-btn { padding: 8px 10px; }
  .hdr-cart-wrap .cart-btn::after { display: none; }
}

/* Prevent horizontal scrollbar from the cart-bleed pseudo-element */
html, body { overflow-x: hidden; }

/* ═══════════════════════════════════════════════════════════════════════
   STRATOUDAKIS — v1.0 — clean up ΟΛΑ ΤΑ ΑΝΤΑΛΛΑΚΤΙΚΑ button + megamenu fix
   ═══════════════════════════════════════════════════════════════════════ */

/* Kill ALL existing decorations on the CTA button (cyan stripes, wedges, diagonals) */
.nav-item--cta,
.mainnav-inner > .nav-item--cta {
  background: var(--ink) !important;
  color: #fff !important;
  padding: 0 24px !important;
  margin: 0 !important;
  overflow: visible !important;
  isolation: auto !important;
}
.nav-item--cta::before,
.nav-item--cta::after,
.mainnav-inner > .nav-item--cta::before,
.mainnav-inner > .nav-item--cta::after { content: none !important; display: none !important; }
.nav-item--cta:hover,
.mainnav-inner > .nav-item--cta:hover { background: var(--cyan) !important; color: #fff !important; }
.nav-item--cta > svg { color: var(--cyan); }
.nav-item--cta:hover > svg { color: #fff; }

/* Megamenu — robust hover + click trigger */
.mainnav-inner > .nav-item--cta { position: relative; }
.megamenu {
  position: absolute;
  top: 100%; left: 0;
  width: 100vw; max-width: 100vw;
  background: #fff;
  border-top: 2px solid var(--cyan);
  box-shadow: 0 24px 48px rgba(0,0,0,0.18);
  padding: 32px 0;
  display: none;
  z-index: 200;
}
.mainnav-inner > .nav-item--cta:hover > .megamenu,
.mainnav-inner > .nav-item--cta:focus-within > .megamenu,
.mainnav-inner > .nav-item--cta.is-open > .megamenu { display: block; }
.megamenu-grid {
  max-width: 1600px; margin: 0 auto;
  padding: 0 32px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
}
.megamenu-col h5 {
  font-family: var(--f-display); font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--cyan); margin: 0 0 12px;
  padding-bottom: 10px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: flex-start; text-align: left; gap: 8px;
}
.megamenu-col h5 svg { color: var(--cyan); }
.megamenu-col a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 0; font-size: 13px; color: var(--text); text-decoration: none;
  border-bottom: 1px dashed transparent;
}
.megamenu-col a:hover { color: var(--cyan-deep); border-bottom-color: var(--cyan-line); }
.megamenu-col .ct {
  font-family: var(--f-mono); font-size: 11px; color: var(--text-mute);
  margin-left: auto;
}
@media (max-width: 980px) {
  .megamenu { display: none !important; }
}

/* Megamenu must escape mainnav's overflow:hidden */
.mainnav { overflow: visible !important; }
.mainnav-inner { overflow: visible !important; }
@media (max-width: 1024px) {
  .mainnav-inner { overflow-x: auto !important; overflow-y: visible !important; }
}

/* ═══════════════════════════════════════════════════════════════════════
   STRATOUDAKIS — v1.1 — plain topbar/header (no diagonal) + cart bleed
   ═══════════════════════════════════════════════════════════════════════ */

/* Remove diagonal carbon-fiber patterns from topbar + header */
.topbar::before,
.hdr::before,
.hdr::after,
.topbar::after { content: none !important; background-image: none !important; display: none !important; }
.topbar { background: #1A1A20 !important; }
.hdr { background: var(--carbon) !important; background-image: none !important; }

/* Cart button bleeds ALL the way to the viewport right edge */
body, html { overflow-x: clip; } /* clip is the new alternative to hidden — allows position:sticky/absolute to extend */
.hdr { overflow: visible !important; }
.hdr .container { overflow: visible !important; }
.hdr-inner { overflow: visible !important; position: relative; }
.hdr-actions { position: relative; }
.hdr-cart-wrap { position: relative; overflow: visible; }
.hdr-cart-wrap .cart-btn {
  background: var(--cyan) !important; color: #fff !important;
  padding: 12px 20px !important; border-radius: 0 !important;
  position: relative; z-index: 1;
}
/* The bleed pseudo: extends cyan from the right edge of the button to viewport right */
.hdr-cart-wrap::after {
  content: '';
  position: absolute;
  left: 100%; top: 0; bottom: 0;
  width: 100vw;
  background: var(--cyan);
  pointer-events: none;
  z-index: 1;
}
.hdr-cart-wrap:hover .cart-btn,
.hdr-cart-wrap:hover::after { background: var(--cyan-deep) !important; }
.hdr-cart-wrap .cart-btn .num { color: rgba(255,255,255,0.9); font-size: 10px; font-family: var(--f-display); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 700; }
.hdr-cart-wrap .cart-btn .lbl { color: #fff; font-family: var(--f-mono); font-weight: 700; font-size: 14px; }
.hdr-cart-wrap .cart-btn svg { color: #fff; }

@media (max-width: 720px) {
  .hdr-cart-wrap::after { display: none; }
  .hdr-cart-wrap .cart-btn { padding: 10px 14px !important; }
}

/* ═══════════════════════════════════════════════════════════════════════
   STRATOUDAKIS — v1.2 — cart bleed via box-shadow (can't be clipped)
   ═══════════════════════════════════════════════════════════════════════ */

/* Kill any earlier pseudo-element attempts on cart-wrap */
.hdr-cart-wrap::before,
.hdr-cart-wrap::after,
.hdr-cart-wrap .cart-btn::before,
.hdr-cart-wrap .cart-btn::after { content: none !important; display: none !important; }

/* Force-clip body so the 9999px box-shadow doesn't create horizontal scroll.
   Use `clip` (not `hidden`) so it doesn't become a scroll container — `hidden`
   breaks position:sticky for the nav/header. */
html, body { overflow-x: clip !important; }

/* The cart button itself stays normal size, but its box-shadow extends cyan to the right edge */
.hdr-cart-wrap { position: relative; }
.hdr-cart-wrap .cart-btn {
  background: var(--cyan) !important;
  color: #fff !important;
  padding: 12px 22px !important;
  border-radius: 0 !important;
  position: relative;
  box-shadow: 9999px 0 0 0 var(--cyan) !important;
  z-index: 2;
}
.hdr-cart-wrap:hover .cart-btn,
.hdr-cart-wrap .cart-btn:hover {
  background: var(--cyan-deep) !important;
  box-shadow: 9999px 0 0 0 var(--cyan-deep) !important;
}
.hdr-cart-wrap .cart-btn svg { color: #fff !important; }
.hdr-cart-wrap .cart-btn .num,
.hdr-cart-wrap .cart-btn .lbl { color: #fff !important; }
.hdr-cart-wrap .cart-btn .num {
  font-size: 10px; font-family: var(--f-display);
  text-transform: uppercase; letter-spacing: 0.06em; font-weight: 700;
}
.hdr-cart-wrap .cart-btn .lbl {
  font-family: var(--f-mono); font-weight: 700; font-size: 14px;
}

@media (max-width: 720px) {
  .hdr-cart-wrap .cart-btn {
    box-shadow: none !important;
    padding: 10px 14px !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════════
   STRATOUDAKIS — v1.3 — full footer CSS (trust + newsletter + main + pay)
   ═══════════════════════════════════════════════════════════════════════ */

/* Trust bar (top of footer) */
.ftr-trust { background: rgba(255,255,255,0.02); border-bottom: 1px solid rgba(255,255,255,0.06); padding: 28px 0; }
.ftr-trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.ftr-trust-item { display: flex; align-items: center; gap: 14px; }
.ftr-trust-ic { width: 44px; height: 44px; border-radius: 50%; background: rgba(0,176,232,0.12); color: var(--cyan); display: grid; place-items: center; flex-shrink: 0; }
.ftr-trust-t { font-family: var(--f-display); font-weight: 700; font-size: 13px; color: #fff; text-transform: uppercase; letter-spacing: 0.04em; line-height: 1.2; }
.ftr-trust-s { font-size: 11.5px; color: rgba(255,255,255,0.55); margin-top: 4px; line-height: 1.3; }
@media (max-width: 980px) { .ftr-trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .ftr-trust-grid { grid-template-columns: 1fr; } }

/* Newsletter strip */
.ftr-news { background: linear-gradient(90deg, rgba(0,176,232,0.06), transparent 60%); border-bottom: 1px solid rgba(255,255,255,0.06); padding: 32px 0; }
.ftr-news-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
.ftr-news-text h3 { font-family: var(--f-display); font-weight: 700; font-size: 22px; color: #fff; text-transform: uppercase; letter-spacing: -0.01em; line-height: 1.2; margin: 8px 0 0; }
.ftr-news-form { display: flex; gap: 8px; }
.ftr-news-form .input { flex: 1; height: 48px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); color: #fff; padding: 0 18px; }
.ftr-news-form .input::placeholder { color: rgba(255,255,255,0.4); }
.ftr-news-form .btn { white-space: nowrap; }
@media (max-width: 980px) { .ftr-news-inner { grid-template-columns: 1fr; gap: 18px; } }

/* Main grid override (was 5-col, now 6-col incl. brand col) */
.ftr-top { padding: 48px 0 32px; }
.ftr-grid { display: grid !important; grid-template-columns: 1.6fr repeat(5, 1fr) !important; gap: 32px !important; }
@media (max-width: 1100px) { .ftr-grid { grid-template-columns: 1fr 1fr 1fr !important; gap: 28px !important; } }
@media (max-width: 720px)  { .ftr-grid { grid-template-columns: 1fr !important; gap: 24px !important; } }

.ftr-col-brand { display: flex; flex-direction: column; gap: 4px; }
.ftr-contact { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; font-size: 13px; color: rgba(255,255,255,0.7); }
.ftr-contact-row { display: flex; align-items: center; gap: 8px; }
.ftr-contact-row svg { color: var(--cyan); flex-shrink: 0; }
.ftr-contact-row a { color: rgba(255,255,255,0.85); text-decoration: none; }
.ftr-contact-row a:hover { color: var(--cyan); }

/* Payments bar */
.ftr-pay { background: rgba(255,255,255,0.02); border-top: 1px solid rgba(255,255,255,0.06); padding: 18px 0; }
.ftr-pay-inner { display: flex; align-items: center; gap: 18px; justify-content: space-between; flex-wrap: wrap; }
.ftr-pay-lbl { font-family: var(--f-display); font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.55); }
.ftr-pay-chips { display: flex; gap: 6px; flex-wrap: wrap; flex: 1; justify-content: center; }
.ftr-pay-chips .pay-chip { padding: 6px 12px; border: 1px solid rgba(255,255,255,0.14); border-radius: 4px; font-family: var(--f-mono); font-size: 10px; color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.04); }
.ftr-pay-ssl { display: flex; align-items: center; gap: 8px; font-size: 12px; color: rgba(255,255,255,0.6); }
.ftr-pay-ssl svg { color: var(--in-stock); }

/* Bottom strip */
.ftr-bottom { padding: 18px 0 28px; border-top: 1px solid rgba(255,255,255,0.06); display: flex; justify-content: space-between; align-items: center; color: rgba(255,255,255,0.5); font-size: 12.5px; flex-wrap: wrap; gap: 12px; }
.ftr-bottom-links { display: flex; gap: 20px; }
.ftr-bottom-links a { color: rgba(255,255,255,0.55); text-decoration: none; }
.ftr-bottom-links a:hover { color: var(--cyan); }

/* ═══════════════════════════════════════════════════════════════════════
   STRATOUDAKIS — v1.4 — modern cart pill button + flush-right
   ═══════════════════════════════════════════════════════════════════════ */

/* Kill ALL previous cart bleed/box-shadow attempts */
.hdr-cart-wrap::before,
.hdr-cart-wrap::after,
.hdr-cart-wrap .cart-btn::before,
.hdr-cart-wrap .cart-btn::after { content: none !important; display: none !important; }
.hdr-cart-wrap .cart-btn {
  box-shadow: none !important;
}

/* Push the entire cart section to the far right of hdr-actions */
.hdr-actions { display: flex; align-items: center; gap: 16px; margin-left: auto; }
.hdr-cart-wrap { margin-left: 8px; }

/* Modern cart pill button — small, rounded, cart icon with badge */
.cart-btn-mini {
  display: inline-flex; align-items: center; gap: 8px;
  height: 40px; padding: 0 16px 0 12px;
  background: var(--cyan); color: #fff !important;
  border-radius: 999px;
  font-family: var(--f-display); font-weight: 700;
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.04em;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
  white-space: nowrap;
}
.cart-btn-mini:hover { background: var(--cyan-deep); color: #fff !important; transform: translateY(-1px); }
.cart-btn-mini:active { transform: translateY(0); }

.cart-btn-ic {
  position: relative;
  width: 28px; height: 28px;
  display: grid; place-items: center;
  color: #fff;
}
.cart-btn-ic svg { color: #fff; }

.cart-btn-badge {
  position: absolute;
  top: -4px; right: -6px;
  min-width: 18px; height: 18px;
  padding: 0 5px;
  background: var(--ink); color: #fff;
  border: 2px solid var(--cyan);
  border-radius: 999px;
  font-family: var(--f-mono); font-weight: 700; font-size: 10px;
  display: grid; place-items: center;
  line-height: 1;
}
.cart-btn-mini:hover .cart-btn-badge { border-color: var(--cyan-deep); }
.cart-btn-badge.is-empty { background: rgba(0,0,0,0.4); }

.cart-btn-lbl { color: #fff; }

@media (max-width: 720px) {
  .cart-btn-lbl { display: none; }
  .cart-btn-mini { padding: 0 12px; height: 38px; }
}

/* ═══════════════════════════════════════════════════════════════════════
   STRATOUDAKIS — v1.8 — cart pill cleanup
   The .hdr-cart-wrap had its own cyan square bg + overflow:hidden +
   align-self:stretch, which sat behind the rounded .cart-btn-mini pill,
   hiding its corners, making it taller than the account/favourites items,
   and showing a diagonal pattern on hover. Strip the wrapper to bare.
   ═══════════════════════════════════════════════════════════════════════ */
.hdr-cart-wrap {
  background: transparent !important;
  overflow: visible !important;
  isolation: auto !important;
  align-self: center !important;
  margin-left: 8px !important;
  display: flex !important;
  align-items: center !important;
}
.hdr-cart-wrap::before,
.hdr-cart-wrap::after { content: none !important; display: none !important; }
.hdr-cart-wrap .hdr-icon { padding: 0 !important; }

/* ═══════════════════════════════════════════════════════════════════════
   STRATOUDAKIS — v1.7 — megamenu true full-width breakout
   Anchor the dropdown to the centered .container (not the left-aligned CTA
   button) and break it out to the full viewport width, with the column grid
   centered. Fixes the panel being pushed right with empty space on the left.
   ═══════════════════════════════════════════════════════════════════════ */
.mainnav-inner > .nav-item--cta { position: static !important; }
.mainnav .container { position: relative; }
.megamenu {
  left: 50% !important;
  right: auto !important;
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: -50vw !important;
}
.megamenu-grid {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ═══════════════════════════════════════════════════════════════════════
   STRATOUDAKIS — v1.9 — hide decorative "— SECTION" cyan eyebrows site-wide
   (keep the functional search "top match" badge)
   ═══════════════════════════════════════════════════════════════════════ */
.eyebrow--cyan:not(.top-match-eyebrow) { display: none !important; }

/* ═══════════════════════════════════════════════════════════════════════
   STRATOUDAKIS — v2.1 — contact page
   ═══════════════════════════════════════════════════════════════════════ */
.contact-page { padding-top: 8px; padding-bottom: 72px; }
.contact-grid {
  display: grid; grid-template-columns: 1.6fr 1fr; gap: 28px;
  align-items: start; margin-bottom: 28px;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-form-card { margin: 0; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form .field { display: flex; flex-direction: column; gap: 6px; }
.contact-form .field label {
  font-family: var(--f-display); font-weight: 600; font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.03em; color: var(--text-mid);
}
.contact-form .input {
  width: 100%; height: 46px; border: 1px solid var(--border-2);
  border-radius: var(--r-md); padding: 0 14px; font-size: 14px; color: var(--ink);
  background: var(--bg); transition: border-color 0.15s, box-shadow 0.15s;
}
.contact-form textarea.input { height: auto; min-height: 150px; padding: 12px 14px; line-height: 1.6; }
.contact-form .input:focus { outline: 0; border-color: var(--cyan); box-shadow: 0 0 0 3px var(--cyan-line); }
.contact-form .field-error { color: #D64545; font-size: 12.5px; }
.contact-form .btn { align-self: flex-start; }

.contact-info { display: flex; flex-direction: column; gap: 8px; }
.contact-info .ci-item {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 16px 18px;
}
.contact-info .ci-ic {
  width: 40px; height: 40px; flex: 0 0 auto; border-radius: var(--r-md);
  background: var(--cyan-soft); color: var(--cyan-deep);
  display: grid; place-items: center;
}
.contact-info .ci-label {
  font-family: var(--f-display); font-weight: 700; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-mid);
  margin-bottom: 4px;
}
.contact-info .ci-val { font-size: 14px; color: var(--ink); line-height: 1.5; }
.contact-info .ci-link { color: var(--cyan-deep); text-decoration: none; font-family: var(--f-mono); font-weight: 600; }
.contact-info .ci-link:hover { color: var(--cyan); }
.contact-info .ci-note { color: var(--text-mid); padding: 4px 2px; }

.contact-map {
  border: 1px solid var(--border); border-radius: var(--r-lg);
  overflow: hidden; line-height: 0;
}
.contact-map iframe { display: block; width: 100%; filter: grayscale(0.2); }

/* ═══════════════════════════════════════════════════════════════════════
   STRATOUDAKIS — v2.3 — mobile menu drawer
   ═══════════════════════════════════════════════════════════════════════ */
.mobile-menu { position: fixed; inset: 0; z-index: 1000; visibility: hidden; }
.mobile-menu.is-open { visibility: visible; }
.mobile-menu .mm-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0.5);
  opacity: 0; transition: opacity 0.25s;
}
.mobile-menu.is-open .mm-overlay { opacity: 1; }
.mobile-menu .mm-panel {
  position: absolute; top: 0; left: 0; bottom: 0;
  width: 86%; max-width: 360px;
  background: var(--carbon); color: #fff;
  transform: translateX(-100%); transition: transform 0.28s ease;
  display: flex; flex-direction: column;
  box-shadow: 0 0 40px rgba(0,0,0,0.4);
}
.mobile-menu.is-open .mm-panel { transform: translateX(0); }
.mobile-menu .mm-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 18px; border-bottom: 1px solid rgba(255,255,255,0.1);
  flex: 0 0 auto;
}
.mobile-menu .mm-title { font-family: var(--f-display); font-weight: 800; font-size: 15px; text-transform: uppercase; letter-spacing: 0.06em; }
.mobile-menu .mm-close { background: transparent; border: 0; color: #fff; cursor: pointer; display: grid; place-items: center; padding: 4px; }
.mobile-menu .mm-body { overflow-y: auto; padding: 12px 0 32px; flex: 1 1 auto; }
.mobile-menu .mm-cta {
  display: flex; align-items: center; gap: 8px;
  margin: 8px 14px 12px; padding: 12px 16px;
  background: var(--cyan); color: #fff; text-decoration: none;
  border-radius: var(--r-md); font-family: var(--f-display); font-weight: 700;
  text-transform: uppercase; font-size: 13px; letter-spacing: 0.04em;
}
.mobile-menu .mm-link {
  display: block; padding: 13px 18px; color: #fff; text-decoration: none;
  font-family: var(--f-display); font-weight: 700; font-size: 14px;
  text-transform: uppercase; letter-spacing: 0.03em;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu .mm-link:hover { background: rgba(255,255,255,0.05); color: var(--cyan-bright); }
.mobile-menu .mm-group { padding: 14px 18px 6px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.mobile-menu .mm-group-title {
  font-family: var(--f-display); font-weight: 700; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--cyan);
  margin-bottom: 8px;
}
.mobile-menu .mm-sublink {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0; color: rgba(255,255,255,0.78); text-decoration: none; font-size: 14px;
}
.mobile-menu .mm-sublink:hover { color: #fff; }
.mobile-menu .mm-sublink .mm-ct { font-family: var(--f-mono); font-size: 11px; color: rgba(255,255,255,0.4); }

/* ═══════════════════════════════════════════════════════════════════════
   STRATOUDAKIS — v2.4 — footer payment block on mobile
   ═══════════════════════════════════════════════════════════════════════ */
@media (max-width: 720px) {
  .ftr-pay-inner { flex-direction: column; gap: 14px; text-align: center; }
  .ftr-pay-lbl { text-align: center; }
  .ftr-pay-chips { justify-content: center; width: 100%; }
  .ftr-pay-ssl { justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════════════════
   STRATOUDAKIS — v2.5 — sticky nav (desktop) / sticky header (mobile)
   ═══════════════════════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════════════════════
   STRATOUDAKIS — v2.7 — payment-method icons (cart + footer)
   ═══════════════════════════════════════════════════════════════════════ */
.pay-chip { display: inline-flex; align-items: center; justify-content: center; }
.pay-chip .pay-ico { height: 22px; width: auto; display: block; }
.pay-chip .pay-ico--line { height: 20px; }
/* Footer chips (dark bg) */
.ftr-pay-chips .pay-chip { padding: 7px 11px; min-width: 46px; }
/* Cart summary chips (light bg) */
.summary-pay { flex-wrap: wrap; }
.summary-pay .pay-chip { padding: 6px 9px; min-width: 42px; }

@media (min-width: 961px) {
  .mainnav { position: sticky; top: 0; z-index: 60; }
  /* Vehicle bar sticks just under the mainnav and collapses on scroll */
  .vbar { position: sticky; top: 54px; z-index: 55; transition: padding 0.18s ease, background 0.18s ease; }
  .vbar-inner { transition: height 0.18s ease, padding 0.18s ease, font-size 0.18s ease; }
  .vbar.is-stuck { padding: 0; box-shadow: 0 4px 12px rgba(0,0,0,0.06); }
  .vbar.is-stuck .vbar-inner { padding: 4px 0; min-height: 0; }
  .vbar.is-stuck .vbar-label,
  .vbar.is-stuck .vbar-summary { font-size: 12px; }
  .vbar.is-stuck .vbar-label svg,
  .vbar.is-stuck .chip { transform: scale(0.92); }
  .vbar.is-stuck .btn--sm { padding: 4px 10px; font-size: 11px; }
}
@media (max-width: 960px) {
  .hdr { position: sticky; top: 0; z-index: 100; }
}

/* ═══════════════════════════════════════════════════════════════════════
   STRATOUDAKIS — v2.6 — brands (manufacturer) grid
   ═══════════════════════════════════════════════════════════════════════ */
.brand-grid-mfg {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
  padding: 8px 0 72px;
}
.brand-card-mfg {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  padding: 24px 18px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  text-decoration: none;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}
.brand-card-mfg:hover {
  border-color: var(--cyan);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}
.brand-card-mfg .bcm-logo {
  width: 100%; height: 72px;
  display: grid; place-items: center;
}
.brand-card-mfg .bcm-logo img { max-width: 100%; max-height: 72px; object-fit: contain; }
.brand-card-mfg .bcm-mark {
  font-family: var(--f-display); font-weight: 800; font-size: 40px;
  color: var(--ink); line-height: 1;
}
.brand-card-mfg .bcm-name {
  font-family: var(--f-display); font-weight: 700; font-size: 14px;
  text-transform: uppercase; letter-spacing: 0.03em; color: var(--ink);
  text-align: center;
}
.brand-card-mfg:hover .bcm-name { color: var(--cyan-deep); }
@media (max-width: 720px) {
  .brand-grid-mfg { grid-template-columns: repeat(2, 1fr); gap: 10px; padding-bottom: 48px; }
  .brand-card-mfg { padding: 18px 12px; gap: 10px; }
  .brand-card-mfg .bcm-logo { height: 56px; }
  .brand-card-mfg .bcm-logo img { max-height: 56px; }
  .brand-card-mfg .bcm-mark { font-size: 32px; }
}
