/* =========================================================
   Personnalisation — par-dessus la base Bootstrap 5
   Police : Outfit
   ========================================================= */

:root {
	--bs-font-sans-serif: 'Outfit', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
	--bs-body-font-family: var(--bs-font-sans-serif);

	/* Palette de marque : rouge Auto Style First + structure sombre */
	--brand: #e11d2a;
	--brand-dark: #b3151f;
	--brand-accent: #e11d2a;
	--ink: #121212;
	--ink-2: #0d0e12;
	--bs-primary: var(--brand);
	--bs-primary-rgb: 225, 29, 42;

	/* Neutres — surfaces et textes */
	--surface: #ffffff;
	--surface-muted: #f5f6f8;
	--page-bg: #ebebe9;
	--line: rgba(18, 18, 18, .08);
	--line-strong: rgba(18, 18, 18, .14);
	--text: #1a1c20;
	--text-muted: #5b6470;

	/* Rayons cohérents */
	--radius-sm: 8px;
	--radius: 6px;
	--radius-lg: 16px;
	--radius-pill: 999px;

	/* Ombres — échelle douce et professionnelle */
	--shadow-xs: 0 1px 2px rgba(16, 24, 40, .05);
	--shadow-sm: 0 1px 3px rgba(16, 24, 40, .08), 0 1px 2px rgba(16, 24, 40, .04);
	--shadow-md: 0 4px 12px rgba(16, 24, 40, .08), 0 2px 4px rgba(16, 24, 40, .04);
	--shadow-lg: 0 16px 40px rgba(16, 24, 40, .12), 0 4px 12px rgba(16, 24, 40, .06);

	--transition: .18s cubic-bezier(.4, 0, .2, 1);
}

body {
	font-family: var(--bs-font-sans-serif);
	color: var(--text);
	background-color: var(--page-bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.15;
	color: var(--ink);
}

p {
	line-height: 1.65;
}

.text-muted {
	color: var(--text-muted) !important;
}

/* Espace vertical de section un peu plus généreux et régulier */
section.py-5 {
	padding-top: 4.5rem !important;
	padding-bottom: 4.5rem !important;
}

/* Titre de section avec filet d'accent sous le texte */
.section-title {
	position: relative;
	display: inline-block;
	padding-bottom: .65rem;
}

.section-title::after {
	display: none;
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 48px;
	height: 3px;
	border-radius: var(--radius-pill);
	background: var(--brand);
}

/* Boutons : transition douce, relief au survol, focus accessible */
.btn {
	--bs-btn-font-weight: 600;
	--bs-btn-border-radius: var(--radius);
	border-radius: var(--radius);
	transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition), border-color var(--transition), color var(--transition);
}

.btn:focus-visible {
	outline: 0;
	box-shadow: 0 0 0 .25rem rgba(var(--bs-primary-rgb), .35);
}

.btn-lg {
	--bs-btn-border-radius: var(--radius);
	border-radius: var(--radius);
}

/* Bouton carré « icône seule » (téléphone / WhatsApp sur la fiche) */
.btn-icon {
	flex: 0 0 auto;
	aspect-ratio: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: .25rem;
	font-size: 1.15rem;
}

/* Boutons / liens primaires alignés sur la marque */
.btn-primary {
	--bs-btn-bg: var(--brand);
	--bs-btn-border-color: var(--brand);
	--bs-btn-hover-bg: var(--brand-dark);
	--bs-btn-hover-border-color: var(--brand-dark);
	--bs-btn-active-bg: var(--brand-dark);
	box-shadow: var(--shadow-xs);
}

.btn-primary:hover {
	transform: translateY(-1px);
	box-shadow: 0 6px 16px rgba(var(--bs-primary-rgb), .28);
}

.btn-outline-primary {
	--bs-btn-color: var(--brand);
	--bs-btn-border-color: var(--brand);
	--bs-btn-hover-bg: var(--brand);
	--bs-btn-hover-border-color: var(--brand);
}

.btn-light:hover {
	transform: translateY(-1px);
	box-shadow: var(--shadow-md);
}

a {
	color: var(--brand);
	text-underline-offset: .15em;
}

.red {
	color: #e11d2a !important;
}

/* ---------- En-tête ---------- */
.site-header {
	box-shadow: var(--shadow-sm);
}

/* Barre principale : fond sombre, texte clair */
.main-navbar {
	background: #0a0a0c;
	border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.site-header .navbar-brand {
	color: #fff;
	font-size: 1.4rem;
}

.site-header .nav-link {
	font-weight: 500;
	color: #e9edf3;
	position: relative;
	padding-top: .6rem;
	padding-bottom: .6rem;
	transition: color var(--transition);
}

/* Soulignement progressif sous le lien actif / survolé */
.site-header .nav-link::after {
	content: "";
	position: absolute;
	left: .85rem;
	right: .85rem;
	bottom: .3rem;
	height: 2px;
	border-radius: var(--radius-pill);
	background: var(--brand);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform var(--transition);
}

.site-header .nav-link.active::after,
.site-header .nav-link:hover::after {
	transform: scaleX(1);
}

.site-header .nav-link.active,
.site-header .nav-link:hover {
	color: var(--brand-accent);
}

.main-navbar .navbar-toggler {
	border-color: rgba(255, 255, 255, .25);
}

.main-navbar .navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.85)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.brand-logo {
	height: 80px;
	width: auto;
	display: block;
}

/* Barre utilitaire (téléphone / email / horaires) — défile au scroll */
.topbar {
	background: rgba(13, 14, 18, 1);
	color: #cdd6e3;
	font-size: .85rem;
}

.topbar .topbar-link {
	color: #cdd6e3;
	text-decoration: none;
	white-space: nowrap;
}

.topbar .topbar-link:hover {
	color: #fff;
}

.topbar .topbar-sep {
	color: rgba(255, 255, 255, .18);
}

@media (max-width: 575px) {
	.topbar {
		display: none;
	}
}

/* Bloc de droite : libellé discret + messageries, aligné et séparé du bloc gauche */
.topbar-right {
	gap: .4rem;
	padding-left: 1rem;
	border-left: 1px solid rgba(255, 255, 255, .12);
}

.topbar-right .topbar-link {
	color: rgba(205, 214, 227, .7);
	font-size: .8rem;
}

@media (max-width: 991.98px) {
	.topbar-right {
		border-left: 0;
		padding-left: 0;
	}
}

.topbar .topbar-social {
	color: #cdd6e3;
	font-size: .9rem;
	height: 26px;
	padding: 0 .6rem;
	display: inline-flex;
	align-items: center;
	gap: .35rem;
	border-radius: var(--radius-pill);
	border: 1px solid rgba(255, 255, 255, .14);
	text-decoration: none;
	white-space: nowrap;
	transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}

.topbar .topbar-social__name {
	font-size: .78rem;
	font-weight: 400;
	letter-spacing: .01em;
}

.topbar .topbar-social:hover {
	color: #fff;
	background: var(--brand);
	border-color: var(--brand);
	transform: translateY(-1px);
}

/* Actions du menu (recherche + bouton Contact) */
.navbar-actions {
	flex-wrap: wrap;
}

/* Barre de recherche dans le menu principal — pilule sur fond sombre */
.navbar-search {
	min-width: 220px;
	max-width: 300px;
}

.navbar-search .form-control {
	background: transparent;
	border: 1px solid rgba(236, 236, 236, 1);
	border-right: 0;
	color: rgba(255, 255, 255, 0.8);
	border-radius: 35px 0 0 35px;
	padding-left: 1rem;
}

.navbar-search .form-control::placeholder {
	color: rgba(255, 255, 255, 0.45);
}

.navbar-search .form-control:focus {
	background: transparent;
	color: rgba(255, 255, 255, 0.9);
	border-color: var(--brand);
	box-shadow: none;
}

.navbar-search .btn-search {
	background: transparent;
	border: 1px solid rgba(236, 236, 236, 1);
	border-left: 0;
	color: rgba(255, 255, 255, 0.8);
	border-radius: 0 35px 35px 0;
	padding-right: 1rem;
}

.navbar-search .form-control:focus+.btn-search {
	border-color: var(--brand);
}

.navbar-search .btn-search:hover {
	background: var(--brand);
	border-color: var(--brand);
	color: #fff;
}

@media (max-width: 991.98px) {
	.navbar-search {
		min-width: 0;
		max-width: none;
		width: 100%;
	}
}

/* ---------- Hero ---------- */
.hero {
	position: relative;
	background:
		radial-gradient(1200px 500px at 85% -10%, rgba(225, 29, 42, .35), transparent 60%),
		linear-gradient(120deg, var(--ink-2) 0%, #1a1320 55%, var(--brand-dark) 130%);
	overflow: hidden;
}

.hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
	background-size: 44px 44px;
	-webkit-mask-image: radial-gradient(120% 90% at 70% 0%, #000 30%, transparent 75%);
	mask-image: radial-gradient(120% 90% at 70% 0%, #000 30%, transparent 75%);
	pointer-events: none;
}

.hero .container {
	position: relative;
	z-index: 1;
}

.hero h1 {
	color: #fff;
}

.hero .lead {
	max-width: 36rem;
}

.min-vh-50 {
	min-height: 50vh;
}

.opacity-90 {
	opacity: .9;
}

/* En-tête de page : bandeau rouge de marque, texte blanc */
.page-hero {
	position: relative;
	background:
		linear-gradient(100deg, #0c0c0e 0%, rgba(12, 12, 14, .82) 40%, rgba(179, 21, 31, .55) 100%),
		var(--brand-dark);
	color: #fff;
	overflow: hidden;
}

/* Photo de voiture en fond, feutrée et fondue sur la droite */
.page-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: url('../img/hero-car.webp');
	background-size: cover;
	background-position: center right;
	opacity: .5;
	filter: saturate(1.05) contrast(1.02);
	-webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .35) 35%, #000 75%);
	mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .35) 35%, #000 75%);
	pointer-events: none;
	z-index: 0;
}

.page-hero>.container {
	position: relative;
	z-index: 1;
}

.page-hero h1 {
	color: #fff;
	text-shadow: 0 1px 12px rgba(0, 0, 0, .35);
}

.page-hero .text-muted {
	color: rgba(255, 255, 255, .85) !important;
}

.page-hero a {
	color: #fff;
	text-decoration: underline;
}

.page-hero a:hover {
	color: #fff;
	opacity: .85;
}

.page-hero {
	color: rgba(255, 255, 255, .85);
}

.breadcrumb-item.active {
	color: #242424;
	font-weight: 600;
}

.page-hero .breadcrumb-item+.breadcrumb-item::before {
	color: rgba(255, 255, 255, .55);
}
.breadcrumb-item+.breadcrumb-item::before {
    float: left;
    padding-right: var(--bs-breadcrumb-item-padding-x);
    color: var(--bs-breadcrumb-divider-color);
    content: var(--bs-breadcrumb-divider, "•");
}

.breadcrumb-item	a {
	color: #767676;
	text-decoration: none;
}

.breadcrumb-item-listing	a {
	color: rgba(255, 255, 255, .85);
	text-decoration: none;
}
.breadcrumb-item-listing.active {
	color: rgba(255, 255, 255, .85);
	text-decoration: none;
}

.bg-light-section {
	background: #f6f8fb;
}

/* ---------- Cartes véhicule ---------- */
.vehicule-card {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
	color: inherit;
	box-shadow: var(--shadow-sm);
	background: var(--surface);
	padding-top: 0.8rem;
	padding-left: 0.8rem;
	padding-right: 0.8rem;
}

.vehicule-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
	border-color: var(--line-strong);
}

.vehicule-card .card-body {
	padding: 1.1rem 0 1.25rem;
	display: flex;
	flex-direction: column;
}

/* La ligne prix / bouton reste collée en bas, alignée entre toutes les cartes */
.vehicule-card .card-body .mt-auto {
	border-top: 1px solid var(--line);
}

.vehicule-card .card-title {
	letter-spacing: -0.01em;
}

.vehicule-card__img {
	position: relative;
	aspect-ratio: 4 / 3;
	background-size: cover;
	background-position: center;
	background-color: #e9edf3;
}

.vehicule-card__media {
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background-color: #e9edf3;
	border-radius: var(--radius);
}

.vehicule-card__photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .3s ease;
}

.vehicule-card:hover .vehicule-card__photo {
	transform: scale(1.04);
}

.vehicule-card__badge {
	position: absolute;
	top: .75rem;
	left: .75rem;
	z-index: 1;
}

.vehicule-card__badge--end {
	left: auto;
	right: .75rem;
}

/* Badges catégorie (harmonisés) */
.badge-occasion,
.badge-neuf,
.promo-badge {
	font-weight: 600;
	letter-spacing: .02em;
	padding: .4rem .6rem;
	border-radius: var(--radius-pill);
	box-shadow: var(--shadow-sm);
	backdrop-filter: saturate(1.2);
}

.badge-occasion {
	background: #334155;
	color: #fff;
}

.badge-neuf {
	background: #15803d;
	color: #fff;
}

/* Badge remise (-X%) : accent marque, distinct des badges état */
.promo-badge {
	background: var(--brand);
	color: #fff;
}

/* Prix barré (avant remise) */
.vehicule-price-wrap {
	display: flex;
	align-items: baseline;
	gap: .5rem;
}

.vehicule-price-old {
	color: var(--text-muted);
	text-decoration: line-through;
	font-weight: 500;
	font-size: .85em;
}

.vehicule-price-old--lg {
	font-size: 1.05rem;
}

/* Prix sur les cartes du listing : rouge accent */
.vehicule-card .vehicule-price {
	color: #e11d2a;
}

.section-pages,
.section-listing {
	background-color: rgba(235, 235, 233, 0.35);
}


/* ---------- Filtres listing ---------- */
.filters-card {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
}

@media (min-width: 992px) {
	.filters-card {
		position: sticky;
		top: 90px;
	}
}

/* En-tête du panneau de filtres */
.filters-head {
	padding-bottom: .85rem;
	border-bottom: 1px solid var(--line);
}

.filters-reset {
	color: var(--text-muted);
	font-weight: 600;
	transition: color var(--transition);
	white-space: nowrap;
}

.filters-reset:hover {
	color: var(--brand);
}

/* Groupes de filtres séparés par un filet léger */
.filters-block {
	padding: 1.1rem 0;
	border-bottom: 1px solid var(--line);
}

.filters-block:last-of-type {
	border-bottom: 0;
	padding-bottom: .25rem;
}

.filters-legend {
	display: block;
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--text-muted);
	margin-bottom: .85rem;
}

/* Puce de recherche active */
.search-chip {
	background: var(--surface-muted);
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	padding: .45rem .7rem;
	font-size: .85rem;
}

.search-chip a {
	color: var(--text-muted);
	font-size: 1.1rem;
	line-height: 1;
}

.search-chip a:hover {
	color: var(--brand);
}

.filters-card .form-select,
.filters-card .form-control {
	border-color: var(--line-strong);
}

.filters-card .form-select:focus,
.filters-card .form-control:focus {
	border-color: var(--brand);
	box-shadow: 0 0 0 .2rem rgba(var(--bs-primary-rgb), .12);
}

.result-item.is-hidden {
	display: none;
}

/* Filtres AJAX : état de chargement */
.results-col {
	transition: opacity .15s ease;
}

.results-col.is-loading {
	opacity: .45;
	pointer-events: none;
}

/* Curseurs double-bouton (prix / année) */
.range-slider .range-inputs {
	position: relative;
	height: 28px;
}

.range-slider .range-track {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	height: 4px;
	transform: translateY(-50%);
	background: #e2e2e2;
	border-radius: 4px;
}

.range-slider .range-fill {
	position: absolute;
	top: 0;
	height: 100%;
	background: var(--brand);
	border-radius: 4px;
}

.range-slider input[type="range"] {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 28px;
	margin: 0;
	background: none;
	pointer-events: none;
	-webkit-appearance: none;
	appearance: none;
}

.range-slider input[type="range"]::-webkit-slider-runnable-track {
	background: transparent;
	border: 0;
	height: 28px;
}

.range-slider input[type="range"]::-moz-range-track {
	background: transparent;
	border: 0;
	height: 28px;
}

.range-slider input[type="range"]::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	pointer-events: auto;
	width: 18px;
	height: 18px;
	/* (hauteur piste 28px − pouce 18px) / 2 → pouce centré verticalement sur la barre */
	margin-top: 5px;
	border-radius: 50%;
	background: #fff;
	border: 3px solid var(--brand);
	box-shadow: 0 1px 3px rgba(0, 0, 0, .25);
	cursor: pointer;
}

.range-slider input[type="range"]::-moz-range-thumb {
	pointer-events: auto;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #fff;
	border: 3px solid var(--brand);
	box-shadow: 0 1px 3px rgba(0, 0, 0, .25);
	cursor: pointer;
}

.range-slider .range-values {
	display: flex;
	justify-content: space-between;
	font-size: .8rem;
	font-weight: 600;
	color: var(--ink);
	margin-top: .35rem;
}

.vehicule-specs {
	display: flex;
	gap: .85rem;
	flex-wrap: wrap;
}

.vehicule-specs li {
	margin: 0;
}

.vehicule-price {
	color: var(--brand);
	font-size: 1.15rem;
}

/* ---------- Fiche véhicule ---------- */
.vehicule-specs-table th {
	width: 45%;
}

/* Galerie fiche : hero pleine largeur + grille 2 colonnes (gap 20px) */
.fiche-gallery {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.fiche-gallery__item {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: 6px;
	background: #e9edf3;
	aspect-ratio: 480 / 285;
	cursor: zoom-in;
}

.fiche-gallery__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .4s ease;
}

.fiche-gallery__item:hover img {
	transform: scale(1.04);
}

.fiche-gallery__more {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(15, 23, 42, .6);
	color: #fff;
	font-size: 1.25rem;
	font-weight: 700;
	letter-spacing: .02em;
}

.fiche-gallery__item--video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	pointer-events: none;
}

.fiche-gallery__play {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.6rem;
	color: #fff;
	background: rgba(15, 23, 42, .28);
	transition: background .25s ease;
}

.fiche-gallery__play i {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 999px;
	background: rgba(15, 23, 42, .65);
	backdrop-filter: blur(2px);
}

.fiche-gallery__item--video:hover .fiche-gallery__play {
	background: rgba(15, 23, 42, .4);
}

.details-fiche {
	color: #5b6470 !important;
	font-weight: 400 !important;
}

.details-fiche-value {
	color: #353535 !important;
	font-weight: 600 !important;
}

@media (max-width: 575px) {
	.fiche-gallery {
		grid-template-columns: 1fr;
		gap: 12px;
	}
}

/* Carte contact (fiche) */
.contact-card {
	position: relative;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow-md);
}

/* Badge Neuf/Occasion accroché dans le coin supérieur droit, à fleur des bords */
.contact-card__badge {
	position: absolute;
	top: 0;
	right: 0;
	border-radius: 0 var(--radius) 0 var(--radius);
	letter-spacing: .02em;
}

/* Badge remise, coin opposé (bas-gauche) pour ne pas chevaucher le badge état */
.contact-card__badge--promo {
	top: auto;
	right: auto;
	bottom: 0;
	left: 0;
	border-radius: var(--radius) 0 var(--radius) 0;
}

/* Pas de filet sous la dernière caractéristique listée */
.fiche-specs li:last-child {
	border-bottom: 0 !important;
}

@media (min-width: 992px) {
	.contact-card {
		position: sticky;
		top: 40px;
	}
}

/* Bouton WhatsApp (action secondaire de la fiche) */
.btn-whatsapp {
	--bs-btn-color: #fff;
	--bs-btn-bg: #25d366;
	--bs-btn-border-color: #25d366;
	--bs-btn-hover-color: #fff;
	--bs-btn-hover-bg: #1ebe5b;
	--bs-btn-hover-border-color: #1ebe5b;
	--bs-btn-active-bg: #1aa552;
}

/* Arguments de réassurance sous le CTA : encadré clair */
.contact-trust {
	background: var(--surface-muted);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: .85rem 1rem;
}

.contact-trust__item {
	display: flex;
	align-items: center;
	gap: .6rem;
	font-size: .875rem;
	font-weight: 500;
	color: var(--text);
	padding: .3rem 0;
}

.contact-trust__item+.contact-trust__item {
	border-top: 1px solid var(--line);
}

.contact-trust__item .bi {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.65rem;
	height: 1.65rem;
	border-radius: var(--radius);
	background: rgba(21, 128, 61, .1);
	color: #15803d;
	font-size: .95rem;
}

/* Barre d'action fixe en bas sur mobile (conversion au scroll) */
.fiche-mobilebar {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1030;
	background: var(--surface);
	border-top: 1px solid var(--line);
	box-shadow: 0 -4px 16px rgba(16, 24, 40, .1);
	padding: .6rem 0;
}

.fiche-mobilebar .x-small {
	font-size: .72rem;
}

.fiche-mobilebar .vehicule-price {
	font-size: 1.15rem;
}

/* Évite que la barre fixe ne masque le bas de page sur mobile */
@media (max-width: 991.98px) {
	body:has(.fiche-mobilebar) {
		padding-bottom: 76px;
	}
}

.equipment-badge {
	background: var(--surface-muted);
	color: var(--text);
	font-weight: 500;
	font-size: .85rem;
	padding: .5rem .8rem;
	border: 1px solid var(--line);
	border-radius: var(--radius);
}

.equipment-badge .bi {
	color: var(--brand);
}

.feature-box {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
	transition: transform var(--transition), box-shadow var(--transition);
}

.feature-box:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-md);
}

.feature-box .bi {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 4rem;
	height: 4rem;
	border-radius: var(--radius);
	background: rgba(var(--bs-primary-rgb), .08);
	color: var(--brand) !important;
}

/* ---------- CTA ---------- */
.cta-band {
	position: relative;
	background:
		radial-gradient(900px 400px at 15% 120%, rgba(255, 255, 255, .12), transparent 60%),
		linear-gradient(120deg, var(--ink-2), var(--brand));
	overflow: hidden;
}

/* ---------- Pied de page ---------- */
.site-footer {
	background: rgb(0, 0, 0);
	color: rgba(255, 255, 255, .9);
	font-size: 14px;
}

.site-footer h5,
.site-footer h6 {
	color: #fff;
}

.site-footer .footer-links a {
	color: rgba(255, 255, 255, .9);
	text-decoration: none;
}

.site-footer .footer-links a:hover {
	color: #fff;
}

.site-footer .footer-links li {
	margin-bottom: 1rem;
}

.site-footer .footer-logo {
	height: 44px;
	width: auto;
}

.site-footer .footer-messaging li {
	margin-bottom: .35rem;
	color: rgba(255, 255, 255, .9);
}

.site-footer .footer-contact li {
	margin-bottom: .5rem;
	color: rgba(255, 255, 255, .9);
}

.site-footer .footer-contact a {
	color: rgba(255, 255, 255, .9);
	text-decoration: none;
}

.site-footer .footer-contact a:hover {
	color: #fff;
}

/* Bandeau copyright : fond noir */
.footer-copyright {
	background: rgb(18, 18, 18);
	color: rgba(255, 255, 255, .8);
	padding: .9rem 0;
}

.footer-copyright p {
	color: rgba(255, 255, 255, .8);
}

/* ---------- Contenu légal ---------- */
.legal-content h2 {
	color: var(--brand-dark);
}

.legal-content p {
	line-height: 1.7;
}

/* Documents légaux (mentions, confidentialité, CGV, cookies) */
.legal-doc {
	max-width: 60rem;
	color: #33373d;
}

.legal-doc>.lead {
	font-size: 1.05rem;
	color: var(--text-muted);
	padding-bottom: 1.25rem;
	margin-bottom: 1.5rem;
	border-bottom: 1px solid var(--line);
}

.legal-doc h2,
.legal-doc h3 {
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--ink);
	margin: 2rem 0 .75rem;
	padding-left: .85rem;
	border-left: 3px solid var(--brand);
	line-height: 1.3;
}

.legal-doc h2:first-of-type,
.legal-doc h3:first-of-type {
	margin-top: .5rem;
}

.legal-doc p {
	line-height: 1.75;
	margin-bottom: 1rem;
}

/* Lignes « libellé : valeur » des blocs d'identité */
.legal-doc p strong {
	color: var(--ink);
	font-weight: 600;
}

.legal-doc p strong+span {
	color: #4a5158;
}

.legal-doc a {
	color: var(--brand);
	font-weight: 500;
}

/* ---------- Lightbox ---------- */
.vehicule-gallery .js-lightbox {
	cursor: zoom-in;
}

.lightbox-overlay {
	position: fixed;
	inset: 0;
	background: rgba(8, 12, 20, .92);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1080;
	opacity: 0;
	transition: opacity .25s ease;
}

.lightbox-overlay.is-open {
	opacity: 1;
}

.lightbox-overlay img,
.lightbox-overlay video {
	max-width: 92vw;
	max-height: 88vh;
	object-fit: contain;
	border-radius: .5rem;
	transform: scale(.96);
	transition: transform .25s ease;
}

.lightbox-overlay.is-open img,
.lightbox-overlay.is-open video {
	transform: scale(1);
}

.lightbox-btn {
	position: absolute;
	width: 46px;
	height: 46px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, .35);
	background: rgba(15, 23, 42, .55);
	color: #fff;
	font-size: 1.4rem;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.lightbox-btn:hover {
	background: rgba(15, 23, 42, .8);
}

.lightbox-prev {
	top: 50%;
	left: 18px;
	transform: translateY(-50%);
}

.lightbox-next {
	top: 50%;
	right: 18px;
	transform: translateY(-50%);
}

.lightbox-close {
	top: 18px;
	right: 20px;
}

.lightbox-counter {
	position: absolute;
	bottom: 18px;
	left: 50%;
	transform: translateX(-50%);
	color: #cdd6e3;
	font-size: .9rem;
	background: rgba(15, 23, 42, .55);
	padding: .25rem .75rem;
	border-radius: 999px;
}

.a5{
	color: #a5a5a5 !important
}

/* ---------- Bouton « Haut de page » ---------- */
.scroll-top {
	position: fixed;
	right: 1.25rem;
	bottom: 1.25rem;
	z-index: 1035;
	width: 46px;
	height: 46px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 50%;
	background: var(--brand);
	color: #fff;
	font-size: 1.25rem;
	box-shadow: var(--shadow-lg);
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transform: translateY(12px);
	transition: opacity var(--transition), transform var(--transition), background-color var(--transition), visibility var(--transition);
}

.scroll-top.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.scroll-top:hover {
	background: var(--brand-dark);
	transform: translateY(-2px);
}

.scroll-top:focus-visible {
	outline: 0;
	box-shadow: 0 0 0 .25rem rgba(var(--bs-primary-rgb), .4);
}

/* Décale le bouton au-dessus de la barre d'action mobile de la fiche */
@media (max-width: 991.98px) {
	body:has(.fiche-mobilebar) .scroll-top {
		bottom: 5.5rem;
	}
}

/* ===================== Page d'accueil ===================== */

/* Étiquette au-dessus des titres de section */
.section-eyebrow {
	display: block;
	font-size: .75rem;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--brand);
	margin-bottom: .4rem;
}

/* --- Hero --- */
.hero-eyebrow {
	display: inline-block;
	font-size: .8rem;
	font-weight: 600;
	letter-spacing: .04em;
	color: #fff;
	background: rgba(255, 255, 255, .12);
	border: 1px solid rgba(255, 255, 255, .18);
	padding: .35rem .85rem;
	border-radius: var(--radius-pill);
	backdrop-filter: blur(4px);
}

.hero-trust {
	font-size: .9rem;
	color: rgba(255, 255, 255, .85);
}

.hero-trust .bi {
	color: #fff;
}

/* Carte de recherche rapide (claire sur fond sombre) */
.hero-search {
	background: var(--surface);
	color: var(--text);
	border-radius: var(--radius);
	padding: 1.6rem;
	box-shadow: var(--shadow-lg);
	border: 1px solid rgba(255, 255, 255, .25);
}

.hero-search .form-control,
.hero-search .form-select {
	border-color: var(--line-strong);
}

.hero-search .form-control:focus,
.hero-search .form-select:focus {
	border-color: var(--brand);
	box-shadow: 0 0 0 .2rem rgba(var(--bs-primary-rgb), .12);
}

/* --- Parcourir par marque --- */
.brand-strip {
	max-width: 56rem;
	margin: 0 auto;
}

.brand-pill {
	display: inline-flex;
	align-items: center;
	padding: .55rem 1.1rem;
	font-weight: 600;
	font-size: .95rem;
	color: var(--text);
	background: var(--surface);
	border: 1px solid var(--line-strong);
	border-radius: var(--radius-pill);
	text-decoration: none;
	transition: color var(--transition), background-color var(--transition), border-color var(--transition), transform var(--transition);
}

.brand-pill:hover {
	color: #fff;
	background: var(--brand);
	border-color: var(--brand);
	transform: translateY(-2px);
}

/* --- Bandeau chiffres clés --- */
.stats-band {
	background:
		radial-gradient(800px 360px at 80% -20%, rgba(225, 29, 42, .28), transparent 60%),
		linear-gradient(120deg, var(--ink-2), #15161c);
}

.stats-band .stat-num {
	font-size: clamp(1.9rem, 4vw, 2.8rem);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: #fff;
}

.stats-band .stat-label {
	font-size: .9rem;
	color: rgba(255, 255, 255, .7);
}

/* Séparateurs verticaux entre les chiffres (desktop) */
@media (min-width: 992px) {
	.stats-band [class*="col-"]+[class*="col-"] {
		border-left: 1px solid rgba(255, 255, 255, .12);
	}
}

/* ===================== Page contact ===================== */

/* Cartes « méthode de contact » rapides */
.contact-method {
	display: flex;
	align-items: center;
	gap: 1rem;
	height: 100%;
	padding: 1.1rem 1.25rem;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
	text-decoration: none;
	color: var(--text);
	transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.contact-method:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-md);
	border-color: var(--line-strong);
	color: var(--text);
}

.contact-method__icon {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	border-radius: var(--radius);
	background: rgba(var(--bs-primary-rgb), .1);
	color: var(--brand);
	font-size: 1.3rem;
}

.contact-method__label {
	display: block;
	font-size: .8rem;
	color: var(--text-muted);
}

.contact-method__value {
	display: block;
	font-weight: 700;
	color: var(--ink);
}

/* Carte du formulaire */
.contact-form-card {
	border-radius: var(--radius);
}

/* Panneau coordonnées (sombre, de marque) */
.contact-panel {
	border-radius: var(--radius);
	background:
		radial-gradient(700px 320px at 110% -10%, rgba(225, 29, 42, .3), transparent 60%),
		linear-gradient(150deg, var(--ink-2), #16171d);
	box-shadow: var(--shadow-md);
}

.contact-panel__list li {
	display: flex;
	gap: .85rem;
	padding: .65rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.contact-panel__list li:last-child {
	border-bottom: 0;
}

.contact-panel__list .bi {
	flex: 0 0 auto;
	color: var(--brand);
	font-size: 1.1rem;
	margin-top: .15rem;
}

.contact-panel__label {
	display: block;
	font-size: .75rem;
	text-transform: uppercase;
	letter-spacing: .05em;
	color: rgba(255, 255, 255, .55);
	margin-bottom: .1rem;
}

.contact-panel a {
	color: #fff;
	text-decoration: none;
}

.contact-panel a:hover {
	color: var(--brand-accent);
}

.contact-panel__heading {
	font-size: .75rem;
	letter-spacing: .06em;
	color: rgba(255, 255, 255, .55);
	margin-bottom: .85rem;
}

/* Pastilles messageries */
.contact-msg-pill {
	display: inline-flex;
	align-items: center;
	gap: .4rem;
	padding: .4rem .85rem;
	font-size: .85rem;
	font-weight: 600;
	color: #fff;
	background: rgba(255, 255, 255, .08);
	border: 1px solid rgba(255, 255, 255, .15);
	border-radius: var(--radius-pill);
	text-decoration: none;
	transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.contact-msg-pill:hover {
	color: #fff;
	background: var(--brand);
	border-color: var(--brand);
	transform: translateY(-1px);
}

/* Horaires */
.contact-hours li {
	padding: .4rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, .08);
	color: rgba(255, 255, 255, .85);
}

.contact-hours li:last-child {
	border-bottom: 0;
}

/* Carte Google Maps en pleine largeur */
.contact-map {
	line-height: 0;
}

.contact-map iframe {
	display: block;
	filter: grayscale(.15);
}

/* ===================== Ajustements responsive ===================== */

/* Logo : plus compact sur petits écrans */
@media (max-width: 575.98px) {
	.brand-logo {
		height: 45px;
	}
}

@media (min-width: 576px) and (max-width: 991.98px) {
	.brand-logo {
		height: 55px;
	}
}

/* Topbar : on centre les groupes quand ils passent sur 2 lignes (tablette) */
@media (max-width: 991.98px) {
	.topbar .container {
		justify-content: center;
		row-gap: .25rem;
	}

	.topbar-left,
	.topbar-right {
		width: 100%;
		justify-content: center;
	}

	.topbar-right {
		margin-left: 0 !important;
	}
}

/* Bouton de repli des filtres (mobile/tablette) */
.filters-toggle {
	flex: 0 0 auto;
}

/* ===================== Bandeau cookies ===================== */
.cookie-banner {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1040;
	background: var(--ink-2);
	color: rgba(255, 255, 255, .9);
	border-top: 1px solid rgba(255, 255, 255, .1);
	padding: 1rem 0;
	box-shadow: 0 -6px 24px rgba(0, 0, 0, .25);
	transform: translateY(110%);
	transition: transform .3s cubic-bezier(.4, 0, .2, 1);
}

.cookie-banner.is-visible {
	transform: translateY(0);
}

.cookie-banner__text {
	font-size: .9rem;
	line-height: 1.5;
}

.cookie-banner a {
	color: #fff;
	text-decoration: underline;
}

.cookie-banner .btn-outline-light {
	--bs-btn-border-color: rgba(255, 255, 255, .4);
}

/* ===================== A11y & page 404 ===================== */
/* Lien d'évitement : visible seulement au focus clavier */
.skip-link {
	position: fixed;
	top: -60px;
	left: 1rem;
	z-index: 1100;
	background: var(--brand);
	color: #fff;
	padding: .6rem 1rem;
	border-radius: var(--radius);
	text-decoration: none;
	font-weight: 600;
	box-shadow: var(--shadow-md);
	transition: top var(--transition);
}

.skip-link:focus {
	top: 1rem;
	color: #fff;
	outline: 2px solid #fff;
	outline-offset: 2px;
}

.error-code {
	font-size: clamp(5rem, 18vw, 11rem);
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.04em;
	background: linear-gradient(120deg, var(--ink-2), var(--brand));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

/* =========================================================
   Menu déroulant « Nos véhicules »
   ========================================================= */
.main-navbar .dropdown-menu {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow-lg);
	padding: .4rem;
	margin-top: .35rem;
}

/* Ouverture au survol sur desktop (le clic reste actif sur mobile/tactile) */
@media (min-width: 992px) {
	.main-navbar .nav-item.dropdown:hover > .dropdown-menu {
		display: block;
		animation: navDropFade .16s ease;
	}

	/* Pont invisible entre le lien et le menu : évite la fermeture dans l'espace vide */
	.main-navbar .nav-item.dropdown > .dropdown-toggle::after {
		margin-left: .4em;
	}

	.main-navbar .nav-item.dropdown > .dropdown-menu::before {
		content: "";
		position: absolute;
		top: -.5rem;
		left: 0;
		right: 0;
		height: .5rem;
	}
}

@keyframes navDropFade {
	from {
		opacity: 0;
		transform: translateY(-4px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.main-navbar .dropdown-item {
	border-radius: var(--radius-sm);
	font-weight: 500;
	padding: .5rem .75rem;
}

.main-navbar .dropdown-item:hover,
.main-navbar .dropdown-item:focus {
	background: rgba(var(--bs-primary-rgb), .08);
	color: var(--brand);
}

.main-navbar .dropdown-item.active {
	background: var(--brand);
	color: #fff;
}

/* Menu "Nos véhicules" groupé par catégorie (Voitures / Camping-cars / Motos) */
.vehicles-menu {
	min-width: 15rem;
}

.vehicles-menu__group {
	padding: .35rem .75rem .15rem;
}

.vehicles-menu__label {
	display: block;
	font-size: .72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .04em;
	color: var(--text-muted);
	margin-bottom: .35rem;
}

.vehicles-menu__links {
	display: flex;
	gap: .35rem;
	margin-bottom: .2rem;
}

.vehicles-menu__etat {
	flex: 1 1 0;
	text-align: center;
	padding: .4rem .5rem;
}

.vehicles-menu__all {
	display: block;
	font-size: .8rem;
	font-weight: 500;
	color: var(--text-muted);
	padding: .3rem .5rem;
}

.vehicles-menu__all:hover,
.vehicles-menu__all:focus {
	color: var(--brand);
	background: rgba(var(--bs-primary-rgb), .08);
}

.vehicles-menu .dropdown-divider {
	margin: .3rem 0;
}

/* =========================================================
   Section avis clients
   ========================================================= */
.review-card {
	position: relative;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	padding: 2.25rem 1.75rem 1.5rem;
	margin: 0;
	display: flex;
	flex-direction: column;
	transition: transform var(--transition), box-shadow var(--transition);
}

.review-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-md);
}

.review-card__quote {
	position: absolute;
	top: .65rem;
	left: 1.25rem;
	font-size: 2.75rem;
	line-height: 1;
	color: rgba(var(--bs-primary-rgb), .18);
}

.review-card__stars {
	color: var(--brand-accent);
	font-size: .85rem;
	letter-spacing: .15em;
	margin-bottom: .5rem;
}

.review-card__stars .bi-star {
	color: var(--line-strong);
}

.review-card__message {
	font-size: 1rem;
	line-height: 1.65;
	color: var(--text);
	margin: 0 0 1.5rem;
	flex: 1 1 auto;
}

.review-card__author {
	display: flex;
	align-items: center;
	gap: .85rem;
	border-top: 1px solid var(--line);
	padding-top: 1rem;
}

.review-avatar {
	flex: 0 0 auto;
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: .95rem;
	color: #fff;
	letter-spacing: .02em;
}

.review-avatar--photo {
	overflow: hidden;
}

.review-avatar--photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.review-card__meta {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.review-card__name {
	font-weight: 700;
	color: var(--ink);
}

.review-card__sub {
	font-size: .85rem;
	color: var(--text-muted);
}

/* =========================================================
   Section « Notre équipe »
   ========================================================= */
.team-card {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	padding: 1.75rem 1.25rem;
	transition: transform var(--transition), box-shadow var(--transition);
}

.team-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-md);
}

.team-card__photo {
	width: 6.5rem;
	height: 6.5rem;
	margin: 0 auto 1.1rem;
	border-radius: 50%;
	overflow: hidden;
	box-shadow: var(--shadow-sm);
}

.team-card__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.team-card__photo .team-avatar {
	width: 100%;
	height: 100%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1.75rem;
	color: #fff;
}

.team-card__role {
	font-size: .9rem;
	color: var(--brand);
	font-weight: 600;
}

.team-contact-pill {
	display: inline-flex;
	align-items: center;
	gap: .35rem;
	font-size: .8rem;
	font-weight: 600;
	padding: .35rem .7rem;
	border-radius: var(--radius-pill);
	background: var(--surface-muted);
	border: 1px solid var(--line);
	color: var(--text);
	text-decoration: none;
	transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.team-contact-pill:hover {
	background: var(--brand);
	border-color: var(--brand);
	color: #fff;
}

/* =========================================================
   Section « Comment acheter » (accueil)
   ========================================================= */
.howbuy-step {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	padding: 1.75rem 1.5rem;
	transition: transform var(--transition), box-shadow var(--transition);
}

.howbuy-step:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-md);
}

.howbuy-step__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.25rem;
	height: 3.25rem;
	border-radius: var(--radius);
	background: rgba(var(--bs-primary-rgb), .08);
	color: var(--brand);
	font-size: 1.5rem;
}

/* =========================================================
   Page « Comment ça marche » — étapes alternées
   ========================================================= */
.hiw-steps {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.hiw-step {
	display: grid;
	grid-template-columns: minmax(0, 320px) 1fr;
	align-items: center;
	gap: 2.5rem;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	padding: 2rem;
}

.hiw-step__media {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 180px;
	border-radius: var(--radius);
	background:
		radial-gradient(600px 240px at 30% 0%, rgba(var(--bs-primary-rgb), .12), transparent 70%),
		linear-gradient(135deg, var(--surface-muted), #fff);
}

.hiw-step__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 5.5rem;
	height: 5.5rem;
	border-radius: 50%;
	background: var(--brand);
	color: #fff;
	font-size: 2.5rem;
	box-shadow: var(--shadow-md);
}

.hiw-step__kicker {
	display: inline-block;
	font-size: .75rem;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--brand);
	margin-bottom: .25rem;
}

.hiw-step__title {
	font-size: 1.4rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.hiw-points {
	display: flex;
	flex-wrap: wrap;
	gap: .5rem .9rem;
}

.hiw-points li {
	display: inline-flex;
	align-items: center;
	gap: .45rem;
	font-size: .9rem;
	font-weight: 600;
	color: var(--ink);
}

.hiw-points .bi {
	color: var(--brand);
}

@media (min-width: 992px) {
	.hiw-step--reverse .hiw-step__media {
		order: 2;
	}

	.hiw-step--reverse .hiw-step__body {
		order: 1;
	}
}

@media (max-width: 767.98px) {
	.hiw-step {
		grid-template-columns: 1fr;
		gap: 1.5rem;
		padding: 1.5rem;
	}

	.hiw-step__media {
		min-height: 140px;
	}
}

/* =========================================================
   Page « Garantie & Confiance »
   ========================================================= */
.trust-highlights {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.trust-highlight {
	display: flex;
	align-items: center;
	gap: 1rem;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	padding: 1.1rem 1.25rem;
}

.trust-highlight__icon {
	flex: 0 0 auto;
	display: grid;
	place-items: center;
	width: 3.25rem;
	height: 3.25rem;
	border-radius: var(--radius);
	background: rgba(var(--bs-primary-rgb), .08);
	color: var(--brand);
	font-size: 1.6rem;
}

.trust-highlight strong {
	display: block;
	color: var(--ink);
}

.trust-highlight span {
	display: flex;
	justify-content: center;
	font-size: 1.2rem;
	color: var(--text-dark);
}

.quality-list li {
	display: flex;
	align-items: center;
	gap: .75rem;
	padding: .85rem 0;
	border-bottom: 1px solid var(--line);
	font-weight: 600;
	color: var(--ink);
}

.quality-list li:last-child {
	border-bottom: 0;
}

.quality-list .bi {
	color: var(--brand);
	font-size: 1.2rem;
}

.faq-accordion .accordion-item {
	border: 1px solid var(--line);
	border-radius: var(--radius) !important;
	margin-bottom: .75rem;
	overflow: hidden;
	background: var(--surface);
	box-shadow: var(--shadow-xs);
}

.faq-accordion .accordion-button {
	font-weight: 600;
	color: var(--ink);
	background: var(--surface);
}

.faq-accordion .accordion-button:not(.collapsed) {
	color: var(--brand);
	background: rgba(var(--bs-primary-rgb), .05);
	box-shadow: none;
}

.faq-accordion .accordion-button:focus {
	box-shadow: 0 0 0 .2rem rgba(var(--bs-primary-rgb), .2);
}

.faq-accordion .accordion-button:not(.collapsed)::after {
	filter: grayscale(0);
}

/* =========================================================
   Finition des icônes (centrage parfait) + ajustements mobile
   pour les nouvelles pages
   ========================================================= */

/* Bootstrap Icons : pas d'interligne parasite dans les pastilles */
.howbuy-step__icon,
.hiw-step__icon,
.trust-highlight__icon,
.team-card__photo .team-avatar,
.review-avatar {
	line-height: 1;
}

.howbuy-step__icon i,
.hiw-step__icon i,
.trust-highlight__icon i {
	display: block;
	line-height: 1;
}

/* Pastilles à coche (étapes + qualité) : icône fixe, alignée en haut si texte long */
.hiw-points li,
.quality-list li {
	align-items: flex-start;
}

.hiw-points .bi,
.quality-list .bi {
	flex: 0 0 auto;
	line-height: 1.55;
}

/* Camping-car / moto : tablette */
@media (max-width: 991.98px) {
	.hiw-step__icon {
		width: 4.5rem;
		height: 4.5rem;
		font-size: 2rem;
	}
}

/* Mobile : icônes et espacements resserrés */
@media (max-width: 575.98px) {
	.hiw-step__media {
		min-height: 120px;
	}

	.hiw-step__icon {
		width: 4rem;
		height: 4rem;
		font-size: 1.75rem;
	}

	.hiw-step__title {
		font-size: 1.25rem;
	}

	.trust-highlight {
		padding: 1rem;
	}

	.trust-highlight__icon {
		width: 2.6rem;
		height: 2.6rem;
		font-size: 1.2rem;
	}

	.howbuy-step__icon {
		width: 3rem;
		height: 3rem;
		font-size: 1.35rem;
	}

	.review-card {
		padding: 2rem 1.25rem 1.25rem;
	}
}
