/* Vehicle catalogue: clear master-detail layout */
.vct-catalogue-shell {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  align-items: start;
  gap: 18px;
}
.vct-category-nav {
  overflow: hidden;
  border: 1px solid #d8e1ed;
  border-radius: 18px;
  background: #fff;
}
.vct-category-nav-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 15px 16px;
  border-bottom: 1px solid #e2e8f0;
  background: #f7f9fc;
}
.vct-category-nav-title strong {
  color: #172033;
  font-size: 14px;
}
.vct-category-nav-title span {
  color: #8290a3;
  font-size: 10px;
}
.vct-category-nav .vct-category-picker {
  display: flex;
  flex-direction: column;
  max-height: 650px;
  overflow: auto;
  padding: 7px;
  gap: 0;
}
.vct-category-nav .vct-category-tile {
  grid-template-columns: 43px minmax(0, 1fr) 25px;
  width: 100%;
  min-height: 72px;
  height: auto;
  padding: 9px 8px;
  border: 0;
  border-bottom: 1px solid #edf1f6;
  border-radius: 10px;
}
.vct-category-nav .vct-category-tile:last-child {
  border-bottom: 0;
}
.vct-category-nav .vct-category-tile:hover {
  background: #f5f8fd;
}
.vct-category-nav .vct-category-tile.active {
  background: #edf4ff;
  box-shadow: inset 3px 0 #2964e8;
}
.vct-category-nav .vct-tile-image {
  width: 43px;
  height: 42px;
  border-radius: 10px;
}
.vct-category-nav .vct-tile-image img {
  width: 38px;
  height: 36px;
}
.vct-catalogue-shell .vct-panels {
  min-width: 0;
  margin-top: 0;
}
@media (max-width: 1024px) {
  .vct-catalogue-shell {
    grid-template-columns: 260px minmax(0, 1fr);
  }
}
@media (max-width: 720px) {
  .vct-catalogue-shell {
    display: block;
  }
  .vct-category-nav {
    border-radius: 16px;
  }
  .vct-category-nav .vct-category-picker {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-height: none;
    overflow: visible;
    gap: 7px;
    padding: 8px;
  }
  .vct-category-nav .vct-category-tile {
    grid-template-columns: 42px minmax(0, 1fr);
    min-height: 62px;
    padding: 7px;
    border: 1px solid #e3e9f1;
  }
  .vct-category-nav .vct-category-tile.active {
    border-color: #8eb0f7;
    box-shadow: inset 0 0 0 1px #8eb0f7;
  }
  .vct-catalogue-shell .vct-panels {
    margin-top: 12px;
  }
}
@media (max-width: 720px) {
  .vct-vehicle {
    display: block;
  }
  .vct-vehicle .vct-brand-logo {
    float: left;
    margin: 0 14px 12px 0;
  }
  .vct-vehicle .vct-vehicle-copy {
    display: block;
  }
  .vct-vehicle .vct-specs {
    clear: both;
    padding-top: 4px;
  }
  .vct-vehicle .vct-vehicle-actions {
    clear: both;
    margin-top: 15px;
  }
}

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

/* Spareza vehicle category hierarchy */
.vct-page {
  max-width: 1420px;
  margin: 0 auto;
  padding: 24px 28px 78px;
  color: #24324a;
}
.vct-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  color: #7a8799;
  font-size: 13px;
}
.vct-breadcrumb a {
  color: #7a8799;
  text-decoration: none;
}
.vct-breadcrumb a:hover {
  color: #2964e8;
}
.vct-breadcrumb strong {
  color: #44526a;
}
.vct-vehicle {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr) 205px;
  align-items: center;
  gap: 25px;
  padding: 27px 31px;
  border: 1px solid #cddcf5;
  border-radius: 23px;
  background: linear-gradient(135deg, #fff 0%, #f3f7ff 70%, #eaf2ff 100%);
}
.vct-brand-logo {
  position: relative;
  display: grid;
  place-items: center;
  width: 118px;
  height: 90px;
  border: 1px solid #d8e1ed;
  border-radius: 16px;
  background: #fff;
  color: #a1acbc;
  font-size: 25px;
  font-weight: 850;
}
.vct-brand-logo img {
  position: absolute;
  inset: 15px;
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  object-fit: contain;
  background: #fff;
}
.vct-kicker {
  color: #2964e8;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.vct-vehicle h1 {
  margin: 5px 0 0;
  color: #111827;
  font-size: 33px;
  line-height: 1.12;
  letter-spacing: -0.85px;
}
.vct-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 25px;
  margin-top: 15px;
}
.vct-specs span {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.vct-specs small {
  color: #8490a1;
  font-size: 10px;
}
.vct-specs strong {
  color: #425067;
  font-size: 12px;
}
.vct-vehicle-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 15px 17px;
  border: 1px solid #d6e0ec;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.9);
}
.vct-vehicle-actions span {
  margin-bottom: 3px;
  color: #087b59;
  font-size: 11px;
  font-weight: 700;
}
.vct-vehicle-actions a {
  color: #2964e8;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}
.vct-vehicle-actions a + a {
  padding-top: 8px;
  border-top: 1px solid #e3e8ef;
  color: #59677c;
}
.vct-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin: 40px 0 19px;
}
.vct-heading h2 {
  margin: 5px 0 0;
  color: #172033;
  font-size: 28px;
  letter-spacing: -0.55px;
}
.vct-heading p {
  margin: 8px 0 0;
  color: #6a778a;
  font-size: 13px;
}
.vct-search {
  position: relative;
  display: block;
  width: min(370px, 100%);
}
.vct-search svg {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  color: #8a97aa;
}
.vct-search input {
  box-sizing: border-box;
  width: 100%;
  height: 48px;
  padding: 0 16px 0 45px;
  border: 1px solid #cbd6e3;
  border-radius: 12px;
  background: #fff;
  color: #24324a;
  font: inherit;
  font-size: 14px;
  outline: none;
}
.vct-search input:focus {
  border-color: #7ea7fb;
  box-shadow: 0 0 0 3px #e7efff;
}
.vct-tree {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 16px;
}
.vct-branch {
  overflow: hidden;
  border: 1px solid #d8e1ed;
  border-radius: 19px;
  background: #fff;
  box-shadow: 0 6px 20px rgba(31, 52, 84, 0.035);
}
.vct-branch[hidden] {
  display: none !important;
}
.vct-branch-head {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  padding: 15px 17px;
  border-bottom: 1px solid #e2e8f0;
  background: #f7f9fc;
}
.vct-branch-image {
  display: grid;
  place-items: center;
  width: 54px;
  height: 50px;
  border-radius: 12px;
  background: #edf3fc;
}
.vct-branch-image img {
  width: 44px;
  height: 40px;
  object-fit: contain;
}
.vct-branch-head h3 {
  margin: 0;
  color: #172033;
  font-size: 17px;
}
.vct-branch-head small {
  display: block;
  margin-top: 4px;
  color: #8290a3;
  font-size: 10px;
}
.vct-branch-label {
  color: #7f8b9c;
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
}
.vct-level {
  display: grid;
}
.vct-level-1 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 0;
}
.vct-level-1 > .vct-node {
  border-bottom: 1px solid #e8edf3;
}
.vct-level-1 > .vct-node:nth-child(odd) {
  border-right: 1px solid #e8edf3;
}
.vct-level-1 > .vct-node:nth-last-child(-n + 2) {
  border-bottom: 0;
}
.vct-node-row {
  min-width: 0;
}
.vct-node-link,
.vct-node-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 48px;
  padding: 10px 15px;
  color: #334155;
  font-size: 12px;
  font-weight: 650;
  text-decoration: none;
}
.vct-node-link:hover {
  background: #f3f7ff;
  color: #2964e8;
}
.vct-node-link span {
  color: #2964e8;
}
.vct-level-2,
.vct-level-3 {
  padding: 0 14px 10px;
}
.vct-level-2 .vct-node-link,
.vct-level-2 .vct-node-title {
  min-height: 30px;
  padding: 5px 7px;
  border-left: 2px solid #dce5f2;
  color: #69778a;
  font-size: 11px;
  font-weight: 550;
}
.vct-level-3 {
  padding-left: 11px;
}
.vct-level-3 .vct-node-link {
  font-size: 10px;
}
.vct-direct {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px;
  color: #2964e8;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
.vct-empty,
.vct-no-results {
  grid-column: 1/-1;
  padding: 35px;
  border: 1px dashed #cbd6e3;
  border-radius: 16px;
  background: #fafbfd;
  color: #718096;
  text-align: center;
}
.vct-empty strong,
.vct-empty span {
  display: block;
}
.vct-empty strong {
  color: #27364c;
}
.vct-empty span {
  margin-top: 6px;
}
.vct-no-results[hidden] {
  display: none;
}
.vct-seo {
  margin-top: 40px;
  padding: 29px 31px;
  border: 1px solid #d8e1ed;
  border-radius: 21px;
  background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
}
.vct-seo > h2 {
  margin: 0;
  color: #172033;
  font-size: 24px;
}
.vct-seo > p {
  max-width: 1060px;
  margin: 10px 0 22px;
  color: #637187;
  font-size: 14px;
  line-height: 1.75;
}
.vct-seo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.vct-seo-grid > div {
  padding-top: 18px;
  border-top: 1px solid #dce4ee;
}
.vct-seo-grid h3 {
  margin: 0 0 7px;
  color: #24324a;
  font-size: 15px;
}
.vct-seo-grid p {
  margin: 0;
  color: #718096;
  font-size: 13px;
  line-height: 1.65;
}
.vct-category-picker {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 11px;
}
.vct-category-tile {
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 25px;
  align-items: center;
  gap: 12px;
  min-height: 78px;
  padding: 10px 13px;
  border: 1px solid #d8e1ed;
  border-radius: 15px;
  background: #fff;
  color: #27364c;
  text-align: left;
  cursor: pointer;
  font: inherit;
  transition:
    border-color 0.15s,
    background 0.15s,
    box-shadow 0.15s;
}
.vct-category-tile[hidden] {
  display: none;
}
.vct-category-tile:hover {
  border-color: #a9c0f5;
  background: #f8faff;
}
.vct-category-tile.active {
  border-color: #79a2fa;
  background: #edf4ff;
  box-shadow: 0 0 0 2px rgba(41, 100, 232, 0.08);
}
.vct-tile-image {
  display: grid;
  place-items: center;
  width: 56px;
  height: 54px;
  border-radius: 12px;
  background: #f1f5fa;
}
.vct-tile-image img {
  width: 49px;
  height: 46px;
  object-fit: contain;
}
.vct-tile-copy {
  min-width: 0;
}
.vct-tile-copy strong {
  display: block;
  color: #172033;
  font-size: 13px;
  line-height: 1.3;
}
.vct-tile-copy small {
  display: block;
  margin-top: 5px;
  color: #8290a3;
  font-size: 10px;
}
.vct-tile-arrow {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 8px;
  background: #f4f7fb;
  color: #8290a3;
}
.vct-category-tile.active .vct-tile-arrow {
  background: #2964e8;
  color: #fff;
}
.vct-panels {
  margin-top: 18px;
}
.vct-category-panel {
  scroll-margin-top: 150px;
  overflow: hidden;
  border: 1px solid #cbd9ed;
  border-radius: 19px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(31, 52, 84, 0.06);
}
.vct-category-panel[hidden] {
  display: none !important;
}
.vct-panel-head {
  display: grid;
  grid-template-columns: 65px minmax(0, 1fr) 36px;
  align-items: center;
  gap: 15px;
  padding: 18px 20px;
  border-bottom: 1px solid #dce5f0;
  background: linear-gradient(135deg, #f8faff, #edf4ff);
}
.vct-panel-image {
  display: grid;
  place-items: center;
  width: 65px;
  height: 60px;
  border-radius: 14px;
  background: #fff;
}
.vct-panel-image img {
  width: 56px;
  height: 52px;
  object-fit: contain;
}
.vct-category-fallback {
  display: grid;
  place-items: center;
  width: 78%;
  height: 78%;
  color: #64748b;
}
.vct-category-fallback[hidden] {
  display: none;
}
.vct-category-fallback svg {
  width: 100%;
  height: 100%;
}
.vct-panel-head h3 {
  margin: 3px 0 0;
  color: #172033;
  font-size: 22px;
}
.vct-panel-head p {
  margin: 4px 0 0;
  color: #718096;
  font-size: 12px;
}
.vct-panel-close {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid #d4deeb;
  border-radius: 10px;
  background: #fff;
  color: #657388;
  font-size: 23px;
  cursor: pointer;
}
.vct-category-panel > .vct-level-1 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.vct-category-panel > .vct-level-1 > .vct-node:nth-child(odd) {
  border-right: 0;
}
.vct-category-panel > .vct-level-1 > .vct-node {
  border-right: 1px solid #e8edf3;
}
.vct-category-panel > .vct-level-1 > .vct-node:nth-child(3n) {
  border-right: 0;
}
@media (max-width: 1024px) {
  .vct-page {
    padding-right: 20px;
    padding-left: 20px;
  }
  .vct-vehicle {
    grid-template-columns: 100px minmax(0, 1fr);
    padding: 24px;
  }
  .vct-brand-logo {
    width: 100px;
    height: 80px;
  }
  .vct-vehicle-actions {
    grid-column: 1/-1;
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
  }
  .vct-vehicle-actions span {
    margin: 0;
  }
  .vct-vehicle-actions a + a {
    padding: 0 0 0 12px;
    border-top: 0;
    border-left: 1px solid #e3e8ef;
  }
  .vct-tree {
    grid-template-columns: 1fr;
  }
  .vct-category-picker {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .vct-category-panel > .vct-level-1 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .vct-category-panel > .vct-level-1 > .vct-node,
  .vct-category-panel > .vct-level-1 > .vct-node:nth-child(3n) {
    border-right: 1px solid #e8edf3;
  }
  .vct-category-panel > .vct-level-1 > .vct-node:nth-child(2n) {
    border-right: 0;
  }
}
@media (max-width: 720px) {
  .vct-page {
    padding: 14px 12px 54px;
  }
  .vct-breadcrumb {
    margin-bottom: 14px;
  }
  .vct-vehicle {
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 14px;
    padding: 18px 15px;
    border-radius: 18px;
  }
  .vct-brand-logo {
    width: 70px;
    height: 61px;
    border-radius: 12px;
  }
  .vct-brand-logo img {
    inset: 9px;
    width: calc(100% - 18px);
    height: calc(100% - 18px);
  }
  .vct-kicker {
    font-size: 9px;
  }
  .vct-vehicle h1 {
    font-size: 23px;
    letter-spacing: -0.5px;
  }
  .vct-specs {
    grid-column: 1/-1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }
  .vct-vehicle-copy {
    display: contents;
  }
  .vct-vehicle-actions {
    display: flex;
    align-items: stretch;
    grid-column: 1/-1;
  }
  .vct-vehicle-actions span {
    margin-bottom: 2px;
  }
  .vct-vehicle-actions a + a {
    padding: 8px 0 0;
    border-top: 1px solid #e3e8ef;
    border-left: 0;
  }
  .vct-heading {
    align-items: stretch;
    flex-direction: column;
    margin-top: 32px;
  }
  .vct-heading h2 {
    font-size: 23px;
  }
  .vct-search {
    width: 100%;
  }
  .vct-tree {
    gap: 12px;
  }
  .vct-branch {
    border-radius: 16px;
  }
  .vct-branch-head {
    grid-template-columns: 48px minmax(0, 1fr) auto;
    padding: 13px;
  }
  .vct-branch-image {
    width: 48px;
    height: 45px;
  }
  .vct-level-1 {
    grid-template-columns: 1fr;
  }
  .vct-level-1 > .vct-node,
  .vct-level-1 > .vct-node:nth-child(odd) {
    border-right: 0;
    border-bottom: 1px solid #e8edf3;
  }
  .vct-level-1 > .vct-node:last-child {
    border-bottom: 0;
  }
  .vct-category-picker {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }
  .vct-category-tile {
    grid-template-columns: 45px minmax(0, 1fr);
    min-height: 70px;
    padding: 8px;
  }
  .vct-tile-image {
    width: 45px;
    height: 44px;
  }
  .vct-tile-image img {
    width: 40px;
    height: 38px;
  }
  .vct-tile-arrow {
    display: none;
  }
  .vct-panel-head {
    grid-template-columns: 54px minmax(0, 1fr) 34px;
    padding: 15px;
  }
  .vct-panel-image {
    width: 54px;
    height: 51px;
  }
  .vct-panel-head h3 {
    font-size: 19px;
  }
  .vct-category-panel > .vct-level-1 {
    grid-template-columns: 1fr;
  }
  .vct-category-panel > .vct-level-1 > .vct-node {
    border-right: 0;
  }
  .vct-seo {
    margin-top: 32px;
    padding: 22px 17px;
    border-radius: 17px;
  }
  .vct-seo-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 390px) {
  .vct-branch-label {
    display: none;
  }
  .vct-vehicle h1 {
    font-size: 21px;
  }
}

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

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

/* ══════════════════════════════════════
   SITE FOOTER
══════════════════════════════════════ */
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-about p {
  font-size: 13px;
  margin: 12px 0 16px;
  line-height: 1.65;
  max-width: 280px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
}
.footer-logo-mark {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  background: var(--primary-500);
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-logo-mark svg {
  width: 14px;
  height: 14px;
}
.footer-logo span {
  font-size: 17px;
  font-weight: 900;
  color: #111928;
  letter-spacing: -0.3px;
}

.footer-hours {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 16px;
}
.footer-hours-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}

.footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.pay-icon {
  background: white;
  border: 1px solid #d1d5db;
  border-radius: var(--radius-sm);
  padding: 4px 8px;
  font-size: 10px;
  font-weight: 700;
  color: #374151;
  letter-spacing: 0.3px;
}

.footer-col h5 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #111928;
  margin-bottom: 14px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-col ul li a {
  font-size: 13px;
  color: #6b7280;
  text-decoration: none;
  transition: color 0.12s;
}
.footer-col ul li a:hover {
  color: #111928;
}
.footer-col-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #9ca3af;
  margin-top: 20px;
  margin-bottom: 8px;
}
.footer-logistics {
}
.footer-carriers {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.carrier-icon {
  background: white;
  border: 1px solid #d1d5db;
  border-radius: var(--radius-sm);
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 800;
  color: #374151;
  letter-spacing: 0.5px;
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 24px;
  border-top: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #9ca3af;
}

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

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

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

/* ═══ PAGE CSS (original) ═══ */

:root {
  --p6: #1a56db;
  --p5: #1c64f2;
  --p1: #ebf5ff;
  --n10: #111928;
  --n9: #1f2a37;
  --n8: #374151;
  --n6: #6b7280;
  --n4: #9ca3af;
  --n2: #d1d5db;
  --n1: #f3f4f6;
  --n0: #f9fafb;
  --w: #fff;
  --s5: #057a55;
  --rm: 8px;
  --rxl: 16px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  background: var(--n0);
  color: var(--n10);
  line-height: 1.5;
}
a {
  color: inherit;
  text-decoration: none;
}
/* TOPBAR */
.topbar {
  background: var(--n9);
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
}
.topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 7px 24px;
  display: flex;
  justify-content: space-between;
}
.tb-links {
  display: flex;
  gap: 20px;
}
.tb-links a:hover {
  color: #fff;
}
/* HEADER */
.site-header {
  background: var(--w);
  border-bottom: 1px solid var(--n2);
  position: sticky;
  top: 0;
  z-index: 400;
  box-shadow: 0 1px 8px rgba(17, 25, 40, 0.06);
}
.hdr {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
}
.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--p5);
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-mark svg {
  width: 16px;
  height: 16px;
}
.logo-name {
  font-size: 18px;
  font-weight: 900;
  color: var(--n10);
  letter-spacing: -0.4px;
}
.search-bar {
  flex: 1;
  display: flex;
  border: 2px solid var(--n10);
  border-radius: var(--rm);
  overflow: hidden;
}
.search-inner {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
}
.search-ico {
  position: absolute;
  left: 12px;
  color: var(--n4);
  pointer-events: none;
}
.search-input {
  flex: 1;
  height: 44px;
  padding: 0 12px 0 40px;
  background: transparent;
  border: none;
  outline: none;
  font-size: 14px;
  font-family: "Inter", sans-serif;
}
.search-input::placeholder {
  color: var(--n4);
}
.search-btn {
  height: 44px;
  padding: 0 22px;
  background: var(--n10);
  color: #fff;
  border: none;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: "Inter", sans-serif;
}
.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;
}
.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);
}
/* LAYOUT */
.page-with-sidebar {
  display: grid;
  grid-template-columns: 268px 1fr;
  gap: 28px;
}
.vs-sidebar {
  position: sticky;
  top: 90px;
  align-self: start;
}
.full-cols {
  grid-column: 1 / -1;
}
/* SIDE CARD */
.side-card {
  background: var(--w);
  border: 1px solid var(--n2);
  border-radius: var(--rxl);
  overflow: hidden;
  margin-bottom: 12px;
}
.side-card-head {
  background: var(--n10);
  color: white;
  padding: 13px 16px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.side-card-body {
  padding: 16px;
}
.side-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.side-form label {
  font-size: 11px;
  color: var(--n6);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.side-form select {
  width: 100%;
  height: 44px;
  padding: 0 30px 0 12px;
  border: 1.5px solid var(--n2);
  border-radius: var(--rm);
  font-size: 14px;
  color: var(--n10);
  background: var(--w)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E")
    no-repeat right 10px center;
  cursor: pointer;
  outline: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  font-family: "Inter", sans-serif;
  transition: border-color 0.15s;
}
.side-form select:focus,
.side-form select:hover {
  border-color: var(--p5);
  outline: none;
  box-shadow: none;
}
.side-form-btn {
  width: 100%;
  height: 44px;
  background: var(--p5);
  color: white;
  border: none;
  border-radius: var(--rm);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
  transition:
    background 0.15s,
    color 0.15s;
}
.side-form-btn:hover {
  background: var(--p6);
  color: white;
}
.side-form-btn svg {
  color: white;
  flex-shrink: 0;
}
/* H1 */
h1.page-h1 {
  font-size: 22px;
  font-weight: 900;
  color: var(--n10);
  letter-spacing: -0.4px;
  margin-bottom: 20px;
  line-height: 1.3;
}
/* CATS GRID */
.cats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 12px;
}
.top-cat {
  background: var(--w);
  border: 1.5px solid var(--n2);
  border-radius: var(--rxl);
  padding: 18px 12px 14px;
  text-align: center;
  cursor: pointer;
  transition: all 0.15s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
}
.top-cat:hover {
  box-shadow: 0 4px 14px rgba(17, 25, 40, 0.09);
  border-color: var(--n4);
}
.top-cat.active {
  background: var(--w);
  border-color: var(--p5);
  border-width: 2.5px;
  box-shadow: 0 0 0 3px var(--p1);
}
.top-cat.active .top-cat-name {
  color: var(--p5);
  font-weight: 700;
}
.top-cat.active .top-cat-count {
  color: var(--p4);
}
.top-cat.active .top-cat-img {
  filter: none;
}
/* active indicator triangle */
.top-cat.active::after {
  content: "";
  position: absolute;
  bottom: -13px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 12px solid var(--p5);
  z-index: 2;
}
.top-cat-img {
  width: 80px;
  height: 64px;
  object-fit: contain;
}
.top-cat-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--n10);
  line-height: 1.2;
}
.top-cat-count {
  font-size: 11px;
  color: var(--n4);
}
/* INLINE PANEL — drops below the row */
.row-panel {
  display: none;
  background: var(--w);
  border: 1px solid var(--n2);
  border-radius: var(--rxl);
  padding: 0;
  margin-bottom: 12px;
  overflow: hidden;
  animation: slideDown 0.2s ease;
}
.row-panel.open {
  display: block;
}

/* SIDEBAR */
.vs-sidebar {
  position: sticky;
  top: 90px;
}
.side-card {
  background: var(--w);
  border: 1px solid var(--n2);
  border-radius: var(--rxl);
  overflow: hidden;
  margin-bottom: 12px;
}
.side-card-head {
  background: var(--n10);
  color: white;
  padding: 13px 16px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.side-card-body {
  padding: 16px;
}
.side-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.side-form label {
  font-size: 11px;
  color: var(--n6);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.side-form select {
  width: 100%;
  height: 44px;
  padding: 0 30px 0 12px;
  border: 1.5px solid var(--n2);
  border-radius: var(--rm);
  font-size: 14px;
  color: var(--n10);
  background: var(--w)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E")
    no-repeat right 10px center;
  cursor: pointer;
  outline: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  font-family: "Inter", sans-serif;
  transition: border-color 0.15s;
}
.side-form select:focus,
.side-form select:hover {
  border-color: var(--p5);
  outline: none;
  box-shadow: none;
}
.side-form-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;
}
.side-form-btn:hover {
  background: var(--p6);
}
.side-form-btn svg {
  color: white;
  flex-shrink: 0;
}
/* SIDEBAR NAV LINKS */
.side-nav-list {
  display: flex;
  flex-direction: column;
}
.side-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 16px;
  font-size: 13px;
  color: var(--n8);
  border-bottom: 1px solid var(--n1);
  text-decoration: none;
  transition: all 0.12s;
  cursor: pointer;
}
.side-nav-link:last-child {
  border-bottom: none;
}
.side-nav-link:hover {
  background: var(--n0);
  color: var(--p5);
}
.side-nav-link.active {
  background: var(--p1);
  color: var(--p6);
  font-weight: 700;
}
.side-nav-link.active .snl-arrow {
  color: var(--p5);
}
.snl-count {
  font-size: 11px;
  color: var(--n4);
}
.snl-arrow {
  font-size: 11px;
  color: var(--n4);
}

/* SIDEBAR L1/L2 NAV */
.side-l1-item {
  border-bottom: 1px solid var(--n1);
}
.side-l1-item:last-child {
  border-bottom: none;
}
.side-l1-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
}
.side-l1-link {
  flex: 1;
  display: block;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--n8);
  text-decoration: none;
  transition: color 0.12s;
}
.side-l1-link:hover {
  color: var(--p5);
}
.side-l1-link.active {
  color: var(--p6);
  font-weight: 700;
}
.side-l1-item.active .side-l1-head {
  background: var(--p1);
}
.side-l1-count {
  font-size: 11px;
  color: var(--n4);
  padding-right: 14px;
  flex-shrink: 0;
}
.side-l1-body {
  display: flex;
  flex-direction: column;
  background: var(--n0);
  padding: 4px 0 8px 0;
}

.side-l2-plain {
  font-size: 12px;
  color: var(--n6);
  padding: 6px 16px 6px 24px;
  border-left: 2px solid transparent;
  display: block;
  text-decoration: none;
  transition: all 0.12s;
}
.side-l2-plain:hover {
  color: var(--p5);
  border-left-color: var(--p5);
  background: white;
}
.side-l2-plain.active {
  color: var(--p6);
  font-weight: 600;
  border-left-color: var(--p5);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.inline-panel {
}
/* GROUPS */
.group {
  border-bottom: 1px solid var(--n2);
}
.group:last-child {
  border-bottom: none;
}
.group-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 20px;
  cursor: pointer;
  user-select: none;
  transition: background 0.12s;
}
.group-header:hover {
  background: var(--n0);
}
.group-header:hover .group-tag {
  background: var(--n2);
  color: var(--n10);
  border-color: var(--n2);
}
.group-title-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.group-tag {
  background: var(--n1);
  color: var(--n8);
  border: 1px solid var(--n2);
  border-radius: 99px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.15s;
}
.group-count {
  font-size: 12px;
  color: var(--n4);
}
.group-arrow {
  color: var(--n4);
  font-size: 14px;
  transition:
    transform 0.2s,
    color 0.15s;
}
.group.open .group-arrow {
  transform: rotate(180deg);
}
.group-body {
  display: none;
  padding: 4px 20px 16px;
}
.group.open .group-body.open {
  display: block;
}
.subcat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px 0;
  padding-top: 10px;
}
.subcat-link {
  font-size: 13px;
  color: var(--n8);
  padding: 7px 0;
  display: block;
  transition: color 0.12s;
  line-height: 1.4;
}
.subcat-link:hover {
  color: var(--p5);
}

/* SEO INTRO */
.seo-intro {
  margin-bottom: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--n2);
}
.seo-intro-text {
  font-size: 14px;
  color: var(--n6);
  line-height: 1.75;
  margin-bottom: 6px;
}
.seo-extra {
  display: none;
}
.seo-extra.open {
  display: inline;
}
.seo-toggle {
  font-size: 13px;
  font-weight: 700;
  color: var(--n10);
  cursor: pointer;
  background: none;
  border: none;
  font-family: "Inter", sans-serif;
  padding: 0;
  transition: color 0.12s;
}
.seo-toggle:hover {
  color: var(--p5);
}
/* FOOTER */

/* ─── TABLET ≤1024px ─── */
@media (max-width: 1024px) {
  .page-with-sidebar {
    grid-template-columns: 220px 1fr;
    gap: 20px;
  }
  .cats-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .brand-hero-stats {
    gap: 16px;
  }
}

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

  /* Page */
  .page {
    padding: 14px 14px 80px;
  }

  /* Sidebar — hidden on mobile, replaced by drawer */
  .page-with-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .vs-sidebar {
    display: none !important;
  }
  .vs-main {
    order: 1;
  }
  /* Brands grid — 3 cols on mobile */
  .brands-mobile-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  /* SEO blocks — remove sidebar offset on mobile */
  .seo-outer {
    padding-left: 0 !important;
    margin-left: 0 !important;
  }

  /* Cats grid */
  .cats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    width: 100%;
  }
  .top-cat {
    padding: 14px 10px 12px;
    width: 100%;
    box-sizing: border-box;
  }
  .top-cat-img {
    width: 70px;
    height: 70px;
  }
  .top-cat-name {
    font-size: 12px;
  }
  .top-cat-count {
    font-size: 10px;
  }

  /* Inline panel on mobile — opens after clicked row */
  .row-panel {
    width: 100%;
    box-sizing: border-box;
  }
  .subcat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .group-header {
    padding: 12px 16px;
  }
  .group-body {
    padding: 4px 16px 14px;
  }

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

/* ─── SMALL MOBILE ≤480px ─── */
@media (max-width: 480px) {
  .hdr-inner {
    padding: 8px 12px;
  }
  .page {
    padding: 12px 12px 80px;
  }
  .cats-row {
    gap: 8px;
  }
}

/* ─── VEHICLE BANNER ─── */
.vehicle-result-bar {
  background: var(--neutral-1000);
  color: white;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: var(--radius-xl, 16px);
  margin-bottom: 20px;
}
.vrb-icon {
  font-size: 22px;
  flex-shrink: 0;
}
.vrb-info {
  flex: 1;
  min-width: 0;
}
.vrb-title {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.2px;
  line-height: 1.3;
}
.vrb-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}
.vrb-change {
  font-size: 12px;
  font-weight: 700;
  color: white;
  cursor: pointer;
  white-space: nowrap;
  background: var(--primary-500);
  border: none;
  padding: 8px 18px;
  border-radius: 999px;
  transition: background 0.15s;
  font-family: "Inter", sans-serif;
  flex-shrink: 0;
}
.vrb-change:hover {
  background: var(--primary-600);
}
@media (max-width: 600px) {
  .vehicle-result-bar {
    flex-wrap: wrap;
    gap: 10px;
    padding: 12px 14px;
  }
  .vrb-title {
    font-size: 13px;
  }
  .vrb-change {
    width: 100%;
    text-align: center;
    padding: 9px 18px;
  }
}

/* ─── CHANGE VEHICLE MODAL ─── */
.cv-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1000;
  backdrop-filter: blur(2px);
}
.cv-overlay.open {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.cv-modal {
  background: white;
  border-radius: 16px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  animation: cvSlideIn 0.2s ease;
}
@keyframes cvSlideIn {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.cv-head {
  background: var(--neutral-1000);
  color: white;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cv-head-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cv-close {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.cv-close:hover {
  background: rgba(255, 255, 255, 0.25);
}
.cv-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cv-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.cv-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--neutral-600);
}
.cv-select {
  width: 100%;
  height: 46px;
  padding: 0 32px 0 12px;
  border: 1.5px solid var(--neutral-200);
  border-radius: 8px;
  font-size: 14px;
  color: var(--neutral-1000);
  background: white
    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;
  -webkit-appearance: none;
  appearance: none;
  font-family: "Inter", sans-serif;
  cursor: pointer;
  outline: none;
  transition: border-color 0.15s;
}
.cv-select:focus {
  border-color: var(--primary-500);
}
.cv-btn {
  width: 100%;
  height: 46px;
  background: var(--primary-500);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.15s;
  margin-top: 4px;
}
.cv-btn:hover {
  background: var(--primary-600);
}

/* ─── CATEGORIES DRAWER ─── */
.cats-drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 800;
  backdrop-filter: blur(2px);
}
.cats-drawer-overlay.open {
  display: block;
}

.cats-drawer {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 900;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.cats-drawer.open {
  transform: translateY(0);
}

.cats-drawer-head {
  background: var(--neutral-1000);
  color: #fff;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.cats-drawer-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cats-drawer-close {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
}
.cats-drawer-close:hover {
  background: rgba(255, 255, 255, 0.25);
}

.cats-drawer-body {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

/* Reuse existing side-l1 styles inside drawer */
.cats-drawer-body .side-l1-item {
  border-bottom: 1px solid var(--neutral-100);
}
.cats-drawer-body .side-l1-item:last-child {
  border-bottom: none;
}
.cats-drawer-body .side-l1-link {
  font-size: 15px;
  padding: 13px 16px;
}
.cats-drawer-body .side-l1-count {
  font-size: 12px;
  padding-right: 16px;
}
.cats-drawer-body .side-l2-plain {
  font-size: 13px;
  padding: 8px 16px 8px 28px;
}

/* ─── STICKY BOTTOM BAR (mobile) ─── */
.mobile-cats-bar {
  display: none;
}
@media (max-width: 768px) {
  .mobile-cats-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 700;
    padding: 10px 14px 14px;
    background: var(--white);
    border-top: 1px solid var(--neutral-200);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  }
  .mobile-cats-btn {
    flex: 1;
    height: 46px;
    background: var(--neutral-1000);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    font-family: "Inter", sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    letter-spacing: 0.2px;
  }
  .mobile-cats-btn:active {
    background: #000;
  }
  /* push page content above sticky bar */
  .page {
    padding-bottom: 90px !important;
  }
}

/* ─── SEO GRID ─── */
.seo-grid {
  display: grid;
  grid-template-columns: 268px 1fr;
  gap: 28px;
  max-width: 1280px;
}
.seo-grid-spacer {
  display: block;
}
.seo-grid > div:last-child {
  min-width: 0;
}
@media (max-width: 1024px) {
  .seo-grid {
    grid-template-columns: 220px 1fr;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .seo-grid {
    display: block;
  }
  .seo-grid-spacer {
    display: none;
  }
}
/* The catalogue page uses the live compatibility tree as its category source. */
.page-with-sidebar {
  grid-template-columns: minmax(0, 1fr) !important;
}
/* Distinct engine-level SEO guide */
.vct-vehicle-guide {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 35px;
}
.vct-vehicle-guide-copy h2 {
  margin: 5px 0 10px;
}
.vct-vehicle-guide-copy p {
  margin: 0 0 10px;
  color: #637187;
  font-size: 14px;
  line-height: 1.7;
}
.vct-vehicle-guide-cats {
  padding: 20px;
  border: 1px solid #dce5f0;
  border-radius: 16px;
  background: #fff;
}
.vct-vehicle-guide-cats h3 {
  margin: 0 0 13px;
  color: #172033;
  font-size: 15px;
}
.vct-vehicle-guide-cats ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.vct-vehicle-guide-cats li {
  padding: 7px 10px;
  border-radius: 9px;
  background: #f2f6fc;
  color: #435169;
  font-size: 11px;
  font-weight: 650;
}
@media (max-width: 720px) {
  .vct-vehicle-guide {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.vct-vehicle-guide-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-self: start;
  margin: 0;
  border: 1px solid #dce5f0;
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
}
.vct-vehicle-guide-facts > div {
  padding: 16px;
  border-right: 1px solid #edf1f5;
  border-bottom: 1px solid #edf1f5;
}
.vct-vehicle-guide-facts > div:nth-child(2n) {
  border-right: 0;
}
.vct-vehicle-guide-facts dt {
  color: #8290a3;
  font-size: 10px;
}
.vct-vehicle-guide-facts dd {
  margin: 5px 0 0;
  color: #334155;
  font-size: 13px;
  font-weight: 750;
}
@media (max-width: 720px) {
  .vct-vehicle-guide-facts {
    grid-template-columns: 1fr 1fr;
  }
}
.vct-system-page-link {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  color: #172033;
  text-decoration: none;
}
.vct-system-page-link small {
  color: #2964e8;
  font-size: 10px;
  font-weight: 750;
}
.vct-system-page-link:hover,
.vct-system-page-link:hover small {
  color: #174fc8;
}
.vct-category-landing {
  overflow: hidden;
  border: 1px solid #cbd9ed;
  border-radius: 19px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(31, 52, 84, 0.06);
}
.vct-category-landing > .vct-level-1 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.vct-back-catalogue {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 17px;
  border: 1px solid #cbd6e3;
  border-radius: 12px;
  background: #fff;
  color: #2964e8;
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}
@media (max-width: 1024px) {
  .vct-category-landing > .vct-level-1 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 720px) {
  .vct-category-landing > .vct-level-1 {
    grid-template-columns: 1fr;
  }
  .vct-system-page-link small {
    display: block;
    width: 100%;
  }
}

/* Accessible catalogue typography. These links are the main navigation of the
   vehicle catalogue, so they must not use auxiliary 10–12px text sizes. */
.vct-kicker {
  font-size: 12px;
}
.vct-specs small {
  font-size: 13px;
  color: #64748b;
}
.vct-specs strong {
  font-size: 15px;
  color: #263449;
}
.vct-vehicle-actions span,
.vct-vehicle-actions a {
  font-size: 14px;
}
.vct-panel-head p {
  font-size: 15px;
  color: #526178;
}
.vct-system-page-link small {
  font-size: 13px;
}
.vct-node-link,
.vct-node-title {
  min-height: 54px;
  font-size: 15px;
  line-height: 1.35;
}
.vct-level-2 .vct-node-link,
.vct-level-2 .vct-node-title {
  min-height: 40px;
  font-size: 14px;
  line-height: 1.4;
  color: #4b5b72;
}
.vct-level-3 .vct-node-link {
  font-size: 14px;
}
.vct-vehicle-guide-facts dt {
  font-size: 13px;
  color: #64748b;
}
.vct-vehicle-guide-facts dd {
  font-size: 16px;
  color: #263449;
}
@media (max-width: 720px) {
  .vct-kicker {
    font-size: 11px;
  }
  .vct-node-link,
  .vct-node-title {
    font-size: 15px;
  }
  .vct-level-2 .vct-node-link,
  .vct-level-2 .vct-node-title,
  .vct-level-3 .vct-node-link {
    font-size: 14px;
  }
}

/* Compact category hierarchy: this is navigation, not display typography. */
.vct-category-panel .vct-panel-head {
  padding: 16px 18px;
}
.vct-category-panel .vct-panel-head h3 {
  font-size: 20px;
  font-weight: 650;
  line-height: 1.25;
}
.vct-category-panel .vct-panel-head p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
}
.vct-category-panel .vct-kicker {
  font-size: 11px;
  font-weight: 650;
}
.vct-category-panel .vct-system-page-link small {
  font-size: 12px;
  font-weight: 600;
}
.vct-category-panel .vct-node-link,
.vct-category-panel .vct-node-title {
  min-height: 46px;
  padding: 9px 14px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}
.vct-category-panel .vct-level-2,
.vct-category-panel .vct-level-3 {
  padding-bottom: 8px;
}
.vct-category-panel .vct-level-2 .vct-node-link,
.vct-category-panel .vct-level-2 .vct-node-title,
.vct-category-panel .vct-level-3 .vct-node-link {
  min-height: 32px;
  padding: 5px 7px;
  color: #526178;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
}

@media (max-width: 720px) {
  .vct-category-panel .vct-panel-head h3 {
    font-size: 18px;
  }
  .vct-category-panel .vct-node-link,
  .vct-category-panel .vct-node-title {
    font-size: 14px;
  }
  .vct-category-panel .vct-level-2 .vct-node-link,
  .vct-category-panel .vct-level-2 .vct-node-title,
  .vct-category-panel .vct-level-3 .vct-node-link {
    font-size: 13px;
  }
}

/* Selected vehicle category: one clear introduction instead of three
   repeated headings. The hierarchy remains made of normal crawlable links. */
.vct-category-landing {
  margin-top: 24px;
}
.vct-category-landing-head {
  grid-template-columns: 65px minmax(0, 1fr) auto;
  padding: 18px 20px;
}
.vct-category-landing-head h2 {
  margin: 3px 0 0;
  color: #172033;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.vct-category-landing-head p {
  margin: 5px 0 0;
  color: #526178;
  font-size: 14px;
  line-height: 1.45;
}
.vct-category-landing .vct-node-link,
.vct-category-landing .vct-node-title {
  min-height: 46px;
  padding: 9px 14px;
  font-size: 14px;
  font-weight: 600;
}
.vct-category-landing .vct-level-2 .vct-node-link,
.vct-category-landing .vct-level-2 .vct-node-title,
.vct-category-landing .vct-level-3 .vct-node-link {
  min-height: 32px;
  padding: 5px 7px;
  color: #526178;
  font-size: 13px;
  font-weight: 500;
}
.vct-category-landing .vct-back-catalogue {
  white-space: nowrap;
}
@media (max-width: 720px) {
  .vct-category-landing {
    margin-top: 16px;
  }
  .vct-category-landing-head {
    grid-template-columns: 54px minmax(0, 1fr);
  }
  .vct-category-landing-head h2 {
    font-size: 20px;
  }
  .vct-category-landing-head .vct-back-catalogue {
    grid-column: 1/-1;
    justify-content: center;
    min-height: 42px;
  }
}

/* Match the homepage container instead of maintaining a separate page width. */
.vct-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) {
  .vct-page {
    width: min(1440px, calc(100% - 32px));
    padding-right: 0;
    padding-left: 0;
  }
}
@media (max-width: 700px) {
  .vct-page {
    width: calc(100% - 24px);
    padding-right: 0;
    padding-left: 0;
  }
}

/* Language-safe category labels. Catalogue category names can contain long
   compound words (especially in German); allow every locale to wrap them
   without hiding the text beneath the action arrow. */
.vct-category-tile .vct-tile-copy strong,
.vct-category-panel .vct-panel-head h3,
.vct-category-landing .vct-category-landing-head h2 {
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}
