/* ============================================================
   STEVE'S AUTO SPARES — ECP-Inspired Stylesheet
   Red: #C8102E | Dark: #1D1D1B | White: #FFFFFF
   ============================================================ */

:root {
  --red:          #C8102E;
  --red-dark:     #a00d25;
  --red-hover:    #b30e27;
  --dark:         #1D1D1B;
  --dark2:        #2d2d2d;
  --dark3:        #444444;
  --white:        #FFFFFF;
  --grey-light:   #F5F5F5;
  --grey:         #E0E0E0;
  --grey-mid:     #AAAAAA;
  --grey-text:    #666666;
  --text:         #1D1D1B;
  --green:        #1a7c3d;
  --amber:        #FFB600;
  --border:       #D9D9D9;
  --radius-sm:    3px;
  --radius:       5px;
  --radius-md:    8px;
  --shadow-sm:    0 1px 4px rgba(0,0,0,0.07);
  --shadow:       0 2px 12px rgba(0,0,0,0.10);
  --shadow-lg:    0 6px 28px rgba(0,0,0,0.14);
  --transition:   all 0.18s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', Arial, 'Helvetica Neue', Helvetica, sans-serif;
  background: #fff;
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
}
html { overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; }
ul { list-style: none; }
::selection { background: var(--red); color: #fff; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f0f0f0; }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* ---- Utilities ---- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }

/* ---- Scroll Progress ---- */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 3px; width: 0%;
  background: var(--red);
  z-index: 9999; pointer-events: none;
  transition: width 0.1s linear;
}

/* ---- Reveal animation (keep for compatibility) ---- */
.reveal, .reveal-left, .reveal-right, .reveal-scale, .reveal-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible, .reveal-left.visible, .reveal-right.visible,
.reveal-scale.visible, .reveal-up.visible {
  opacity: 1; transform: none;
}

/* ============================================================
   TOP BAR
============================================================ */
.top-bar {
  background: var(--dark);
  color: #ccc;
  font-size: 12px;
  padding: 7px 0;
  position: relative;
  z-index: 200;
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-bar-promo {
  font-weight: 600;
  color: #fff;
}
.top-bar-promo span { color: var(--amber); }
.top-bar-links {
  display: flex;
  align-items: center;
  gap: 14px;
}
.top-bar-links a {
  color: #ccc;
  font-size: 12px;
  transition: color 0.15s;
  display: flex;
  align-items: center;
  gap: 4px;
}
.top-bar-links a:hover { color: #fff; }
.top-bar-sep { color: #555; }

/* ============================================================
   MAIN HEADER
============================================================ */
.main-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 150;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  transition: box-shadow 0.2s;
}
.main-header.scrolled { box-shadow: 0 3px 14px rgba(0,0,0,0.12); }
.main-header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-icon-wrap {
  width: 42px; height: 42px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-text-wrap { line-height: 1.15; }
.logo-name {
  font-size: 17px;
  font-weight: 900;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  display: block;
}
.logo-sub {
  font-size: 10px;
  color: var(--grey-text);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
}

/* Search */
.header-search { flex: 1; max-width: 620px; }
.search-form {
  display: flex;
  border: 2px solid var(--red);
  border-radius: var(--radius);
  overflow: hidden;
}
.search-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--text);
  background: #fff;
}
.search-input::placeholder { color: #aaa; }
.search-btn {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: flex; align-items: center; gap: 6px;
  transition: background 0.15s;
  white-space: nowrap;
  text-transform: uppercase;
}
.search-btn:hover { background: var(--red-dark); }

/* Header right */
.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.header-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-decoration: none;
}
.header-phone-label { font-size: 10px; color: var(--grey-text); }
.header-phone-num {
  font-size: 15px;
  font-weight: 800;
  color: var(--dark);
  transition: color 0.15s;
}
.header-phone:hover .header-phone-num { color: var(--red); }

.header-basket {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  padding: 10px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  position: relative;
  transition: background 0.15s;
  text-decoration: none;
}
.header-basket:hover { background: var(--red-dark); }
.header-basket-label { font-size: 10px; display: block; line-height: 1.1; opacity: 0.85; }
.header-basket-count { font-size: 17px; font-weight: 900; display: block; line-height: 1; }
.cart-badge {
  background: var(--amber);
  color: var(--dark);
  font-size: 10px;
  font-weight: 800;
  min-width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: absolute;
  top: -6px; right: -6px;
}
.cart-badge:not(.visible) { display: none; }
.cart-badge.visible { display: flex; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.2s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 3px solid var(--red);
  position: absolute;
  width: 100%;
  top: 100%;
  left: 0;
  z-index: 200;
  box-shadow: var(--shadow-lg);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid var(--grey);
  transition: all 0.15s;
}
.mobile-nav a:hover { background: var(--grey-light); color: var(--red); padding-left: 26px; }

/* ============================================================
   NAV BAR (Red)
============================================================ */
.header-nav {
  background: var(--red);
  border-bottom: 2px solid var(--red-dark);
  position: sticky;
  top: 71px;
  z-index: 140;
}
.header-nav-inner {
  display: flex;
  align-items: stretch;
  overflow-x: auto;
  scrollbar-width: none;
}
.header-nav-inner::-webkit-scrollbar { display: none; }
.nav-link {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 11px 16px;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  border-right: 1px solid rgba(255,255,255,0.15);
  transition: background 0.15s;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.nav-link:hover { background: rgba(0,0,0,0.18); }
.nav-link.nav-all { background: rgba(0,0,0,0.18); font-weight: 800; }
.nav-link.active { background: rgba(0,0,0,0.2); border-bottom: 3px solid #fff; }
.nav-link-right { margin-left: auto; border-right: none; border-left: 1px solid rgba(255,255,255,0.15); }

/* ============================================================
   TRUST STRIP
============================================================ */
.trust-strip {
  background: var(--grey-light);
  border-bottom: 1px solid var(--grey);
  padding: 10px 0;
}
.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 18px;
  border-right: 1px solid var(--grey);
}
.trust-item:last-child { border-right: none; }
.trust-item-icon { color: var(--red); flex-shrink: 0; }
.trust-item-icon svg { stroke: var(--red); display: block; }
.trust-item-title { font-size: 13px; font-weight: 700; color: var(--dark); line-height: 1.2; }
.trust-item-sub { font-size: 11px; color: var(--grey-text); line-height: 1.3; }

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg-slider { position: absolute; inset: 0; overflow: hidden; }
.hbs-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center top;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.hbs-slide.active { opacity: 1; }
.hbs-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.72);
}
.hero-content {
  position: relative; z-index: 2;
  height: 100%;
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 60px;
  max-width: 580px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
  width: fit-content;
}
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.hero-title .line2 { color: var(--amber); }
.hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 30px;
  line-height: 1.65;
  max-width: 420px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  padding: 14px 30px;
  border-radius: var(--radius);
  transition: background 0.15s;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.btn-hero-primary:hover { background: var(--red-dark); }
.btn-hero-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 14px 30px;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.45);
  transition: all 0.15s;
  text-transform: uppercase;
}
.btn-hero-secondary:hover { background: rgba(255,255,255,0.22); border-color: #fff; }

/* Slider controls */
.hbs-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10;
  background: rgba(0,0,0,0.38);
  color: #fff;
  border: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.15s;
}
.hbs-arrow:hover { background: var(--red); }
.hbs-prev { left: 16px; }
.hbs-next { right: 16px; }
.hbs-dots {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10;
}
.hbs-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.38);
  border: 1px solid rgba(255,255,255,0.5);
  cursor: pointer; padding: 0;
  transition: background 0.15s;
}
.hbs-dot.active { background: #fff; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  animation: scrollBounce 2s ease-in-out 2s infinite;
  backdrop-filter: blur(6px);
  transition: background 0.2s;
}
.scroll-indicator:hover { background: rgba(200,16,46,0.6); }
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   VRM SEARCH SECTION (dark strip)
============================================================ */
.vrm-section {
  background: #1a1a1a;
  padding: 28px 0;
  border-bottom: 3px solid var(--red);
}
.vrm-section-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.vrm-section-text h2 {
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.vrm-section-text p { font-size: 13px; color: rgba(255,255,255,0.55); }
.vrm-form-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* VRM Plate */
.vrm-plate, .vrm-finder-plate {
  display: flex;
  align-items: stretch;
  border: 3px solid #FFD100;
  border-radius: var(--radius);
  overflow: hidden;
}
.vrm-gb, .vfb-gb {
  background: #003478;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  text-align: center;
  padding: 4px 8px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px;
  min-width: 34px;
}
.vrm-dots, .vfb-dots { display: flex; gap: 2px; }
.vrm-dots i, .vfb-dots i { width: 3px; height: 3px; border-radius: 50%; background: #FFD100; display: block; }
.vrm-input, .vrm-finder-input {
  background: #FFD100;
  border: none;
  outline: none;
  font-size: 22px;
  font-weight: 900;
  color: #1D1D1B;
  letter-spacing: 0.06em;
  padding: 6px 12px;
  width: 155px;
  text-transform: uppercase;
  font-family: 'Arial Black', 'Arial Bold', Arial, sans-serif;
}
.vrm-input::placeholder, .vrm-finder-input::placeholder {
  color: rgba(0,0,0,0.32);
  font-size: 17px;
}
.vrm-btn, .vrm-finder-btn {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 12px 26px;
  font-size: 14px;
  font-weight: 800;
  border-radius: var(--radius);
  cursor: pointer;
  display: flex; align-items: center; gap: 7px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background 0.15s;
}
.vrm-btn:hover, .vrm-finder-btn:hover { background: var(--red-dark); }
.vrm-btn .spinner { display: none; width: 18px; height: 18px; animation: spin 0.7s linear infinite; }
.vrm-btn.loading .spinner { display: block; }
.vrm-btn.loading .btn-text { display: none; }
@keyframes spin { to { transform: rotate(360deg); } }
.vrm-hint { font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 8px; }
.vrm-error { font-size: 13px; color: #ff6b6b; margin-top: 6px; min-height: 18px; display: none; }
.vrm-results { margin-top: 16px; }
.vrm-vehicle-label { font-size: 14px; color: #4ade80; font-weight: 700; margin-bottom: 12px; }
.parts-mini-grid { display: flex; gap: 8px; flex-wrap: wrap; }
.parts-mini-card {
  background: rgba(255,255,255,0.08);
  color: #fff;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 12px;
  border: 1px solid rgba(255,255,255,0.15);
  transition: all 0.15s;
  cursor: pointer;
  display: flex; align-items: center; gap: 6px;
}
.parts-mini-card:hover { background: var(--red); border-color: var(--red); }
.parts-mini-card svg { flex-shrink: 0; }

/* ============================================================
   SECTION HEADERS
============================================================ */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.section-header h2 {
  font-size: 22px;
  font-weight: 900;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.section-header h2 span { color: var(--red); }
.section-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.15s;
}
.section-link:hover { gap: 8px; }

/* ============================================================
   CATEGORY GRID
============================================================ */
.categories-section {
  padding: 40px 0;
  background: var(--grey-light);
  border-top: 1px solid var(--grey);
  border-bottom: 1px solid var(--grey);
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.cat-card {
  background: #fff;
  border: 1px solid var(--grey);
  border-radius: var(--radius-md);
  padding: 20px 10px;
  text-align: center;
  text-decoration: none;
  color: var(--dark);
  transition: all 0.2s;
  display: block;
}
.cat-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.cat-icon {
  width: 52px; height: 52px;
  background: var(--grey-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
  transition: background 0.2s;
}
.cat-icon svg { stroke: var(--red); display: block; }
.cat-card:hover .cat-icon { background: var(--red); }
.cat-card:hover .cat-icon svg { stroke: #fff; }
.cat-name {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--dark);
  margin-bottom: 3px;
}
.cat-count { font-size: 11px; color: var(--grey-text); }

/* ============================================================
   PRODUCT CARDS
============================================================ */
.products-section { padding: 40px 0; background: #fff; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.product-card {
  background: #fff;
  border: 1px solid var(--grey);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, border-color 0.2s;
  position: relative;
}
.product-card:hover { box-shadow: var(--shadow-lg); border-color: #bbb; }
.product-card.fits-car { border-color: var(--red); border-width: 2px; }

/* Badges */
.pc-badges {
  position: absolute;
  top: 10px; left: 10px;
  display: flex; flex-direction: column; gap: 4px;
  z-index: 2;
}
.pc-badge-sale {
  background: var(--red);
  color: #fff;
  font-size: 10px; font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.pc-badge-top {
  background: var(--amber);
  color: var(--dark);
  font-size: 10px; font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
}
.pc-badge-fits {
  display: none;
  background: var(--green);
  color: #fff;
  font-size: 10px; font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  align-items: center; gap: 3px;
}
.product-card.fits-car .pc-badge-fits { display: flex; }

/* Card image */
.pc-img {
  background: var(--grey-light);
  padding: 20px;
  display: flex; align-items: center; justify-content: center;
  min-height: 165px;
  position: relative;
  overflow: hidden;
}
.pc-img img {
  max-height: 120px;
  object-fit: contain;
  transition: transform 0.3s;
}
.product-card:hover .pc-img img { transform: scale(1.06); }
.pc-view-link {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(200,16,46,0.92);
  color: #fff;
  font-size: 12px; font-weight: 700;
  text-align: center;
  padding: 8px;
  display: flex; align-items: center; justify-content: center; gap: 5px;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.2s;
  text-decoration: none;
}
.product-card:hover .pc-view-link { opacity: 1; transform: translateY(0); }

/* Card body */
.pc-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.pc-brand {
  font-size: 10px; font-weight: 800;
  text-transform: uppercase;
  color: var(--grey-text);
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.pc-name {
  font-size: 13px; font-weight: 600;
  color: var(--dark);
  line-height: 1.4;
  margin-bottom: 8px;
  min-height: 36px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pc-stars { display: flex; align-items: center; gap: 4px; margin-bottom: 6px; }
.stars-row { display: flex; gap: 1px; }
.star-full  { color: var(--amber); font-size: 13px; }
.star-half  { color: var(--amber); font-size: 13px; opacity: 0.5; }
.star-empty { color: #ccc; font-size: 13px; }
.pc-rating-score { font-size: 12px; font-weight: 700; color: var(--dark); }
.pc-rating-count { font-size: 11px; color: var(--grey-text); }
.pc-partno { font-size: 11px; color: var(--grey-text); margin-bottom: 8px; }
.pc-price-row {
  display: flex; align-items: baseline; gap: 8px;
  margin-bottom: 8px;
}
.pc-price { font-size: 22px; font-weight: 900; color: var(--red); }
.pc-was { font-size: 13px; color: var(--grey-text); text-decoration: line-through; }
.pc-saving { font-size: 11px; color: var(--green); font-weight: 700; }
.pc-meta {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; margin-bottom: 12px;
  color: var(--grey-text); flex-wrap: wrap;
}
.pc-delivery { color: var(--green); font-weight: 700; display: flex; align-items: center; gap: 4px; }
.pc-stock-in { color: var(--green); font-weight: 700; }
.pc-stock-ord { color: #d97706; font-weight: 700; }
.pc-divider { color: var(--grey); }
.pc-btns { display: flex; flex-direction: column; gap: 6px; margin-top: auto; }

/* ============================================================
   BUTTONS
============================================================ */
.btn-add-basket {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: var(--radius);
  font-size: 13px; font-weight: 800;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 7px;
  transition: background 0.15s;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  width: 100%;
}
.btn-add-basket:hover { background: var(--red-dark); }
.btn-add-basket.added { background: var(--green); }
.btn-collect {
  background: #fff;
  color: var(--dark);
  border: 1px solid var(--grey);
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: 12px; font-weight: 600;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  transition: all 0.15s;
  width: 100%;
}
.btn-collect:hover { border-color: var(--red); color: var(--red); }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: var(--radius);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: background 0.15s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--red-dark); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--dark);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: var(--radius);
  border: 2px solid var(--grey);
  transition: all 0.15s;
}
.btn-outline:hover { border-color: var(--red); color: var(--red); }
.btn-back {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff;
  color: var(--dark);
  border: 1px solid var(--grey);
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: 14px; font-weight: 600;
  transition: all 0.15s;
  white-space: nowrap;
}
.btn-back:hover { border-color: var(--red); color: var(--red); }

/* ============================================================
   PAGE HEADER (Breadcrumb bar)
============================================================ */
.page-header {
  background: var(--grey-light);
  border-bottom: 1px solid var(--grey);
  padding: 20px 0;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--grey-text);
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--red); transition: color 0.15s; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .current { color: var(--dark); font-weight: 600; }
.breadcrumb i { font-size: 9px; color: var(--grey-mid); }
.page-header h1 {
  font-size: 24px;
  font-weight: 900;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.page-header p { font-size: 13px; color: var(--grey-text); margin-top: 4px; }

/* ============================================================
   PARTS PAGE LAYOUT
============================================================ */
.parts-page { padding: 28px 0 60px; background: #fff; }
.parts-layout {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 24px;
  align-items: start;
}

/* Sidebar */
.filter-sidebar {
  border: 1px solid var(--grey);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  position: sticky;
  top: 130px;
}
.filter-sidebar-title {
  background: var(--dark);
  color: #fff;
  font-size: 12px; font-weight: 800;
  padding: 12px 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: flex; align-items: center; gap: 8px;
}
.filter-group {
  padding: 16px;
  border-bottom: 1px solid var(--grey);
}
.filter-group:last-child { border-bottom: none; }
.filter-group h4 {
  font-size: 11px; font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--dark);
  margin-bottom: 10px;
}
.filter-cat-btn {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 7px 10px;
  font-size: 13px;
  color: var(--dark);
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: all 0.15s;
  border-left: 3px solid transparent;
  line-height: 1.4;
}
.filter-cat-btn:hover { background: var(--grey-light); color: var(--red); }
.filter-cat-btn.active { background: #fef0f2; color: var(--red); font-weight: 800; border-left-color: var(--red); }
select {
  width: 100%; padding: 8px 10px;
  border: 1px solid var(--grey);
  border-radius: var(--radius);
  font-size: 13px;
  color: var(--dark);
  background: #fff;
  outline: none;
  cursor: pointer;
}
select:focus { border-color: var(--red); }
input[type="range"] {
  width: 100%;
  accent-color: var(--red);
  margin-bottom: 6px;
}
.price-val { font-size: 13px; font-weight: 700; color: var(--red); }
.filter-toggle-btn {
  display: none;
  align-items: center;
  gap: 6px;
  background: var(--dark);
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: var(--radius);
  font-size: 13px; font-weight: 700;
  cursor: pointer;
  margin-bottom: 16px;
  text-transform: uppercase;
}

/* Products area */
.products-area { min-width: 0; }
.search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--grey);
  border-radius: var(--radius);
  padding: 0 14px;
  background: #fff;
  margin-bottom: 20px;
  transition: border-color 0.15s;
}
.search-bar:focus-within { border-color: var(--red); }
.search-bar i { color: var(--grey-mid); font-size: 14px; }
.search-bar input {
  border: none; outline: none;
  padding: 11px 0;
  font-size: 14px;
  flex: 1;
  color: var(--dark);
}
.search-bar input::placeholder { color: var(--grey-mid); }

/* VRM finder bar (parts page) */
.vrm-finder-bar {
  background: var(--dark);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  margin-bottom: 20px;
}
.vfb-label {
  font-size: 14px; color: rgba(255,255,255,0.8);
  margin-bottom: 12px; font-weight: 600;
}
.vfb-label span { color: var(--amber); }
.vrm-finder-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.vrm-finder-result {
  display: none;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #4ade80;
  margin-top: 10px;
  font-weight: 600;
  flex-wrap: wrap;
}
.vrm-finder-result.visible { display: flex; }
.vrm-clear-btn {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  padding: 4px 10px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.15s;
}
.vrm-clear-btn:hover { background: rgba(255,255,255,0.2); color: #fff; }

/* No results */
.no-results {
  text-align: center;
  padding: 60px 20px;
  color: var(--grey-text);
}

/* Load more */
.load-more-wrap { text-align: center; margin-top: 30px; }
.btn-load-more {
  background: #fff;
  color: var(--dark);
  border: 2px solid var(--grey);
  padding: 12px 36px;
  border-radius: var(--radius);
  font-size: 14px; font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.15s;
}
.btn-load-more:hover { border-color: var(--red); color: var(--red); }

/* ============================================================
   PRODUCT DETAIL PAGE
============================================================ */
.product-page { padding: 36px 0 60px; background: #fff; }
.product-detail-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 40px;
  margin-bottom: 40px;
  align-items: start;
}
.product-img-box {
  border: 1px solid var(--grey);
  border-radius: var(--radius-md);
  padding: 36px;
  background: var(--grey-light);
  display: flex; align-items: center; justify-content: center;
  min-height: 340px;
}
.product-img-box img { max-height: 260px; object-fit: contain; }
.pi-brand {
  font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--grey-text); margin-bottom: 8px;
}
.pi-name {
  font-size: 22px; font-weight: 800;
  color: var(--dark); line-height: 1.3;
  margin-bottom: 12px;
}
.pi-stars {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 12px;
}
.pi-star-icons .star-full,
.pi-star-icons .star-half,
.pi-star-icons .star-empty { font-size: 16px; }
.pi-stars strong { font-size: 14px; color: var(--dark); }
.pi-stars span { font-size: 13px; color: var(--grey-text); }
.pi-partno { font-size: 13px; color: var(--grey-text); margin-bottom: 16px; }
.pi-price-row {
  display: flex; align-items: baseline; gap: 12px;
  margin-bottom: 20px;
  padding: 14px 16px;
  background: var(--grey-light);
  border-radius: var(--radius-md);
  border: 1px solid var(--grey);
}
.pi-price { font-size: 34px; font-weight: 900; color: var(--red); }
.pi-was { font-size: 17px; color: var(--grey-text); text-decoration: line-through; }
.pi-saving { font-size: 13px; color: var(--green); font-weight: 800; }
.pi-meta-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.pi-meta-pill {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 6px 12px;
  border-radius: var(--radius);
  font-size: 12px; font-weight: 600;
  border: 1px solid var(--grey);
  color: var(--dark);
  background: var(--grey-light);
}
.pi-meta-pill.green { border-color: #86efac; color: var(--green); background: #f0fdf4; }
.pi-meta-pill.gold { border-color: #fcd34d; color: #92400e; background: #fffbeb; }
.pi-qty-row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.pi-qty-label { font-size: 14px; font-weight: 700; color: var(--dark); }
.pi-qty-ctrl {
  display: flex; align-items: center;
  border: 1px solid var(--grey);
  border-radius: var(--radius);
  overflow: hidden;
}
.pi-qty-btn {
  background: var(--grey-light);
  border: none;
  width: 36px; height: 36px;
  font-size: 18px; cursor: pointer;
  color: var(--dark);
  transition: background 0.15s;
  display: flex; align-items: center; justify-content: center;
}
.pi-qty-btn:hover { background: var(--grey); }
.pi-qty-val {
  padding: 0 16px;
  font-size: 16px; font-weight: 800;
  color: var(--dark); min-width: 40px; text-align: center;
}
.pi-btn-group { display: flex; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.pi-add-btn {
  flex: 1;
  background: var(--red);
  color: #fff;
  border: none;
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: 15px; font-weight: 800;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  text-transform: uppercase;
  transition: background 0.15s;
  min-width: 180px;
}
.pi-add-btn:hover { background: var(--red-dark); }
.pi-add-btn.added { background: var(--green); }
.pi-delivery-note {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; color: var(--green); font-weight: 600;
  padding: 10px 14px;
  background: #f0fdf4;
  border-radius: var(--radius);
  border: 1px solid #86efac;
}

/* Specs table */
.product-specs {
  border: 1px solid var(--grey);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 8px;
}
.product-specs h3 {
  background: var(--dark);
  color: #fff;
  font-size: 14px; font-weight: 800;
  padding: 13px 20px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.spec-row {
  display: flex;
  padding: 11px 20px;
  border-bottom: 1px solid var(--grey);
  font-size: 13px;
}
.spec-row:last-child { border-bottom: none; }
.spec-row:nth-child(even) { background: var(--grey-light); }
.spec-label { width: 180px; min-width: 180px; font-weight: 700; color: var(--dark); }
.spec-value { color: var(--grey-text); flex: 1; }
.spec-mono { font-family: 'Courier New', monospace; font-size: 12px; }

/* Related */
.related-section { padding: 40px 0; background: var(--grey-light); border-top: 1px solid var(--grey); }
.related-section h2 {
  font-size: 20px; font-weight: 900;
  color: var(--dark); text-transform: uppercase;
  margin-bottom: 24px;
}
.related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

/* ============================================================
   PROMOTIONAL BANNERS
============================================================ */
.promos-section { padding: 40px 0; background: var(--grey-light); border-top: 1px solid var(--grey); }
.promo-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 16px;
  height: 280px;
}
.promo-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  display: block;
  background: var(--dark);
  height: 100%;
}
.promo-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.promo-card:hover img { transform: scale(1.05); }
.promo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 55%, transparent 100%);
  padding: 18px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.promo-tag {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 10px; font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
  width: fit-content;
}
.promo-title { font-size: 17px; font-weight: 800; color: #fff; margin-bottom: 10px; line-height: 1.2; }
.promo-cta {
  display: inline-flex; align-items: center; gap: 5px;
  color: #fff; font-size: 12px; font-weight: 800;
  background: var(--red);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  transition: background 0.15s;
  width: fit-content;
}
.promo-card:hover .promo-cta { background: var(--red-dark); }

/* ============================================================
   WHY CHOOSE US SECTION
============================================================ */
.why-section {
  padding: 50px 0;
  background: var(--dark);
}
.why-section-header {
  text-align: center;
  margin-bottom: 36px;
}
.why-section-header h2 {
  font-size: 26px; font-weight: 900;
  color: #fff; text-transform: uppercase;
  letter-spacing: -0.01em;
}
.why-section-header h2 span { color: var(--red); }
.why-section-header p { font-size: 14px; color: rgba(255,255,255,0.5); margin-top: 8px; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 24px 18px;
  text-align: center;
  transition: all 0.2s;
}
.why-card:hover { background: rgba(200,16,46,0.15); border-color: rgba(200,16,46,0.4); }
.why-icon {
  width: 52px; height: 52px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.why-icon svg { stroke: #fff; display: block; }
.why-title { font-size: 14px; font-weight: 800; color: #fff; margin-bottom: 8px; text-transform: uppercase; }
.why-desc { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.55; }

/* ============================================================
   HOW IT WORKS
============================================================ */
.hiw-section { padding: 50px 0; background: var(--grey-light); }
.hiw-section-header {
  text-align: center; margin-bottom: 36px;
}
.hiw-section-header h2 {
  font-size: 24px; font-weight: 900;
  color: var(--dark); text-transform: uppercase;
}
.hiw-section-header p { font-size: 14px; color: var(--grey-text); margin-top: 8px; }
.hiw-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.hiw-step {
  text-align: center;
  background: #fff;
  border: 1px solid var(--grey);
  border-radius: var(--radius-md);
  padding: 30px 20px;
  transition: box-shadow 0.2s;
}
.hiw-step:hover { box-shadow: var(--shadow); }
.hiw-step-num {
  font-size: 52px; font-weight: 900;
  color: var(--grey);
  line-height: 1; margin-bottom: 10px;
  font-family: Arial, sans-serif;
}
.hiw-icon {
  width: 60px; height: 60px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.hiw-icon svg { stroke: #fff; }
.hiw-title { font-size: 15px; font-weight: 800; color: var(--dark); margin-bottom: 8px; text-transform: uppercase; }
.hiw-desc { font-size: 13px; color: var(--grey-text); line-height: 1.55; }
.hiw-cta { text-align: center; margin-top: 32px; }

/* ============================================================
   BRANDS STRIP
============================================================ */
.brands-strip {
  padding: 28px 0;
  border-top: 1px solid var(--grey);
  background: #fff;
  overflow: hidden;
}
.brands-label {
  font-size: 12px; font-weight: 800;
  text-transform: uppercase;
  color: var(--grey-text);
  letter-spacing: 0.07em;
  text-align: center;
  margin-bottom: 16px;
}
.brands-marquee-wrap { overflow: hidden; }
.brands-marquee {
  display: flex; gap: 0;
  animation: marquee 35s linear infinite;
}
.brand-pill {
  display: inline-flex; align-items: center;
  white-space: nowrap;
  padding: 8px 22px;
  font-size: 13px; font-weight: 800;
  color: var(--dark3);
  border-right: 1px solid var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.brands-marquee-wrap:hover .brands-marquee { animation-play-state: paused; }

/* ============================================================
   CART PAGE
============================================================ */
.cart-page { padding: 32px 0 60px; background: #fff; }
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  align-items: start;
}

/* Cart items box */
.cart-items-box {
  border: 1px solid var(--grey);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border-bottom: 1px solid var(--grey);
  background: #fff;
  transition: background 0.15s;
}
.cart-item:last-child { border-bottom: none; }
.cart-item:hover { background: var(--grey-light); }
.cart-item-img {
  background: var(--grey-light);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  height: 72px;
}
.cart-item-img img { max-height: 60px; object-fit: contain; }
.cart-item-brand { font-size: 10px; font-weight: 800; text-transform: uppercase; color: var(--grey-text); }
.cart-item-name { font-size: 14px; font-weight: 600; color: var(--dark); margin: 3px 0 6px; }
.cart-item-price { font-size: 12px; color: var(--grey-text); }
.cart-item-controls { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.cart-item-line-price { font-size: 20px; font-weight: 900; color: var(--red); white-space: nowrap; }
.cart-qty-row { display: flex; align-items: center; gap: 6px; }
.cart-qty-btn {
  width: 28px; height: 28px;
  background: var(--grey-light);
  border: 1px solid var(--grey);
  border-radius: var(--radius-sm);
  font-size: 16px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.15s;
}
.cart-qty-btn:hover { border-color: var(--red); color: var(--red); }
.cart-qty-val { font-size: 14px; font-weight: 800; min-width: 24px; text-align: center; }
.cart-remove-btn {
  font-size: 11px; color: var(--grey-text);
  background: none; border: none; cursor: pointer;
  transition: color 0.15s;
  padding: 2px 0;
}
.cart-remove-btn:hover { color: var(--red); }

/* Cart empty */
.cart-empty {
  text-align: center; padding: 70px 40px;
  border: 1px solid var(--grey); border-radius: var(--radius-md);
  background: var(--grey-light);
}
.cart-empty svg { stroke: var(--grey-mid); margin: 0 auto 16px; }
.cart-empty h3 { font-size: 20px; font-weight: 800; color: var(--dark); margin-bottom: 8px; text-transform: uppercase; }
.cart-empty p { color: var(--grey-text); margin-bottom: 20px; }

/* Cart summary */
.cart-summary-box {
  border: 1px solid var(--grey);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  position: sticky;
  top: 130px;
}
.cart-summary-box > h3 {
  background: var(--dark);
  color: #fff;
  font-size: 14px; font-weight: 800;
  padding: 14px 20px;
  text-transform: uppercase;
}
.cart-summary-body { padding: 20px; }
.cart-summary-row {
  display: flex; justify-content: space-between;
  font-size: 14px; padding: 9px 0;
  border-bottom: 1px solid var(--grey);
  color: var(--dark);
}
.cart-summary-row:last-of-type { border-bottom: none; }
.cart-summary-note {
  font-size: 11px; color: var(--grey-text);
  padding: 4px 0 8px;
  border-bottom: none !important;
}
.cart-summary-total {
  display: flex; justify-content: space-between;
  font-size: 18px; font-weight: 900;
  padding: 16px 0 0;
  margin-top: 8px;
  border-top: 2px solid var(--dark);
}
.cart-summary-total .total-amount { color: var(--red); }
.cart-checkout-btn {
  display: block;
  background: var(--red);
  color: #fff;
  text-align: center;
  padding: 15px;
  border-radius: var(--radius);
  font-size: 16px; font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 16px;
  transition: background 0.15s;
}
.cart-checkout-btn:hover { background: var(--red-dark); }
.cart-continue-btn {
  display: block;
  text-align: center;
  color: var(--red);
  font-size: 13px; font-weight: 700;
  margin-top: 12px;
  transition: color 0.15s;
}
.cart-continue-btn:hover { color: var(--red-dark); text-decoration: underline; }

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: var(--dark2);
  color: #ccc;
  font-size: 13px;
}
.footer-top { padding: 48px 0 38px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
}
.footer-brand p {
  color: rgba(255,255,255,0.45);
  font-size: 13px;
  line-height: 1.65;
  margin: 14px 0 18px;
}
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.footer-logo .logo-name { font-size: 15px; }
.social-links { display: flex; gap: 8px; }
.social-links a {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  transition: all 0.15s;
}
.social-links a:hover { background: var(--red); color: #fff; }
.footer-col h3 {
  font-size: 13px; font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #fff;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  transition: all 0.15s;
}
.footer-col ul li a:hover { color: #fff; padding-left: 4px; }
.footer-contact a,
.footer-contact div.footer-address,
.footer-contact div.footer-hours {
  display: flex; align-items: flex-start; gap: 8px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
  font-size: 13px;
  transition: color 0.15s;
  text-decoration: none;
}
.footer-contact a:hover { color: #fff; }
.footer-contact i { color: var(--red); flex-shrink: 0; width: 14px; margin-top: 1px; }
.footer-bottom {
  background: #1a1a1a;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.35); }
.footer-links { display: flex; gap: 18px; }
.footer-links a { font-size: 12px; color: rgba(255,255,255,0.35); transition: color 0.15s; }
.footer-links a:hover { color: rgba(255,255,255,0.7); }

/* ============================================================
   CONTACT / INFO PAGES
============================================================ */
.content-page { padding: 50px 0; background: #fff; }
.content-page h2 { font-size: 22px; font-weight: 800; color: var(--dark); margin-bottom: 20px; text-transform: uppercase; }
.content-page h3 { font-size: 17px; font-weight: 700; color: var(--dark); margin: 24px 0 12px; }
.content-page p { color: var(--grey-text); line-height: 1.7; margin-bottom: 14px; }
.content-page ul { padding-left: 20px; margin-bottom: 16px; }
.content-page ul li { color: var(--grey-text); margin-bottom: 8px; list-style: disc; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 10px 14px;
  border: 1px solid var(--grey);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--dark);
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--red); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: var(--radius-md);
  padding: 24px;
  color: var(--green);
  font-weight: 700;
  display: none;
}

/* ============================================================
   CHECKOUT
============================================================ */
.checkout-page { padding: 36px 0 60px; background: #fff; }
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: start;
}
.checkout-section {
  border: 1px solid var(--grey);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 20px;
}
.checkout-section-header {
  background: var(--dark);
  color: #fff;
  font-size: 14px; font-weight: 800;
  padding: 13px 20px;
  text-transform: uppercase;
}
.checkout-section-body { padding: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ============================================================
   HERO STATS (keep for compatibility)
============================================================ */
.hero-stats {
  display: flex; gap: 28px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
  flex-wrap: wrap;
}
.stat-item { text-align: left; }
.stat-num { font-size: 24px; font-weight: 900; color: var(--amber); line-height: 1; }
.stat-label { font-size: 11px; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.04em; margin-top: 2px; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1100px) {
  .categories-grid { grid-template-columns: repeat(4, 1fr); }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .related-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 900px) {
  .promo-grid { grid-template-columns: 1fr 1fr; height: auto; }
  .promo-card { height: 220px; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .product-img-box { min-height: 240px; }
  .parts-layout { grid-template-columns: 1fr; }
  .filter-sidebar { position: static; display: none; }
  .filter-sidebar.mobile-open { display: block; }
  .filter-toggle-btn { display: flex; }
  .cart-layout { grid-template-columns: 1fr; }
  .cart-summary-box { position: static; }
  .checkout-layout { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .hiw-grid { grid-template-columns: 1fr 1fr; }
}

/* ---- My Vehicle Bar ---- */
.my-vehicle-bar {
  background: #0a3d1f;
  border-bottom: 2px solid #16a34a;
  padding: 7px 0;
  font-size: 0.8rem;
  color: #bbf7d0;
}
.my-vehicle-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.mv-label {
  font-weight: 700;
  color: #4ade80;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}
.mv-reg {
  background: #FFD100;
  color: #111;
  font-weight: 800;
  font-size: 0.82rem;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.08em;
  font-family: 'UK Number Plate', monospace, sans-serif;
}
.mv-sep { color: #4ade80; opacity: 0.5; }
.mv-details { color: #d1fae5; font-size: 0.8rem; }
.mv-parts-link {
  margin-left: auto;
  background: #16a34a;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: 20px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}
.mv-parts-link:hover { background: #15803d; }
.mv-clear {
  background: none;
  border: 1px solid rgba(74,222,128,0.35);
  color: #86efac;
  font-size: 0.74rem;
  padding: 3px 10px;
  border-radius: 20px;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.2s, color 0.2s;
}
.mv-clear:hover { border-color: #4ade80; color: #4ade80; }

@media (max-width: 768px) {
  .my-vehicle-bar { padding: 6px 0; }
  .mv-details { display: none; }
  .mv-sep { display: none; }
}

@media (max-width: 768px) {
  .main-header-inner { flex-wrap: wrap; gap: 10px; }
  .header-search { order: 3; flex: 1 1 100%; }
  .header-phone { display: none; }
  .hamburger { display: flex; }
  .header-nav { display: none; }
  .top-bar-links { display: none; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .promo-grid { grid-template-columns: 1fr; height: auto; }
  .promo-card { height: 200px; }
  .vrm-section-inner { flex-direction: column; align-items: flex-start; }
  .vrm-section-text { width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .hiw-grid { grid-template-columns: 1fr 1fr; }
  .parts-page { padding: 16px 0 40px; }
  .vrm-finder-row { flex-direction: column; align-items: flex-start; }
  .vrm-finder-btn { width: 100%; justify-content: center; }
  .my-vehicle-bar .mv-parts-link { margin-left: 0; margin-top: 4px; }
  .my-vehicle-inner { flex-wrap: wrap; row-gap: 4px; }
}

@media (max-width: 480px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .hiw-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .pi-btn-group { flex-direction: column; }
  .hero-stats { gap: 14px; }
  .promo-grid { grid-template-columns: 1fr; }
  .vrm-form-wrap { flex-direction: column; align-items: stretch; }
  .vrm-btn { width: 100%; justify-content: center; }
  .vrm-plate { width: 100%; }
  .vrm-input { flex: 1; width: auto; }
  .section-header { flex-direction: column; align-items: flex-start; }
  .pc-price-row { flex-wrap: wrap; }
  .footer-col ul { columns: 2; }
  .search-form { flex-wrap: wrap; }
  .search-btn { width: 100%; justify-content: center; }
}

/* ============================================================
   HERO — ENHANCED 3D & ANIMATION
============================================================ */

/* Height is set in base — see .hero above */

/* Ken Burns zoom — CSS transition handles it automatically
   Slides start scaled up, transition to 1.0 when active        */
.hbs-slide {
  transform: scale(1.05);
  transition: opacity 1s ease, transform 7.5s ease-out;
}
.hbs-slide.active {
  opacity: 1;
  transform: scale(1.0);
}

/* Richer multi-layer overlay */
.hbs-overlay {
  background: rgba(0,0,0,0.72);
}

/* ---- Ambient glow orbs ---- */
.hero-floaters {
  position: absolute; inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.hero-floater {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  animation: orbFloat 10s ease-in-out infinite alternate;
}
.hf-1 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(200,16,46,0.22) 0%, transparent 70%);
  top: -140px; right: 18%;
  animation-duration: 12s;
}
.hf-2 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(255,209,0,0.13) 0%, transparent 70%);
  bottom: -60px; right: 6%;
  animation-duration: 9s;
  animation-delay: -4s;
}
.hf-3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(200,16,46,0.12) 0%, transparent 70%);
  top: 35%; right: 40%;
  animation-duration: 14s;
  animation-delay: -8s;
}
@keyframes orbFloat {
  from { transform: translateY(0)   translateX(0); }
  to   { transform: translateY(-45px) translateX(28px); }
}

/* ---- Hero content 3D entrance animations ---- */
.hero-badge {
  position: relative;
  opacity: 0;
  animation: heroBadgeIn 0.65s cubic-bezier(0.34,1.56,0.64,1) 0.25s both;
}
@keyframes heroBadgeIn {
  from { opacity: 0; transform: translateY(-14px) scale(0.88); }
  to   { opacity: 1; transform: none; }
}

/* Pulsing ring around badge after it appears */
.hero-badge::after {
  content: '';
  position: absolute; inset: -5px;
  border-radius: 4px;
  border: 2px solid var(--red);
  opacity: 0;
  animation: badgePulse 2.8s ease-out 1.8s infinite;
}
@keyframes badgePulse {
  0%   { opacity: 0.7; transform: scale(1);   }
  100% { opacity: 0;   transform: scale(1.45); }
}

/* Title lines — staggered 3D perspective slide-in */
.hero-title .line1,
.hero-title .line2,
.hero-title .line3 { display: block; opacity: 0; }

.hero-title .line1 { animation: hero3dIn 0.8s cubic-bezier(0.23,1,0.32,1) 0.45s both; }
.hero-title .line2 { animation: hero3dIn 0.8s cubic-bezier(0.23,1,0.32,1) 0.65s both; }
.hero-title .line3 { animation: hero3dIn 0.8s cubic-bezier(0.23,1,0.32,1) 0.85s both; }

@keyframes hero3dIn {
  from {
    opacity: 0;
    transform: perspective(900px) translateY(55px) rotateX(35deg);
  }
  to {
    opacity: 1;
    transform: perspective(900px) translateY(0) rotateX(0deg);
  }
}

/* Animated accent line under "Delivered Fast" */
.hero-title .line2 {
  position: relative;
  padding-bottom: 8px;
}
.hero-title .line2::after {
  content: '';
  display: block;
  height: 4px;
  width: 0;
  background: linear-gradient(90deg, var(--red), #FFD100);
  border-radius: 2px;
  margin-top: 4px;
  animation: accentGrow 0.9s ease 1.1s both;
}
@keyframes accentGrow {
  from { width: 0; opacity: 0; }
  to   { width: 90px; opacity: 1; }
}

/* Subtitle, buttons, stats — stagger fade-up */
.hero-sub   { opacity: 0; animation: heroFadeUp 0.75s ease 1.1s  both; }
.hero-btns  { opacity: 0; animation: heroFadeUp 0.75s ease 1.3s  both; }
.hero-stats { opacity: 0; animation: heroFadeUp 0.65s ease 1.5s  both; margin-top: 32px; display: flex; gap: 28px; flex-wrap: wrap; }

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}

/* Stats items */
.stat-item {
  display: flex; flex-direction: column; gap: 2px;
  cursor: default;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.stat-item:hover { transform: translateY(-5px) scale(1.06); }
.stat-num  { font-size: 2rem; font-weight: 900; color: #FFD100; line-height: 1; }
.stat-label { font-size: 11px; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 0.07em; }

/* Primary button — travelling shimmer */
.btn-hero-primary {
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(200,16,46,0.45);
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,16,46,0.55);
}
.btn-hero-primary::after {
  content: '';
  position: absolute; top: 0; left: -120%;
  width: 55%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
  transform: skewX(-20deg);
  animation: btnShimmer 3.5s ease-in-out 2.2s infinite;
}
@keyframes btnShimmer {
  0%   { left: -120%; }
  35%  { left: 160%;  }
  100% { left: 160%;  }
}

/* Secondary button glow */
.btn-hero-secondary {
  transition: all 0.2s;
}
.btn-hero-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,255,255,0.12);
}

/* ---- Right-side floating trust chips ---- */
.hero-trust-chips {
  position: absolute;
  right: 56px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 12px;
  perspective: 700px;
}
.htc-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(10,10,10,0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.12);
  border-left: 3px solid var(--red);
  border-radius: 9px;
  padding: 11px 16px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  min-width: 190px;
  opacity: 0;
  transform: translateX(50px) rotateY(-18deg);
  transition: background 0.22s, border-left-color 0.22s, transform 0.22s;
  animation-fill-mode: both;
  letter-spacing: 0.01em;
}
.htc-chip svg { flex-shrink: 0; stroke: #FFD100; }
.htc-c1 { animation: chipIn 0.7s cubic-bezier(0.23,1,0.32,1) 1.55s both; }
.htc-c2 { animation: chipIn 0.7s cubic-bezier(0.23,1,0.32,1) 1.75s both; }
.htc-c3 { animation: chipIn 0.7s cubic-bezier(0.23,1,0.32,1) 1.95s both; }
.htc-c4 { animation: chipIn 0.7s cubic-bezier(0.23,1,0.32,1) 2.15s both; }

@keyframes chipIn {
  from { opacity: 0; transform: translateX(55px) rotateY(-20deg); }
  to   { opacity: 1; transform: translateX(0)    rotateY(0deg);   }
}
.htc-chip:hover {
  background: rgba(200,16,46,0.28);
  border-left-color: #FFD100;
  transform: translateX(-5px) scale(1.03);
}

/* Gentle perpetual float after appearing — applied via JS class */
.htc-chip.chip-visible {
  animation: chipFloat 5s ease-in-out infinite alternate;
}
.htc-c2.chip-visible { animation-delay: -1.7s; }
.htc-c3.chip-visible { animation-delay: -3.1s; }
.htc-c4.chip-visible { animation-delay: -0.8s; }

@keyframes chipFloat {
  from { transform: translateY(0);    }
  to   { transform: translateY(-8px); }
}

/* ---- 1100px additions (hero chips + product-detail intermediate) ---- */
@media (max-width: 1100px) {
  .hero-trust-chips    { display: none; }
  .product-detail-grid { grid-template-columns: 320px 1fr; gap: 24px; }
}

/* ---- Responsive: 900px (already covered by existing block above) ---- */
/* hero height at 900px */
@media (max-width: 900px) {
  .hero { height: 100vh; }
  .hero-content { max-width: 100%; }
}

/* ---- Responsive: 768px (tablet) ---- */
@media (max-width: 768px) {
  .hero { height: 100vh; }
  .hero-title  { font-size: clamp(1.9rem, 6vw, 2.8rem); }
  .hero-content {
    padding: 0 24px;
    align-items: center;
    text-align: center;
    max-width: 100%;
  }
  .hero-badge  { margin: 0 auto 14px; }
  .hero-sub    { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-btns   { justify-content: center; }
  .hero-stats  { justify-content: center; }
  .hero-title .line2::after { display: none; }
  .scroll-indicator { display: none; }
}

/* ---- Responsive: 480px (mobile) ---- */
@media (max-width: 480px) {
  .hero { height: 100vh; }
  .hero-title { font-size: clamp(1.7rem, 8vw, 2.4rem); }
  .hero-sub   { font-size: 13px; }
  .hero-btns  { flex-direction: column; align-items: center; }
  .btn-hero-primary, .btn-hero-secondary { width: 100%; justify-content: center; }
  .htc-chip   { min-width: unset; }
  .stat-num   { font-size: 1.6rem; }
}

/* ============================================================
   THEME UPGRADE — Modern, Rich, Appealing
============================================================ */

/* ---- Upgraded design tokens ---- */
:root {
  --red:        #D0112B;
  --red-dark:   #a80e22;
  --red-hover:  #b8102a;
  --red-grad:   linear-gradient(135deg, #D0112B 0%, #8b0000 100%);
  --gold:       #FFB800;
  --amber:      #FFB800;
  --dark:       #0f0f14;
  --dark2:      #1a1a24;
  --dark3:      #2a2a38;
  --grey-light: #F8F7F5;
  --grey:       #E8E6E1;
  --grey-mid:   #B0ABA4;
  --grey-text:  #6B6560;
  --text:       #1a1a24;
  --green:      #16803c;
  --border:     #E0DDD8;
  --radius-sm:  6px;
  --radius:     10px;
  --radius-md:  14px;
  --radius-lg:  20px;
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
  --shadow:     0 4px 20px rgba(0,0,0,0.10);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.13);
  --shadow-lg:  0 16px 48px rgba(0,0,0,0.16);
  --shadow-red: 0 4px 20px rgba(208,17,43,0.28);
}

/* Warm off-white body */
body { background: #FAFAF8; }

/* ---- TOP BAR — richer dark gradient ---- */
.top-bar {
  background: linear-gradient(90deg, #0f0f14 0%, #1a1a24 100%);
  border-bottom: 1px solid rgba(208,17,43,0.4);
}
.top-bar-promo { letter-spacing: 0.01em; }

/* ---- MAIN HEADER — elevated white ---- */
.main-header {
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--border);
  box-shadow: 0 2px 24px rgba(0,0,0,0.07);
}
.main-header.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.12); }

/* Logo upgrade */
.logo-icon-wrap {
  width: 46px; height: 46px;
  background: var(--red-grad);
  border-radius: 12px;
  box-shadow: var(--shadow-red);
}
.logo-name { font-size: 18px; letter-spacing: 0.01em; }

/* Search bar upgrade */
.search-form {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.search-form:focus-within {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(208,17,43,0.12);
}
.search-input { background: #fff; font-size: 14px; }
.search-btn {
  background: var(--red-grad);
  border-radius: 0 8px 8px 0;
  letter-spacing: 0.05em;
}
.search-btn:hover { background: linear-gradient(135deg, #b8102a 0%, #700009 100%); }

/* Basket button upgrade */
.header-basket {
  background: var(--red-grad);
  border-radius: var(--radius);
  box-shadow: var(--shadow-red);
  letter-spacing: 0.02em;
}
.header-basket:hover {
  background: linear-gradient(135deg, #b8102a 0%, #700009 100%);
  box-shadow: 0 6px 24px rgba(208,17,43,0.40);
  transform: translateY(-1px);
}

/* ---- RED NAV BAR ---- */
.header-nav {
  background: linear-gradient(90deg, #0f0f14 0%, #1a1a24 50%, #0f0f14 100%);
  border-bottom: 3px solid var(--red);
}
.nav-link { font-size: 12px; letter-spacing: 0.04em; }
.nav-link:hover { background: rgba(208,17,43,0.25); }
.nav-link.nav-all { background: rgba(208,17,43,0.30); }
.nav-link.active { background: rgba(208,17,43,0.35); border-bottom-color: var(--gold); }

/* ---- TRUST STRIP — clean white card feel ---- */
.trust-strip {
  background: #fff;
  border-bottom: 2px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.trust-item { padding: 12px 22px; }
.trust-item-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, #fff5f6 0%, #ffe8eb 100%);
  border: 1px solid rgba(208,17,43,0.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-item-icon svg { stroke: var(--red); width: 20px; height: 20px; }
.trust-item-title { font-size: 13px; font-weight: 800; }

/* ---- SECTION HEADERS — stronger visual anchor ---- */
.section-header h2 {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.02em;
  position: relative;
}
.section-header h2 span {
  color: var(--red);
  position: relative;
}
.section-header h2 span::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  border-radius: 2px;
}
.section-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  background: rgba(208,17,43,0.06);
  padding: 7px 14px;
  border-radius: 20px;
  border: 1px solid rgba(208,17,43,0.18);
  transition: all 0.2s;
}
.section-link:hover {
  background: var(--red);
  color: #fff;
  gap: 8px;
}

/* ---- CATEGORIES SECTION ---- */
.categories-section {
  background: linear-gradient(180deg, #fff 0%, #F8F7F5 100%);
  padding: 52px 0;
  border-top: none;
  border-bottom: 2px solid var(--border);
}
.cat-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 12px;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s cubic-bezier(0.34,1.2,0.64,1);
}
.cat-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-red), var(--shadow);
  transform: translateY(-5px) scale(1.02);
}
.cat-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, #fff5f6 0%, #fce8eb 100%);
  border: 1.5px solid rgba(208,17,43,0.15);
  border-radius: 14px;
  transition: all 0.25s;
}
.cat-icon svg { stroke: var(--red); }
.cat-card:hover .cat-icon {
  background: var(--red-grad);
  border-color: transparent;
  box-shadow: var(--shadow-red);
}
.cat-card:hover .cat-icon svg { stroke: #fff; }
.cat-name { font-size: 12px; font-weight: 800; letter-spacing: 0.03em; }

/* ---- PRODUCTS SECTION ---- */
.products-section {
  background: var(--grey-light);
  padding: 52px 0;
}
.product-card {
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.25s cubic-bezier(0.34,1.1,0.64,1);
  background: #fff;
}
.product-card:hover {
  box-shadow: var(--shadow-md);
  border-color: #ccc;
  transform: translateY(-4px);
}
.product-card.fits-car {
  border-color: var(--red);
  border-width: 2px;
  box-shadow: var(--shadow-red);
}
.pc-img { background: linear-gradient(135deg, #f8f8f6 0%, #f0f0ec 100%); border-radius: var(--radius-md) var(--radius-md) 0 0; }
.pc-price { color: var(--red); font-weight: 900; }

/* ---- ADD TO BASKET / BUTTONS ---- */
.btn-add-basket {
  background: var(--red-grad);
  border-radius: var(--radius);
  letter-spacing: 0.04em;
  box-shadow: 0 2px 10px rgba(208,17,43,0.22);
  transition: all 0.2s;
}
.btn-add-basket:hover {
  background: linear-gradient(135deg, #b8102a 0%, #700009 100%);
  box-shadow: var(--shadow-red);
  transform: translateY(-1px);
}
.btn-add-basket.added { background: linear-gradient(135deg, #16803c, #0f5c2a); }

.btn-primary {
  background: var(--red-grad);
  border-radius: var(--radius);
  box-shadow: var(--shadow-red);
  letter-spacing: 0.04em;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #b8102a 0%, #700009 100%);
  box-shadow: 0 8px 24px rgba(208,17,43,0.4);
  transform: translateY(-1px);
}

/* ---- VRM SECTION ---- */
.vrm-section {
  background: linear-gradient(135deg, #0f0f14 0%, #1e0408 40%, #0f0f14 100%);
  border-bottom: 3px solid var(--red);
  position: relative;
  overflow: hidden;
}
.vrm-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(208,17,43,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.vrm-btn, .vrm-finder-btn {
  background: var(--red-grad);
  border-radius: var(--radius);
  box-shadow: var(--shadow-red);
  letter-spacing: 0.05em;
}
.vrm-btn:hover, .vrm-finder-btn:hover {
  background: linear-gradient(135deg, #b8102a 0%, #700009 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(208,17,43,0.45);
}

/* ---- SEMI BANNERS ---- */
.semi-banners-section {
  background: var(--grey-light);
  padding: 40px 0;
  border-top: 2px solid var(--border);
  border-bottom: 2px solid var(--border);
}
.semi-banners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.semi-banner {
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.semi-banner:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.semi-banner img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.semi-banner:hover img { transform: scale(1.03); }

@media (max-width: 640px) {
  .semi-banners-grid { grid-template-columns: 1fr; }
  .semi-banner img { height: 180px; }
}

/* ---- PROMOTIONAL BANNERS ---- */
.promos-section {
  background: #fff;
  padding: 52px 0;
  border-top: 2px solid var(--border);
}
.promo-card {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.promo-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.promo-card { transition: all 0.28s ease; }

/* ---- WHY CHOOSE US ---- */
.why-section {
  background: linear-gradient(135deg, #0f0f14 0%, #1a0508 50%, #0f0f14 100%);
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(208,17,43,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.why-section-header h2 { font-size: 30px; letter-spacing: -0.02em; }
.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  transition: all 0.25s ease;
}
.why-card:hover {
  background: rgba(208,17,43,0.12);
  border-color: rgba(208,17,43,0.35);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(208,17,43,0.2);
}
.why-icon {
  width: 56px; height: 56px;
  background: var(--red-grad);
  box-shadow: var(--shadow-red);
  border-radius: 14px;
}

/* ---- HOW IT WORKS ---- */
.hiw-section {
  background: linear-gradient(180deg, #F8F7F5 0%, #fff 100%);
  padding: 60px 0;
}
.hiw-section-header h2 { letter-spacing: -0.02em; font-size: 28px; }
.hiw-step {
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
  background: #fff;
}
.hiw-step:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: rgba(208,17,43,0.25); }
.hiw-step-num {
  font-size: 52px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--red) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.25;
}
.hiw-icon {
  background: linear-gradient(135deg, #fff5f6 0%, #fce8eb 100%);
  border: 1.5px solid rgba(208,17,43,0.15);
  border-radius: 14px;
}
.hiw-icon svg { stroke: var(--red); }

/* ---- BRANDS STRIP ---- */
.brands-strip { background: #fff; border-top: 2px solid var(--border); border-bottom: 2px solid var(--border); }
.brand-pill {
  background: var(--grey-light);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  transition: all 0.2s;
  font-weight: 700;
  color: var(--dark3);
}
.brand-pill:hover { background: var(--red); color: #fff; border-color: var(--red); }

/* ---- PAGE HEADER (breadcrumb) ---- */
.page-header {
  background: linear-gradient(135deg, #0f0f14 0%, #1e1e2a 100%);
  border-bottom: 3px solid var(--red);
}
.breadcrumb a { color: var(--gold); }
.breadcrumb .current { color: rgba(255,255,255,0.7); }
.breadcrumb { color: rgba(255,255,255,0.4); }
.breadcrumb i { color: rgba(255,255,255,0.25); }
.page-header h1 { color: #fff; font-size: 28px; letter-spacing: -0.02em; }
.page-header p { color: rgba(255,255,255,0.55); }

/* ---- PARTS PAGE FILTER SIDEBAR ---- */
.filter-sidebar { border-radius: var(--radius-md); box-shadow: var(--shadow-sm); border: 1.5px solid var(--border); }
.filter-sidebar-title { background: linear-gradient(90deg, var(--dark) 0%, var(--dark2) 100%); }
.filter-cat-btn.active { background: linear-gradient(90deg, #fff5f6, #fce8eb); }

/* ---- VRM FINDER BAR (parts page) ---- */
.vrm-finder-bar {
  background: linear-gradient(135deg, #0f0f14 0%, #1e0408 50%, #0f0f14 100%);
  border-radius: var(--radius-md);
  position: relative; overflow: hidden;
}
.vrm-finder-bar::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(208,17,43,0.15) 0%, transparent 60%);
  pointer-events: none;
}

/* ---- CART PAGE ---- */
.cart-item { border-radius: var(--radius); border: 1.5px solid var(--border); }
.cart-qty-btn { border-radius: var(--radius-sm); }
.cart-summary-box { border-radius: var(--radius-md); box-shadow: var(--shadow); border: 1.5px solid var(--border); }

/* ---- FOOTER ---- */
.site-footer {
  background: linear-gradient(180deg, #0f0f14 0%, #09090e 100%);
  border-top: 3px solid var(--red);
}
.footer-bottom { background: rgba(0,0,0,0.4); border-top: 1px solid rgba(255,255,255,0.06); }
.footer-logo .logo-name { color: #fff; }
.footer-col h3 {
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h3::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 28px; height: 2px;
  background: var(--red-grad);
  border-radius: 1px;
}
.footer-col ul li a:hover { color: var(--gold); padding-left: 6px; }

/* ---- MOBILE NAV ---- */
.mobile-nav { background: #0f0f14; border-top: 3px solid var(--red); }
.mobile-nav a { color: rgba(255,255,255,0.82); border-bottom: 1px solid rgba(255,255,255,0.06); }
.mobile-nav a:hover { background: rgba(208,17,43,0.15); color: #fff; }

/* ---- GENERAL CARD / INPUT POLISH ---- */
select, input[type="text"], input[type="email"], input[type="tel"], textarea {
  border-radius: var(--radius);
}
select:focus { box-shadow: 0 0 0 3px rgba(208,17,43,0.12); }

/* Hero primary button gradient */
.btn-hero-primary {
  background: var(--red-grad);
  border-radius: var(--radius);
  box-shadow: var(--shadow-red);
  letter-spacing: 0.05em;
}
.btn-hero-primary:hover {
  background: linear-gradient(135deg, #b8102a 0%, #700009 100%);
  box-shadow: 0 8px 28px rgba(208,17,43,0.55);
}
.btn-hero-secondary { border-radius: var(--radius); }

/* Hero slider dots — pill style */
.hbs-dot {
  width: 24px; height: 5px;
  border-radius: 3px;
  border: none;
  background: rgba(255,255,255,0.3);
  transition: all 0.25s;
}
.hbs-dot.active { background: #fff; width: 36px; }

/* Scroll progress — gold gradient */
.scroll-progress { background: linear-gradient(90deg, var(--red), var(--gold)); }

/* ============================================================
   HERO — TWO-COLUMN LAYOUT WITH PROMINENT VRM SEARCH
   ============================================================ */

/* Make hero taller to accommodate two-column content */
.hero { height: clamp(620px, calc(100vh - 140px), 960px); }

/* Wrapper that splits hero into left text + right VRM card */
.hero-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 60px 48px;
  display: flex;
  align-items: center;
  gap: 52px;
}

/* Override the original hero-content inside the new layout */
.hero-inner .hero-content {
  flex: 1;
  height: auto;
  padding: 0;
  max-width: 520px;
}

/* Prominent VRM card — glass panel on right */
.hero-vrm-card {
  width: 390px;
  flex-shrink: 0;
  background: rgba(8, 8, 18, 0.84);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow:
    0 32px 80px rgba(0,0,0,0.55),
    0 0 0 1px rgba(208,17,43,0.18),
    inset 0 1px 0 rgba(255,255,255,0.07);
}

.hero-vrm-card-title {
  font-size: 17px;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.hero-vrm-card-title svg { stroke: var(--red); flex-shrink: 0; }

.hero-vrm-card-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.48);
  margin-bottom: 22px;
  line-height: 1.5;
}

/* Bigger plate input inside hero VRM card */
.hero-vrm-card .vrm-input {
  font-size: 26px;
  padding: 9px 14px;
  width: auto;
  flex: 1;
}
.hero-vrm-card .vrm-plate { width: 100%; }
.hero-vrm-card .vrm-form-wrap { flex-direction: column; align-items: stretch; gap: 12px; }
.hero-vrm-card .vrm-btn {
  width: 100%;
  justify-content: center;
  padding: 15px 24px;
  font-size: 15px;
  border-radius: var(--radius);
}

/* Trust row inside VRM card */
.hero-vrm-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-vrm-trust-item {
  font-size: 11px;
  color: rgba(255,255,255,0.48);
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.hero-vrm-trust-item svg { stroke: var(--gold); flex-shrink: 0; }

/* ---- Responsive: 1200px — tighten gap ---- */
@media (max-width: 1200px) {
  .hero-inner { padding: 40px 40px 48px; gap: 36px; }
  .hero-vrm-card { width: 360px; }
}

/* ---- Responsive: 1024px ---- */
@media (max-width: 1024px) {
  .hero-inner { padding: 40px 32px 48px; gap: 28px; }
  .hero-vrm-card { width: 330px; padding: 26px 22px; }
  .hero-vrm-card .vrm-input { font-size: 22px; }
}

/* ---- Responsive: 860px — stack vertically ---- */
@media (max-width: 860px) {
  .hero { height: 100vh; }
  .hero-inner {
    flex-direction: column;
    justify-content: center;
    padding: 48px 24px 32px;
    gap: 28px;
    height: 100%;
    min-height: unset;
  }
  .hero-inner .hero-content {
    max-width: 100%;
    align-items: center;
    text-align: center;
  }
  .hero-inner .hero-content .hero-badge { margin: 0 auto 14px; }
  .hero-inner .hero-content .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-inner .hero-content .hero-btns { justify-content: center; }
  .hero-inner .hero-content .hero-stats { justify-content: center; }
  .hero-vrm-card { width: 100%; max-width: 480px; }
}

/* ---- Responsive: 480px — mobile ---- */
@media (max-width: 480px) {
  .hero-inner { padding: 36px 16px 24px; gap: 22px; }
  .hero-vrm-card { padding: 22px 16px; border-radius: 16px; }
  .hero-vrm-card .vrm-input { font-size: 20px; }
  .hero-vrm-card-title { font-size: 15px; }
}

/* ============================================================
   RESPONSIVE — General site improvements
   ============================================================ */

/* Container padding on small screens */
@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .categories-section, .products-section, .promos-section,
  .why-section, .hiw-section { padding: 36px 0; }
}

/* Navigation: hamburger menu mobile padding */
@media (max-width: 768px) {
  .main-header-inner { padding: 4px 0; }
  .logo-name { font-size: 15px; }
  .logo-sub { display: none; }
  .logo-icon-wrap { width: 36px; height: 36px; }
  .header-basket span { display: none; }
  .header-basket { padding: 8px 12px; }
}

/* Product cards — 1 column on very small screens */
@media (max-width: 360px) {
  .products-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Footer responsive */
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
}
@media (max-width: 400px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* Top bar — hide promo on very small */
@media (max-width: 400px) {
  .top-bar-promo { font-size: 10px; }
}

/* HIW section on mobile */
@media (max-width: 600px) {
  .hiw-grid { grid-template-columns: 1fr; }
}

/* Cart/checkout responsive */
@media (max-width: 600px) {
  .cart-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .cart-item-img { width: 100%; height: 140px; border-radius: var(--radius) var(--radius) 0 0; }
  .cart-item-controls { flex-direction: row; flex-wrap: wrap; align-items: center; justify-content: space-between; }
}

/* Parts page responsive */
@media (max-width: 600px) {
  .products-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 380px) {
  .products-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   MOBILE RESPONSIVE — COMPREHENSIVE IMPROVEMENTS
   ============================================================ */

/* ---- Search button: icon-only on mobile ---- */
@media (max-width: 768px) {
  .search-btn-text { display: none; }
  .search-btn { padding: 0 14px; }
}

/* ---- Spec table: stack label above value ---- */
@media (max-width: 600px) {
  .spec-row {
    flex-direction: column;
    gap: 3px;
    padding: 10px 16px;
  }
  .spec-label {
    width: auto;
    min-width: unset;
    font-size: 10px;
    color: var(--grey-text);
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }
  .spec-value { font-size: 14px; color: var(--dark); }
}

/* ---- Disable ambient glow orbs on mobile (performance) ---- */
@media (max-width: 768px) {
  .hero-floaters { display: none; }
}


/* ---- Section headers ---- */
@media (max-width: 768px) {
  .section-header h2 { font-size: 20px; }
  .section-header { flex-wrap: wrap; gap: 10px; }
}
@media (max-width: 480px) {
  .section-header h2 { font-size: 18px; }
  .section-header { flex-direction: column; align-items: flex-start; }
  .section-link { align-self: flex-start; }
}

/* ---- Category cards ---- */
@media (max-width: 768px) {
  .cat-card { padding: 14px 10px; }
  .cat-icon { width: 38px; height: 38px; border-radius: 10px; }
  .cat-name { font-size: 11px; }
}
@media (max-width: 480px) {
  .categories-grid { gap: 10px; }
  .cat-card { padding: 12px 8px; }
}

/* ---- Promo banners ---- */
@media (max-width: 768px) {
  .promo-card { height: 180px; }
  .promo-title { font-size: 15px; }
}
@media (max-width: 480px) {
  .promo-card { height: 150px; }
  .promo-title { font-size: 14px; }
}

/* ---- Product cards on mobile ---- */
@media (max-width: 480px) {
  .pc-name { font-size: 13px; min-height: unset; }
  .pc-price { font-size: 19px; }
  .pc-btns { flex-direction: row; gap: 6px; }
  .btn-add-basket, .btn-collect { font-size: 11px; padding: 9px 8px; }
}

/* ---- Related products grid ---- */
@media (max-width: 600px) {
  .related-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

/* ---- Cart item — grid to flex for narrow screens ---- */
@media (max-width: 480px) {
  .cart-item {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 10px;
    align-items: start;
  }
  .cart-item-img { height: 72px; width: 72px; }
  .cart-item-controls {
    grid-column: 1 / -1;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border);
    padding-top: 8px;
    margin-top: 4px;
  }
  .cart-item-line-price { font-size: 17px; }
  .cart-qty-btn { width: 32px; height: 32px; }
}

/* ---- Footer ---- */
@media (max-width: 480px) {
  .footer-col ul { columns: 1; }
  .footer-grid { gap: 24px; }
  .footer-links { flex-wrap: wrap; gap: 10px; }
  .footer-bottom-inner { flex-direction: column; gap: 6px; text-align: center; }
}

/* ---- Breadcrumb ---- */
@media (max-width: 600px) {
  .breadcrumb { font-size: 11px; flex-wrap: wrap; gap: 3px 6px; }
  .breadcrumb i { font-size: 8px; }
}

/* ---- Product detail page ---- */
@media (max-width: 600px) {
  .pi-price { font-size: 28px; }
  .pi-btn-group { flex-direction: column; gap: 10px; }
  .pi-btn-group .btn-primary,
  .pi-btn-group .btn-outline { width: 100%; justify-content: center; }
  .pi-qty-row { flex-wrap: wrap; gap: 10px; }
}
@media (max-width: 480px) {
  .product-img-box { min-height: 200px; }
  .pi-price { font-size: 24px; }
}

/* ---- Mobile nav — larger touch targets ---- */
@media (max-width: 768px) {
  .mobile-nav a {
    padding: 14px 20px;
    font-size: 15px;
    min-height: 48px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
}

/* ---- Hero improvements on mobile ---- */
@media (max-width: 480px) {
  .hero-stats { gap: 14px; padding-top: 14px; margin-top: 14px; }
  .stat-num { font-size: 1.4rem; }
  .hero-vrm-trust { flex-wrap: wrap; gap: 8px; }
  .hero-vrm-trust-item { font-size: 11px; }
  .hero-vrm-card-title { font-size: 14px; }
}

/* ---- Why section ---- */
@media (max-width: 768px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---- HIW section ---- */
@media (max-width: 480px) {
  .hiw-grid { grid-template-columns: 1fr; }
}

/* ---- Container padding safety ---- */
@media (max-width: 360px) {
  .container { padding: 0 12px; }
  .hero-title { font-size: 1.55rem; }
  .hero-vrm-card { padding: 18px 14px; border-radius: 14px; }
  .trust-strip-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---- Top bar — tighten on phones ---- */
@media (max-width: 480px) {
  .top-bar { padding: 5px 0; font-size: 11px; }
  .top-bar-promo { font-size: 11px; }
}

/* ---- Checkout — prevent cramping ---- */
@media (max-width: 480px) {
  .checkout-section-body { padding: 16px; }
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 16px; } /* Prevents iOS auto-zoom */
}

/* ---- Contact page ---- */
@media (max-width: 600px) {
  .contact-grid { gap: 28px; }
}

/* ---- Prefers reduced motion — disable all animations ---- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-title .line1,
  .hero-title .line2,
  .hero-title .line3,
  .hero-badge,
  .hero-sub,
  .hero-btns,
  .hero-stats { opacity: 1; transform: none; }
}

/* ============================================================
   FIXED PROMO BADGE — USE CODE SAVE30
   ============================================================ */
.promo-badge {
  position: fixed;
  bottom: 28px;
  right: 20px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 0;
  background: #1a1a1a;
  border: 2px solid #FFB800;
  border-radius: 50px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,184,0,0.15);
  overflow: hidden;
  cursor: default;
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), opacity 0.2s ease;
  animation: promoBadgeSlideIn 0.55s cubic-bezier(0.34,1.56,0.64,1) 2s both;
}
@keyframes promoBadgeSlideIn {
  from { opacity: 0; transform: translateX(120px); }
  to   { opacity: 1; transform: translateX(0); }
}
.promo-badge.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(120px);
}
.promo-badge-close {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 20px;
  height: 20px;
  background: #444;
  color: #ccc;
  border: none;
  border-radius: 50%;
  font-size: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  line-height: 1;
  z-index: 1;
}
.promo-badge-close:hover { background: var(--red); color: #fff; }
.promo-badge-label {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #aaa;
  padding: 10px 12px 10px 16px;
  white-space: nowrap;
}
.promo-badge-divider {
  width: 1px;
  height: 28px;
  background: rgba(255,184,0,0.4);
  flex-shrink: 0;
}
.promo-badge-code {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #FFB800;
  padding: 10px 18px;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .promo-badge { bottom: 16px; right: 12px; }
  .promo-badge-label { font-size: 8px; padding: 9px 10px 9px 14px; }
  .promo-badge-code { font-size: 14px; padding: 9px 14px; }
}

/* ============================================================
   LOGO IMAGE
   ============================================================ */
.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-img {
  height: 90px;
  width: auto;
  display: block;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .logo-img { height: 64px; }
}
@media (max-width: 480px) {
  .logo-img { height: 52px; }
}

/* Footer logo */
.footer-logo { display: inline-flex; align-items: center; text-decoration: none; }
.footer-logo-img {
  height: 64px;
  width: auto;
  display: block;
  border-radius: 8px;
  /* logo has white bg — blend into dark footer */
  mix-blend-mode: lighten;
  filter: brightness(0.95);
}

/* ============================================================
   TRUST STRIP — HORIZONTAL SLIDER ON MOBILE
   ============================================================ */
@media (max-width: 768px) {
  .trust-strip { padding: 0; overflow: hidden; }

  .trust-strip-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0;
    /* Show a peek of the next card to hint at scrolling */
    padding: 0 0 0 0;
  }
  .trust-strip-grid::-webkit-scrollbar { display: none; }

  .trust-item {
    flex: 0 0 75vw;
    max-width: 300px;
    scroll-snap-align: start;
    border-right: 1px solid var(--grey);
    border-bottom: none;
    padding: 16px 18px;
    background: #fff;
  }
  .trust-item:last-child { border-right: 1px solid var(--grey); }

  /* Dot indicators */
  .trust-strip::after {
    content: '';
    display: block;
    text-align: center;
    padding: 6px 0 4px;
  }
}

@media (max-width: 480px) {
  .trust-item { flex: 0 0 80vw; max-width: 280px; }
}

/* Scroll hint dots below slider */
.trust-dots {
  display: none;
  justify-content: center;
  gap: 6px;
  padding: 6px 0 8px;
  background: #fff;
  border-bottom: 1px solid var(--grey);
}
.trust-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--grey);
  transition: background 0.2s, transform 0.2s;
}
.trust-dot.active { background: var(--red); transform: scale(1.3); }

@media (max-width: 768px) {
  .trust-dots { display: flex; }
}
