/* Motors International — static build (no framework) */
:root {
  --brand-red: #e00000;
  --brand-red-dark: #b80000;
  --surface-dark: #1a1a1f;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --card-bg: #0d0d0d;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --max: 80rem;
  --slide-ms: 4000ms;
  --header-main: 5rem;
  --header-mfr: 3.25rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  background: #000;
  color: #fff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; margin: 0; padding: 0; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface-dark);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 5rem;
}
.logo-link { display: flex; align-items: center; gap: .75rem; }
.logo-link img { height: 2.5rem; width: auto; }
.logo-tag {
  display: none;
  font-size: .8rem;
  letter-spacing: .3em;
  color: rgba(255,255,255,.7);
  font-weight: 300;
}
@media (min-width: 640px) { .logo-tag { display: block; } }

.nav-main { display: none; gap: 2rem; font-size: .875rem; }
.nav-main a:hover { color: var(--brand-red); }
@media (min-width: 1024px) { .nav-main { display: flex; } }

.header-actions { display: flex; align-items: center; gap: .75rem; }

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  padding: 0.2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
}
.lang-switcher__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  padding: 0.35rem 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}
.lang-switcher__btn:hover {
  color: #fff;
}
.lang-switcher__btn.is-active {
  background: var(--brand-red);
  color: #fff;
}
.lang-switcher__sep {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.65rem;
  user-select: none;
}
.mobile-nav .lang-switcher {
  margin-bottom: 1rem;
  justify-content: center;
}
.search-box {
  display: none;
  align-items: center;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  padding: .5rem 1rem;
  width: 16rem;
}
.search-box input {
  background: transparent;
  border: 0;
  outline: 0;
  color: #fff;
  font-size: .875rem;
  width: 100%;
}
.search-box input::placeholder { color: rgba(255,255,255,.4); }
@media (min-width: 768px) { .search-box { display: flex; } }

.menu-toggle {
  display: flex;
  padding: .5rem;
  color: #fff;
}
@media (min-width: 1024px) { .menu-toggle { display: none; } }

.mfr-strip {
  display: none;
  border-top: 1px solid rgba(255,255,255,.05);
  background: rgba(0,0,0,.4);
  overflow-x: auto;
  scrollbar-width: none;
}
.mfr-strip::-webkit-scrollbar { display: none; }
.mfr-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem 1.5rem;
  padding: .75rem 1.5rem;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.7);
  white-space: nowrap;
}
.mfr-strip a:hover { color: var(--brand-red); }
@media (min-width: 768px) { .mfr-strip { display: block; } }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: .75rem;
  padding: 1rem 1.5rem 1.25rem;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .875rem;
}
.mobile-nav.is-open { display: flex; }

/* Hero slideshow */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: min(75vh, max(18rem, 56.25vw));
  min-height: 18rem;
}

/* Homepage: hero fills viewport below header (not cut off) */
body.page-home {
  --site-chrome: var(--header-main);
}
body.page-home:has(.site-header-v2) {
  --site-chrome: calc(4.15rem + 3.35rem);
}
@media (max-width: 1023px) {
  body.page-home:has(.site-header-v2) {
    --site-chrome: 3.7rem;
  }
}
@media (min-width: 1024px) {
  body.page-home:has(.site-header-v2) {
    --site-chrome: calc(7.25rem + 3.35rem + 0.35rem);
  }
  body.page-home:has(.mfr-strip) {
    --site-chrome: calc(var(--header-main) + var(--header-mfr));
  }
}
body.page-home .hero {
  height: calc(100svh - var(--site-chrome));
  height: calc(100dvh - var(--site-chrome));
  min-height: calc(100svh - var(--site-chrome));
  min-height: calc(100dvh - var(--site-chrome));
  max-height: calc(100dvh - var(--site-chrome));
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s ease-out, visibility 1.2s;
  z-index: 0;
}
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 10;
}
.hero-slide img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 50% 72%;
  transform: translate(-50%, -50%) scale(1.08);
  transition: transform 6s ease-out;
}
.hero-slide.is-active img {
  transform: translate(-50%, -50%) scale(1.12);
}

body.page-home .hero-slide img {
  object-position: 50% 65%;
  transform: translate(-50%, -50%) scale(1.04);
}
body.page-home .hero-slide.is-active img {
  transform: translate(-50%, -50%) scale(1.08);
}

.hero-overlay-r {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,.4) 50%, transparent 100%);
  pointer-events: none;
}
.hero-overlay-t {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.2) 0%, transparent 40%, rgba(0,0,0,.7) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 20;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 1.5rem clamp(2.5rem, 8vh, 5rem);
  max-width: 56rem;
}
@media (min-width: 768px) {
  .hero-content { padding: 0 clamp(2rem, 5vw, 4rem) clamp(3rem, 10vh, 5rem); }
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: .5em;
  text-transform: uppercase;
  color: var(--brand-red);
  margin: 0 0 1.25rem;
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity .7s .2s, transform .7s .2s;
}
.hero-slide.is-active .hero-eyebrow {
  opacity: 1;
  transform: translateY(0);
}

.hero-title {
  margin: 0;
  font-weight: 300;
  line-height: .95;
  letter-spacing: -.02em;
  font-size: clamp(1.75rem, 4vw + 1rem, 5rem);
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity .7s .3s, transform .7s .3s;
}
.hero-slide.is-active .hero-title { opacity: 1; transform: translateY(0); }
.hero-title em { font-style: italic; font-weight: 200; color: rgba(255,255,255,.8); }

.hero-meta {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem 1.5rem;
  font-size: .875rem;
  color: rgba(255,255,255,.7);
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity .7s .5s, transform .7s .5s;
}
.hero-slide.is-active .hero-meta { opacity: 1; transform: translateY(0); }
.hero-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,.4); }
.hero-meta .price { color: #fff; }

.hero-cta {
  margin-top: 2rem;
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity .7s .7s, transform .7s .7s;
}
.hero-slide.is-active .hero-cta { opacity: 1; transform: translateY(0); }

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #fff;
  color: #000;
  padding: .625rem 1.25rem;
  border-radius: 999px;
  font-size: .875rem;
  font-weight: 500;
  transition: background .2s, color .2s;
}
.btn-white:hover { background: var(--brand-red); color: #fff; }

/* Progress bar */
.hero-progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255,255,255,.1);
  z-index: 30;
}
.hero-progress-bar {
  height: 100%;
  width: 0;
  background: var(--brand-red);
}
.hero-progress-bar.is-running {
  animation: heroProgress var(--slide-ms) linear forwards;
}
@keyframes heroProgress {
  from { width: 0%; }
  to { width: 100%; }
}

/* Hero controls */
.hero-controls {
  position: absolute;
  bottom: clamp(1rem, 3vh, 1.5rem);
  right: clamp(1rem, 3vw, 1.5rem);
  z-index: 30;
  display: flex;
  gap: .5rem;
}
@media (min-width: 768px) { .hero-controls { right: clamp(2rem, 5vw, 4rem); } }
.hero-controls .ctrl-round {
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255,255,255,.65);
  background: rgba(8, 12, 18, .38);
  color: #fff;
  box-shadow: 0 3px 10px rgba(0,0,0,.3);
}
.hero-controls .ctrl-round:hover {
  border-color: #fff;
  background: rgba(224, 0, 0, .85);
}
.hero-controls .ctrl-round--arrow {
  padding: 0;
}
.hero-controls .ctrl-round--arrow svg {
  width: 1.15rem;
  height: 1.15rem;
  display: block;
  flex-shrink: 0;
}
#btn-play-pause svg {
  width: 1.05rem;
  height: 1.05rem;
  display: block;
}

.ctrl-round {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s, background .2s;
}
.ctrl-round:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.ctrl-round svg { width: 1rem; height: 1rem; fill: currentColor; }

.hero-dots {
  position: absolute;
  bottom: clamp(1.25rem, 3.5vh, 1.75rem);
  left: clamp(1rem, 3vw, 1.5rem);
  z-index: 30;
  display: flex;
  gap: .5rem;
  align-items: center;
}
@media (min-width: 768px) { .hero-dots { left: 4rem; } }

.hero-dot {
  height: 6px;
  width: 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,.3);
  transition: width .3s, background .3s;
}
.hero-dot.is-active { width: 2rem; background: var(--brand-red); }
.hero-dot:hover:not(.is-active) { background: rgba(255,255,255,.6); }

/* Offers rail — full cards only (no clipped edges) */
.offers {
  --offers-gap: 1.25rem;
  --offers-visible: 1;
  --offers-pad-x: 1.5rem;
  padding: 3.5rem 0 2.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
  background: #000;
}
@media (min-width: 520px) { .offers { --offers-visible: 2; } }
@media (min-width: 900px) { .offers { --offers-visible: 3; } }
@media (min-width: 1280px) { .offers { --offers-visible: 4; } }

.offers-head {
  margin-bottom: 2rem;
}
.offers-eyebrow {
  font-size: 11px;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--brand-red);
  margin: 0 0 .5rem;
}
/* Homepage OUR FLEET — "MS Auto" eyebrow only */
body.page-home #offers .offers-eyebrow {
  font-size: 14px;
  color: #fff;
}
.offers-title {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 300;
}

.offers-rail-wrap {
  container-type: inline-size;
  container-name: offers-rail;
  overflow: hidden;
  width: 100%;
}

.offers-rail {
  display: flex;
  gap: var(--offers-gap);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0 var(--offers-pad-x) .25rem;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.offers-rail::-webkit-scrollbar { display: none; }
@media (min-width: 1280px) {
  .offers {
    --offers-pad-x: max(1.5rem, calc((100vw - var(--max)) / 2 + 1.5rem));
  }
}

.offers-module-foot {
  position: relative;
  margin-top: 1.25rem;
  min-height: 2.75rem;
  padding: 0;
}

.offers-rail-nav {
  position: absolute;
  right: 10px;
  top: 0;
  z-index: 5;
  display: flex;
  gap: 0.5rem;
}

.offers-rail-btn {
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(8, 12, 18, 0.06);
  color: #1a1a1f;
}

html[data-theme="dark"] .offers-rail-btn {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(8, 12, 18, 0.38);
  color: #fff;
}

.offers-rail-btn:hover {
  border-color: var(--brand-red);
  background: var(--brand-red);
  color: #fff;
}

.offers-rail-btn svg {
  width: 1.15rem;
  height: 1.15rem;
  display: block;
  flex-shrink: 0;
}

.offers-empty {
  color: rgba(255, 255, 255, 0.6);
  padding: 2rem var(--offers-pad-x);
  margin: 0;
}

.offer-card {
  flex: 0 0 calc(
    (100cqi - (var(--offers-visible) - 1) * var(--offers-gap)) / var(--offers-visible)
  );
  max-width: calc(
    (100cqi - (var(--offers-visible) - 1) * var(--offers-gap)) / var(--offers-visible)
  );
  scroll-snap-align: start;
  scroll-snap-stop: always;
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: .75rem;
  overflow: hidden;
  transition: border-color .25s;
}
@supports not (width: 1cqi) {
  .offer-card {
    flex: 0 0 calc(
      (100vw - 2 * var(--offers-pad-x) - (var(--offers-visible) - 1) * var(--offers-gap)) / var(--offers-visible)
    );
    max-width: calc(
      (100vw - 2 * var(--offers-pad-x) - (var(--offers-visible) - 1) * var(--offers-gap)) / var(--offers-visible)
    );
  }
}
.offer-card:hover { border-color: rgba(224,0,0,.6); }

.offer-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #000;
}
.offer-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s;
}
.offer-card:hover .offer-card-img img { transform: scale(1.05); }
.offer-year {
  position: absolute;
  top: .75rem;
  left: .75rem;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(4px);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .12em;
  padding: .25rem .5rem;
  border-radius: 4px;
}
.offer-card-body { padding: 1.25rem; }
.offer-brand {
  font-size: .75rem;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0;
}
.offer-model {
  margin: .125rem 0 0;
  font-size: 1.125rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.offer-prices {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.offer-prices small { font-size: 11px; color: rgba(255,255,255,.5); display: block; }
.offer-gross { font-size: 1rem; font-weight: 500; margin: .125rem 0 0; }
.offer-net { font-size: 11px; color: var(--brand-red); margin-top: .25rem; }
.offer-foot {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  font-size: .75rem;
  color: rgba(255,255,255,.6);
}
.offer-foot .details { display: inline-flex; align-items: center; gap: .25rem; transition: color .2s; }
.offer-card:hover .offer-foot .details { color: var(--brand-red); }

.back-link {
  text-align: center;
  margin-top: 1.5rem;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .3em;
  color: rgba(255,255,255,.5);
}
.back-link:hover { color: #fff; }

/* Footer */
.site-footer {
  background: var(--surface-dark);
  color: rgba(255,255,255,.8);
  margin-top: 0;
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
  padding: 4rem 1.5rem;
}
@media (max-width: 1023px) {
  .site-footer .footer-grid {
    padding: 3rem 1.35rem;
  }
  .site-footer .footer-copy {
    padding-left: 1.35rem;
    padding-right: 1.35rem;
  }
}
@media (min-width: 992px) {
  .footer-grid {
    gap: 1.5rem;
    grid-template-columns: 1.45fr 1fr 1fr .8fr 1.2fr;
    align-items: start;
  }
}
.footer-logo {
  display: block;
  width: min(240px, 100%);
  height: auto;
  margin-bottom: 1rem;
}
.footer-about { font-size: .875rem; color: rgba(255,255,255,.6); max-width: 28rem; line-height: 1.6; margin: 0; }
.footer h4 {
  color: #fff;
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0 0 1rem;
}
.footer ul li { margin-bottom: .75rem; font-size: .875rem; }
.footer ul a:hover { color: var(--brand-red); }
.footer-contact li { display: flex; align-items: flex-start; gap: .5rem; }
.footer-contact svg { width: 1.3rem; height: 1.3rem; color: var(--brand-red); flex-shrink: 0; margin-top: .1rem; }
.footer-contact svg.footer-contact-icon--brand { fill: var(--brand-red); stroke: none; }
.footer-contact svg.footer-contact-icon--whatsapp {
  fill: #25d366;
  color: #25d366;
  stroke: none;
}
.footer-contact svg.footer-contact-icon--viber {
  fill: #7360f2;
  color: #7360f2;
  stroke: none;
}
.footer-hours li { margin-bottom: .5rem; font-size: .86rem; color: rgba(255,255,255,.8); }
.footer-social {
  display: flex;
  align-items: center;
  gap: .45rem;
}
.footer-social a {
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: .2rem;
  background: rgba(255,255,255,.04);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.9);
  font-size: .78rem;
  line-height: 1;
  transition: border-color .2s ease, color .2s ease, transform .2s ease;
}
.footer-social a:hover {
  border-color: var(--brand-red);
  color: var(--brand-red);
  transform: translateY(-1px);
}
.footer-social a svg {
  width: 1.1rem;
  height: 1.1rem;
  display: block;
}
.footer-instagram-handle {
  display: inline-block;
  margin-bottom: .8rem;
  font-size: .8rem;
  color: rgba(255,255,255,.75);
}
.footer-instagram-handle:hover { color: #fff; }
.footer-instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .35rem;
}
.footer-instagram-item {
  display: block;
  aspect-ratio: 1/1;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
}
.footer-instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease;
}
.footer-instagram-item:hover img { transform: scale(1.06); }
.footer-instagram-empty {
  grid-column: 1 / -1;
  font-size: .8rem;
  color: rgba(255,255,255,.6);
}
.footer-instagram-cta {
  margin-top: .7rem;
  display: inline-flex;
  align-items: center;
  padding: .35rem .65rem;
  border: 1px solid rgba(255,255,255,.2);
  font-size: .72rem;
  color: #fff;
}
.footer-instagram-cta:hover {
  border-color: var(--brand-red);
  color: var(--brand-red);
}
.footer-instagram-embed {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.2);
}
.footer-instagram-embed iframe {
  display: block;
  width: 100% !important;
  max-width: 100%;
  min-height: 280px;
  border: 0;
}
.footer-instagram-embed .snapwidget-widget,
.footer-instagram-embed .lightwidget-widget {
  width: 100% !important;
  max-width: 100%;
}
.footer-copy {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.5rem;
  text-align: center;
  font-size: .7rem;
  color: rgba(255,255,255,.4);
}

/* Manufacturers slider */
.manufacturers-section {
  padding: 3rem 0;
  background: #0b0d11;
  border-top: 1px solid rgba(255, 255, 255, .08);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
/* Homepage module titles (MANUFACTURERS, Find us, etc.) */
.home-section-head {
  text-align: center;
  margin-bottom: 1.2rem;
}
.home-section-title,
.manufacturers-head h2,
.find-us-head .home-section-title {
  margin: 0;
  color: #f8fafc;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.manufacturers-slider {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: .5rem;
}
.manufacturers-dots {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  margin-top: .35rem;
  padding-bottom: .1rem;
}
.manufacturers-dots[hidden] {
  display: none;
}
.manufacturers-dot {
  width: .5rem;
  height: .5rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .32);
  cursor: pointer;
  transition: width .25s ease, background .25s ease;
}
.manufacturers-dot.is-active {
  width: 1.5rem;
  background: var(--brand-red);
}
.manufacturers-dot:hover:not(.is-active) {
  background: rgba(255, 255, 255, .55);
}
.manufacturers-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 250px;
  gap: 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  padding: .35rem 0 .7rem;
}
.manufacturers-track.is-centered {
  justify-content: center;
  overflow-x: hidden;
}
.manufacturers-slider.has-few-items {
  grid-template-columns: 1fr;
}
.manufacturers-slider.has-few-items .manufacturers-nav {
  display: none;
}
.manufacturers-track::-webkit-scrollbar {
  display: none;
}
.manufacturer-item {
  width: 250px;
  height: 250px;
  flex-shrink: 0;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: .65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  box-sizing: border-box;
}
.manufacturer-item img {
  width: 100%;
  height: 100%;
  max-width: 250px;
  max-height: 250px;
  object-fit: contain;
}
.manufacturer-link {
  width: 100%;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.manufacturer-link:hover img {
  transform: scale(1.04);
}
.manufacturer-link img {
  transition: transform .2s ease;
}
.manufacturers-nav {
  flex-shrink: 0;
  border: 0;
  background: transparent;
  color: #e5e7eb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 .15rem;
  cursor: pointer;
  line-height: 1;
  transition: color .2s ease;
}
.manufacturers-nav svg {
  display: block;
  width: 2.75rem;
  height: 2.75rem;
}
.manufacturers-nav:hover {
  color: var(--brand-red);
}

/* Cookie consent */
.cookie-consent {
  position: fixed;
  left: 1.25rem;
  bottom: 1.25rem;
  z-index: 120;
  width: min(420px, calc(100vw - 2rem));
  background: #111827;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: .55rem;
  box-shadow: 0 16px 40px rgba(0,0,0,.38);
  padding: 1rem;
  color: rgba(255,255,255,.92);
}
.cookie-consent-text {
  margin: 0;
  font-size: .9rem;
  line-height: 1.5;
  color: rgba(255,255,255,.9);
}
.cookie-consent-actions {
  margin-top: .9rem;
  display: flex;
  gap: .65rem;
}
.cookie-consent-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.2rem;
  border-radius: .4rem;
  padding: 0 .9rem;
  border: 1px solid transparent;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.cookie-consent-btn--accept {
  background: var(--brand-red);
  border-color: var(--brand-red);
  color: #fff;
}
.cookie-consent-btn--accept:hover {
  background: var(--brand-red-dark);
  border-color: var(--brand-red-dark);
}
.cookie-consent-btn--policy {
  border-color: rgba(255,255,255,.28);
  color: #fff;
  text-decoration: none;
}
.cookie-consent-btn--policy:hover {
  border-color: rgba(255,255,255,.56);
  background: rgba(255,255,255,.06);
}
@media (max-width: 640px) {
  .cookie-consent {
    left: .75rem;
    right: .75rem;
    bottom: .75rem;
    width: auto;
  }
  .cookie-consent-actions {
    flex-direction: column;
  }
  .cookie-consent-btn {
    width: 100%;
  }
}

/* Banner slideshows — above Find us & bottom (image only, Hollmann-style) */
.banner-slideshow {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000;
}
.banner-slideshow--bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  /* Default: same proportions as .hero (non-homepage) */
  height: min(75vh, max(18rem, 56.25vw));
  min-height: 18rem;
}
body.page-home .banner-slideshow--bottom {
  flex-shrink: 0;
  display: block;
  width: var(--bottom-banner-width, 100%);
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  height: max(var(--bottom-banner-height, 10vh), 5.5rem);
  min-height: max(var(--bottom-banner-height, 10vh), 5.5rem);
  overflow: hidden;
}
.banner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.9s ease, visibility 0.9s;
  z-index: 0;
}
.banner-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.banner-slide img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 50% 72%;
  transform: translate(-50%, -50%) scale(1.08);
  display: block;
  transition: transform 6s ease-out;
}
.banner-slide.is-active img {
  transform: translate(-50%, -50%) scale(1.12);
}
body.page-home .banner-slideshow--bottom .banner-slide img {
  object-position: 50% 50%;
  transform: translate(-50%, -50%) scale(1);
}
body.page-home .banner-slideshow--bottom .banner-slide.is-active img {
  transform: translate(-50%, -50%) scale(1);
}
.banner-slide-link {
  position: absolute;
  inset: 0;
  display: block;
}
.banner-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  backdrop-filter: blur(6px);
  transition: background 0.2s, border-color 0.2s;
}
.banner-nav svg {
  width: 1.25rem;
  height: 1.25rem;
  display: block;
  flex-shrink: 0;
}
.banner-nav:hover {
  background: var(--brand-red);
  border-color: var(--brand-red);
}
.banner-nav.prev { left: 1rem; }
.banner-nav.next { right: 1rem; }
.banner-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.4rem;
}
.banner-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  transition: width 0.25s, background 0.25s;
}
.banner-dot.is-active {
  width: 1.5rem;
  background: var(--brand-red);
}

/* Find us — QR connect cards (homepage) */
.find-us {
  padding: 4rem 0 4.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #000;
}
.find-us-head {
  text-align: center;
  margin-bottom: 1.2rem;
}
.find-us-subtitle {
  margin: 0.75rem auto 0;
  max-width: 36rem;
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
}
.find-us-rail-wrap {
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 0 1.5rem 0.5rem;
}
.find-us-rail-wrap::-webkit-scrollbar {
  display: none;
}
@media (min-width: 1280px) {
  .find-us-rail-wrap {
    padding-left: max(1.5rem, calc((100vw - var(--max)) / 2 + 1.5rem));
    padding-right: max(1.5rem, calc((100vw - var(--max)) / 2 + 1.5rem));
  }
}
.find-us-rail {
  display: flex;
  gap: 1rem;
  justify-content: center;
  min-width: min-content;
  margin: 0 auto;
  max-width: var(--max);
}
@media (max-width: 899px) {
  .find-us-rail {
    justify-content: flex-start;
  }
}
.find-us-card {
  flex: 0 0 auto;
  width: clamp(7.5rem, 14vw, 9.5rem);
  display: flex;
  flex-direction: column;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.find-us-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}
.find-us-qr {
  background: #fff;
  padding: 0.65rem;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.find-us-qr img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.find-us-foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 0.5rem 1rem;
  min-height: 5.5rem;
  background: #0a0a0c;
  border: 1px solid rgba(224, 0, 0, 0.45);
  border-top: 0;
  text-align: center;
}
.find-us-icon-svg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  color: var(--brand-red);
}
.find-us-icon-svg svg {
  width: 100%;
  height: 100%;
}
.find-us-icon-img {
  width: 1.75rem;
  height: 1.75rem;
  object-fit: contain;
}
.find-us-label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-red);
  line-height: 1.3;
}

/* CMS pages — About, Blog, Contact */
.cms-page {
  padding: 3rem 0 4.5rem;
  background: #000;
  color: #fff;
}
.cms-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.5rem;
}
.cms-breadcrumb a:hover { color: #fff; }
.cms-head { margin-bottom: 2rem; }
.cms-sr-title {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.cms-title {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 300;
  letter-spacing: -0.02em;
}
.cms-intro,
.cms-body {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.75);
  max-width: 48rem;
}
.cms-body h2,
.cms-intro h2 {
  margin: 1.75rem 0 0.75rem;
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
}
.cms-body h3,
.cms-intro h3 {
  margin: 1.25rem 0 0.5rem;
  font-size: 1.2rem;
  font-weight: 500;
  color: #fff;
}
.cms-body p,
.cms-intro p { margin: 0 0 1rem; }
.cms-body ul,
.cms-intro ul {
  list-style: disc;
  margin: 0 0 1rem;
  padding: 0 0 0 1.5rem;
}
.cms-body ol,
.cms-intro ol {
  list-style: decimal;
  margin: 0 0 1rem;
  padding: 0 0 0 1.5rem;
}
.cms-body li,
.cms-intro li { margin-bottom: 0.35rem; }
.cms-body ul li::marker,
.cms-intro ul li::marker,
.cms-body ol li::marker,
.cms-intro ol li::marker {
  color: var(--brand-red);
}
.cms-body a,
.cms-intro a {
  color: var(--brand-red);
  text-decoration: underline;
}
.cms-body a:hover,
.cms-intro a:hover { color: #fff; }
.cms-body blockquote,
.cms-intro blockquote {
  margin: 1rem 0;
  padding-left: 1rem;
  border-left: 3px solid var(--brand-red);
  color: rgba(255, 255, 255, 0.65);
}
.cms-back { margin-top: 2.5rem; }
.cms-back a { color: rgba(255, 255, 255, 0.55); font-size: 0.875rem; }
.cms-back a:hover { color: var(--brand-red); }
.blog-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
.blog-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: 1.5rem;
  background: #0d0d0d;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.blog-card:hover {
  border-color: rgba(224, 0, 0, 0.45);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}
.blog-card-title {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 500;
}
.blog-card-title a:hover { color: var(--brand-red); }
.blog-card-excerpt {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}
.blog-card-date {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.75rem;
}
.blog-post-date {
  display: block;
  font-size: 0.75rem;
  color: var(--brand-red);
  margin-bottom: 0.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.blog-card-more {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
}
.blog-card-more:hover { color: var(--brand-red); }
.cms-pagination {
  margin-top: 2rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}
.cms-pagination a { color: #fff; }
.cms-pagination a:hover { color: var(--brand-red); }
.contact-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
  max-width: 48rem;
}
@media (min-width: 640px) {
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
}
.contact-layout {
  display: grid;
  gap: 1.25rem;
  align-items: start;
}
@media (min-width: 1100px) {
  .contact-layout {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, .9fr);
  }
}
.contact-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: 1.25rem;
  background: #0d0d0d;
}
.contact-card h2 {
  margin: 0 0 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-red);
}
.contact-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}
.contact-card a:hover { color: var(--brand-red); }
.contact-map-card {
  margin-top: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.75rem;
  padding: 1rem;
  background: #0d0d0d;
}
.contact-map-card h2 {
  margin: 0 0 .75rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-red);
}
.contact-map-frame {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: .5rem;
  overflow: hidden;
  background: #000;
}
.contact-map-frame iframe {
  width: 100%;
  height: min(50vh, 420px);
  border: 0;
  display: block;
}
.contact-map-link {
  display: inline-flex;
  margin-top: .75rem;
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.contact-map-link:hover {
  color: var(--brand-red);
}

/* Header v2 + listing/search tools */
.site-header-v2 {
  overflow: visible;
}
.site-header-v2 .site-topbar {
  background: #1a1f27;
  border-bottom: 1px solid rgba(255,255,255,.08);
  overflow: visible;
}
.site-topbar-row {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  padding-left: clamp(2.5rem, 6vw, 5rem);
  padding-right: clamp(2.5rem, 6vw, 5rem);
  box-sizing: border-box;
  min-height: 4.15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255,255,255,.75);
}
.site-topbar-side--left {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1 1 auto;
  min-width: 0;
  max-width: calc(50% - 5.5rem);
  padding-left: 1.35rem;
  padding-right: .5rem;
}
.site-topbar-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}
.site-topbar-center .top-logo {
  pointer-events: auto;
}
.site-topbar-side--right {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  flex: 0 0 auto;
  margin-left: auto;
  padding-left: .5rem;
  padding-right: 0;
}
.top-chip {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  flex-shrink: 0;
}
.top-chip .dot {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  background: var(--brand-red);
  border: none;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: .1rem;
}
.top-chip .dot svg {
  width: .72rem;
  height: .72rem;
  display: block;
}
.top-chip-text {
  line-height: 1.25;
  font-size: .58rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.92);
  font-weight: 500;
}
.top-chip-line {
  display: block;
  white-space: nowrap;
}
.top-chip-text small {
  display: block;
  color: var(--brand-red);
  font-size: .5rem;
  letter-spacing: .14em;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: .06rem;
}
.top-chip-text a {
  display: block;
  color: #fff;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: none;
  line-height: 1.1;
}
.top-chip-text a:hover { color: rgba(255,255,255,.85); }
.top-logo {
  display: inline-flex;
  flex-shrink: 0;
}
.top-logo img {
  height: 3.25rem !important;
  width: auto !important;
}
.site-topbar-social {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  flex-shrink: 0;
  padding-right: 1.35rem;
}
.site-topbar-social a {
  width: 1.28rem;
  height: 1.28rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.42);
  color: rgba(255,255,255,.85);
  font-size: .66rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.site-topbar-social a svg {
  width: .7rem;
  height: .7rem;
  display: block;
}
.site-topbar-social a:hover { color: var(--brand-red); }

@media (min-width: 1024px) {
  .site-topbar-row {
    min-height: 7.25rem;
    padding: .35rem 0;
  }
  .site-topbar-side--left {
    gap: 2.75rem;
    max-width: calc(50% - 10.5rem);
  }
  .top-logo img {
    height: 3.75rem !important;
  }
  .site-topbar-social {
    gap: 1rem;
  }
  .site-topbar-social a {
    width: 2.55rem;
    height: 2.55rem;
    border-width: 1.5px;
  }
  .site-topbar-social a svg {
    width: 1.15rem;
    height: 1.15rem;
  }
  .top-chip {
    gap: .85rem;
  }
  .top-chip .dot {
    width: 2.35rem;
    height: 2.35rem;
    margin-top: .15rem;
  }
  .top-chip .dot svg {
    width: 1.05rem;
    height: 1.05rem;
  }
  .top-chip-text {
    font-size: .62rem;
    letter-spacing: .04em;
    line-height: 1.3;
  }
  .top-chip-text small {
    font-size: .5rem;
    letter-spacing: .16em;
    margin-bottom: .08rem;
  }
  .top-chip-text a {
    font-size: 1.15rem;
    letter-spacing: .01em;
    white-space: nowrap;
  }
}

@media (min-width: 1280px) {
  .site-topbar-side--left {
    gap: 2.5rem;
    max-width: calc(50% - 10rem);
  }
  .top-logo img {
    height: 3.85rem !important;
  }
  .top-chip-text {
    font-size: .66rem;
  }
  .top-chip-text a {
    font-size: 1.25rem;
  }
}

@media (min-width: 1024px) and (max-width: 1279px) {
  .site-topbar-row {
    min-height: 6.1rem;
    padding-top: .2rem;
    padding-bottom: .2rem;
  }
  .site-topbar-side--left {
    gap: 1.5rem;
    max-width: calc(50% - 8.5rem);
  }
  .top-chip--location {
    display: none;
  }
  .top-chip-text {
    font-size: .58rem;
  }
  .top-chip-text a {
    font-size: 1.05rem;
  }
  .top-logo img {
    height: 3.15rem !important;
  }
  .site-topbar-social a {
    width: 1.95rem;
    height: 1.95rem;
  }
  .site-header-v2 .site-mainbar-row {
    min-height: 3rem;
    gap: .9rem;
  }
  .site-header-v2 .nav-main {
    gap: 0;
  }
  .site-header-v2 .nav-main a {
    font-size: .56rem;
    padding: .8rem .58rem;
  }
  .site-header-v2 .header-actions {
    gap: .8rem;
  }
  .site-header-v2 .search-open {
    height: 1.8rem;
    margin-left: .25rem;
    padding: 0 .55rem 0 .48rem;
  }
  .site-header-v2 .search-open-text {
    font-size: .62rem;
  }
}
.site-mainbar {
  background: #efefef;
  border-bottom: 1px solid #dcdcdc;
}
.site-mainbar-row {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-left: clamp(2.5rem, 6vw, 5rem);
  padding-right: clamp(2.5rem, 6vw, 5rem);
  box-sizing: border-box;
  min-height: 3.35rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: center;
}
.site-header-v2 .logo-link img { height: 2.25rem; width: auto; }
.site-header-v2 .logo-tag { display: none; }
.site-header-v2 .nav-main {
  display: inline-flex;
  align-items: center;
  gap: .2rem;
}
.site-header-v2 .nav-main a {
  font-size: .60rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 700;
  color: #242a31;
  padding: .92rem .9rem;
  border-radius: 0;
  line-height: 1.15;
}
.site-header-v2 .header-actions {
  gap: 8.3rem;
}
.site-header-v2 .nav-main a:hover,
.site-header-v2 .nav-main a[aria-current="page"] {
  background: var(--brand-red);
  color: #fff;
}
.site-header-v2 .lang-switcher {
  border: 0;
  background: transparent;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: .28rem;
}
.site-header-v2 .lang-switcher__btn {
  min-width: 0;
  padding: 0;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  opacity: .75;
  transition: opacity .2s, transform .2s;
}
.site-header-v2 .lang-switcher__btn:hover { opacity: 1; transform: translateY(-1px); }
.flag-image {
  width: 1.4rem;
  height: .9rem;
  object-fit: cover;
  border-radius: 0;
  display: block;
}
.site-header-v2 .lang-switcher__btn.is-active {
  opacity: 1;
}
.site-header-v2 .search-open {
  height: 2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .38rem;
  background: #fff;
  border: 1px solid #e0e2e7;
  color: var(--brand-red);
  font-size: .85rem;
  padding: 0 .7rem 0 .58rem;
  margin-left: 1rem;
}
.site-header-v2 .search-open svg {
  width: .88rem;
  height: .88rem;
}
.site-header-v2 .search-open-text {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1;
}
.site-header-v2 .search-open:hover { background: var(--brand-red); color: #fff; }
.site-header-v2 .menu-toggle { color: #1f2937; }
.mobile-call {
  display: none;
}
.mobile-top-actions {
  display: none;
}
.site-header-v2 .mfr-strip { display: none !important; }
.site-topbar-side a:hover { color: #fff; }

@media (max-width: 1023px) {
  .site-topbar-row {
    min-height: 3.7rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    padding-left: .65rem;
    padding-right: .65rem;
  }
  .site-topbar-side--left {
    display: flex;
    flex: 0 0 auto;
    max-width: initial;
    padding-left: 0;
    padding-right: 0;
    gap: 0;
  }
  .site-topbar-side--left .top-chip { display: none; }
  .site-topbar-center {
    position: absolute;
    inset: 0;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    transform: none;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    z-index: 1;
  }
  .site-topbar-center .top-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
  }
  .top-logo img { height: 2rem !important; }
  .site-topbar-side--right {
    flex: 0 0 auto;
    justify-content: flex-start;
    margin-left: 0;
    padding-left: 0;
    z-index: 2;
  }
  .site-topbar-social { display: none; }
  .mobile-top-actions {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
  }
  .mobile-top-actions--left { justify-content: flex-start; }
  .mobile-top-actions--left,
  .mobile-top-actions {
    position: relative;
    z-index: 2;
  }
  .site-header-v2 .nav-main { display: none; }
  .site-mainbar { display: none; }
  .site-header-v2 .site-mainbar-row > .header-actions .lang-switcher { display: none; }
  .mobile-nav .lang-switcher { display: inline-flex; }
  .site-mainbar-row { justify-content: space-between; }
  .site-header-v2 .search-open { display: none; }
  .mobile-top-actions .search-open {
    width: 2rem;
    height: 2rem;
    padding: 0;
    margin-left: 0;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    color: #1f2937;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .mobile-top-actions .search-open svg {
    width: .92rem;
    height: .9rem;
  }
  .site-header-v2 .search-open-text { display: none; }
  .mobile-top-actions .mobile-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-red);
    border: 0;
    background: transparent;
    width: 1.75rem;
    height: 1.75rem;
  }
  .mobile-top-actions .mobile-call svg {
    width: 1.22rem;
    height: 1.22rem;
    stroke-width: 2.15;
  }
  .mobile-top-actions .menu-toggle {
    color: var(--brand-red);
    border: 0;
    background: transparent;
    width: 1.75rem;
    height: 1.75rem;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .mobile-top-actions .menu-toggle svg {
    width: 1.22rem;
    height: 1.22rem;
    stroke-width: 2.15;
  }
  .site-header-v2 #mobile-nav.mobile-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: min(16.5rem, 88vw);
    background: linear-gradient(180deg, #1a1f27 0%, #151a22 100%);
    border-top: 1px solid rgba(255,255,255,.08);
    border-right: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 18px 35px rgba(0,0,0,.42);
    padding: .85rem .9rem 1rem;
    gap: .4rem;
    z-index: 130;
    clip-path: polygon(0 0, 90% 0, 100% 100%, 0 100%);
  }
  .site-header-v2 #mobile-nav.mobile-nav .lang-switcher {
    margin-bottom: .55rem;
    justify-content: flex-start;
    border: none;
    padding: 0;
    background: transparent;
  }
  .site-header-v2 #mobile-nav.mobile-nav a {
    display: block;
    font-size: 1.03rem;
    line-height: 1.35;
    padding: .36rem .2rem;
    color: rgba(255,255,255,.92);
    letter-spacing: .01em;
  }
  .site-header-v2 #mobile-nav.mobile-nav a:hover {
    color: #fff;
  }
  .site-header-v2 #mobile-nav.mobile-nav .mobile-nav-social {
    margin-top: .7rem;
    padding-top: .6rem;
    border-top: 1px solid rgba(255,255,255,.1);
    display: flex;
    gap: .5rem;
  }
  .site-header-v2 #mobile-nav.mobile-nav .mobile-nav-social a {
    width: 1.9rem;
    height: 1.9rem;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 999px;
    background: rgba(255,255,255,.06);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: rgba(255,255,255,.9);
  }
  .site-header-v2 #mobile-nav.mobile-nav .mobile-nav-social a svg {
    width: .9rem;
    height: .9rem;
  }
  .site-header-v2 #mobile-nav.mobile-nav .mobile-nav-social a:hover {
    color: #fff;
    border-color: var(--brand-red);
    background: var(--brand-red);
  }
  .offers {
    --offers-visible: 1;
  }
  .offers-module-foot {
    display: none;
  }
  .manufacturers-nav {
    display: none;
  }
  .manufacturers-section {
    padding: 2rem 0;
  }
  .manufacturers-slider {
    grid-template-columns: 1fr;
    gap: .25rem;
    container-type: inline-size;
    container-name: manufacturers-rail;
    overflow: hidden;
    width: 100%;
  }
  .manufacturers-dots {
    margin-top: .25rem;
  }
  .manufacturers-nav svg {
    width: 2.25rem;
    height: 2.25rem;
  }
  .manufacturers-track {
    --mfr-gap: .8rem;
    --mfr-visible: 1;
    width: 100%;
    gap: var(--mfr-gap);
    grid-auto-columns: calc(
      (100cqi - (var(--mfr-visible) - 1) * var(--mfr-gap)) / var(--mfr-visible)
    );
    scroll-snap-type: x mandatory;
  }
  .manufacturer-item {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
  .manufacturer-item img {
    max-width: 100%;
    max-height: 100%;
  }
  .find-us {
    --find-us-gap: 1rem;
    --find-us-visible: 1;
    --find-us-pad-x: 1.5rem;
  }
  .find-us-rail-wrap {
    overflow: hidden;
    container-type: inline-size;
    container-name: find-us-rail;
    padding-left: var(--find-us-pad-x);
    padding-right: var(--find-us-pad-x);
  }
  .find-us-rail {
    justify-content: flex-start;
    min-width: 0;
    max-width: none;
    margin: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
  }
  .find-us-rail::-webkit-scrollbar {
    display: none;
  }
  .find-us-card {
    flex: 0 0 calc(
      (100cqi - (var(--find-us-visible) - 1) * var(--find-us-gap)) / var(--find-us-visible)
    );
    max-width: calc(
      (100cqi - (var(--find-us-visible) - 1) * var(--find-us-gap)) / var(--find-us-visible)
    );
    width: auto;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
}

@media (min-width: 520px) and (max-width: 1023px) {
  .offers {
    --offers-visible: 2;
  }
  .manufacturers-track {
    --mfr-visible: 2;
  }
  .find-us {
    --find-us-visible: 2;
  }
}

@supports not (width: 1cqi) {
  @media (max-width: 1023px) {
    .manufacturers-track {
      grid-auto-columns: calc(
        (100vw - 3rem - (var(--mfr-visible) - 1) * var(--mfr-gap)) / var(--mfr-visible)
      );
    }
    .find-us-card {
      flex: 0 0 calc(
        (100vw - 2 * var(--find-us-pad-x) - (var(--find-us-visible) - 1) * var(--find-us-gap)) / var(--find-us-visible)
      );
      max-width: calc(
        (100vw - 2 * var(--find-us-pad-x) - (var(--find-us-visible) - 1) * var(--find-us-gap)) / var(--find-us-visible)
      );
    }
  }
}

.search-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
}
.search-modal.is-open { display: block; }
.search-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,12,16,.62);
  backdrop-filter: blur(3px);
}
.search-modal-panel {
  position: relative;
  z-index: 2;
  width: min(52rem, calc(100% - 2rem));
  margin: 10vh auto 0;
  padding: 1.5rem;
  background: #fff;
  border-radius: .75rem;
}
.search-modal-panel ::selection {
  background: var(--brand-red);
  color: #fff;
}
.search-modal-panel ::-moz-selection {
  background: var(--brand-red);
  color: #fff;
}
.search-modal-panel h3 {
  margin: 0 0 .85rem;
  font-size: .8rem;
  letter-spacing: .2em;
  color: #111827;
}
.search-modal-close {
  position: absolute;
  right: .7rem;
  top: .4rem;
  font-size: 1.6rem;
  color: #4b5563;
}
.search-modal-grid {
  display: grid;
  gap: .8rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 880px) { .search-modal-grid { grid-template-columns: 1fr; } }
.search-modal-grid label span {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  margin-bottom: .35rem;
  color: #374151;
}
.search-modal-text-row {
  display: block;
  margin-top: .8rem;
  position: relative;
}
.search-modal-text-row span {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  margin-bottom: .35rem;
  color: #1f2937;
}
.search-modal-grid input,
.search-modal-grid select,
.search-modal-text-row input,
.listing-filters input,
.listing-filters select {
  width: 100%;
  height: 2.5rem;
  border: 1px solid #d1d5db;
  border-radius: .55rem;
  padding: 0 .8rem;
  font-size: .9rem;
  color: #111827;
  background: #fff;
}
.search-modal-text-row input {
  height: 3.1rem;
  font-size: 1rem;
  color: #111827;
  background: #fff;
}
.search-modal-text-row input::placeholder {
  color: #6b7280;
  opacity: 1;
}
.search-suggest {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + .25rem);
  z-index: 5;
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: .45rem;
  box-shadow: 0 8px 20px rgba(15, 23, 42, .12);
  max-height: 13rem;
  overflow: auto;
}
.search-suggest-item {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  padding: .55rem .75rem;
  font-size: .9rem;
  color: #111827;
}
.search-suggest-item:hover {
  background: #f3f4f6;
}
.search-modal-submit {
  margin-top: .9rem;
  height: 2.55rem;
  border-radius: .55rem;
  background: var(--brand-red);
  color: #fff;
  font-weight: 700;
  padding: 0 1.2rem;
}
.listing-filters button {
  margin-top: 0;
  height: 2.55rem;
  width: 100%;
  border-radius: .55rem;
  background: var(--brand-red);
  color: #fff;
  font-weight: 700;
  padding: 0 1.2rem;
}
.listings-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 1rem;
  transition: grid-template-columns .22s ease, gap .22s ease;
}
.listings-layout.is-filters-collapsed {
  grid-template-columns: 0 minmax(0, 1fr);
  gap: 0;
}
.listing-sidebar {
  background: #f3f4f6;
  border: 1px solid #dde2e8;
  border-radius: .2rem;
  padding: 0;
  align-self: start;
  min-width: 0;
  overflow: hidden;
  transition: opacity .18s ease, transform .22s ease, padding .22s ease, border-width .22s ease;
}
.listing-sidebar-head {
  min-height: 2.8rem;
  background: #1b222d;
  color: #fff;
  display: flex;
  align-items: center;
  gap: .45rem;
  padding: 0 .75rem;
  font-size: .72rem;
  letter-spacing: .02em;
  font-weight: 700;
  text-transform: none;
}
.listing-sidebar-head svg {
  width: .9rem;
  height: .9rem;
}
.listings-layout.is-filters-collapsed .listing-sidebar {
  opacity: 0;
  transform: translateX(-14px);
  pointer-events: none;
  padding: 0;
  border-width: 0;
}
.listing-filters {
  display: grid;
  gap: .38rem;
  padding: .65rem;
}
.price-range-control {
  --price-start: 0%;
  --price-end: 100%;
  border: 1px solid #cfd5dd;
  border-radius: .2rem;
  padding: .55rem .62rem .62rem;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}
.price-range-label {
  font-size: .62rem;
  font-weight: 700;
  color: #6b7280;
  margin-bottom: .18rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1;
}
.price-range-values {
  font-size: .72rem;
  color: #0f172a;
  margin-bottom: .32rem;
  font-weight: 700;
  line-height: 1;
}
.price-range-sliders {
  position: relative;
  height: 1.15rem;
  margin-top: .15rem;
  --price-track-y: 50%;
}
/* Track on the center line */
.price-range-sliders::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: var(--price-track-y);
  transform: translateY(-50%);
  height: 3px;
  background: #cbd5e1;
  border-radius: 99px;
  z-index: 0;
}
.price-range-sliders::after {
  content: "";
  position: absolute;
  top: var(--price-track-y);
  transform: translateY(-50%);
  height: 3px;
  left: var(--price-start);
  right: calc(100% - var(--price-end));
  background: var(--brand-red);
  border-radius: 99px;
  z-index: 1;
}
.price-range-sliders input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  background: transparent;
  pointer-events: none;
  padding: 0;
  border: 0;
  z-index: 2;
}
.price-range-sliders input[type="range"]::-webkit-slider-runnable-track {
  height: 3px;
  background: transparent;
  border-radius: 99px;
}
.price-range-sliders input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: .9rem;
  height: .9rem;
  border-radius: 999px;
  background: var(--brand-red);
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px rgba(15,23,42,.22), 0 2px 4px rgba(15,23,42,.2);
  pointer-events: auto;
  cursor: grab;
  /* Knob sits ON the line — bottom touches track, bulk above */
  margin-top: calc(-0.45rem + 1px);
  z-index: 3;
}
.price-range-sliders input[type="range"]::-webkit-slider-thumb:active {
  cursor: grabbing;
}
.price-range-sliders input[type="range"]::-moz-range-track {
  height: 3px;
  background: transparent;
  border: 0;
}
.price-range-sliders input[type="range"]::-moz-range-thumb {
  width: .9rem;
  height: .9rem;
  border: 2px solid #fff;
  border-radius: 999px;
  background: var(--brand-red);
  box-shadow: 0 0 0 1px rgba(15,23,42,.22), 0 2px 4px rgba(15,23,42,.2);
  pointer-events: auto;
  cursor: grab;
  transform: translateY(calc(-0.45rem + 1px));
}
.listing-filters select,
.listing-filters input[type="text"] {
  width: 100%;
  height: 1.95rem;
  border: 1px solid #d9dee5;
  border-radius: .1rem;
  background: #e9edf2;
  color: #313945;
  font-size: .68rem;
  padding: 0 .6rem;
}
.listing-filters .listing-keyword {
  height: 2.05rem;
  background: #edf1f5;
}
.listing-filters button {
  margin-top: .3rem;
  height: 2.05rem;
  width: 100%;
  border-radius: .1rem;
  background: var(--brand-red);
  color: #fff;
  font-weight: 700;
  letter-spacing: .01em;
}
.listing-results-head {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .8rem;
  margin-bottom: .5rem;
}
.listing-filters-toggle {
  margin-right: auto;
  width: 2rem;
  height: 1.9rem;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: .25rem;
  background: transparent;
  color: rgba(255,255,255,.82);
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .1rem;
}
.listing-filters-toggle:hover {
  border-color: rgba(255,255,255,.38);
  color: #fff;
}
.listing-filters-toggle-icon {
  width: .82rem;
  height: .82rem;
}
.listing-filters-toggle-chevron {
  width: .66rem;
  height: .66rem;
  transition: transform .2s ease;
}
.listing-filters-toggle.is-collapsed .listing-filters-toggle-chevron {
  transform: rotate(180deg);
}
.listing-results-head select {
  height: 1.8rem;
  border: 1px solid #dde2e8;
  border-radius: .1rem;
  background: #fff;
  color: #374151;
  font-size: .68rem;
  padding: 0 .5rem;
}
.listing-view-toggle {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.listing-view-toggle a {
  width: 1.3rem;
  height: 1.3rem;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.38);
  background: transparent;
}
.listing-view-toggle a svg {
  width: .95rem;
  height: .95rem;
}
.listing-view-toggle a:hover { color: rgba(255,255,255,.75); }
.listing-view-toggle a.is-active { color: var(--brand-red); }
@media (max-width: 1100px) {
  .listings-layout {
    grid-template-columns: 1fr;
  }
  .listings-layout.is-filters-collapsed .listing-sidebar {
    display: none;
  }
  .listing-sidebar {
    padding: .65rem;
  }
  .listing-results-head {
    justify-content: space-between;
  }
}
@media (max-width: 640px) {
  .listing-results-head {
    flex-wrap: wrap;
  }
}
/* Listings / new-arrivals page (not homepage offers rail) */
section.car-listings.offers {
  border-top: none;
  padding-bottom: 2.5rem;
}
html[data-theme="dark"] section.car-listings.offers {
  background: #0a0a0c;
}
.listing-results {
  min-width: 0;
  padding-bottom: 0.5rem;
}
.pagination-wrap {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid #dfe4ea;
  clear: both;
}
.listing-pagination {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.listing-pagination-summary {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  text-align: center;
  color: #6b7280;
}
.listing-pagination-summary strong {
  font-weight: 600;
  color: inherit;
}
.pagination-wrap ul.pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.pagination-wrap ul.pagination li {
  margin: 0;
}
.pagination-wrap ul.pagination a,
.pagination-wrap ul.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.35rem;
  height: 2.35rem;
  padding: 0 0.55rem;
  border: 1px solid #d1d5db;
  border-radius: 0.25rem;
  background: #fff;
  color: #1f2937;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}
.pagination-wrap ul.pagination a:hover {
  border-color: #1f2937;
  color: var(--brand-red);
}
.pagination-wrap ul.pagination li.active span {
  background: var(--brand-red);
  border-color: var(--brand-red);
  color: #fff;
}
.pagination-wrap ul.pagination li.disabled span {
  background: #f3f4f6;
  border-color: #e5e7eb;
  color: #9ca3af;
  cursor: default;
}
html[data-theme="dark"] .pagination-wrap {
  border-top-color: rgba(255, 255, 255, 0.12);
}
html[data-theme="dark"] .listing-pagination-summary {
  color: rgba(255, 255, 255, 0.65);
}
html[data-theme="dark"] .pagination-wrap ul.pagination a,
html[data-theme="dark"] .pagination-wrap ul.pagination span {
  background: #161c26;
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.9);
}
html[data-theme="dark"] .pagination-wrap ul.pagination a:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--brand-red);
}
html[data-theme="dark"] .pagination-wrap ul.pagination li.disabled span {
  background: #121820;
  border-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.35);
}
html[data-theme="dark"] .pagination-wrap ul.pagination li.active span {
  background: var(--brand-red);
  border-color: var(--brand-red);
  color: #fff;
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
}
body > main {
  flex: 1 0 auto;
}

.vehicle-list { display: grid; gap: 1rem; }
.vehicle-row {
  display: grid;
  grid-template-columns: 190px 1fr 128px;
  gap: .8rem;
  align-items: center;
  border-bottom: 1px solid #dfe4ea;
  padding: .7rem 0;
  background: transparent;
}
.vehicle-row-img img { width: 100%; height: 104px; object-fit: cover; display: block; border-radius: .1rem; }
.vehicle-row-body { padding: 0; display: grid; gap: .45rem; align-content: center; }
.vehicle-row-title { margin: 0; font-size: 1.95rem; font-weight: 700; color: #1f2937; line-height: 1.1; }
.vehicle-row-specs { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: .35rem; }
.vehicle-row-specs span { font-size: .62rem; color: #1f2937; display: grid; gap: .05rem; }
.vehicle-row-specs small { font-size: .52rem; color: #7b8390; text-transform: uppercase; letter-spacing: .06em; }
.vehicle-row-meta { margin: 0; font-size: .64rem; color: #5f6773; }
.vehicle-row-meta strong { color: #d61f2c; font-weight: 600; }
.vehicle-row-price-col { display: flex; justify-content: flex-end; }
.vehicle-row-price-tag {
  display: inline-block;
  background: var(--brand-red);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: .45rem .85rem;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
}
@media (max-width: 800px) {
  .vehicle-row { grid-template-columns: 1fr; }
  .vehicle-row-img img { height: 170px; }
  .vehicle-row-specs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .vehicle-row-price-col { justify-content: flex-start; }
}

/* Dark theme readability tuning for listings */
html[data-theme="dark"] .listing-sidebar {
  background: #131722;
  border-color: rgba(255,255,255,.14);
}
html[data-theme="dark"] .listing-sidebar-head {
  background: #1d2431;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
html[data-theme="dark"] .listing-filters select,
html[data-theme="dark"] .listing-filters input[type="text"] {
  background: #1a202b;
  border-color: rgba(255,255,255,.12);
  color: rgba(255,255,255,.92);
}
html[data-theme="dark"] .listing-filters .listing-keyword {
  background: #171d27;
  color: rgba(255,255,255,.92);
}
html[data-theme="dark"] .price-range-control {
  background: linear-gradient(180deg, #1a2230 0%, #161d29 100%);
  border-color: rgba(255,255,255,.14);
}
html[data-theme="dark"] .price-range-label {
  color: rgba(255,255,255,.72);
}
html[data-theme="dark"] .price-range-values {
  color: #fff;
}
html[data-theme="dark"] .price-range-sliders::before {
  background: rgba(255,255,255,.24);
}
html[data-theme="dark"] .listing-results-head select {
  background: #161c26;
  border-color: rgba(255,255,255,.18);
  color: rgba(255,255,255,.92);
}
html[data-theme="dark"] .listing-filters-toggle {
  border-color: rgba(255,255,255,.2);
  background: transparent;
  color: rgba(255,255,255,.82);
}
html[data-theme="dark"] .listing-filters-toggle:hover {
  border-color: rgba(255,255,255,.38);
  color: #fff;
}
html[data-theme="dark"] .listing-view-toggle a {
  color: rgba(255,255,255,.38);
}
html[data-theme="dark"] .listing-view-toggle a:hover {
  color: rgba(255,255,255,.75);
}
html[data-theme="dark"] .listing-view-toggle a.is-active {
  color: var(--brand-red);
}
html[data-theme="dark"] .vehicle-row {
  border-bottom-color: rgba(255,255,255,.16);
}
html[data-theme="dark"] .vehicle-row-title {
  color: #f3f4f6;
}
html[data-theme="dark"] .vehicle-row-specs span {
  color: rgba(255,255,255,.88);
}
html[data-theme="dark"] .vehicle-row-specs small {
  color: rgba(255,255,255,.55);
}
html[data-theme="dark"] .vehicle-row-meta {
  color: rgba(255,255,255,.72);
}
html[data-theme="dark"] .vehicle-row-meta strong {
  color: #ff4d57;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero-slide, .hero-slide img, .hero-eyebrow, .hero-title, .hero-meta, .hero-cta,
  .offer-card-img img { transition: none; animation: none; }
  .hero-slide img,
  .hero-slide.is-active img { transform: translate(-50%, -50%) scale(1.05); }
  .hero-progress-bar.is-running { animation: none; width: 100%; }
}
