/* ==============================================
   Polmar Véhicules — Catalogue VO + Fiche
   ============================================== */

/* Neutralise le contain-intrinsic-size injecté par WP 6.7 */
.vs-gallery__slide img,
.vo-card__img img,
.vo-card__inner .vo-card__img img {
	contain-intrinsic-size: auto !important;
	contain: none !important;
}

:root {
	--vo-navy:   #0F314C;
	--vo-navy2:  #1a4a72;
	--vo-pink:   #C17FB5;
	--vo-white:  #fff;
	--vo-g50:    #F8FAFC;
	--vo-g100:   #F1F4F8;
	--vo-g200:   #E2E8F0;
	--vo-g400:   #94A3B8;
	--vo-g600:   #64748B;
	--vo-g800:   #1E293B;
	--vo-green:  #16A34A;
	--vo-red:    #DC2626;
	--vo-radius: 12px;
	--vo-shadow: 0 2px 8px rgba(15,49,76,.07);
	--vo-shadow-lg: 0 8px 28px rgba(15,49,76,.13);
}

/* ── Wrapper page ── */
.vo-page {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 20px 64px;
}

/* ══════════════════════════════════════════════
   BARRE DE FILTRES — carte flottante + pills
   ══════════════════════════════════════════════ */

.vo-filterbar {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	background: var(--vo-white);
	border: 1px solid var(--vo-g200);
	border-radius: 18px;
	padding: 14px 16px;
	margin: 14px 0 6px;
	box-shadow: 0 10px 36px rgba(15,49,76,.10);
}

/* Pill bouton */
.vo-pill-btn {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 11px 18px;
	background: var(--vo-g100);
	border: 1.5px solid transparent;
	border-radius: 12px;
	font-size: .85rem;
	font-weight: 700;
	color: var(--vo-navy);
	font-family: inherit;
	cursor: pointer;
	transition: border-color .15s, background .15s, color .15s;
	white-space: nowrap;
}
.vo-pill-btn:hover { background: var(--vo-white); border-color: var(--vo-navy); }
.vo-pill-btn.is-active {
	background: var(--vo-navy);
	border-color: var(--vo-navy);
	color: #fff;
}
.vo-pill-btn.is-active svg { stroke: #fff; }
.vo-pill-btn svg { transition: transform .2s; }
.vo-pill-wrap.is-open .vo-pill-btn svg { transform: rotate(180deg); }

/* Dropdown */
.vo-pill-wrap {
	position: relative;
}
.vo-pill-dropdown {
	display: none;
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	min-width: 220px;
	background: var(--vo-white);
	border: 1.5px solid var(--vo-g200);
	border-radius: 14px;
	box-shadow: 0 8px 32px rgba(15,49,76,.14);
	z-index: 300;
	overflow: hidden;
}
.vo-pill-wrap.is-open .vo-pill-dropdown { display: block; }
.vo-pill-dropdown__inner {
	max-height: 320px;
	overflow-y: auto;
	scrollbar-width: thin;
}

.vo-pill-dropdown__sep {
	padding: 10px 16px 4px;
	font-size: .65rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--vo-g400);
}

.vo-pill-dropdown__item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 16px;
	font-size: .85rem;
	color: var(--vo-g800);
	cursor: pointer;
	transition: background .1s;
}
.vo-pill-dropdown__item:hover { background: var(--vo-g50); }
.vo-pill-dropdown__item input[type="checkbox"],
.vo-pill-dropdown__item input[type="radio"] {
	width: 16px;
	height: 16px;
	accent-color: var(--vo-navy);
	flex-shrink: 0;
	cursor: pointer;
}
.vo-pill-dropdown__item input:checked ~ span { font-weight: 700; color: var(--vo-navy); }

.vo-pill-dropdown__footer {
	padding: 10px 16px;
	border-top: 1px solid var(--vo-g100);
}
.vo-pill-dropdown__apply {
	width: 100%;
	padding: 9px;
	background: var(--vo-navy);
	color: #fff;
	border: none;
	border-radius: 8px;
	font-size: .82rem;
	font-weight: 700;
	font-family: inherit;
	cursor: pointer;
	transition: background .15s;
}
.vo-pill-dropdown__apply:hover { background: var(--vo-navy2); }

/* Bouton "Plus de filtres" */
.vo-filterbar__more-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 11px 18px;
	background: var(--vo-white);
	border: 1.5px solid var(--vo-navy);
	border-radius: 12px;
	font-size: .85rem;
	font-weight: 700;
	color: var(--vo-navy);
	font-family: inherit;
	cursor: pointer;
	white-space: nowrap;
	margin-left: auto;
	transition: background .15s, color .15s;
}
.vo-filterbar__more-btn:hover,
.vo-filterbar__more-btn.is-active {
	background: var(--vo-navy);
	color: #fff;
}
.vo-filterbar__more-btn svg { transition: transform .2s; }

/* Rangée de filtres secondaires (repliée par défaut) */
.vo-filterbar__more {
	display: none;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	width: 100%;
	padding-top: 12px;
	margin-top: 4px;
	border-top: 1px dashed var(--vo-g200);
}
.vo-filterbar__more.is-open { display: flex; }

/* Pill interrupteur (garantie) */
.vo-pill-check {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 11px 18px;
	background: var(--vo-g100);
	border: 1.5px solid transparent;
	border-radius: 12px;
	font-size: .85rem;
	font-weight: 700;
	color: var(--vo-navy);
	cursor: pointer;
	white-space: nowrap;
	transition: border-color .15s, background .15s, color .15s;
}
.vo-pill-check:hover { background: var(--vo-white); border-color: var(--vo-navy); }
.vo-pill-check input {
	width: 16px;
	height: 16px;
	accent-color: var(--vo-pink);
	cursor: pointer;
}
.vo-pill-check.is-active {
	background: var(--vo-navy);
	border-color: var(--vo-navy);
	color: #fff;
}

/* Bouton recherche (visible sur mobile) */
.vo-filterbar__submit {
	display: none;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	background: var(--vo-navy);
	color: #fff;
	border: none;
	border-radius: 30px;
	font-size: .85rem;
	font-weight: 700;
	font-family: inherit;
	cursor: pointer;
}
@media (max-width: 640px) { .vo-filterbar__submit { display: inline-flex; } }

/* ── Chips filtres actifs ── */
.vo-chips {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin: 14px 2px 0;
}
.vo-chip-filter {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 7px 13px;
	background: var(--vo-navy);
	color: #fff;
	border-radius: 30px;
	font-size: .76rem;
	font-weight: 700;
	text-decoration: none;
	transition: background .15s;
}
.vo-chip-filter svg { opacity: .65; transition: opacity .15s; }
.vo-chip-filter:hover { background: var(--vo-pink); }
.vo-chip-filter:hover svg { opacity: 1; }
.vo-chips__clear {
	font-size: .78rem;
	font-weight: 600;
	color: var(--vo-g600);
	text-decoration: underline;
	text-underline-offset: 3px;
	transition: color .15s;
	margin-left: 4px;
}
.vo-chips__clear:hover { color: var(--vo-red); }

/* ── Compteur + tri ── */
.vo-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	margin: 20px 0 22px;
}
.vo-count {
	font-size: .9rem;
	color: var(--vo-g600);
	margin: 0;
}
.vo-count strong { color: var(--vo-navy); font-weight: 800; }

.vo-toolbar__sort {
	display: inline-flex;
	align-items: center;
	gap: 9px;
}
.vo-toolbar__sort label {
	font-size: .68rem;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--vo-g400);
}
.vo-toolbar__sort select {
	appearance: none;
	-webkit-appearance: none;
	padding: 10px 38px 10px 16px;
	background: var(--vo-white) url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230F314C' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 14px center;
	border: 1.5px solid var(--vo-g200);
	border-radius: 12px;
	font-family: inherit;
	font-size: .84rem;
	font-weight: 600;
	color: var(--vo-navy);
	cursor: pointer;
	outline: none;
	transition: border-color .15s;
}
.vo-toolbar__sort select:hover,
.vo-toolbar__sort select:focus { border-color: var(--vo-navy); }

/* ══════════════════════════════════════════════
   GRILLE RÉSULTATS
   ══════════════════════════════════════════════ */

.vo-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	list-style: none;
	padding: 0;
	margin: 0;
}
@media (max-width: 1200px) { .vo-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px)  { .vo-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (max-width: 560px)  { .vo-grid { grid-template-columns: 1fr; } }

.vo-empty {
	grid-column: 1 / -1;
	text-align: center;
	padding: 60px 20px;
	color: var(--vo-g400);
	font-size: .95rem;
}
.vo-empty a { color: var(--vo-navy); font-weight: 700; text-decoration: none; }

/* ══════════════════════════════════════════════
   CARD VÉHICULE
   ══════════════════════════════════════════════ */

.vo-card { }

.vo-card__inner {
	display: flex;
	flex-direction: column;
	background: var(--vo-white);
	border-radius: 14px;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	transition: box-shadow .2s, transform .18s;
	box-shadow: 0 1px 4px rgba(15,49,76,.07), 0 4px 16px rgba(15,49,76,.06);
	height: 100%;
}
.vo-card__inner:hover {
	box-shadow: 0 4px 16px rgba(15,49,76,.1), 0 16px 40px rgba(15,49,76,.12);
	transform: translateY(-4px);
}

/* ── Photo ── */
.vo-card__img {
	position: relative;
	/* Ratio 4/3 = ratio natif des photos PlanetVO (800x600) : le cadre
	   épouse la photo, donc AUCUN rognage des bandeaux haut/bas incrustés. */
	aspect-ratio: 4 / 3;
	background: var(--vo-g100);
	overflow: hidden;
	flex-shrink: 0;
}
.vo-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform .5s ease;
	display: block;
}
.vo-card__inner:hover .vo-card__img img { transform: scale(1.04); }

/* ── Corps ── */
.vo-card__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 16px 18px 18px;
	gap: 11px;
}

.vo-card__marque {
	font-size: .66rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .14em;
	color: var(--vo-pink);
	margin: 0 0 3px;
}
.vo-card__modele {
	font-size: 1.18rem;
	font-weight: 800;
	color: var(--vo-navy);
	margin: 0 0 4px;
	line-height: 1.15;
}
.vo-card__version {
	font-size: .78rem;
	color: var(--vo-g600);
	margin: 0;
	line-height: 1.45;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* Specs */
.vo-card__specs {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}
.vo-card__spec {
	display: inline-block;
	padding: 4px 11px;
	background: var(--vo-g100);
	border-radius: 20px;
	font-size: .75rem;
	font-weight: 600;
	color: var(--vo-g600);
}

/* Footer prix */
.vo-card__footer {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 10px;
	margin-top: auto;
	padding-top: 14px;
	border-top: 1px solid var(--vo-g100);
}
.vo-card__prix-wrap {
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.vo-card__prix {
	font-size: 1.4rem;
	font-weight: 900;
	color: var(--vo-navy);
	line-height: 1;
}
.vo-card__prix--promo { color: var(--vo-red); }
.vo-card__prix--nc    { font-size: .9rem; color: var(--vo-g600); font-weight: 600; }
.vo-card__prix-old {
	font-size: .85rem;
	color: var(--vo-g400);
	text-decoration: line-through;
	line-height: 1;
}
.vo-card__mensuel {
	font-size: .72rem;
	color: var(--vo-g600);
	margin-top: 3px;
}
.vo-card__cta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 16px;
	background: var(--vo-navy);
	color: var(--vo-white);
	border-radius: 10px;
	font-size: .78rem;
	font-weight: 700;
	white-space: nowrap;
	flex-shrink: 0;
	transition: background .15s;
}
.vo-card__inner:hover .vo-card__cta { background: var(--vo-navy2); }

/* ── Pagination ── */
.vo-pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 6px;
	margin-top: 48px;
}
.vo-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	padding: 0 10px;
	border: 1.5px solid var(--vo-g200);
	border-radius: 8px;
	font-size: .85rem;
	font-weight: 500;
	color: var(--vo-g800);
	text-decoration: none;
	background: var(--vo-white);
	transition: all .15s;
}
.vo-pagination .page-numbers:hover { border-color: var(--vo-navy); color: var(--vo-navy); }
.vo-pagination .current { background: var(--vo-navy); border-color: var(--vo-navy); color: var(--vo-white); }
.vo-pagination .dots { border: none; background: none; color: var(--vo-g400); }

/* ── Single fiche — conserve les anciens styles ── */
.occasion__carousel { margin-bottom: 32px; }
.carousel__slides { list-style: none; padding: 0; margin: 0; }
.carousel__slides img { width: 100%; max-height: 480px; object-fit: cover; }
.vehicule__infos { display: grid; grid-template-columns: 1fr 300px; gap: 32px; align-items: start; margin-bottom: 40px; }
@media (max-width: 900px) { .vehicule__infos { grid-template-columns: 1fr; } }
.infos__main h1 { font-size: clamp(1.4rem,3vw,2rem); font-weight: 900; text-transform: uppercase; color: var(--vo-navy); margin: 0 0 4px; }
.vehicule__version { display: block; font-size: .85rem; color: var(--vo-g600); font-weight: 400; margin-top: 4px; }
.vehicules__metas { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: .85rem; }
.vehicules__metas td { padding: 6px 10px 6px 0; color: var(--vo-g800); vertical-align: top; }
.vehicules__metas td:first-child { color: var(--vo-g400); width: 160px; white-space: nowrap; }
.vehicules__metas a { color: var(--vo-navy); font-weight: 600; text-decoration: none; }
.vehicules__metas a:hover { color: var(--vo-pink); }
.vehicule__prix { font-size: 1.3rem; font-weight: 900; color: var(--vo-navy); margin: 16px 0 8px; }
.vehicule__vivafi { display: flex; align-items: center; justify-content: space-between; gap: 16px; background: var(--vo-g100); border-radius: 8px; padding: 12px 16px; margin-top: 12px; }
.vivafi__from { font-size: .72rem; color: var(--vo-g400); margin: 0; }
.vivafi__price { font-size: .9rem; margin: 0; display: flex; align-items: center; gap: 8px; }
.vivafi__amount { font-weight: 700; color: var(--vo-navy); }
.infos__contact { display: flex; flex-direction: column; gap: 10px; position: sticky; top: 100px; }
.infos__contact .btn { width: 100%; padding: 12px; border-radius: var(--vo-radius); font-size: .8rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; cursor: pointer; transition: all .18s; border: 1.5px solid var(--vo-g200); background: var(--vo-white); color: var(--vo-g600); }
.infos__contact .btn:hover { border-color: var(--vo-navy); color: var(--vo-navy); }
.infos__contact .btn.is-revealed a { color: var(--vo-navy); text-decoration: none; }
.vehicule__more { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
@media (max-width: 768px) { .vehicule__more { grid-template-columns: 1fr; } }
.vehicule__technique h3, .vehicule__options h3 { display: flex; align-items: center; gap: 8px; font-size: .9rem; font-weight: 700; color: var(--vo-navy); text-transform: uppercase; letter-spacing: .04em; margin: 0 0 12px; padding-bottom: 8px; border-bottom: 2px solid var(--vo-g200); }

/* ═══════════════════════════════════════════════════════════
   Single véhicule — nouveau design .vs-*
   ═══════════════════════════════════════════════════════════ */

/* Wrapper */
.vs-page {
	max-width: 1260px;
	margin: 0 auto;
	padding: 0 20px 80px;
}

/* Breadcrumb */
.vs-breadcrumb {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 20px 0 24px;
	font-size: .82rem;
	color: var(--vo-g400);
}
.vs-breadcrumb__back {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	color: var(--vo-navy);
	font-weight: 600;
	text-decoration: none;
	transition: color .15s;
}
.vs-breadcrumb__back:hover { color: var(--vo-pink); }
.vs-breadcrumb__sep { color: var(--vo-g200); }
.vs-breadcrumb__current { color: var(--vo-g600); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 320px; }

/* Layout 2-colonnes */
.vs-layout {
	display: grid;
	grid-template-columns: 1fr 380px;
	gap: 40px;
	align-items: start;
}
@media (max-width: 1024px) { .vs-layout { grid-template-columns: 1fr 340px; gap: 28px; } }
@media (max-width: 820px)  { .vs-layout { grid-template-columns: 1fr; } }

/* ── Galerie ── */
.vs-col-main { min-width: 0; }
.vs-gallery { margin-bottom: 32px; }
.vs-gallery__main {
	position: relative;
	width: 100%;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--vo-g100);
	border-radius: var(--vo-radius);
	display: block;
}
.vs-gallery__slides {
	display: block;
	width: 100%;
	height: 100%;
}
.vs-gallery__slide {
	display: none;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.vs-gallery__slide.is-active { display: block; overflow: hidden; }
.vs-gallery__slide img {
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	object-position: center !important;
	max-width: 100% !important;
}

/* Nav arrows */
.vs-gallery__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	background: rgba(255,255,255,.9);
	border: none;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 2px 8px rgba(0,0,0,.15);
	transition: background .15s, transform .15s;
	color: var(--vo-navy);
}
.vs-gallery__nav:hover { background: var(--vo-white); transform: translateY(-50%) scale(1.08); }
.vs-gallery__nav--prev { left: 12px; }
.vs-gallery__nav--next { right: 12px; }

/* Counter */
.vs-gallery__counter {
	position: absolute;
	bottom: 12px;
	right: 14px;
	background: rgba(15,49,76,.7);
	color: #fff;
	font-size: .72rem;
	font-weight: 600;
	padding: 3px 10px;
	border-radius: 20px;
}

/* Thumbnails */
.vs-gallery__thumbs {
	display: flex;
	gap: 8px;
	margin-top: 10px;
	overflow-x: auto;
	padding-bottom: 4px;
	scrollbar-width: thin;
}
.vs-gallery__thumb {
	flex-shrink: 0;
	width: 72px;
	height: 54px;
	border-radius: 8px;
	overflow: hidden;
	border: 2px solid transparent;
	cursor: pointer;
	padding: 0;
	background: none;
	transition: border-color .15s, opacity .15s;
	opacity: .65;
}
.vs-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.vs-gallery__thumb.is-active { border-color: var(--vo-navy); opacity: 1; }
.vs-gallery__thumb:hover { opacity: .9; }

/* Placeholder sans photo */
.vs-gallery__placeholder {
	aspect-ratio: 16 / 10;
	background: var(--vo-g100);
	border-radius: var(--vo-radius);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--vo-g400);
}

/* ── Specs mobiles ── */
.vs-specs-mobile {
	display: none;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 28px;
}
@media (max-width: 820px) { .vs-specs-mobile { display: flex; } }

.vs-spec {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	background: var(--vo-g100);
	border-radius: 20px;
	font-size: .78rem;
	font-weight: 600;
	color: var(--vo-g800);
}
.vs-spec__icon { font-size: .9rem; }

/* ── Sections ── */
.vs-section {
	margin-bottom: 36px;
	padding: 28px;
	background: var(--vo-white);
	border: 1.5px solid var(--vo-g200);
	border-radius: var(--vo-radius);
	box-shadow: var(--vo-shadow);
}
.vs-section__title {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: .9rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: var(--vo-navy);
	margin: 0 0 20px;
	padding-bottom: 14px;
	border-bottom: 1.5px solid var(--vo-g100);
}
.vs-section__badge {
	margin-left: auto;
	background: var(--vo-pink);
	color: #fff;
	font-size: .65rem;
	font-weight: 700;
	padding: 2px 8px;
	border-radius: 20px;
}

/* Grille fiche technique */
.vs-specs-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0;
}
@media (max-width: 600px) { .vs-specs-grid { grid-template-columns: 1fr; } }

.vs-spec-row {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 8px;
	padding: 10px 12px;
	font-size: .84rem;
	border-bottom: 1px solid var(--vo-g100);
}
.vs-spec-row:nth-child(odd)  { background: var(--vo-g50); }
.vs-spec-row:nth-child(even) { background: var(--vo-white); }
.vs-spec-row span { color: var(--vo-g600); flex-shrink: 0; }
.vs-spec-row strong { color: var(--vo-g800); font-weight: 600; text-align: right; }

/* Équipements */
.vs-equipements {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 6px 16px;
	max-height: 260px;
	overflow: hidden;
	transition: max-height .4s ease;
}
.vs-equipements.is-open { max-height: 9999px; }
@media (max-width: 600px) { .vs-equipements { grid-template-columns: 1fr; } }
.vs-equipements li {
	display: flex;
	align-items: flex-start;
	gap: 7px;
	font-size: .82rem;
	color: var(--vo-g800);
	padding: 3px 0;
}
.vs-equipements li::before {
	content: '';
	display: inline-block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--vo-pink);
	flex-shrink: 0;
	margin-top: 5px;
}

.vs-equip-toggle {
	display: flex;
	align-items: center;
	gap: 6px;
	background: none;
	border: 1.5px solid var(--vo-g200);
	border-radius: 8px;
	padding: 8px 18px;
	font-size: .8rem;
	font-weight: 600;
	color: var(--vo-navy);
	cursor: pointer;
	margin-top: 14px;
	transition: all .15s;
}
.vs-equip-toggle:hover { border-color: var(--vo-navy); background: var(--vo-g50); }
.vs-equip-toggle svg { transition: transform .3s; }
.vs-equip-toggle.is-open svg { transform: rotate(180deg); }

/* Vivafi iframe */
.vs-vivafi-iframe { width: 100%; min-height: 400px; border: none; }

/* ── Sidebar fiche ── */
.vs-sidebar {
	position: sticky;
	top: 100px;
	background: var(--vo-white);
	border: 1.5px solid var(--vo-g200);
	border-radius: var(--vo-radius);
	box-shadow: var(--vo-shadow-lg);
	overflow: hidden;
}
@media (max-width: 820px) { .vs-sidebar { position: static; } }

.vs-sidebar__header {
	padding: 24px 24px 20px;
	background: var(--vo-navy);
	color: var(--vo-white);
}
.vs-sidebar__header .vs-badge {
	display: inline-block;
	font-size: .62rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .08em;
	padding: 3px 10px;
	border-radius: 20px;
	margin-right: 6px;
	margin-bottom: 12px;
}
.vs-badge--essence { background: rgba(255,255,255,.18); color: #fff; }
.vs-badge--diesel  { background: rgba(30,41,59,.5);    color: #fff; }
.vs-badge--elec    { background: rgba(22,163,74,.85);  color: #fff; }
.vs-badge--hybrid  { background: rgba(13,148,136,.85); color: #fff; }
.vs-badge--garantie { background: rgba(193,127,181,.85); color: #fff; }

.vs-sidebar__marque {
	font-size: .65rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .14em;
	color: var(--vo-pink);
	margin: 0 0 3px;
}
.vs-sidebar__modele {
	font-size: clamp(1.3rem, 2.5vw, 1.7rem);
	font-weight: 900;
	text-transform: uppercase;
	color: #fff;
	margin: 0 0 4px;
	line-height: 1.1;
}
.vs-sidebar__version {
	font-size: .8rem;
	color: rgba(255,255,255,.65);
	margin: 0;
}

.vs-sidebar__specs {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	padding: 16px 24px;
	border-bottom: 1px solid var(--vo-g100);
}
.vs-chip {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 5px 11px;
	background: var(--vo-g100);
	border-radius: 20px;
	font-size: .75rem;
	font-weight: 600;
	color: var(--vo-g800);
}
.vs-chip svg { color: var(--vo-g400); }

.vs-sidebar__prix {
	padding: 20px 24px;
	border-bottom: 1px solid var(--vo-g100);
}
.vs-prix-main {
	font-size: 1.9rem;
	font-weight: 900;
	color: var(--vo-navy);
	line-height: 1;
}
.vs-prix-promo { display: flex; flex-direction: column; gap: 2px; }
.vs-prix-old {
	font-size: 1rem;
	font-weight: 600;
	color: var(--vo-g400);
	text-decoration: line-through;
}
.vs-prix-new {
	font-size: 1.9rem;
	font-weight: 900;
	color: var(--vo-red);
	line-height: 1;
}
.vs-prix-nc {
	font-size: 1rem;
	font-weight: 600;
	color: var(--vo-g600);
}
.vs-mensuel {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-top: 10px;
	font-size: .78rem;
	color: var(--vo-g600);
}
.vs-mensuel strong { color: var(--vo-navy); font-weight: 700; font-size: .9rem; }
.vs-vivafi-info {
	background: none;
	border: none;
	cursor: pointer;
	padding: 0 2px;
	color: var(--vo-g400);
	display: inline-flex;
	align-items: center;
}
.vs-vivafi-info:hover { color: var(--vo-navy); }

.vs-sidebar__cta {
	padding: 20px 24px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	border-bottom: 1px solid var(--vo-g100);
}
.vs-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	width: 100%;
	padding: 13px 20px;
	border-radius: 10px;
	font-size: .85rem;
	font-weight: 700;
	font-family: inherit;
	cursor: pointer;
	text-decoration: none;
	text-align: center;
	transition: all .18s;
	border: 2px solid transparent;
	letter-spacing: .01em;
}
.vs-btn--primary { background: var(--vo-navy); color: #fff; border-color: var(--vo-navy); }
.vs-btn--primary:hover { background: var(--vo-navy2); border-color: var(--vo-navy2); }
.vs-btn--primary.is-revealed { background: var(--vo-green); border-color: var(--vo-green); }
.vs-btn--primary.is-revealed a { color: #fff; text-decoration: none; }
.vs-btn--outline { background: transparent; color: var(--vo-navy); border-color: var(--vo-navy); }
.vs-btn--outline:hover { background: var(--vo-navy); color: #fff; }
.vs-btn--ghost { background: var(--vo-g50); color: var(--vo-g600); border-color: var(--vo-g200); font-size: .78rem; padding: 10px 16px; }
.vs-btn--ghost:hover { border-color: var(--vo-g400); color: var(--vo-g800); }

.vs-sidebar__concession {
	display: flex;
	align-items: center;
	gap: 7px;
	padding: 14px 24px;
	font-size: .8rem;
	color: var(--vo-g600);
}
.vs-sidebar__concession svg { flex-shrink: 0; color: var(--vo-pink); }
.vs-sidebar__concession a { color: var(--vo-navy); font-weight: 600; text-decoration: none; }
.vs-sidebar__concession a:hover { color: var(--vo-pink); }
