/* ══════════════════════════════════════
   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
══════════════════════════════════════ */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.side-card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.side-card-head {
  background: var(--neutral-1000);
  color: var(--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;
}

/* Vehicle selector — 3 fields */
/*.side-form { display: flex; flex-direction: column; gap: 10px; }*/
/*.side-form label {*/
/*    font-size: 11px; color: var(--neutral-600); font-weight: 700;*/
/*    text-transform: uppercase; letter-spacing: 0.5px;*/
/*}*/
/*.side-form select {*/
/*    width: 100%; height: 44px; padding: 0 12px;*/
/*    border: 1.5px solid var(--neutral-200); border-radius: var(--radius-md);*/
/*    font-size: 14px; color: var(--neutral-1000);*/
/*    background: var(--white); cursor: pointer; outline: none;*/
/*    font-family: 'Inter', sans-serif;*/
/*    appearance: none;*/
/*    background-image: 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");*/
/*    background-repeat: no-repeat; background-position: right 10px center;*/
/*    padding-right: 30px;*/
/*    transition: border-color .15s;*/
/*}*/
/*.side-form select:focus, .side-form select:hover { border-color: var(--primary-500); }*/
/*.side-form select:disabled { background: var(--neutral-100); color: var(--neutral-400); cursor: not-allowed; }*/
/*.side-form-btn {*/
/*    width: 100%; height: 44px;*/
/*    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;*/
/*    text-transform: uppercase; letter-spacing: 0.5px;*/
/*    display: flex; align-items: center; justify-content: center; gap: 8px;*/
/*    margin-top: 4px; transition: background .15s;*/
/*}*/
/*.side-form-btn:hover { background: var(--primary-600); }*/

.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;
  --p1: #ebf5ff;
  --n10: #111928;
  --n8: #374151;
  --n6: #6b7280;
  --n4: #9ca3af;
  --n2: #d1d5db;
  --n1: #f3f4f6;
  --n9: #1f2a37;
  --n0: #f9fafb;
  --w: #fff;
  --rm: 8px;
  --rxl: 16px;
  --rf: 9999px;
}
body {
  font-family: "Inter", sans-serif;
  background: var(--w);
  color: var(--n10);
  line-height: 1.5;
}

/* 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);
}

/* PAGE TITLE ROW */
.title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
h1.page-h1 {
  font-size: 30px;
  font-weight: 900;
  color: var(--n10);
  letter-spacing: -0.6px;
  margin-bottom: 3px;
}
.models-heading {
  font-size: 22px;
  font-weight: 800;
  color: var(--n10);
  letter-spacing: -0.4px;
  margin-bottom: 16px;
}
.model-search-wrap {
  position: relative;
}
.model-search-wrap svg {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--n4);
  pointer-events: none;
}
.model-search {
  height: 40px;
  padding: 0 14px 0 38px;
  border: 1.5px solid var(--n2);
  border-radius: var(--rm);
  font-size: 14px;
  font-family: "Inter", sans-serif;
  outline: none;
  width: 260px;
  transition: border-color 0.15s;
}
.model-search:focus {
  border-color: var(--p5);
}

/* MODELS LAYOUT — 2 columns, no borders between cells */
.models-wrap {
  /*display:grid;*/
  /*grid-template-columns:1fr 1fr;*/
  /*gap:0;*/
  /*border-top:1px solid var(--n2);*/
}

/* single model block */
.model-block {
  padding: 28px 32px 28px 0;
  border-bottom: 1px solid var(--n2);
  display: none;
}
.model-block.visible {
  display: block;
}
/*.model-block:nth-child(odd){border-right:1px solid var(--n2);padding-right:40px;}*/
/*.model-block:nth-child(even){padding-left:40px;padding-right:0;}*/

/* car photo */
.model-photo {
  width: 160px;
  height: 90px;
  object-fit: contain;
  margin-bottom: 14px;
  display: block;
}
.model-photo-placeholder {
  width: 120px;
  height: 80px;
  border-radius: 50%;
  background: var(--n1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.model-photo-placeholder svg {
  color: var(--n4);
}

/* model name */
.model-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--n10);
  letter-spacing: -0.4px;
  margin-bottom: 10px;
}

/* generations list */
.gen-list {
  display: flex;
  flex-direction: column;
}
.gen-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-top: 1px solid var(--n2);
  color: var(--n8);
  font-size: 14px;
  transition: color 0.12s;
}
.gen-row:hover {
  color: var(--p5);
}
.gen-row:hover .gen-arrow {
  color: var(--p5);
}
.gen-row-left {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.gen-name {
}
.gen-years {
  color: var(--n4);
  font-size: 13px;
}
.gen-arrow {
  color: var(--n4);
  font-size: 17px;
  font-weight: 400;
  transition: color 0.12s;
  flex-shrink: 0;
}

/* empty state */
.no-results {
  grid-column: 1/-1;
  padding: 40px;
  text-align: center;
  color: var(--n4);
  font-size: 15px;
  display: none;
}
.no-results.visible {
  display: block;
}

/* SEO */
.seo-block {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--n2);
}
.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;
}

/* BRAND HERO */
.brand-hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  background: var(--w);
  border: 1px solid var(--n2);
  border-radius: var(--rxl);
  padding: 22px 28px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.brand-hero-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 0;
}
.brand-logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--n1);
  border: 1px solid var(--n2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}
.brand-hero-info {
  min-width: 0;
}
.brand-hero-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--n10);
  letter-spacing: -0.3px;
  margin-bottom: 3px;
}
.brand-hero-desc {
  font-size: 13px;
  color: var(--n6);
  line-height: 1.6;
  max-width: 520px;
}
.brand-hero-stats {
  display: flex;
  gap: 28px;
  flex-shrink: 0;
  flex-wrap: wrap;
  align-self: center;
}
.brand-stat {
  text-align: center;
}
.brand-stat-val {
  font-size: 20px;
  font-weight: 900;
  color: var(--n10);
  letter-spacing: -0.5px;
}
.brand-stat-lbl {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--n4);
  margin-top: 1px;
}

/* SIDEBAR VEHICLE SELECTOR — same style 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;
}
.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;
  font-family: "Inter", sans-serif;
  appearance: none;
  transition: border-color 0.15s;
}
.side-form select:focus,
.side-form select:hover {
  border-color: var(--p5);
}
.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 svg {
  color: white;
  flex-shrink: 0;
}
/*.side-form-btn:hover{background:var(--p6);color:white;}*/
.side-form-btn:disabled {
  background: var(--n2);
  color: var(--n4);
  cursor: not-allowed;
}

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

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

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

/* ─── TABLET ≤1024px ─── */
@media (max-width: 1024px) {
  .layout {
    grid-template-columns: 220px 1fr;
    gap: 16px;
  }
  .makes-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .brands-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-inner {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
  /* Mercedes page */
  .page-with-sidebar {
    grid-template-columns: 220px 1fr;
    gap: 20px;
  }
  .brand-hero-stats {
    gap: 16px;
  }
}

/* ─── 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;
  }
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-text {
    padding: 40px 20px;
  }
  .hero-side {
    display: none;
  }
  .hero-search {
    flex-wrap: wrap;
  }
  .hero-search-cat {
    display: none;
  }
  .hero-search-sep {
    display: none;
  }
  .hero-search-btn {
    width: calc(100% - 8px);
    margin: 4px;
    height: 44px;
    border-radius: 8px;
  }
  .layout {
    grid-template-columns: 1fr;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .makes-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-inner {
    grid-template-columns: 1fr !important;
    gap: 24px;
    padding: 0 16px 32px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
  .newsletter-form {
    flex-direction: column;
  }
  /* Mercedes page */
  .page {
    padding: 14px 14px 80px;
  }
  h1.page-h1 {
    font-size: 20px !important;
  }
  .title-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 16px;
  }
  .model-search-wrap {
    width: 100%;
  }
  .model-search {
    width: 100% !important;
    box-sizing: border-box;
  }
  .page-with-sidebar {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .vs-sidebar {
    position: static;
    order: -1;
  }
  .vs-main {
    order: 1;
  }
  .brand-hero {
    flex-direction: column;
    padding: 16px;
    gap: 14px;
  }
  .brand-hero-stats {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
  }
  .brand-stat-val {
    font-size: 18px !important;
  }
  .models-wrap {
    grid-template-columns: 1fr;
  }
  .model-block {
    padding: 20px 0 !important;
    border-right: none !important;
  }
  .model-name {
    font-size: 18px;
  }
  .model-photo {
    width: 120px;
    height: 70px;
  }
  input,
  select,
  textarea {
    font-size: 16px !important;
  }
}

/* ─── SMALL MOBILE ≤480px ─── */
@media (max-width: 480px) {
  .hdr-inner {
    padding: 8px 12px;
  }
  .makes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  /* Mercedes page */
  .page {
    padding: 12px 12px 80px;
  }
  .brand-hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .brand-stat {
    background: var(--n0);
    border-radius: var(--rm);
    padding: 10px;
    text-align: center;
  }
}

/* Spareza car-make page */
.cmo-page {
  max-width: 1420px;
  margin: 0 auto;
  padding: 24px 28px 76px;
  color: #24324a;
}
.cmo-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  color: #7a8799;
  font-size: 13px;
}
.cmo-breadcrumb a {
  color: #7a8799;
  text-decoration: none;
}
.cmo-breadcrumb a:hover {
  color: #2964e8;
}
.cmo-breadcrumb strong {
  color: #44526a;
}
.cmo-hero {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) 170px;
  align-items: center;
  gap: 28px;
  padding: 30px 34px;
  border: 1px solid #cddcf5;
  border-radius: 24px;
  background: linear-gradient(135deg, #fff 0%, #f3f7ff 68%, #eaf2ff 100%);
}
.cmo-brand-logo {
  position: relative;
  display: grid;
  place-items: center;
  width: 150px;
  height: 112px;
  border: 1px solid #d8e1ed;
  border-radius: 18px;
  background: #fff;
  color: #a1acbc;
  font-size: 30px;
  font-weight: 850;
}
.cmo-brand-logo img {
  position: absolute;
  inset: 18px;
  width: calc(100% - 36px);
  height: calc(100% - 36px);
  object-fit: contain;
  background: #fff;
}
.cmo-eyebrow {
  margin-bottom: 6px;
  color: #2964e8;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.cmo-hero h1 {
  margin: 0;
  color: #111827;
  font-size: 40px;
  line-height: 1.08;
  letter-spacing: -1.3px;
}
.cmo-hero p {
  max-width: 720px;
  margin: 10px 0 0;
  color: #59677c;
  font-size: 15px;
  line-height: 1.6;
}
.cmo-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 16px;
  color: #087b59;
  font-size: 12px;
  font-weight: 650;
}
.cmo-model-count {
  padding: 18px;
  border: 1px solid #d8e1ed;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  text-align: center;
}
.cmo-model-count strong {
  display: block;
  color: #172033;
  font-size: 28px;
  line-height: 1;
}
.cmo-model-count span {
  display: block;
  margin-top: 7px;
  color: #718096;
  font-size: 11px;
  line-height: 1.3;
}
.cmo-finder {
  margin-top: 22px;
}
.cmo-finder .vehicle-card {
  border-color: #d8e1ed;
  border-radius: 20px;
  box-shadow: 0 8px 26px rgba(31, 52, 84, 0.045);
}
.cmo-finder .vehicle-card-head {
  background: #f5f8fc;
  color: #172033;
}
.cmo-finder .vehicle-card-body,
.cmo-finder .side-card-body {
  padding: 18px 20px;
}
.cmo-finder .side-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto auto;
  align-items: end;
  gap: 12px;
}
.cmo-finder .side-form-btn,
.cmo-finder .side-form-btn-reset {
  width: auto;
  min-width: 150px;
  margin: 0;
}
.cmo-models {
  margin-top: 34px;
}
.cmo-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
}
.cmo-section-head > div > span {
  color: #2964e8;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.cmo-section-head h2 {
  margin: 4px 0 0;
  color: #172033;
  font-size: 27px;
  letter-spacing: -0.55px;
}
.cmo-search {
  position: relative;
  display: block;
  width: min(380px, 100%);
}
.cmo-search svg {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  color: #8a97aa;
}
.cmo-search input {
  box-sizing: border-box;
  width: 100%;
  height: 48px;
  padding: 0 16px 0 46px;
  border: 1px solid #cbd6e3;
  border-radius: 12px;
  background: #fff;
  color: #24324a;
  font: inherit;
  font-size: 14px;
  outline: none;
}
.cmo-search input:focus {
  border-color: #7ea7fb;
  box-shadow: 0 0 0 3px #e7efff;
}
.cmo-status {
  margin: 10px 0 18px;
  color: #718096;
  font-size: 13px;
}
.cmo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.cmo-card {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 14px;
  min-height: 86px;
  padding: 14px 16px;
  border: 1px solid #d8e1ed;
  border-radius: 16px;
  background: #fff;
  color: #24324a;
  text-decoration: none;
  box-shadow: 0 5px 18px rgba(31, 52, 84, 0.035);
  transition:
    border-color 0.15s,
    box-shadow 0.15s,
    transform 0.15s;
}
.cmo-card[hidden] {
  display: none !important;
}
.cmo-card:hover {
  border-color: #9cb9f8;
  box-shadow: 0 8px 20px rgba(42, 102, 235, 0.1);
  transform: translateY(-2px);
}
.cmo-car-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 48px;
  border-radius: 13px;
  background: #edf4ff;
  color: #2964e8;
}
.cmo-car-icon svg {
  width: 37px;
  height: 24px;
  fill: currentColor;
}
.cmo-card-copy {
  min-width: 0;
}
.cmo-card-copy strong {
  display: block;
  overflow: hidden;
  color: #172033;
  font-size: 14px;
  line-height: 1.35;
  text-overflow: ellipsis;
}
.cmo-card-copy small {
  display: block;
  margin-top: 5px;
  color: #7b8798;
  font-size: 12px;
}
.cmo-arrow {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 9px;
  background: #f5f8fc;
  color: #75849a;
  font-size: 17px;
}
.cmo-card:hover .cmo-arrow {
  background: #edf4ff;
  color: #2964e8;
}
.cmo-family-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px 38px;
}
.cmo-family {
  min-width: 0;
}
.cmo-family[hidden] {
  display: none !important;
}
.cmo-family-media {
  height: 108px;
  margin-bottom: 11px;
}
.cmo-family-media > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}
.cmo-family-media.is-placeholder {
  display: grid;
  grid-template-columns: minmax(145px, 52%) minmax(120px, 1fr);
  align-items: center;
  gap: 12px;
  padding: 6px 16px 6px 5px;
  overflow: hidden;
  border: 1px solid #e0e7f1;
  border-radius: 12px;
  background: linear-gradient(135deg, #fbfcff, #edf3fb);
}
.cmo-family-media.is-placeholder > img {
  height: 94px;
}
.cmo-family-placeholder-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cmo-family-placeholder-copy strong {
  color: #344054;
  font-size: 14px;
  line-height: 1.3;
}
.cmo-family-placeholder-copy small {
  margin-top: 4px;
  color: #8a96a8;
  font-size: 11px;
  line-height: 1.4;
}
.cmo-family h3 {
  margin: 0 0 11px;
  color: #172033;
  font-size: 18px;
  letter-spacing: -0.2px;
}
.cmo-family-generations {
  border-top: 1px solid #d8e1ed;
}
.cmo-family-generations > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  min-height: 43px;
  padding: 8px 0;
  border-bottom: 1px solid #d8e1ed;
  color: #24324a;
  font-size: 13px;
  line-height: 1.35;
  text-decoration: none;
}
.cmo-family-generations > a:hover {
  color: #2964e8;
}
.cmo-family-generations > a > span {
  min-width: 0;
}
.cmo-family-generations small {
  color: #7b8798;
  white-space: nowrap;
}
.cmo-family-generations b {
  flex: 0 0 auto;
  color: #516078;
  font-size: 19px;
  font-weight: 500;
  transition: color 0.15s;
}
.cmo-family-generations > a:hover b {
  color: #2964e8;
}
.cmo-empty {
  padding: 34px;
  border: 1px dashed #cbd6e3;
  border-radius: 16px;
  color: #718096;
  text-align: center;
}
.cmo-empty strong,
.cmo-empty span {
  display: block;
}
.cmo-empty strong {
  color: #24324a;
  font-size: 18px;
}
.cmo-empty span {
  margin-top: 5px;
}
.cmo-seo {
  margin-top: 40px;
  padding: 30px 32px;
  border: 1px solid #d8e1ed;
  border-radius: 20px;
  background: #f8fafc;
}
.cmo-seo-intro {
  margin-top: 22px;
  background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
}
.cmo-seo-intro + .cmo-models {
  margin-top: 34px;
}
.cmo-seo h2 {
  margin: 0;
  color: #172033;
  font-size: 24px;
}
.cmo-seo > p {
  max-width: 1000px;
  margin: 10px 0 22px;
  color: #637187;
  font-size: 14px;
  line-height: 1.75;
}
.cmo-seo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.cmo-seo-grid div {
  padding-top: 18px;
  border-top: 1px solid #dce4ee;
}
.cmo-seo-grid h3 {
  margin: 0 0 7px;
  color: #24324a;
  font-size: 15px;
}
.cmo-seo-grid p {
  margin: 0;
  color: #718096;
  font-size: 13px;
  line-height: 1.65;
}
.cmo-finder .side-card-head,
.cmo-finder .vehicle-card-head {
  background: #f5f8fc !important;
  color: #172033 !important;
}
.cmo-finder .vehicle-card-icon {
  width: 38px;
  height: 38px;
  flex-basis: 38px;
  color: #2964e8 !important;
  background: #eaf1ff !important;
  border: 1px solid #d6e3ff !important;
  border-radius: 10px;
}
.cmo-finder .vehicle-card-heading strong {
  color: #172033 !important;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.25px;
}
.cmo-finder .vehicle-card-heading small {
  color: #5f6f86 !important;
  font-size: 11px;
  font-weight: 600;
}
.cmo-finder .side-form label {
  color: #556277;
  font-size: 12px;
}
.cmo-finder .side-form select,
.cmo-finder .side-form-btn,
.cmo-finder .side-form-btn-reset {
  font-size: 14px;
}
.cmo-finder .side-form-btn,
.cmo-finder .side-form-btn-reset {
  text-transform: none;
  letter-spacing: 0;
}
.cmo-finder .side-card {
  overflow: hidden;
  border-radius: 20px;
}
.cmo-finder .side-card-head {
  border-radius: 19px 19px 0 0;
}
@media (max-width: 1024px) {
  .cmo-page {
    padding-right: 20px;
    padding-left: 20px;
  }
  .cmo-hero {
    grid-template-columns: 120px minmax(0, 1fr);
    padding: 26px;
  }
  .cmo-brand-logo {
    width: 120px;
    height: 96px;
  }
  .cmo-model-count {
    display: none;
  }
  .cmo-finder .side-form {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .cmo-finder .side-form-btn,
  .cmo-finder .side-form-btn-reset {
    grid-column: 1/-1;
    width: 100%;
    min-width: 0;
  }
  .cmo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cmo-family-grid {
    gap: 38px 28px;
  }
}
@media (max-width: 720px) {
  .cmo-page {
    padding: 14px 12px 54px;
  }
  .cmo-breadcrumb {
    margin-bottom: 14px;
  }
  .cmo-hero {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 15px;
    padding: 20px 16px;
    border-radius: 19px;
  }
  .cmo-brand-logo {
    width: 76px;
    height: 68px;
    border-radius: 13px;
  }
  .cmo-brand-logo img {
    inset: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
  }
  .cmo-eyebrow {
    font-size: 9px;
  }
  .cmo-hero h1 {
    font-size: 27px;
    letter-spacing: -0.7px;
  }
  .cmo-hero p {
    grid-column: 1/-1;
    margin-top: 0;
    font-size: 13px;
  }
  .cmo-trust {
    grid-column: 1/-1;
    margin-top: 2px;
  }
  .cmo-hero-copy {
    display: contents;
  }
  .cmo-finder .side-form {
    grid-template-columns: 1fr;
  }
  .cmo-finder .side-form-btn,
  .cmo-finder .side-form-btn-reset {
    width: 100%;
  }
  .cmo-section-head {
    align-items: stretch;
    flex-direction: column;
  }
  .cmo-section-head h2 {
    font-size: 23px;
  }
  .cmo-search {
    width: 100%;
  }
  .cmo-grid {
    grid-template-columns: 1fr;
  }
  .cmo-family-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .cmo-family-media {
    height: 104px;
  }
  .cmo-family-media.is-placeholder {
    grid-template-columns: minmax(135px, 52%) minmax(105px, 1fr);
    padding: 6px 12px 6px 4px;
  }
  .cmo-family-media.is-placeholder > img {
    height: 90px;
  }
  .cmo-card {
    min-height: 78px;
  }
  .cmo-seo {
    padding: 23px 18px;
  }
  .cmo-seo-grid {
    grid-template-columns: 1fr;
  }
  .cmo-trust span:nth-child(n + 3) {
    display: none;
  }
}
/* Distinct make-level SEO guide */
.cmo-brand-guide {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 40px;
  background: linear-gradient(135deg, #fff, #f4f8ff);
}
.cmo-guide-copy h2 {
  margin: 5px 0 12px;
}
.cmo-guide-copy p {
  margin: 0 0 11px;
  color: #637187;
  font-size: 14px;
  line-height: 1.7;
}
.cmo-guide-models {
  padding: 20px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #dce5f0;
}
.cmo-guide-models h3 {
  margin: 0 0 12px;
  color: #172033;
  font-size: 15px;
}
.cmo-guide-models > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px 16px;
}
.cmo-guide-models a {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid #edf1f5;
  color: #435169;
  font-size: 12px;
  font-weight: 650;
  text-decoration: none;
}
.cmo-guide-models a:hover {
  color: #2964e8;
}
@media (max-width: 720px) {
  .cmo-brand-guide {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .cmo-guide-models > div {
    grid-template-columns: 1fr;
  }
}
.cmo-guide-steps {
  padding: 20px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #dce5f0;
}
.cmo-guide-steps h3 {
  margin: 0 0 13px;
  color: #172033;
  font-size: 15px;
}
.cmo-guide-steps ol {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.cmo-guide-steps li {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  padding-top: 11px;
  border-top: 1px solid #edf1f5;
}
.cmo-guide-steps li > span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 9px;
  background: #edf4ff;
  color: #2964e8;
  font-size: 12px;
  font-weight: 800;
}
.cmo-guide-steps strong,
.cmo-guide-steps small {
  display: block;
}
.cmo-guide-steps strong {
  color: #334155;
  font-size: 12px;
}
.cmo-guide-steps small {
  margin-top: 3px;
  color: #7b8798;
  font-size: 10px;
  line-height: 1.45;
}

/* Brand/model catalogue uses the same container as the homepage. */
.cmo-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) {
  .cmo-page {
    width: min(1440px, calc(100% - 32px));
    padding-right: 0;
    padding-left: 0;
  }
}
@media (max-width: 700px) {
  .cmo-page {
    width: calc(100% - 24px);
    padding-right: 0;
    padding-left: 0;
  }
}
