/* === VOAP Vehicle Single Template v0.3.2 === */

:root {
	--veh-red:       #b91400;
	--veh-red-dark:  #971100;
	--veh-red-soft:  #fff0ef;
	--veh-text:      #1a1d20;
	--veh-text-2:    #3c4147;
	--veh-muted:     #6b7280;
	--veh-border:    #e6e8eb;
	--veh-border-2:  #f1f2f4;
	--veh-bg:        #f7f8fa;
	--veh-card:      #ffffff;
	--veh-radius:    12px;
	--veh-radius-sm: 8px;
	--veh-shadow-sm: 0 1px 2px rgba(0,0,0,.04);
	--veh-shadow:    0 4px 20px rgba(0,0,0,.05), 0 1px 3px rgba(0,0,0,.04);
	--veh-shadow-lg: 0 12px 40px rgba(0,0,0,.1);
}

/* --- Reset / scope --- */
.veh-page *, .veh-page *::before, .veh-page *::after {
	box-sizing: border-box;
}
.veh-page {
	color: var(--veh-text);
	font-size: 16px;
	line-height: 1.6;
	background: var(--veh-bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-feature-settings: "liga" 1, "kern" 1;
}
.veh-page a:not(.veh-btn) { color: var(--veh-red); text-decoration: none; transition: color .15s; }
.veh-page a:not(.veh-btn):hover { color: var(--veh-red-dark); }

.veh-page svg {
	stroke: currentColor;
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

/* --- Container --- */
.veh-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 20px;
}

/* --- Hero banner --- */
.veh-hero-banner {
	position: relative;
	min-height: 360px;
	background:
		var(--veh-hero-bg, linear-gradient(135deg, var(--veh-red) 0%, var(--veh-red-dark) 100%))
		center / cover no-repeat;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	overflow: hidden;
}
.veh-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(0,0,0,.25) 0%, rgba(0,0,0,.55) 35%, rgba(0,0,0,.88) 100%);
	z-index: 1;
}
.veh-hero-inner {
	position: relative;
	z-index: 2;
	padding-top: 120px;
	padding-bottom: 36px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	width: 100%;
}

.veh-breadcrumb {
	display: flex;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap;
	font-size: 13px;
	color: rgba(255,255,255,.75);
	margin-bottom: 18px;
}
.veh-page .veh-breadcrumb a,
.veh-breadcrumb a { color: rgba(255,255,255,.75) !important; transition: color .15s; }
.veh-page .veh-breadcrumb a:hover,
.veh-breadcrumb a:hover { color: #fff !important; }
.veh-breadcrumb .sep { opacity: .5; }
.veh-breadcrumb .current { color: #fff; font-weight: 500; }

.veh-hero-badges {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 14px;
}
.veh-badge {
	display: inline-flex;
	align-items: center;
	padding: 5px 13px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .3px;
	line-height: 1;
}
.veh-badge-condition {
	background: var(--veh-red);
	color: #fff;
}
.veh-badge-fuel {
	background: rgba(255,255,255,.18);
	color: #fff;
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	border: 1px solid rgba(255,255,255,.15);
}
.veh-badge-available {
	background: rgba(40,167,69,.9);
	color: #fff;
}
.veh-hero-banner h1 {
	font-size: clamp(28px, 3.6vw, 42px);
	font-weight: 700;
	margin: 0 0 6px;
	color: #fff;
	line-height: 1.15;
	letter-spacing: -.02em;
	text-shadow: 0 2px 18px rgba(0,0,0,.75), 0 1px 4px rgba(0,0,0,.5);
}
.veh-hero-sub {
	color: rgba(255,255,255,.9);
	font-size: 15px;
	margin: 0;
	font-weight: 400;
	text-shadow: 0 1px 8px rgba(0,0,0,.6);
}

/* --- Container padding below hero --- */
.veh-hero-banner + .veh-container {
	padding-top: 36px;
}

/* --- Main 2-column layout — card stretches to gallery height --- */
.veh-main {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 360px;
	gap: 28px;
	align-items: stretch;
	padding-bottom: 36px;
}
.veh-main > * { min-width: 0; }

/* --- Gallery --- */
.veh-gallery { min-width: 0; }

.veh-slides-wrap {
	position: relative;
	width: 100%;
	max-width: 100%;
	border-radius: var(--veh-radius);
	overflow: hidden;
	background: #111;
	aspect-ratio: 4/3;
	min-height: 280px;
	cursor: zoom-in;
	box-shadow: var(--veh-shadow);
}
.veh-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity .4s ease;
}
.veh-slide.active { opacity: 1; }
.veh-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.veh-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	background: rgba(0,0,0,.5);
	color: #fff;
	border: none;
	border-radius: 50%;
	width: 46px;
	height: 46px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background .15s;
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	padding: 0;
}
.veh-arrow:hover { background: rgba(0,0,0,.75); }
.veh-arrow-prev { left: 14px; }
.veh-arrow-next { right: 14px; }
.veh-arrow svg { width: 20px; height: 20px; stroke-width: 2.5; }

.veh-slide-counter {
	position: absolute;
	bottom: 14px;
	right: 14px;
	background: rgba(0,0,0,.6);
	color: #fff;
	font-size: 12px;
	padding: 4px 11px;
	border-radius: 12px;
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	font-weight: 500;
	z-index: 5;
	pointer-events: none;
}

.veh-thumbs {
	display: flex;
	gap: 8px;
	margin-top: 12px;
	overflow-x: auto;
	padding-bottom: 4px;
	scrollbar-width: thin;
	scrollbar-color: var(--veh-border) transparent;
}
.veh-thumbs::-webkit-scrollbar { height: 4px; }
.veh-thumbs::-webkit-scrollbar-thumb { background: var(--veh-border); border-radius: 2px; }

.veh-thumb {
	flex-shrink: 0;
	width: 88px;
	height: 64px;
	border-radius: var(--veh-radius-sm);
	overflow: hidden;
	cursor: pointer;
	border: 2px solid transparent;
	transition: border-color .15s, opacity .15s;
	opacity: .6;
}
.veh-thumb:hover { opacity: .95; }
.veh-thumb.active {
	border-color: var(--veh-red);
	opacity: 1;
}
.veh-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.veh-no-image {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	aspect-ratio: 4/3;
	min-height: 280px;
	background: #f1f3f5;
	border: 1px dashed var(--veh-border);
	border-radius: var(--veh-radius);
	color: var(--veh-muted);
	font-size: 14px;
	gap: 10px;
}
.veh-no-image svg { width: 42px; height: 42px; stroke-width: 1.5; }

/* --- Info Card (sidebar — stretches to gallery height, contact at bottom) --- */
.veh-card {
	background: var(--veh-card);
	border-radius: var(--veh-radius);
	box-shadow: var(--veh-shadow);
	border: 1px solid var(--veh-border);
	overflow: hidden;
	position: sticky;
	top: 24px;
	align-self: stretch;
	display: flex;
	flex-direction: column;
}
.veh-card-contact {
	margin-top: auto;
}

.veh-card-price {
	background: linear-gradient(135deg, var(--veh-red) 0%, var(--veh-red-dark) 100%);
	padding: 24px 26px;
	color: #fff;
}
.veh-price-label {
	font-size: 12px;
	letter-spacing: .4px;
	opacity: .85;
	margin-bottom: 6px;
	font-weight: 500;
}
.veh-price-value {
	display: flex;
	align-items: baseline;
	gap: 4px;
	line-height: 1;
	font-variant-numeric: tabular-nums;
}
.veh-price-amount {
	font-size: 36px;
	font-weight: 600;
	letter-spacing: -.02em;
}
.veh-price-currency {
	font-size: 22px;
	font-weight: 500;
	opacity: .9;
}
.veh-price-note {
	font-size: 12.5px;
	opacity: .82;
	margin-top: 8px;
}
.veh-price-unavailable {
	font-size: 22px;
	font-weight: 600;
}

/* --- Pflichtangaben in unmittelbarer Nähe zum Preis (Pkw-EnVKV §5) --- */
.veh-card-emit {
	padding: 14px 26px 16px;
	background: #fff8f7;
	border-bottom: 1px solid var(--veh-border);
	font-size: 12.5px;
	line-height: 1.4;
}
.veh-card-emit-row {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 10px;
	padding: 5px 0;
}
.veh-card-emit-row + .veh-card-emit-row {
	border-top: 1px dashed rgba(185,20,0,.12);
}
.veh-card-emit-label {
	color: var(--veh-muted);
	font-weight: 500;
	flex: 1;
	min-width: 0;
}
.veh-card-emit-value {
	color: var(--veh-text);
	font-weight: 600;
	font-variant-numeric: tabular-nums;
	text-align: right;
	white-space: nowrap;
	flex-shrink: 0;
}
/* EU CO₂ efficiency label semantic colors (Pkw-EnVKV Anlage 4) */
.veh-card-emit-class {
	background: var(--veh-red);
	color: #fff;
	font-weight: 700;
	padding: 4px 12px;
	border-radius: 5px;
	font-size: 14px;
	line-height: 1;
	min-width: 32px;
	text-align: center;
	display: inline-block;
	box-shadow: 0 1px 2px rgba(0,0,0,.08);
}
.veh-card-emit-class[data-class="A"] { background: #21b34a; }
.veh-card-emit-class[data-class="B"] { background: #54b948; }
.veh-card-emit-class[data-class="C"] { background: #c0d22b; color: #1a1d20; }
.veh-card-emit-class[data-class="D"] { background: #f7e525; color: #1a1d20; }
.veh-card-emit-class[data-class="E"] { background: #f5a01a; }
.veh-card-emit-class[data-class="F"] { background: #e95e1d; }
.veh-card-emit-class[data-class="G"] { background: #cc1418; }
.veh-card-emit-note {
	margin: 8px 0 0;
	padding-top: 8px;
	border-top: 1px solid rgba(185,20,0,.1);
	font-size: 11px;
	color: var(--veh-muted);
	font-style: italic;
}

/* --- Cost block hint (Schätzwerte) --- */
.veh-cost-hint {
	margin: 12px 0 0;
	padding-top: 10px;
	border-top: 1px dashed var(--veh-border);
	font-size: 11.5px;
	line-height: 1.55;
	color: var(--veh-muted);
	font-style: italic;
}

.veh-card-specs {
	padding: 22px 26px;
	border-bottom: 1px solid var(--veh-border);
}
.veh-card-specs-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px 14px;
}
.veh-spec-item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	min-width: 0;
}
.veh-spec-icon {
	width: 36px;
	height: 36px;
	background: var(--veh-red-soft);
	border-radius: var(--veh-radius-sm);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: var(--veh-red);
}
.veh-spec-icon svg { width: 18px; height: 18px; }
.veh-spec-label {
	font-size: 11.5px;
	color: var(--veh-muted);
	letter-spacing: .2px;
	margin-bottom: 2px;
	font-weight: 500;
}
.veh-spec-value {
	font-size: 14.5px;
	font-weight: 600;
	color: var(--veh-text);
	line-height: 1.3;
	word-wrap: break-word;
}

.veh-card-contact {
	padding: 22px 26px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

/* --- Buttons --- */
.veh-btn,
.veh-page a.veh-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	padding: 13px 22px;
	border-radius: var(--veh-radius-sm);
	font-size: 14.5px;
	font-weight: 600;
	border: 1px solid transparent;
	cursor: pointer;
	transition: background .18s, color .18s, border-color .18s;
	text-decoration: none !important;
	line-height: 1.2;
	font-family: inherit;
}
.veh-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.veh-btn-label { min-width: 0; overflow: hidden; text-overflow: ellipsis; font-variant-numeric: tabular-nums; }

.veh-page .veh-btn-primary,
.veh-page a.veh-btn-primary {
	background: var(--veh-red);
	color: #fff !important;
	border-color: var(--veh-red);
}
.veh-page .veh-btn-primary:hover,
.veh-page a.veh-btn-primary:hover {
	background: var(--veh-red-dark);
	border-color: var(--veh-red-dark);
	color: #fff !important;
}
.veh-page .veh-btn-secondary,
.veh-page a.veh-btn-secondary {
	background: #fff;
	color: var(--veh-red) !important;
	border-color: var(--veh-red);
}
.veh-page .veh-btn-secondary:hover,
.veh-page a.veh-btn-secondary:hover {
	background: var(--veh-red);
	color: #fff !important;
	border-color: var(--veh-red);
}

/* --- Section titles --- */
.veh-section-title {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 20px;
	font-weight: 700;
	color: var(--veh-text);
	margin: 0 0 20px;
	letter-spacing: -.01em;
}
.veh-section-title .veh-panel-icon {
	width: 34px;
	height: 34px;
}
.veh-section-title .veh-panel-icon svg { width: 18px; height: 18px; }

/* --- Energy section (always visible) --- */
.veh-energy-section {
	margin-bottom: 28px;
}

/* --- Tabs --- */
.veh-tabs-section {
	background: var(--veh-card);
	border-radius: var(--veh-radius);
	box-shadow: var(--veh-shadow);
	border: 1px solid var(--veh-border);
	overflow: hidden;
	margin-bottom: 28px;
}

.veh-tabs-nav {
	display: flex;
	border-bottom: 1px solid var(--veh-border);
	overflow-x: auto;
	scrollbar-width: none;
	background: #fafbfc;
}
.veh-tabs-nav::-webkit-scrollbar { display: none; }

.veh-tab-btn {
	padding: 16px 24px;
	background: none;
	border: none;
	border-bottom: 3px solid transparent;
	margin-bottom: -1px;
	color: var(--veh-muted);
	font-size: 14.5px;
	font-weight: 500;
	cursor: pointer;
	white-space: nowrap;
	transition: color .15s, border-color .15s, background .15s;
	font-family: inherit;
}
.veh-tab-btn:hover { color: var(--veh-red); }
.veh-tab-btn.active {
	color: var(--veh-red);
	border-bottom-color: var(--veh-red);
	background: #fff;
	font-weight: 600;
}

.veh-tab-panel {
	display: none;
	padding: 32px;
}
.veh-tab-panel.active { display: block; }

/* --- Detail grid & panels (2-col, matching feature groups) --- */
.veh-detail-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(440px, 1fr));
	gap: 18px;
}
.veh-detail-panel {
	background: #fff;
	border: 1px solid var(--veh-border);
	border-radius: var(--veh-radius);
	padding: 18px 20px;
	box-shadow: var(--veh-shadow-sm);
	transition: border-color .2s, box-shadow .2s;
	min-width: 0;
	overflow: hidden;
}
.veh-detail-panel:hover {
	border-color: rgba(185,20,0,.18);
	box-shadow: 0 4px 16px rgba(0,0,0,.05);
}
.veh-detail-panel h5 {
	font-size: 14.5px;
	font-weight: 600;
	color: var(--veh-text);
	margin: 0 0 14px;
	display: flex;
	align-items: center;
	gap: 10px;
	letter-spacing: -.01em;
}
.veh-panel-icon {
	width: 30px;
	height: 30px;
	background: var(--veh-red-soft);
	border-radius: 6px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--veh-red);
	flex-shrink: 0;
}
.veh-panel-icon svg { width: 16px; height: 16px; }

.veh-detail-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
	table-layout: fixed;
}
.veh-detail-table tr + tr td {
	border-top: 1px solid var(--veh-border-2);
}
.veh-detail-table td {
	padding: 10px 0;
	vertical-align: top;
	word-wrap: break-word;
	overflow-wrap: anywhere;
}
.veh-detail-table td:first-child {
	color: var(--veh-muted);
	width: 45%;
	padding-right: 12px;
	font-weight: 400;
}
.veh-detail-table td:last-child {
	font-weight: 500;
	color: var(--veh-text);
	font-variant-numeric: tabular-nums;
}
.veh-detail-table td strong { font-weight: 600; color: var(--veh-text); }

/* --- Energie & Umwelt — 3 panels in a balanced 3-col grid --- */
.veh-energy-tables {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 16px;
	align-items: start;
}

/* --- CO₂ Effizienzlabel image — placed under price inside .veh-card --- */
.veh-card-co2-img {
	margin: 0;
	padding: 14px 26px 16px;
	border-bottom: 1px solid var(--veh-border);
	background: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
}
.veh-card-co2-img img {
	width: 180px;
	max-width: 100%;
	height: auto;
	display: block;
	border-radius: 4px;
	box-shadow: 0 1px 3px rgba(0,0,0,.06);
}
.veh-card-co2-img figcaption {
	font-size: 10.5px;
	color: var(--veh-muted);
	letter-spacing: .3px;
	font-weight: 500;
	text-transform: uppercase;
}

/* --- Features tab — 2-column max --- */
.veh-features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(440px, 1fr));
	gap: 18px;
}
.veh-feature-group {
	background: #fff;
	border: 1px solid var(--veh-border);
	border-radius: var(--veh-radius);
	padding: 20px 22px;
	box-shadow: var(--veh-shadow-sm);
}
.veh-feature-group h5 {
	font-size: 14.5px;
	font-weight: 600;
	color: var(--veh-text);
	margin: 0 0 14px;
	display: flex;
	align-items: center;
	gap: 10px;
	letter-spacing: -.01em;
}
.veh-feature-group-title { flex: 1; }
.veh-feature-count {
	background: var(--veh-red);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	padding: 2px 8px;
	border-radius: 10px;
	min-width: 22px;
	text-align: center;
	letter-spacing: 0;
}
.veh-feature-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.veh-feature-tag {
	position: relative;
	background: #fff;
	border: 1px solid var(--veh-border);
	border-radius: 20px;
	padding: 6px 14px 6px 30px;
	font-size: 13px;
	color: var(--veh-text);
	font-weight: 500;
	transition: border-color .15s, background .15s;
}
.veh-feature-tag::before {
	content: "";
	position: absolute;
	left: 10px;
	top: 50%;
	width: 14px;
	height: 14px;
	transform: translateY(-50%);
	background-color: var(--veh-red);
	-webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/contain no-repeat;
	        mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/contain no-repeat;
}
.veh-feature-tag:hover {
	border-color: var(--veh-red);
	background: var(--veh-red-soft);
}

/* --- Description tab --- */
.veh-description {
	font-size: 16px;
	line-height: 1.75;
	color: var(--veh-text-2);
}
.veh-description p { margin: 0 0 1em; }
.veh-description p:last-child { margin: 0; }
.veh-description h2,
.veh-description h3,
.veh-description h4 {
	color: var(--veh-text);
	font-weight: 700;
	margin: 1.5em 0 .6em;
	letter-spacing: -.01em;
}
.veh-description h2 { font-size: 22px; }
.veh-description h3 { font-size: 18px; }
.veh-description h4 { font-size: 16px; }
.veh-description ul,
.veh-description ol { margin: 0 0 1em; padding-left: 1.5em; }
.veh-description li { margin-bottom: .3em; }
.veh-description strong { color: var(--veh-text); font-weight: 600; }

/* --- Legal section --- */
.veh-legal {
	background: #fff;
	border-radius: var(--veh-radius);
	padding: 22px 26px;
	margin-bottom: 40px;
	font-size: 12.5px;
	color: var(--veh-muted);
	line-height: 1.75;
	box-shadow: var(--veh-shadow-sm);
	border: 1px solid var(--veh-border);
}
.veh-legal h6 {
	font-size: 12.5px;
	font-weight: 600;
	color: var(--veh-text);
	margin: 0 0 10px;
	letter-spacing: .2px;
}
.veh-legal p { margin: 0 0 .6em; }
.veh-legal p:last-child { margin: 0; }
.veh-legal a { color: var(--veh-red); font-weight: 500; }

/* --- Lightbox --- */
.veh-lightbox {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 99999;
	background: rgba(0,0,0,.94);
	align-items: center;
	justify-content: center;
}
.veh-lightbox.open { display: flex; }
.veh-lightbox-inner {
	position: relative;
	max-width: 90vw;
	max-height: 90vh;
	display: flex;
	align-items: center;
	justify-content: center;
}
.veh-lightbox-img {
	max-width: 90vw;
	max-height: 85vh;
	object-fit: contain;
	border-radius: 6px;
	box-shadow: 0 8px 40px rgba(0,0,0,.6);
}
.veh-lightbox-close {
	position: fixed;
	top: 24px;
	right: 28px;
	background: rgba(255,255,255,.15);
	border: none;
	color: #fff;
	border-radius: 50%;
	width: 46px;
	height: 46px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 20px;
	line-height: 1;
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	transition: background .15s;
	z-index: 100000;
}
.veh-lightbox-close:hover { background: rgba(255,255,255,.25); }

.veh-lightbox .veh-arrow-prev { left: 24px; }
.veh-lightbox .veh-arrow-next { right: 24px; }
.veh-lightbox .veh-slide-counter {
	position: absolute;
	bottom: 24px;
	left: 50%;
	right: auto;
	transform: translateX(-50%);
}

/* === Responsive === */
@media (max-width: 1024px) {
	.veh-main { grid-template-columns: minmax(0, 1fr) 320px; gap: 22px; }
	.veh-price-amount { font-size: 30px; }
}

@media (max-width: 860px) {
	.veh-hero-banner { min-height: 320px; }
	.veh-hero-inner { padding-top: 100px; padding-bottom: 48px; }
	.veh-hero-sub { margin-bottom: 4px; }
	.veh-main { grid-template-columns: 1fr; }
	.veh-card { position: static; }
	.veh-energy-grid { grid-template-columns: 1fr; }
	.veh-co2-label-wrap { width: auto; max-width: 280px; margin: 0; }
	.veh-tab-panel { padding: 24px; }
}

/* Mobile: tabs fill width equally — no scrolling needed */
@media (max-width: 640px) {
	.veh-tabs-nav {
		overflow: hidden;
	}
	.veh-tab-btn {
		flex: 1 1 0;
		min-width: 0;
		padding: 14px 10px;
		font-size: 13.5px;
		text-align: center;
	}
}

@media (max-width: 480px) {
	.veh-hero-banner { min-height: 280px; }
	.veh-hero-inner { padding-top: 84px; padding-bottom: 40px; }
	/* Stack emit-row label/value vertically — long German labels would wrap awkwardly otherwise */
	.veh-card-emit { padding: 14px 18px 16px; }
	.veh-card-emit-row {
		flex-direction: column;
		align-items: flex-start;
		gap: 2px;
	}
	.veh-card-emit-value {
		text-align: left;
		white-space: normal;
	}
	.veh-card-emit-class {
		align-self: flex-start;
	}
	.veh-hero-banner h1 { font-size: 23px; }
	.veh-container { padding: 0 14px; }
	.veh-price-amount { font-size: 28px; }
	.veh-thumbs { gap: 6px; }
	.veh-thumb { width: 72px; height: 54px; }
	.veh-detail-grid { grid-template-columns: 1fr; }
	.veh-arrow { width: 38px; height: 38px; }
	.veh-arrow svg { width: 18px; height: 18px; }
	.veh-tab-panel { padding: 22px 18px; }
	.veh-tab-btn { padding: 12px 8px; font-size: 13px; }
	.veh-btn { padding: 12px 16px; font-size: 14px; }
	.veh-section-title { font-size: 18px; }
	.veh-detail-panel { padding: 18px 20px; }
	.veh-feature-group { padding: 18px 20px; }
}
