/* ── Spareza — Homepage Page Styles ── */

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

/* ══════════════════════════════════════
       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 0.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 0.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);
}
.make-logo-icon {
  width: 54px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 4px;
  background: var(--white);
  border-radius: var(--radius-md);
}
.make-logo-fallback {
  font-size: 13px;
  font-weight: 850;
  color: var(--neutral-500);
}
.make-logo-icon img {
  position: absolute;
  inset: 4px;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  object-fit: contain;
  background: var(--white);
}
.make-logo-icon img[src$="/no_logo.png"] {
  display: none;
}
.makes-actions {
  margin-top: 14px;
  text-align: center;
}
.makes-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 20px;
  background: var(--white);
  border: 1.5px solid var(--neutral-200);
  border-radius: var(--radius-full);
  color: var(--neutral-600);
  font-size: 12px;
  font-weight: 650;
  font-family: "Inter", sans-serif;
  transition: all 0.15s;
}
.makes-toggle:hover {
  border-color: var(--primary-500);
  color: var(--primary-500);
}

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

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

/* ══════════════════════════════════════
       VIN ASSISTANCE
    ══════════════════════════════════════ */
.vin-assistance {
  min-height: 138px;
  padding: 26px 30px;
  border: 1px solid #cbdafa;
  border-radius: var(--radius-xl);
  background: linear-gradient(110deg, #f7faff 0%, #eef4ff 100%);
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  box-sizing: border-box;
}
.vin-assistance-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #d5e1fa;
  color: var(--primary-500);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(31, 73, 145, 0.08);
}
.vin-assistance-icon svg {
  width: 29px;
  height: 29px;
}
.vin-assistance-copy > span {
  display: block;
  margin-bottom: 5px;
  color: #235dcc;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.65px;
  text-transform: uppercase;
}
.vin-assistance-copy h2 {
  margin: 0 0 6px;
  color: var(--neutral-1000);
  font-size: 21px;
  line-height: 1.25;
  font-weight: 750;
  letter-spacing: -0.3px;
}
.vin-assistance-copy p {
  max-width: 690px;
  margin: 0;
  color: #53637b;
  font-size: 13px;
  line-height: 1.55;
}
.vin-assistance-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.vin-assistance-primary,
.vin-assistance-secondary {
  height: 44px;
  padding: 0 18px;
  border-radius: 10px;
  font:
    650 13px/1 "Inter",
    sans-serif;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  box-sizing: border-box;
}
.vin-assistance-primary {
  color: #fff;
  background: #4c78c2;
  border: 1px solid #4c78c2;
  box-shadow: 0 5px 14px rgba(45, 89, 163, 0.15);
}
.vin-assistance-primary:hover {
  background: #416caf;
  border-color: #416caf;
}
.vin-assistance-secondary {
  color: #33445f;
  background: #fff;
  border: 1px solid #bdcce8;
}
.vin-assistance-secondary:hover {
  color: #235dcc;
  border-color: #8facdf;
  background: #fafdff;
}

/* ══════════════════════════════════════
       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 {
  margin-bottom: 28px;
  padding: 28px 0 24px;
  border-top: 1px solid #d6e1ef;
  border-bottom: 1px solid #d6e1ef;
  background: transparent;
}
.seo-block-head {
  max-width: 860px;
}
.seo-block-head > span {
  display: block;
  margin-bottom: 7px;
  color: #2a66eb;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.055em;
}
.seo-block h2 {
  margin: 0;
  color: #172033;
  font-size: 27px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.45px;
}
.seo-block-head > p {
  margin: 9px 0 0;
  color: #5c6d84;
  font-size: 15px;
  line-height: 1.6;
}
.seo-block-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 22px;
}
.seo-block-grid article {
  padding: 16px 0 0;
  border-top: 2px solid #cbd9eb;
  background: transparent;
}
.seo-block-grid b {
  display: block;
  margin-bottom: 9px;
  color: #2a66eb;
  font-size: 12px;
}
.seo-block-grid h3 {
  margin: 0 0 7px;
  color: #29384d;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}
.seo-block-grid p {
  margin: 0;
  color: #5d6d83;
  font-size: 14px;
  line-height: 1.6;
}
.seo-block-grid a {
  display: inline-flex;
  gap: 12px;
  margin-top: 15px;
  color: #2a66eb;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.seo-details {
  margin-top: 18px;
  border-top: 1px solid #dbe4ef;
}
.seo-details > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0 0;
  color: #344258;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}
.seo-details > summary::-webkit-details-marker {
  display: none;
}
.seo-details > summary span {
  color: #2a66eb;
  transition: transform 0.16s;
}
.seo-details[open] > summary span {
  transform: rotate(180deg);
}
.seo-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid #e0e7ef;
}
.seo-copy h3 {
  margin: 0 0 8px;
  color: #29384d;
  font-size: 15px;
  font-weight: 600;
}
.seo-copy p {
  margin: 0 0 8px;
  color: #617188;
  font-size: 13px;
  line-height: 1.65;
}
.seo-link-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 17px;
  padding-top: 17px;
  border-top: 1px solid #dbe4ef;
}
.seo-link-groups nav > strong {
  display: block;
  margin-bottom: 10px;
  color: #344258;
  font-size: 13px;
  font-weight: 600;
}
.seo-link-groups nav > div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 13px;
}
.seo-link-groups a {
  color: #52647a;
  font-size: 13px;
  line-height: 1.4;
  text-decoration: none;
}
.seo-link-groups a:hover {
  color: #2a66eb;
  text-decoration: underline;
}
.seo-link-groups .seo-all-link {
  color: #2a66eb;
  font-weight: 600;
}

/* ══════════════════════════════════════
       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: #fff;
  border: 1.5px solid #fff;
  border-radius: var(--radius-md);
  font-size: 14px;
  color: #263449;
  outline: none;
  font-family: "Inter", sans-serif;
  transition: all 0.15s;
}
.newsletter-input::placeholder {
  color: #8a96a7;
}
.newsletter-input:focus {
  background: #fff;
  border-color: #b8cae6;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}
.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
    ══════════════════════════════════════ */

/* ══════════════════════════════════════
       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: 54px;
  height: 42px;
  padding: 4px;
  border-radius: var(--radius-md);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ══════════════════════════════════════
       FULL-WIDTH AFTER SIDEBAR (rule #11)
       Sections after sidebar end stretch full page width
    ══════════════════════════════════════ */
.full-width-section {
  max-width: 1420px;
  margin: 0 auto;
  padding: 0 28px 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 ─── */
@media (max-width: 1024px) {
  .layout {
    grid-template-columns: 220px 1fr;
    gap: 16px;
  }
  .makes-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .makes-all {
    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);
  }
  .full-width-section .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ─── MOBILE ≤768px ─── */
@media (max-width: 768px) {
  /* topbar — two rows on mobile */
  .topbar-inner {
    padding: 6px 14px;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    text-align: center;
  }
  .topbar-links {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .topbar-links a {
    font-size: 11px;
  }
  .tb-vat-btn,
  .tb-country-btn,
  .tb-lang-btn {
    font-size: 11px;
  }

  /* header */
  .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-action-btn {
    padding: 8px 10px;
  }

  /* nav */
  .hdr-nav-inner {
    padding: 0 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .hdr-nav-inner::-webkit-scrollbar {
    display: none;
  }
  .hdr-nav-link {
    padding: 10px 10px;
    font-size: 12px;
  }

  /* page */
  .page {
    padding: 12px 14px 0;
  }

  /* layout: sidebar below content */
  .layout {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 12px 0 0;
  }
  .sidebar {
    order: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .side-promo {
    grid-column: 1 / -1;
  }
  .content {
    order: 1;
  }

  /* hero */
  .hero {
    padding: 24px 20px 20px;
  }
  .hero h1 {
    font-size: 22px;
    line-height: 1.2;
  }
  .hero-sub {
    font-size: 13px;
  }
  .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;
  }
  .hero-trust {
    flex-wrap: wrap;
    gap: 8px;
  }
  .hero-stats {
    gap: 16px;
  }

  /* Prevent iOS auto-zoom on input focus */
  input,
  select,
  textarea {
    font-size: 16px !important;
  }

  /* trust grid */
  .vin-assistance {
    grid-template-columns: 52px minmax(0, 1fr);
    padding: 22px;
  }
  .vin-assistance-icon {
    width: 52px;
    height: 52px;
  }
  .vin-assistance-actions {
    grid-column: 1 / -1;
    padding-left: 72px;
  }

  /* grids */
  .makes-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }
  .makes-all {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .brands-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }
  .full-width-section .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .full-width-section {
    padding: 0 14px;
  }

  /* newsletter */
  .newsletter {
    flex-direction: column;
    align-items: stretch;
    padding: 24px 20px;
    gap: 18px;
  }
  .newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .newsletter-input {
    width: 100%;
    height: 46px;
    border-radius: 8px;
  }
  .newsletter-btn {
    width: 100%;
    height: 46px;
    border-radius: 8px;
  }
}

/* ─── SMALL MOBILE ≤480px ─── */
@media (max-width: 480px) {
  .hdr-inner {
    padding: 8px 12px;
  }
  .hero {
    padding: 18px 14px;
  }
  .hero h1 {
    font-size: 19px;
  }
  .hero-stats {
    display: none;
  }
  .sidebar {
    grid-template-columns: 1fr;
  }
  .makes-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .makes-all {
    grid-template-columns: repeat(3, 1fr);
  }
  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .vin-assistance {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
    padding: 18px 16px;
  }
  .vin-assistance-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }
  .vin-assistance-icon svg {
    width: 25px;
    height: 25px;
  }
  .vin-assistance-copy h2 {
    font-size: 18px;
  }
  .vin-assistance-copy p {
    grid-column: 1 / -1;
  }
  .vin-assistance-actions {
    grid-column: 1 / -1;
    padding-left: 0;
    flex-direction: column;
    align-items: stretch;
  }
  .vin-assistance-primary,
  .vin-assistance-secondary {
    width: 100%;
  }
  .newsletter {
    padding: 18px 14px;
  }
  /* topbar — hide delivery text on tiny screens, keep links */
  .topbar-inner > div:first-child {
    display: none;
  }
  .topbar-inner {
    padding: 5px 12px;
  }
}

/* ══════════════════════════════════════
   HOMEPAGE 2026 — unified light storefront
══════════════════════════════════════ */
.home-page {
  max-width: 1420px;
  padding-right: 28px;
  padding-left: 28px;
  padding-top: 28px;
}
.home-page .content {
  gap: 32px;
}

.home-page .hero {
  padding: 46px 48px 36px;
  background:
    radial-gradient(
      circle at 92% 8%,
      rgba(42, 102, 235, 0.13),
      transparent 34%
    ),
    linear-gradient(135deg, #f7faff 0%, #ffffff 72%);
  border: 1px solid #dbe4f0;
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(31, 49, 78, 0.06);
}
.home-page .hero::before {
  top: auto;
  right: 52px;
  bottom: -110px;
  width: 330px;
  height: 330px;
  background: radial-gradient(
    circle,
    rgba(42, 102, 235, 0.12),
    transparent 68%
  );
}
.home-page .hero::after {
  display: none;
}
.home-page .hero-eyebrow {
  margin-bottom: 14px;
  color: #235dcc;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0;
  text-transform: none;
}
.home-page .hero-eyebrow-dot {
  animation: none;
}
.home-page .hero h1 {
  max-width: 780px;
  margin-bottom: 14px;
  color: #111827;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 850;
  letter-spacing: -1.35px;
  line-height: 1.08;
}
.home-page .hero h1 span {
  color: #2a66eb;
}
.home-page .hero-sub {
  max-width: 680px;
  margin-bottom: 30px;
  color: #5f6d82;
  font-size: 15px;
  line-height: 1.65;
}
.home-page .hero-bottom {
  padding-top: 22px;
  border-top: 1px solid #e4eaf2;
}
.home-page .hero-trust {
  gap: 20px;
}
.home-page .hero-trust-item {
  color: #526077;
  font-size: 13px;
}
.home-page .hero-stat-v {
  color: #172033;
  font-size: 21px;
}
.home-page .hero-stat-l {
  color: #748197;
  font-size: 12px;
}

.home-vehicle-finder #car-selector-sidebar {
  overflow: visible;
  border: 1px solid #d1d5db;
  border-radius: 20px;
  box-shadow: none;
}
.home-vehicle-finder .side-card-head {
  padding: 13px 16px;
  background: #f5f8fc;
  color: #172033;
  border-bottom: 0;
  border-radius: 19px 19px 0 0;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.home-vehicle-finder .vehicle-card-icon {
  width: 38px;
  height: 38px;
  flex-basis: 38px;
  color: #2964e8;
  background: #eaf1ff;
  border: 1px solid #d6e3ff;
  border-radius: 10px;
}
.home-vehicle-finder .vehicle-card-heading strong {
  color: #172033;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.25px;
  text-transform: uppercase;
}
.home-vehicle-finder .vehicle-card-heading small {
  color: #5f6f86;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}
.home-vehicle-finder .side-card-body {
  padding: 18px 20px;
}
.home-vehicle-finder .side-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto auto;
  gap: 12px;
  align-items: end;
}
.home-vehicle-finder .side-form-field {
  min-width: 0;
}
.home-vehicle-finder .side-form label {
  color: #556277;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.home-vehicle-finder .side-form select,
.home-vehicle-finder .side-form-btn,
.home-vehicle-finder .side-form-btn-reset {
  height: 44px;
  margin-top: 0;
  border-radius: 8px;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.home-vehicle-finder .side-form-btn {
  min-width: 150px;
  padding: 0 16px;
}
.home-vehicle-finder .side-form-btn-reset {
  width: auto;
  min-width: 150px;
  padding: 0 16px;
  color: #465367;
  background: #fff;
}

.home-page .section-head {
  align-items: center;
  margin-bottom: 18px;
}
.home-section-title {
  min-width: 0;
}
.home-section-title .site-kicker {
  display: block;
  margin-bottom: 5px;
}
.home-page .section-head h2 {
  font-size: 24px;
  letter-spacing: -0.45px;
}
.home-page .section-head a {
  font-size: 14px;
  font-weight: 650;
}
.home-page .makes-grid,
.home-page .makes-all {
  gap: 12px;
}
.home-page .make-card {
  min-height: 100px;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(31, 49, 78, 0.035);
}
.home-page .make-card:hover {
  border-color: #9cb9f8;
  box-shadow: 0 7px 18px rgba(42, 102, 235, 0.1);
  transform: translateY(-2px);
}
.home-page .make-name {
  font-size: 13px;
}

.home-page .categories-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.home-page .cat-card {
  min-width: 0;
  min-height: 138px;
  padding: 10px 16px 10px 10px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(31, 49, 78, 0.035);
}
.home-page .cat-photo {
  width: 112px;
  height: 116px;
  margin: 0;
  flex: 0 0 112px;
  overflow: hidden;
  border-radius: 11px;
  background: #f3f5f8;
}
.home-page .cat-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 5px;
}
.home-page .cat-photo-fallback {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}
.home-page .cat-photo-fallback[hidden] {
  display: none;
}
.home-page .cat-photo-fallback svg {
  max-width: 38px;
  max-height: 38px;
}
.home-page .cat-name {
  min-width: 0;
  margin: 0;
  color: #1c2738;
  font-size: 14px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}
.categories-actions {
  margin-top: 16px;
  text-align: center;
}
.brands-actions {
  margin-top: 16px;
  text-align: center;
}
.categories-toggle {
  min-width: 190px;
}

#brands .brand-card {
  min-height: 100px;
  padding: 13px 8px;
  gap: 4px;
}
#brands .brand-logo-wrap {
  width: 100%;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 3px;
}
#brands .brand-logo-img {
  display: block;
  width: auto;
  height: auto;
  max-width: 94px;
  max-height: 40px;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
}
#brands .brand-logo-fallback {
  color: #354257;
  font-size: 16px;
  font-weight: 850;
}
#brands .brand-name {
  max-width: 100%;
  color: #273449;
  font-size: 11px;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

/* Natural casing for interface copy; product and manufacturer data are untouched. */
.home-page .side-card-head,
.home-page .side-form label,
.home-page .side-form-btn,
.home-page .side-form-btn-reset,
.full-width-section .help-block-eyebrow,
.full-width-section .blog-date,
.full-width-section .newsletter-eyebrow,
.mobile-nav-label {
  letter-spacing: 0;
  text-transform: none;
}

/* Keep the assistance banner, but align it with the light product-page language. */
.help-block {
  background: linear-gradient(135deg, #f3f7fd 0%, #ffffff 78%);
  border: 1px solid #dbe4f0;
  box-shadow: 0 12px 28px rgba(31, 49, 78, 0.05);
}
.help-block::before {
  background: radial-gradient(
    circle,
    rgba(42, 102, 235, 0.12),
    transparent 66%
  );
}
.help-block-eyebrow {
  color: #235dcc;
  font-size: 13px;
}
.help-block-title {
  color: #172033;
}
.help-block-desc {
  color: #5f6d82;
  font-size: 14px;
}
.help-method {
  background: #fff;
  border-color: #dbe4f0;
  box-shadow: 0 4px 12px rgba(31, 49, 78, 0.035);
}
.help-method:hover {
  background: #f8faff;
  border-color: #a9c0f4;
}
.help-method-title {
  color: #172033;
}
.help-method-desc {
  color: #68768b;
  font-size: 12px;
}
.btn-ghost-white {
  color: #354257;
  background: #fff;
  border-color: #cdd8e6;
}
.btn-ghost-white:hover {
  background: #f4f7fb;
}

@media (max-width: 1100px) {
  .home-vehicle-finder .side-form {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .home-vehicle-finder .side-form-btn,
  .home-vehicle-finder .side-form-btn-reset {
    width: 100%;
  }
  .home-page .makes-grid,
  .home-page .makes-all {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .home-page {
    padding: 14px 14px 0;
  }
  .full-width-section {
    padding-right: 14px;
    padding-left: 14px;
  }
  .home-page .content {
    gap: 24px;
  }
  .home-page .hero {
    padding: 26px 22px 22px;
    border-radius: 18px;
  }
  .home-page .hero h1 {
    font-size: clamp(27px, 8vw, 36px);
    line-height: 1.1;
  }
  .home-page .hero-sub {
    margin-bottom: 22px;
    font-size: 14px;
  }
  .home-page .hero-bottom {
    padding-top: 18px;
  }
  .home-page .hero-trust {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }
  .home-page .hero-stats {
    width: 100%;
    justify-content: space-between;
  }
  .home-vehicle-finder .side-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-vehicle-finder .side-form-btn,
  .home-vehicle-finder .side-form-btn-reset {
    grid-column: 1 / -1;
    width: 100%;
    min-width: 0;
  }
  .home-page .section-head h2 {
    font-size: 21px;
  }
  .home-page .makes-grid,
  .home-page .makes-all {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .home-page .categories-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-page .cat-photo {
    width: 108px;
    height: 92px;
    flex-basis: 108px;
  }
}

@media (max-width: 520px) {
  .home-page .hero {
    padding: 22px 18px 18px;
  }
  .home-page .hero h1 {
    font-size: 29px;
    letter-spacing: -0.75px;
  }
  .home-page .hero-trust {
    grid-template-columns: 1fr;
    gap: 9px;
  }
  .home-page .hero-stats {
    display: none;
  }
  .home-vehicle-finder .side-card-head {
    padding: 16px;
  }
  .home-vehicle-finder .vehicle-card-heading strong {
    font-size: 16px;
  }
  .home-vehicle-finder .side-card-body {
    padding: 16px;
  }
  .home-vehicle-finder .side-form {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .home-page .section-head {
    align-items: baseline;
  }
  .home-page .section-head h2 {
    font-size: 20px;
  }
  .home-page .section-head a {
    font-size: 12px;
  }
  .home-page .makes-grid,
  .home-page .makes-all {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .home-page .categories-grid {
    grid-template-columns: 1fr;
  }
  .home-page .cat-card {
    min-height: 98px;
    padding: 8px 12px 8px 8px;
    gap: 12px;
  }
  .home-page .cat-photo {
    width: 94px;
    height: 82px;
    flex-basis: 94px;
  }
  #brands .brands-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  #brands .brand-card {
    min-height: 100px;
  }
  #brands .brand-logo-img {
    max-width: 108px;
    max-height: 40px;
  }
}

/* Keep the homepage on the exact same storefront grid as Car Parts. */
.home-page,
.full-width-section {
  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;
}
.home-page-body .full-width-section > :last-child {
  margin-bottom: 0;
}
.home-page-body .site-footer {
  margin-top: 0;
  padding-top: 64px;
  background: linear-gradient(180deg, #f9fafb 0, #f4f7fb 64px, #f4f7fb 100%);
}
@media (max-width: 1180px) {
  .home-page,
  .full-width-section {
    width: min(1440px, calc(100% - 32px));
  }
}
@media (max-width: 700px) {
  .home-page,
  .full-width-section {
    width: calc(100% - 24px);
    padding-right: 0;
    padding-left: 0;
  }
  .home-page-body .site-footer {
    padding-top: 42px;
  }
}

/* Calm, readable brand cards and the same secondary action language as AutoHub. */
#brands .section-head {
  align-items: center;
}
#brands .section-head h2 {
  font-size: 27px;
  font-weight: 680;
  letter-spacing: -0.45px;
}
#brands .section-head > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 41px;
  padding: 0 14px;
  border: 1px solid #bdcde5;
  border-radius: 10px;
  background: #fff;
  color: #31577f;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
#brands .section-head > a:hover {
  border-color: #8faee0;
  background: #f7faff;
  text-decoration: none;
}
#car-makes .section-head > a,
#categories .section-head > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 41px;
  padding: 0 14px;
  border: 1px solid #bdcde5;
  border-radius: 10px;
  background: #fff;
  color: #31577f;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
#car-makes .section-head > a:hover,
#categories .section-head > a:hover {
  border-color: #8faee0;
  background: #f7faff;
  text-decoration: none;
}
#brands .brand-card {
  min-height: 104px;
  padding: 14px 9px;
  border-color: #d5dfea;
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 3px 12px rgba(31, 49, 78, 0.025);
}
#brands .brand-card:hover {
  border-color: #a9bfe0;
  box-shadow: 0 7px 18px rgba(42, 79, 135, 0.08);
}
#brands .brand-name {
  color: #344258;
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0;
  text-transform: none;
}
@media (max-width: 700px) {
  #brands .section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
  }
  #brands .section-head h2 {
    font-size: 23px;
  }
  #brands .section-head > a,
  #car-makes .section-head > a,
  #categories .section-head > a {
    width: 100%;
    box-sizing: border-box;
  }
  #brands .brand-name {
    font-size: 13px;
  }
}

/* AutoHub is fed by published Symfony articles; no legacy demo cards. */
.home-autohub {
  padding: 28px;
  border: 1px solid #d5e0ee;
  border-radius: 21px;
  background: linear-gradient(135deg, #fff 45%, #f1f6ff);
  box-shadow: 0 10px 30px rgba(36, 61, 98, 0.045);
}
.home-autohub-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 21px;
}
.home-autohub-head > div {
  min-width: 0;
}
.home-autohub-head > div > span {
  display: block;
  margin-bottom: 6px;
  color: #2a66eb;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.home-autohub-head h2 {
  margin: 0;
  color: #1d2b3f;
  font-size: 27px;
  line-height: 1.25;
  font-weight: 680;
  letter-spacing: -0.45px;
  overflow-wrap: anywhere;
  white-space: normal;
}
.home-autohub-head p {
  margin: 7px 0 0;
  color: #617188;
  font-size: 15px;
  line-height: 1.55;
  overflow-wrap: anywhere;
}
.home-autohub-head > a,
.home-autohub-empty > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 43px;
  padding: 0 15px;
  border: 1px solid #bdcde5;
  border-radius: 10px;
  background: #fff;
  color: #31577f;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
.home-autohub-head > a:hover,
.home-autohub-empty > a:hover {
  border-color: #8faee0;
  background: #f7faff;
}
.home-autohub-head b,
.home-autohub-empty b {
  font-size: 17px;
  font-weight: 500;
}
.home-autohub-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.home-autohub-card {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid #d9e3ef;
  border-radius: 16px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  transition:
    border-color 0.16s,
    box-shadow 0.16s,
    transform 0.16s;
}
.home-autohub-card:hover {
  border-color: #abc0e2;
  box-shadow: 0 10px 25px rgba(31, 59, 101, 0.08);
  transform: translateY(-1px);
}
.home-autohub-cover {
  position: relative;
  display: block;
  min-height: 0;
  overflow: hidden;
  background: #fff;
}
.home-autohub-cover img {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: auto;
  padding: 0;
  background: #fff;
}
.home-autohub-cover.is-placeholder {
  display: grid;
  place-items: center;
  min-height: 170px;
  background: #f7f8fa;
}
.home-autohub-cover i {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: #2f6bee;
  color: #fff;
  font-size: 35px;
  font-style: normal;
  font-weight: 350;
}
.home-autohub-cover em {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 6px 9px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.93);
  color: #275ca8;
  font-size: 12px;
  font-style: normal;
  font-weight: 650;
}
.home-autohub-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 18px;
}
.home-autohub-copy small {
  color: #7d8a9c;
  font-size: 14px;
}
.home-autohub-copy strong {
  display: -webkit-box;
  overflow: hidden;
  margin: 7px 0;
  color: #26364b;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 650;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.home-autohub-copy > span {
  display: -webkit-box;
  overflow: hidden;
  color: #617188;
  font-size: 14px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow-wrap: anywhere;
}
.home-autohub-copy > b {
  margin-top: 10px;
  color: #285fac;
  font-size: 14px;
  font-weight: 600;
}
.home-autohub-empty {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  padding: 23px;
  border: 1px solid #d6e2f1;
  border-radius: 16px;
  background: #fff;
}
.home-autohub-empty-mark {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 19px;
  background: #eaf2ff;
  color: #2a66eb;
  font-size: 38px;
  font-weight: 350;
}
.home-autohub-empty small {
  color: #2a66eb;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}
.home-autohub-empty h3 {
  margin: 5px 0 5px;
  color: #27374c;
  font-size: 20px;
  font-weight: 650;
}
.home-autohub-empty p {
  margin: 0;
  color: #617188;
  font-size: 14px;
  line-height: 1.55;
}
@media (max-width: 1000px) {
  .home-autohub-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 700px) {
  .home-autohub {
    padding: 22px 16px;
    border-radius: 18px;
  }
  .home-autohub-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }
  .home-autohub-head h2 {
    font-size: 23px;
  }
  .home-autohub-head > a {
    width: 100%;
    box-sizing: border-box;
  }
  .home-autohub-grid {
    grid-template-columns: 1fr;
  }
  .home-autohub-card {
    grid-template-rows: 210px auto;
  }
  .home-autohub-empty {
    grid-template-columns: 58px minmax(0, 1fr);
    padding: 19px 16px;
  }
  .home-autohub-empty-mark {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    font-size: 31px;
  }
  .home-autohub-empty > a {
    grid-column: 1/-1;
    width: 100%;
    box-sizing: border-box;
  }
  .home-autohub-empty h3 {
    font-size: 18px;
  }
}

@media (max-width: 900px) {
  .seo-block-grid,
  .seo-copy,
  .seo-link-groups {
    grid-template-columns: 1fr;
  }
  .seo-link-groups {
    gap: 16px;
  }
}
@media (max-width: 700px) {
  .seo-block {
    padding: 22px 0;
  }
  .seo-block h2 {
    font-size: 23px;
  }
  .seo-block-head > p {
    font-size: 14px;
  }
  .seo-block-grid {
    margin-top: 18px;
  }
}

.home-page-body .full-width-section > .newsletter:last-child {
  margin-bottom: 30px;
}
@media (max-width: 700px) {
  .home-page-body .full-width-section > .newsletter:last-child {
    margin-bottom: 22px;
  }
}
