:root {
  --ch-content-max: 1280px;
  --ch-content-pad: clamp(16px, 4vw, 48px);
  --blue: #1A56DB;
  --blue-dark: #0A3D7C;
  --blue-light: #EBF2FF;
  --blue-mid: #3B82F6;
  --page-bg: #F4F6FA;
  --surface: #FFFFFF;
  --surface2: #F0F4FB;
  --border: #DDE3EE;
  --border-mid: #C5CEDE;
  --text-1: #0D1829;
  --text-2: #374151;
  --text-3: #6B7280;
  --red: #DC2626;
  --orange: #EA580C;
  --green: #16A34A;
  --hero-bg: #0B1F42;
  --font-disp: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--page-bg); color: var(--text-1); font-family: var(--font-body); overflow-x: hidden; }

.topbar {
  background: #fff; padding: 0 48px; height: 36px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--border);
}
.topbar-msg { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.3px; color: var(--text-2); text-transform: uppercase; }
.topbar-links { display: flex; gap: 20px; }
.topbar-links a { font-size: 12px; color: var(--text-3); text-decoration: none; transition: color .2s; }
.topbar-links a:hover { color: var(--blue); }

#main-nav {
  position: sticky; top: 0; z-index: 200;
  background: var(--blue-dark); border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  padding: 0 40px; display: flex; align-items: center; height: 64px;
  box-shadow: 0 4px 16px rgba(10, 61, 124, 0.28);
}
.nav-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; margin-right: 32px; }
.nav-logo-img { height: 44px; width: auto; max-width: min(200px, 38vw); display: block; object-fit: contain; }
.nav-logo-img--mobile { height: 40px; max-width: 180px; }
.logo-mark { width: 34px; height: 34px; background: var(--blue); clip-path: polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%); display: flex; align-items: center; justify-content: center; }
.logo-mark span { font-family: var(--font-disp); font-weight: 900; font-size: 15px; color: white; }
.logo-text { font-family: var(--font-disp); font-weight: 800; font-size: 20px; letter-spacing: 0.5px; color: var(--text-1); text-transform: uppercase; }
.logo-text em { color: var(--blue); font-style: normal; }
.nav-links { display: flex; align-items: stretch; gap: 0; list-style: none; flex: 1; height: 64px; }
.nav-links li { display: flex; align-items: center; position: relative; }
.nav-links > li > a {
  font-weight: 500; font-size: 14px; color: rgba(255, 255, 255, 0.88); text-decoration: none;
  padding: 0 14px; height: 64px; display: flex; align-items: center; white-space: nowrap;
  position: relative; transition: color .2s; gap: 4px;
}
.nav-links > li > a::after {
  content: ''; position: absolute; bottom: 0; left: 14px; right: 14px; height: 2px;
  background: #fff; border-radius: 2px 2px 0 0; transform: scaleX(0); transition: transform .2s ease;
}
.nav-links > li > a:hover { color: #fff; }
.nav-links > li > a:hover::after { transform: scaleX(1); }
.nav-links > li > a.active { color: #fff; font-weight: 600; }
.nav-links > li > a.active::after { transform: scaleX(1); }
.nav-chevron { transition: transform .2s; flex-shrink: 0; }
.nav-links > li.deals-link > a {
  color: var(--blue-dark); font-weight: 700; background: #fff;
  border-radius: 6px; height: 34px; margin: auto 8px; padding: 0 14px;
}
.nav-links > li.deals-link > a:hover { color: var(--blue-dark); background: rgba(255, 255, 255, 0.92); }
.nav-links > li.deals-link > a::after { display: none; }

/* ── Shop mega dropdown ──────────────────────────────────────────────────── */
.nav-has-dropdown { position: static !important; }
.nav-dropdown {
  position: absolute; top: 64px; left: 0; right: 0;
  background: #ffffff !important; border-top: 2px solid var(--blue); border-bottom: 1px solid var(--border);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 9999 !important;
}
.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown:focus-within .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-has-dropdown:hover .nav-chevron { transform: rotate(180deg); }
.nav-has-dropdown:focus-within .nav-chevron { transform: rotate(180deg); }
.nav-dropdown-inner {
  max-width: 1200px; margin: 0 auto; padding: 28px 40px 32px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  position: relative;
}
.nav-dropdown-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.nav-dropdown-col-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--blue);
  margin: 0 0 4px 0;
  padding: 0 4px;
}
.nav-dropdown-col-items {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nav-drop-item {
  display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 8px;
  text-decoration: none; color: var(--text-1); transition: background .15s, transform .15s;
  height: auto !important;
}
.nav-drop-item::after { display: none !important; }
.nav-drop-item:hover {
  background: var(--surface2);
  transform: translateY(-1px);
}
.nav-drop-icon {
  width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s, box-shadow .2s;
  border: 1px solid transparent;
}
.nav-drop-icon svg { width: 22px; height: 22px; }
.nav-drop-text { display: flex; flex-direction: column; }
.nav-drop-text strong { font-size: 13px; font-weight: 600; line-height: 1.3; color: var(--text-1); }
.nav-drop-text em { font-style: normal; font-size: 11px; color: var(--text-3); margin-top: 2px; }
.nav-dropdown .nav-drop-all {
  grid-column: 1 / -1; text-align: right; font-size: 12px; font-weight: 600;
  color: var(--blue) !important; text-decoration: none; padding: 16px 12px 0;
  display: block; height: auto !important; border-top: 1px solid var(--border);
  margin-top: 8px;
}
.nav-dropdown .nav-drop-all::after { display: none !important; }
.nav-dropdown .nav-drop-all:hover { color: var(--blue-dark) !important; text-decoration: underline; }

.nav-drop-item:hover .nav-drop-icon {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(26, 86, 219, 0.18);
}

/* Category individual item tints — brand-aligned colour system */
.nav-drop-item--coilovers .nav-drop-icon { background: rgba(234,88,12,0.09);  color: #ea580c; border-color: rgba(234,88,12,0.15); }
.nav-drop-item--seats      .nav-drop-icon { background: rgba(234,88,12,0.09);  color: #ea580c; border-color: rgba(234,88,12,0.15); }
.nav-drop-item--wheels     .nav-drop-icon { background: rgba(26,86,219,0.09);  color: #1a56db; border-color: rgba(26,86,219,0.15); }
.nav-drop-item--carbon     .nav-drop-icon { background: rgba(26,86,219,0.09);  color: #1a56db; border-color: rgba(26,86,219,0.15); }
.nav-drop-item--bumpers    .nav-drop-icon { background: rgba(26,86,219,0.09);  color: #1a56db; border-color: rgba(26,86,219,0.15); }
.nav-drop-item--audio      .nav-drop-icon { background: rgba(99,102,241,0.09); color: #6366f1; border-color: rgba(99,102,241,0.15); }
.nav-drop-item--speakers   .nav-drop-icon { background: rgba(99,102,241,0.09); color: #6366f1; border-color: rgba(99,102,241,0.15); }
.nav-drop-item--mats       .nav-drop-icon { background: rgba(20,184,166,0.09); color: #0d9488; border-color: rgba(20,184,166,0.15); }
.nav-drop-item--ambient    .nav-drop-icon { background: rgba(20,184,166,0.09); color: #0d9488; border-color: rgba(20,184,166,0.15); }

/* ── Hamburger button (mobile) ───────────────────────────────────────────── */
.nav-hamburger {
  display: none; flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 40px; height: 40px; border-radius: 8px;
  background: rgba(255, 255, 255, 0.12); border: 1px solid rgba(255, 255, 255, 0.28); cursor: pointer;
  padding: 0; transition: background .2s, border-color .2s;
}
.nav-hamburger span {
  display: block; width: 18px; height: 2px; background: #fff; border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-hamburger:hover { background: rgba(255, 255, 255, 0.22); border-color: rgba(255, 255, 255, 0.45); }

/* ── Mobile navigation overlay ──────────────────────────────────────────── */
.mobile-nav {
  position: fixed; top: 0; left: 0; bottom: 0; width: 300px;
  background: white; z-index: 500; transform: translateX(-100%);
  transition: transform .28s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 4px 0 24px rgba(0,0,0,0.12); display: flex; flex-direction: column;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,0.45); z-index: 499;
  opacity: 0; pointer-events: none; transition: opacity .28s;
}
.mobile-nav-backdrop.is-visible { opacity: 1; pointer-events: auto; }
.mobile-nav-inner { display: flex; flex-direction: column; height: 100%; overflow-y: auto; }
.mobile-nav-hd {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-bottom: 1px solid var(--border); flex-shrink: 0;
}
.mobile-nav-close {
  width: 32px; height: 32px; border-radius: 6px; background: var(--surface2);
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; cursor: pointer;
}
.mobile-nav-links { padding: 12px 0; }
.mobile-nav-links a {
  display: flex; align-items: center; gap: 10px; padding: 13px 20px;
  font-size: 15px; font-weight: 500; color: var(--text-1); text-decoration: none;
  transition: background .15s; border-left: 3px solid transparent;
}
.mobile-nav-links a:hover { background: var(--surface2); }
.mobile-nav-section-hd {
  font-weight: 700 !important; font-size: 11px !important; text-transform: uppercase;
  letter-spacing: 0.8px; color: var(--text-3) !important; padding: 16px 20px 6px !important;
  pointer-events: none;
}
.mobile-nav-sections { border-left: none; padding-left: 0; }
.mobile-nav-sections a { padding-left: 32px !important; font-size: 14px !important; color: var(--text-2) !important; }
.mobile-nav-sections a:hover { color: var(--text-1) !important; }
.mnav-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.mnav-dot--wheels     { background: #1A56DB; }
.mnav-dot--body       { background: #059669; }
.mnav-dot--audio      { background: #7c3aed; }
.mnav-dot--performance{ background: #f97316; }
.mnav-dot--vehicle    { background: #0891b2; }
.mnav-dot--general    { background: #64748b; }
.mobile-deals-link { color: var(--blue) !important; font-weight: 600 !important; border-left: 3px solid var(--blue) !important; background: var(--blue-light) !important; }

.nav-right { display: flex; align-items: center; gap: 10px; margin-left: 16px; flex-shrink: 0; }
#main-nav .search-bar {
  display: flex; align-items: center;
  background: rgba(255, 255, 255, 0.12); border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px; padding: 0 14px; height: 40px; gap: 8px; width: 240px;
  color: rgba(255, 255, 255, 0.75);
}
#main-nav .search-bar:focus-within { border-color: #fff; background: #fff; color: var(--text-3); }
#main-nav .search-bar input { background: none; border: none; outline: none; color: var(--text-1); font-family: var(--font-body); font-size: 13px; width: 100%; }
#main-nav .search-bar input::placeholder { color: var(--text-3); }
#main-nav .btn-cart {
  position: relative; width: 40px; height: 40px; border-radius: 8px;
  background: rgba(255, 255, 255, 0.12); border: 1px solid rgba(255, 255, 255, 0.28);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: border-color .2s, background .2s, color .2s; color: #fff; text-decoration: none;
}
#main-nav .btn-cart:hover { border-color: #fff; background: #fff; color: var(--blue); }
#main-nav .cart-badge { border-color: var(--blue-dark); }
.cart-badge { position: absolute; top: -5px; right: -5px; width: 18px; height: 18px; background: var(--red); border-radius: 50%; font-size: 10px; font-weight: 700; color: white; display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); border: 2px solid white; }

/* Hero banner */
.hero-banner {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-image: linear-gradient(to right, rgba(11, 31, 66, 0.92), rgba(11, 31, 66, 0.55)),
    url('https://images.unsplash.com/photo-1593640408182-31c70c8268f5?q=80&w=2071&auto=format&fit=crop&crop=center');
  background-size: cover;
  background-position: center;
}
.hero-banner--carousel { background-image: none; overflow: hidden; }
.hero-slides { position: absolute; inset: 0; z-index: 1; }
.hero-slide {
  position: absolute; inset: 0; display: flex; align-items: center;
  background-size: cover; background-position: center; opacity: 0;
  transition: opacity .7s ease; pointer-events: none;
}
.hero-slide::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right,
    rgba(11, 31, 66, var(--hero-overlay-left, .75)),
    rgba(11, 31, 66, var(--hero-overlay-right, .45))
  );
}
.hero-slide.is-active { opacity: 1; pointer-events: auto; }
.hero-slide .hero-banner-inner { z-index: 2; }
.hero-banner-inner { max-width: 1280px; margin: 0 auto; padding: 80px 48px 120px; width: 100%; position: relative; z-index: 2; }
.hero-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: #60A5FA; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.hero-label::before { content: ''; width: 28px; height: 1px; background: #60A5FA; }
.hero-banner h1 {
  font-family: var(--font-disp); font-weight: 900; font-size: clamp(48px, 8vw, 88px);
  line-height: 0.95; text-transform: uppercase; letter-spacing: -1px; color: white; margin-bottom: 20px;
}
.hero-banner h1 .accent { color: #60A5FA; }
.hero-banner p { font-size: 18px; line-height: 1.6; color: #93B4D8; max-width: 520px; }
.btn-hero-banner {
  display: inline-flex; align-items: center; margin-top: 26px; padding: 13px 22px;
  border-radius: 8px; background: var(--blue); color: white; text-decoration: none;
  font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: .6px;
  box-shadow: 0 14px 30px rgba(26,86,219,.28); transition: background .18s, transform .18s;
}
.btn-hero-banner:hover { background: #1447c0; transform: translateY(-1px); }
.hero-carousel-controls {
  position: absolute; left: 50%; bottom: 110px; z-index: 4; transform: translateX(-50%);
  display: flex; gap: 8px; align-items: center;
}
.hero-dot {
  width: 10px; height: 10px; border-radius: 999px; border: 1px solid rgba(255,255,255,.75);
  background: rgba(255,255,255,.28); cursor: pointer; padding: 0; transition: width .18s, background .18s;
}
.hero-dot.is-active { width: 26px; background: #60A5FA; border-color: #60A5FA; }

section { padding: 64px 80px; }
.section-tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue); margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.section-tag::before { content: ''; width: 20px; height: 1px; background: var(--blue); }
.section-title { font-family: var(--font-disp); font-weight: 900; font-size: 44px; text-transform: uppercase; letter-spacing: -0.5px; color: var(--text-1); line-height: 1; }
.section-title em { color: var(--blue); font-style: normal; }
.section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px; flex-wrap: wrap; gap: 16px; }
.view-all { font-family: var(--font-disp); font-weight: 700; font-size: 13px; text-transform: uppercase; color: var(--blue); text-decoration: none; display: flex; align-items: center; gap: 6px; border-bottom: 1px solid var(--blue); padding-bottom: 2px; }

/* Categories */
.categories-section { background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.categories-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 640px) { .categories-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) {
  .categories-grid {
    grid-template-columns: repeat(9, minmax(0, 1fr));
    gap: 10px;
  }
  .categories-section .section-header { margin-bottom: 28px; }
  .cat-card {
    aspect-ratio: 4 / 5;
    min-height: 0;
    border-radius: 8px;
  }
  .cat-card__body { padding: 10px 8px 12px; gap: 3px; }
  .cat-name {
    font-size: clamp(9px, 0.72vw, 12px);
    letter-spacing: 0.03em;
  }
  .cat-count {
    font-size: clamp(8px, 0.62vw, 10px);
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
.cat-card {
  position: relative; display: block; overflow: hidden; border-radius: 10px;
  aspect-ratio: 4 / 5; min-height: 160px;
  cursor: pointer; text-decoration: none; color: inherit;
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}
.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.22);
}
.cat-card__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform .4s ease;
}
.cat-card:hover .cat-card__img { transform: scale(1.06); }
.cat-card__overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(8, 18, 38, 0.12) 0%,
    rgba(8, 18, 38, 0.35) 42%,
    rgba(5, 12, 28, 0.82) 78%,
    rgba(3, 8, 20, 0.94) 100%
  );
}
.cat-card__body {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
  padding: 14px 12px 16px; text-align: left;
}
.cat-name {
  font-family: var(--font-disp); font-weight: 700;
  font-size: clamp(11px, 0.95vw, 14px); line-height: 1.2;
  letter-spacing: 0.04em; text-transform: uppercase; color: #fff;
}
.cat-count {
  font-size: clamp(10px, 0.8vw, 12px); line-height: 1.35;
  color: rgba(255, 255, 255, 0.82); font-weight: 400;
}

.products-section { background: var(--page-bg); }
.products-grid { display: grid; grid-template-columns: repeat(1, 1fr); gap: 16px; }
@media (min-width: 640px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .products-grid.featured-rims-grid { grid-template-columns: repeat(5, 1fr); } }
@media (min-width: 1024px) { .products-grid:not(.featured-rims-grid) { grid-template-columns: repeat(4, 1fr); } }

.product-rating { display: flex; align-items: center; gap: 2px; margin-bottom: 8px; }
.star { font-size: 12px; color: #D1D5DB; line-height: 1; }
.star.filled { color: #F59E0B; }
.badge-new { background: var(--blue); color: white; }

/* New Arrivals / Wheels */
.wheels-section { background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.wheels-layout { display: grid; grid-template-columns: 1fr; gap: 20px; align-items: start; }
@media (min-width: 1024px) { .wheels-layout { grid-template-columns: 1fr 1fr; } }
.wheel-hero-card {
  background: linear-gradient(135deg, #0B1F42 0%, #0E2D60 60%, #0A3D7C 100%);
  border: 1.5px solid rgba(59, 130, 246, 0.3); border-radius: 14px; overflow: hidden;
  min-height: 420px; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 36px; position: relative; cursor: pointer; transition: border-color .25s;
  text-decoration: none; color: inherit;
}
@media (min-width: 1024px) { .wheel-hero-card { min-height: 500px; } }
.wheel-hero-card:hover { border-color: rgba(96, 165, 250, 0.6); }
.wheel-hero-card::before {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(circle at 60% 35%, rgba(59, 130, 246, 0.2) 0%, transparent 55%);
}
.wheel-hero-card:has(.wheel-hero-image)::before {
  background: linear-gradient(
    105deg,
    rgba(7, 17, 35, 0.94) 0%,
    rgba(11, 31, 66, 0.82) 38%,
    rgba(11, 31, 66, 0.35) 62%,
    rgba(11, 31, 66, 0.08) 100%
  );
}
.wheel-hero-image {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  pointer-events: none;
}
.wheel-visual,
svg.wheel-visual {
  position: absolute; top: 50%; right: -20px; z-index: 0;
  transform: translateY(-55%);
  width: 260px; height: 260px; opacity: 0.95; pointer-events: none;
  overflow: visible;
}
@media (min-width: 1024px) {
  .wheel-visual, svg.wheel-visual { width: 300px; height: 300px; }
}
.wheel-mini-img {
  display: flex; align-items: center; justify-content: center;
}
.wheel-mini-img svg { width: 56px; height: 56px; display: block; flex-shrink: 0; }
.wheel-content { position: relative; z-index: 2; max-width: min(100%, 320px); }
.wheel-tag { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.5px; text-transform: uppercase; color: #93C5FD; margin-bottom: 8px; }
.wheel-hero-name { font-family: var(--font-disp); font-weight: 900; font-size: clamp(28px, 4vw, 40px); text-transform: uppercase; line-height: 1; margin-bottom: 8px; color: white; }
.wheel-hero-name .wheel-hero-name-accent,
.wheel-hero-name-accent { font-style: normal; color: #93C5FD; }
.wheel-hero-desc { font-size: 14px; color: #93B4D8; margin-bottom: 20px; max-width: 260px; }
.wheel-specs { display: flex; gap: 20px; margin-bottom: 24px; flex-wrap: wrap; }
.wheel-spec-val { font-family: var(--font-disp); font-weight: 700; font-size: 18px; color: white; }
.wheel-spec-lbl { font-size: 11px; color: #93B4D8; text-transform: uppercase; letter-spacing: 1px; font-family: var(--font-mono); }
.btn-hero-sm {
  font-family: var(--font-disp); font-weight: 800; font-size: 13px; text-transform: uppercase;
  color: white; background: var(--blue); border: none; padding: 0 24px; height: 44px;
  border-radius: 6px; cursor: pointer; transition: background .2s;
}
.btn-hero-sm:hover { background: #2563EB; }
.wheels-right { display: flex; flex-direction: column; gap: 12px; }
.wheel-mini-card {
  background: #fff; border: 1.5px solid var(--border); border-radius: 12px; padding: 14px 16px;
  display: flex; gap: 14px; align-items: center; transition: border-color .2s, box-shadow .2s;
  color: inherit;
}
.wheel-mini-card:hover { border-color: var(--blue); box-shadow: 0 4px 16px rgba(26, 86, 219, 0.1); }
.wheel-mini-main {
  flex: 1;
  min-width: 0;
  display: flex;
  gap: 14px;
  align-items: center;
  text-decoration: none;
  color: inherit;
}
.wheel-mini-aside {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}
.wheel-mini-cart {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  font: inherit;
  text-transform: none;
  letter-spacing: normal;
  transition: background .2s, transform .2s;
}
.wheel-mini-cart svg {
  display: block;
  flex-shrink: 0;
}
.wheel-mini-cart:hover {
  background: var(--blue-dark);
  transform: scale(1.05);
}
.wheel-mini-img {
  width: 78px; height: 78px; background: #fff; border: 1px solid var(--border); border-radius: 8px;
  flex-shrink: 0; display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.wheel-mini-img img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.wheel-mini-info { flex: 1; min-width: 0; }
.wheel-mini-brand { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.5px; text-transform: uppercase; color: var(--blue); margin-bottom: 4px; }
.wheel-mini-name { font-family: var(--font-disp); font-weight: 700; font-size: 16px; color: var(--text-1); margin-bottom: 3px; }
.wheel-mini-meta { font-size: 12px; color: var(--text-3); }
.wheel-mini-price {
  font-family: var(--font-disp);
  font-weight: 800;
  font-size: 22px;
  color: var(--text-1);
  line-height: 1;
  text-align: right;
}

/* Reviews */
.reviews-section { background: var(--page-bg); }
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 768px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card { background: #fff; border: 1.5px solid var(--border); border-radius: 12px; padding: 24px; }
.review-stars { color: #F59E0B; font-size: 16px; margin-bottom: 14px; letter-spacing: 2px; }
.review-text {
  font-size: 14px; line-height: 1.7; color: var(--text-2); margin-bottom: 20px;
  border-left: 3px solid var(--blue); padding-left: 14px;
}
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 40px; height: 40px; border-radius: 50%; background: var(--blue-light);
  border: 1.5px solid rgba(26, 86, 219, 0.2); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-disp); font-weight: 800; font-size: 14px; color: var(--blue);
}
.reviewer-info .name { font-family: var(--font-disp); font-weight: 700; font-size: 15px; color: var(--text-1); }
.reviewer-info .verified { font-size: 11px; color: var(--green); font-family: var(--font-mono); letter-spacing: 0.5px; }
.reviewer-info .verified a { color: var(--blue); text-decoration: none; }
.reviewer-info .verified a:hover { text-decoration: underline; }

/* Review status & account review UI */
.review-status-badge {
  display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.4px; padding: 3px 8px; border-radius: 4px;
}
.review-status-pending { background: #FEF3C7; color: #B45309; }
.review-status-approved { background: #DCFCE7; color: var(--green); }
.review-status-rejected { background: #FEE2E2; color: var(--red); }

.account-reviews-section { margin-top: 32px; }
.account-reviewable-list, .account-my-reviews-list { list-style: none; padding: 0; margin: 16px 0 0; display: flex; flex-direction: column; gap: 12px; }
.account-reviewable-item {
  display: flex; align-items: center; gap: 14px; padding: 14px 16px;
  background: #fff; border: 1px solid var(--border); border-radius: 10px;
}
.account-reviewable-thumb { width: 56px; height: 56px; object-fit: contain; border-radius: 8px; background: var(--surface2); }
.account-reviewable-meta { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.account-review-cta { font-size: 13px; white-space: nowrap; }
.account-my-review-item { margin: 0; }
.account-my-review-header { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 10px; }
.account-review-body { font-size: 14px; line-height: 1.65; color: var(--text-2); margin: 10px 0; }
.account-review-product { display: flex; gap: 16px; align-items: center; margin-bottom: 24px; }
.account-review-thumb { width: 72px; height: 72px; object-fit: contain; border-radius: 10px; border: 1px solid var(--border); background: #fff; }
.account-review-form .checkout-field { margin-bottom: 18px; }
.account-review-note { margin-top: 12px; font-size: 13px; }
.account-review-link { display: inline-block; margin-top: 6px; font-size: 13px; }

.review-rating-input { display: flex; flex-direction: column; gap: 6px; }
.review-rating-option { display: flex; align-items: center; gap: 10px; cursor: pointer; font-size: 14px; color: #F59E0B; }
.review-rating-option input { accent-color: var(--blue); }

.product-reviews-section { margin: 48px 0 32px; padding-top: 32px; border-top: 1px solid var(--border); }
.product-reviews-header { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 20px; flex-wrap: wrap; }
.product-reviews-header h2 { font-family: var(--font-disp); font-weight: 800; font-size: 22px; text-transform: uppercase; }
.btn-review-link { color: var(--blue); font-weight: 600; font-size: 14px; text-decoration: none; }
.btn-review-link:hover { text-decoration: underline; }
.product-reviews-list { display: grid; gap: 16px; }
@media (min-width: 768px) { .product-reviews-list { grid-template-columns: repeat(2, 1fr); } }
.product-review-card { margin: 0; }

.reviews-page { flex: 1; padding: 48px 24px 64px; background: var(--page-bg); }
.reviews-page-inner { max-width: 1200px; margin: 0 auto; }
.reviews-page-grid { margin-top: 28px; }

.brands-section .section-header-inline { text-align: center; margin-bottom: 28px; }
.brands-section .section-header-inline .section-title { font-size: 28px; }

.brands-page { flex: 1; padding: 48px var(--ch-content-pad) 64px; background: var(--page-bg); }
.brands-page-inner { max-width: var(--ch-content-max); margin: 0 auto; }
.brands-page-header {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 20px;
  margin-bottom: 36px; flex-wrap: wrap;
}
.brands-page-eyebrow {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 10px;
}
.brands-page-title {
  font-family: var(--font-disp); font-size: clamp(28px, 4vw, 36px);
  font-weight: 800; color: var(--text-1); line-height: 1.1; margin-bottom: 10px;
}
.brands-page-title em { color: var(--blue); font-style: normal; }
.brands-page-desc { font-size: 15px; color: var(--text-3); max-width: 560px; line-height: 1.6; }
.brands-page-shop-link {
  font-size: 14px; font-weight: 600; color: var(--blue); text-decoration: none;
  white-space: nowrap; transition: color .2s;
}
.brands-page-shop-link:hover { color: var(--blue-dark); text-decoration: underline; }
.brands-page-empty { color: var(--text-3); font-size: 15px; }
.brands-page-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(168px, 1fr)); gap: 14px;
}
.brands-page-card {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; min-height: 148px; padding: 18px 16px 16px;
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  box-shadow: 0 1px 2px rgba(13, 24, 41, 0.04); text-decoration: none;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.brands-page-card:hover {
  border-color: rgba(26, 86, 219, 0.35);
  box-shadow: 0 8px 24px rgba(13, 24, 41, 0.08);
  transform: translateY(-2px);
}
.brands-page-card-logo {
  display: flex; align-items: center; justify-content: center;
  width: 100%; min-height: 52px;
}
.brands-page-card-logo img {
  display: block; width: auto; height: auto; max-width: 100%; max-height: 52px;
  object-fit: contain; filter: grayscale(100%); opacity: .72;
  transition: filter .2s, opacity .2s;
}
.brands-page-card:hover .brands-page-card-logo img { filter: grayscale(0); opacity: 1; }
.brands-page-card-initial {
  display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--blue-light); color: var(--blue-dark);
  font-family: var(--font-disp); font-size: 22px; font-weight: 800;
}
.brands-page-card-meta { display: flex; flex-direction: column; align-items: center; gap: 4px; text-align: center; }
.brands-page-card-name { font-size: 13px; font-weight: 700; color: var(--text-1); line-height: 1.3; }
.brands-page-card-count { font-size: 11px; color: var(--text-3); }

.shop-breadcrumb { margin-bottom: 16px; }
.shop-page-header--brand {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
}
.shop-brand-header-logo {
  display: block; width: auto; height: auto; max-width: 120px; max-height: 40px;
  object-fit: contain;
}

.product-card {
  background: #fff; border: 1px solid var(--border); border-radius: 10px; overflow: hidden;
  transition: border-color .25s, transform .2s, box-shadow .25s; display: flex; flex-direction: column;
}
.product-card:hover { border-color: var(--blue); transform: translateY(-3px); box-shadow: 0 10px 28px rgba(26, 86, 219, 0.13); }
.product-image { height: 190px; background: #fff; border-bottom: 1px solid #F0F0F0; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.product-image img,
.product-image svg,
.product-image .wheel-product-img { width: 160px; height: 160px; max-width: 85%; object-fit: contain; }
.product-image svg { flex-shrink: 0; }
.product-badge { position: absolute; top: 10px; left: 10px; font-size: 10px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; padding: 3px 9px; border-radius: 4px; z-index: 1; }
.badge-sale { background: var(--red); color: white; }
.badge-hot { background: var(--orange); color: white; }
.product-info { padding: 14px 16px 16px; display: flex; flex-direction: column; flex: 1; }
.product-cat { font-size: 11px; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.product-name { font-weight: 700; font-size: 13px; text-transform: uppercase; color: var(--text-1); line-height: 1.45; margin-bottom: 12px; flex: 1; }
.product-footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: auto; }
.price-current { font-weight: 700; font-size: 16px; color: var(--blue); }
.price-was { font-size: 12px; color: var(--text-3); text-decoration: line-through; margin-left: 6px; }
.btn-add-cart {
  font-weight: 600; font-size: 11px; text-transform: uppercase; color: white; background: var(--blue);
  border: none; padding: 0 14px; height: 32px; border-radius: 6px; cursor: pointer;
  display: flex; align-items: center; gap: 4px; white-space: nowrap; transition: background .2s;
}
.btn-add-cart:hover { background: var(--blue-dark); }

.promo-section { background: var(--page-bg); padding: 64px 80px; }
.promo-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 768px) { .promo-grid { grid-template-columns: 2fr 1fr; } }
.promo-grid--payments {
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 768px) { .promo-grid--payments { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.promo-card { border-radius: 14px; padding: 40px; position: relative; overflow: hidden; min-height: 200px; display: flex; flex-direction: column; justify-content: center; }
.promo-main { background: linear-gradient(120deg, #0A3D7C 0%, #1565C0 55%, #2563EB 100%); }
.promo-secondary { background: linear-gradient(135deg, #1C0700 0%, #7C2D12 55%, #C2410C 100%); }
.promo-payments--finance { background: linear-gradient(120deg, #0A3D7C 0%, #1565C0 55%, #2563EB 100%); }
.promo-payments--checkout { background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0d9488 100%); }
.promo-label { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-bottom: 10px; }
.promo-title { font-family: var(--font-disp); font-weight: 900; font-size: 32px; text-transform: uppercase; line-height: 1; color: white; margin-bottom: 12px; }
.promo-desc { font-size: 14px; color: rgba(255,255,255,0.72); margin-bottom: 20px; max-width: 420px; }
.promo-payment-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}
.promo-payment-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 8px 14px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}
.promo-payment-logo img {
  display: block;
  width: auto;
  max-width: 130px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
}
.promo-payment-logo--rcs img {
  max-width: 110px;
  height: 36px;
}
.promo-payment-logo--visa img {
  max-width: 72px;
  height: 28px;
}
.promo-payment-logo--mastercard img {
  max-width: 44px;
  height: 28px;
}
.btn-promo {
  font-family: var(--font-disp);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  background: white;
  border: none;
  padding: 0 24px;
  height: 44px;
  border-radius: 8px;
  cursor: pointer;
  color: #0A3D7C;
  align-self: flex-start;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, color .15s;
}
.btn-promo:hover { background: rgba(255, 255, 255, 0.92); }
.btn-promo-orange { color: #7C2D12; }
.btn-promo-dark { color: #0f172a; }

.brands-section { background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 44px 80px; }
.brands-label { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; color: var(--text-3); text-align: center; margin-bottom: 28px; }
.brands-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 24px 32px; }
.brand-item { font-family: var(--font-disp); font-weight: 900; font-size: 18px; text-transform: uppercase; color: var(--border-mid); cursor: default; transition: color .2s; }
.brand-item:hover { color: var(--blue); }

footer { background: var(--text-1); padding: 64px 80px 36px; }
.footer-top { display: grid; grid-template-columns: 1fr; gap: 32px; margin-bottom: 48px; }
@media (min-width: 768px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-top > div:first-child,
  .footer-col--subscribe { grid-column: 1 / -1; }
}
@media (min-width: 1100px) {
  .footer-top { grid-template-columns: 1.4fr 0.9fr 0.9fr 1.25fr; gap: 36px; }
  .footer-top > div:first-child,
  .footer-col--subscribe { grid-column: auto; }
}
.footer-tagline { font-size: 14px; color: #6B8CB0; line-height: 1.65; margin: 16px 0; max-width: 300px; }
.footer-col h4 { font-family: var(--font-disp); font-weight: 800; font-size: 12px; text-transform: uppercase; color: white; margin-bottom: 18px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: #6B8CB0; text-decoration: none; }
.footer-links a:hover { color: white; }
.footer-middle { display: flex; justify-content: center; margin-bottom: 32px; }
.footer-social { list-style: none; display: flex; align-items: center; justify-content: center; gap: 12px; margin: 0; padding: 0; }
.footer-social-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  color: #6B8CB0; text-decoration: none; transition: color .2s, background .2s, border-color .2s;
}
.footer-social-link:hover { color: #fff; background: var(--blue); border-color: var(--blue); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px; }
.footer-copy { font-size: 12px; color: #4B6080; font-family: var(--font-mono); text-align: center; }
.footer-col--subscribe .footer-subscribe { margin: 0; }
.footer-subscribe-row { display: flex; flex-direction: column; gap: 8px; }
.footer-subscribe-input {
  width: 100%; border: 1px solid rgba(255,255,255,0.15); border-radius: 8px;
  background: rgba(255,255,255,0.06); color: #fff; font-size: 14px; padding: 10px 12px;
  box-sizing: border-box;
}
.footer-subscribe-input::placeholder { color: #6B8CB0; }
.footer-subscribe-input:focus {
  outline: none; border-color: #60A5FA; background: rgba(255,255,255,0.1);
}
.footer-subscribe-btn {
  width: 100%; border: none; border-radius: 8px; background: var(--blue); color: #fff;
  font-family: var(--font-disp); font-weight: 700; font-size: 12px; text-transform: uppercase;
  letter-spacing: 0.3px; padding: 10px 16px; cursor: pointer; transition: background .2s;
}
.footer-subscribe-btn:hover { background: var(--blue-dark); }
.footer-subscribe-btn:disabled { opacity: 0.65; cursor: not-allowed; }
.footer-subscribe-msg { margin: 8px 0 0; font-size: 12px; line-height: 1.4; }
.footer-subscribe-msg.is-success { color: #86efac; }
.footer-subscribe-msg.is-error { color: #fca5a5; }
.footer-subscribe-hint { margin: 0 0 14px; font-size: 13px; color: #6B8CB0; line-height: 1.55; max-width: 280px; }
.footer-logo { display: inline-flex; text-decoration: none; }
.footer-logo-img { height: 52px; width: auto; max-width: 220px; display: block; object-fit: contain; }
.logo-text-footer { font-family: var(--font-disp); font-weight: 800; font-size: 20px; color: white; text-transform: uppercase; }
.logo-text-footer em { color: #60A5FA; font-style: normal; }

/* Checkout (cart & success) */
.checkout-page {
  flex: 1; background: var(--page-bg);
  padding: 48px 80px 64px; min-height: calc(100vh - 100px);
}
.checkout-page-inner { max-width: 1200px; margin: 0 auto; }
.checkout-title {
  font-family: var(--font-disp); font-weight: 900; font-size: clamp(32px, 5vw, 44px);
  text-transform: uppercase; letter-spacing: -0.5px; color: var(--text-1); margin-bottom: 32px;
}
.checkout-title em { color: var(--blue); font-style: normal; }
.checkout-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 1024px) { .checkout-grid { grid-template-columns: 1fr 380px; } }
.cart-items-list { display: flex; flex-direction: column; gap: 12px; }
.cart-item {
  background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 16px;
  display: flex; flex-wrap: wrap; gap: 16px; align-items: center;
  transition: border-color .2s, box-shadow .2s;
}
.cart-item:hover { border-color: var(--blue-mid); box-shadow: 0 4px 16px rgba(26, 86, 219, 0.08); }
.cart-item-img {
  width: 96px; height: 96px; object-fit: contain; background: var(--surface2);
  border-radius: 8px; border: 1px solid var(--border); padding: 6px;
}
.cart-item-info { flex: 1; min-width: 160px; }
.cart-item-name { font-weight: 700; font-size: 14px; text-transform: uppercase; color: var(--text-1); line-height: 1.4; }
.cart-item-price { font-weight: 700; font-size: 16px; color: var(--blue); margin-top: 6px; }
.cart-item-qty { display: flex; align-items: center; gap: 8px; }
.cart-qty-btn {
  width: 32px; height: 32px; border-radius: 6px; border: 1px solid var(--border);
  background: var(--surface2); color: var(--text-1); font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: border-color .2s, background .2s;
}
.cart-qty-btn:hover { border-color: var(--blue); background: var(--blue-light); color: var(--blue); }
.cart-qty-val { width: 32px; text-align: center; font-weight: 600; font-size: 14px; }
.cart-item-total { font-family: var(--font-disp); font-weight: 800; font-size: 18px; color: var(--text-1); min-width: 90px; text-align: right; }
.cart-item-remove {
  background: none; border: none; color: var(--text-3); cursor: pointer; padding: 8px;
  border-radius: 6px; transition: color .2s, background .2s;
}
.cart-item-remove:hover { color: var(--red); background: #FEF2F2; }
.cart-empty {
  background: #fff; border: 1px dashed var(--border-mid); border-radius: 12px;
  padding: 48px 24px; text-align: center; color: var(--text-3); font-size: 15px;
}
.cart-empty a { color: var(--blue); font-weight: 600; text-decoration: none; }
.cart-empty a:hover { text-decoration: underline; }
.order-summary {
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  padding: 28px; position: sticky; top: 88px; box-shadow: 0 4px 20px rgba(13, 24, 41, 0.06);
}
.order-summary h2 {
  font-family: var(--font-disp); font-weight: 800; font-size: 18px; text-transform: uppercase;
  color: var(--text-1); margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--border);
}
.summary-row { display: flex; justify-content: space-between; margin-bottom: 12px; font-size: 14px; }
.summary-row .label { color: var(--text-3); }
.summary-row .value { font-weight: 600; color: var(--text-1); }
.summary-row .value.free { color: var(--green); }
.summary-row .checkout-discount-value { color: var(--green); }
.checkout-coupon {
  margin: 16px 0 12px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.checkout-coupon-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-3);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.checkout-coupon-row {
  display: flex;
  align-items: stretch;
  gap: 8px;
}
.checkout-coupon-input {
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  box-sizing: border-box;
}
.checkout-coupon-input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-light);
}
.checkout-coupon-input[readonly] {
  background: var(--surface2);
  color: var(--text-2);
}
.btn-checkout.btn-checkout--coupon {
  flex: 0 0 auto;
  width: auto;
  min-width: 5.5rem;
  padding: 10px 16px;
  font-size: 12px;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.checkout-coupon-hint {
  margin: 8px 0 0;
  min-height: 1.2em;
}
.checkout-coupon-hint.is-error { color: var(--red); }
.summary-total {
  display: flex; justify-content: space-between; align-items: baseline;
  margin: 20px 0 24px; padding-top: 16px; border-top: 1px solid var(--border);
}
.summary-total .label { font-family: var(--font-disp); font-weight: 800; font-size: 16px; text-transform: uppercase; }
.summary-total .value { font-family: var(--font-disp); font-weight: 900; font-size: 28px; color: var(--blue); }
.btn-checkout {
  width: 100%; font-family: var(--font-disp); font-weight: 700; font-size: 14px;
  letter-spacing: 0.5px; text-transform: uppercase; color: white; background: var(--blue);
  border: none; padding: 16px 24px; border-radius: 8px; cursor: pointer;
  transition: background .2s, transform .15s;
}
.btn-checkout:hover:not(:disabled) { background: var(--blue-dark); transform: translateY(-1px); }
.btn-checkout:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.checkout-trust { margin-top: 16px; font-size: 12px; color: var(--text-3); text-align: center; font-family: var(--font-mono); }
.checkout-trust--left { text-align: left; }
.checkout-panel {
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  padding: 24px; margin-bottom: 16px;
}
.checkout-panel-title {
  font-family: var(--font-disp); font-weight: 800; font-size: 14px;
  text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-1);
  margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--border);
}
.checkout-field { margin-bottom: 16px; }
.checkout-field:last-child { margin-bottom: 0; }
.checkout-field label {
  display: block; font-size: 13px; font-weight: 600; color: var(--text-2); margin-bottom: 6px;
}
.checkout-field .req { color: var(--red); }
.checkout-field input,
.checkout-field select,
.checkout-field textarea {
  width: 100%; font-family: var(--font-body); font-size: 14px;
  border: 1px solid var(--border); border-radius: 8px; padding: 11px 14px;
  background: #fff; color: var(--text-1); transition: border-color .2s, box-shadow .2s;
}
.checkout-field input:focus,
.checkout-field select:focus,
.checkout-field textarea:focus {
  outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.12);
}
.checkout-field input.is-invalid,
.checkout-field select.is-invalid { border-color: var(--red); }
.checkout-field textarea { resize: vertical; min-height: 88px; }
.checkout-field-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .checkout-field-grid { grid-template-columns: 1fr 1fr; } }
.checkout-field-grid--3 { grid-template-columns: 1fr; }
@media (min-width: 768px) { .checkout-field-grid--3 { grid-template-columns: 1fr 1fr 120px; } }
.field-error { display: block; font-size: 12px; color: var(--red); margin-top: 6px; }
.field-hint { display: block; font-size: 12px; color: var(--text-3); margin-top: 6px; }
.checkout-alert {
  padding: 14px 16px; border-radius: 8px; font-size: 14px; margin-bottom: 20px;
}
.checkout-alert--error { background: #FEF2F2; border: 1px solid #FECACA; color: #B91C1C; }
.btn-checkout--form { margin-top: 8px; }
.btn-checkout--quote {
  margin-top: 10px;
  background: #fff;
  color: var(--blue, #1a56df);
  border: 2px solid var(--blue, #1a56df);
  box-shadow: none;
}
.btn-checkout--quote:hover {
  background: #eff6ff;
  color: var(--blue, #1a56df);
}

/* Payment Methods Selector in Checkout */
.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 10px;
}
.payment-method-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: border-color 0.2s, background-color 0.2s, box-shadow 0.2s;
  position: relative;
  background-color: #fff;
  user-select: none;
}
.payment-method-card:hover {
  border-color: var(--blue-mid, #3b82f6);
  background-color: #f8fafc;
}
.payment-method-card.is-selected {
  border-color: var(--blue, #1a56df);
  background-color: #eff6ff;
  box-shadow: 0 0 0 1px var(--blue, #1a56df);
}
.payment-method-card input[type="radio"] {
  width: auto;
  margin-top: 4px;
  cursor: pointer;
  accent-color: var(--blue, #1a56df);
}
.payment-method-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.payment-method-name {
  font-family: var(--font-disp);
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--text-1);
}
.payment-method-desc {
  font-size: 12px;
  color: var(--text-3);
  line-height: 1.4;
}
.checkout-summary-items {
  list-style: none; margin: 0 0 16px; padding: 0 0 16px; border-bottom: 1px solid var(--border);
  max-height: 280px; overflow-y: auto;
}
.checkout-summary-item {
  display: flex; align-items: center; gap: 12px; padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.checkout-summary-item:last-child { border-bottom: none; }
.checkout-summary-thumb {
  width: 48px; height: 48px; object-fit: contain; background: var(--surface2);
  border-radius: 6px; border: 1px solid var(--border); padding: 4px;
}
.checkout-summary-meta { flex: 1; min-width: 0; }
.checkout-summary-name {
  display: block; font-size: 12px; font-weight: 600; text-transform: uppercase;
  color: var(--text-1); line-height: 1.35;
}
.checkout-summary-qty { font-size: 11px; color: var(--text-3); font-family: var(--font-mono); }
.checkout-summary-price { font-weight: 700; font-size: 13px; color: var(--blue); white-space: nowrap; }
body.storefront-layout,
body.checkout-layout { display: flex; flex-direction: column; min-height: 100vh; }
body.storefront-layout > footer { margin-top: auto; }

/* Auth pages */
.auth-page { flex: 1; display: flex; align-items: center; justify-content: center; padding: 48px 24px; }
.auth-card {
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  padding: 36px 32px; width: 100%; max-width: 440px; box-shadow: 0 4px 20px rgba(13, 24, 41, 0.06);
}
.auth-card--wide { max-width: 640px; }
.auth-title {
  font-family: var(--font-disp); font-weight: 900; font-size: clamp(28px, 4vw, 36px);
  text-transform: uppercase; color: var(--text-1); margin-bottom: 8px;
}
.auth-title em { color: var(--blue); font-style: normal; }
.auth-subtitle { font-size: 14px; color: var(--text-3); margin-bottom: 24px; }
.auth-form { display: flex; flex-direction: column; gap: 0; }
.auth-footer-link { margin-top: 20px; font-size: 14px; color: var(--text-3); text-align: center; }
.auth-footer-link a { color: var(--blue); font-weight: 600; text-decoration: none; }
.auth-footer-link a:hover { text-decoration: underline; }
.checkout-alert--success { background: #DCFCE7; border: 1px solid #BBF7D0; color: #166534; }

/* Account */
.nav-account {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 8px; color: rgba(255, 255, 255, 0.9); margin-right: 4px;
  transition: background .2s, color .2s;
}
#main-nav .nav-account:hover, #main-nav .nav-account.active { background: rgba(255, 255, 255, 0.18); color: #fff; }
.account-page { flex: 1; padding: 48px 24px 64px; }
.account-page-inner { max-width: 900px; margin: 0 auto; }
.account-back { font-size: 14px; color: var(--text-3); text-decoration: none; }
.account-back:hover { color: var(--blue); }
.account-welcome { margin-bottom: 28px; font-size: 16px; }
.text-muted { color: var(--text-3); font-size: 14px; }
.account-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .account-grid { grid-template-columns: repeat(3, 1fr); } }
.account-card {
  display: block; background: #fff; border: 1px solid var(--border); border-radius: 12px;
  padding: 24px; text-decoration: none; color: inherit; transition: border-color .2s, box-shadow .2s;
}
.account-card:hover { border-color: var(--blue-mid); box-shadow: 0 8px 24px rgba(26, 86, 219, 0.1); }
.account-card h2 { font-family: var(--font-disp); font-weight: 800; font-size: 16px; text-transform: uppercase; margin-bottom: 8px; }
.account-card p { font-size: 14px; color: var(--text-3); margin: 0; }
.account-form-section { margin-bottom: 20px; }
.btn-checkout--inline { width: auto; display: inline-block; margin-top: 8px; }
.input-disabled { background: var(--surface2); color: var(--text-3); cursor: not-allowed; }
.account-orders-table-wrap { background: #fff; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.account-orders-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.account-orders-table th, .account-orders-table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--border); }
.account-orders-table th { background: var(--surface2); font-weight: 600; font-size: 12px; text-transform: uppercase; color: var(--text-3); }
.account-link { color: var(--blue); font-weight: 600; text-decoration: none; }
.account-link:hover { text-decoration: underline; }
.order-status-badge { display: inline-block; padding: 4px 10px; border-radius: 6px; font-size: 11px; font-weight: 700; text-transform: uppercase; }
.order-status-pending { background: #FEF9C3; color: #854D0E; }
.order-status-complete { background: #DCFCE7; color: #166534; }
.order-status-failed, .order-status-cancelled { background: #FEE2E2; color: #991B1B; }
.account-order-header { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 8px; }
.account-address { font-style: normal; line-height: 1.6; font-size: 14px; color: var(--text-2); }
.checkout-checkbox-label { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-2); cursor: pointer; margin-bottom: 16px; }
.checkout-checkbox-label input { margin-top: 3px; accent-color: var(--blue); }
.checkout-password-fields { display: none; margin-bottom: 12px; }
.checkout-password-fields.is-visible { display: block; }
.checkout-logged-in-banner { background: var(--blue-light); border-color: var(--blue-mid); }
.checkout-logged-in-banner p { margin: 0 0 8px; font-size: 14px; color: var(--text-2); }
.checkout-logged-in-banner p:last-child { margin-bottom: 0; }
.checkout-signin-prompt { margin-top: 12px; margin-bottom: 0; }
.checkout-address-fields { display: none; margin-top: 16px; }
.checkout-address-fields.is-visible { display: block; }
.checkout-pickup-fields { display: none; margin-top: 16px; }
.checkout-pickup-fields.is-visible { display: block; }
.checkout-fulfillment-options { display: flex; flex-direction: column; gap: 10px; }
.checkout-save-address { margin-bottom: 16px; }
.checkout-contact-summary { margin: 0 0 12px; }
.checkout-contact-row { display: grid; grid-template-columns: 88px 1fr; gap: 8px 16px; margin-bottom: 10px; font-size: 14px; }
.checkout-contact-row:last-child { margin-bottom: 0; }
.checkout-contact-row dt { margin: 0; color: var(--text-3); font-weight: 600; }
.checkout-contact-row dd { margin: 0; color: var(--text-1); }
.saved-addresses { display: flex; flex-direction: column; gap: 10px; margin-bottom: 4px; }
.saved-address-card {
  display: flex; align-items: flex-start; gap: 12px; padding: 14px 16px;
  border: 1px solid var(--border); border-radius: 10px; cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.saved-address-card:hover { border-color: var(--blue-mid); }
.saved-address-card.is-selected { border-color: var(--blue); background: var(--blue-light); }
.saved-address-card input { margin-top: 4px; accent-color: var(--blue); flex-shrink: 0; }
.saved-address-card-body { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.saved-address-label { font-size: 14px; font-weight: 600; color: var(--text-1); }
.saved-address-default { font-weight: 500; color: var(--text-3); font-size: 12px; }
.saved-address-line { font-size: 13px; color: var(--text-2); line-height: 1.45; }
.address-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.address-list-item {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 16px;
  padding: 16px; border: 1px solid var(--border); border-radius: 10px; background: #fff;
}
.address-list-item.is-default { border-color: var(--blue-mid); background: var(--blue-light); }
.address-list-actions { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.address-list-actions form { display: inline; }
.btn-link { background: none; border: none; padding: 0; font-size: 13px; color: var(--blue); cursor: pointer; font-family: inherit; }
.btn-link:hover { text-decoration: underline; }
.btn-link--danger { color: var(--red); }

/* Success page */
.success-page {
  min-height: 100vh; display: flex; flex-direction: column;
  background: var(--page-bg); align-items: center; justify-content: center; padding: 48px 24px;
}
.success-card {
  background: #fff; border: 1px solid var(--border); border-radius: 16px;
  padding: 48px 40px; text-align: center; max-width: 440px; width: 100%;
  box-shadow: 0 20px 50px rgba(13, 24, 41, 0.1);
}
.success-icon {
  width: 80px; height: 80px; background: #DCFCE7; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 24px;
  border: 3px solid var(--green);
}
.success-icon svg { color: var(--green); }
.success-card h1 {
  font-family: var(--font-disp); font-weight: 900; font-size: 28px;
  text-transform: uppercase; color: var(--text-1); margin-bottom: 12px;
}
.success-card p { font-size: 15px; line-height: 1.6; color: var(--text-2); margin-bottom: 28px; }
.btn-success-home {
  display: inline-block; font-family: var(--font-disp); font-weight: 700; font-size: 14px;
  letter-spacing: 0.5px; text-transform: uppercase; color: white; background: var(--blue);
  border: none; padding: 14px 32px; border-radius: 8px; text-decoration: none;
  transition: background .2s, transform .15s;
}
.btn-success-home:hover { background: var(--blue-dark); transform: translateY(-1px); }

/* Toast notifications */
#re-toast-container {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  display: flex; flex-direction: column; gap: 12px; max-width: min(400px, calc(100vw - 32px));
  pointer-events: none;
}
.re-toast {
  pointer-events: auto;
  display: flex; align-items: flex-start; gap: 14px;
  background: #fff; border: 1px solid var(--border);
  border-radius: 12px; padding: 14px 40px 14px 14px;
  box-shadow: 0 16px 40px rgba(13, 24, 41, 0.18);
  position: relative; overflow: hidden;
  transform: translateX(120%); opacity: 0;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
}
.re-toast--in { transform: translateX(0); opacity: 1; }
.re-toast--out { transform: translateX(120%); opacity: 0; }
.re-toast--success { border-left: 4px solid var(--green); }
.re-toast--info { border-left: 4px solid var(--blue); }
.re-toast-thumb {
  width: 52px; height: 52px; flex-shrink: 0; border-radius: 8px;
  background: var(--surface2); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.re-toast-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.re-toast-thumb--icon { background: var(--blue-light); color: var(--green); }
.re-toast-body { flex: 1; min-width: 0; }
.re-toast-title {
  font-family: var(--font-disp); font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.3px; color: var(--text-1); margin-bottom: 4px;
}
.re-toast-msg {
  font-size: 13px; line-height: 1.45; color: var(--text-2);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.re-toast-action {
  display: inline-block; margin-top: 8px; font-size: 12px; font-weight: 600;
  color: var(--blue); text-decoration: none; font-family: var(--font-disp);
  text-transform: uppercase; letter-spacing: 0.3px;
}
.re-toast-action:hover { text-decoration: underline; }
.re-toast-close {
  position: absolute; top: 10px; right: 10px; background: none; border: none;
  color: var(--text-3); cursor: pointer; padding: 4px; border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
}
.re-toast-close:hover { background: var(--surface2); color: var(--text-1); }
.re-toast-progress {
  position: absolute; bottom: 0; left: 0; height: 3px; width: 100%;
  background: var(--blue); transform-origin: left;
  animation: toast-progress linear forwards;
}
@keyframes toast-progress { from { transform: scaleX(1); } to { transform: scaleX(0); } }
.btn-cart.cart-bump { animation: cart-bump 0.4s ease; }
@keyframes cart-bump {
  0%, 100% { transform: scale(1); }
  40% { transform: scale(1.12); }
}

/* ── Cart drawer ──────────────────────────────────────────────── */
.cart-drawer-root {
  position: fixed; inset: 0; z-index: 9998;
  pointer-events: none;
  --cart-drawer-duration: 520ms;
  --cart-drawer-ease: cubic-bezier(0.16, 1, 0.3, 1);
}
.cart-drawer-root.is-open { pointer-events: auto; }
.cart-drawer-backdrop {
  position: absolute; inset: 0; background: rgba(13, 24, 41, 0.55);
  opacity: 0;
  transition: opacity var(--cart-drawer-duration) var(--cart-drawer-ease);
  will-change: opacity;
}
.cart-drawer-root.is-open .cart-drawer-backdrop { opacity: 1; }
.cart-drawer {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(420px, 100vw); max-width: 100%;
  background: #fff; display: flex; flex-direction: column;
  box-shadow: -12px 0 40px rgba(13, 24, 41, 0.18);
  transform: translate3d(100%, 0, 0);
  transition: transform var(--cart-drawer-duration) var(--cart-drawer-ease);
  will-change: transform;
  backface-visibility: hidden;
  --cart-drawer-pad-x: 24px;
}
.cart-drawer-root.is-open .cart-drawer { transform: translate3d(0, 0, 0); }
@media (prefers-reduced-motion: reduce) {
  .cart-drawer-root { --cart-drawer-duration: 1ms; }
  .cart-drawer,
  .cart-drawer-backdrop { transition: none; }
}
.cart-drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding: 20px var(--cart-drawer-pad-x) 16px; border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.cart-drawer-title {
  margin: 0; font-family: var(--font-disp); font-size: 20px; font-weight: 800;
  color: var(--text-1); letter-spacing: -0.02em;
}
.cart-drawer-header-actions { display: flex; align-items: center; gap: 12px; }
.cart-drawer-view-link {
  font-size: 13px; font-weight: 600; color: var(--text-2); text-decoration: underline;
  text-underline-offset: 2px;
}
.cart-drawer-view-link:hover { color: var(--blue); }
.cart-drawer-close {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border: none; background: var(--surface2);
  border-radius: 8px; color: var(--text-2); cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.cart-drawer-close:hover { background: var(--border); color: var(--text-1); }
.cart-drawer-shipping {
  padding: 14px var(--cart-drawer-pad-x); border-bottom: 1px solid var(--border); flex-shrink: 0;
}
.cart-drawer-shipping-text {
  margin: 0 0 10px; font-size: 13px; color: var(--text-2); line-height: 1.4;
}
.cart-drawer-shipping-bar {
  height: 6px; background: var(--surface2); border-radius: 999px; overflow: hidden;
}
.cart-drawer-shipping-fill {
  height: 100%; width: 0; background: var(--text-1); border-radius: 999px;
  transition: width 0.35s ease;
}
.cart-drawer-body {
  flex: 1; overflow-y: auto; display: flex; flex-direction: column;
  min-height: 0;
}
.cart-drawer-items { padding: 16px var(--cart-drawer-pad-x); display: flex; flex-direction: column; gap: 16px; }
.cart-drawer-empty {
  text-align: center; color: var(--text-3); font-size: 14px; padding: 24px 0;
}
.cart-drawer-empty a { color: var(--blue); font-weight: 600; }
.cart-drawer-item {
  display: grid; grid-template-columns: 72px 1fr; gap: 12px; align-items: start;
}
.cart-drawer-item-img {
  width: 72px; height: 72px; object-fit: contain; background: var(--surface2);
  border: 1px solid var(--border); border-radius: 8px; padding: 4px;
}
.cart-drawer-item-body { min-width: 0; }
.cart-drawer-item-name {
  font-size: 13px; font-weight: 600; color: var(--text-1); line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.cart-drawer-item-prices { margin-top: 6px; display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.cart-drawer-item-price { font-weight: 700; font-size: 14px; color: var(--text-1); }
.cart-drawer-item-old { font-size: 12px; color: var(--text-3); text-decoration: line-through; }
.cart-drawer-item-actions {
  grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between;
  gap: 12px; margin-top: 4px;
}
.cart-drawer-qty {
  display: inline-flex; align-items: center; border: 1px solid var(--border);
  border-radius: 8px; overflow: hidden;
}
.cart-drawer-qty-btn {
  width: 32px; height: 32px; border: none; background: #fff; color: var(--text-1);
  font-size: 16px; cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.cart-drawer-qty-btn:hover { background: var(--surface2); }
.cart-drawer-qty-val {
  min-width: 28px; text-align: center; font-size: 13px; font-weight: 600;
  border-left: 1px solid var(--border); border-right: 1px solid var(--border);
  padding: 0 4px; line-height: 32px;
}
.cart-drawer-item-remove {
  background: none; border: none; color: var(--text-3); cursor: pointer;
  padding: 6px; border-radius: 6px; display: flex; align-items: center;
}
.cart-drawer-item-remove:hover { color: var(--red); background: #FEF2F2; }
.cart-drawer-related {
  margin: 16px var(--cart-drawer-pad-x) 0;
  margin-top: auto;
  padding: 16px;
  border-top: none;
  border-radius: 12px;
  background: var(--surface2);
}
.cart-drawer-related-header {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; margin-bottom: 12px;
  padding: 0 2px;
}
.cart-drawer-related-title {
  margin: 0; font-family: var(--font-disp); font-size: 14px; font-weight: 700;
  color: var(--text-1); padding-left: 2px;
}
.cart-drawer-related-nav { display: flex; gap: 6px; }
.cart-drawer-related-btn {
  width: 30px; height: 30px; border: 1px solid var(--border); border-radius: 8px;
  background: #fff; color: var(--text-3); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, color 0.2s;
}
.cart-drawer-related-btn:hover:not(:disabled) { border-color: var(--blue-mid); color: var(--blue); }
.cart-drawer-related-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.cart-drawer-related-track-wrap { overflow: hidden; }
.cart-drawer-related-track {
  display: flex; gap: 10px; overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; -ms-overflow-style: none;
}
.cart-drawer-related-track::-webkit-scrollbar { display: none; }
.cart-drawer-related-card {
  flex: 0 0 100%; scroll-snap-align: start;
  display: flex; flex-direction: column; gap: 12px;
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  padding: 14px;
}
.cart-drawer-related-card-top {
  display: flex; align-items: flex-start; gap: 14px;
}
.cart-drawer-related-card-media {
  flex-shrink: 0; display: block; text-decoration: none;
}
.cart-drawer-related-card-img {
  width: 72px; height: 72px; object-fit: contain; background: var(--surface2);
  border-radius: 10px; border: 1px solid var(--border); padding: 6px; display: block;
}
.cart-drawer-related-card-body {
  flex: 1; min-width: 0; padding-top: 2px;
}
.cart-drawer-related-card-name {
  font-size: 13px; font-weight: 600; color: var(--text-1); line-height: 1.45;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  text-decoration: none;
}
.cart-drawer-related-card-name:hover { color: var(--blue); }
.cart-drawer-related-card-prices {
  margin-top: 8px; font-size: 13px; line-height: 1.3; color: var(--text-2);
  display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap;
}
.cart-drawer-related-card-prices s { color: var(--text-3); font-size: 12px; }
.cart-drawer-related-card-prices strong { color: var(--text-1); font-weight: 700; font-size: 14px; }
.cart-drawer-related-add {
  width: 100%; height: auto; padding: 11px 14px;
  font-family: var(--font-disp); font-size: 12px; font-weight: 700;
  letter-spacing: 0.2px; text-transform: uppercase;
  border: 1px solid var(--border-mid, var(--border)); background: #fff; color: var(--text-1);
  border-radius: 8px; cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.cart-drawer-related-add:hover {
  background: var(--blue); border-color: var(--blue); color: #fff;
}
.cart-drawer-footer {
  padding: 16px var(--cart-drawer-pad-x) 20px; border-top: 1px solid var(--border);
  background: #fff; flex-shrink: 0;
}
.cart-drawer-checkout {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-disp); font-weight: 700; font-size: 14px;
  letter-spacing: 0.3px; text-transform: uppercase;
  color: #fff; background: var(--blue); border: none;
  padding: 16px 20px; border-radius: 8px; cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.cart-drawer-checkout:hover:not(:disabled) { background: var(--blue-dark); transform: translateY(-1px); }
.cart-drawer-checkout:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
body.cart-drawer-open { overflow: hidden; }

/* ── Shop page ────────────────────────────────────────────────── */
.shop-page { padding: 32px var(--ch-content-pad); max-width: var(--ch-content-max); margin: 0 auto; }
.shop-layout { display: grid; grid-template-columns: 280px 1fr; gap: 28px; align-items: start; }
.shop-sidebar-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 72px;
}

/* ── Shop product filters ─────────────────────────────────────────────────── */
.shop-filters-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.shop-filters-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--border);
}

.shop-filters-head h2 {
  font-family: var(--font-disp);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--text-1);
}

.shop-filters-head-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.shop-filters-close {
  display: none;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  color: var(--text-2);
  cursor: pointer;
}

.shop-filters-clear {
  font-size: 11px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  white-space: nowrap;
}

.shop-filters-clear:hover { text-decoration: underline; }

.shop-filters-form {
  display: flex;
  flex-direction: column;
  max-height: min(70vh, 720px);
  overflow: auto;
}

.shop-filter-section {
  padding: 14px 16px;
}

.shop-filter-section + .shop-filter-section {
  border-top: 1px solid var(--border);
}

.shop-filter-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.55px;
  color: var(--text-3);
  margin: 0 0 10px;
}

.shop-filter-select,
.shop-filter-input {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  font-size: 13px;
  color: var(--text-1);
  padding: 10px 12px;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.shop-filter-select:focus,
.shop-filter-input:focus {
  outline: none;
  border-color: rgba(37, 99, 235, 0.45);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.shop-filter-price-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 8px;
  align-items: center;
}

.shop-filter-price-sep {
  color: var(--text-3);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.shop-filter-hint {
  margin: 8px 0 0;
  font-size: 11px;
  line-height: 1.4;
  color: var(--text-3);
}

.shop-filter-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: 168px;
  overflow: auto;
  scrollbar-width: thin;
}

.shop-filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  padding: 7px 10px;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}

.shop-filter-option:hover {
  background: var(--surface2);
}

.shop-filter-option.is-checked {
  background: rgba(37, 99, 235, 0.06);
  border-color: rgba(37, 99, 235, 0.14);
}

.shop-filter-option-input {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--blue);
  cursor: pointer;
}

.shop-filter-option-text {
  flex: 1;
  min-width: 0;
  font-size: 13px;
  line-height: 1.35;
  color: var(--text-2);
  word-break: break-word;
}

.shop-filter-option.is-checked .shop-filter-option-text {
  color: var(--text-1);
  font-weight: 600;
}

.shop-filter-option-count {
  flex-shrink: 0;
  min-width: 24px;
  padding: 2px 7px;
  border-radius: 999px;
  background: var(--surface2);
  color: var(--text-3);
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
}

.shop-filter-option.is-checked .shop-filter-option-count {
  background: rgba(37, 99, 235, 0.12);
  color: var(--blue);
}

.shop-filters-footer {
  position: sticky;
  bottom: 0;
  padding: 12px 16px 14px;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, #fff 100%);
}

.shop-filters-apply {
  width: 100%;
  border: none;
  border-radius: 10px;
  background: var(--blue);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 11px 14px;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
}

.shop-filters-apply:hover {
  background: var(--blue-dark);
}

.shop-filters-apply:active { transform: translateY(1px); }

.shop-main-col { min-width: 0; }

.shop-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.shop-filters-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-1);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 12px;
  cursor: pointer;
}

.shop-filters-toggle-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

.shop-active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex: 1;
}

.shop-filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface2);
  color: var(--text-2);
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
}

.shop-filter-chip:hover {
  border-color: rgba(37, 99, 235, 0.35);
  color: var(--blue);
}

.shop-filter-chip span {
  font-size: 14px;
  line-height: 1;
  opacity: 0.7;
}

.shop-filter-chip--clear {
  background: transparent;
  color: var(--blue);
  border-color: transparent;
  font-weight: 600;
}

/* ── Sidebar redesign ────────────────────────────────────────── */
.shop-sidebar {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}
.sidebar-categories {
  flex: 0 0 auto;
  overflow: visible;
}

/* All-products link */
.sidebar-all-link {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 16px;
  font-size: 14px; font-weight: 600; color: var(--text-1);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: background .15s;
}
.sidebar-all-link:hover { background: var(--surface2); }
.sidebar-all-link.active { background: var(--blue-light); color: var(--blue); }
.sidebar-all-count {
  margin-left: auto;
  background: var(--surface2); color: var(--text-3);
  font-size: 11px; font-weight: 500;
  padding: 2px 7px; border-radius: 20px;
}
.sidebar-all-link.active .sidebar-all-count { background: rgba(26,86,219,.12); color: var(--blue); }

/* Filter input */
.sidebar-filter {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--surface2);
  color: var(--text-3);
}
.sidebar-filter svg { flex-shrink: 0; }
.sidebar-filter input {
  border: none; background: transparent; outline: none;
  font-size: 13px; color: var(--text-1); width: 100%;
}
.sidebar-filter input::placeholder { color: var(--text-3); }

/* Section */
.sidebar-section { border-bottom: 1px solid var(--border); }

.sidebar-section-hd {
  width: 100%;
  display: flex;
  align-items: stretch;
  gap: 0;
  padding: 0;
  border: none;
  background: none;
  text-align: left;
}
.sidebar-section-link {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 8px 11px 16px;
  color: var(--text-2);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  text-decoration: none;
  transition: background .15s, color .15s;
}
.sidebar-section-link:hover { background: var(--surface2); color: var(--text-1); }
.sidebar-section-link.active {
  background: rgba(37, 99, 235, 0.08);
  color: var(--blue);
}
.sidebar-section-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  flex-shrink: 0;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--text-3);
  transition: background .15s, color .15s;
}
.sidebar-section-toggle:hover { background: var(--surface2); color: var(--text-1); }
.sidebar-section-icon { display: flex; align-items: center; }
.sidebar-section-icon svg { width: 15px; height: 15px; }
.sidebar-section-label { flex: 1; }
.sidebar-chevron { transition: transform .2s; flex-shrink: 0; opacity: .5; }
.sidebar-section.is-open .sidebar-chevron { transform: rotate(180deg); }

/* Per-section accent colours */
.sidebar-section--deals   .sidebar-section-link { border-left: 3px solid #f59e0b; padding-left: 13px; }
.sidebar-section--deals   .sidebar-section-icon { color: #f59e0b; }
.sidebar-section--wheels  .sidebar-section-link { border-left: 3px solid var(--blue); padding-left: 13px; }
.sidebar-section--wheels  .sidebar-section-icon { color: var(--blue); }
.sidebar-section--body    .sidebar-section-link { border-left: 3px solid #059669; padding-left: 13px; }
.sidebar-section--body    .sidebar-section-icon { color: #059669; }
.sidebar-section--audio   .sidebar-section-link { border-left: 3px solid #7c3aed; padding-left: 13px; }
.sidebar-section--audio   .sidebar-section-icon { color: #7c3aed; }
.sidebar-section--performance .sidebar-section-link { border-left: 3px solid var(--orange); padding-left: 13px; }
.sidebar-section--performance .sidebar-section-icon { color: var(--orange); }
.sidebar-section--general .sidebar-section-link { border-left: 3px solid #94a3b8; padding-left: 13px; }
.sidebar-section--general .sidebar-section-icon { color: #94a3b8; }
.sidebar-section--lamps .sidebar-section-link { border-left: 3px solid #ca8a04; padding-left: 13px; }
.sidebar-section--lamps .sidebar-section-icon { color: #ca8a04; }
.sidebar-section--interior .sidebar-section-link { border-left: 3px solid #64748b; padding-left: 13px; }
.sidebar-section--interior .sidebar-section-icon { color: #64748b; }
.sidebar-section--bakkie .sidebar-section-link { border-left: 3px solid #0891b2; padding-left: 13px; }
.sidebar-section--bakkie .sidebar-section-icon { color: #0891b2; }

/* Category list inside each section */
.sidebar-section-list {
  list-style: none;
  max-height: 0; overflow: hidden;
  transition: max-height .25s ease;
}
.sidebar-section.is-open .sidebar-section-list { max-height: 9999px; }

/* Individual category items */
.sidebar-cat-item { margin: 0; }

.sidebar-section-list .cat-item > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 7px 16px 7px 24px;
  font-size: 13px;
  color: var(--text-2);
  text-decoration: none;
  transition: background .15s, color .15s;
}
.sidebar-section-list .cat-item > a:hover { background: var(--surface2); color: var(--text-1); }
.sidebar-section-list .cat-item > a.active {
  background: rgba(37, 99, 235, 0.08);
  color: var(--blue);
  font-weight: 600;
}

.sidebar-cat-item > a,
.sidebar-cat-row > a {
  display: block;
  padding: 7px 16px 7px 20px;
  font-size: 13px; color: var(--text-2);
  text-decoration: none;
  transition: background .12s, color .12s;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.sidebar-cat-item > a:hover,
.sidebar-cat-row > a:hover { background: var(--surface2); color: var(--text-1); }
.sidebar-cat-item > a.active,
.sidebar-cat-row > a.active {
  background: var(--blue-light);
  color: var(--blue);
  font-weight: 600;
}

/* Row with expand button for items that have children */
.sidebar-cat-row {
  display: flex; align-items: stretch;
}
.sidebar-cat-row > a { flex: 1; display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.sidebar-cat-count {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-3);
    background: var(--surface2);
    padding: 1px 6px;
    border-radius: 999px;
    flex-shrink: 0;
}
.sidebar-cat-row > a.active .sidebar-cat-count { color: var(--blue); background: rgba(37, 99, 235, 0.12); }
.cat-expand-btn {
  border: none; background: none; cursor: pointer;
  padding: 0 12px 0 4px; color: var(--text-3);
  transition: color .12s, transform .2s;
  display: flex; align-items: center;
}
.cat-expand-btn:hover { color: var(--text-1); }
.sidebar-cat-item.is-open .cat-expand-btn { transform: rotate(180deg); color: var(--blue); }

/* Sub-category list */
.sidebar-sub-list {
  list-style: none;
  max-height: 0; overflow: hidden;
  transition: max-height .2s ease;
  background: var(--surface2);
  border-top: 1px solid var(--border);
}
.sidebar-cat-item.is-open .sidebar-sub-list { max-height: 9999px; }

.sidebar-sub-list li { margin: 0; }
.sidebar-sub-list li a {
  display: block;
  padding: 6px 16px 6px 30px;
  font-size: 12.5px; color: var(--text-3);
  text-decoration: none;
  transition: background .12s, color .12s;
  position: relative;
}
.sidebar-sub-list li a::before {
  content: '';
  position: absolute; left: 20px; top: 50%;
  width: 5px; height: 1px;
  background: var(--border); transform: translateY(-50%);
}
.sidebar-sub-list li a:hover { background: var(--surface2); color: var(--text-1); }
.sidebar-sub-list li a.active {
  color: var(--blue); font-weight: 600;
  background: var(--blue-light);
}
.sidebar-sub-list li a.active::before { background: var(--blue); }
/* ── Size filter bar ──────────────────────────────────────────── */
.size-filter-bar {
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
  padding: 12px 16px;
  margin-bottom: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.size-filter-label {
  display: flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 700; color: var(--text-3);
  text-transform: uppercase; letter-spacing: .4px;
  margin-right: 4px; white-space: nowrap;
}
.size-pill {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 5px 12px;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  font-size: 13px; font-weight: 600; color: var(--text-2);
  text-decoration: none;
  transition: border-color .15s, background .15s, color .15s;
  white-space: nowrap;
}
.size-pill:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-light);
}
.size-pill--active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.size-pill--active:hover { background: var(--blue-dark); border-color: var(--blue-dark); color: #fff; }
.size-pill--clear {
  background: transparent;
  border-color: var(--border);
  color: var(--text-3);
  font-weight: 500;
}
.size-pill--clear:hover { border-color: var(--orange); color: var(--orange); background: transparent; }
.size-pill-count {
  font-size: 11px; font-weight: 400; opacity: .7;
}
.size-pill--active .size-pill-count { opacity: .85; }

.shop-page-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; flex-wrap: wrap; gap: 10px; }
.shop-page-header h1 { font-family: var(--font-disp); font-size: 24px; font-weight: 800; color: var(--text-1); }
.shop-page-header h1 em { color: var(--blue); font-style: normal; }
.shop-result-count { font-size: 13px; color: var(--text-3); }
.shop-sort { font-size: 13px; color: var(--text-2); }
.shop-sort select { border: 1px solid var(--border); border-radius: 6px; padding: 5px 10px; font-size: 13px; background: var(--surface); }
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
.product-card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .2s, transform .2s; }
.product-card:hover { box-shadow: 0 8px 24px rgba(26,86,219,0.12); transform: translateY(-2px); }
.product-card-img { aspect-ratio: 1/1; background: var(--surface); display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; }
.product-card-img img { display: block; width: 100%; height: 100%; object-fit: contain; padding: 12px; }
.product-card-img .no-img { color: var(--text-3); font-size: 12px; }
.product-card-body { padding: 14px; flex: 1; display: flex; flex-direction: column; gap: 6px; background: var(--surface2); }
.product-card-name { font-size: 14px; font-weight: 600; color: var(--text-1); line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-card-sku { font-size: 11px; color: var(--text-3); font-family: var(--font-mono); }
.product-card-price { font-family: var(--font-disp); font-size: 18px; font-weight: 800; color: var(--blue); margin-top: auto; }
.product-card-price s { font-size: 13px; font-weight: 400; color: var(--text-3); margin-right: 4px; }
.product-card-footer { padding: 0 14px 14px; background: var(--surface2); }
.product-card-actions { display: flex; align-items: stretch; gap: 8px; }
.product-card-view {
  flex: 1; display: flex; align-items: center; justify-content: center;
  text-align: center; background: var(--blue); color: #fff; text-decoration: none;
  font-family: var(--font-disp); font-weight: 700; font-size: 13px; text-transform: uppercase;
  letter-spacing: 0.3px; border-radius: 8px; padding: 9px 12px; transition: background .2s;
}
.product-card-view:hover { background: var(--blue-dark); }
.product-card-cart {
  flex-shrink: 0;
  width: 42px;
  min-width: 42px;
  align-self: stretch;
  padding: 0;
  border: 2px solid var(--blue);
  border-radius: 8px;
  background: #fff;
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s;
}
.product-card-cart svg {
  width: 18px;
  height: 18px;
  display: block;
  flex-shrink: 0;
}
.product-card-cart:hover:not(:disabled) {
  background: var(--blue-light);
  border-color: var(--blue-dark);
  color: var(--blue-dark);
}
.product-card-cart:disabled {
  border-color: var(--border);
  background: var(--surface2);
  color: var(--text-3);
  cursor: not-allowed;
  opacity: 0.72;
}
.product-card-footer a:not(.product-card-view) { display: block; text-align: center; background: var(--blue); color: #fff; text-decoration: none; font-family: var(--font-disp); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.3px; border-radius: 8px; padding: 9px; transition: background .2s; }
.product-card-footer a:not(.product-card-view):hover { background: var(--blue-dark); }
.shop-pagination { display: flex; justify-content: center; gap: 6px; margin-top: 36px; flex-wrap: wrap; }
.shop-pagination a, .shop-pagination span { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 8px; border: 1px solid var(--border); font-size: 14px; font-weight: 500; text-decoration: none; color: var(--text-2); background: var(--surface); transition: background .15s, color .15s; }
.shop-pagination a:hover { background: var(--blue-light); color: var(--blue); }
.shop-pagination span.current { background: var(--blue); color: #fff; border-color: var(--blue); }
.shop-empty { text-align: center; padding: 60px 24px; color: var(--text-3); }
.shop-empty svg { margin-bottom: 16px; opacity: .4; }
.shop-empty h2 { font-family: var(--font-disp); font-size: 20px; color: var(--text-2); margin-bottom: 8px; }

/* ── Product detail page ──────────────────────────────────────── */
.product-page { padding: 28px var(--ch-content-pad) 32px; max-width: var(--ch-content-max); margin: 0 auto; }
.breadcrumb {
  font-size: 13px; margin: 0 0 22px;
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
  background: var(--blue-dark); border-radius: 8px; padding: 10px 16px;
}
.breadcrumb a { color: rgba(255, 255, 255, 0.82); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb-sep { color: rgba(255, 255, 255, 0.45); }
.breadcrumb-current { color: #fff; font-weight: 500; }
.product-breadcrumb { margin-bottom: 18px; }
.product-info-body { display: flex; flex-direction: column; gap: 16px; }
.product-detail-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.product-gallery { display: flex; flex-direction: column; gap: 12px; }
.product-gallery-main { aspect-ratio: 1/1; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.product-gallery-main img { width: 100%; height: 100%; object-fit: contain; padding: 24px; }
.product-gallery-thumbs { display: flex; gap: 8px; flex-wrap: wrap; }
.product-gallery-thumb { width: 64px; height: 64px; border-radius: 8px; border: 2px solid var(--border); background: var(--surface); cursor: pointer; overflow: hidden; display: flex; align-items: center; justify-content: center; transition: border-color .15s; }
.product-gallery-thumb:hover, .product-gallery-thumb.active { border-color: var(--blue); }
.product-gallery-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.product-info { display: flex; flex-direction: column; gap: 16px; }
.product-info-title { font-family: var(--font-disp); font-size: 28px; font-weight: 800; color: var(--text-1); line-height: 1.2; }
.product-info-sku { font-size: 12px; color: var(--text-3); font-family: var(--font-mono); }
.product-info-price { display: flex; align-items: baseline; gap: 10px; }
.product-info-price .current-price { font-family: var(--font-disp); font-size: 32px; font-weight: 900; color: var(--blue); }
.product-info-price .old-price { font-size: 18px; color: var(--text-3); text-decoration: line-through; }
.product-info-price .saving { font-size: 13px; font-weight: 600; color: var(--green); background: #DCFCE7; padding: 2px 8px; border-radius: 20px; }
.stock-badge { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 600; padding: 4px 10px; border-radius: 20px; }
.stock-badge--in { background: #DCFCE7; color: #15803D; }
.stock-badge--out { background: #FEE2E2; color: #DC2626; }
.stock-badge--low { background: #FEF3C7; color: #92400E; }
.product-attr-section { display: flex; flex-direction: column; gap: 8px; }
.product-attr-section h4 { font-size: 13px; font-weight: 600; color: var(--text-2); }
.attr-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.attr-chip { padding: 6px 14px; border: 1px solid var(--border); border-radius: 20px; font-size: 13px; cursor: pointer; background: var(--surface); color: var(--text-2); transition: border-color .15s, background .15s; }
.attr-chip:hover, .attr-chip.selected { border-color: var(--blue); background: var(--blue-light); color: var(--blue); }
.attr-chip.unavailable { opacity: .45; cursor: not-allowed; }
.product-purchase-block { margin-top: 4px; }
.product-purchase-block .btn-add-cart,
.product-purchase-block .btn-contact-us { width: 100%; }
.product-specs-section { margin-top: 4px; }
.product-specs-heading {
  font-family: var(--font-disp);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--text-3);
  margin-bottom: 10px;
}
.product-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.product-spec-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 10px 12px;
  background: var(--surface);
  min-width: 0;
}
.product-spec-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: var(--text-3);
  line-height: 1.3;
}
.product-spec-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-1);
  line-height: 1.35;
  word-break: break-word;
}
.product-specs-grid.is-collapsed {
  max-height: 220px;
  overflow: hidden;
  position: relative;
}
.product-specs-grid.is-collapsed::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--surface));
  pointer-events: none;
}
.product-specs-toggle {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  padding: 0;
  border: none;
  background: none;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.product-specs-toggle:hover { color: var(--blue-dark); }
.btn-add-cart { display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--blue); color: #fff; border: none; border-radius: 10px; padding: 14px 24px; font-family: var(--font-disp); font-weight: 700; font-size: 15px; text-transform: uppercase; letter-spacing: 0.4px; cursor: pointer; transition: background .2s; }
.btn-add-cart:hover { background: var(--blue-dark); }
.btn-add-cart:disabled { background: var(--text-3); cursor: not-allowed; }

/* Shop grid cart icon — keep separate from full-width .btn-add-cart on product page */
.product-card-actions .product-card-cart,
.ch-product-cart.btn-add-cart {
  width: 34px;
  height: 34px;
  min-width: 34px;
  padding: 0;
  font-weight: 400;
  font-size: inherit;
  text-transform: none;
  letter-spacing: 0;
  gap: 0;
  white-space: normal;
  border-radius: 6px;
}
.btn-contact-us { display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--surface2); color: var(--text-2); border: 1px solid var(--border); border-radius: 10px; padding: 14px 24px; font-family: var(--font-disp); font-weight: 700; font-size: 15px; text-transform: uppercase; letter-spacing: 0.4px; text-decoration: none; transition: background .2s; }
.btn-contact-us:hover { background: var(--border); }

/* ── Legal / policy pages ─────────────────────────────────────── */
.legal-page {
  flex: 1;
  padding: 48px 24px 64px;
  background: var(--page-bg);
}
.legal-page-inner { max-width: 820px; margin: 0 auto; }
.legal-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px 32px;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
}
.legal-title {
  font-family: var(--font-disp);
  font-size: 32px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 28px;
  color: var(--text-1);
}
.legal-body { font-size: 15px; line-height: 1.7; color: var(--text-2); }
.legal-body h2 {
  font-family: var(--font-disp);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: var(--text-1);
  margin: 32px 0 12px;
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 {
  font-family: var(--font-disp);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-1);
  margin: 24px 0 10px;
}
.legal-body p { margin: 0 0 14px; }
.legal-body ul,
.legal-body ol { margin: 0 0 16px; padding-left: 1.35rem; }
.legal-body li { margin-bottom: 8px; }
.legal-body a { color: var(--blue); font-weight: 600; text-decoration: none; }
.legal-body a:hover { text-decoration: underline; }
.legal-payment-logos img { max-width: 100%; height: auto; vertical-align: middle; }
.legal-store-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 16px 0 28px;
}
@media (min-width: 640px) {
  .legal-store-cards { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (min-width: 900px) {
  .legal-store-cards { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}
.legal-store-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 88px;
  padding: 12px 10px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}
.legal-store-card img {
  display: block;
  width: 100%;
  max-width: 140px;
  max-height: 62px;
  height: auto;
  object-fit: contain;
}
.legal-banking { list-style: none; padding: 0; margin: 0 0 8px; }
.legal-banking li { margin-bottom: 6px; }
.legal-note { font-weight: 600; color: var(--text-1); margin-bottom: 8px !important; }

/* ── Contact page ─────────────────────────────────────────────── */
.contact-page {
  flex: 1;
  display: flex;
  justify-content: center;
  padding: 48px 24px 64px;
}
.contact-card {
  width: 100%;
  max-width: 640px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px 32px;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
}
.contact-title {
  font-family: var(--font-disp);
  font-size: 32px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 10px;
}
.contact-title em { color: var(--blue); font-style: normal; }
.contact-lead { font-size: 15px; color: var(--text-2); margin-bottom: 24px; line-height: 1.5; }
.contact-product-banner {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 14px 16px;
  margin-bottom: 24px;
  background: var(--page-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.contact-product-banner-img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
  flex-shrink: 0;
}
.contact-product-banner-label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  color: var(--text-3);
  letter-spacing: 0.06em;
}
.contact-product-banner-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--text-1);
  margin: 4px 0;
  line-height: 1.3;
}
.contact-product-banner-meta { font-size: 13px; color: var(--text-3); }
.contact-product-banner-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
}
.contact-product-banner-link:hover { text-decoration: underline; }
.contact-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.btn-contact-submit {
  width: 100%;
  margin-top: 8px;
  padding: 14px 24px;
  border: none;
  border-radius: 10px;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-disp);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-contact-submit:hover { background: var(--blue-dark); }
.contact-alt {
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-3);
  text-align: center;
}
.contact-alt a { color: var(--blue); font-weight: 600; }
@media (max-width: 640px) {
  .contact-card { padding: 28px 20px; }
  .contact-product-banner { flex-direction: column; }
}

.product-desc-section { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 28px; margin-bottom: 40px; }
.product-desc-section h2 { font-family: var(--font-disp); font-size: 18px; font-weight: 800; color: var(--text-1); margin-bottom: 16px; }
.product-desc-section .desc-body { font-size: 15px; line-height: 1.7; color: var(--text-2); }
.product-desc-section .desc-body p { margin-bottom: 12px; }
.related-products-section { margin-bottom: 48px; }
.related-products-section h2 { font-family: var(--font-disp); font-size: 22px; font-weight: 800; color: var(--text-1); margin-bottom: 20px; }

@media (max-width: 1024px) {
  #re-toast-container { left: 16px; right: 16px; bottom: 16px; max-width: none; }
  .topbar, nav, section, .promo-section, footer, .brands-section, .categories-section, .wheels-section, .reviews-section, .checkout-page, .legal-page { padding-left: 24px; padding-right: 24px; }
  nav { flex-wrap: nowrap; height: 64px; padding: 0 24px; }
  .nav-links { display: none; }
  .nav-dropdown { display: none; }
  .search-bar { width: 160px; }
  .nav-hamburger { display: flex; }
  .order-summary { position: static; }
  .shop-page { padding: 24px var(--ch-content-pad); }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar-col { position: static; top: auto; }
  .shop-sidebar { display: none; }
  .shop-filters-toggle { display: inline-flex; }
  .shop-filters-close { display: inline-flex; }
  .shop-filters-panel {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    width: 100%;
    max-width: none;
    height: 100%;
    min-height: 100dvh;
    border: none;
    border-radius: 0;
    box-shadow: none;
    max-height: none;
    overflow: hidden;
    background: var(--surface);
    flex-direction: column;
    isolation: isolate;
  }
  .shop-filters-panel.is-open { display: flex; }
  .shop-filters-head {
    flex-shrink: 0;
    position: sticky;
    top: 0;
    z-index: 2;
    background: var(--surface);
  }
  .shop-filters-form {
    flex: 1;
    min-height: 0;
    max-height: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .shop-filter-section { background: var(--surface); }
  .shop-filters-footer {
    flex-shrink: 0;
    position: sticky;
    bottom: 0;
    z-index: 2;
    background: var(--surface);
  }
  body.shop-filters-open::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(15, 23, 42, 0.45);
    pointer-events: none;
  }
  .product-detail-layout { grid-template-columns: 1fr; gap: 24px; }
  .product-page { padding: 20px 24px 24px; }
  .product-specs-grid { grid-template-columns: 1fr; }
  .product-breadcrumb {
    font-size: 11px;
    padding: 7px 12px;
    margin-bottom: 10px;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 4px;
    border-radius: 6px;
  }
  .product-breadcrumb::-webkit-scrollbar { display: none; }
  .product-breadcrumb a { white-space: nowrap; }
  .product-info { display: contents; }
  .product-info-title {
    order: -2;
    font-size: 22px;
    line-height: 1.25;
    margin-bottom: 2px;
  }
  .product-gallery { order: -1; }
  .product-info-body { order: 0; }
}
@media (max-width: 480px) {
  .product-page { padding: 12px 16px 20px; }
  .product-breadcrumb {
    font-size: 10px;
    padding: 6px 10px;
    margin-bottom: 8px;
  }
  .product-info-title { font-size: 20px; }
  .product-detail-layout { gap: 18px; }
}
@media (max-width: 640px) {
  .search-bar { display: none; }
  .hero-banner { min-height: 520px; }
  .hero-banner-inner { padding: 64px 24px 110px; }
  .hero-banner p { font-size: 15px; }
  .hero-carousel-controls { bottom: 92px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   Promo Deal Sections
   ═══════════════════════════════════════════════════════════════════════════ */
.promo-deal-sections {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  /* One gradient across all promo blocks — starts at nav blue (--blue-dark) */
  background: linear-gradient(
    180deg,
    var(--blue-dark) 0%,
    #0b2252 16%,
    #0f2d5c 34%,
    #134074 52%,
    #1a56db 72%,
    var(--blue-mid) 88%,
    var(--blue) 100%
  );
}

.promo-deal-block {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  height: 635px;
  max-height: 635px;
  background: transparent;
  overflow: hidden;
}

.promo-deal-block--alt {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Invert 2nd block: products (content) left, image right */
.promo-deal-block--alt .promo-deal-content { order: 1; }
.promo-deal-block--alt .promo-deal-banner  { order: 2; }

/* Left (or right on alt) banner image panel */
.promo-deal-banner {
  position: relative;
  height: 100%;
  min-height: 0;
  box-sizing: border-box;
  padding: 18px 20px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  background: transparent;
}

.promo-deal-banner img {
  flex: 1;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.promo-deal-banner-placeholder {
  flex: 1;
  width: 100%;
  min-height: 0;
  border-radius: 14px;
  background: rgba(7, 20, 40, 0.45);
  border: 1px dashed rgba(147, 197, 253, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.15);
  font-size: 64px;
}

/* Right (or left on alt) content panel — inherits block gradient */
.promo-deal-content {
  height: 100%;
  min-height: 0;
  padding: 18px 20px 16px;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 10px;
  background: transparent;
  box-sizing: border-box;
}

.promo-deal-content:not(:has(.promo-deal-footer)) {
  grid-template-rows: auto minmax(0, 1fr);
}

.promo-deal-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(147, 197, 253, 0.65);
  flex-shrink: 0;
}

.promo-deal-eyebrow {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(255, 255, 255, 0.65);
}

.promo-deal-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 8px;
  border-radius: 4px;
  width: max-content;
}

.promo-deal-title {
  font-family: var(--font-disp, 'Barlow Condensed', sans-serif);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
  color: #fff;
}

/* Product grid inside deal block */
.promo-deal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 10px;
  min-height: 0;
  height: 100%;
}

.promo-deal-card {
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  overflow: hidden;
  color: #0f172a;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  min-height: 0;
  transition: border-color .18s, box-shadow .18s;
}

.promo-deal-card:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 12px rgba(26, 86, 219, 0.12);
}

.promo-deal-card-media-wrap {
  position: relative;
  flex: 1 1 0;
  min-height: 0;
  display: flex;
}

.promo-deal-card-media {
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-decoration: none;
  background: #fff;
}

.promo-deal-card-img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  background: #fff;
  padding: 10px 12px;
  box-sizing: border-box;
}

.promo-deal-card-img-placeholder {
  width: 100%;
  height: 100%;
  background: #f8fafc;
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-deal-card-info {
  min-width: 0;
  width: 100%;
  padding: 8px 10px 10px;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-sizing: border-box;
  text-align: left;
}

.promo-deal-card-name {
  font-size: 11px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1.25;
  text-decoration: none;
  text-transform: uppercase;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.promo-deal-card-name:hover {
  color: var(--blue-dark);
}

.promo-deal-card-price {
  font-size: 12px;
  font-weight: 800;
  color: var(--blue);
}

.promo-deal-card-actions {
  margin-top: 4px;
}

.promo-deal-card-view {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 26px;
  padding: 0 6px;
  border-radius: 4px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  line-height: 1;
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
  background: #fff;
  color: #0b1f42;
  border: 1px solid rgba(15,23,42,.18);
  text-decoration: none;
}

.promo-deal-card-view:hover {
  background: #f8fafc;
  border-color: rgba(37,99,235,.35);
  color: var(--blue);
}

.promo-deal-card-cart {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s;
  z-index: 2;
}

.promo-deal-card-cart:hover {
  background: var(--blue-dark);
  transform: scale(1.05);
}

.promo-deal-card-old-price {
  color: #94a3b8;
  font-size: 10px;
  font-weight: 500;
  margin-left: 4px;
  text-decoration: line-through;
}

.promo-deal-footer {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.promo-deal-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
  transition: background .15s;
}

.promo-deal-btn:hover {
  background: var(--blue-dark);
}

@media (max-width: 1024px) {
  .promo-deal-block,
  .promo-deal-block--alt {
    height: auto;
    max-height: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .promo-deal-content { padding: 12px; }
  .promo-deal-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(140px, 1fr));
    gap: 8px 10px;
  }
}

@media (max-width: 768px) {
  .promo-deal-block,
  .promo-deal-block--alt {
    grid-template-columns: 1fr;
    height: auto;
    max-height: none;
  }
  .promo-deal-block--alt .promo-deal-banner { order: -1; }
  .promo-deal-block--alt .promo-deal-content { order: 0; }
  .promo-deal-banner {
    min-height: 220px;
    height: auto;
    padding: 14px 16px;
  }
  .promo-deal-banner img,
  .promo-deal-banner-placeholder {
    min-height: 192px;
  }
  .promo-deal-content {
    display: flex;
    flex-direction: column;
    height: auto;
    padding: 16px;
  }
  .promo-deal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
    height: auto;
    gap: 10px;
  }
  .promo-deal-card {
    height: auto;
    aspect-ratio: 4 / 5;
    max-height: 200px;
  }
}

@media (max-width: 480px) {
  .promo-deal-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .promo-deal-card { max-height: 185px; }
}

/* ── Product carousels (homepage strips) ─────────────────────────────────── */
.product-carousel-section {
  padding: 48px 80px;
  background: var(--page-bg);
}
.product-carousel-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}
.product-carousel-viewport {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  container-type: inline-size;
  --carousel-gap: 16px;
  --carousel-visible: 5;
}
.product-carousel-track {
  display: flex;
  gap: var(--carousel-gap);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 2px 8px;
}
.product-carousel-track::-webkit-scrollbar { display: none; }
.carousel-product-card {
  flex: 0 0 calc(
    (100cqi - var(--carousel-gap) * (var(--carousel-visible) - 1)) / var(--carousel-visible)
  );
  min-width: 0;
  max-width: none;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .25s, transform .2s, box-shadow .25s;
}
.carousel-product-card:hover {
  border-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(26, 86, 219, 0.13);
}
.carousel-product-image {
  position: relative;
  height: 190px;
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-product-img-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.carousel-product-image img {
  width: 85%;
  max-width: 160px;
  height: 160px;
  object-fit: contain;
}
.carousel-product-no-img {
  color: var(--text-3);
  font-size: 12px;
}
.carousel-product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 2;
}
.carousel-product-cart {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s;
  z-index: 2;
}
.carousel-product-cart:hover {
  background: var(--blue-dark);
  transform: scale(1.05);
}
.carousel-product-info {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 4px;
}
.carousel-product-name {
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--text-1);
  line-height: 1.45;
  text-decoration: none;
}
.carousel-product-name:hover { color: var(--blue); }
.carousel-product-spec {
  font-size: 12px;
  color: var(--text-3);
  margin-bottom: 4px;
}
.carousel-product-price {
  font-weight: 700;
  font-size: 16px;
  color: var(--blue);
  margin-top: auto;
}
.carousel-product-price-was {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-3);
  text-decoration: line-through;
  margin-left: 6px;
}
.product-carousel-nav {
  position: relative;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text-1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: background .2s, border-color .2s, opacity .2s;
  z-index: 3;
}
.product-carousel-nav:hover:not(.at-edge) {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.product-carousel-nav.at-edge {
  opacity: 0.45;
}
.product-carousel-nav.is-hidden {
  visibility: hidden;
  pointer-events: none;
}
@media (max-width: 1200px) {
  .product-carousel-viewport { --carousel-visible: 4; }
}
@media (max-width: 900px) {
  .product-carousel-section { padding: 40px 24px; }
  .product-carousel-wrap { gap: 10px; }
  .product-carousel-viewport { --carousel-visible: 3; }
  .product-carousel-nav {
    width: 38px;
    height: 38px;
  }
}
@media (max-width: 600px) {
  .product-carousel-viewport { --carousel-visible: 2; }
  .product-carousel-nav {
    width: 34px;
    height: 34px;
  }
  .product-carousel-nav svg {
    width: 16px;
    height: 16px;
  }
}

