.vehicle-landing {
	padding-top: 28px;
	padding-bottom: 40px;
}

.vehicle-hero {
	background: linear-gradient(90deg, #dc0000 0%, #ff6a00 100%);
	color: #fff;
}

/* Full-width page shell — the landing content and the hero row share the same
   wide max-width instead of the default (~1140px) container so the page fills
   the viewport and the cards spread out. */
.vehicle-hero__inner.container,
.vehicle-landing.container {
	max-width: 1680px;
	width: 100%;
}

/* Hero row — vehicle visual + title/subtitle + change button. */
.vehicle-hero__inner {
	display: flex;
	align-items: center;
	gap: 32px;
	padding: 28px 0;
}

.vehicle-hero__car {
	flex: 0 0 auto;
	width: 240px;
	height: 110px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.vehicle-hero__car i {
	font-size: 6rem;
	color: rgba(255, 255, 255, .95);
}

.vehicle-hero__info {
	flex: 1 1 auto;
	min-width: 0;
}

.vehicle-hero__title {
	margin: 0;
	font-size: 2.1rem;
	font-weight: 800;
	line-height: 1.1;
	color: #fff;
	letter-spacing: -.01em;
}

.vehicle-hero__subtitle {
	margin-top: 6px;
	font-size: 1.05rem;
	font-weight: 600;
	opacity: .95;
}

.vehicle-hero__change {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 26px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .22);
	color: #fff;
	font-weight: 600;
	font-size: .95rem;
	text-decoration: none;
	border: 1px solid rgba(255, 255, 255, .25);
	cursor: pointer;
	backdrop-filter: blur(4px);
	transition: background .15s ease, border-color .15s ease;
}

.vehicle-hero__change:hover {
	background: rgba(255, 255, 255, .32);
	border-color: rgba(255, 255, 255, .4);
	color: #fff;
}

/* Tablet / mobile — the hero row stacks. */
@media (max-width: 991px) {
	.vehicle-hero__inner {
		flex-wrap: wrap;
		gap: 18px;
		padding: 22px 0;
	}
	.vehicle-hero__car {
		width: 120px;
		height: 80px;
	}
	.vehicle-hero__car i {
		font-size: 3.8rem;
	}
	.vehicle-hero__title {
		font-size: 1.5rem;
	}
	.vehicle-hero__change {
		margin-left: auto;
	}
}

.vehicle-cats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
}

.vehicle-cat {
	display: flex;
	flex-direction: column;
}

.vehicle-cat__card {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 84px;
	border-radius: 14px;
	background-color: #2a2a2a;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	color: #fff;
	text-decoration: none;
	padding: 12px 14px;
	text-align: center;
	overflow: hidden;
	transition: transform .15s ease;
}

/* Dark scrim so the overlaid name stays readable over any photo. */
.vehicle-cat__card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, .25) 0%, rgba(0, 0, 0, .6) 100%);
}

/* Cards with no photo get a plain dark gradient instead of a scrim over grey. */
.vehicle-cat__card--noimg {
	background-image: linear-gradient(135deg, #2a2a2a 0%, #444 100%);
}

.vehicle-cat__card--noimg::before {
	display: none;
}

.vehicle-cat__card:hover {
	transform: translateY(-3px);
	color: #fff;
}

.vehicle-cat__name {
	position: relative;
	z-index: 1;
	font-size: .9rem;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
	letter-spacing: .02em;
}

.vehicle-cat__pills {
	list-style: none;
	margin: 12px 0 0;
	padding: 2px 6px 2px 0;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	align-content: flex-start;
	max-height: 150px;
	overflow-y: auto;
	scrollbar-width: thin;
	scrollbar-color: #dc0000 #f2f2f2;
}

.vehicle-cat__pills::-webkit-scrollbar {
	width: 6px;
}

.vehicle-cat__pills::-webkit-scrollbar-track {
	background: #f2f2f2;
	border-radius: 999px;
}

.vehicle-cat__pills::-webkit-scrollbar-thumb {
	background: #dc0000;
	border-radius: 999px;
}

.vehicle-cat__pills::-webkit-scrollbar-thumb:hover {
	background: #ff6a00;
}

.vehicle-cat__pills a {
	display: inline-block;
	padding: 5px 11px;
	border-radius: 999px;
	background: #f2f2f2;
	color: #333;
	font-size: .74rem;
	text-decoration: none;
	transition: background .15s ease, color .15s ease;
}

.vehicle-cat__pills a:hover {
	background: #ff6a00;
	color: #fff;
}

/* Brands related to selected vehicle */
.vehicle-brands {
	margin-top: 36px;
}

.vehicle-brands__title {
	font-size: 1.05rem;
	font-weight: 700;
	color: #222;
	margin: 0 0 14px;
}

.vehicle-brands__list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.vehicle-brand {
	display: inline-flex;
	align-items: center;
	padding: 8px 16px;
	border-radius: 999px;
	background: #f2f2f2;
	color: #333;
	font-size: .85rem;
	font-weight: 600;
	text-decoration: none;
	border: 1px solid #e3e3e3;
	transition: background .15s, color .15s, border-color .15s;
}

.vehicle-brand:hover {
	background: #dc0000;
	border-color: #dc0000;
	color: #fff;
}
