/* ══════════════════════════════════════
   PAGE WRAPPER
══════════════════════════════════════ */
.page {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ══════════════════════════════════════
   MAIN LAYOUT — sidebar + content
══════════════════════════════════════ */
.layout {
  display: grid;
  grid-template-columns: 268px 1fr;
  gap: 24px;
  padding: 24px 0 0;
}

/* ══════════════════════════════════════
   SIDEBAR
══════════════════════════════════════ */

.vin-mini {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--neutral-100);
}
.vin-mini-label {
  font-size: 11px;
  color: var(--neutral-600);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.vin-mini-input-wrap {
  display: flex;
  gap: 6px;
}
.vin-mini-input {
  flex: 1;
  height: 36px;
  padding: 0 10px;
  border: 1.5px solid var(--neutral-200);
  border-radius: var(--radius-md);
  font-size: 12px;
  color: var(--neutral-1000);
  font-family: monospace;
  letter-spacing: 1px;
  outline: none;
  transition: border-color 0.15s;
}
.vin-mini-input:focus {
  border-color: var(--primary-500);
}
.vin-mini-btn {
  height: 36px;
  padding: 0 12px;
  background: var(--neutral-1000);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  white-space: nowrap;
  transition: background 0.15s;
}
.vin-mini-btn:hover {
  background: var(--neutral-800);
}

/* Side categories */
.side-cats {
  list-style: none;
}
.side-cats li {
  padding: 10px 16px;
  border-bottom: 1px solid var(--neutral-100);
  font-size: 13px;
  cursor: pointer;
  transition: all 0.12s;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--neutral-800);
}
.side-cats li:last-child {
  border-bottom: none;
}
.side-cats li:hover {
  background: var(--neutral-50);
  color: var(--primary-500);
  padding-left: 20px;
}
.side-cats li .count {
  color: var(--neutral-400);
  font-size: 11px;
  font-weight: 500;
}

/* Side promo */
.side-promo {
  background: linear-gradient(
    135deg,
    var(--primary-600) 0%,
    var(--primary-500) 100%
  );
  border-radius: var(--radius-xl);
  padding: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.side-promo::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.15) 0%,
    transparent 65%
  );
}
.side-promo-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 8px;
}
.side-promo h4 {
  font-size: 18px;
  font-weight: 800;
  color: white;
  margin-bottom: 4px;
  letter-spacing: -0.3px;
}
.side-promo p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
}
.side-promo-code {
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px dashed rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-md);
  padding: 8px 12px;
  font-size: 16px;
  font-weight: 900;
  color: white;
  letter-spacing: 2px;
  margin-bottom: 12px;
  font-family: monospace;
}
.side-promo-btn {
  width: 100%;
  background: white;
  color: var(--primary-600);
  border: none;
  padding: 10px;
  border-radius: var(--radius-md);
  font-weight: 700;
  cursor: pointer;
  font-size: 13px;
  font-family: "Inter", sans-serif;
  transition: all 0.15s;
}
.side-promo-btn:hover {
  background: var(--neutral-100);
}

/* ══════════════════════════════════════
   CONTENT AREA
══════════════════════════════════════ */
.content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  min-width: 0;
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  background: var(--neutral-1000);
  border-radius: var(--radius-2xl);
  padding: 44px 44px 36px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(28, 100, 242, 0.35) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 25%;
  width: 220px;
  height: 220px;
  background: radial-gradient(
    circle,
    rgba(28, 100, 242, 0.1) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary-400);
  margin-bottom: 12px;
}
.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-500);
  animation: blink 2s infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
.hero h1 {
  font-size: 36px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.9px;
  line-height: 1.12;
  margin-bottom: 12px;
}
.hero h1 span {
  color: var(--primary-400);
}
.hero-sub {
  font-size: 14px;
  color: var(--neutral-400);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 24px;
}

/* hero search (inline, full-width) */
.hero-search {
  display: flex;
  gap: 0;
  background: rgba(255, 255, 255, 0.07);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 20px;
}
.hero-search-icon {
  display: flex;
  align-items: center;
  padding: 0 14px;
  color: var(--neutral-500, #6b7280);
}
.hero-search input {
  flex: 1;
  height: 52px;
  padding: 0 8px;
  background: transparent;
  border: none;
  outline: none;
  font-size: 14px;
  color: white;
  font-family: "Inter", sans-serif;
}
.hero-search input::placeholder {
  color: var(--neutral-500, #6b7280);
}
.hero-search-sep {
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
  align-self: stretch;
  margin: 10px 0;
}
.hero-search-cat {
  height: 52px;
  padding: 0 14px;
  background: transparent;
  border: none;
  outline: none;
  font-size: 13px;
  color: var(--neutral-400);
  font-family: "Inter", sans-serif;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239CA3AF' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  padding-right: 26px;
  min-width: 140px;
}
.hero-search-btn {
  height: 52px;
  padding: 0 24px;
  background: var(--primary-500);
  color: white;
  border: none;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  white-space: nowrap;
  transition: background 0.15s;
}
.hero-search-btn:hover {
  background: var(--primary-600);
}

/* hero trust + stats */
.hero-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.hero-trust {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--neutral-400);
}
.hero-trust-item svg {
  color: var(--success-500);
  flex-shrink: 0;
}
.hero-stats {
  display: flex;
  gap: 24px;
}
.hero-stat-v {
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.5px;
}
.hero-stat-l {
  font-size: 11px;
  color: var(--neutral-400);
}

/* ══════════════════════════════════════
   SECTION HEADER
══════════════════════════════════════ */
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 16px;
}
.section-head h2 {
  font-size: 20px;
  font-weight: 800;
  color: var(--neutral-1000);
  letter-spacing: -0.4px;
}
.section-head a {
  font-size: 13px;
  color: var(--primary-500);
  font-weight: 500;
}
.section-head a:hover {
  text-decoration: underline;
}

/* ══════════════════════════════════════
   CAR MAKES — SEO SECTION
══════════════════════════════════════ */
.makes-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
}
.make-card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 14px 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.15s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.make-card:hover {
  border-color: var(--primary-500);
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 0 0 2px var(--primary-500);
}
.make-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--neutral-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: background 0.15s;
}
.make-card:hover .make-icon {
  background: var(--primary-100);
}
.make-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--neutral-800);
  letter-spacing: 0.1px;
  transition: color 0.15s;
}
.make-card:hover .make-name {
  color: var(--primary-500);
}
.make-count {
  font-size: 10px;
  color: var(--neutral-400);
  transition: color 0.15s;
}
.make-card:hover .make-count {
  color: var(--neutral-400);
}

/* Makes second row (all) — collapsible */
.makes-all {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
  margin-top: 10px;
}
.makes-all .make-card {
  opacity: 0.85;
}
.makes-all .make-card:hover {
  opacity: 1;
}

/* ══════════════════════════════════════
   CATEGORIES
══════════════════════════════════════ */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.cat-card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-xl);
  padding: 20px 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
}
.cat-card:hover {
  border-color: var(--primary-200);
  box-shadow: 0 6px 18px rgba(28, 100, 242, 0.1);
  transform: translateY(-2px);
}
.cat-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--neutral-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  transition: background 0.15s;
}
.cat-card:hover .cat-icon {
  background: var(--primary-100);
}
.cat-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--neutral-1000);
  margin-bottom: 3px;
}
.cat-count {
  font-size: 12px;
  color: var(--neutral-400);
}

/* ══════════════════════════════════════
   PRODUCTS
══════════════════════════════════════ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.2s;
  position: relative;
}
.product-card:hover {
  border-color: var(--neutral-400);
  box-shadow: 0 6px 18px rgba(17, 25, 40, 0.1);
  transform: translateY(-2px);
}
.product-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  background: var(--primary-500);
  color: white;
  padding: 2px 7px;
  border-radius: var(--radius-full);
  z-index: 2;
}
.product-tag.sale {
  background: var(--error-500);
}
.product-tag.new {
  background: var(--success-500);
}
.product-img {
  height: 150px;
  background: var(--neutral-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
}
.product-body {
  padding: 14px;
}
.product-brand {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-500);
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.product-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--neutral-1000);
  margin-bottom: 4px;
  line-height: 1.4;
  min-height: 38px;
}
.product-sku {
  font-size: 11px;
  color: var(--neutral-400);
  margin-bottom: 6px;
}
.product-stock {
  font-size: 11px;
  color: var(--success-500);
  font-weight: 600;
  margin-bottom: 10px;
}
.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  border-top: 1px solid var(--neutral-100);
}
.product-price {
  display: flex;
  flex-direction: column;
}
.price-now {
  font-size: 18px;
  font-weight: 800;
  color: var(--neutral-1000);
}
.price-old {
  font-size: 11px;
  color: var(--neutral-400);
  text-decoration: line-through;
}
.add-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: var(--primary-500);
  color: white;
  border: none;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  flex-shrink: 0;
}
.add-btn:hover {
  background: var(--primary-600);
}

/* ══════════════════════════════════════
   TRUST BAND
══════════════════════════════════════ */
.trust-band {
  background: var(--neutral-100);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.trust-feature {
  text-align: center;
  padding: 8px;
}
.trust-feature-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 10px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 2px 8px rgba(17, 25, 40, 0.07);
}
.trust-feature h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--neutral-1000);
  margin-bottom: 4px;
}
.trust-feature p {
  font-size: 12px;
  color: var(--neutral-600);
  line-height: 1.5;
}

/* ══════════════════════════════════════
   PART BRANDS
══════════════════════════════════════ */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
}
.brand-card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 12px 8px;
  text-align: center;
  cursor: pointer;
  height: 68px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: all 0.15s;
}
.brand-card:hover {
  border-color: var(--neutral-400);
  box-shadow: 0 3px 10px rgba(17, 25, 40, 0.08);
  transform: translateY(-1px);
}
.brand-name {
  font-size: 12px;
  font-weight: 900;
  color: var(--neutral-800);
  letter-spacing: -0.2px;
}
.brand-count {
  font-size: 10px;
  color: var(--neutral-400);
}

/* ══════════════════════════════════════
   HELP BLOCK
══════════════════════════════════════ */
.help-block {
  background: var(--neutral-1000);
  border-radius: var(--radius-2xl);
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.help-block::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(
    circle,
    rgba(28, 100, 242, 0.25) 0%,
    transparent 65%
  );
}
.help-block-content {
  position: relative;
  z-index: 1;
}
.help-block-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary-400);
  margin-bottom: 10px;
}
.help-block-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 10px;
}
.help-block-desc {
  font-size: 13px;
  color: var(--neutral-400);
  line-height: 1.65;
  margin-bottom: 20px;
}
.help-block-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.btn-primary {
  height: 42px;
  padding: 0 18px;
  background: var(--primary-500);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  transition: background 0.15s;
}
.btn-primary:hover {
  background: var(--primary-600);
}
.btn-ghost-white {
  height: 42px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--neutral-200);
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  transition: all 0.15s;
}
.btn-ghost-white:hover {
  background: rgba(255, 255, 255, 0.14);
}
.help-methods {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.help-method {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.15s;
  cursor: pointer;
  text-decoration: none;
}
.help-method:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(28, 100, 242, 0.3);
}
.help-method-icon {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-md);
  background: rgba(28, 100, 242, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.help-method-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1px;
}
.help-method-desc {
  font-size: 11px;
  color: var(--neutral-400);
}

/* ══════════════════════════════════════
   BLOG
══════════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.15s;
}
.blog-card:hover {
  border-color: var(--neutral-400);
  box-shadow: 0 5px 16px rgba(17, 25, 40, 0.09);
  transform: translateY(-2px);
}
.blog-img {
  height: 150px;
  background: linear-gradient(
    135deg,
    var(--neutral-1000) 0%,
    var(--neutral-800) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}
.blog-body {
  padding: 16px;
}
.blog-date {
  font-size: 11px;
  color: var(--neutral-400);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.blog-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--neutral-1000);
  margin-bottom: 6px;
  line-height: 1.35;
}
.blog-excerpt {
  font-size: 12px;
  color: var(--neutral-600);
  margin-bottom: 10px;
  line-height: 1.5;
}
.blog-link {
  color: var(--primary-500);
  font-size: 12px;
  font-weight: 600;
}
.blog-link:hover {
  text-decoration: underline;
}

/* ══════════════════════════════════════
   REVIEWS
══════════════════════════════════════ */
.reviews-wrap {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-xl);
  padding: 20px;
}
.reviews-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--neutral-100);
}
.reviews-score-big {
  font-size: 40px;
  font-weight: 900;
  color: var(--neutral-1000);
  letter-spacing: -1px;
}
.reviews-stars-big {
  color: #f59e0b;
  font-size: 16px;
  margin-bottom: 3px;
}
.reviews-count {
  font-size: 12px;
  color: var(--neutral-400);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.review-card {
  padding: 14px;
  border: 1px solid var(--neutral-100);
  border-radius: var(--radius-lg);
  transition: box-shadow 0.15s;
}
.review-card:hover {
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
}
.review-top {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
}
.review-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--primary-100);
  color: var(--primary-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.review-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--neutral-1000);
}
.review-meta {
  font-size: 11px;
  color: var(--neutral-400);
}
.review-stars {
  color: #f59e0b;
  font-size: 11px;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}
.review-text {
  font-size: 12px;
  color: var(--neutral-600);
  line-height: 1.55;
}
.review-verified {
  margin-top: 6px;
  font-size: 10px;
  color: var(--success-500);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 3px;
}

/* ══════════════════════════════════════
   SEO TEXT
══════════════════════════════════════ */
.seo-block {
  background: var(--neutral-100);
  border-radius: var(--radius-xl);
  padding: 28px 32px;
}
.seo-block h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--neutral-1000);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.seo-block h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--neutral-900);
  margin: 16px 0 6px;
}
.seo-block p {
  font-size: 13px;
  color: var(--neutral-800);
  line-height: 1.75;
  margin-bottom: 10px;
}
.seo-block ul {
  padding-left: 20px;
  margin-bottom: 10px;
}
.seo-block ul li {
  font-size: 13px;
  color: var(--neutral-800);
  margin-bottom: 4px;
  line-height: 1.6;
}
.seo-expand {
  font-size: 13px;
  color: var(--primary-500);
  cursor: pointer;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
}

/* ══════════════════════════════════════
   NEWSLETTER
══════════════════════════════════════ */
.newsletter {
  background: var(--primary-500);
  border-radius: var(--radius-2xl);
  padding: 36px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: "";
  position: absolute;
  top: -40px;
  right: 80px;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.15) 0%,
    transparent 65%
  );
}
.newsletter-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 6px;
}
.newsletter-title {
  font-size: 22px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.4px;
  margin-bottom: 4px;
}
.newsletter-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}
.newsletter-form {
  display: flex;
  gap: 8px;
  position: relative;
  z-index: 1;
}
.newsletter-input {
  height: 46px;
  padding: 0 14px;
  width: 280px;
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-md);
  font-size: 14px;
  color: white;
  outline: none;
  font-family: "Inter", sans-serif;
  transition: all 0.15s;
}
.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.newsletter-input:focus {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}
.newsletter-btn {
  height: 46px;
  padding: 0 20px;
  background: white;
  color: var(--primary-600);
  border: none;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  white-space: nowrap;
}
.newsletter-btn:hover {
  background: var(--neutral-100);
}

/* ══════════════════════════════════════
   FOOTER PLACEHOLDER
══════════════════════════════════════ */
.footer-placeholder {
  background: var(--neutral-1000);
  border-top: 2px dashed rgba(255, 255, 255, 0.1);
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--neutral-400);
  font-size: 12px;
}
.footer-placeholder a {
  color: var(--primary-400);
}
.footer-placeholder a:hover {
  text-decoration: underline;
}

/* MOBILE BOTTOM NAV */
.mobile-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--neutral-200);
  padding: 8px 0 12px;
  z-index: 100;
}
.mobile-nav-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 5px;
  color: var(--neutral-400);
  text-decoration: none;
}
.mobile-nav-item.active {
  color: var(--primary-500);
}
.mobile-nav-icon {
  font-size: 20px;
}
.mobile-nav-label {
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
/* ══════════════════════════════════════
   TOPBAR DROPDOWNS
══════════════════════════════════════ */
.tb-vat-wrap,
.tb-country-wrap,
.tb-lang-wrap {
  position: relative;
  display: inline-block;
}
.tb-vat-btn,
.tb-country-btn,
.tb-lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  font-family: "Inter", sans-serif;
  padding: 2px 6px;
  border-radius: 4px;
  transition: background 0.12s;
}
.tb-vat-btn svg,
.tb-country-btn svg,
.tb-lang-btn svg {
  pointer-events: none;
}
.tb-vat-btn:hover,
.tb-country-btn:hover,
.tb-lang-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}
.tb-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--neutral-900);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  min-width: 160px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  z-index: 500;
  display: none;
  flex-direction: column;
  overflow: hidden;
}
.tb-dropdown.open {
  display: flex;
}
.tb-dd-item {
  padding: 9px 14px;
  font-size: 12px;
  font-family: "Inter", sans-serif;
  color: rgba(255, 255, 255, 0.8);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.1s;
}
.tb-dd-item:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}
.tb-dd-item.active {
  color: var(--primary-400);
  font-weight: 600;
}

/* ══════════════════════════════════════
   SITE HEADER
══════════════════════════════════════ */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--neutral-200);
  position: sticky;
  top: 0;
  z-index: 400;
  box-shadow: 0 1px 8px rgba(17, 25, 40, 0.06);
}
.hdr-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.hdr-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  flex-shrink: 0;
}
.hdr-logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--primary-500);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hdr-logo-mark svg {
  width: 16px;
  height: 16px;
}
.hdr-logo-name {
  font-size: 18px;
  font-weight: 900;
  color: var(--neutral-1000);
  letter-spacing: -0.4px;
}

.hdr-search {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0;
  border: 2px solid var(--neutral-1000);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.hdr-search-inner {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
}
.hdr-search-ico {
  position: absolute;
  left: 12px;
  color: var(--neutral-400);
  pointer-events: none;
}
.hdr-search-input {
  flex: 1;
  height: 44px;
  padding: 0 36px 0 40px;
  background: transparent;
  border: none;
  outline: none;
  font-size: 14px;
  color: var(--neutral-1000);
  font-family: "Inter", sans-serif;
}
.hdr-search-input::placeholder {
  color: var(--neutral-400);
}
.hdr-search-clear {
  position: absolute;
  right: 8px;
  background: none;
  border: none;
  color: var(--neutral-400);
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}
.hdr-search-btn {
  height: 44px;
  padding: 0 22px;
  background: var(--neutral-1000);
  color: white;
  border: none;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  white-space: nowrap;
  transition: background 0.15s;
  flex-shrink: 0;
}
.hdr-search-btn:hover {
  background: var(--neutral-800);
}

.hdr-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.hdr-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 8px 12px;
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--neutral-600);
  transition: all 0.12s;
  position: relative;
  cursor: pointer;
}
.hdr-action-btn:hover {
  background: var(--neutral-100);
  color: var(--neutral-1000);
}
.hdr-action-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.hdr-action-badge {
  position: absolute;
  top: 4px;
  right: 6px;
  background: var(--primary-500);
  color: white;
  font-size: 9px;
  font-weight: 800;
  border-radius: 99px;
  min-width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
}
.hdr-cart {
  color: var(--primary-500);
}
.hdr-cart:hover {
  background: var(--primary-100);
}

/* Main nav strip */
.hdr-nav {
  background: var(--neutral-1000);
}
.hdr-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 0;
  overflow-x: auto;
}
.hdr-nav-link {
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  transition: all 0.15s;
}
.hdr-nav-link:hover,
.hdr-nav-link.active {
  color: white;
  border-bottom-color: white;
}
.hdr-nav-deals {
  color: #fb923c;
  font-weight: 700;
}
.hdr-nav-deals:hover {
  color: #fdba74;
  border-bottom-color: #fb923c;
}

/* ══════════════════════════════════════
   SIDE CATS — link style
══════════════════════════════════════ */
.side-cats li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-decoration: none;
  color: inherit;
}
.side-all-cats-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 8px;
  background: var(--neutral-100);
  border-radius: var(--radius-md);
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-500);
  text-decoration: none;
  transition: background 0.12s;
}
.side-all-cats-btn:hover {
  background: var(--primary-100);
}

/* ══════════════════════════════════════
   PRODUCT FOOTER — qty + cart icon + VAT
══════════════════════════════════════ */
.price-vat {
  font-size: 10px;
  color: var(--neutral-400);
  margin-top: 1px;
}
.product-cart-row {
  display: flex;
  align-items: center;
  gap: 6px;
}
.qty-ctrl {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--neutral-200);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.qty-b {
  width: 26px;
  height: 32px;
  background: var(--neutral-100);
  border: none;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  color: var(--neutral-800);
  font-family: "Inter", sans-serif;
  transition: background 0.1s;
}
.qty-b:hover {
  background: var(--neutral-200);
}
.qty-v {
  width: 26px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--neutral-1000);
}

/* ══════════════════════════════════════
   BRAND LOGO placeholder
══════════════════════════════════════ */
.brand-logo-img {
  width: 40px;
  height: 28px;
  border-radius: 4px;
  background: var(--neutral-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  color: var(--neutral-800);
  letter-spacing: -0.5px;
}
.brand-card {
  height: auto;
  padding: 10px 8px;
}

/* ══════════════════════════════════════
   MAKE LOGO placeholder
══════════════════════════════════════ */
.make-logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   FULL-WIDTH AFTER SIDEBAR (rule #11)
   Sections after sidebar end stretch full page width
══════════════════════════════════════ */
.full-width-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 0;
}
/* Uniform vertical rhythm — every direct block child gets top margin */
.full-width-section > section,
.full-width-section > div.trust-band,
.full-width-section > div.help-block,
.full-width-section > div.newsletter,
.full-width-section > section.seo-block,
.full-width-section > div.reviews-wrap,
.full-width-section > #reviews,
.full-width-section > #blog,
.full-width-section > #brands {
  margin-bottom: 52px;
}
/* At full width, products go 4 columns, brands fit better */
.full-width-section .products-grid {
  grid-template-columns: repeat(4, 1fr);
}
.full-width-section .section-head h2 {
  font-size: 22px;
}

/* ─── TABLET ≤1024px ─── */

/* ─── MOBILE ≤768px ─── */

/* ─── SMALL MOBILE ≤480px ─── */

/* ═══ PAGE ═══ */

:root {
  --p5: #1c64f2;
  --p6: #1a56db;
  --p1: #ebf5ff;
  --p2: #c3ddfd;
  --n10: #111928;
  --n9: #1f2a37;
  --n8: #374151;
  --n6: #6b7280;
  --n4: #9ca3af;
  --n2: #d1d5db;
  --n1: #f3f4f6;
  --n0: #f9fafb;
  --w: #fff;
  --s5: #057a55;
  --rm: 8px;
  --rxl: 16px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  background: var(--w);
  color: var(--n10);
  line-height: 1.5;
}
a {
  color: inherit;
  text-decoration: none;
}

/* TOPBAR */
.topbar {
  background: var(--n9);
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
}
.topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 7px 24px;
  display: flex;
  justify-content: space-between;
}
.tb-links {
  display: flex;
  gap: 20px;
}
.tb-links a:hover {
  color: #fff;
}

/* HEADER */
.site-header {
  background: var(--w);
  border-bottom: 1px solid var(--n2);
  position: sticky;
  top: 0;
  z-index: 400;
  box-shadow: 0 1px 8px rgba(17, 25, 40, 0.06);
}
.hdr {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
}
.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--p5);
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-mark svg {
  width: 16px;
  height: 16px;
}
.logo-name {
  font-size: 18px;
  font-weight: 900;
  color: var(--n10);
  letter-spacing: -0.4px;
}
.search-bar {
  flex: 1;
  display: flex;
  border: 2px solid var(--n10);
  border-radius: var(--rm);
  overflow: hidden;
}
.search-inner {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
}
.search-ico {
  position: absolute;
  left: 12px;
  color: var(--n4);
  pointer-events: none;
}
.search-input {
  flex: 1;
  height: 44px;
  padding: 0 12px 0 40px;
  background: transparent;
  border: none;
  outline: none;
  font-size: 14px;
  font-family: "Inter", sans-serif;
}
.search-input::placeholder {
  color: var(--n4);
}
.search-btn {
  height: 44px;
  padding: 0 22px;
  background: var(--n10);
  color: #fff;
  border: none;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: "Inter", sans-serif;
}
.search-btn:hover {
  background: var(--n8);
}
.hdr-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.hdr-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 8px 12px;
  border-radius: var(--rm);
  color: var(--n6);
  transition: all 0.12s;
  position: relative;
  text-decoration: none;
}
.hdr-btn:hover {
  background: var(--n1);
  color: var(--n10);
}
.hdr-btn-lbl {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.hdr-badge {
  position: absolute;
  top: 4px;
  right: 6px;
  background: var(--p5);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  border-radius: 99px;
  min-width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
}
.hdr-nav {
  background: var(--n10);
}
.hdr-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  overflow-x: auto;
}
.nav-link {
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  transition: all 0.15s;
}
.nav-link:hover,
.nav-link.act {
  color: #fff;
  border-bottom-color: #fff;
}
.nav-deals {
  color: #fb923c;
  font-weight: 700;
}

/* PAGE */
.page {
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px 24px 80px;
}

/* BREADCRUMB */
.bc {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--n4);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.bc a {
  color: var(--n6);
}
.bc a:hover {
  color: var(--p5);
}
.bc-sep {
  color: var(--n2);
}

/* H1 */
h1.gen-h1 {
  font-size: 32px;
  font-weight: 900;
  color: var(--n10);
  letter-spacing: -0.7px;
  margin-bottom: 14px;
  line-height: 1.15;
}

/* DESCRIPTION with show more */
.gen-desc {
  font-size: 15px;
  color: var(--n8);
  line-height: 1.75;
  margin-bottom: 6px;
  max-width: 820px;
}
.gen-desc-full {
  display: none;
}
.gen-desc-full.open {
  display: inline;
}
.show-more-btn {
  font-size: 14px;
  font-weight: 700;
  color: var(--n10);
  cursor: pointer;
  background: none;
  border: none;
  font-family: "Inter", sans-serif;
  padding: 0;
  margin-bottom: 24px;
  display: block;
}
.show-more-btn:hover {
  color: var(--p5);
}

/* DIVIDER */
.divider {
  border: none;
  border-top: 2px solid var(--n10);
  margin: 24px 0;
}

/* H2 — Select your vehicle */
h2.select-h2 {
  font-size: 32px;
  font-weight: 900;
  color: var(--n10);
  letter-spacing: -0.6px;
  margin-bottom: 28px;
}

/* FUEL GROUP */
.fuel-group {
  margin-bottom: 32px;
}
h3.fuel-h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--n10);
  letter-spacing: -0.4px;
  margin-bottom: 0;
}

/* ENGINE ROW */
.engine-list {
  display: flex;
  flex-direction: column;
}
.engine-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-top: 1px solid var(--n2);
  gap: 16px;
  text-decoration: none;
  transition: background 0.12s;
  margin: 0 -8px;
  padding-left: 8px;
  padding-right: 8px;
  border-radius: var(--rm);
}
.engine-row:hover {
  background: var(--n0);
}
.engine-row:hover .engine-cta {
  color: var(--p5);
}
.engine-row:hover .engine-arrow {
  color: var(--p5);
}
.engine-info {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.drive-badge {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 99px;
  white-space: nowrap;
  flex-shrink: 0;
}
.drive-badge.rwd {
  background: #f3f4f6;
  color: #374151;
  border: 1px solid #d1d5db;
}
.drive-badge.awd {
  background: #ebf5ff;
  color: #1c64f2;
  border: 1px solid #c3ddfd;
}
.engine-name {
  font-size: 14px;
  color: var(--n8);
  line-height: 1.4;
}
.engine-cta {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--n6);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.12s;
}
.engine-arrow {
  font-size: 16px;
  color: var(--n4);
  transition: color 0.12s;
}

/* SEO text */
.seo-block {
  border-top: 1px solid var(--n2);
  margin-top: 40px;
  padding-top: 32px;
}
.seo-block h2 {
  font-size: 18px;
  font-weight: 800;
  color: var(--n10);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.seo-block h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--n10);
  margin: 14px 0 6px;
}
.seo-block p {
  font-size: 14px;
  color: var(--n6);
  line-height: 1.75;
  margin-bottom: 8px;
}

/* FOOTER */
.footer-links {
  display: flex;
  gap: 20px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.45);
}
.footer-links a:hover {
  color: #fff;
}

/* SIDEBAR — same as homepage */
.page-with-sidebar {
  display: grid;
  grid-template-columns: 268px 1fr;
  gap: 28px;
  align-items: start;
}
.vs-sidebar {
  position: sticky;
  top: 90px;
}
.side-card {
  background: var(--w);
  border: 1px solid var(--n2);
  border-radius: var(--rxl);
  overflow: hidden;
  margin-bottom: 12px;
}
.side-card-head {
  background: var(--n10);
  color: white;
  padding: 13px 16px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.side-card-body {
  padding: 16px;
}
.side-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.side-form label {
  font-size: 11px;
  color: var(--n6);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.side-form select {
  width: 100%;
  height: 44px;
  padding: 0 30px 0 12px;
  border: 1.5px solid var(--n2);
  border-radius: var(--rm);
  font-size: 14px;
  color: var(--n10);
  background: var(--w)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E")
    no-repeat right 10px center;
  cursor: pointer;
  outline: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: "Inter", sans-serif;
  transition: border-color 0.15s;
}
.side-form select:focus,
.side-form select:hover {
  border-color: var(--p5);
  outline: none;
  box-shadow: none;
}
.side-form select:disabled {
  background-color: var(--n1);
  color: var(--n4);
  cursor: not-allowed;
}
.side-form-btn {
  width: 100%;
  height: 44px;
  background: var(--p5);
  color: white;
  border: none;
  border-radius: var(--rm);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
  transition:
    background 0.15s,
    color 0.15s;
}
.side-form-btn:hover {
  background: var(--p6);
  color: white;
}
.side-form-btn:hover svg {
  color: white;
}
.side-form-btn svg {
  color: white;
  flex-shrink: 0;
}
.side-form-btn:disabled {
  background: var(--n2);
  color: var(--n4);
  cursor: not-allowed;
}

/* ─── TABLET ≤1024px ─── */
@media (max-width: 1024px) {
  .page-with-sidebar {
    grid-template-columns: 220px 1fr;
    gap: 20px;
  }
  .select-h2 {
    font-size: 24px;
  }
  .gen-h1 {
    font-size: 26px;
  }
}

/* ─── MOBILE ≤768px ─── */
@media (max-width: 768px) {
  .topbar-inner {
    flex-direction: column;
    gap: 4px;
    align-items: center;
    padding: 6px 14px;
  }
  .topbar-links {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .hdr-inner {
    flex-wrap: wrap;
    padding: 10px 14px;
    gap: 8px;
  }
  .hdr-search {
    order: 3;
    width: 100%;
    flex: none;
  }
  .hdr-actions {
    margin-left: auto;
  }
  .hdr-action-label {
    display: none;
  }
  .hdr-nav-inner {
    padding: 0 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .hdr-nav-inner::-webkit-scrollbar {
    display: none;
  }

  .page {
    padding: 14px 14px 80px;
  }
  .page-with-sidebar {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .vs-sidebar {
    position: static;
    order: -1;
  }

  .gen-h1 {
    font-size: 20px;
    letter-spacing: -0.3px;
    margin-bottom: 10px;
  }
  .select-h2 {
    font-size: 20px;
    letter-spacing: -0.3px;
    margin-bottom: 18px;
  }
  .fuel-h3 {
    font-size: 18px;
  }
  .gen-desc {
    font-size: 14px;
  }

  .engine-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 14px 0;
  }
  .engine-cta {
    align-self: flex-end;
  }
  .engine-name {
    font-size: 13px;
  }

  .footer-inner {
    grid-template-columns: 1fr !important;
    gap: 24px;
    padding: 0 16px 32px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
  input,
  select,
  textarea {
    font-size: 16px !important;
  }
}

/* ─── SMALL MOBILE ≤480px ─── */
@media (max-width: 480px) {
  .hdr-inner {
    padding: 8px 12px;
  }
  .page {
    padding: 12px 12px 80px;
  }
  .gen-h1 {
    font-size: 18px;
  }
  .engine-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

/* Spareza vehicle model page */
.vmp-page {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px 24px 80px;
  color: #24324a;
}
.vmp-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  color: #7a8799;
  font-size: 13px;
}
.vmp-breadcrumb a {
  color: #7a8799;
  text-decoration: none;
}
.vmp-breadcrumb a:hover {
  color: #2964e8;
}
.vmp-breadcrumb strong {
  color: #44526a;
}
.vmp-hero {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr) 220px;
  align-items: center;
  gap: 28px;
  padding: 30px 34px;
  border: 1px solid #cddcf5;
  border-radius: 24px;
  background: linear-gradient(135deg, #fff 0%, #f4f7fd 68%, #eaf2ff 100%);
}
.vmp-logo {
  position: relative;
  display: grid;
  place-items: center;
  width: 140px;
  height: 104px;
  border: 1px solid #d8e1ed;
  border-radius: 18px;
  background: #fff;
  color: #a1acbc;
  font-size: 29px;
  font-weight: 850;
}
.vmp-logo img {
  position: absolute;
  inset: 17px;
  width: calc(100% - 34px);
  height: calc(100% - 34px);
  object-fit: contain;
  background: #fff;
}
.vmp-kicker,
.vmp-section-kicker {
  color: #2964e8;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.vmp-hero h1 {
  margin: 5px 0 0;
  color: #111827;
  font-size: 39px;
  line-height: 1.08;
  letter-spacing: -1.2px;
}
.vmp-hero-copy > p {
  margin: 10px 0 0;
  color: #59677c;
  font-size: 15px;
  line-height: 1.55;
}
.vmp-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 15px;
  color: #087b59;
  font-size: 12px;
  font-weight: 650;
}
.vmp-change {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 17px 18px;
  border: 1px solid #d7e0eb;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.88);
  color: #67758a;
  text-decoration: none;
}
.vmp-change span {
  font-size: 11px;
}
.vmp-change strong {
  color: #2964e8;
  font-size: 13px;
  line-height: 1.35;
}
.vmp-change:hover {
  border-color: #9dbaf7;
  background: #fff;
}
.vmp-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin: 42px 0 18px;
}
.vmp-intro h2,
.vmp-section-head h2 {
  margin: 5px 0 0;
  color: #172033;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.55px;
}
.vmp-intro > p {
  max-width: 570px;
  margin: 0;
  color: #66758a;
  font-size: 14px;
  line-height: 1.6;
  text-align: right;
}
.vmp-fuels {
  display: grid;
  gap: 18px;
}
.vmp-fuel {
  overflow: hidden;
  border: 1px solid #d8e1ed;
  border-radius: 19px;
  background: #fff;
  box-shadow: 0 7px 22px rgba(31, 52, 84, 0.04);
}
.vmp-fuel-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 17px 20px;
  border-bottom: 1px solid #e2e8f0;
  background: #f7f9fc;
}
.vmp-fuel-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #eaf1ff;
  color: #2964e8;
}
.vmp-fuel-head h3 {
  margin: 0;
  color: #172033;
  font-size: 18px;
}
.vmp-fuel-head small {
  display: block;
  margin-top: 3px;
  color: #7b8798;
  font-size: 11px;
}
.vmp-engine-list {
  display: grid;
}
.vmp-engine {
  display: grid;
  grid-template-columns:
    minmax(190px, 1.3fr) minmax(150px, 0.8fr) minmax(105px, 0.55fr)
    minmax(140px, 0.7fr) 105px;
  align-items: center;
  gap: 18px;
  min-height: 76px;
  padding: 12px 20px;
  border-bottom: 1px solid #e7ecf3;
  color: #314057;
  text-decoration: none;
  transition: background 0.15s;
}
.vmp-engine:last-child {
  border-bottom: 0;
}
.vmp-engine:hover {
  background: #f7faff;
}
.vmp-engine-main,
.vmp-engine-spec {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 4px;
}
.vmp-engine-main strong {
  overflow: hidden;
  color: #172033;
  font-size: 15px;
  text-overflow: ellipsis;
}
.vmp-engine-main small,
.vmp-engine-spec small {
  color: #8591a2;
  font-size: 11px;
}
.vmp-engine-spec strong {
  overflow: hidden;
  color: #48566b;
  font-size: 13px;
  text-overflow: ellipsis;
}
.vmp-engine-go {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  color: #2964e8;
  font-size: 12px;
  font-weight: 750;
  white-space: nowrap;
}
.vmp-engine-go b {
  font-size: 17px;
}
.vmp-empty {
  padding: 34px;
  border: 1px dashed #cbd6e3;
  border-radius: 16px;
  text-align: center;
}
.vmp-empty strong,
.vmp-empty span {
  display: block;
}
.vmp-empty span {
  margin-top: 6px;
  color: #718096;
}
.vmp-categories,
.vmp-seo {
  margin-top: 42px;
  padding: 29px 31px;
  border: 1px solid #d8e1ed;
  border-radius: 21px;
  background: #fff;
}
.vmp-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}
.vmp-section-head a {
  color: #2964e8;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
.vmp-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.vmp-category-grid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 58px;
  padding: 10px 15px;
  border: 1px solid #dce4ee;
  border-radius: 13px;
  background: #fafbfd;
  color: #314057;
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
}
.vmp-category-grid a:hover {
  border-color: #a9c0f5;
  background: #f3f7ff;
  color: #2964e8;
}
.vmp-category-grid b {
  color: #2964e8;
}
.vmp-category-note {
  margin: 15px 0 0;
  color: #7b8798;
  font-size: 12px;
}
.vmp-seo {
  background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
}
.vmp-seo > h2 {
  margin: 0;
  color: #172033;
  font-size: 24px;
}
.vmp-seo > p {
  max-width: 1050px;
  margin: 10px 0 22px;
  color: #637187;
  font-size: 14px;
  line-height: 1.75;
}
.vmp-seo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.vmp-seo-grid > div {
  padding-top: 18px;
  border-top: 1px solid #dce4ee;
}
.vmp-seo-grid h3 {
  margin: 0 0 7px;
  color: #24324a;
  font-size: 15px;
}
.vmp-seo-grid p {
  margin: 0;
  color: #718096;
  font-size: 13px;
  line-height: 1.65;
}
@media (max-width: 1024px) {
  .vmp-page {
    padding-right: 20px;
    padding-left: 20px;
  }
  .vmp-hero {
    grid-template-columns: 110px minmax(0, 1fr);
    padding: 25px;
  }
  .vmp-logo {
    width: 110px;
    height: 88px;
  }
  .vmp-change {
    grid-column: 1/-1;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .vmp-engine {
    grid-template-columns:
      minmax(180px, 1.2fr) minmax(145px, 0.8fr) minmax(130px, 0.65fr)
      95px;
  }
  .vmp-engine-spec:nth-of-type(3) {
    display: none;
  }
  .vmp-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 720px) {
  .vmp-page {
    padding: 14px 12px 54px;
  }
  .vmp-breadcrumb {
    margin-bottom: 14px;
  }
  .vmp-hero {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 15px;
    padding: 19px 16px;
    border-radius: 18px;
  }
  .vmp-logo {
    width: 72px;
    height: 64px;
    border-radius: 12px;
  }
  .vmp-logo img {
    inset: 9px;
    width: calc(100% - 18px);
    height: calc(100% - 18px);
  }
  .vmp-kicker {
    font-size: 9px;
  }
  .vmp-hero h1 {
    font-size: 25px;
    letter-spacing: -0.6px;
  }
  .vmp-hero-copy > p {
    grid-column: 1/-1;
    font-size: 13px;
  }
  .vmp-hero-copy {
    display: contents;
  }
  .vmp-trust {
    grid-column: 1/-1;
  }
  .vmp-trust span:nth-child(n + 3) {
    display: none;
  }
  .vmp-change {
    padding: 13px 14px;
  }
  .vmp-intro {
    display: block;
    margin-top: 32px;
  }
  .vmp-intro h2,
  .vmp-section-head h2 {
    font-size: 23px;
  }
  .vmp-intro > p {
    margin-top: 9px;
    text-align: left;
  }
  .vmp-engine {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 9px 12px;
    padding: 14px 16px;
  }
  .vmp-engine-main {
    grid-column: 1;
  }
  .vmp-engine-spec {
    grid-column: 1;
  }
  .vmp-engine-spec:nth-of-type(n + 3) {
    display: none;
  }
  .vmp-engine-go {
    grid-column: 2;
    grid-row: 1/3;
    align-self: center;
  }
  .vmp-categories,
  .vmp-seo {
    margin-top: 32px;
    padding: 22px 17px;
    border-radius: 17px;
  }
  .vmp-section-head {
    display: block;
  }
  .vmp-section-head a {
    display: inline-block;
    margin-top: 10px;
  }
  .vmp-category-grid {
    grid-template-columns: 1fr;
  }
  .vmp-seo-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 390px) {
  .vmp-engine-go {
    font-size: 0;
  }
  .vmp-engine-go b {
    font-size: 20px;
  }
  .vmp-change span {
    display: none;
  }
  .vmp-hero h1 {
    font-size: 22px;
  }
}

/* Keep the vehicle model hero readable on phones. The copy must remain one
   grid item; display:contents placed the H1 into the 72px logo column. */
@media (max-width: 720px) {
  .vmp-hero {
    align-items: start;
  }
  .vmp-logo {
    grid-column: 1;
    grid-row: 1;
  }
  .vmp-hero-copy {
    display: block;
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
  }
  .vmp-hero-copy > p {
    grid-column: auto;
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.5;
  }
  .vmp-hero h1 {
    max-width: none;
    margin-top: 6px;
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: none;
  }
  .vmp-trust {
    grid-column: auto;
    margin-top: 12px;
  }
  .vmp-change {
    grid-column: 1/-1;
  }
}
/* Distinct model-level SEO facts */
.vmp-model-guide {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.7fr);
  gap: 28px;
}
.vmp-model-guide-head p,
.vmp-model-note {
  color: #637187;
  font-size: 14px;
  line-height: 1.7;
}
.vmp-model-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0;
  border: 1px solid #dce5f0;
  border-radius: 16px;
  background: #fff;
}
.vmp-model-facts div {
  padding: 13px 15px;
  border-bottom: 1px solid #edf1f5;
}
.vmp-model-facts dt {
  color: #8290a3;
  font-size: 10px;
}
.vmp-model-facts dd {
  margin: 4px 0 0;
  color: #334155;
  font-size: 12px;
  font-weight: 700;
}
.vmp-model-note {
  grid-column: 1/-1;
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid #dce4ee;
}
@media (max-width: 720px) {
  .vmp-model-guide {
    grid-template-columns: 1fr;
  }
  .vmp-model-facts {
    grid-template-columns: 1fr 1fr;
  }
}

/* Use the shared storefront typography for the vehicle-version table. */
.vmp-engine,
.vmp-engine * {
  font-family: inherit;
}
.vmp-intro > p {
  font-family: inherit;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
}
.vmp-engine-main strong {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}
.vmp-engine-main small,
.vmp-engine-spec small {
  font-size: 11px;
  font-weight: 400;
  line-height: 1.4;
}
.vmp-engine-spec strong {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}
.vmp-engine-go {
  font-size: 13px;
  font-weight: 700;
}

/* Model facts follow the regular storefront text scale. */
.vmp-model-facts dt {
  font-family: inherit;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
}
.vmp-model-facts dd {
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

/* Match the real homepage content container on wide and narrow screens. */
.vmp-page {
  box-sizing: border-box;
  width: min(1440px, calc(100% - 48px));
  max-width: 1440px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 0;
  padding-left: 0;
}
@media (max-width: 1180px) {
  .vmp-page {
    width: min(1440px, calc(100% - 32px));
    padding-right: 0;
    padding-left: 0;
  }
}
@media (max-width: 700px) {
  .vmp-page {
    width: calc(100% - 24px);
    padding-right: 0;
    padding-left: 0;
  }
}
