/* Mobile-exclusive toggle for vehicle page */

.mobile-vehicle {
  display: none;
}

@media (max-width: 900px) {
  .desktop-vehicle {
    display: none;
  }
  .mobile-vehicle {
    display: block;
  }
}

/* Mobile page hero (vehicle) */
.mobile-page-hero {
  position: relative;
  background: linear-gradient(165deg, #0b0f19 0%, #070b16 60%, #050913 100%);
  padding: calc(var(--header-h) + 30px) 0 28px;
  color: #ffffff;
  overflow: hidden;
}

.mobile-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(760px 420px at 20% 15%, rgba(238, 46, 43, 0.22), transparent 55%),
    radial-gradient(720px 420px at 85% 30%, rgba(11, 199, 158, 0.16), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
  opacity: 1;
}

.mobile-page-hero .container {
  position: relative;
}

.mobile-page-hero__pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
}

.mobile-page-hero__title {
  margin: 14px 0 0;
  font-size: 34px;
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -0.02em;
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
}

.mobile-page-hero__lead {
  margin: 12px 0 0;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
}

.mobile-page-hero__price {
  color: var(--brand);
  font-weight: 950;
}

.mobile-page-hero__dot {
  opacity: .6;
  margin: 0 10px;
}

.mobile-page-hero__actions {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.mobile-page-hero__actions .btn {
  width: 100%;
}

.vehicle-mobile-carousel {
	position: relative;
}

.vehicle-media--mobile {
	height: clamp(240px, 64vw, 380px);
}

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

.mobile-vehicle .vehicle-carousel__meta {
	left: 12px;
	bottom: 12px;
}

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

.mobile-vehicle .vehicle-features {
  gap: 8px;
}

.mobile-vehicle .vehicle-features li {
  width: 100%;
  border-radius: 14px;
}
