/* ============================================================
   FORGED — Style Sheet
   Black/White Premium — Inter Font
   ============================================================ */

/* ---- Variables ---- */
:root {
  --black: #000000;
  --white: #ffffff;
  --grey-100: #f5f5f5;
  --grey-200: #e8e8e8;
  --grey-300: #d0d0d0;
  --grey-500: #888888;
  --grey-700: #444444;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --nav-h: 64px;
  --max-w: 1440px;
  --content-w: 1280px;
  --radius: 10px;
  --radius-pill: 999px;
  --transition: 180ms ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: var(--font); }

/* ---- Typography ---- */
h1, h2, h3, h4 { line-height: 1.05; letter-spacing: -0.025em; font-weight: 900; }

/* ---- Layout ---- */
.wrap       { max-width: var(--content-w); margin: 0 auto; padding: 0 40px; }
.wrap--wide { max-width: var(--max-w);     margin: 0 auto; padding: 0 40px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px;
  font-size: 0.875rem; font-weight: 600; letter-spacing: 0.01em;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary { background: var(--black); color: var(--white); }
.btn-primary:hover { background: #222; transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--black); border: 1.5px solid var(--black); }
.btn-outline:hover { background: var(--black); color: var(--white); }
.btn-ghost { background: var(--grey-100); color: var(--black); border: 1px solid var(--grey-200); }
.btn-ghost:hover { background: var(--grey-200); }
.btn-sm  { padding: 8px 16px; font-size: 0.8rem; }
.btn-lg  { padding: 15px 32px; font-size: 0.95rem; border-radius: var(--radius); }
.btn-xs  { padding: 6px 12px; font-size: 0.75rem; }

/* ---- Divider ---- */
.divider { height: 1px; background: var(--grey-200); border: none; margin: 0; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
  height: var(--nav-h);
}
.navbar.scrolled {
  border-color: var(--grey-200);
  box-shadow: 0 1px 16px rgba(0,0,0,0.06);
}
.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}
.nav-logo {
  display: flex; align-items: center;
  color: var(--black);
}
.nav-wordmark {
  height: 40px;
  width: auto;
  display: block;
}

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 0.875rem; font-weight: 500;
  color: var(--grey-500);
  transition: color var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--black); }

.nav-actions {
  display: flex; align-items: center; justify-content: flex-end; gap: 4px;
}
.nav-icon-btn {
  position: relative; width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; color: var(--black);
  transition: background var(--transition);
}
.nav-icon-btn:hover { background: var(--grey-100); }
.nav-icon-btn svg { width: 19px; height: 19px; }
.cart-badge {
  position: absolute; top: 3px; right: 3px;
  min-width: 16px; height: 16px;
  background: var(--black); color: var(--white);
  font-size: 9px; font-weight: 700; border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 3px;
}

/* Hamburger with X animation */
.nav-hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  width: 38px; height: 38px;
  align-items: center; justify-content: center; cursor: pointer;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--black); border-radius: 2px;
  transition: transform 280ms cubic-bezier(0.4,0,0.2,1),
              opacity 200ms ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid var(--grey-200);
  padding: 16px 24px;
  flex-direction: column; gap: 4px;
  z-index: 99;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.nav-mobile.open {
  display: flex;
  animation: navSlideDown 0.28s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes navSlideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: none; }
}
.nav-mobile a {
  padding: 12px 0; font-size: 1rem; font-weight: 600;
  border-bottom: 1px solid var(--grey-100); color: var(--black);
}
.nav-mobile a:last-child { border-bottom: none; }

/* ============================================================
   HERO — Full-screen animated
   ============================================================ */
@keyframes hwReveal {
  from { opacity: 0; transform: translateY(64px) skewY(2deg); filter: blur(3px); }
  to   { opacity: 1; transform: none; filter: blur(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes carbonShimmer {
  0%   { transform: translateX(-130%); opacity: 0; }
  12%  { opacity: 1; }
  88%  { opacity: 1; }
  100% { transform: translateX(130%); opacity: 0; }
}
@keyframes carbonGlow {
  0%, 100% { opacity: 0.09; }
  50%       { opacity: 0.19; }
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0); transform-origin: top; opacity: 1; }
  60%       { transform: scaleY(1); transform-origin: top; opacity: 1; }
  61%       { transform: scaleY(1); transform-origin: bottom; }
  100%      { transform: scaleY(0); transform-origin: bottom; opacity: 0.4; }
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  background-color: #0b0b0b;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent 0, transparent 5px,
      rgba(255,255,255,0.028) 5px, rgba(255,255,255,0.028) 6px,
      transparent 6px, transparent 12px,
      rgba(255,255,255,0.014) 12px, rgba(255,255,255,0.014) 13px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent 0, transparent 5px,
      rgba(255,255,255,0.028) 5px, rgba(255,255,255,0.028) 6px,
      transparent 6px, transparent 12px,
      rgba(255,255,255,0.014) 12px, rgba(255,255,255,0.014) 13px
    );
  background-size: 13px 13px;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.hero-bg-word {
  position: absolute; right: -0.03em; bottom: -0.07em;
  font-size: clamp(10rem, 19vw, 21rem);
  font-weight: 900; letter-spacing: -0.04em; line-height: 1;
  color: rgba(255,255,255,0.022);
  user-select: none; text-transform: uppercase; pointer-events: none;
}
.hero-carbon-shimmer {
  position: absolute; inset: 0;
  background: linear-gradient(
    103deg,
    transparent 0%, transparent 35%,
    rgba(255,255,255,0.025) 41%,
    rgba(255,255,255,0.09) 50%,
    rgba(255,255,255,0.025) 59%,
    transparent 65%, transparent 100%
  );
  animation: carbonShimmer 7s cubic-bezier(0.4,0,0.6,1) infinite;
  animation-delay: 2s;
  pointer-events: none; will-change: transform;
}
.hero-carbon-fmark {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.hero-carbon-fmark img {
  width: min(70%, 460px);
  mix-blend-mode: screen;
  animation: carbonGlow 8s ease-in-out infinite;
  user-select: none;
}
.hero-carbon-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 90% 90% at 40% 50%, transparent 28%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: var(--content-w); margin: 0 auto; width: 100%;
  padding: 120px 80px 100px;
}
.hero-eyebrow {
  margin-bottom: 28px;
  animation: fadeUp 0.6s 0.1s both;
}
.hero-badge {
  display: inline-flex; align-items: center;
  padding: 5px 14px;
  border: 1px solid rgba(255,255,255,0.18); border-radius: 999px;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.hero-headline {
  font-size: clamp(4rem, 8vw, 9rem);
  font-weight: 900; line-height: 0.92; letter-spacing: -0.04em;
  color: #fff; margin-bottom: 32px;
}
/* Each word animates individually */
.hw {
  display: inline-block;
  animation: hwReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) var(--d, 0s) both;
}
/* "Drive." — wave sweeps D→E via background-position on a pre-warmed clip layer */
.hw-carbon {
  display: inline-block;
  /* Gradient is 400% wide; bright peak at 50% sweeps left→right as position goes 100%→0% */
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.30) 0%,
    rgba(255,255,255,0.30) 24%,
    rgba(255,255,255,0.68) 38%,
    #fff                   50%,
    rgba(255,255,255,0.68) 62%,
    rgba(255,255,255,0.30) 76%,
    rgba(255,255,255,0.30) 100%
  );
  background-size: 400% 100%;
  background-position: 100% center; /* wave held off-screen left at start */
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation:
    hwReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both,
    driveGlow 8s ease-in-out 1.4s infinite;
}
@keyframes driveGlow {
  0%   { background-position: 100% center; filter: none; }
  6%   { background-position: 100% center; filter: none; }
  /* wave sweeps across — no glow yet */
  18%  { background-position: 0% center; filter: none; }
  /* wave settled — glow blooms in */
  27%  {
    background-position: 0% center;
    filter: drop-shadow(0 0 4px #fff) drop-shadow(0 0 4px #fff) drop-shadow(0 0 18px rgba(255,255,255,0.7)) drop-shadow(0 0 45px rgba(255,255,255,0.35));
  }
  /* hold */
  37%  {
    background-position: 0% center;
    filter: drop-shadow(0 0 4px #fff) drop-shadow(0 0 4px #fff) drop-shadow(0 0 18px rgba(255,255,255,0.7)) drop-shadow(0 0 45px rgba(255,255,255,0.35));
  }
  /* fade out */
  45%  { background-position: 0% center; filter: none; animation-timing-function: steps(1, end); }
  46%  { background-position: 100% center; filter: none; }
  100% { background-position: 100% center; filter: none; }
}
.hero-sub {
  font-size: 1rem; color: rgba(255,255,255,0.42);
  margin-bottom: 40px; max-width: 400px; line-height: 1.75;
  animation: fadeUp 0.7s 0.65s both;
}
.hero-actions {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 72px;
  animation: fadeUp 0.7s 0.8s both;
}
.btn-white { background: #fff; color: #000; }
.btn-white:hover { background: #e5e5e5; transform: translateY(-2px); }
.btn-ghost-white {
  background: transparent; color: rgba(255,255,255,0.7);
  border: 1.5px solid rgba(255,255,255,0.2);
}
.btn-ghost-white:hover {
  color: #fff; border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.06);
}
.hero-stats {
  display: flex; align-items: center;
  animation: fadeUp 0.7s 0.95s both;
}
.hero-stat { display: flex; flex-direction: column; gap: 4px; padding: 0 28px; }
.hero-stat:first-child { padding-left: 0; }
.hero-stat-n {
  font-size: 1.7rem; font-weight: 900; color: #fff;
  letter-spacing: -0.03em; line-height: 1;
}
.hero-stat-l {
  font-size: 0.7rem; color: rgba(255,255,255,0.48);
  font-weight: 500; letter-spacing: 0.03em;
}
.hero-stat-div {
  width: 1px; height: 30px; background: rgba(255,255,255,0.1); flex-shrink: 0;
}
.hero-scroll {
  position: absolute; bottom: 32px; left: 80px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.25); font-size: 0.6rem;
  font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  animation: fadeIn 1s 1.4s both; pointer-events: none;
}
.hero-scroll-track {
  width: 1px; height: 38px;
  background: rgba(255,255,255,0.12);
  position: relative; overflow: hidden;
}
.hero-scroll-track::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.65);
  transform: scaleY(0); transform-origin: top;
  animation: scrollPulse 2.2s ease-in-out 1.8s infinite;
}

/* ============================================================
   FEATURE STRIP
   ============================================================ */
.feature-strip {
  background: #080808;
  border-bottom: 1px solid #1e1e1e;
}
.feature-strip-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 40px;
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center; height: 54px;
}
.feature-item {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  font-size: 0.76rem; font-weight: 600; letter-spacing: 0.01em;
  color: rgba(255,255,255,0.55);
}
.feature-item i { color: rgba(255,255,255,0.35); font-size: 0.82rem; }
.feature-sep { width: 1px; height: 18px; background: rgba(255,255,255,0.08); }

/* ============================================================
   REG LOOKUP SECTION — UK Plate style
   ============================================================ */
.reg-section {
  padding: 80px 40px;
  border-bottom: 1px solid #222;
  background-color: #0d0d0d;
  background-image:
    repeating-linear-gradient(
      -45deg,
      rgba(255,255,255,0) 0px, rgba(255,255,255,0) 2px,
      rgba(255,255,255,0.036) 2px, rgba(255,255,255,0.036) 3px,
      rgba(255,255,255,0) 3px, rgba(255,255,255,0) 5px,
      rgba(255,255,255,0.015) 5px, rgba(255,255,255,0.015) 6px,
      rgba(255,255,255,0) 6px, rgba(255,255,255,0) 8px
    ),
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,0) 0px, rgba(255,255,255,0) 2px,
      rgba(255,255,255,0.036) 2px, rgba(255,255,255,0.036) 3px,
      rgba(255,255,255,0) 3px, rgba(255,255,255,0) 5px,
      rgba(255,255,255,0.015) 5px, rgba(255,255,255,0.015) 6px,
      rgba(255,255,255,0) 6px, rgba(255,255,255,0) 8px
    );
  background-size: 8px 8px, 8px 8px;
}
.reg-section .section-label  { color: rgba(255,255,255,0.4); }
.reg-section .section-title  { color: var(--white); }
.reg-section .section-sub    { color: rgba(255,255,255,0.5); }
.reg-section .reg-disclaimer { color: rgba(255,255,255,0.3); }
.reg-section-inner {
  max-width: 600px; margin: 0 auto; text-align: center;
}
.section-label {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--grey-500); margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900; letter-spacing: -0.025em; margin-bottom: 12px;
}
.section-sub {
  color: var(--grey-500); font-size: 0.925rem;
  max-width: 480px; margin: 0 auto 40px; line-height: 1.7;
}

.reg-form {
  display: flex; gap: 10px;
  max-width: 480px; margin: 0 auto 20px;
  align-items: stretch;
}
.reg-form-plate {
  display: flex; flex: 1;
  border-radius: 8px; overflow: hidden;
  border: 3px solid var(--black);
  height: 58px;
}
.reg-gb {
  background: #003399; color: var(--white);
  width: 54px; flex-shrink: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 4px;
}
.reg-gb-flag-svg {
  width: 30px; height: 19px;
  border-radius: 3px; display: block;
  box-shadow: 0 0 0 1.5px rgba(255,255,255,0.35);
}
.reg-gb-text { font-size: 8px; font-weight: 900; letter-spacing: 0.05em; }
.reg-input {
  flex: 1;
  min-width: 0;
  border: none;
  background: #FFDD00;
  padding: 0 12px;
  height: 100%;
  font-size: 1.35rem; font-weight: 900;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--black); font-family: var(--font);
  text-align: center;
}
.reg-input::placeholder {
  font-weight: 700;
  color: rgba(0,0,0,0.35);
  letter-spacing: 0.05em;
}
.reg-input:focus { outline: none; }
.reg-submit {
  height: 58px;
  background: #003399; color: var(--white);
  border: none; padding: 0 22px;
  border-radius: 8px;
  font-size: 0.875rem; font-weight: 700;
  cursor: pointer; white-space: nowrap;
  letter-spacing: 0.04em; text-transform: uppercase;
  transition: background var(--transition);
  flex-shrink: 0; font-family: var(--font);
  display: flex; align-items: center; gap: 8px;
}
.reg-submit:hover { background: #004acc; }
.reg-submit:disabled { opacity: 0.5; cursor: not-allowed; }

.reg-result-box { min-height: 48px; margin-top: 16px; }
.reg-result {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; flex-wrap: wrap;
  padding: 16px 24px;
  background: var(--white); border: 1px solid var(--grey-200); border-radius: var(--radius);
}
.reg-result-vehicle { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.reg-make { font-size: 1.1rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.04em; }
.reg-model { font-size: 1.1rem; font-weight: 600; }
.reg-trim, .reg-year { font-size: 0.875rem; color: var(--grey-500); }
.reg-error {
  padding: 12px 16px;
  background: #fff3f3; border: 1px solid #ffd0d0;
  border-radius: var(--radius); color: #c0392b; font-size: 0.875rem;
}
.reg-disclaimer { font-size: 0.72rem; color: var(--grey-500); margin-top: 16px; }
.reg-result-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

/* Saved cars quick-select (garage page) */
.garage-saved-wrap {
  margin-bottom: 24px;
}
.garage-saved-label {
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.09em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
}
.garage-saved-list { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.garage-saved-car {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  padding: 8px 14px;
  cursor: pointer; transition: background 0.15s, border-color 0.15s;
}
.garage-saved-car:hover { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.4); }
.garage-saved-plate {
  background: #FFDD00; color: #000;
  border: 1.5px solid #000; border-radius: 3px;
  font-weight: 900; letter-spacing: 2px;
  padding: 2px 8px; font-size: 0.875rem;
}
.garage-saved-info {
  font-size: 0.8rem; font-weight: 600;
  color: rgba(255,255,255,0.8);
}

/* ============================================================
   PRODUCTS GRID
   ============================================================ */
.products-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--grey-200);
}
.section-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 40px;
  padding: 0 40px;
  max-width: var(--max-w); margin-left: auto; margin-right: auto;
}
.section-header-left .section-label { margin-bottom: 8px; }
.section-header-left .section-title { margin-bottom: 0; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--grey-200);
  border-left: 1px solid var(--grey-200);
}
.product-card {
  border-right: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
  display: flex; flex-direction: column;
  background: var(--white);
  transition: background 220ms ease;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}
.product-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; bottom: 0; width: 2px;
  background: var(--black);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}
.product-card:hover::before { transform: scaleY(1); }
.product-card:hover { background: var(--grey-100); }
.product-img {
  aspect-ratio: 4/3; overflow: hidden;
  background: var(--grey-100);
  position: relative;
}
.product-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 500ms cubic-bezier(0.4,0,0.2,1);
}
.product-card:hover .product-img img { transform: scale(1.06); }
.product-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: var(--grey-100);
}
.product-img-placeholder svg { color: var(--grey-300); }
.product-badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--black); color: var(--white);
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 3px 9px; border-radius: var(--radius-pill);
}
.product-info {
  flex: 1; padding: 18px 20px 12px;
  display: flex; flex-direction: column; gap: 4px;
}
.product-category {
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--grey-500);
}
.product-name { font-size: 0.9rem; font-weight: 700; line-height: 1.3; margin-top: 2px; }
.product-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 20px 18px;
}
.product-price { font-size: 1rem; font-weight: 800; }
.product-price .was {
  font-size: 0.8rem; font-weight: 400;
  color: var(--grey-500); text-decoration: line-through; margin-left: 6px;
}
.product-add-btn {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 7px 13px;
  background: var(--black); color: var(--white);
  border-radius: var(--radius); font-size: 0.75rem; font-weight: 600;
  cursor: pointer; border: none;
  transition: background var(--transition), transform var(--transition);
  font-family: var(--font); white-space: nowrap;
}
.product-add-btn:hover { background: #333; transform: translateY(-1px); }

/* Shop page filters */
.shop-filters {
  display: flex; gap: 8px; flex-wrap: wrap;
  padding: 24px 40px; border-bottom: 1px solid var(--grey-200);
  max-width: var(--max-w); margin: 0 auto;
}
.filter-btn {
  padding: 7px 18px; font-size: 0.8rem; font-weight: 600;
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-pill);
  background: var(--white); color: var(--grey-700);
  cursor: pointer; transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--black); color: var(--white); border-color: var(--black);
}

/* ============================================================
   BRAND STATEMENT — dark editorial
   ============================================================ */
.brand-statement {
  padding: 100px 40px;
  border-bottom: 1px solid #1e1e1e;
  text-align: center;
  background: #0d0d0d;
}
.brand-statement-inner { max-width: 800px; margin: 0 auto; }
.brand-statement-title {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 900; letter-spacing: -0.025em; margin-bottom: 28px;
  color: #fff;
}
.brand-statement-body {
  font-size: 0.975rem; color: rgba(255,255,255,0.48);
  line-height: 1.85; max-width: 680px; margin: 0 auto 48px;
}
.brand-statement-body strong { color: rgba(255,255,255,0.85); font-weight: 600; }

.stats-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; padding-top: 48px; border-top: 1px solid #222;
}
.stat-item { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.stat-num {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900; letter-spacing: -0.03em; line-height: 1;
  color: #fff;
}
.stat-label { font-size: 0.825rem; color: rgba(255,255,255,0.35); font-weight: 500; }

/* ============================================================
   CART DRAWER
   ============================================================ */
.cart-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.4); backdrop-filter: blur(2px);
  z-index: 200;
}
.cart-overlay.open { display: block; }
.cart-drawer {
  position: fixed; top: 0; right: -420px;
  width: min(400px, 100vw); height: 100vh;
  background: var(--white); border-left: 1px solid var(--grey-200);
  z-index: 201;
  display: flex; flex-direction: column;
  transition: right 300ms cubic-bezier(0.4,0,0.2,1);
  box-shadow: -8px 0 40px rgba(0,0,0,0.1);
}
.cart-drawer.open { right: 0; }
.cart-drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid var(--grey-200);
}
.cart-drawer-title { font-size: 1rem; font-weight: 800; letter-spacing: -0.01em; }
.cart-drawer-count { font-size: 0.8rem; color: var(--grey-500); font-weight: 500; }
.cart-close {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--grey-100);
  font-size: 1.1rem; cursor: pointer; transition: background var(--transition);
}
.cart-close:hover { background: var(--grey-200); }
.cart-items-list { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-empty {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; height: 200px;
  gap: 12px; color: var(--grey-500); text-align: center;
}
.cart-empty i { font-size: 2rem; opacity: 0.4; }
.cart-item-row {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 14px 0; border-bottom: 1px solid var(--grey-100);
}
.cart-item-row:last-child { border-bottom: none; }
.cart-item-img {
  width: 60px; height: 60px; flex-shrink: 0;
  background: var(--grey-100); border-radius: 8px; overflow: hidden;
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-details { flex: 1; min-width: 0; }
.cart-item-name { font-size: 0.875rem; font-weight: 700; line-height: 1.3; }
.cart-item-meta { font-size: 0.775rem; color: var(--grey-500); margin-top: 2px; }
.cart-item-controls { display: flex; align-items: center; gap: 6px; margin-top: 8px; }
.cart-qty-btn {
  width: 26px; height: 26px;
  border: 1.5px solid var(--grey-200); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.875rem; cursor: pointer;
  transition: var(--transition); background: none;
}
.cart-qty-btn:hover { border-color: var(--black); background: var(--black); color: var(--white); }
.cart-qty-val { font-size: 0.875rem; font-weight: 700; min-width: 20px; text-align: center; }
.cart-item-remove {
  font-size: 0.75rem; color: var(--grey-500);
  text-decoration: underline; cursor: pointer;
  background: none; border: none; font-family: var(--font);
  padding: 0; margin-top: 4px; display: block;
}
.cart-item-price { font-size: 0.925rem; font-weight: 700; flex-shrink: 0; }
.cart-drawer-footer {
  padding: 20px 24px; border-top: 1px solid var(--grey-200);
  display: flex; flex-direction: column; gap: 12px;
}
.cart-total-row { display: flex; justify-content: space-between; align-items: center; }
.cart-total-label { font-size: 0.875rem; font-weight: 600; }
.cart-total-amount { font-size: 1.2rem; font-weight: 900; }
.cart-checkout-btn { width: 100%; justify-content: center; }
.cart-note { font-size: 0.72rem; color: var(--grey-500); text-align: center; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { border-top: 1px solid var(--grey-200); background: var(--white); }
.footer-inner { max-width: var(--max-w); margin: 0 auto; padding: 64px 40px 0; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--grey-200);
}
.footer-brand-logo {
  font-size: 1rem; font-weight: 900;
  letter-spacing: 0.1em; text-transform: uppercase;
  display: flex; align-items: center; gap: 8px; margin-bottom: 14px;
}
.footer-logo-img-wrap {
  width: 24px; height: 24px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.footer-logo-img {
  position: absolute;
  width: 60px; height: 60px;
  top: -13px; left: -18px;
}
.footer-tagline {
  font-size: 0.875rem; color: var(--grey-500);
  line-height: 1.65; max-width: 240px; margin-bottom: 20px;
}
.footer-socials { display: flex; gap: 8px; }
.footer-social {
  width: 36px; height: 36px;
  border: 1px solid var(--grey-200); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--grey-500); font-size: 0.875rem; transition: var(--transition);
}
.footer-social:hover { border-color: var(--black); color: var(--black); background: var(--grey-100); }
.footer-col-title {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 0.875rem; color: var(--grey-500); transition: color var(--transition); }
.footer-links a:hover { color: var(--black); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; padding: 20px 0;
}
.footer-copy { font-size: 0.775rem; color: var(--grey-500); }
.footer-payments { display: flex; gap: 6px; align-items: center; }
.pay-tag {
  padding: 3px 8px;
  border: 1px solid var(--grey-200); border-radius: 4px;
  font-size: 0.65rem; font-weight: 700; color: var(--grey-500); letter-spacing: 0.02em;
}

/* ============================================================
   PAGE — GARAGE
   ============================================================ */
.garage-hero {
  padding: 100px 40px 80px;
  text-align: center; border-bottom: 1px solid var(--grey-200);
}
.garage-hero .section-title { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 16px; }
.garage-hero .section-sub { margin-bottom: 48px; }
.garage-results { max-width: var(--max-w); margin: 0 auto; padding: 48px 40px; }
.garage-vehicle-card {
  background: var(--grey-100); border-radius: var(--radius);
  padding: 32px; margin-bottom: 40px;
  display: flex; align-items: center; gap: 32px; border: 1px solid var(--grey-200);
}
.garage-vehicle-info { flex: 1; }
.garage-vehicle-make { font-size: 2rem; font-weight: 900; letter-spacing: -0.02em; }
.garage-vehicle-model { font-size: 1.25rem; font-weight: 600; color: var(--grey-700); }
.garage-vehicle-detail { display: flex; gap: 16px; margin-top: 10px; flex-wrap: wrap; }
.garage-vehicle-detail span { font-size: 0.825rem; color: var(--grey-500); }
.garage-reg-plate {
  background: #FFDD00; color: var(--black);
  padding: 12px 24px; border-radius: 8px;
  font-size: 1.6rem; font-weight: 900; letter-spacing: 0.1em;
  border: 2px solid #cca800; flex-shrink: 0; text-transform: uppercase;
}

/* ============================================================
   PAGE — CONTACT
   ============================================================ */
.contact-section {
  max-width: 700px; margin: 0 auto; padding: 80px 40px;
}
.contact-section h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 12px; }
.contact-section .section-sub { text-align: left; margin-left: 0; margin-bottom: 40px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.825rem; font-weight: 600; margin-bottom: 6px; }
.form-group input,
.form-group textarea {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius);
  font-size: 0.925rem; font-family: var(--font);
  background: var(--white); color: var(--black);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--black); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* Custom animated dropdown */
.custom-select { position: relative; }
.custom-select-trigger {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--grey-200); border-radius: var(--radius);
  cursor: pointer; background: var(--white);
  transition: border-color var(--transition);
  font-family: var(--font); color: var(--black);
}
.custom-select.open .custom-select-trigger { border-color: var(--black); }
.custom-select-trigger-inner { display: flex; align-items: center; gap: 10px; }
.custom-select-trigger-icon {
  width: 28px; height: 28px;
  background: var(--grey-100); border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; flex-shrink: 0; color: var(--grey-700);
}
.custom-select-trigger-text { font-size: 0.925rem; font-weight: 500; }
.custom-select-arrow {
  transition: transform 0.28s cubic-bezier(0.4,0,0.2,1);
  color: var(--grey-500); font-size: 0.75rem; flex-shrink: 0;
}
.custom-select.open .custom-select-arrow { transform: rotate(180deg); }
.custom-select-panel {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0;
  background: var(--white);
  border: 1.5px solid var(--grey-200); border-radius: var(--radius);
  overflow: hidden;
  opacity: 0; transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 10;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.custom-select.open .custom-select-panel {
  opacity: 1; transform: translateY(0); pointer-events: all;
}
.custom-select-option {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 14px; cursor: pointer;
  transition: background var(--transition);
  border-bottom: 1px solid var(--grey-100);
}
.custom-select-option:last-child { border-bottom: none; }
.custom-select-option:hover { background: var(--grey-100); }
.custom-select-option.selected { background: var(--grey-100); }
.custom-select-option-icon {
  width: 34px; height: 34px; background: var(--grey-100); border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 0.825rem; color: var(--grey-700);
  transition: background var(--transition), color var(--transition);
}
.custom-select-option.selected .custom-select-option-icon {
  background: var(--black); color: var(--white);
}
.custom-select-option-title { font-size: 0.875rem; font-weight: 600; }
.custom-select-option-sub { font-size: 0.75rem; color: var(--grey-500); margin-top: 1px; }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.97);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-44px) scale(0.97);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-right {
  opacity: 0;
  transform: translateX(44px) scale(0.97);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 120ms; }
.reveal-delay-2 { transition-delay: 240ms; }
.reveal-delay-3 { transition-delay: 360ms; }
.reveal-delay-4 { transition-delay: 480ms; }

/* ============================================================
   TOAST
   ============================================================ */
.toast {
  position: fixed; bottom: 24px; right: 24px;
  background: var(--black); color: var(--white);
  padding: 12px 20px; border-radius: var(--radius-pill);
  font-size: 0.875rem; font-weight: 600;
  z-index: 9999;
  transform: translateY(80px); opacity: 0;
  transition: transform 300ms ease, opacity 300ms ease;
  pointer-events: none;
}
.toast.show { transform: none; opacity: 1; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-inner { padding: 100px 48px 80px; }
}
@media (max-width: 768px) {
  :root { --nav-h: 58px; }
  .nav-inner { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero-inner { padding: 96px 24px 80px; }
  .hero-headline { font-size: clamp(3.2rem, 13vw, 5.5rem); }
  .hero-stat { padding: 0 18px; }
  .hero-stat-n { font-size: 1.4rem; }
  .hero-scroll { left: 24px; }
  .feature-strip-inner { grid-template-columns: 1fr; height: auto; padding: 16px 24px; gap: 12px; }
  .feature-sep { display: none; }
  .feature-item { justify-content: flex-start; }
  .reg-section { padding: 56px 20px; }
  .products-section { padding: 56px 0; }
  .section-header { padding: 0 20px; flex-direction: column; align-items: flex-start; gap: 16px; }
  .brand-statement { padding: 64px 20px; }
  .stats-row { grid-template-columns: 1fr; gap: 32px; }
  .footer-inner { padding: 48px 20px 0; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; padding: 20px 0; }
  .shop-filters { padding: 16px 20px; }
  .contact-section { padding: 56px 20px; }
  .garage-hero { padding: 64px 20px 56px; }
  .garage-results { padding: 32px 20px; }
  .garage-vehicle-card { flex-direction: column; align-items: flex-start; gap: 16px; }
  .wrap, .wrap--wide { padding: 0 20px; }

  /* About page */
  .about-hero-sec { padding: 48px 20px !important; }
  .about-hero-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .about-values-sec { padding: 48px 20px !important; }
  .about-values-grid {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    background: transparent !important;
    border: none !important;
  }
  .about-values-grid > div { border: 1px solid var(--grey-200) !important; padding: 28px !important; }
  .about-values-grid > div + div { border-top: none !important; }

  /* Product card footer: stack price + button on narrow screens */
  .product-footer { flex-direction: column; align-items: flex-start; gap: 10px; }
  .product-add-btn { width: 100%; text-align: center; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .reg-form { flex-direction: column; gap: 8px; width: 100%; max-width: 100%; }
  .reg-form-plate { height: 56px; border-radius: 10px; overflow: hidden; }
  .reg-input { font-size: 1.2rem; padding: 0 10px; }
  .reg-submit { height: 52px; width: 100%; border-radius: 10px; justify-content: center; }
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PRIVACY PAGE
   ============================================================ */
.privacy-section {
  padding: 80px 40px;
  max-width: 760px;
  margin: 0 auto;
}
.privacy-inner { width: 100%; }
.privacy-header { margin-bottom: 48px; }
.privacy-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  margin-bottom: 8px;
}
.privacy-meta {
  font-size: 0.85rem;
  color: var(--grey-400);
}
.privacy-notice {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--grey-100);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-bottom: 40px;
  font-size: 0.875rem;
  color: var(--grey-600);
  line-height: 1.6;
}
.privacy-notice i { margin-top: 2px; flex-shrink: 0; }
.privacy-body h2 {
  font-size: 1.05rem;
  font-weight: 800;
  margin: 36px 0 10px;
  letter-spacing: -0.01em;
}
.privacy-body p {
  font-size: 0.9rem;
  color: var(--grey-600);
  line-height: 1.75;
  margin-bottom: 12px;
}
.privacy-body ul {
  margin: 0 0 12px 0;
  padding-left: 20px;
}
.privacy-body ul li {
  font-size: 0.9rem;
  color: var(--grey-600);
  line-height: 1.75;
  margin-bottom: 6px;
}
.privacy-body a {
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.privacy-body a:hover { opacity: 0.65; }
@media (max-width: 768px) {
  .privacy-section { padding: 48px 20px; }
}

/* ============================================================
   PAGE LOADER
   ============================================================ */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #0b0b0b;
  background-image:
    repeating-linear-gradient(45deg, transparent 0, transparent 5px, rgba(255,255,255,0.028) 5px, rgba(255,255,255,0.028) 6px, transparent 6px, transparent 12px, rgba(255,255,255,0.014) 12px, rgba(255,255,255,0.014) 13px),
    repeating-linear-gradient(-45deg, transparent 0, transparent 5px, rgba(255,255,255,0.028) 5px, rgba(255,255,255,0.028) 6px, transparent 6px, transparent 12px, rgba(255,255,255,0.014) 12px, rgba(255,255,255,0.014) 13px);
  background-size: 13px 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: transform 0.85s cubic-bezier(0.76, 0, 0.24, 1);
  will-change: transform;
}
.page-loader.loader-exit {
  transform: translateY(-100%);
}
.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-align: center;
}
.loader-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 20px;
  animation: fadeIn 0.5s 0.15s both;
}
.loader-wordmark {
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 40px;
  animation: fadeUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.05s both;
}
.loader-bar-wrap {
  width: clamp(160px, 28vw, 280px);
  animation: fadeIn 0.5s 0.3s both;
}
.loader-bar-track {
  height: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 1px;
  overflow: hidden;
}
.loader-bar-fill {
  height: 100%;
  width: 0%;
  background: #fff;
  border-radius: 1px;
  transition: width 0.12s linear;
}

/* Pause hero animations while loader is active so they play after curtain lifts */
body.loader-active .hero-eyebrow,
body.loader-active .hw,
body.loader-active .hw-carbon,
body.loader-active .hero-sub,
body.loader-active .hero-actions,
body.loader-active .hero-stats,
body.loader-active .hero-scroll,
body.loader-active .hero-bg-word {
  animation-play-state: paused;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-section {
  background: #0d0d0d;
  padding: 96px 80px;
  border-top: 1px solid #1e1e1e;
}
.reviews-header {
  text-align: center;
  margin-bottom: 56px;
}
.reviews-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  line-height: 1;
}
.reviews-sub {
  color: rgba(255,255,255,0.38);
  font-size: 0.9rem;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: var(--content-w);
  margin: 0 auto;
}
.review-card {
  background: #141414;
  border: 1px solid #222;
  border-radius: 12px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.review-card:hover { border-color: #444; transform: translateY(-3px); }
.review-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}
.review-stars {
  display: flex;
  gap: 3px;
}
.review-stars span {
  color: #f5c842;
  font-size: 0.8rem;
}
.review-quote-icon {
  color: rgba(255,255,255,0.12);
  font-size: 1.5rem;
  line-height: 1;
  font-family: Georgia, serif;
}
.review-text {
  color: rgba(255,255,255,0.62);
  font-size: 0.855rem;
  line-height: 1.72;
  font-style: italic;
  flex: 1;
  margin-bottom: 22px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 11px;
  padding-top: 18px;
  border-top: 1px solid #222;
}
.review-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #242424;
  border: 1px solid #333;
  color: rgba(255,255,255,0.55);
  font-size: 0.65rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.review-name {
  font-size: 0.835rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.review-car {
  font-size: 0.735rem;
  color: rgba(255,255,255,0.35);
}
@media (max-width: 1024px) {
  .reviews-section { padding: 72px 40px; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .reviews-section { padding: 56px 20px; }
}

/* ============================================================
   ACCOUNT PAGE
   ============================================================ */
.account-section {
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: flex-start;
}

/* Login */
#account-login {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  min-height: calc(100vh - var(--nav-h));
}
.acct-login-wrap {
  width: 100%;
  max-width: 400px;
  text-align: center;
}
.acct-login-logo {
  height: 38px;
  width: auto;
  margin: 0 auto 36px;
  display: block;
}
.acct-login-title {
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: -0.025em;
  margin-bottom: 10px;
}
.acct-login-sub {
  color: var(--grey-500);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 32px;
}
.acct-login-btn { width: 100%; justify-content: center; }
.acct-login-note {
  margin-top: 16px;
  font-size: 0.78rem;
  color: var(--grey-400);
  line-height: 1.5;
}
.acct-error {
  background: #fff0f0;
  color: #c00;
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 0.85rem;
  margin-bottom: 20px;
  text-align: left;
}

/* Loading */
#account-loading {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--nav-h));
  color: var(--grey-400);
  font-size: 0.9rem;
  flex-direction: column;
  gap: 16px;
}
.acct-spinner {
  width: 28px; height: 28px;
  border: 2.5px solid var(--grey-200);
  border-top-color: var(--black);
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Dashboard layout */
#account-dashboard { width: 100%; }
.acct-layout {
  display: flex;
  min-height: calc(100vh - var(--nav-h));
  width: 100%;
}

/* Sidebar */
.acct-sidebar {
  width: 260px;
  flex-shrink: 0;
  border-right: 1px solid var(--grey-200);
  padding: 48px 20px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  background: #fafafa;
}
.acct-profile { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; }
.acct-avatar {
  width: 52px; height: 52px;
  background: var(--black); color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; font-weight: 900;
  margin-bottom: 12px;
}
.acct-name { font-size: 1rem; font-weight: 800; letter-spacing: -0.01em; line-height: 1.2; }
.acct-email { color: var(--grey-400); font-size: 0.8rem; }
.acct-nav { display: flex; flex-direction: column; gap: 2px; }
.acct-nav-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 8px;
  font-size: 0.875rem; font-weight: 500;
  color: var(--grey-600, #555);
  transition: all 0.15s ease;
  text-decoration: none;
  background: none; border: none; cursor: pointer;
  width: 100%; text-align: left; font-family: inherit;
}
.acct-nav-item svg { width: 15px; height: 15px; flex-shrink: 0; opacity: 0.5; transition: opacity 0.15s; }
.acct-nav-item:hover { background: var(--grey-100); color: var(--black); }
.acct-nav-item:hover svg { opacity: 1; }
.acct-nav-item.active { background: var(--black); color: var(--white); font-weight: 600; }
.acct-nav-item.active svg { opacity: 1; }
.acct-nav-logout { margin-top: 12px; color: var(--grey-400); }
.acct-nav-logout:hover { background: #fff0f0; color: #c00; }
.acct-nav-staff { margin-top: 4px; color: var(--black); background: #f5f5f5; border: 1.5px solid #e0e0e0; }
.acct-nav-staff:hover { background: var(--black); color: var(--white); border-color: var(--black); }
.acct-nav-staff svg { opacity: 0.6; }
.acct-nav-staff:hover svg { opacity: 1; }

/* Main content */
.acct-main { flex: 1; padding: 52px 56px; min-width: 0; }
.acct-tab-header { margin-bottom: 32px; }
.acct-tab-title {
  font-size: clamp(1.6rem, 2.5vw, 2.25rem);
  font-weight: 900; letter-spacing: -0.03em; line-height: 1.1;
  margin-top: 6px;
}

/* Overview cards */
.acct-overview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.acct-card { border: 1.5px solid var(--grey-200); border-radius: var(--radius); padding: 24px; }
.acct-card-label {
  font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.09em;
  color: var(--grey-400); margin-bottom: 14px;
}
.acct-card-name { font-weight: 700; font-size: 0.95rem; margin-bottom: 4px; }
.acct-card-email { font-size: 0.85rem; color: var(--grey-500); }
.acct-card-link {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.875rem; font-weight: 600;
  color: var(--black); text-decoration: none;
  padding: 11px 0; border-bottom: 1px solid var(--grey-100);
  transition: opacity 0.15s;
}
.acct-card-link:last-child { border-bottom: none; padding-bottom: 0; }
.acct-card-link i { font-size: 0.7rem; opacity: 0.35; transition: opacity 0.15s; }
.acct-card-link:hover { opacity: 0.7; }
.acct-card-link:hover i { opacity: 1; }
.acct-orders-nudge {
  border: 1.5px solid var(--grey-200); border-radius: var(--radius);
  padding: 20px 24px; display: flex; align-items: center;
  justify-content: space-between; cursor: pointer; transition: border-color 0.2s;
}
.acct-orders-nudge:hover { border-color: var(--black); }

.acct-empty { color: var(--grey-400); font-size: 0.9rem; padding: 40px 0; }
.acct-empty a { color: var(--black); text-decoration: underline; }

/* Order cards */
.order-card {
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 14px;
  transition: border-color 0.2s;
}
.order-card:hover { border-color: #aaa; }
.order-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}
.order-number { font-weight: 800; font-size: 0.95rem; }
.order-meta { font-size: 0.78rem; color: var(--grey-400); margin-top: 2px; }
.order-total { font-weight: 800; font-size: 0.95rem; white-space: nowrap; }
.order-items {
  font-size: 0.825rem;
  color: var(--grey-500);
  margin-bottom: 20px;
  line-height: 1.5;
}
.order-progress { margin-bottom: 14px; }
.order-track {
  height: 3px;
  background: var(--grey-100);
  border-radius: 2px;
  margin-bottom: 10px;
  position: relative;
}
.order-track-fill {
  position: absolute; top: 0; left: 0; height: 100%;
  background: var(--black);
  border-radius: 2px;
  transition: width 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.order-steps { display: flex; justify-content: space-between; }
.order-step {
  display: flex; flex-direction: column;
  align-items: center; gap: 6px; flex: 1;
}
.order-step-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--grey-200);
  border: 2px solid var(--grey-200);
}
.order-step.done .order-step-dot,
.order-step.current .order-step-dot {
  background: var(--black);
  border-color: var(--black);
}
.order-step span {
  font-size: 0.68rem;
  color: var(--grey-300);
  text-align: center;
  line-height: 1.3;
}
.order-step.done span,
.order-step.current span { color: var(--black); font-weight: 600; }
.order-track-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.8rem; font-weight: 700;
  color: var(--black); text-decoration: none;
}
.order-track-link:hover { opacity: 0.55; }

/* Garage save button in reg result */
.garage-save-btn { white-space: nowrap; }

/* Account garage tab */
.acct-garage-car {
  display: flex; align-items: center; gap: 16px;
  border: 1.5px solid var(--grey-200); border-radius: var(--radius);
  padding: 16px 20px; margin-bottom: 12px;
  transition: border-color 0.2s;
}
.acct-garage-car:hover { border-color: #aaa; }
.acct-garage-plate {
  background: #FFDD00; color: #000;
  border: 2px solid #000; border-radius: 4px;
  font-weight: 900; letter-spacing: 2px;
  padding: 4px 12px; font-size: 1rem;
  flex-shrink: 0; white-space: nowrap;
}
.acct-garage-car-info { flex: 1; min-width: 0; }
.acct-garage-car-name { font-weight: 700; font-size: 0.95rem; }
.acct-garage-car-detail { font-size: 0.8rem; color: var(--grey-500); margin-top: 2px; }
.acct-garage-car-remove {
  color: var(--grey-300); font-size: 0.8rem;
  padding: 6px; border-radius: 6px; flex-shrink: 0;
  transition: color 0.15s, background 0.15s;
}
.acct-garage-car-remove:hover { color: #c00; background: #fff0f0; }
.acct-garage-actions { margin-top: 24px; }
.acct-add-form {
  display: flex; align-items: flex-start; gap: 12px;
  flex-wrap: wrap; margin-top: 20px;
}
.reg-plate-sm { height: 46px; flex: none; width: 220px; }
.reg-plate-sm .reg-gb { width: 42px; }
.reg-plate-sm .reg-input { font-size: 1.1rem; padding: 0 10px; }
.acct-add-form-btns { display: flex; gap: 8px; align-items: center; padding-top: 0; }
.acct-add-status { font-size: 0.82rem; color: var(--grey-500); margin-top: 10px; }

@media (max-width: 900px) {
  .acct-layout { flex-direction: column; }
  .acct-sidebar { width: 100%; padding: 32px 20px 20px; border-right: none; border-bottom: 1px solid var(--grey-200); flex-direction: row; flex-wrap: wrap; gap: 20px; }
  .acct-profile { flex-direction: row; align-items: center; gap: 14px; }
  .acct-avatar { margin-bottom: 0; width: 44px; height: 44px; font-size: 1.1rem; }
  .acct-nav { flex-direction: row; flex-wrap: wrap; gap: 4px; width: 100%; }
  .acct-nav-logout { margin-top: 0; }
  .acct-main { padding: 32px 20px; }
  .acct-overview-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .order-step span { font-size: 0.6rem; }
}

/* ============================================================
   PRODUCT MODAL
   ============================================================ */
.product-modal {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 250ms ease;
}
.product-modal.open { opacity: 1; pointer-events: all; }
.pm-inner {
  background: var(--white);
  width: 100%; max-width: 1080px;
  max-height: calc(100vh - 40px);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.35);
  animation: pm-in 280ms cubic-bezier(0.16,1,0.3,1);
  display: flex; flex-direction: column;
}
@keyframes pm-in {
  from { transform: scale(0.96) translateY(12px); opacity: 0; }
  to   { transform: none; opacity: 1; }
}
.pm-close {
  align-self: flex-end;
  flex-shrink: 0;
  margin: 12px 12px 0 0;
  z-index: 10;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--grey-100);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem;
  cursor: pointer; border: none;
  transition: background var(--transition);
  font-family: var(--font);
}
.pm-close:hover { background: var(--grey-200); }
.pm-body {
  display: grid;
  grid-template-columns: 52% 48%;
  flex: 1;
  overflow-y: auto;
  min-height: 0;
}
.pm-gallery {
  padding: 48px 40px 40px;
  border-right: 1px solid var(--grey-200);
  position: sticky; top: 0;
  align-self: start;
}
.pm-main-img {
  aspect-ratio: 1 / 1; overflow: hidden;
  background: var(--grey-100);
  border-radius: var(--radius);
  position: relative;
}
.pm-main-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: opacity 180ms ease;
}
.pm-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--grey-300);
}
.pm-badge {
  position: absolute; top: 12px; left: 12px; font-size: 0.68rem;
}
.pm-thumbs {
  display: flex; gap: 8px;
  margin-top: 14px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
  scrollbar-color: var(--grey-200) transparent;
}
.pm-thumb {
  width: 68px; height: 68px;
  border-radius: 8px;
  background-size: cover; background-position: center;
  border: 2px solid var(--grey-200);
  cursor: pointer;
  transition: border-color var(--transition);
  flex-shrink: 0;
}
.pm-thumb.active, .pm-thumb:hover { border-color: var(--black); }
.pm-info {
  padding: 48px 44px 48px 40px;
  display: flex; flex-direction: column; gap: 20px;
}
.pm-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 900; letter-spacing: -0.025em;
  line-height: 1.1; margin-top: 4px;
}
.pm-price {
  font-size: 1.7rem; font-weight: 800;
  letter-spacing: -0.02em;
}
.pm-label {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--grey-500); margin-bottom: 10px;
}
.pm-pills {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.pm-pill {
  padding: 9px 20px;
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-pill);
  font-size: 0.85rem; font-weight: 600;
  cursor: pointer; transition: var(--transition);
  background: var(--white); color: var(--black);
  font-family: var(--font);
}
.pm-pill.active { border-color: var(--black); background: var(--black); color: var(--white); }
.pm-pill:hover:not(.active) { border-color: var(--grey-500); }
.pm-pill-sold { opacity: 0.4; cursor: not-allowed; }
.pm-select {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius);
  font-size: 0.875rem; font-weight: 500;
  font-family: var(--font);
  background: var(--white); color: var(--black);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23000' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.pm-select:focus { outline: none; border-color: var(--black); }
.pm-thumb-more {
  width: 68px; height: 68px; flex-shrink: 0;
  border: 1.5px solid var(--grey-200); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 600; color: var(--grey-500);
}
.pm-desc {
  font-size: 0.875rem; color: var(--grey-700);
  line-height: 1.75;
}
.pm-desc ul, .pm-desc ol { padding-left: 20px; margin: 8px 0; }
.pm-desc li { margin-bottom: 4px; }
.pm-desc p { margin-bottom: 8px; }
.pm-desc strong { font-weight: 700; color: var(--black); }
.pm-desc h1, .pm-desc h2, .pm-desc h3 { font-size: 0.9rem; font-weight: 700; margin: 12px 0 6px; }
.pm-shipping {
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 18px;
  display: flex; flex-direction: column; gap: 12px;
}
.pm-ship-row {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.8rem; color: var(--grey-700);
}
.pm-ship-row i { width: 14px; color: var(--black); font-size: 0.8rem; }
.pm-atc {
  width: 100%; justify-content: center;
  font-size: 0.95rem;
}

/* Product grid extras */
.product-variants-hint {
  font-size: 0.7rem; color: var(--grey-500); font-weight: 500; margin-top: 2px;
}

/* Skeleton loader */
.product-skeleton {
  border-right: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
  background: var(--white);
}
.skeleton-img {
  aspect-ratio: 4 / 3;
}
.skeleton-img, .skeleton-line {
  background: linear-gradient(90deg, var(--grey-100) 25%, var(--grey-200) 50%, var(--grey-100) 75%);
  background-size: 400% 100%;
  animation: sk-shimmer 1.4s infinite;
}
.skeleton-line {
  height: 12px; border-radius: 4px;
}
@keyframes sk-shimmer {
  0%   { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

/* Garage vehicle fit badge */
.garage-fit-tag {
  position: absolute;
  bottom: 10px; right: 10px;
  background: #16a34a; color: #fff;
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 20px;
}

/* Description show more/less */
.pm-desc-wrap { position: relative; }
.pm-desc-gradient {
  position: absolute;
  bottom: 34px; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--white));
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.pm-desc-toggle {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.8rem; font-weight: 700;
  color: var(--black); background: none; border: none;
  cursor: pointer; padding: 6px 0 0 0;
  font-family: var(--font);
  letter-spacing: 0.01em;
  transition: opacity var(--transition);
}
.pm-desc-toggle:hover { opacity: 0.6; }

/* Modal responsive */
@media (max-width: 768px) {
  .product-modal { padding: 0; align-items: flex-end; }
  .pm-inner {
    max-height: 92vh;
    border-radius: var(--radius) var(--radius) 0 0;
  }
  .pm-body { grid-template-columns: 1fr; }
  .pm-gallery {
    padding: 16px 20px; border-right: none;
    border-bottom: 1px solid var(--grey-200);
    position: relative;
  }
  .pm-main-img { aspect-ratio: 4 / 3; }
  .pm-info { padding: 24px 20px 32px; }
  .pm-title { font-size: 1.4rem; }
  .pm-price { font-size: 1.4rem; }
}
