/**
 * VDP Voertuig single — ATM-geïnspireerde layout met alternerende donker/licht bands.
 * Scoped onder .vdp-voertuig. Voor "full width"-secties binnen Avada's container:
 * gebruiken we de `100vw + margin-left: calc(50% - 50vw)` techniek per band.
 *
 * Kleurtokens: overschrijfbaar in child theme (.vdp-voertuig { --v-accent: ... }).
 */

.vdp-voertuig {
	/* Palette — Van Drie Performance huisstijl */
	--v-dark:         #2a3b5a; /* V3P Blauw */
	--v-dark-2:       #223150;
	--v-dark-3:       #1a2640;
	--v-light:        #ffffff;
	--v-light-2:      #f5f7fa;
	--v-line-dark:    rgba( 255, 255, 255, .1 );
	--v-line-light:   #e4e8ee;
	--v-text-on-dark: #ffffff;
	--v-muted-dark:   rgba( 255, 255, 255, .72 );
	--v-dim-dark:     rgba( 255, 255, 255, .5 );
	--v-text-light:   #121212; /* V3P zwart bodyteksten */
	--v-body-light:   #3d4555;
	--v-muted-light:  #6b7280;

	--v-accent:       #2a3b5a; /* V3P Blauw = primair CTA */
	--v-accent-hover: #1a2640;
	--v-success:      #2ea44f; /* Groen — checkmarks */
	--v-success-bg:   rgba( 46, 164, 79, .13 );
	--v-icon:         #2a3b5a; /* Icons op lichte achtergrond */

	--v-radius:       12px;
	--v-radius-sm:    8px;
	--v-container:    1180px;
	--v-pad:          clamp( 20px, 4vw, 44px );
	--v-band-pad-y:   clamp( 40px, 6vw, 80px );

	--v-font:         "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

	color: var( --v-text-light );
	font-family: var( --v-font );
	/* overflow-x: hidden verwijderd — clipte de full-width bands.
	   Horizontal overflow wordt onderaan op body voorkomen. */
}

.vdp-voertuig *,
.vdp-voertuig *::before,
.vdp-voertuig *::after {
	box-sizing: border-box;
}

/* =========================================
   BANDS (full-width binnen Avada container)
   ========================================= */

.vdp-band {
	position: relative;
	width: 100vw;
	margin-left: calc( 50% - 50vw );
	margin-right: calc( 50% - 50vw );
}
.vdp-band--dark  { background: var( --v-dark ); color: var( --v-text-on-dark ); }
.vdp-band--light { background: var( --v-light ); color: var( --v-text-light ); }

.vdp-band + .vdp-band { margin-top: 0; }

.vdp-container {
	max-width: var( --v-container );
	margin: 0 auto;
	padding: var( --v-band-pad-y ) var( --v-pad );
}

/* =========================================
   BUTTONS
   ========================================= */

.vdp-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 14px 24px;
	border: 2px solid transparent;
	border-radius: var( --v-radius-sm );
	font-size: .92rem;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
	letter-spacing: .04em;
	text-decoration: none !important;
	cursor: pointer;
	transition: background-color .16s, border-color .16s, color .16s, transform .1s, box-shadow .16s;
	white-space: nowrap;
	font-family: inherit;
}
.vdp-btn--primary {
	background: var( --v-accent );
	color: #fff !important;
	box-shadow: 0 6px 20px rgba( 42, 59, 90, .3 );
}
.vdp-btn--primary:hover {
	background: var( --v-accent-hover );
	transform: translateY( -1px );
	box-shadow: 0 10px 24px rgba( 42, 59, 90, .42 );
}
/* Op donkere banen: omgekeerde primary = wit met V3P Blauw tekst (anders verdwijnt-ie in de bg) */
.vdp-band--dark .vdp-btn--primary {
	background: #fff;
	color: var( --v-accent ) !important;
	box-shadow: 0 6px 20px rgba( 0, 0, 0, .25 );
}
.vdp-band--dark .vdp-btn--primary:hover {
	background: #f2f4f8;
	color: var( --v-accent-hover ) !important;
}
/* In big-cta block (heeft donkere bg op lichte band) */
.vdp-bigcta .vdp-btn--primary {
	background: #fff;
	color: var( --v-accent ) !important;
}
.vdp-bigcta .vdp-btn--primary:hover {
	background: #f2f4f8;
	color: var( --v-accent-hover ) !important;
}
.vdp-btn--ghost {
	background: transparent;
	border-color: rgba( 255, 255, 255, .3 );
	color: #fff !important;
}
.vdp-btn--ghost:hover { border-color: #fff; background: rgba( 255, 255, 255, .08 ); }
.vdp-btn--lg    { padding: 17px 28px; font-size: .98rem; }
.vdp-btn--block { width: 100%; }

/* =========================================
   HERO
   ========================================= */

.vdp-hero {
	background-size: cover;
	background-position: center;
}
.vdp-hero .vdp-container {
	padding-top: clamp( 60px, 9vw, 120px );
	padding-bottom: clamp( 40px, 7vw, 80px );
	text-align: center;
}
.vdp-hero__eyebrow {
	margin: 0 0 10px;
	font-size: .78rem;
	font-weight: 700;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: rgba( 255, 255, 255, .75 ); /* Leesbaar op V3P Blauw band */
}

/* Terug-naar-home link op de lichte main-sectie, direct boven de H2. */
.vdp-back-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin: 0 0 14px;
	padding: 4px 10px 4px 4px;
	font-size: .82rem;
	font-weight: 600;
	letter-spacing: .02em;
	color: var( --v-muted-light );
	text-decoration: none;
	border-radius: 6px;
	transition: color .15s, background .15s;
}
.vdp-back-link:hover,
.vdp-back-link:focus-visible {
	color: var( --v-text-light );
	background: var( --v-light-2 );
	text-decoration: none;
}
.vdp-back-link span { font-size: 1rem; line-height: 1; }
.vdp-hero__title {
	margin: 0;
	font-size: clamp( 1.8rem, 4.6vw, 3.4rem );
	line-height: 1.08;
	font-weight: 800;
	letter-spacing: -.015em;
	color: #fff;
}
.vdp-hero__subtitle {
	margin: 14px auto 0;
	font-size: clamp( .95rem, 1.6vw, 1.15rem );
	color: var( --v-muted-dark );
	max-width: 60ch;
}

/* =========================================
   CONFIGURATOR STRIP (onderin, subtiel)
   ========================================= */

.vdp-configstrip-bottom .vdp-container {
	padding-top: clamp( 30px, 4vw, 50px );
	padding-bottom: clamp( 60px, 8vw, 110px );
}
.vdp-configstrip-bottom__label {
	margin: 0 0 14px;
	font-size: .82rem;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: rgba( 255, 255, 255, .75 );
}
/* Configurator-widget op donkere band: transparant, wit, knop inverted */
.vdp-configstrip-bottom .vdp-configurator {
	--vdp-bg: transparent;
	--vdp-fg: #ffffff;
	--vdp-muted: rgba( 255, 255, 255, .72 );
	--vdp-input-border: rgba( 255, 255, 255, .2 );
	box-shadow: none;
	border: none;
	padding: 0;
}
.vdp-configstrip-bottom .vdp-configurator__header { margin-bottom: 10px; }
.vdp-configstrip-bottom .vdp-configurator__title { display: none; }
.vdp-configstrip-bottom .vdp-configurator__powered { color: rgba( 255, 255, 255, .72 ); font-size: .82rem; }
.vdp-configstrip-bottom .vdp-configurator__powered a { color: #ffffff; }
.vdp-configstrip-bottom .vdp-configurator__powered [class^="iconvp3-"] { color: #ffffff; }
/* Submit-knop inversion: op blauwe band wordt hij wit met V3P Blauw tekst */
.vdp-configstrip-bottom .vdp-configurator__submit {
	background: #ffffff;
	color: var( --v-accent );
}
.vdp-configstrip-bottom .vdp-configurator__submit:hover:not(:disabled) {
	background: #f2f4f8;
}
.vdp-configstrip-bottom .vdp-configurator__submit:disabled {
	background: rgba( 255, 255, 255, .25 );
	color: rgba( 255, 255, 255, .6 );
}

/* =========================================
   MAIN (light, 2-col)
   ========================================= */

.vdp-main .vdp-container { padding-top: clamp( 40px, 5vw, 64px ); padding-bottom: clamp( 50px, 7vw, 90px ); }

.vdp-main__grid {
	display: grid;
	grid-template-columns: minmax( 0, 1fr ) 320px;
	gap: clamp( 24px, 3vw, 48px );
	align-items: start;
}

.vdp-main__title {
	margin: 0 0 24px;
	font-size: clamp( 1.3rem, 2.3vw, 1.75rem );
	font-weight: 800;
	letter-spacing: -.015em;
	line-height: 1.2;
	color: var( --v-text-light );
	word-break: break-word;
	hyphens: auto;
}

/* TABS */

.vdp-tabs__nav {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	padding: 4px;
	margin-bottom: 22px;
	background: var( --v-light-2 );
	border: 1px solid var( --v-line-light );
	border-radius: var( --v-radius );
	width: fit-content;
	max-width: 100%;
}
.vdp-tabs__btn {
	appearance: none;
	border: 0;
	background: transparent;
	padding: 10px 18px;
	font-size: .92rem;
	font-weight: 700;
	letter-spacing: .02em;
	color: var( --v-body-light );
	cursor: pointer;
	border-radius: var( --v-radius-sm );
	font-family: inherit;
	transition: background-color .15s, color .15s;
}
.vdp-tabs__btn:hover:not( .is-active ) { background: rgba( 10, 25, 41, .06 ); color: var( --v-text-light ); }
.vdp-tabs__btn.is-active {
	background: var( --v-text-light );
	color: #fff;
	box-shadow: 0 4px 14px rgba( 10, 25, 41, .18 );
}

.vdp-tabs__panel { display: none; }
.vdp-tabs__panel.is-active { display: block; animation: vdp-fade .2s ease; }
@keyframes vdp-fade { from { opacity: 0; transform: translateY( 4px ); } to { opacity: 1; transform: none; } }

/* STAGE HEAD: prijs + tijd */

.vdp-stage-head {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 22px 24px;
	background: var( --v-light-2 );
	border: 1px solid var( --v-line-light );
	border-radius: var( --v-radius );
	margin-bottom: 18px;
}
.vdp-stage-price {
	display: flex;
	flex-direction: column;
	gap: 8px;
	line-height: 1;
}
.vdp-stage-price__label {
	font-size: .68rem;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var( --v-muted-light );
}
.vdp-stage-price__amount {
	font-size: clamp( 1.6rem, 3vw, 2.2rem );
	font-weight: 900;
	letter-spacing: -.015em;
	color: var( --v-text-light );
}
.vdp-stage-time {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: .92rem;
	color: var( --v-body-light );
	font-weight: 600;
}
.vdp-stage-time svg { color: var( --v-accent ); }

/* COMPARISON TABLE */

.vdp-compare {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	margin-bottom: 22px;
	background: #fff;
	border: 1px solid var( --v-line-light );
	border-radius: var( --v-radius );
	overflow: hidden;
}
.vdp-compare th,
.vdp-compare td {
	padding: 14px 16px;
	text-align: left;
	font-size: .95rem;
	vertical-align: middle;
}
.vdp-compare thead th {
	background: var( --v-text-light );
	color: #fff;
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	padding: 10px 16px;
}
.vdp-compare thead th.vdp-compare__na { background: var( --v-accent ); }
.vdp-compare tbody th {
	font-weight: 700;
	color: var( --v-text-light );
	border-top: 1px solid var( --v-line-light );
	width: 140px;
}
.vdp-compare tbody td { border-top: 1px solid var( --v-line-light ); color: var( --v-body-light ); }
.vdp-compare tbody td strong { font-size: 1.4rem; font-weight: 800; color: var( --v-text-light ); letter-spacing: -.01em; }
.vdp-compare tbody td span { font-size: .8rem; color: var( --v-muted-light ); font-weight: 500; margin-left: 3px; }
.vdp-compare__na strong { color: var( --v-text-light ) !important; }
.vdp-compare__delta { background: var( --v-success-bg ); }
.vdp-compare__delta strong { color: var( --v-success ) !important; }
.vdp-compare__delta span { color: var( --v-success ) !important; }

/* STAGE DESC */

.vdp-stage-desc {
	margin: 0 0 22px;
	color: var( --v-body-light );
	font-size: .98rem;
	line-height: 1.65;
}
.vdp-stage-desc p { margin: 0 0 .75em; }
.vdp-stage-desc p:last-child { margin-bottom: 0; }
.vdp-stage-desc a { color: var( --v-accent ); }
.vdp-stage-desc strong { color: var( --v-text-light ); }

/* CTA */

.vdp-stage-cta {
	padding: 22px 0 0;
	border-top: 1px solid var( --v-line-light );
}
.vdp-stage-cta .vdp-btn { width: 100%; }
.vdp-stage-cta__sub {
	margin: 10px 0 0;
	text-align: center;
	font-size: .82rem;
	color: var( --v-muted-light );
}

/* =========================================
   INLINE CONFIGURATOR BAND — eigen volle-breedte sectie na de main-grid
   ========================================= */

.vdp-inline-configurator-band {
	/* Iets minder padding dan de andere bands; dit is een tussenstop, geen
	   hoofdmoment. Border-top/-bottom maken visueel de scheiding met de
	   secties erboven en eronder zonder een aparte achtergrondkleur nodig. */
	padding-top: 36px !important;
	padding-bottom: 36px !important;
	border-top: 1px solid var( --v-line-light );
	border-bottom: 1px solid var( --v-line-light );
}
.vdp-inline-configurator {
	max-width: 100%;
	margin: 0 auto;
}
.vdp-inline-configurator__title {
	margin: 0 0 18px;
	font-size: 1.15rem;
	font-weight: 800;
	color: var( --v-text-light );
	text-align: center;
}
/* De configurator-shortcode brengt z'n eigen header (powered-by) mee; die
   verbergen we hier want de h3 boven het blok zegt al wat we willen zeggen. */
.vdp-inline-configurator .vdp-configurator__header { display: none; }

/* =========================================
   EXTRA-BLOCK (dyno-grafiek + extra opties) — per stage-panel
   ========================================= */

.vdp-extra-block {
	margin-top: 44px;
	padding-top: 8px;
	display: grid;
	grid-template-columns: 1.35fr 1fr;
	gap: 22px;
	align-items: stretch;
}
/* Variant zonder dyno-curve: extras pakken volledige breedte zodat ze
   in een rij van 4 naast elkaar kunnen staan. */
.vdp-extra-block--no-dyno {
	grid-template-columns: 1fr;
}
.vdp-extra-block__title {
	margin: 0 0 14px;
	font-size: 1rem;
	font-weight: 800;
	color: var( --v-text-light );
}

/* Dyno-card */
.vdp-extra-block__dyno {
	background: #fff;
	border: 1px solid var( --v-line-light );
	border-radius: var( --v-radius );
	padding: 18px;
}
.vdp-dyno {
	display: block;
	width: 100%;
	height: auto;
	background: var( --v-light-2 );
	border: 1px solid var( --v-line-light );
	border-radius: var( --v-radius-sm );
}
.vdp-dyno-legend {
	margin-top: 14px;
	display: flex;
	gap: 22px;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	font-size: .88rem;
	color: var( --v-text-light );
	font-weight: 700;
}
.vdp-dyno-legend__item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.vdp-dyno-legend__swatch {
	width: 22px;
	height: 3px;
	border-radius: 2px;
}
.vdp-dyno-legend__sub {
	font-weight: 500;
	color: var( --v-muted-light );
	font-size: .78rem;
}
.vdp-dyno__note {
	margin: 10px 0 0;
	font-size: .76rem;
	color: var( --v-muted-light );
	text-align: center;
	line-height: 1.5;
}

/* Extras grid — standaard 2×2 (in oude 2-koloms layout), 4×1 in --no-dyno */
.vdp-extra-block__extras { display: flex; flex-direction: column; }
.vdp-extras__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	flex: 1;
}
.vdp-extra-block--no-dyno .vdp-extras__grid {
	grid-template-columns: repeat( 4, 1fr );
}
@media ( max-width: 768px ) {
	.vdp-extra-block--no-dyno .vdp-extras__grid {
		grid-template-columns: 1fr 1fr;
	}
}
@media ( max-width: 420px ) {
	.vdp-extra-block--no-dyno .vdp-extras__grid {
		grid-template-columns: 1fr;
	}
}
.vdp-extra {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 10px;
	padding: 22px 12px;
	background: #fff;
	border: 1px solid var( --v-line-light );
	border-radius: var( --v-radius-sm );
	min-height: 120px;
}
.vdp-extra__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	font-size: 32px;
	color: var( --v-accent );
	line-height: 1;
}
.vdp-extra__icon svg {
	width: 100%;
	height: 100%;
	display: block;
}
.vdp-extra__label {
	font-size: .82rem;
	font-weight: 700;
	color: var( --v-text-light );
	line-height: 1.3;
}
.vdp-extra__info {
	position: absolute;
	top: 6px;
	right: 6px;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: var( --v-light-2 );
	color: var( --v-muted-light );
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: help;
	font: italic 700 11px/1 Georgia, serif;
	transition: background .15s, color .15s;
}
.vdp-extra__info::before { content: "i"; }
.vdp-extra__info:hover,
.vdp-extra__info:focus-visible {
	background: var( --v-accent );
	color: #fff;
	outline: none;
}
.vdp-extra__info:hover::after,
.vdp-extra__info:focus-visible::after {
	content: attr( data-tooltip );
	position: absolute;
	bottom: calc( 100% + 8px );
	right: -4px;
	background: #121212;
	color: #fff;
	padding: 6px 10px;
	border-radius: 6px;
	font: 500 .72rem/1.3 var( --v-font );
	white-space: nowrap;
	box-shadow: 0 2px 10px rgba( 0, 0, 0, .22 );
	z-index: 5;
	pointer-events: none;
}

@media ( max-width: 900px ) {
	.vdp-extra-block { grid-template-columns: 1fr; }
}
@media ( max-width: 420px ) {
	.vdp-extras__grid { grid-template-columns: 1fr; }
}

/* No stages */
.vdp-no-stages {
	padding: 20px;
	background: var( --v-light-2 );
	border: 1px dashed var( --v-line-light );
	border-radius: var( --v-radius );
	color: var( --v-body-light );
}

/* Body content */
.vdp-body {
	margin-top: 32px;
	padding-top: 24px;
	border-top: 1px solid var( --v-line-light );
	color: var( --v-body-light );
	line-height: 1.7;
}
.vdp-body a { color: var( --v-accent ); }
.vdp-body strong { color: var( --v-text-light ); }

/* =========================================
   SIDEBAR (on light main)
   ========================================= */

.vdp-main__sidebar {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.vdp-brand-card {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 30px 20px;
	background: #fff;
	border: 1px solid var( --v-line-light );
	border-radius: var( --v-radius );
	min-height: 150px;
}
.vdp-brand-card img {
	max-width: 100%;
	max-height: 110px;
	object-fit: contain;
	display: block;
}

.vdp-sidecard {
	padding: 22px;
	background: #fff;
	border: 1px solid var( --v-line-light );
	border-radius: var( --v-radius );
}
.vdp-sidecard__title {
	margin: 0 0 6px;
	font-size: 1.15rem;
	font-weight: 800;
	color: var( --v-text-light );
	letter-spacing: -.01em;
}
.vdp-sidecard__lead {
	margin: 0 0 14px;
	font-size: .88rem;
	color: var( --v-muted-light );
	line-height: 1.5;
}

.vdp-process-card__steps {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.vdp-process-card__steps li {
	display: flex;
	gap: 10px;
	font-size: .9rem;
	line-height: 1.45;
	color: var( --v-body-light );
}
.vdp-process-card__steps svg {
	flex: 0 0 auto;
	color: var( --v-success );
	margin-top: 2px;
}

.vdp-specs-card__list { margin: 0; }
.vdp-specs-card__row {
	display: flex;
	justify-content: space-between;
	gap: 14px;
	padding: 12px 0;
	border-bottom: 1px solid var( --v-line-light );
	font-size: .9rem;
}
.vdp-specs-card__row:last-child { border-bottom: 0; padding-bottom: 4px; }
.vdp-specs-card__row:first-child { padding-top: 4px; }
.vdp-specs-card__row dt { margin: 0; color: var( --v-muted-light ); }
.vdp-specs-card__row dd { margin: 0; color: var( --v-text-light ); font-weight: 600; text-align: right; }

/* =========================================
   FAQ (light band, expandable items)
   ========================================= */

.vdp-faq-band .vdp-container {
	padding-top: clamp( 40px, 5vw, 70px );
	padding-bottom: clamp( 40px, 5vw, 70px );
}
.vdp-faq__list {
	max-width: 820px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.vdp-faq__item {
	background: #fff;
	border: 1px solid var( --v-line-light );
	border-radius: var( --v-radius );
	padding: 0;
	transition: border-color .15s, box-shadow .15s;
}
.vdp-faq__item[open] {
	border-color: var( --v-accent );
	box-shadow: 0 4px 14px rgba( 42, 59, 90, .08 );
}
.vdp-faq__question {
	list-style: none;
	cursor: pointer;
	padding: 18px 22px 18px 58px;
	position: relative;
	font-size: 1rem;
	font-weight: 700;
	color: var( --v-accent );
	line-height: 1.4;
}
.vdp-faq__question::-webkit-details-marker { display: none; }
/* "+"/"-" icoon links: horizontale streep altijd zichtbaar, verticale streep verdwijnt on open */
.vdp-faq__question::before,
.vdp-faq__question::after {
	content: "";
	position: absolute;
	background: var( --v-accent );
	left: 22px;
	top: 50%;
	transition: transform .2s ease;
}
.vdp-faq__question::before {
	width: 14px;
	height: 2px;
	margin-top: -1px;
}
.vdp-faq__question::after {
	width: 2px;
	height: 14px;
	margin-top: -7px;
	margin-left: 6px;
}
.vdp-faq__item[open] .vdp-faq__question::after {
	transform: scaleY( 0 );
}
.vdp-faq__answer {
	padding: 0 22px 18px;
	color: var( --v-body-light );
	line-height: 1.6;
	font-size: .95rem;
}
.vdp-faq__answer p { margin: 0 0 1.5em; }
.vdp-faq__answer p:last-child { margin-bottom: 0; }
.vdp-faq__answer a { color: var( --v-accent ); }
.vdp-faq__answer strong { color: var( --v-text-light ); }

/* =========================================
   STATS BAND (dark)
   ========================================= */

.vdp-stats__head { text-align: center; margin-bottom: 36px; }
.vdp-stats__eyebrow {
	margin: 0 0 8px;
	font-size: .76rem;
	font-weight: 700;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: rgba( 255, 255, 255, .75 ); /* Leesbaar op V3P Blauw band */
}
.vdp-stats__title {
	margin: 0;
	font-size: clamp( 1.4rem, 2.8vw, 2rem );
	font-weight: 800;
	letter-spacing: -.015em;
	color: #fff;
}
.vdp-stats__lead { margin: 8px 0 0; color: var( --v-muted-dark ); }

.vdp-stats__grid {
	display: grid;
	grid-template-columns: repeat( auto-fit, minmax( 220px, 1fr ) );
	gap: 18px;
	max-width: 960px;
	margin: 0 auto;
}
/* Mobiel: 2-koloms. Als er een 3e kaart is zonder 4e, spant die de volle breedte. */
@media ( max-width: 680px ) {
	.vdp-stats__grid {
		grid-template-columns: 1fr 1fr;
		gap: 12px;
	}
	.vdp-stats__grid .vdp-bigstat:nth-child(3):last-child {
		grid-column: 1 / -1;
	}
}
@media ( max-width: 420px ) {
	.vdp-stats__grid { grid-template-columns: 1fr; }
	.vdp-stats__grid .vdp-bigstat:nth-child(3):last-child { grid-column: auto; }
}
.vdp-bigstat {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 30px 24px;
	background: var( --v-dark-2 );
	border: 1px solid var( --v-line-dark );
	border-radius: var( --v-radius );
	gap: 6px;
}
.vdp-bigstat svg { color: var( --v-accent ); margin-bottom: 6px; }
.vdp-bigstat__label {
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var( --v-dim-dark );
}
.vdp-bigstat__value {
	font-size: clamp( 2.4rem, 5vw, 3.4rem );
	font-weight: 900;
	letter-spacing: -.02em;
	color: #fff;
	line-height: 1;
}
.vdp-bigstat__unit {
	font-size: .95rem;
	color: var( --v-muted-dark );
	font-weight: 500;
}

/* Winst-variant: pk/Nm cards krijgen een groene accent (waarde + subtiele bg/border) */
.vdp-bigstat--winst {
	background: rgba( 46, 164, 79, .12 );
	border-color: rgba( 46, 164, 79, .35 );
}
.vdp-bigstat--winst .vdp-bigstat__value {
	color: var( --v-success );
}
.vdp-bigstat--winst [class^="iconvp3-"] {
	color: var( --v-success );
}

/* =========================================
   SECTION HEADS (shared)
   ========================================= */

.vdp-section-head { margin-bottom: 24px; }
.vdp-eyebrow {
	margin: 0 0 6px;
	font-size: .74rem;
	font-weight: 700;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var( --v-accent );
}
.vdp-section-title {
	margin: 0;
	font-size: clamp( 1.5rem, 2.6vw, 2rem );
	font-weight: 800;
	letter-spacing: -.015em;
	color: var( --v-text-light );
}

/* =========================================
   VOERTUIG-FOTO'S (2 vaste slots: vermogensbank + meting)
   ========================================= */

.vdp-fotos-band .vdp-container { padding-top: clamp( 40px, 5vw, 70px ); padding-bottom: clamp( 40px, 5vw, 70px ); }
.vdp-section-head--centered { text-align: center; max-width: 780px; margin-left: auto; margin-right: auto; }
.vdp-section-lead {
	margin: 12px 0 0;
	font-size: 1rem;
	line-height: 1.65;
	color: var( --v-body-light );
}
.vdp-section-lead strong { color: var( --v-text-light ); font-weight: 700; }
.vdp-fotos__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}
.vdp-fotos__credit {
	margin: 28px 0 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	flex-wrap: wrap;
	text-align: center;
}
.vdp-fotos__credit-label {
	font-size: .8rem;
	font-weight: 600;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var( --v-muted-light );
}
.vdp-fotos__credit-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	text-decoration: none;
	color: var( --v-text-light );
	font-weight: 700;
}
.vdp-fotos__credit-link img {
	height: 30px;
	width: auto;
	display: block;
}
.vdp-fotos__item {
	margin: 0;
	background: #fff;
	border: 1px solid var( --v-line-light );
	border-radius: var( --v-radius );
	overflow: hidden;
	position: relative;
}
.vdp-fotos__item img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

/* 3-up layout: 2 foto's links stacked, 1 grote meting-grafiek rechts vol hoog */
.vdp-fotos__grid--3up {
	grid-template-columns: 1fr 1.3fr;
	align-items: stretch;
}
.vdp-fotos__col-left {
	display: flex;
	flex-direction: column;
	gap: 18px;
	min-width: 0;
}
.vdp-fotos__col-left .vdp-fotos__item {
	flex: 1;
	overflow: hidden;
	min-height: 0;
}
.vdp-fotos__col-left .vdp-fotos__item img {
	width: 100%;
	height: 100%;
	aspect-ratio: auto;
	object-fit: cover;
	display: block;
}
.vdp-fotos__col-right {
	display: flex;
	text-decoration: none;
	overflow: hidden;
}
.vdp-fotos__col-right.vdp-fotos__item img,
.vdp-meting-pdf img {
	width: 100%;
	height: 100%;
	aspect-ratio: auto;
	object-fit: cover;
	display: block;
}

/* PDF-weergave: thumbnail of placeholder, A4-ratio, wit papier-look */
.vdp-meting-pdf {
	position: relative;
	background: #fff;
	border: 1px solid var( --v-line-light );
	border-radius: var( --v-radius );
	box-shadow: 0 6px 24px rgba( 10, 25, 41, .1 );
	overflow: hidden;
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: inherit;
}
.vdp-meting-pdf img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	display: block;
}
/* Fallback als WP geen PDF-thumbnail kan renderen (geen Imagick) */
.vdp-meting-pdf--placeholder {
	background: var( --v-light-2 );
	aspect-ratio: 210 / 297;
}
.vdp-meting-pdf__placeholder-inner {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 14px;
	padding: 40px 24px;
	text-align: center;
	color: var( --v-accent );
}
.vdp-meting-pdf__placeholder-inner svg {
	width: 72px;
	height: 72px;
}
.vdp-meting-pdf__placeholder-inner strong {
	font-size: 1.1rem;
	color: var( --v-text-light );
}
.vdp-meting-pdf__placeholder-inner span {
	font-size: .88rem;
	color: var( --v-muted-light );
}
.vdp-meting-pdf__expand {
	position: absolute;
	top: 20px;
	right: 20px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 16px 10px 14px;
	background: rgba( 10, 10, 10, .88 );
	color: #fff;
	font-size: .78rem;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
	border-radius: 100px;
	text-decoration: none;
	box-shadow: 0 6px 18px rgba( 0, 0, 0, .25 );
	backdrop-filter: blur( 6px );
	-webkit-backdrop-filter: blur( 6px );
	transition: transform .15s ease, background-color .15s ease, box-shadow .15s ease;
	z-index: 2;
}
.vdp-meting-pdf__expand:hover {
	transform: translateY( -2px );
	background: var( --v-accent );
	box-shadow: 0 10px 24px rgba( 42, 59, 90, .4 );
	color: #fff;
}
.vdp-meting-pdf__expand-icon {
	display: inline-block;
	width: 16px;
	height: 16px;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='15 3 21 3 21 9'/><polyline points='9 21 3 21 3 15'/><line x1='21' y1='3' x2='14' y2='10'/><line x1='3' y1='21' x2='10' y2='14'/></svg>");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 16px 16px;
	flex: 0 0 auto;
}
.vdp-meting-pdf__expand-label {
	line-height: 1;
}
@media ( max-width: 520px ) {
	.vdp-meting-pdf__expand { padding: 10px 12px; }
	.vdp-meting-pdf__expand-label { display: none; }
}

/* Lightbox-trigger: zoom-in cursor + expand-icon in rechter bovenhoek */
.vdp-fotos__item--lightbox { cursor: zoom-in; }
.vdp-fotos__item--lightbox::after {
	content: "";
	position: absolute;
	top: 14px;
	right: 14px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background-color: rgba( 0, 0, 0, .72 );
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><polyline points='15 3 21 3 21 9'/><polyline points='9 21 3 21 3 15'/><line x1='21' y1='3' x2='14' y2='10'/><line x1='3' y1='21' x2='10' y2='14'/></svg>");
	background-repeat: no-repeat;
	background-position: center;
	opacity: .9;
	transition: opacity .15s ease, transform .15s ease;
}
.vdp-fotos__item--lightbox:hover::after { opacity: 1; transform: scale( 1.05 ); }

/* Mobiel: foto's altijd NAAST elkaar (ruimte besparen).
   3-up: PDF stackt wel onder de 2 foto's, maar de 2 foto's blijven horizontaal. */
@media ( max-width: 900px ) {
	.vdp-fotos__grid--3up { grid-template-columns: 1fr; }
	.vdp-fotos__col-left { flex-direction: row; }
	.vdp-fotos__col-left .vdp-fotos__item { flex: 1 1 0; }
	.vdp-fotos__col-right.vdp-fotos__item img { aspect-ratio: 4 / 3; }
}

/* Minimale lightbox — zonder navigatie, caption, counter of andere UI-troep */
.vdp-lb {
	position: fixed;
	inset: 0;
	background: rgba( 10, 10, 10, .94 );
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 99999;
	cursor: zoom-out;
	padding: 24px;
	animation: vdp-lb-fade .18s ease;
}
.vdp-lb img {
	max-width: 95vw;
	max-height: 92vh;
	object-fit: contain;
	box-shadow: 0 20px 60px rgba( 0, 0, 0, .6 );
	border-radius: 4px;
}
@keyframes vdp-lb-fade {
	from { opacity: 0; }
	to   { opacity: 1; }
}

/* =========================================
   BIG CTA BAND (light)
   ========================================= */

.vdp-bigcta-band .vdp-container { padding-top: clamp( 40px, 5vw, 72px ); padding-bottom: clamp( 50px, 7vw, 100px ); }
.vdp-bigcta {
	position: relative;
	padding: clamp( 30px, 4.5vw, 50px );
	background: linear-gradient( 135deg, var( --v-dark ) 0%, var( --v-dark-3 ) 60%, #121212 100% );
	border-radius: var( --v-radius );
	overflow: hidden;
	color: #fff;
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: clamp( 20px, 3vw, 36px );
	align-items: center;
}
.vdp-bigcta::after {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient( circle at 85% 10%, rgba( 255, 255, 255, .08 ) 0%, transparent 55% );
	pointer-events: none;
}
.vdp-bigcta__copy { position: relative; z-index: 1; }
.vdp-bigcta__eyebrow {
	margin: 0 0 8px;
	font-size: .74rem;
	font-weight: 700;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: rgba( 255, 255, 255, .75 ); /* Leesbaar op donkere gradient */
}
.vdp-bigcta__title {
	margin: 0 0 12px;
	font-size: clamp( 1.25rem, 2.2vw, 1.7rem );
	font-weight: 800;
	letter-spacing: -.015em;
	color: #fff;
	line-height: 1.2;
}
.vdp-bigcta__lead {
	margin: 0 0 18px;
	color: var( --v-muted-dark );
	max-width: 56ch;
	line-height: 1.6;
}
.vdp-bigcta__points {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 6px;
}
.vdp-bigcta__points li {
	position: relative;
	padding-left: 26px;
	color: var( --v-muted-dark );
	font-size: .94rem;
}
.vdp-bigcta__points li::before {
	content: "";
	position: absolute;
	left: 0; top: 50%;
	width: 18px; height: 18px;
	margin-top: -9px;
	background: var( --v-success-bg );
	border-radius: 50%;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
	background-repeat: no-repeat;
	background-position: center;
}
.vdp-bigcta__actions {
	position: relative;
	z-index: 1;
	margin-top: 22px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
}

/* Rechts-kolom met usp-vinkjes */
.vdp-bigcta__points-col {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}
.vdp-bigcta__points-col .vdp-bigcta__points {
	display: grid;
	gap: 10px;
}
.vdp-bigcta__points-col .vdp-bigcta__points li {
	padding-left: 34px;
	font-size: 1rem;
	color: #fff;
}
.vdp-bigcta__points-col .vdp-bigcta__points li::before {
	width: 22px;
	height: 22px;
	margin-top: -11px;
	background-color: rgba( 46, 164, 79, .2 );
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%232ea44f' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
	background-size: 12px 12px;
	background-repeat: no-repeat;
	background-position: center;
}

/* =========================================
   MOBILE STICKY
   ========================================= */

.vdp-sticky {
	display: none;
	position: fixed;
	left: 0; right: 0; bottom: 0;
	padding: 10px 14px calc( 10px + env( safe-area-inset-bottom, 0 ) );
	background: rgba( 42, 59, 90, .96 );
	backdrop-filter: blur( 10px );
	-webkit-backdrop-filter: blur( 10px );
	border-top: 1px solid var( --v-line-dark );
	z-index: 99;
	gap: 12px;
	align-items: center;
}
/* Prijs-blokje weggelaten in sticky-bar (mobile) — gaf overlap met cookiebanner
   en versnipperde de CTA. Button vult nu de volle breedte. Markup blijft staan
   voor eventuele heroverweging — alleen verborgen. */
.vdp-sticky__price { display: none; }
.vdp-sticky__from { font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; color: var( --v-dim-dark ); }
.vdp-sticky__price strong { font-size: 1.15rem; font-weight: 800; }
.vdp-sticky .vdp-btn { flex: 1; padding: 14px 16px; font-size: .88rem; }

/* =========================================
   RESPONSIVE
   ========================================= */

@media ( max-width: 1024px ) {
	.vdp-main__grid {
		grid-template-columns: 1fr;
	}
	.vdp-main__sidebar { order: 2; }
	.vdp-main__content { order: 1; }
}

@media ( max-width: 768px ) {
	.vdp-sticky { display: flex; }
	.vdp-voertuig { padding-bottom: 100px; }

	/* Compare-table op mobiel: cards per metric met rij-label + data-label per cel */
	.vdp-compare {
		display: block;
		border: 0;
		background: transparent;
		overflow: visible;
	}
	.vdp-compare thead { display: none; }
	.vdp-compare tbody { display: block; }
	.vdp-compare tbody tr {
		display: block;
		background: #fff;
		border: 1px solid var( --v-line-light );
		border-radius: var( --v-radius );
		padding: 14px 16px;
		margin-bottom: 12px;
		overflow: hidden; /* clipt de full-bleed delta-rij aan de afgeronde hoeken */
	}
	.vdp-compare tbody tr:last-child { margin-bottom: 0; }
	.vdp-compare tbody th {
		display: block;
		width: auto;
		padding: 0 0 10px;
		margin: 0 0 10px;
		border: 0;
		border-bottom: 1px solid var( --v-line-light );
		font-size: .78rem;
		font-weight: 700;
		letter-spacing: .14em;
		text-transform: uppercase;
		color: var( --v-muted-light );
	}
	.vdp-compare tbody td {
		display: flex;
		justify-content: space-between;
		align-items: baseline;
		padding: 6px 0;
		border: 0;
	}
	.vdp-compare tbody td::before {
		content: attr( data-label );
		font-size: .88rem;
		font-weight: 600;
		color: var( --v-body-light );
	}
	.vdp-compare tbody td strong { font-size: 1.25rem; line-height: 1; }
	.vdp-compare tbody td span { font-size: .82rem; margin-left: 4px; }
	/* Delta-rij: full-bleed groene footer — plakt tegen kaart-randen, inner padding
	   gelijk aan kaart-padding zodat label/value/unit exact onder Standaard + Na tuning uitlijnen. */
	.vdp-compare tbody td.vdp-compare__delta {
		padding: 12px 16px;
		margin: 10px -16px -14px;
		background: var( --v-success-bg );
		border-radius: 0;
	}
	.vdp-compare tbody td.vdp-compare__delta::before { color: var( --v-success ); font-weight: 700; }
	.vdp-compare tbody td.vdp-compare__delta strong { color: var( --v-success ); }
	.vdp-compare tbody td.vdp-compare__delta span { color: var( --v-success ); }

	.vdp-bigcta { grid-template-columns: 1fr; gap: 20px; }
	.vdp-bigcta__points-col { justify-content: flex-start; }
	.vdp-bigcta__actions { margin-top: 16px; }
	.vdp-bigcta__points { width: 100%; }

	.vdp-stage-head { flex-direction: column; align-items: flex-start; }
}

@media ( max-width: 520px ) {
	.vdp-tabs__nav { width: 100%; }
	.vdp-tabs__btn { flex: 1; text-align: center; padding: 10px 10px; }
	.vdp-brand-card { min-height: 110px; padding: 20px; }
	.vdp-brand-card img { max-height: 80px; }
}

/* =========================================
   V3P ICONSET (Avada Custom Icons — .iconvp3-*)
   ========================================= */

.vdp-voertuig [class^="iconvp3-"],
.vdp-voertuig [class*=" iconvp3-"] {
	display: inline-block;
	line-height: 1;
	vertical-align: middle;
	font-style: normal;
}

/* Clock bij stage-head — V3P Blauw op licht */
.vdp-stage-time [class^="iconvp3-"] { font-size: 16px; color: var( --v-icon ); }

/* Checklist op sidebar: filled groene cirkel met witte check (zoals op v3p.nl) */
.vdp-process-card__steps li {
	align-items: center;
	gap: 12px;
}
.vdp-process-card__steps [class^="iconvp3-"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px; height: 22px;
	background: var( --v-success );
	color: #fff;
	border-radius: 50%;
	font-size: 11px;
	flex: 0 0 auto;
	margin-top: 0;
}

/* Bigstat iconen op donkere band — wit zodat ze écht opvallen */
.vdp-bigstat [class^="iconvp3-"] { font-size: 36px; color: #fff; margin-bottom: 10px; opacity: .95; }

/* Powered-by logo in configurator */
.vdp-configurator__powered [class^="iconvp3-"] { font-size: 14px; color: var( --vdp-fg, #fff ); margin-left: 4px; vertical-align: -1px; }

/* =========================================
   v1.5.2 — Leads, indicatie-notes, genummerde werkwijze
   ========================================= */

/* Intro onder voertuignaam: "Dit kunnen wij voor je realiseren:" */
.vdp-main__lead {
	margin: -18px 0 26px;
	font-size: 1.05rem;
	font-weight: 500;
	color: var( --v-body-light );
	line-height: 1.5;
}

/* Mini indicatief-label onder de prijs */
.vdp-stage-price__note {
	margin-top: 2px;
	font-size: .68rem;
	font-weight: 500;
	font-style: italic;
	letter-spacing: .02em;
	color: var( --v-muted-light );
	line-height: 1.1;
}

/* Disclaimer onder de standaard/na-tuning vergelijkingstabel */
.vdp-compare__note {
	margin: -10px 0 22px;
	padding: 10px 14px;
	background: var( --v-light-2 );
	border-left: 3px solid var( --v-accent );
	border-radius: 0 var( --v-radius-sm ) var( --v-radius-sm ) 0;
	font-size: .82rem;
	font-style: italic;
	color: var( --v-body-light );
	line-height: 1.5;
}
.vdp-compare__note strong {
	font-style: normal;
	font-weight: 700;
	color: var( --v-text-light );
}

/* Genummerde werkwijze-stappen (vervangt vinkjes) */
.vdp-process-card__steps {
	counter-reset: vdp-step;
}
.vdp-process-card__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	background: var( --v-accent );
	color: #fff;
	border-radius: 50%;
	font-size: .78rem;
	font-weight: 800;
	line-height: 1;
	flex: 0 0 auto;
	font-family: var( --v-font );
	letter-spacing: 0;
}
.vdp-process-card__text {
	flex: 1 1 auto;
	min-width: 0;
}

/* Stage 2+ callout: extra onderdelen-mogelijkheid */
.vdp-stage-parts-note {
	margin: 0 0 22px;
	padding: 14px 18px;
	background: var( --v-light-2 );
	border-left: 3px solid var( --v-accent );
	border-radius: 0 var( --v-radius-sm ) var( --v-radius-sm ) 0;
	color: var( --v-body-light );
	font-size: .92rem;
	line-height: 1.55;
}
.vdp-stage-parts-note p { margin: 0; }
.vdp-stage-parts-note strong { color: var( --v-text-light ); font-weight: 700; }

/* =========================================
   AVADA FULL-WIDTH OVERRIDE
   Forceer de single vdp_voertuig-pagina full-width zodat dark bands
   écht tot viewport-rand lopen. Avada wrapt standaard in .fusion-row
   met max-width; we breken hier uit maar alléén op deze CPT, nooit globaal.
   ========================================= */

body.single-vdp_voertuig #main,
body.single-vdp_voertuig #main > .fusion-row,
body.single-vdp_voertuig .fusion-row > .post-content,
body.single-vdp_voertuig .post-content {
	max-width: none !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
	padding-top: 0 !important;
	padding-bottom: 0 !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
	margin-top: 0 !important;
	margin-bottom: 0 !important;
	width: 100% !important;
}
body.single-vdp_voertuig article.vdp-voertuig {
	margin: 0;
	padding: 0;
	max-width: none;
	width: 100%;
}
/* Avada extras die witruimte bovenaan veroorzaken — verbergen op voertuig-singles */
body.single-vdp_voertuig .fusion-page-title-bar,
body.single-vdp_voertuig .fusion-breadcrumbs,
body.single-vdp_voertuig .single-navigation,
body.single-vdp_voertuig .post-content > header.entry-header,
body.single-vdp_voertuig .single-article-bg {
	display: none !important;
}
/* Content plakt nu tegen de header aan */
body.single-vdp_voertuig #content {
	padding-top: 0 !important;
	margin-top: 0 !important;
}
/* Geen horizontale scrollbars als thema-css iets pusht */
body.single-vdp_voertuig {
	overflow-x: hidden;
}
