/* ============================================
   SelectOneMenu : items du panel sur plusieurs lignes,
   label sélectionné tronqué avec ellipsis si trop long
   ============================================ */
.ui-selectonemenu {
	min-width: 0 !important;
}

.ui-selectonemenu .ui-selectonemenu-label {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.ui-selectonemenu-panel .ui-selectonemenu-item,
.ui-selectonemenu-panel .ui-selectonemenu-list-item {
	white-space: normal !important;
	word-break: break-word;
	line-height: 1.3;
	padding: 8px 12px;
	height: auto !important;
}

.ui-selectonemenu-panel {
	max-width: 95vw;
}

/* Hero Section Moderne */
.auto-hero-section {
	background: linear-gradient(135deg, #051922 0%, #012738 100%);
	padding: 120px 0 80px;
	position: relative;
	overflow: hidden;
	margin-top: 80px;
}

.auto-hero-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	opacity: 0.3;
}

.auto-hero-content {
	position: relative;
	z-index: 1;
	text-align: center;
	color: white;
}

.auto-hero-content .subtitle {
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: white;
	opacity: 0.9;
	margin-bottom: 15px;
	display: inline-block;
	padding: 8px 20px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50px;
	backdrop-filter: blur(10px);
}

.auto-hero-content h1 {
	font-size: 56px;
	font-weight: 700;
	color: white;
	margin: 0;
	line-height: 1.2;
	text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.auto-hero-content .description {
	font-size: 18px;
	color: white;
	margin-top: 20px;
	opacity: 0.95;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

/* Section Cartes */
.auto-cards-section {
	padding: 100px 0 80px;
	background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.section-title {
	text-align: center;
	margin-bottom: 60px;
}

.section-title h2 {
	font-size: 36px;
	font-weight: 700;
	color: #2C3E50;
	margin-bottom: 15px;
}

.section-title p {
	font-size: 18px;
	color: #6c757d;
	max-width: 600px;
	margin: 0 auto;
}

/* Cartes Modernes */
.insurance-card {
	position: relative;
	background: white;
	border-radius: 20px;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	height: 100%;
	display: flex;
	flex-direction: column;
	cursor: pointer;
	margin-bottom: 40px;
}

.insurance-card:hover {
	transform: translateY(-15px);
	box-shadow: 0 20px 50px rgba(139, 21, 56, 0.2);
}

.insurance-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	background: linear-gradient(90deg, #8B1538 0%, #A91D4A 100%);
	transform: scaleX(0);
	transition: transform 0.4s ease;
}

.insurance-card:hover::before {
	transform: scaleX(1);
}

.card-image-wrapper {
	position: relative;
	height: 160px;
	overflow: hidden;
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.card-image-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.insurance-card:hover .card-image-wrapper img {
	transform: scale(1.1);
}

.card-icon {
	position: absolute;
	top: 15px;
	right: 15px;
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	color: #8B1538;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
	transition: all 0.3s ease;
}

.insurance-card:hover .card-icon {
	transform: rotate(15deg) scale(1.1);
	background: #8B1538;
	color: white;
}

.card-content {
	padding: 18px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.card-content h3 {
	font-size: 20px;
	font-weight: 700;
	color: #2C3E50;
	margin-bottom: 12px;
	transition: color 0.3s ease;
}

.insurance-card:hover .card-content h3 {
	color: #8B1538;
}

.card-content p {
	font-size: 14px;
	color: #6c757d;
	line-height: 1.6;
	margin-bottom: 15px;
	flex: 1;
}

.card-features {
	list-style: none;
	padding: 0;
	margin: 0 0 15px 0;
}

.card-features li {
	padding: 5px 0;
	color: #495057;
	font-size: 13px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.card-features li::before {
	content: '✓';
	color: #8B1538;
	font-weight: bold;
	font-size: 18px;
}

.card-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 24px;
	background: linear-gradient(135deg, #8B1538 0%, #A91D4A 100%);
	color: white;
	text-decoration: none;
	border-radius: 50px;
	font-weight: 600;
	font-size: 14px;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px rgba(139, 21, 56, 0.3);
	border: none;
	cursor: pointer;
}

.card-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(139, 21, 56, 0.4);
	color: white;
}

.card-btn i {
	transition: transform 0.3s ease;
}

.card-btn:hover i {
	transform: translateX(5px);
}

/* Badges */
.card-badge {
	position: absolute;
	top: 15px;
	left: 15px;
	background: rgba(139, 21, 56, 0.95);
	backdrop-filter: blur(10px);
	color: white;
	padding: 6px 12px;
	border-radius: 50px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 1200px) {
	.insurance-card {
		margin-bottom: 25px;
	}

	.card-content h3 {
		font-size: 22px;
	}
}

@media (max-width: 992px) {
	.auto-hero-section {
		padding: 100px 0 60px;
		margin-top: 70px;
	}

	.auto-hero-content h1 {
		font-size: 42px;
	}

	.auto-hero-content .subtitle {
		font-size: 14px;
	}

	.auto-cards-section {
		padding: 60px 0;
	}

	.section-title {
		margin-bottom: 40px;
	}

	.section-title h2 {
		font-size: 32px;
	}

	.insurance-card {
		margin-bottom: 30px;
		max-width: 500px;
		margin-left: auto;
		margin-right: auto;
	}

	.card-image-wrapper {
		height: 250px;
	}

	.card-content {
		padding: 25px;
	}
}

@media (max-width: 768px) {
	.auto-hero-section {
		padding: 80px 0 50px;
		margin-top: 60px;
	}

	.auto-hero-content h1 {
		font-size: 32px;
		padding: 0 15px;
	}

	.auto-hero-content .subtitle {
		font-size: 12px;
		padding: 6px 15px;
	}

	.auto-hero-content .description {
		font-size: 15px;
		padding: 0 20px;
	}

	.auto-cards-section {
		padding: 50px 0;
	}

	.auto-cards-section .row {
		margin-left: -10px;
		margin-right: -10px;
	}

	.auto-cards-section .col-lg-4,
	.auto-cards-section .col-md-6 {
		padding-left: 10px;
		padding-right: 10px;
	}

	.section-title h2 {
		font-size: 28px;
		padding: 0 15px;
	}

	.section-title p {
		font-size: 16px;
		padding: 0 15px;
	}

	.insurance-card {
		border-radius: 15px;
		margin-bottom: 25px;
	}

	.card-image-wrapper {
		height: 220px;
	}

	.card-content {
		padding: 20px;
	}

	.card-content h3 {
		font-size: 20px;
		margin-bottom: 12px;
	}

	.card-content p {
		font-size: 14px;
		margin-bottom: 20px;
	}

	.card-features {
		margin-bottom: 20px;
	}

	.card-features li {
		font-size: 13px;
		padding: 6px 0;
	}

	.card-btn {
		padding: 12px 25px;
		font-size: 14px;
		width: 100%;
	}

	.card-icon {
		width: 50px;
		height: 50px;
		font-size: 24px;
	}

	.card-badge {
		font-size: 11px;
		padding: 6px 12px;
	}

	.insurance-card:hover {
		transform: translateY(-8px);
	}
}

@media (max-width: 576px) {
	.auto-hero-section {
		padding: 70px 0 40px;
		margin-top: 60px;
	}

	.auto-hero-content h1 {
		font-size: 26px;
		line-height: 1.3;
	}

	.auto-hero-content .subtitle {
		font-size: 11px;
		letter-spacing: 1px;
	}

	.auto-hero-content .description {
		font-size: 14px;
		line-height: 1.6;
	}

	.auto-cards-section {
		padding: 40px 15px;
	}

	.auto-cards-section .row {
		margin-left: 0;
		margin-right: 0;
	}

	.auto-cards-section .col-lg-4,
	.auto-cards-section .col-md-6 {
		padding-left: 0;
		padding-right: 0;
	}

	.section-title {
		margin-bottom: 30px;
	}

	.section-title h2 {
		font-size: 24px;
	}

	.section-title p {
		font-size: 15px;
	}

	.insurance-card {
		border-radius: 12px;
		margin-bottom: 20px;
	}

	.card-image-wrapper {
		height: 200px;
	}

	.card-content {
		padding: 18px;
	}

	.card-content h3 {
		font-size: 18px;
	}

	.card-content p {
		font-size: 13px;
		line-height: 1.6;
	}

	.card-features li {
		font-size: 12px;
		padding: 5px 0;
	}

	.card-features li::before {
		font-size: 16px;
	}

	.card-btn {
		padding: 10px 20px;
		font-size: 13px;
	}

	.card-icon {
		width: 45px;
		height: 45px;
		font-size: 20px;
		top: 15px;
		right: 15px;
	}

	.card-badge {
		font-size: 10px;
		padding: 5px 10px;
		top: 15px;
		left: 15px;
	}

	.container {
		padding-left: 15px;
		padding-right: 15px;
	}
}

@media (max-width: 400px) {
	.auto-hero-content h1 {
		font-size: 22px;
	}

	.section-title h2 {
		font-size: 20px;
	}

	.card-image-wrapper {
		height: 180px;
	}

	.card-icon {
		width: 40px;
		height: 40px;
		font-size: 18px;
	}
}

/* ===== Duration Cards Selector ===== */
.duree-cards-row {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.duree-card {
	min-width: 80px;
	border: 2px solid #dee2e6;
	border-radius: 10px;
	padding: 14px 18px;
	cursor: pointer;
	text-align: center;
	transition: all 0.3s ease;
	background: #fff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	user-select: none;
}

.duree-card:hover {
	border-color: #8B1538;
	box-shadow: 0 4px 12px rgba(139, 21, 56, 0.15);
	transform: translateY(-2px);
}

.duree-card--active {
	border-color: #8B1538;
	background: linear-gradient(135deg, #8B1538, #A91D4A);
	color: white;
	box-shadow: 0 4px 16px rgba(139, 21, 56, 0.3);
}

.duree-card--active:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(139, 21, 56, 0.4);
}

.duree-card__label {
	font-weight: 600;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	white-space: nowrap;
}

/* ===== Energy Cards Selector ===== */
.energie-cards-row {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.energie-card {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-width: 90px;
	border: 2px solid #dee2e6;
	border-radius: 10px;
	padding: 12px 18px;
	cursor: pointer;
	transition: all 0.3s ease;
	background: #fff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	user-select: none;
}

.energie-card:hover {
	border-color: #8B1538;
	box-shadow: 0 4px 12px rgba(139, 21, 56, 0.15);
	transform: translateY(-2px);
}

.energie-card--active {
	border-color: #8B1538;
	background: linear-gradient(135deg, #8B1538, #A91D4A);
	color: white;
	box-shadow: 0 4px 16px rgba(139, 21, 56, 0.3);
}

.energie-card--active:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(139, 21, 56, 0.4);
}

.energie-card__icon {
	font-size: 1rem;
	line-height: 1;
}

.energie-card__label {
	font-weight: 600;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	white-space: nowrap;
}

@media (max-width: 576px) {
	.energie-card {
		min-width: 80px;
		padding: 10px 14px;
	}

	.energie-card__icon {
		font-size: 0.9rem;
	}
}

/* ===== Puissance Fiscale Cards Selector ===== */
.puiss-cards-row {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.puiss-card {
	min-width: 58px;
	border: 2px solid #dee2e6;
	border-radius: 10px;
	padding: 10px 14px;
	cursor: pointer;
	text-align: center;
	transition: all 0.3s ease;
	background: #fff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	user-select: none;
}

.puiss-card:hover {
	border-color: #8B1538;
	box-shadow: 0 4px 12px rgba(139, 21, 56, 0.15);
	transform: translateY(-2px);
}

.puiss-card--active {
	border-color: #8B1538;
	background: linear-gradient(135deg, #8B1538, #A91D4A);
	color: white;
	box-shadow: 0 4px 16px rgba(139, 21, 56, 0.3);
}

.puiss-card--active:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(139, 21, 56, 0.4);
}

.puiss-card__label {
	font-weight: 600;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	white-space: nowrap;
}

.puiss-free-wrapper {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 10px;
	flex-wrap: wrap;
}

.puiss-free-label {
	font-size: 13px;
	color: #6c757d;
}

.puiss-free-input {
	width: 80px !important;
	padding: 8px 12px !important;
	border: 2px solid #dee2e6 !important;
	border-radius: 10px !important;
	font-size: 13px !important;
	font-weight: 600 !important;
	text-align: center !important;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.puiss-free-input:focus {
	border-color: #8B1538 !important;
	outline: none !important;
	box-shadow: 0 0 0 3px rgba(139, 21, 56, 0.1) !important;
}

.puiss-free-suffix {
	font-size: 13px;
	font-weight: 600;
	color: #495057;
}

/* ===== Option/Formula Selection Cards (garantie, assistance, sécurité) ===== */
.option-cards-row {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 8px;
}

.option-card {
	flex: 1;
	min-width: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px 16px;
	border: 2px solid #dee2e6;
	border-radius: 10px;
	cursor: pointer;
	font-size: 13px;
	font-weight: 600;
	color: #495057;
	background: #fff;
	text-align: center;
	white-space: nowrap;
	transition: all 0.2s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	user-select: none;
}

/* Compact variant : option-cards dans un datatable */
.ui-datatable .option-cards-row {
	flex-wrap: nowrap;
	gap: 4px;
	margin-top: 4px;
}

.ui-datatable .option-card {
	min-width: 0;
	flex: 1 1 60px;
	padding: 5px 6px;
	font-size: 10px;
	border-radius: 7px;
	white-space: normal;
	text-align: center;
	line-height: 1.2;
}

.option-card:hover:not(.option-card--disabled) {
	border-color: #8B1538;
	color: #8B1538;
	box-shadow: 0 4px 12px rgba(139, 21, 56, 0.15);
	transform: translateY(-2px);
}

.option-card--active {
	border-color: #8B1538;
	background: linear-gradient(135deg, #8B1538, #A91D4A);
	color: #fff;
	box-shadow: 0 4px 16px rgba(139, 21, 56, 0.3);
}

.option-card--active:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(139, 21, 56, 0.4);
}

.option-card--disabled {
	opacity: 0.4;
	cursor: not-allowed;
	pointer-events: none;
}

/* ===== Opt-Picker : sélection option garantie (datatable flotte) ===== */
.opt-picker {
	position: relative;
	min-width: 160px;
}

.opt-picker__trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	width: 100%;
	padding: 8px 12px;
	background: #fff;
	border: 2px solid #dee2e6;
	border-radius: 10px;
	cursor: pointer;
	font-size: 13px;
	font-weight: 600;
	color: #495057;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.opt-picker__trigger:hover,
.opt-picker--open .opt-picker__trigger {
	border-color: #8B1538;
	box-shadow: 0 0 0 3px rgba(139, 21, 56, 0.1);
}

.opt-picker__current-label {
	flex: 1;
	text-align: left;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.opt-picker__current-label.placeholder {
	color: #adb5bd;
	font-weight: 400;
}

.opt-picker__chevron {
	font-size: 11px;
	color: #6c757d;
	transition: transform 0.2s;
	flex-shrink: 0;
}

.opt-picker--open .opt-picker__chevron {
	transform: rotate(180deg);
}

.opt-picker__panel {
	display: none;
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	z-index: 1050;
	background: #fff;
	border: 1.5px solid #dee2e6;
	border-radius: 12px;
	box-shadow: 0 8px 24px rgba(0,0,0,0.13);
	padding: 10px;
	min-width: 200px;
}

.opt-picker--open .opt-picker__panel {
	display: block;
}

.opt-picker__panel .option-cards-row {
	flex-direction: column;
	gap: 6px;
}

.opt-picker__panel .option-card {
	min-width: 0;
	flex: none;
	width: 100%;
	text-align: left;
	justify-content: flex-start;
	padding: 8px 12px;
	font-size: 12px;
	border-radius: 8px;
}

/* ===== Gar-Picker : garanties additionnelles (datatable flotte) ===== */
.gar-picker .opt-picker__trigger {
	min-width: 130px;
}

.opt-picker__icon {
	font-size: 12px;
	color: #8B1538;
	flex-shrink: 0;
}

.gar-picker__panel {
	min-width: 240px;
	padding: 12px;
}

.gar-picker__panel .garantie-option-card {
	display: flex;
	flex-direction: row;
	align-items: center;
	padding: 10px 12px;
	gap: 8px;
	border-radius: 10px;
	cursor: pointer;
}


/* Wrapper scrollable — permet de défiler si beaucoup de garanties */
.garOP-body {
	max-height: 65vh;
	overflow-y: auto;
	overflow-x: hidden;
	padding-right: 6px;
}

.garOP-body::-webkit-scrollbar {
	width: 5px;
}

.garOP-body::-webkit-scrollbar-track {
	background: #f1f1f1;
	border-radius: 4px;
}

.garOP-body::-webkit-scrollbar-thumb {
	background: #8B1538;
	border-radius: 4px;
}

.dialog-compagnie-header {
	display: flex;
	justify-content: center;
	margin-bottom: 16px;
}

.dialog-compagnie-logo {
	max-height: 60px;
	max-width: 140px;
	object-fit: contain;
}

/* Grille 2 colonnes — homogénéité garantie quelle que soit la longueur des données */
.dialog-garanties-cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	margin-top: 4px;
	align-items: stretch; /* toutes les cartes d'une même ligne ont la même hauteur */
}

.garantie-detail-card {
	background: #fff;
	border: 1px solid #e9ecef;
	border-radius: 10px;
	padding: 14px 14px 12px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
	transition: box-shadow 0.2s;
	display: flex;
	flex-direction: column;
}

.garantie-detail-card:hover {
	box-shadow: 0 4px 14px rgba(139, 21, 56, 0.12);
	border-color: #f0d0d8;
}

/*
 * Titre : min-height fixe = 2 lignes (12px × 1.45 × 2 ≈ 35px).
 * Les titres courts sont ainsi cadrés au même espace que les longs.
 * Si un titre est exceptionnellement plus long, toute la ligne de grille
 * s'adapte uniformément (align-items: stretch sur le parent).
 */
.garantie-detail-card__title {
	font-size: 12px;
	font-weight: 700;
	color: #8B1538;
	line-height: 1.45;
	min-height: 35px;
	padding-bottom: 8px;
	margin-bottom: 8px;
	border-bottom: 2px solid #f0e0e5;
}

/*
 * Lignes Capital / Franchise : min-height fixe = label + valeur + espacement.
 * Empêche les valeurs longues de décaler les sections suivantes.
 */
.garantie-detail-card__row {
	display: flex;
	flex-direction: column;
	gap: 3px;
	min-height: 40px;
	margin-top: 8px;
}

.garantie-detail-card__row span:first-child {
	color: #adb5bd;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	font-size: 10px;
}

.garantie-detail-card__row span:last-child {
	font-weight: 600;
	color: #343a40;
	font-size: 12px;
	word-break: break-word; /* évite le débordement horizontal */
}

/* Prime épinglée en bas grâce à margin-top: auto */
.garantie-detail-card__prime {
	display: flex;
	flex-direction: column;
	gap: 3px;
	background: linear-gradient(135deg, #8B1538, #A91D4A);
	color: #fff;
	border-radius: 6px;
	padding: 12px 12px 8px; /* 12px haut = espace visuel minimum au-dessus du contenu */
	margin-top: auto;
}

.garantie-detail-card__prime span:first-child {
	font-size: 10px;
	font-weight: 500;
	opacity: 0.85;
	text-transform: uppercase;
	letter-spacing: 0.4px;
}

.garantie-detail-card__prime span:last-child {
	font-size: 13px;
	font-weight: 800;
	word-break: break-word;
}

@media (max-width: 480px) {
	.dialog-garanties-cards {
		grid-template-columns: 1fr;
	}
}

/* ===== Flotte Sidebar — liste véhicules ===== */
.fleet-sidebar {
	min-width: 210px;
	max-width: 260px;
	align-self: flex-start;
	position: sticky;
	top: 12px;
	z-index: 10;
}

/* ── Sidebar flotte mobile : désactiver sticky, pleine largeur ── */
@media (max-width: 767px) {
	.fleet-sidebar {
		position: static;
		min-width: unset;
		max-width: 100%;
		width: 100%;
		align-self: stretch;
	}
	.fleet-vehicle-list {
		max-height: 180px;
		flex-direction: row;
		flex-wrap: wrap;
		gap: 6px;
	}
	.fleet-vehicle-item {
		flex: 0 0 auto;
		min-width: 140px;
		max-width: calc(50% - 3px);
	}
}

.fleet-counter-badge {
	background: linear-gradient(135deg, #8B1538, #A91D4A);
	color: #fff;
	border-radius: 12px;
	padding: 2px 10px;
	font-size: 12px;
	font-weight: 700;
	margin-left: auto;
}

.fleet-vehicle-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-top: 8px;
	max-height: 65vh;
	overflow-y: auto;
	padding-right: 2px;
}

.fleet-vehicle-list::-webkit-scrollbar {
	width: 4px;
}

.fleet-vehicle-list::-webkit-scrollbar-thumb {
	background: #dee2e6;
	border-radius: 4px;
}

.fleet-vehicle-item {
	background: #fff;
	border: 1px solid #e9ecef;
	border-left: 3px solid #8B1538;
	border-radius: 8px;
	padding: 8px 10px;
	transition: box-shadow 0.15s, border-left-color 0.15s;
}

.fleet-vehicle-item:hover {
	box-shadow: 0 2px 10px rgba(139, 21, 56, 0.12);
	border-left-color: #A91D4A;
}

.fleet-vehicle-immat {
	font-size: 13px;
	font-weight: 700;
	color: #343a40;
	letter-spacing: 0.4px;
	display: flex;
	align-items: center;
	gap: 5px;
}

.fleet-vehicle-meta {
	display: flex;
	gap: 4px;
	flex-wrap: wrap;
	margin-top: 5px;
}

.fleet-meta-tag {
	font-size: 10px;
	padding: 1px 7px;
	border-radius: 10px;
	background: #f1f3f5;
	color: #6c757d;
	font-weight: 500;
}

.fleet-garantie-pill {
	display: inline-block;
	font-size: 10px;
	padding: 2px 8px;
	border-radius: 10px;
	background: linear-gradient(135deg, #8B1538, #A91D4A);
	color: #fff;
	font-weight: 600;
	margin-top: 5px;
}

.fleet-empty-state {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 24px 8px;
	color: #adb5bd;
	gap: 6px;
	text-align: center;
}

.fleet-empty-state i {
	font-size: 2rem;
	opacity: 0.5;
}

.fleet-empty-state span {
	font-size: 12px;
}

/* ===== Puissance Fiscale Picker ===== */
.puiss-picker {
	position: relative;
}

.puiss-picker__trigger {
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
	padding: 10px 14px;
	border: 1px solid #ced4da;
	border-radius: 8px;
	background: #fff;
	cursor: pointer;
	text-align: left;
	font-size: 14px;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.puiss-picker__trigger:hover,
.puiss-picker--open .puiss-picker__trigger {
	border-color: #8B1538;
	box-shadow: 0 0 0 3px rgba(139, 21, 56, 0.12);
}

.puiss-picker__current-label {
	flex: 1;
	color: #333;
}

.puiss-picker__current-label.placeholder {
	color: #888;
}

.puiss-picker__chevron {
	color: #6c757d;
	font-size: 12px;
	transition: transform 0.2s ease;
}

.puiss-picker--open .puiss-picker__chevron {
	transform: rotate(180deg);
}

.puiss-picker__panel {
	margin-top: 8px;
	padding: 12px;
	background: #fff;
	border: 1px solid #e9ecef;
	border-radius: 10px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.puiss-picker:not(.puiss-picker--open) .puiss-picker__panel {
	display: none;
}

/* ===== Color Picker (trigger + panel déroulant) ===== */
.color-picker {
	position: relative;
}

.color-picker__trigger {
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
	padding: 10px 14px;
	border: 1px solid #ced4da;
	border-radius: 8px;
	background: #fff;
	cursor: pointer;
	text-align: left;
	font-size: 14px;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.color-picker__trigger:hover,
.color-picker--open .color-picker__trigger {
	border-color: #8B1538;
	box-shadow: 0 0 0 3px rgba(139, 21, 56, 0.12);
}

.color-picker__current-swatch {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: #eee;
	border: 1px solid rgba(0, 0, 0, 0.15);
	flex: 0 0 24px;
	background-image:
		linear-gradient(45deg, rgba(0, 0, 0, 0.05) 25%, transparent 25%),
		linear-gradient(-45deg, rgba(0, 0, 0, 0.05) 25%, transparent 25%);
	background-size: 6px 6px;
	background-position: 0 0, 0 3px;
}

.color-picker__current-swatch[data-resolved="1"] {
	background-image: none;
}

.color-picker__current-label {
	flex: 1;
	text-transform: capitalize;
	color: #333;
}

.color-picker__current-label.placeholder {
	color: #888;
	text-transform: none;
}

.color-picker__chevron {
	color: #6c757d;
	font-size: 12px;
	transition: transform 0.2s ease;
}

.color-picker--open .color-picker__chevron {
	transform: rotate(180deg);
}

.color-picker__panel {
	margin-top: 8px;
	padding: 12px;
	background: #fff;
	border: 1px solid #e9ecef;
	border-radius: 10px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.color-picker:not(.color-picker--open) .color-picker__panel {
	display: none;
}

/* ===== Color Cards (à l'intérieur du picker) ===== */
.color-cards-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.color-card {
	flex: 0 0 auto;
	width: 96px;
	border: 2px solid #dee2e6;
	border-radius: 10px;
	padding: 8px;
	cursor: pointer;
	text-align: center;
	transition: all 0.2s ease;
	background: #fff;
	user-select: none;
}

.color-card:hover {
	border-color: #8B1538;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(139, 21, 56, 0.15);
}

.color-card--active {
	border-color: #8B1538;
	box-shadow: 0 4px 12px rgba(139, 21, 56, 0.30);
}

.color-card__swatch {
	width: 100%;
	height: 36px;
	border-radius: 6px;
	background: #ccc;
	margin-bottom: 6px;
	border: 1px solid rgba(0, 0, 0, 0.12);
	background-image:
		linear-gradient(45deg, rgba(0, 0, 0, 0.04) 25%, transparent 25%),
		linear-gradient(-45deg, rgba(0, 0, 0, 0.04) 25%, transparent 25%);
	background-size: 8px 8px;
	background-position: 0 0, 0 4px;
}

.color-card__swatch[data-resolved="1"] {
	background-image: none;
}

.color-card__label {
	font-size: 12px;
	font-weight: 500;
	color: #333;
	text-transform: capitalize;
}

@media (max-width: 576px) {
	.color-card {
		width: 84px;
	}

	.color-card__swatch {
		height: 30px;
	}
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.insurance-card {
	animation: fadeInUp 0.6s ease forwards;
}

.insurance-card:nth-child(1) {
	animation-delay: 0.1s;
}

.insurance-card:nth-child(2) {
	animation-delay: 0.2s;
}

.insurance-card:nth-child(3) {
	animation-delay: 0.3s;
}
