:root {
  --navy-900: #0b1f33;
  --navy-800: #102a43;
  --navy-700: #1b3a5c;
  --navy-600: #274b73;
  --accent: #c8102e;
  --accent-dark: #a30d25;
  --wa: #25d366;
  --wa-dark: #1da851;
  --gray-50: #f6f8fb;
  --gray-100: #eef1f5;
  --gray-200: #dde3ea;
  --gray-300: #c6cfd9;
  --gray-500: #6b7785;
  --gray-700: #3d4854;
  --text: #1d2733;
  --white: #ffffff;
  --radius: 6px;
  --shadow-sm: 0 1px 2px rgba(16, 42, 67, .06), 0 1px 3px rgba(16, 42, 67, .08);
  --shadow-md: 0 6px 18px rgba(16, 42, 67, .10);
  --container: 1240px;
  --font: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.55;
  color: var(--text);
  background: var(--gray-50);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { margin: 0; line-height: 1.25; color: var(--navy-800); }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

body { overflow-x: hidden; }
.product > *, .listing > *, .detail-grid > *, .contact-grid > * { min-width: 0; }
.product h1, .card-title, .card-brand { overflow-wrap: anywhere; }
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.icon { width: 20px; height: 20px; flex-shrink: 0; }
[hidden] { display: none !important; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 44px; padding: 0 22px; border: 1px solid transparent; border-radius: var(--radius);
  font-weight: 600; font-size: 14px; letter-spacing: .2px; cursor: pointer;
  transition: background-color .15s, border-color .15s, color .15s;
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: var(--accent-dark); }
.btn-navy { background: var(--navy-800); color: var(--white); }
.btn-navy:hover { background: var(--navy-700); }
.btn-outline { background: transparent; border-color: var(--gray-300); color: var(--navy-800); }
.btn-outline:hover { border-color: var(--navy-800); }
.btn-outline-light { background: transparent; border-color: rgba(255,255,255,.55); color: var(--white); }
.btn-outline-light:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.btn-wa { background: var(--wa); color: var(--white); }
.btn-wa:hover { background: var(--wa-dark); }
.btn-wa img { width: 20px; height: 20px; }
.btn-lg { height: 52px; padding: 0 28px; font-size: 15px; }
.btn-block { width: 100%; }
.btn-sm { height: 36px; padding: 0 14px; font-size: 13px; }

/* Top bar */
.topbar { background: var(--navy-900); color: #b8c5d3; font-size: 13px; }
.topbar .container { display: flex; align-items: center; justify-content: space-between; height: 38px; gap: 16px; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 22px; }
.topbar-item { display: inline-flex; align-items: center; gap: 7px; }
.topbar-item .icon { width: 15px; height: 15px; }
.topbar a:hover { color: var(--white); }

/* Header */
.header { background: var(--white); border-bottom: 1px solid var(--gray-200); position: sticky; top: 0; z-index: 50; }
.header-main { display: flex; align-items: center; gap: 28px; height: 84px; }
.logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.logo img { height: 48px; width: auto; }
.search { position: relative; flex: 1; max-width: 640px; }
.search form { display: flex; height: 46px; border: 2px solid var(--navy-800); border-radius: var(--radius); overflow: hidden; background: var(--white); }
.search select { border: 0; border-right: 1px solid var(--gray-200); background: var(--gray-50); padding: 0 12px; font-size: 13px; color: var(--gray-700); max-width: 190px; outline: none; cursor: pointer; }
.search input { flex: 1; border: 0; padding: 0 14px; outline: none; min-width: 0; }
.search button { border: 0; background: var(--navy-800); color: var(--white); padding: 0 20px; display: inline-flex; align-items: center; gap: 8px; font-weight: 600; cursor: pointer; }
.search button:hover { background: var(--navy-700); }
.search-suggest {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0; background: var(--white);
  border: 1px solid var(--gray-200); border-radius: var(--radius); box-shadow: var(--shadow-md);
  z-index: 60; display: none; overflow: hidden;
}
.search-suggest.open { display: block; }
.suggest-item { display: flex; align-items: center; gap: 12px; padding: 10px 14px; border-bottom: 1px solid var(--gray-100); }
.suggest-item:hover, .suggest-item.active { background: var(--gray-50); }
.suggest-item img { width: 44px; height: 44px; object-fit: contain; background: var(--gray-50); border-radius: 4px; }
.suggest-name { font-size: 14px; font-weight: 600; color: var(--navy-800); }
.suggest-meta { font-size: 12px; color: var(--gray-500); }
.suggest-price { margin-left: auto; font-weight: 700; color: var(--navy-800); white-space: nowrap; }
.suggest-all { display: block; padding: 11px 14px; text-align: center; font-size: 13px; font-weight: 600; color: var(--accent); background: var(--gray-50); }
.suggest-empty { padding: 14px; font-size: 14px; color: var(--gray-500); }
.header-actions { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.header-contact { display: flex; align-items: center; gap: 10px; }
.header-contact-icon { width: 42px; height: 42px; border-radius: 50%; background: var(--wa); display: grid; place-items: center; }
.header-contact-icon img { width: 22px; height: 22px; }
.header-contact small { display: block; font-size: 12px; color: var(--gray-500); }
.header-contact strong { font-size: 14px; color: var(--navy-800); }
.menu-toggle { display: none; background: none; border: 1px solid var(--gray-200); border-radius: var(--radius); width: 44px; height: 44px; align-items: center; justify-content: center; cursor: pointer; }

/* Nav */
.nav { background: var(--navy-800); }
.nav-drawer { display: contents; }
.nav-drawer-head { display: none; }
.nav-close {
  width: 40px; height: 40px; border: 0; background: rgba(255,255,255,.08); color: var(--white);
  border-radius: var(--radius); display: grid; place-items: center; cursor: pointer;
}
.sidebar .nav-close { background: var(--gray-100); color: var(--navy-800); }
.nav .container { display: flex; align-items: stretch; }
.nav-list { display: flex; align-items: stretch; }
.nav-item { position: relative; }
.nav-link { display: flex; align-items: center; gap: 6px; height: 48px; padding: 0 12px; color: #dbe4ee; font-size: 13px; font-weight: 600; }
.nav-link:hover, .nav-item:hover > .nav-link, .nav-link.active { color: var(--white); background: var(--navy-700); }
.nav-link .icon { width: 14px; height: 14px; }
.nav-all { background: var(--accent); color: var(--white); }
.nav-all:hover { background: var(--accent-dark) !important; }
.dropdown {
  position: absolute; top: 100%; left: 0; min-width: 240px; background: var(--white);
  border: 1px solid var(--gray-200); border-top: 3px solid var(--accent); box-shadow: var(--shadow-md);
  padding: 8px 0; display: none; z-index: 55;
}
.nav-item:hover .dropdown { display: block; }
.dropdown a { display: flex; justify-content: space-between; gap: 12px; padding: 9px 18px; font-size: 14px; color: var(--gray-700); }
.dropdown a:hover { background: var(--gray-50); color: var(--accent); }
.dropdown a span { color: var(--gray-500); font-size: 12px; }

/* Hero slider */
.hero { position: relative; background: var(--navy-900); overflow: hidden; }
.slides { position: relative; height: 420px; }
.slide {
  position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity .6s ease, visibility .6s;
  display: flex; align-items: center; color: var(--white);
}
.slide.active { opacity: 1; visibility: visible; }
.slide-1 { background: linear-gradient(115deg, #0b1f33 0%, #102a43 55%, #1b3a5c 100%); }
.slide-2 { background: linear-gradient(115deg, #0b1f33 0%, #1b2f45 50%, #3a1520 100%); }
.slide-3 { background: linear-gradient(115deg, #0b1f33 0%, #13324f 55%, #274b73 100%); }
.slide::before {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,.035) 0 1px, transparent 1px 22px);
}
.slide-art { position: absolute; right: 6%; top: 50%; transform: translateY(-50%); width: 360px; height: 360px; color: rgba(255,255,255,.14); }
.slide-art svg { width: 100%; height: 100%; }
.slide-content { position: relative; z-index: 1; max-width: 620px; }
.slide-kicker { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #ffb3bf; margin-bottom: 16px; }
.slide-kicker::before { content: ""; width: 28px; height: 3px; background: var(--accent); }
.slide h1, .slide h2 { color: var(--white); font-size: 40px; font-weight: 800; letter-spacing: -.3px; margin-bottom: 14px; }
.slide p { font-size: 17px; color: #c9d5e2; margin-bottom: 28px; max-width: 520px; }
.slide-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.35); background: rgba(11,31,51,.4); color: var(--white); cursor: pointer;
  display: grid; place-items: center;
}
.slider-btn:hover { background: rgba(255,255,255,.12); }
.slider-prev { left: 18px; }
.slider-next { right: 18px; }
.slider-dots { position: absolute; bottom: 22px; left: 0; right: 0; display: flex; justify-content: center; gap: 8px; z-index: 3; }
.slider-dots button { width: 28px; height: 4px; border: 0; background: rgba(255,255,255,.35); cursor: pointer; padding: 0; }
.slider-dots button.active { background: var(--accent); }

/* Features */
.features { background: var(--white); border-bottom: 1px solid var(--gray-200); }
.features .container { display: grid; grid-template-columns: repeat(4, 1fr); }
.feature { display: flex; align-items: center; gap: 14px; padding: 22px 18px; border-right: 1px solid var(--gray-100); }
.feature:last-child { border-right: 0; }
.feature-icon { width: 46px; height: 46px; border-radius: 50%; background: var(--gray-100); color: var(--navy-800); display: grid; place-items: center; flex-shrink: 0; }
.feature-icon .icon { width: 22px; height: 22px; }
.feature strong { display: block; font-size: 14px; color: var(--navy-800); }
.feature span { font-size: 13px; color: var(--gray-500); }

/* Sections */
.section { padding: 56px 0; }
.section-white { background: var(--white); }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 28px; }
.section-title { font-size: 26px; font-weight: 800; position: relative; padding-bottom: 12px; }
.section-title::after { content: ""; position: absolute; left: 0; bottom: 0; width: 44px; height: 3px; background: var(--accent); }
.section-sub { color: var(--gray-500); margin-top: 8px; font-size: 14px; }
.section-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; color: var(--accent); font-size: 14px; white-space: nowrap; }
.section-link .icon { width: 16px; height: 16px; }

/* Category cards */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card-title { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; min-height: 3.6em; }
.cat-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 22px 20px; display: flex; flex-direction: column; transition: border-color .15s, box-shadow .15s; }
.cat-card:hover { border-color: var(--navy-600); box-shadow: var(--shadow-md); }
.cat-icon { width: 56px; height: 56px; border-radius: var(--radius); background: var(--gray-100); color: var(--navy-800); display: grid; place-items: center; margin-bottom: 16px; }
.cat-icon svg { width: 34px; height: 34px; }
.cat-card h3 { font-size: 16px; margin-bottom: 4px; }
.cat-card h3 a:hover { color: var(--accent); }
.cat-card > p { font-size: 13px; color: var(--gray-500); margin-bottom: 14px; }
.cat-sub { border-top: 1px solid var(--gray-100); padding-top: 10px; margin-top: auto; }
.cat-sub a { display: flex; justify-content: space-between; font-size: 13px; padding: 4px 0; color: var(--gray-700); }
.cat-sub a:hover { color: var(--accent); }
.cat-sub span { color: var(--gray-500); }

/* Vehicle logos */
.vehicle-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 12px; }
.vehicle {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); height: 104px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  transition: border-color .15s, box-shadow .15s;
}
.vehicle:hover { border-color: var(--navy-600); box-shadow: var(--shadow-sm); }
.vehicle img { width: 40px; height: 40px; object-fit: contain; opacity: .85; }
.vehicle:hover img { opacity: 1; }
.vehicle span { font-size: 12px; font-weight: 600; color: var(--gray-700); letter-spacing: .3px; }
.vehicle-fallback { width: 40px; height: 40px; border-radius: 50%; background: var(--gray-100); color: var(--navy-800); display: grid; place-items: center; font-weight: 800; font-size: 14px; }

/* Product cards */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); display: flex; flex-direction: column; overflow: hidden; transition: border-color .15s, box-shadow .15s; }
.card:hover { border-color: var(--navy-600); box-shadow: var(--shadow-md); }
.card-img { aspect-ratio: 1 / 1; background: var(--white); display: grid; place-items: center; padding: 18px; border-bottom: 1px solid var(--gray-100); position: relative; }
.card-img { overflow: hidden; }
.card-img img { position: absolute; inset: 0; width: 100%; height: 100%; padding: 16px; object-fit: contain; }
.card-badge { z-index: 1; position: absolute; top: 10px; left: 10px; background: var(--navy-800); color: var(--white); font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 3px; letter-spacing: .3px; }
.card-body { padding: 14px 16px 16px; display: flex; flex-direction: column; flex: 1; }
.card-brand { font-size: 12px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase; color: var(--accent); margin-bottom: 4px; }
.card-title { font-size: 15px; font-weight: 600; color: var(--navy-800); margin-bottom: 4px; }
.card-code { font-size: 12px; color: var(--gray-500); margin-bottom: 14px; }
.card-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; gap: 10px; }
.price { font-size: 19px; font-weight: 800; color: var(--navy-800); }
.card-link { font-size: 13px; font-weight: 600; color: var(--navy-800); border: 1px solid var(--gray-300); border-radius: 4px; padding: 5px 12px; }
.card:hover .card-link { background: var(--navy-800); border-color: var(--navy-800); color: var(--white); }

/* Brand strip */
.brand-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.brand-tile {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); height: 72px;
  display: grid; place-items: center; font-weight: 800; letter-spacing: 1.5px; color: var(--navy-700); font-size: 15px; text-align: center; padding: 0 10px;
}
.brand-tile:hover { border-color: var(--navy-600); color: var(--accent); }

/* CTA band */
.cta-band { background: var(--navy-800); color: var(--white); position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background-image: repeating-linear-gradient(135deg, rgba(255,255,255,.035) 0 1px, transparent 1px 22px); }
.cta-band .container { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-top: 44px; padding-bottom: 44px; }
.cta-band h2 { color: var(--white); font-size: 26px; margin-bottom: 6px; }
.cta-band p { color: #c9d5e2; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Page head / breadcrumb */
.page-head { background: var(--white); border-bottom: 1px solid var(--gray-200); padding: 22px 0; }
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; font-size: 13px; color: var(--gray-500); margin-bottom: 8px; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { color: var(--gray-300); }
.page-title { font-size: 26px; font-weight: 800; }
.page-desc { color: var(--gray-500); margin-top: 4px; font-size: 14px; }

/* Listing */
.listing { display: grid; grid-template-columns: 270px 1fr; gap: 26px; padding-top: 28px; padding-bottom: 56px; }
.sidebar { align-self: start; position: sticky; top: 150px; }
.filter-box { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); margin-bottom: 16px; }
.filter-head { padding: 13px 16px; border-bottom: 1px solid var(--gray-100); font-weight: 700; font-size: 14px; color: var(--navy-800); display: flex; justify-content: space-between; align-items: center; }
.filter-body { padding: 12px 16px; }
.filter-note { font-size: 12px; color: var(--gray-500); margin-top: 8px; }
.tree a { display: flex; justify-content: space-between; padding: 6px 0; font-size: 14px; color: var(--gray-700); }
.tree a:hover { color: var(--accent); }
.tree a.active { color: var(--accent); font-weight: 700; }
.tree a span { color: var(--gray-500); font-size: 12px; font-weight: 400; }
.tree-sub { padding-left: 14px; border-left: 2px solid var(--gray-100); margin: 2px 0 6px 2px; }
.tree-sub a { font-size: 13px; padding: 4px 0; }
.check { display: flex; align-items: center; gap: 9px; padding: 5px 0; font-size: 14px; color: var(--gray-700); cursor: pointer; }
.check input { width: 16px; height: 16px; accent-color: var(--navy-800); margin: 0; }
.check span:last-child { margin-left: auto; color: var(--gray-500); font-size: 12px; }
.check-list { max-height: 260px; overflow-y: auto; }
.more-toggle { margin-top: 8px; background: none; border: 0; padding: 0; color: var(--accent); font-weight: 600; font-size: 13px; cursor: pointer; }
.price-inputs { display: flex; gap: 8px; align-items: center; }
.price-inputs input { width: 100%; height: 38px; border: 1px solid var(--gray-300); border-radius: 4px; padding: 0 10px; outline: none; }
.price-inputs input:focus { border-color: var(--navy-800); }
.price-inputs span { color: var(--gray-500); }
.filter-clear { width: 100%; }

.toolbar { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 16px; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 10px 14px; }
.toolbar-count { font-size: 14px; color: var(--gray-700); }
.toolbar-count strong { color: var(--navy-800); }
.toolbar-right { display: flex; gap: 10px; align-items: center; }
.toolbar select { height: 38px; border: 1px solid var(--gray-300); border-radius: 4px; padding: 0 10px; background: var(--white); cursor: pointer; outline: none; }
.filter-open { display: none; }
.active-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.chip { display: inline-flex; align-items: center; gap: 6px; background: var(--white); border: 1px solid var(--gray-300); border-radius: 20px; padding: 4px 8px 4px 12px; font-size: 13px; color: var(--gray-700); }
.chip button { border: 0; background: var(--gray-100); width: 20px; height: 20px; border-radius: 50%; cursor: pointer; display: grid; place-items: center; padding: 0; }
.chip button .icon { width: 12px; height: 12px; }
.listing .product-grid { grid-template-columns: repeat(3, 1fr); }

.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 30px; flex-wrap: wrap; }
.pagination a, .pagination span { min-width: 40px; height: 40px; padding: 0 10px; display: grid; place-items: center; border: 1px solid var(--gray-300); border-radius: 4px; background: var(--white); font-size: 14px; font-weight: 600; color: var(--navy-800); }
.pagination a:hover { border-color: var(--navy-800); }
.pagination .current { background: var(--navy-800); border-color: var(--navy-800); color: var(--white); }
.pagination .dots { border: 0; background: none; }

.empty { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 48px 24px; text-align: center; }
.empty h3 { margin-bottom: 8px; }
.empty p { color: var(--gray-500); margin-bottom: 18px; }

/* Product detail */
.product { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 30px; margin: 28px 0; }
.product-gallery { border: 1px solid var(--gray-100); border-radius: var(--radius); aspect-ratio: 1 / 1; display: grid; place-items: center; padding: 30px; background: var(--white); }
.product-gallery { overflow: hidden; position: relative; }
.product-gallery img { position: absolute; inset: 0; width: 100%; height: 100%; padding: 28px; object-fit: contain; }
.product-brand { display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.product h1 { font-size: 28px; font-weight: 800; margin-bottom: 14px; }
.product-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.tag { display: inline-flex; align-items: center; gap: 6px; background: var(--gray-100); color: var(--gray-700); font-size: 12px; font-weight: 600; padding: 5px 10px; border-radius: 3px; }
.tag:hover { background: var(--gray-200); }
.product-price { border-top: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100); padding: 18px 0; margin-bottom: 22px; }
.product-price .price { font-size: 32px; }
.product-price small { display: block; color: var(--gray-500); font-size: 13px; margin-top: 4px; }
.product-actions { display: grid; gap: 10px; margin-bottom: 22px; }
.product-points { display: grid; gap: 10px; }
.product-points li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--gray-700); }
.product-points .icon { color: var(--navy-700); width: 18px; height: 18px; }
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 28px; }
.panel { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); }
.panel-head { padding: 14px 20px; border-bottom: 1px solid var(--gray-100); font-weight: 700; color: var(--navy-800); }
.panel-body { padding: 16px 20px; }
.spec-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.spec-table th, .spec-table td { text-align: left; padding: 9px 0; border-bottom: 1px solid var(--gray-100); vertical-align: top; }
.spec-table th { width: 40%; color: var(--gray-500); font-weight: 600; }
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: 0; }
.fit-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.fit-item { display: flex; align-items: center; gap: 8px; border: 1px solid var(--gray-200); border-radius: 4px; padding: 8px 12px; font-size: 13px; font-weight: 600; color: var(--gray-700); }
.fit-item:hover { border-color: var(--navy-600); }
.fit-item img { width: 22px; height: 22px; }
.muted { color: var(--gray-500); font-size: 14px; }
.alt-list a { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--gray-100); font-size: 14px; }
.alt-list a:last-child { border-bottom: 0; }
.alt-list a:hover .alt-name { color: var(--accent); }
.alt-name { font-weight: 600; color: var(--navy-800); }
.alt-list .price { font-size: 15px; }

/* Static pages */
.content-box { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 32px; margin: 28px 0 56px; }
.content-box h2 { font-size: 20px; margin: 24px 0 10px; }
.content-box h2:first-child { margin-top: 0; }
.content-box p { color: var(--gray-700); margin-bottom: 12px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin: 28px 0 56px; }
.contact-list li { display: flex; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--gray-100); }
.contact-list li:last-child { border-bottom: 0; }
.contact-list .icon { color: var(--navy-700); margin-top: 2px; }
.contact-list strong { display: block; color: var(--navy-800); font-size: 14px; }
.contact-list span { color: var(--gray-700); font-size: 14px; }
.form-row { margin-bottom: 14px; }
.form-row label { display: block; font-size: 13px; font-weight: 600; color: var(--gray-700); margin-bottom: 6px; }
.form-row input, .form-row textarea { width: 100%; border: 1px solid var(--gray-300); border-radius: 4px; padding: 10px 12px; outline: none; background: var(--white); }
.form-row input:focus, .form-row textarea:focus { border-color: var(--navy-800); }
.form-row textarea { min-height: 120px; resize: vertical; }

/* Footer */
.footer { background: var(--navy-900); color: #aebccb; font-size: 14px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; padding: 52px 20px 40px; }
.footer-logo { display: inline-flex; background: var(--white); padding: 10px 14px; border-radius: var(--radius); margin-bottom: 16px; }
.footer-logo img { height: 40px; width: auto; }
.footer h4 { color: var(--white); font-size: 15px; margin-bottom: 16px; }
.footer-links a { display: block; padding: 4px 0; }
.footer-links a:hover { color: var(--white); }
.footer-contact li { display: flex; gap: 10px; padding: 5px 0; }
.footer-contact .icon { width: 17px; height: 17px; margin-top: 2px; color: #7f93a8; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); }
.footer-bottom .container { display: flex; justify-content: space-between; gap: 12px; padding-top: 18px; padding-bottom: 18px; font-size: 13px; flex-wrap: wrap; }

/* Floating WhatsApp */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 70; width: 56px; height: 56px; border-radius: 50%;
  background: var(--wa); display: grid; place-items: center; box-shadow: 0 6px 18px rgba(0,0,0,.2);
  transition: background-color .15s, transform .15s;
}
.wa-float:hover { background: var(--wa-dark); transform: translateY(-2px); }
.wa-float img { width: 30px; height: 30px; }

/* Loading / errors */
.page-loading { min-height: 50vh; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; color: var(--gray-500); }
.spinner { width: 38px; height: 38px; border: 3px solid var(--gray-200); border-top-color: var(--accent); border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.error-box { max-width: 640px; margin: 60px auto; background: var(--white); border: 1px solid var(--gray-200); border-left: 4px solid var(--accent); border-radius: var(--radius); padding: 24px 28px; }
.error-box h2 { margin-bottom: 8px; }
.error-box p { color: var(--gray-700); margin-bottom: 8px; }
.error-box code { background: var(--gray-100); padding: 2px 6px; border-radius: 3px; }
.noscript { text-align: center; padding: 20px; }

/* Mobile drawer backdrop */
.backdrop { display: none; position: fixed; inset: 0; background: rgba(11,31,51,.5); z-index: 80; }
.backdrop.open { display: block; }
html.drawer-open, body.drawer-open { overflow: hidden; height: 100%; }

/* Responsive */
@media (max-width: 1100px) {
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .vehicle-grid { grid-template-columns: repeat(5, 1fr); }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .listing .product-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-grid { grid-template-columns: repeat(4, 1fr); }
  .header-contact div { display: none; }
  .slide-art { width: 260px; height: 260px; right: 3%; }
}

@media (max-width: 900px) {
  .topbar-left .topbar-item:not(:first-child) { display: none; }
  .header-main { flex-wrap: wrap; height: auto; padding-top: 12px; padding-bottom: 12px; gap: 12px; }
  .search { order: 3; max-width: none; flex-basis: 100%; }
  .search select { display: none; }
  .menu-toggle { display: inline-flex; }
  .nav { display: none; }
  .nav.open {
    display: flex; flex-direction: column;
    position: fixed; top: 0; left: 0; width: min(320px, 88vw);
    height: 100%; height: 100dvh; max-height: 100dvh;
    z-index: 90; overflow: hidden; background: var(--navy-800);
  }
  .nav.open .nav-drawer {
    display: flex; flex-direction: column; height: 100%; min-height: 0; overflow: hidden;
  }
  .nav.open .nav-drawer-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 16px; color: var(--white); border-bottom: 1px solid rgba(255,255,255,.08); flex-shrink: 0;
  }
  .nav.open .container {
    display: block; flex: 1; min-height: 0; overflow-y: auto; overflow-x: hidden;
    -webkit-overflow-scrolling: touch; overscroll-behavior: contain; touch-action: pan-y;
    padding: 0 0 24px;
  }
  .nav.open .nav-list { flex-direction: column; display: block; }
  .nav.open .nav-link { height: auto; min-height: 48px; border-bottom: 1px solid rgba(255,255,255,.06); }
  .nav.open .dropdown { display: block; position: static; border: 0; box-shadow: none; background: var(--navy-900); padding: 0; min-width: 0; }
  .nav.open .dropdown a { color: #b8c5d3; padding: 10px 18px 10px 32px; }
  .nav.open .dropdown a:hover { background: transparent; color: var(--white); }
  .features .container { grid-template-columns: repeat(2, 1fr); }
  .feature:nth-child(2) { border-right: 0; }
  .slides { height: 440px; }
  .slide h1, .slide h2 { font-size: 30px; }
  .slide-art { display: none; }
  .slider-btn { display: none; }
  .listing { grid-template-columns: 1fr; }
  .sidebar {
    display: none; position: fixed; top: 0; left: 0; width: min(320px, 88vw);
    height: 100%; height: 100dvh; max-height: 100dvh; z-index: 90;
    background: var(--gray-50); overflow: hidden; padding: 0; flex-direction: column;
  }
  .sidebar.open {
    display: flex;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    touch-action: pan-y;
    padding-bottom: 28px;
  }
  .sidebar .nav-drawer-head {
    display: none;
  }
  .sidebar.open .nav-drawer-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 16px; background: var(--white); border-bottom: 1px solid var(--gray-200); flex-shrink: 0;
    position: sticky; top: 0; z-index: 2;
  }
  .sidebar.open .nav-drawer-head strong { color: var(--navy-800); }
  .sidebar.open .filter-box, .sidebar.open .filter-clear { margin-left: 16px; margin-right: 16px; }
  .filter-open { display: inline-flex; }
  .product { grid-template-columns: 1fr; padding: 20px; }
  .detail-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .cta-band .container { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  body { font-size: 14px; }
  .topbar-right { display: none; }
  .logo img { height: 40px; }
  .header-contact { display: none; }
  .cat-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .vehicle-grid { grid-template-columns: repeat(3, 1fr); }
  .product-grid, .listing .product-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
  .features .container { grid-template-columns: 1fr; }
  .feature { border-right: 0; border-bottom: 1px solid var(--gray-100); padding: 14px 4px; }
  .section { padding: 40px 0; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .slide h1, .slide h2 { font-size: 26px; }
  .slide p { font-size: 15px; }
  .card-body { padding: 12px; }
  .price { font-size: 16px; }
  .card-link { display: none; }
  .footer-top { grid-template-columns: 1fr; }
  .product h1 { font-size: 22px; }
  .toolbar { flex-wrap: wrap; }
}
