:root {
  --bg: #f4f8ff;
  --panel: rgba(255, 255, 255, 0.94);
  --panel-soft: rgba(239, 246, 255, 0.96);
  --panel-muted: rgba(37, 99, 235, 0.06);
  --line: rgba(30, 64, 175, 0.14);
  --line-strong: rgba(37, 99, 235, 0.28);
  --text: #10233f;
  --muted: #5d6f8f;
  --muted-strong: #28415f;
  --red: #2563eb;
  --red-strong: #1d4ed8;
  --teal: #0284c7;
  --shadow: 0 24px 60px rgba(37, 99, 235, 0.13);
  --blue-soft: #eaf2ff;
  --blue-pale: #f7fbff;
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: min(1440px, calc(100vw - 64px));
}

.product-card-actions {
  display: grid;
  gap: 10px;
}

.vehicle-detail-section {
  padding: 36px 0 18px;
}

.vehicle-detail-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  gap: 24px;
  align-items: stretch;
}

.vehicle-detail-copy,
.vehicle-detail-media,
.vehicle-spec-card,
.vehicle-gallery-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    var(--panel);
  box-shadow: var(--shadow);
}

.vehicle-detail-copy {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 26px;
}

.vehicle-detail-copy h1 {
  font-family: "Bebas Neue", cursive;
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 0.9;
  letter-spacing: 0.03em;
}

.vehicle-detail-intro {
  color: var(--muted-strong);
  font-size: 0.98rem;
  line-height: 1.75;
}

.vehicle-detail-price {
  margin-top: 4px;
}

.vehicle-detail-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 480px;
  overflow: hidden;
  padding: 34px;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.16), transparent 30%),
    radial-gradient(circle at 84% 16%, rgba(227, 29, 47, 0.2), transparent 24%),
    linear-gradient(180deg, rgba(20, 31, 41, 0.98), rgba(12, 22, 29, 0.92));
}

.vehicle-detail-media::before {
  content: "";
  position: absolute;
  inset: auto -16% 8% 8%;
  height: 42%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(227, 29, 47, 0.4), rgba(255, 255, 255, 0));
  filter: blur(44px);
}

.vehicle-detail-image {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  max-height: 520px;
  object-fit: contain;
}

.vehicle-spec-section,
.vehicle-gallery-section {
  padding: 18px 0 10px;
}

.vehicle-spec-card {
  padding: 24px;
  color: var(--muted-strong);
  font-size: 0.96rem;
  line-height: 1.75;
}

.vehicle-spec-card p + p {
  margin-top: 12px;
}

.vehicle-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.vehicle-gallery-item {
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.vehicle-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1120px) {
  .vehicle-detail-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .vehicle-detail-section {
    padding-top: 24px;
  }

  .vehicle-detail-copy {
    padding: 20px;
  }

  .vehicle-detail-media {
    min-height: 320px;
    padding: 22px;
  }

  .vehicle-gallery-grid {
    grid-template-columns: 1fr;
  }
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.14), transparent 32%),
    radial-gradient(circle at top right, rgba(14, 165, 233, 0.14), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f4f8ff 48%, #eaf2ff 100%);
}

body.sales-popup-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.05) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.32), transparent 80%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

section[id] {
  scroll-margin-top: 120px;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-shell {
  position: relative;
  overflow-x: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding-top: 12px;
  transition:
    transform 0.28s ease,
    padding-top 0.28s ease,
    background-color 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
  border-bottom: 1px solid rgba(15, 42, 74, 0.06);
  background: rgba(236, 243, 252, 0.78);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  padding-top: 18px;
  transform: translateY(8px);
  background: rgba(236, 243, 252, 0.92);
  border-bottom-color: rgba(15, 42, 74, 0.08);
}

.header-shell {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 18px;
  border: 1px solid rgba(15, 42, 74, 0.06);
  border-radius: 22px;
  background: rgba(236, 243, 252, 0.88);
  box-shadow: 0 10px 30px rgba(15, 42, 74, 0.05);
}

.site-header.is-scrolled .header-shell {
  box-shadow: 0 14px 32px rgba(15, 42, 74, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 14px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.92),
    0 8px 20px rgba(15, 42, 74, 0.08);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy {
  min-width: 0;
}

.brand-copy strong {
  display: block;
  font-family: "Bebas Neue", cursive;
  font-size: 1.88rem;
  letter-spacing: 0.08em;
  line-height: 0.95;
}

.brand-copy span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(15, 42, 74, 0.06);
  border-radius: 999px;
  background: rgba(236, 243, 252, 0.82);
}

.site-nav a,
.footer-link {
  color: #486074;
  font-size: 0.9rem;
  font-weight: 700;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #10233f;
  background: rgba(15, 42, 74, 0.06);
  transform: translateY(-1px);
}

.footer-link:hover,
.footer-link:focus-visible {
  color: #fff;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--red), var(--red-strong));
  color: #fff;
  box-shadow: 0 18px 34px rgba(227, 29, 47, 0.2);
}

.button-secondary {
  border-color: rgba(15, 42, 74, 0.08);
  background: rgba(255, 255, 255, 0.82);
  color: #10233f;
  box-shadow: 0 10px 24px rgba(15, 42, 74, 0.06);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(15, 42, 74, 0.12);
  background: rgba(255, 255, 255, 0.96);
}

.button-block {
  width: 100%;
}

.header-button {
  flex-shrink: 0;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.header-contact-button {
  min-width: 142px;
}

.sales-popup-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(15, 42, 74, 0.28);
  backdrop-filter: blur(8px);
}

.sales-popup-backdrop[hidden] {
  display: none;
}

.sales-popup {
  position: fixed;
  top: 104px;
  right: max(24px, calc((100vw - var(--container)) / 2));
  z-index: 81;
  width: min(420px, calc(100vw - 32px));
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 70px rgba(37, 99, 235, 0.22);
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.22s ease,
    opacity 0.22s ease;
}

body.sales-popup-open .sales-popup {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.sales-popup[aria-hidden="true"] {
  visibility: hidden;
}

body.sales-popup-open .sales-popup[aria-hidden="false"] {
  visibility: visible;
}

.sales-popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: 999px;
  background: #fff;
  color: #1d4ed8;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.sales-popup-profile {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding-right: 34px;
}

.sales-popup-photo {
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: 20px;
  background: rgba(37, 99, 235, 0.06);
}

.sales-popup-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sales-popup-copy {
  display: grid;
  gap: 8px;
}

.sales-popup-copy h2 {
  color: #0f2a4a;
  font-size: 1.5rem;
}

.sales-popup-copy p {
  color: var(--muted-strong);
}

.sales-popup-list {
  display: grid;
  gap: 10px;
}

.sales-popup-list div {
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 16px;
  background: rgba(37, 99, 235, 0.05);
}

.sales-popup-list dt {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sales-popup-list dd {
  color: #10233f;
  font-weight: 800;
  line-height: 1.45;
}

.sales-popup-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.section-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 8px 14px;
  border: 1px solid rgba(255, 104, 116, 0.18);
  border-radius: 999px;
  background: rgba(227, 29, 47, 0.12);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-banner {
  padding: 24px 0 8px;
}

.hero-copy h1,
.section-heading h2,
.hero-product-head h2,
.product-head h3,
.media-fallback strong {
  font-family: "Bebas Neue", cursive;
  letter-spacing: 0.03em;
}

.banner-slider {
  position: relative;
  width: 100%;
}

.banner-slider-viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 1293 / 628;
  min-height: 220px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--panel-soft);
  box-shadow: var(--shadow);
}

.banner-slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.banner-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition:
    transform 0.45s ease,
    opacity 0.45s ease;
}

.banner-slide.is-active {
  z-index: 2;
  opacity: 1;
  transform: translateX(0);
}

.banner-slide.is-prev {
  transform: translateX(-8%);
}

.banner-slide.is-next {
  transform: translateX(8%);
}

.banner-slide.is-hidden {
  transform: translateX(8%);
  pointer-events: none;
}

.banner-slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.banner-dot {
  width: 18px;
  height: 7px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  cursor: pointer;
  transition:
    width 0.24s ease,
    background-color 0.24s ease,
    transform 0.24s ease;
}

.banner-dot:hover,
.banner-dot:focus-visible {
  transform: translateY(-1px);
}

.banner-dot.is-active {
  width: 52px;
  background: linear-gradient(135deg, var(--red), #ff7b87);
}

.hero {
  padding: 12px 0 18px;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 24px;
  align-items: start;
}

.hero-copy {
  padding-top: 12px;
  animation: rise-in 0.7s ease both;
}

.hero-copy h1 {
  margin-top: 16px;
  max-width: 11ch;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.92;
}

.hero-copy p {
  margin-top: 14px;
  max-width: 56ch;
  color: var(--muted-strong);
  font-size: 0.94rem;
  line-height: 1.65;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.service-item {
  min-height: 104px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(11, 21, 27, 0.9);
  box-shadow: var(--shadow);
}

.service-item strong {
  display: block;
  font-size: 0.94rem;
  font-weight: 800;
}

.service-item span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.hero-product-card,
.product-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    var(--panel);
  box-shadow: var(--shadow);
}

.hero-product-card {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.14fr);
  gap: 18px;
  padding: 22px;
  animation: rise-in 0.85s ease both;
}

.hero-product-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-product-head small {
  display: block;
  color: var(--teal);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-product-head h2 {
  margin-top: 8px;
  font-size: clamp(2.7rem, 5vw, 4.4rem);
  line-height: 0.92;
}

.hero-product-note {
  color: var(--muted-strong);
  font-size: 0.9rem;
  line-height: 1.65;
}

.hero-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.product-section {
  padding: 16px 0 10px;
}

.testimonial-section {
  padding: 16px 0 10px;
}

.delivery-section {
  padding: 18px 0 10px;
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
}

.section-heading h2 {
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  line-height: 0.94;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.product-grid-actions {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.product-grid-toggle {
  width: min(100%, 260px);
}

.product-slider-shell {
  position: relative;
  overflow: hidden;
}

.product-slider-track {
  display: flex;
  gap: 14px;
  padding: 2px 0 10px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.product-card {
  overflow: hidden;
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease;
}

.product-card:hover,
.product-card:focus-within {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: 0 30px 76px rgba(0, 0, 0, 0.42);
}

.product-card-slider,
.product-card-compact {
  min-width: 0;
}

.product-card-slider {
  flex: 0 0 calc((100% - (var(--cards-per-view, 4) - 1) * 14px) / var(--cards-per-view, 4));
}

.product-card-slider .product-card-body,
.product-card-compact .product-card-body {
  display: grid;
  gap: 12px;
  padding: 14px;
}

.product-card-slider .product-card-body {
  gap: 10px;
  padding: 12px;
}

.product-card-slider .product-head,
.product-card-compact .product-head {
  gap: 10px;
}

.product-card-slider .product-head h3,
.product-card-compact .product-head h3 {
  font-size: 1.48rem;
  line-height: 0.96;
}

.product-card-slider .product-head h3 {
  font-size: 1.26rem;
}

.product-card-slider .product-label,
.product-card-compact .product-label {
  min-height: 30px;
  padding: 0 11px;
  font-size: 0.68rem;
}

.product-card-slider .button,
.product-card-compact .button {
  min-height: 42px;
  font-size: 0.8rem;
}

.product-card-slider .button {
  min-height: 38px;
  padding: 0 14px;
}

.product-slider-dots,
.testimonial-slider-dots,
.delivery-slider-dots,
.article-slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
}

.product-slider-dot,
.testimonial-slider-dot,
.delivery-slider-dot,
.article-slider-dot {
  width: 18px;
  height: 7px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  cursor: pointer;
  transition:
    width 0.24s ease,
    background-color 0.24s ease,
    transform 0.24s ease;
}

.product-slider-dot:hover,
.product-slider-dot:focus-visible,
.testimonial-slider-dot:hover,
.testimonial-slider-dot:focus-visible,
.delivery-slider-dot:hover,
.delivery-slider-dot:focus-visible,
.article-slider-dot:hover,
.article-slider-dot:focus-visible {
  transform: translateY(-1px);
}

.product-slider-dot.is-active,
.testimonial-slider-dot.is-active,
.delivery-slider-dot.is-active,
.article-slider-dot.is-active {
  width: 52px;
  background: linear-gradient(135deg, var(--red), #ff7b87);
}

.product-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 32px;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-label-highlight {
  background: rgba(227, 29, 47, 0.12);
  border-color: rgba(255, 104, 116, 0.2);
}

.product-head {
  display: grid;
  gap: 12px;
}

.price-list {
  display: grid;
  gap: 10px;
}

.price-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: var(--panel-muted);
}

.price-list dt {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
}

.price-list dd {
  color: #fff;
  text-align: right;
  font-size: 0.84rem;
  font-weight: 800;
}

.compact-price-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.compact-price-item {
  display: grid;
  gap: 4px;
  padding: 9px 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: var(--panel-muted);
}

.compact-price-item small {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.compact-price-item strong {
  color: #fff;
  font-size: 0.74rem;
  line-height: 1.35;
  font-weight: 800;
}

.product-price-row {
  display: grid;
  gap: 4px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(227, 29, 47, 0.14), rgba(227, 29, 47, 0.06)),
    rgba(255, 255, 255, 0.03);
}

.product-price-row small {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-price-row strong {
  color: #fff;
  font-size: 0.98rem;
  line-height: 1.3;
  font-weight: 800;
}

.product-media {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 18px;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.16), transparent 30%),
    radial-gradient(circle at 84% 16%, rgba(227, 29, 47, 0.2), transparent 24%),
    linear-gradient(180deg, rgba(20, 31, 41, 0.98), rgba(12, 22, 29, 0.92));
}

.product-media::before {
  content: "";
  position: absolute;
  inset: auto -16% 10% 8%;
  height: 44%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(227, 29, 47, 0.4), rgba(255, 255, 255, 0));
  filter: blur(40px);
}

.product-media::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
}

.product-media-hero {
  min-height: 100%;
}

.product-media-slider,
.product-media-compact {
  aspect-ratio: 16 / 13;
  min-height: 170px;
}

.product-media-slider {
  aspect-ratio: 16 / 10;
  min-height: 138px;
  padding: 14px;
}

.product-media-hero {
  aspect-ratio: auto;
}

.banner-media {
  position: relative;
  display: block;
  height: 100%;
  width: 100%;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(227, 29, 47, 0.22), rgba(255, 255, 255, 0.04)),
    linear-gradient(180deg, rgba(18, 30, 39, 0.98), rgba(12, 22, 29, 0.94));
}

.banner-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.2)),
    radial-gradient(circle at center, transparent 20%, rgba(0, 0, 0, 0.15) 100%);
}

.banner-image {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: fill;
  object-position: center;
}

.media-badge,
.media-hint {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  border-radius: 999px;
  font-weight: 800;
}

.media-badge {
  top: 16px;
  left: 16px;
  min-height: 30px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.media-hint {
  right: 16px;
  bottom: 16px;
  min-height: 30px;
  padding: 0 12px;
  background: rgba(7, 17, 22, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted-strong);
  font-size: 0.68rem;
}

.product-card-slider .media-hint {
  display: none;
}

.product-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  filter: drop-shadow(0 22px 38px rgba(0, 0, 0, 0.42));
}

.product-media.is-fallback {
  display: flex;
  align-items: flex-end;
}

.banner-media.is-fallback {
  background:
    linear-gradient(135deg, rgba(227, 29, 47, 0.18), rgba(255, 255, 255, 0.04)),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.04) 0,
      rgba(255, 255, 255, 0.04) 24px,
      rgba(255, 255, 255, 0.01) 24px,
      rgba(255, 255, 255, 0.01) 48px
    ),
    linear-gradient(180deg, rgba(18, 30, 39, 0.98), rgba(12, 22, 29, 0.94));
}

.media-fallback {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100%;
  width: 100%;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: 20px;
}

.media-fallback small,
.media-fallback span {
  color: var(--muted-strong);
  font-size: 0.8rem;
  line-height: 1.5;
}

.media-fallback strong {
  font-size: clamp(2.1rem, 5vw, 3.2rem);
  line-height: 0.92;
}

.testimonial-slider-shell {
  position: relative;
  overflow: hidden;
}

.testimonial-slider-track {
  display: flex;
  gap: 14px;
  padding: 2px 0 10px;
  transition: transform 0.55s ease;
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 calc((100% - (var(--testimonial-cards-per-view, 5) - 1) * 14px) / var(--testimonial-cards-per-view, 5));
  display: grid;
  align-content: start;
  gap: 16px;
  min-width: 0;
  min-height: 190px;
  padding: 20px 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    var(--panel);
  box-shadow: var(--shadow);
}

.testimonial-rating {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(227, 29, 47, 0.12);
  border: 1px solid rgba(255, 104, 116, 0.18);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.testimonial-message {
  color: var(--muted-strong);
  font-size: 0.84rem;
  line-height: 1.65;
  min-height: calc(1.65em * 2);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.testimonial-meta {
  display: grid;
  gap: 4px;
  margin-top: auto;
}

.testimonial-meta strong {
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
}

.testimonial-meta span,
.testimonial-meta small {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.5;
}

.testimonial-meta small {
  color: var(--teal);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.delivery-slider-shell {
  position: relative;
  overflow: hidden;
}

.delivery-slider-track {
  display: flex;
  gap: 14px;
  padding: 2px 0 10px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.delivery-card {
  position: relative;
  flex: 0 0 calc((100% - (var(--delivery-cards-per-view, 3) - 1) * 14px) / var(--delivery-cards-per-view, 3));
  min-width: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel);
  box-shadow: var(--shadow);
  transition:
    transform 0.24s ease,
    border-color 0.24s ease;
}

.delivery-card:hover,
.delivery-card:focus-within {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}

.delivery-card::after {
  content: "";
  position: absolute;
  inset: 42% 0 0;
  background: linear-gradient(180deg, rgba(7, 17, 22, 0), rgba(7, 17, 22, 0.92));
  pointer-events: none;
}

.delivery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.delivery-card-copy {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  display: grid;
  gap: 6px;
}

.delivery-card-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(227, 29, 47, 0.14);
  border: 1px solid rgba(255, 104, 116, 0.2);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.delivery-card-copy strong {
  color: #fff;
  font-size: 1.04rem;
  font-weight: 800;
}

.delivery-card-copy small {
  color: var(--muted-strong);
  font-size: 0.78rem;
  line-height: 1.45;
}

.site-footer {
  padding: 42px 0 52px;
}

.footer-shell {
  display: grid;
  gap: 18px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 0.9fr));
  gap: 14px;
}

.footer-brand-card,
.footer-column {
  min-width: 0;
  padding: 22px 20px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    var(--panel);
  box-shadow: var(--shadow);
}

.footer-brand-card {
  display: grid;
  align-content: start;
  gap: 18px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  width: fit-content;
}

.footer-brand-mark {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  padding: 10px;
  border-radius: 20px;
  background: #fff;
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.92),
    0 14px 28px rgba(0, 0, 0, 0.2);
}

.footer-brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-brand-copy strong {
  display: block;
  font-family: "Bebas Neue", cursive;
  font-size: 2rem;
  letter-spacing: 0.06em;
  line-height: 0.94;
}

.footer-brand-copy span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-description,
.footer-text,
.footer-meta,
.footer-bottom p {
  color: var(--muted);
  line-height: 1.7;
}

.footer-description,
.footer-text {
  font-size: 0.92rem;
}

.footer-cta {
  width: fit-content;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-title {
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-meta {
  font-size: 0.8rem;
}

.footer-column .footer-link {
  display: inline-flex;
  width: fit-content;
  font-size: 0.88rem;
  line-height: 1.5;
}

.footer-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 4px 4px 0;
}

.footer-bottom p {
  font-size: 0.82rem;
}

.mobile-bottom-nav,
.mobile-sheet,
.mobile-sheet-backdrop {
  display: none;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1120px) {
  .header-shell,
  .hero-shell,
  .hero-product-card {
    grid-template-columns: 1fr;
  }

  .header-shell {
    display: grid;
    padding: 14px 16px;
  }

  .site-nav {
    justify-content: flex-start;
    width: fit-content;
  }

  .product-media-hero {
    min-height: 340px;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand-card {
    grid-column: 1 / -1;
  }
}

@media (max-width: 980px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-card-slider {
    flex-basis: calc((100% - (var(--cards-per-view, 3) - 1) * 14px) / var(--cards-per-view, 3));
  }

  .testimonial-card {
    flex-basis: calc((100% - (var(--testimonial-cards-per-view, 3) - 1) * 14px) / var(--testimonial-cards-per-view, 3));
  }

  .product-card-slider .product-head h3 {
    font-size: 1.16rem;
  }
}

@media (max-width: 760px) {
  body.mobile-sheet-open {
    overflow: hidden;
  }

  .hero-banner {
    padding-top: 20px;
  }

  .hero-copy h1,
  .section-heading h2 {
    max-width: none;
  }

  .banner-slider-viewport {
    aspect-ratio: 1293 / 628;
    min-height: 190px;
    max-height: none;
  }

  .banner-slide.is-active {
    transform: translateX(0);
  }

  .banner-slide.is-prev {
    transform: translateX(-10%);
    opacity: 0;
    pointer-events: none;
  }

  .banner-slide.is-next,
  .banner-slide.is-hidden {
    transform: translateX(10%);
    opacity: 0;
    pointer-events: none;
  }

  .service-strip {
    grid-template-columns: 1fr;
  }

  .hero-action-row {
    flex-direction: column;
  }

  .hero-action-row .button,
  .header-button {
    width: 100%;
  }

  .header-actions {
    width: 100%;
  }

  .header-contact-button {
    display: none;
  }

  .site-nav {
    gap: 14px;
  }

  .site-nav a {
    font-size: 0.86rem;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-card-slider {
    flex-basis: calc((100% - (var(--cards-per-view, 2) - 1) * 14px) / var(--cards-per-view, 2));
  }

  .product-card-slider .product-head h3 {
    font-size: 1.06rem;
  }

  .testimonial-card {
    flex-basis: calc((100% - (var(--testimonial-cards-per-view, 2) - 1) * 14px) / var(--testimonial-cards-per-view, 2));
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .mobile-bottom-nav {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 56;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    background: rgba(10, 18, 24, 0.94);
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.34);
  }

  .mobile-bottom-item {
    display: grid;
    justify-items: center;
    gap: 6px;
    min-width: 0;
    padding: 8px 6px;
    border: 0;
    border-radius: 18px;
    background: transparent;
    color: #fff;
    text-align: center;
  }

  .mobile-bottom-item-menu {
    cursor: pointer;
  }

  .mobile-bottom-item span:last-child {
    font-size: 0.68rem;
    font-weight: 800;
    line-height: 1.3;
  }

  .mobile-bottom-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
  }

  .mobile-bottom-icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
  }

  .mobile-sheet-backdrop {
    position: fixed;
    inset: 0;
    z-index: 54;
    background: rgba(3, 8, 12, 0.56);
    backdrop-filter: blur(6px);
  }

  .mobile-sheet-backdrop[hidden] {
    display: none;
  }

  .mobile-sheet {
    position: fixed;
    right: 0;
    bottom: calc(96px + env(safe-area-inset-bottom, 0px));
    left: 0;
    z-index: 55;
    display: block;
    padding: 14px 16px 20px;
    border-top-left-radius: 28px;
    border-top-right-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
      linear-gradient(180deg, rgba(18, 30, 39, 0.98), rgba(11, 20, 27, 0.98)),
      var(--panel);
    box-shadow: 0 -24px 40px rgba(0, 0, 0, 0.28);
    transform: translateY(110%);
    transition: transform 0.28s ease;
    max-height: min(74vh, 780px);
    overflow-y: auto;
    scroll-padding-bottom: 20px;
  }

  .mobile-sheet::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 180px;
    pointer-events: none;
    background:
      radial-gradient(circle at top center, rgba(227, 29, 47, 0.16), transparent 54%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent);
  }

  body.mobile-sheet-open .mobile-sheet {
    transform: translateY(0);
  }

  .mobile-sheet-handle {
    width: 62px;
    height: 6px;
    margin: 0 auto 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
  }

  .mobile-sheet-profile-card {
    position: relative;
    display: grid;
    gap: 14px;
    margin-bottom: 16px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03)),
      rgba(255, 255, 255, 0.02);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  }

  .mobile-sheet-portrait {
    display: flex;
    justify-content: center;
  }

  .mobile-sheet-portrait-photo {
    position: relative;
    width: min(100%, 180px);
    aspect-ratio: 3 / 4;
    display: block;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.04);
  }

  .mobile-sheet-portrait-photo::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 36%;
    background: linear-gradient(180deg, rgba(7, 17, 22, 0), rgba(7, 17, 22, 0.38));
    pointer-events: none;
  }

  .mobile-sheet-portrait-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .mobile-sheet-profile-copy {
    display: grid;
    gap: 4px;
    text-align: center;
  }

  .mobile-sheet-profile-copy strong {
    font-size: 1.06rem;
    font-weight: 800;
  }

  .mobile-sheet-profile-copy span {
    color: var(--muted);
    font-size: 0.8rem;
  }

  .mobile-sheet-profile-copy p {
    margin-top: 4px;
    color: var(--muted-strong);
    font-size: 0.78rem;
    line-height: 1.6;
  }

  .mobile-sheet-contacts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .mobile-sheet-contact-card {
    display: grid;
    align-content: center;
    min-height: 64px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03)),
      rgba(255, 255, 255, 0.03);
  }

  .mobile-sheet-contact-label {
    color: var(--muted);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .mobile-sheet-contact-card strong {
    margin-top: 4px;
    color: #fff;
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .mobile-sheet-menu {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    padding-bottom: 10px;
  }

  .mobile-sheet-link {
    display: grid;
    justify-items: center;
    align-content: start;
    gap: 8px;
    min-height: 96px;
    padding: 12px 8px 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
      rgba(255, 255, 255, 0.03);
    font-size: 0.72rem;
    font-weight: 800;
    text-align: center;
    line-height: 1.35;
  }

  .mobile-sheet-link-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(227, 29, 47, 0.12);
    border: 1px solid rgba(255, 104, 116, 0.18);
    color: #fff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  .site-footer {
    padding-bottom: 112px;
  }
}

@media (max-width: 540px) {
  .container {
    width: min(100vw - 24px, 1180px);
  }

  .brand-copy strong {
    font-size: 1.6rem;
  }

  .banner-slider-viewport {
    aspect-ratio: 1293 / 628;
    min-height: 170px;
  }

  .hero-product-card {
    padding: 18px;
  }

  .product-media-hero {
    min-height: 300px;
  }

  .product-media-slider,
  .product-media-compact {
    min-height: 145px;
  }

  .product-media-slider {
    min-height: 124px;
    padding: 12px;
  }

  .product-card-slider .product-card-body,
  .product-card-compact .product-card-body {
    padding: 12px;
    gap: 10px;
  }

  .product-card-slider .product-head h3,
  .product-card-compact .product-head h3 {
    font-size: 1.18rem;
  }

  .product-card-slider .product-head h3 {
    font-size: 0.98rem;
  }

  .product-card-slider .product-label,
  .product-card-compact .product-label {
    font-size: 0.62rem;
  }

  .compact-price-list {
    gap: 6px;
  }

  .compact-price-item {
    padding: 8px;
  }

  .compact-price-item strong {
    font-size: 0.66rem;
  }

  .testimonial-card {
    min-height: 180px;
    padding: 16px 14px;
  }

  .testimonial-message {
    font-size: 0.8rem;
  }

  .delivery-card {
    aspect-ratio: 4 / 5.4;
  }

  .footer-brand,
  .footer-cta {
    width: 100%;
  }

  .footer-menu-grid {
    grid-template-columns: 1fr;
  }

  .product-media-compact {
    padding: 14px;
  }

  .price-list div {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 10px 12px;
  }

  .price-list dd {
    text-align: left;
    font-size: 0.78rem;
  }

  .media-badge,
  .media-hint {
    font-size: 0.62rem;
  }

  .mobile-bottom-nav {
    left: 8px;
    right: 8px;
    bottom: 8px;
    gap: 8px;
    padding: 8px;
  }

  .mobile-bottom-item span:last-child {
    font-size: 0.62rem;
  }

  .mobile-bottom-icon {
    width: 38px;
    height: 38px;
  }

  .mobile-sheet-profile-card {
    padding: 12px;
  }

  .mobile-sheet {
    bottom: calc(86px + env(safe-area-inset-bottom, 0px));
    padding: 12px 14px 18px;
    max-height: min(76vh, 780px);
    scroll-padding-bottom: 18px;
  }

  .mobile-sheet-portrait-photo {
    width: min(100%, 156px);
  }

  .mobile-sheet-contacts {
    grid-template-columns: 1fr;
  }

  .mobile-sheet-link {
    min-height: 88px;
    font-size: 0.66rem;
  }

  .mobile-sheet-link-icon {
    width: 38px;
    height: 38px;
  }
}

/* White and blue visual theme overrides. */
.vehicle-detail-copy,
.vehicle-detail-media,
.vehicle-spec-card,
.vehicle-gallery-item,
.service-item,
.hero-product-card,
.product-card,
.testimonial-card,
.footer-brand-card,
.footer-column {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 255, 0.92)),
    var(--panel);
  border-color: var(--line);
  box-shadow: var(--shadow);
}

.vehicle-detail-media,
.product-media {
  background:
    radial-gradient(circle at 18% 16%, rgba(37, 99, 235, 0.14), transparent 30%),
    radial-gradient(circle at 84% 18%, rgba(14, 165, 233, 0.16), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #eaf2ff 100%);
}

.product-media-hero,
.product-media-slider,
.product-media-compact {
  background: #ffffff;
}

.vehicle-detail-media::before,
.product-media::before {
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.26), rgba(255, 255, 255, 0));
}

.product-media::after {
  border-color: rgba(37, 99, 235, 0.12);
}

.product-media-hero::before,
.product-media-slider::before,
.product-media-compact::before {
  background: none;
  filter: none;
}

.product-media-hero::after,
.product-media-slider::after,
.product-media-compact::after {
  border-color: rgba(37, 99, 235, 0.1);
}

.button-primary {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  box-shadow: 0 18px 34px rgba(37, 99, 235, 0.24);
}

.button-secondary {
  border-color: rgba(37, 99, 235, 0.2);
  background: #ffffff;
  color: #1d4ed8;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(37, 99, 235, 0.34);
  background: #eaf2ff;
}

.section-kicker,
.eyebrow,
.product-label,
.media-badge,
.testimonial-rating,
.delivery-card-badge {
  border-color: rgba(37, 99, 235, 0.2);
  background: rgba(37, 99, 235, 0.09);
  color: #1d4ed8;
}

.product-label-highlight {
  background: rgba(37, 99, 235, 0.12);
  border-color: rgba(37, 99, 235, 0.26);
}

.brand-copy strong,
.footer-brand-copy strong,
.hero-copy h1,
.section-heading h2,
.hero-product-head h2,
.product-head h3,
.media-fallback strong,
.vehicle-detail-copy h1,
.testimonial-meta strong {
  color: #0f2a4a;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.footer-link:hover,
.footer-link:focus-visible {
  color: #1d4ed8;
}

.price-list div,
.compact-price-item {
  border-color: rgba(37, 99, 235, 0.12);
  background: rgba(37, 99, 235, 0.05);
}

.price-list dd,
.compact-price-item strong,
.product-price-row strong {
  color: #10233f;
}

.product-price-row {
  border-color: rgba(37, 99, 235, 0.18);
  background:
    linear-gradient(180deg, rgba(37, 99, 235, 0.1), rgba(37, 99, 235, 0.04)),
    #ffffff;
}

.product-price-row small {
  color: #496585;
}

.banner-slider-viewport {
  background: #ffffff;
}

.banner-media,
.banner-media.is-fallback {
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.14), rgba(14, 165, 233, 0.08)),
    linear-gradient(180deg, #ffffff, #eaf2ff);
}

.banner-media::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(37, 99, 235, 0.06)),
    radial-gradient(circle at center, transparent 32%, rgba(37, 99, 235, 0.08) 100%);
}


.banner-media .banner-image {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.banner-dot,
.product-slider-dot,
.testimonial-slider-dot,
.delivery-slider-dot,
.article-slider-dot {
  background: rgba(37, 99, 235, 0.18);
}

.banner-dot.is-active,
.product-slider-dot.is-active,
.testimonial-slider-dot.is-active,
.delivery-slider-dot.is-active,
.article-slider-dot.is-active {
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
}

.media-hint {
  border-color: rgba(37, 99, 235, 0.12);
  background: rgba(255, 255, 255, 0.88);
  color: #28415f;
}

.product-image {
  filter: drop-shadow(0 22px 34px rgba(37, 99, 235, 0.16));
}

.delivery-card::after {
  background: linear-gradient(180deg, rgba(15, 42, 74, 0), rgba(15, 42, 74, 0.78));
}

.delivery-card-copy strong,
.delivery-card-copy small {
  color: #fff;
}

.footer-shell {
  border-top-color: var(--line);
}

.testimonial-section,
.product-section,
.delivery-section,
.testimonial-slider-shell,
.product-slider-shell,
.delivery-slider-shell,
.testimonial-slider-track,
.product-slider-track,
.delivery-slider-track {
  background: transparent;
  box-shadow: none;
}

.product-card,
.product-card:hover,
.product-card:focus-within,
.product-card-slider,
.product-card-compact {
  box-shadow: none;
}

.testimonial-card,
.delivery-card,
.testimonial-card:hover,
.testimonial-card:focus-within,
.delivery-card:hover,
.delivery-card:focus-within {
  box-shadow: none;
}

.product-image {
  filter: none;
}

@media (max-width: 760px) {
  .mobile-bottom-nav {
    border-color: rgba(37, 99, 235, 0.14);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 20px 44px rgba(37, 99, 235, 0.18);
  }

  .mobile-bottom-item {
    color: #10233f;
  }

  .mobile-bottom-icon,
  .mobile-sheet-link-icon {
    border-color: rgba(37, 99, 235, 0.14);
    background: rgba(37, 99, 235, 0.08);
    color: #1d4ed8;
  }

  .mobile-sheet-backdrop {
    background: rgba(15, 42, 74, 0.22);
  }

  .mobile-sheet {
    border-color: rgba(37, 99, 235, 0.14);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 255, 0.98)),
      var(--panel);
    box-shadow: 0 -24px 40px rgba(37, 99, 235, 0.16);
  }

  .mobile-sheet::before {
    background:
      radial-gradient(circle at top center, rgba(37, 99, 235, 0.12), transparent 54%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.7), transparent);
  }

  .mobile-sheet-handle {
    background: rgba(37, 99, 235, 0.18);
  }

  .mobile-sheet-profile-card,
  .mobile-sheet-contact-card,
  .mobile-sheet-link {
    border-color: rgba(37, 99, 235, 0.12);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(239, 246, 255, 0.82)),
      #ffffff;
  }

  .mobile-sheet-portrait-photo {
    border-color: rgba(37, 99, 235, 0.12);
    background: rgba(37, 99, 235, 0.06);
  }

  .mobile-sheet-portrait-photo::after {
    background: linear-gradient(180deg, rgba(15, 42, 74, 0), rgba(15, 42, 74, 0.24));
  }

  .mobile-sheet-contact-card strong {
    color: #10233f;
  }
}

.article-section,
.vehicle-sales-section,
.related-products-section {
  padding: 28px 0 12px;
}

.article-section-heading h2 {
  max-width: 760px;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.article-slider {
  display: grid;
  gap: 18px;
}

.article-slider-track {
  --article-cards-per-view: 4;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - (16px * (var(--article-cards-per-view) - 1))) / var(--article-cards-per-view));
  gap: 16px;
  align-items: stretch;
  transition: transform 0.45s ease;
  will-change: transform;
}

.article-card {
  position: relative;
}

.article-slide-card {
  min-width: 0;
  height: 100%;
}

.section-link {
  display: inline-flex;
  align-items: center;
  margin-top: 12px;
  color: #1d4ed8;
  font-size: 0.92rem;
  font-weight: 800;
}

.article-section-actions {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.article-section-button {
  min-width: 220px;
}

#article-slider {
  overflow: hidden;
  touch-action: pan-y;
}

.article-slider-track {
  cursor: grab;
}

.article-list-section {
  padding-top: 12px;
}

.article-list-grid {
  margin-top: 8px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.article-list-grid .article-card-media {
  height: 260px;
  min-height: 260px;
  max-height: 260px;
}

.article-pagination {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.article-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  margin: 0 4px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #10233f;
  font-weight: 800;
}

.article-pagination .page-numbers.current {
  background: #e31d2f;
  border-color: #e31d2f;
  color: #fff;
}

.article-card,
.sales-contact-card,
.sales-note-card,
.related-product-card,
.single-article-content,
.single-article-media {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
}

.article-card {
  position: relative;
}

.article-card-media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4.4;
  min-height: 360px;
  overflow: hidden;
  background: #dbeafe;
}

.article-list-grid .article-card-media {
  aspect-ratio: 3 / 4.4;
  min-height: 340px;
}

.article-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.article-card-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 33.333%;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.08), rgba(15, 23, 42, 0.72));
}

.single-article-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-card-fallback {
  padding: 18px;
  color: #1d4ed8;
  font-weight: 800;
  text-align: center;
}

.article-card-body {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  display: grid;
  gap: 8px;
  min-height: 33.333%;
  padding: 14px 14px 16px;
  color: #fff;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.12), rgba(15, 23, 42, 0.62));
  backdrop-filter: blur(7px);
}

.article-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-card h3,
.single-article-copy h1,
.sales-contact-card h2,
.sales-note-card h2,
.related-product-card h3 {
  color: #0f2a4a;
}

.article-card h3 {
  color: #fff;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.24;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card p,
.single-article-copy p,
.sales-contact-card p,
.sales-note-card p,
.related-product-body p {
  color: var(--muted-strong);
  line-height: 1.6;
}

.article-card p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.86rem;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card-link {
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.82rem;
  font-weight: 700;
}

.single-article-hero {
  padding: 34px 0 16px;
}

.single-article-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 20px;
  align-items: stretch;
}

.single-article-hero-wide {
  display: block;
}

.single-article-hero-wide .single-article-copy {
  width: 100%;
}

.single-article-copy {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
}

.single-article-copy h1 {
  font-family: "Bebas Neue", cursive;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.92;
  letter-spacing: 0.03em;
}

.single-article-media {
  min-height: 360px;
}

.single-article-featured-section {
  padding: 0 0 12px;
}

.single-article-featured-media {
  aspect-ratio: 16 / 7;
  min-height: 320px;
}

.single-article-content-section {
  padding: 12px 0;
}

.article-sidebar {
  display: grid;
  gap: 18px;
  align-content: start;
}

.article-sidebar-media {
  min-height: 0;
  aspect-ratio: 4 / 5;
}

.article-sidebar .article-sales-card {
  position: static;
  top: auto;
}

.single-article-layout,
.vehicle-sales-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: 18px;
  align-items: start;
}

.single-article-content {
  padding: 28px;
  color: var(--muted-strong);
  font-size: 1rem;
  line-height: 1.85;
}

.single-article-content > * + * {
  margin-top: 18px;
}

.single-article-content h2,
.single-article-content h3 {
  color: #0f2a4a;
  line-height: 1.25;
}

.single-article-content ul,
.single-article-content ol {
  padding-left: 22px;
}

.sales-contact-card,
.sales-note-card {
  display: grid;
  gap: 16px;
  padding: 22px;
}

.vehicle-sales-section .sales-contact-card.has-photo {
  grid-template-columns: minmax(0, 1fr) minmax(190px, 0.38fr);
  align-items: stretch;
}

.sales-contact-content {
  display: grid;
  gap: 16px;
  align-content: start;
}

.sales-contact-photo {
  overflow: hidden;
  min-height: 100%;
  margin: 0;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 20px;
  background: rgba(37, 99, 235, 0.06);
}

.sales-contact-photo img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center top;
}

.article-sales-card {
  position: sticky;
  top: 132px;
}

.article-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 31%);
  gap: 16px;
  overflow-x: auto;
  padding: 2px 0 12px;
  scroll-snap-type: x proximity;
}

#article-slider {
  overflow: hidden;
}

.article-scroll .article-card {
  scroll-snap-align: start;
}

.sales-contact-list {
  display: grid;
  gap: 10px;
}

.sales-contact-list div {
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 16px;
  background: rgba(37, 99, 235, 0.05);
}

.sales-contact-list dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sales-contact-list dd {
  color: #10233f;
  font-weight: 800;
}

.related-product-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(250px, 24%);
  gap: 14px;
  overflow-x: auto;
  padding: 2px 0 12px;
  scroll-snap-type: x proximity;
}

.related-product-card {
  scroll-snap-align: start;
}

.related-product-media {
  display: grid;
  place-items: center;
  height: 172px;
  padding: 14px;
  background: #ffffff;
}

.related-product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.related-product-body {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.related-product-card h3 {
  font-family: "Bebas Neue", cursive;
  font-size: 1.6rem;
  line-height: 0.95;
  letter-spacing: 0.03em;
}

@media (max-width: 980px) {
  .article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-list-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .article-slider-track {
    --article-cards-per-view: 3;
  }

  .single-article-hero-shell,
  .single-article-layout,
  .vehicle-sales-shell {
    grid-template-columns: 1fr;
  }

  .vehicle-sales-section .sales-contact-card.has-photo {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.42fr);
  }

  .article-sidebar {
    order: -1;
  }

  .article-sidebar-media {
    aspect-ratio: 16 / 10;
  }

  .article-sales-card {
    position: static;
  }
}

@media (max-width: 640px) {
  .article-grid {
    grid-template-columns: 1fr;
  }

  .article-list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-slider-track {
    --article-cards-per-view: 2;
  }

  .article-card-media {
    aspect-ratio: 3 / 4.2;
    min-height: 300px;
  }

  .article-list-grid .article-card-media {
    aspect-ratio: 3 / 4.2;
    min-height: 300px;
  }

  .article-card-body {
    padding: 14px;
  }

  .article-card h3 {
    font-size: 0.9rem;
  }

  .article-card p {
    font-size: 0.82rem;
  }

.single-article-copy,
  .single-article-content,
  .sales-contact-card,
  .sales-note-card {
    padding: 20px;
  }

  .single-article-media {
    min-height: 240px;
  }

  .vehicle-sales-section .sales-contact-card.has-photo {
    grid-template-columns: 1fr;
  }

  .sales-contact-photo {
    min-height: auto;
    aspect-ratio: 4 / 3;
  }

  .sales-contact-photo img {
    min-height: 0;
  }

  .single-article-featured-media {
    aspect-ratio: 16 / 10;
  }

  .article-scroll {
    grid-auto-columns: minmax(260px, 84%);
  }

  .related-product-scroll {
    grid-auto-columns: minmax(230px, 82%);
  }

  .related-product-media {
    height: 158px;
  }
}
