/* ===========================
   VARIABLES & RESET
=========================== */
:root {
  --navy: #0B1F4B;
  --navy-dark: #071433;
  --gold: #C9A84C;
  --gold-dark: #A8862E;
  --white: #FFFFFF;
  --off-white: #F5F5F3;
  --light-gray: #EBEBEB;
  --text: #1A1A1A;
  --text-mid: #444444;
  --text-muted: #777777;
  --border: #DDDDD8;
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 6px;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.07);
  --shadow-md: 0 6px 28px rgba(0,0,0,0.11);
  --shadow-lg: 0 16px 56px rgba(0,0,0,0.15);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ===========================
   TOP BAR
=========================== */
.topbar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 9px 0;
}
.topbar-inner {
  display: flex;
  justify-content: flex-end;
  gap: 36px;
  flex-wrap: wrap;
}
.topbar-item {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.03em;
  display: flex;
  gap: 6px;
  align-items: center;
  transition: color 0.2s;
}
.topbar-item strong {
  color: var(--gold);
  font-weight: 700;
}
.topbar-item:hover { color: var(--gold); }

/* ===========================
   NAVBAR
=========================== */
.navbar {
  background: var(--white);
  border-bottom: 1px solid var(--light-gray);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-mark {
  width: 38px;
  height: 38px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-mark i {
  color: var(--gold);
  font-size: 0.9rem;
}
.logo-text { line-height: 1.15; }
.logo-main {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: var(--navy);
}
.logo-sub {
  display: block;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-mid);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: background 0.18s, color 0.18s;
}
.nav-links a:hover { background: var(--off-white); color: var(--navy); }
.nav-links .nav-active {
  background: var(--gold);
  color: var(--white);
  border-radius: var(--radius);
}
.nav-links .nav-active:hover { background: var(--gold-dark); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  display: block;
  transition: all 0.25s;
}

/* ===========================
   HERO
=========================== */
.hero {
  background: var(--off-white);
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 400px;
}
.hero-text {
  padding: 64px 40px 64px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}
.hero-text h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
}
.hero-tagline {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.hero-dividers {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text-mid);
  font-weight: 500;
}
.hero-dividers .dot { color: var(--gold); }
.hero-location {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-top: 8px;
}
.hero-location i { color: var(--gold); margin-top: 3px; font-size: 1rem; }
.hero-location strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
}
.hero-location span {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.hero-image-panel {
  position: relative;
  overflow: hidden;
}
.hero-image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 380px;
}

/* ===========================
   STATS STRIP
=========================== */
.stats-strip {
  background: var(--navy);
  padding: 36px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  text-align: center;
  padding: 16px 24px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat:last-child { border-right: none; }
.stat-n {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stat-plus {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
}
.stat p {
  font-family: var(--font-head);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 6px;
  font-weight: 500;
}

/* ===========================
   PARTS SECTION (content + form)
=========================== */
.parts-section {
  padding: 80px 0;
  background: var(--white);
}
.parts-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.parts-info h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 18px;
  line-height: 1.25;
}
.parts-intro {
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 28px;
  font-size: 0.95rem;
}
.parts-point {
  margin-bottom: 22px;
}
.parts-point strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.parts-point p {
  color: var(--text-mid);
  font-size: 0.9rem;
  line-height: 1.7;
}
.benefits-title {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  margin-top: 8px;
}
.benefits-list {
  list-style: decimal;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.benefits-list li {
  color: var(--text-mid);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* FORM */
.parts-form-wrapper {
  position: sticky;
  top: 80px;
}
.parts-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
}
.form-field {
  position: relative;
  margin-bottom: 14px;
}
.form-field i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.82rem;
  pointer-events: none;
}
.form-field-textarea i {
  top: 16px;
  transform: none;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px 12px 38px;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text);
  background: var(--off-white);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--navy);
  background: var(--white);
}
.form-field textarea { resize: vertical; }
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 18px;
  cursor: pointer;
}
.form-consent input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin-top: 2px;
  accent-color: var(--navy);
  cursor: pointer;
}
.form-consent span {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.form-consent a { color: var(--gold); text-decoration: underline; }
.btn-request {
  width: 100%;
  padding: 15px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-request:hover { background: var(--navy-dark); transform: translateY(-1px); }

/* ===========================
   PRODUCTS SECTION
=========================== */
.products-section {
  padding: 80px 0;
  background: var(--off-white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}

.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--gold);
}

.product-img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--light-gray);
  flex-shrink: 0;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.06);
}

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  pointer-events: none;
}

.product-zoom {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.92);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 0.8rem;
  opacity: 0;
  transition: opacity 0.2s, background 0.2s, color 0.2s;
}

.product-card:hover .product-zoom { opacity: 1; }
.product-zoom:hover { background: var(--gold); color: var(--white); }

.product-body {
  padding: 15px 16px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 7px;
}

.product-make {
  font-family: var(--font-head);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  display: inline-block;
  width: fit-content;
}

.make-mercedes { background: rgba(11,31,75,0.08); color: var(--navy); }
.make-porsche  { background: rgba(140,0,0,0.08);  color: #8c0000; }
.make-vw       { background: rgba(11,31,75,0.08); color: var(--navy); }

.product-name {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  flex: 1;
}

.product-price {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold-dark);
  letter-spacing: 0.01em;
}

.product-actions {
  display: flex;
  gap: 8px;
  margin-top: 4px;
  flex-wrap: wrap;
}

.btn-prod-wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  background: #25D366;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background 0.18s;
  white-space: nowrap;
}
.btn-prod-wa:hover { background: #1daa53; }

.btn-prod-req {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border: 1.5px solid var(--navy);
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background 0.18s, color 0.18s;
  white-space: nowrap;
}
.btn-prod-req:hover { background: var(--navy); color: var(--white); }

/* PRODUCT LIGHTBOX MODAL */
.prod-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(7,20,51,0.9);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 24px;
  cursor: pointer;
}
.prod-modal.open { display: flex; }

.prod-modal-close {
  position: fixed;
  top: 18px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, transform 0.18s;
  z-index: 1002;
}
.prod-modal-close:hover { background: var(--gold-dark); transform: scale(1.1); }

.prod-modal-inner {
  max-width: 840px;
  width: 100%;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  cursor: default;
  z-index: 1001;
}

.prod-modal-imgwrap {
  width: 100%;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 72vh;
  overflow: hidden;
}

.prod-modal-imgwrap img {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  display: block;
}

.prod-modal-info {
  padding: 16px 24px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  gap: 12px;
  flex-wrap: wrap;
}

.prod-modal-name {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
}

.prod-modal-price {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gold-dark);
  white-space: nowrap;
}

/* ===========================
   CATEGORIES
=========================== */
.categories-section {
  padding: 80px 0;
  background: var(--off-white);
}
.section-head {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 52px;
}
.eyebrow {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-head h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.25;
}
.accent { color: var(--gold); }
.section-desc { color: var(--text-muted); font-size: 0.92rem; }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 24px;
  transition: box-shadow 0.22s, transform 0.22s, border-color 0.22s;
}
.cat-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--gold);
}
.cat-card > i {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 16px;
}
.cat-card h3 {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.cat-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.65;
}

/* ===========================
   WHY US
=========================== */
.why-section {
  padding: 80px 0;
  background: var(--white);
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
}
.why-content h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 32px;
  line-height: 1.25;
}
.why-items { display: flex; flex-direction: column; gap: 24px; }
.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.why-num {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.05em;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 6px;
  padding: 6px 10px;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-item h4 {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
}
.why-item p {
  color: var(--text-muted);
  font-size: 0.87rem;
  line-height: 1.65;
}

/* ===========================
   MODELS STRIP
=========================== */
.models-strip {
  background: var(--navy-dark);
  padding: 24px 0;
}
.models-label {
  font-family: var(--font-head);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 12px;
  font-weight: 700;
}
.models-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 4px;
  align-items: center;
}
.models-list span {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.models-list .dot { color: var(--gold); }

/* ===========================
   TESTIMONIALS
=========================== */
.testimonials-section {
  padding: 80px 0;
  background: var(--off-white);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 24px;
}
.review-featured {
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}
.review-featured p,
.review-featured .reviewer span {
  color: rgba(255,255,255,0.65);
}
.review-featured .reviewer strong { color: var(--white); }
.stars {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.review-card p {
  color: var(--text-mid);
  font-size: 0.88rem;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
  color: var(--white);
}
.av-gold { background: var(--gold); }
.av-dark { background: var(--text); color: var(--gold); }
.reviewer strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}
.reviewer span { font-size: 0.76rem; color: var(--text-muted); }

/* ===========================
   WHATSAPP BAR
=========================== */
.whatsapp-bar {
  background: var(--navy);
  padding: 36px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.wa-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.wa-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.wa-icon {
  font-size: 2.2rem;
  color: #25D366;
}
.wa-label {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.wa-number {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.02em;
}
.wa-number:hover { color: var(--gold); }
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: #25D366;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.15s;
}
.btn-wa:hover { background: #1daa53; transform: translateY(-2px); }

/* ===========================
   FOOTER
=========================== */
.footer {
  background: var(--navy-dark);
  padding: 72px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand .logo-mark { background: var(--gold); }
.footer-brand .logo-mark i { color: var(--navy); }
.footer-brand .logo-main { color: var(--white); }
.footer-brand .logo-sub { color: rgba(255,255,255,0.35); }
.footer-brand p {
  margin-top: 18px;
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
  line-height: 1.75;
}
.footer-hours {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-hours div {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}
.footer-hours strong {
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
  transition: color 0.18s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
}
.footer-contact-list i { color: var(--gold); width: 14px; margin-top: 3px; font-size: 0.8rem; }
.social-row {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.social-row a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
  font-size: 0.8rem;
  transition: all 0.18s;
}
.social-row a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}
.footer-bottom {
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p {
  color: rgba(255,255,255,0.2);
  font-size: 0.78rem;
}
.footer-bottom a { color: var(--gold); }
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  color: rgba(255,255,255,0.25);
  font-size: 0.78rem;
  transition: color 0.18s;
}
.footer-bottom-links a:hover { color: var(--gold); }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .parts-inner { gap: 40px; }
  .why-inner { gap: 40px; }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .review-featured { transform: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat:nth-child(2n) { border-right: none; }
  .stat:nth-last-child(-n+2) { border-bottom: none; }
}

@media (max-width: 768px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .topbar-inner { justify-content: center; gap: 20px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 12px 16px;
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    gap: 4px;
  }
  .nav-inner { position: relative; }
  .hamburger { display: flex; }
  .hero-content { grid-template-columns: 1fr; }
  .hero-image-panel { display: none; }
  .hero-text { padding: 48px 0; }
  .parts-inner { grid-template-columns: 1fr; gap: 40px; }
  .parts-form-wrapper { position: static; }
  .why-inner { grid-template-columns: 1fr; }
  .why-image { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .wa-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .wa-number { font-size: 1.2rem; }
}

@media (max-width: 540px) {
  .products-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }
}
