/* variables */
:root {
	--primary-color: rgb(0, 96, 165);
	--secondary-color: rgb(114, 187, 76);
	--field-text-color: rgb(47, 47, 47);
	--text-color: rgb(255, 255, 255);
	--field-color: rgb(245, 247, 248);
}



.loader-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 9999;
}

.loader {
    border: 16px solid #f3f3f3;
    border-top: 16px solid #005cb9;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#content {
    display: none;
}


body {
	font-family: "Poppins", sans-serif;
	width: 100%;
	height: auto;
	padding-top: 56px;
}

@media only screen and (max-width: 1024px) {
	body {
		padding-top: 0;
	}
}

/* sidebar */
.sidebar {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	/*z-index: 100;*/
	padding: 45px 50px 90px;
	background-image: url(../img/sidebar-bg.jpg);
	background-size: cover;
	min-height: 100vh;
	background-position: center;
}

.sidebar-sticky {
	position: relative;
	top: 0;
	height: calc(100vh - 48px);
	padding-top: .5rem;
	overflow-x: hidden;
	overflow-y: auto;
}

.sidebar-inner {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.sidebar-text {
	margin-top: auto;
}


@media (max-width: 767.98px) {
	.sidebar {
		top: 5rem;
	}
}


.logo {
	display: flex;
	align-items: center;
}

.logo-icon {
	width: auto;
}

.logo-icon img {
	width: 100%;
}

.logo-text {
	font-size: 37px;
	color: var(--text-color);
	font-weight: bold;
	margin-left: 3px;
}

.sidebar-text h2 {
	font-size: 63px;
	color: var(--text-color);
	font-weight: bold;
	line-height: 1.3;
}

.sidebar-text p {
	width: 90%;
	font-size: 20px;
	color: rgb(201, 201, 201);
	line-height: 1.6;
}

/* Styles pour le résumé dans la sidebar */
.summary-content {
	margin-top: 20px;
}

.summary-item {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	padding: 10px 15px;
	margin-bottom: 10px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.3s ease;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.summary-item:hover {
	background: rgba(255, 255, 255, 0.15);
	transform: translateX(5px);
}

.summary-label {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.7);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin: 0;
	flex-shrink: 0;
}

.summary-value {
	font-size: 14px;
	color: white;
	font-weight: 600;
	word-wrap: break-word;
	text-align: right;
	margin: 0;
	flex: 1;
}

#summary-default {
	background: rgba(0, 92, 185, 0.3);
	border: 1px solid rgba(0, 92, 185, 0.5);
}

#summary-default .summary-label {
	color: rgba(255, 255, 255, 0.9);
}

#summary-default .summary-value {
	color: rgba(255, 255, 255, 0.8);
}

/* Optimisation de l'espace pour le contenu principal */
.col-lg-8 {
	padding-left: 20px !important;
	padding-right: 40px !important;
}

/* Réduction des marges pour commencer le contenu plus tôt */
.col-lg-8 .container {
	padding-left: 0;
	padding-right: 0;
}

/* Optimisation des espacements des sections */
.col-lg-8 .row {
	margin-left: 0;
	margin-right: 0;
}

/* Réduction de l'espacement entre les étapes */
.col-lg-8 .row.mb-5 {
	margin-bottom: 2rem !important;
}

.col-lg-8 .row.mb-3 {
	margin-bottom: 1rem !important;
}

/* Styles pour l'étape de sélection de date et heure */

/* Styles pour le calendrier */
.calendar-section, .time-section {
	background: white;
	border-radius: 15px;
	padding: 25px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	border: 1px solid #e9ecef;
}

.calendar-title, .time-title {
	color: #005cb9;
	font-weight: bold;
	font-size: 18px;
	margin-bottom: 20px;
	text-align: center;
}

.calendar-widget {
	background: white;
	border-radius: 10px;
	overflow: hidden;
}

.calendar-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
	background: #f8f9fa;
	border-bottom: 1px solid #e9ecef;
}

.calendar-nav {
	background: #005cb9;
	color: white;
	border: none;
	border-radius: 50%;
	width: 35px;
	height: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
}

.calendar-nav:hover {
	background: #003d82;
	transform: scale(1.1);
}

.month-year {
	display: flex;
	flex-direction: column;
	align-items: center;
	font-weight: bold;
	color: #005cb9;
}

.month-year span:first-child {
	font-size: 18px;
}

.month-year span:last-child {
	font-size: 14px;
	color: #6c757d;
}

.calendar-grid {
	padding: 10px;
}

.calendar-weekdays {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 5px;
	margin-bottom: 10px;
}

.weekday {
	text-align: center;
	font-weight: bold;
	color: #6c757d;
	font-size: 12px;
	padding: 8px 0;
}

.calendar-days {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 5px;
}

.calendar-day {
	aspect-ratio: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-weight: 500;
	font-size: 14px;
	border: 2px solid transparent;
}

.calendar-day:hover {
	background: #eff9fe;
	border-color: #005cb9;
}

.calendar-day.other-month {
	color: #adb5bd;
}

.calendar-day.selected {
	background: #28a745;
	color: white;
	border-color: #28a745;
}

.calendar-day.today {
	background: #ffc107;
	color: #000;
	font-weight: bold;
}

.calendar-day.disabled {
	color: #adb5bd;
	cursor: not-allowed;
	opacity: 0.5;
}

/* Styles pour les créneaux horaires */
.time-slots {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
}

.time-slot {
	background: white;
	border: 2px solid #005cb9;
	color: #005cb9;
	padding: 15px 20px;
	border-radius: 10px;
	font-weight: 500;
	transition: all 0.3s ease;
	cursor: pointer;
	text-align: center;
	font-size: 16px;
}

.time-slot:hover {
	background: #eff9fe;
	transform: translateY(-2px);
}

.time-slot.selected {
	background: #005cb9;
	color: white;
	box-shadow: 0 4px 15px rgba(0, 92, 185, 0.3);
}

/* Message de confirmation */
.date-confirmation {
	background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
	border: 1px solid #c3e6cb;
	color: #155724;
	padding: 15px 20px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 500;
}

.date-confirmation i {
	color: #28a745;
	font-size: 20px;
}

/* Responsive */
@media (max-width: 768px) {
	.service-type-tabs {
		flex-direction: column;
	}
	
	.service-tab {
		min-width: auto;
	}
	
	.time-slots {
		grid-template-columns: 1fr;
	}
	
	.calendar-section, .time-section {
		padding: 20px;
	}
}


/*ADD*/


.form-control::placeholder {
	color: #dcdee7;
	opacity: 1;
	font-size: 12px;
}


.invalid {
	border: solid 2px #ff4444 !important;
	position: relative;
}


.btn-outline-secondary {
	border: 1px solid #bfbfbf;
	border-radius: 0;
}

.h-120 {
	height: 120% !important
}

.Greentxt {
	color: #32b9af !important;
}


.titleO {
	color: #005cb9;
}

.curso {
	cursor: pointer;
}

.brdY {
	font-weight: normal;
	display: flex;
	flex-direction: row;
	-webkit-box-align: center;
	align-items: center;
	color: #5161ac;
	font-weight: 500;
	font-size: 12px;
	line-height: 1.4;
	border-radius: 4px;
	padding: 15px;
	margin-top: 20px;
	margin-bottom: 26px;
	background-color: #eff9fe;
}

.disabled {
	pointer-events: none;
	opacity: 0.5;
}

.card.clicked {
	background-color: #eff9fe;
}

.card:hover {

	transform: scale(1.05);
	background-color: #eff9fe;
	border-color: #eff9fe;
}


@media only screen and (max-width: 767px) {
	.card.clicked {
		background-color: #eff9fe;
		transform: none;
		border-color: #dee2e6;
	}

	.card:hover:not(.clicked) {
		transform: none;
		background-color: white;
		border-color: #dee2e6;
	}
}


/* Style de bordure rouge supprimé - les badges suffisent */

h6 small {
	font-size: 12px;
}


.btn-outline-02 {
	color: #005cb9;
	border-color: #005cb9;
}


.btn-outline-02:hover {
	color: #fff;
	background-color: #005cb9;
	border-color: #005cb9;
}


.o2-title {
	font-size: 2.1125rem;
	line-height: 38px;
	font-weight: 500;
	box-sizing: border-box;

}


.o2-tt {
color: darkgray;
  font-size: 14px;
  font-weight: unset;
}

/* Styles pour les cartes de tarification */
.tarif-card {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: white;
    position: relative;
    overflow: hidden;
}

.tarif-card:hover {
    border-color: #005cb9;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 92, 185, 0.15);
}

.tarif-card.recommended {
    border-color: #ffc107;
    background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
}

.tarif-card.recommended::before {
    content: "RECOMMANDÉ";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: #ffc107;
    color: #000;
    font-size: 10px;
    font-weight: bold;
    text-align: center;
    padding: 4px 0;
    letter-spacing: 0.5px;
}

.tarif-card .card-body {
    padding: 20px;
    text-align: center;
}

.tarif-card .hours {
    font-size: 24px;
    font-weight: bold;
    color: #005cb9;
    margin-bottom: 8px;
}

.tarif-card .professionals {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 12px;
}

.tarif-card .price {
    font-size: 28px;
    font-weight: bold;
    color: #28a745;
    margin-bottom: 8px;
}

.tarif-card .price .currency {
    font-size: 18px;
    vertical-align: top;
}

.tarif-card .description {
    font-size: 12px;
    color: #6c757d;
    line-height: 1.4;
    margin-bottom: 8px;
}

.tarif-card .area {
    font-size: 11px;
    color: #005cb9;
    font-weight: 500;
}

.tarif-card .hourly-rate {
    font-size: 10px;
    color: #6c757d;
    margin-top: 4px;
}

.tarif-card.selected {
    border-color: #005cb9;
    background: #eff9fe;
    transform: scale(1.02);
}

.tarif-card.selected::after {
    content: "✓";
    position: absolute;
    top: 10px;
    right: 10px;
    background: #005cb9;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

/* Styles pour la section de confirmation */
#ConfirmationEtTarifs {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    margin-top: 30px;
}

#ConfirmationEtTarifs .alert-success {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.2);
}

#ConfirmationEtTarifs .alert-success i {
    color: #28a745 !important;
}

/* Styles pour les boutons d'action */
#SubscribeOnline {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

#SubscribeOnline:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.3);
}

#NewQuote {
    border: 2px solid #005cb9;
    border-radius: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

#NewQuote:hover {
    background: #005cb9;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 92, 185, 0.3);
}

/* Styles pour les champs de coupon et observation */
#couponCode {
    border-radius: 8px 0 0 8px;
}

#applyCoupon {
    border-radius: 0 8px 8px 0;
    border-left: none;
}

#couponMessage {
    font-size: 14px;
    font-weight: 500;
}

#observation {
    border-radius: 8px;
    resize: vertical;
    min-height: 80px;
}

#observation:focus {
    border-color: #005cb9;
    box-shadow: 0 0 0 0.2rem rgba(0, 92, 185, 0.25);
}

/* Styles pour les badges de réduction */
.discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #dc3545;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: bold;
    z-index: 10;
    white-space: nowrap;
}

/* Styles pour les messages de coupon */
#couponMessage.alert {
    border-radius: 8px;
    border: none;
    font-weight: 500;
}

#couponMessage.alert-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
}

#couponMessage.alert-danger {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
}

#couponMessage.alert-warning {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    color: #856404;
}

/* Styles pour la section persuasive - Version moderne et concise */
.persuasive-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 25px;
    color: white;
    position: relative;
    overflow: hidden;
}

.persuasive-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.trust-badges {
    position: relative;
    z-index: 2;
}

.google-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.google-rating .stars {
    display: flex;
    gap: 2px;
}

.google-rating .stars i {
    color: #ffd700;
    font-size: 18px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.google-rating .rating {
    font-size: 24px;
    font-weight: bold;
    margin: 0 5px;
}

.google-rating .reviews {
    font-size: 14px;
    opacity: 0.9;
}

.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.guarantee i {
    font-size: 20px;
    color: #4ade80;
}

.guarantee span {
    font-weight: 600;
    font-size: 16px;
}

.key-benefits {
    position: relative;
    z-index: 2;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    padding: 8px 0;
}

.benefit-item i {
    color: #4ade80;
    font-size: 18px;
    flex-shrink: 0;
}

.benefit-item span {
    font-weight: 500;
    font-size: 16px;
}

/* Animation pour attirer l'attention */
.persuasive-banner {
    animation: slideInUp 0.8s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Effet de brillance */
.persuasive-banner::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
    100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
}

/* Styles pour les prix barrés */
.price-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.original-price {
    text-decoration: line-through;
    color: #6c757d;
    font-size: 16px;
    font-weight: normal;
}

.new-price {
    color: #28a745;
    font-size: 28px;
    font-weight: bold;
}

.tarif-card.discounted {
    border-color: #dc3545;
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
}

.tarif-card.discounted .discount-badge {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Styles pour les boutons de sélection */
.frequency-btn, .commitment-btn {
    border-radius: 10px;
    padding: 12px 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-width: 2px;
    position: relative;
    overflow: hidden;
}

.frequency-btn:hover, .commitment-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.frequency-btn.active {
    background: #005cb9;
    border-color: #005cb9;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 92, 185, 0.3);
}

.commitment-btn.active {
    background: #6c757d;
    border-color: #6c757d;
    color: white;
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

.commitment-btn .badge {
    font-size: 10px;
    padding: 4px 6px;
    border-radius: 8px;
}

/* Animation pour les boutons actifs */
.frequency-btn.active::before, .commitment-btn.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.frequency-btn.active:hover::before, .commitment-btn.active:hover::before {
    left: 100%;
}

/* Styles pour les titres des sections */
.frequency-btn, .commitment-btn {
    font-size: 14px;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .frequency-btn, .commitment-btn {
        font-size: 12px;
        padding: 10px 6px;
    }
}

/* Styles pour l'indicateur de réduction d'engagement */
.commitment-discount {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #28a745;
    color: white;
    padding: 1px 4px;
    border-radius: 6px;
    font-size: 8px;
    font-weight: bold;
    z-index: 10;
    white-space: nowrap;
}

/* Styles pour les badges de réduction */
.discount-badge {
    position: absolute;
    top: 8px;
    color: white;
    padding: 1px 4px;
    border-radius: 6px;
    font-size: 8px;
    font-weight: bold;
    z-index: 10;
    white-space: nowrap;
    display: inline-block;
    max-width: fit-content;
}

.commitment-badge {
    background: #28a745;
    left: 8px;
}

.coupon-badge {
    background: #dc3545;
    right: 8px;
}

/* Ajuster la position des badges pour éviter le chevauchement */
.tarif-card.recommended .commitment-badge {
    top: 30px; /* Décaler sous le badge "RECOMMANDÉ" */
}

/* Forcer les badges à être compacts */
.discount-badge.commitment-badge,
.discount-badge.coupon-badge {
    width: auto !important;
    min-width: auto !important;
    max-width: 50px !important;
    text-align: center;
    line-height: 1.5;
}

/* Styles pour la nouvelle structure des badges avec prix */
.price-with-badges {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 5px;
}

.price-with-badges .original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
}

.tarif-card.recommended .coupon-badge {
    top: 10px;
    right: 10px;
}

/* Ajuster la position des badges pour éviter le chevauchement */
.tarif-card.recommended .commitment-discount {
    top: 35px; /* Décaler vers le bas pour éviter le badge "RECOMMANDÉ" */
}

.tarif-card.recommended .discount-badge {
    top: 35px; /* Décaler vers le bas pour éviter le badge "RECOMMANDÉ" */
}

/* Mise à jour des styles pour les prix avec engagement */
.tarif-card .price-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.tarif-card .original-price {
    text-decoration: line-through;
    color: #6c757d;
    font-size: 16px;
    font-weight: normal;
}

.tarif-card .new-price {
    color: #28a745;
    font-size: 28px;
    font-weight: bold;
}

/* Styles pour les onglets du résumé */
#summary-tabs .nav-tabs {
	border-bottom: 2px solid rgba(255, 255, 255, 0.3);
	margin-bottom: 15px;
}

#summary-tabs .nav-tabs .nav-link {
	background: transparent;
	border: none;
	color: rgba(255, 255, 255, 0.7);
	font-size: 11px;
	padding: 8px 12px;
	border-radius: 5px 5px 0 0;
	transition: all 0.3s ease;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

#summary-tabs .nav-tabs .nav-link:hover {
	color: #fff;
	background: rgba(255, 255, 255, 0.1);
}

#summary-tabs .nav-tabs .nav-link.active {
	color: #fff;
	background: rgba(255, 255, 255, 0.2);
	border-bottom: 2px solid #fff;
}

#summary-tabs .tab-content {
	min-height: 200px;
}

#summary-tabs .summary-section {
	padding: 10px 0;
}

/* Amélioration des icônes dans les onglets */
#summary-tabs .summary-label {
	display: flex;
	align-items: center;
}

#summary-tabs .summary-label i {
	width: 16px;
	text-align: center;
	opacity: 0.8;
	margin-right: 8px;
}

/* Responsive pour les onglets */
@media (max-width: 768px) {
	#summary-tabs .nav-tabs .nav-link {
		font-size: 10px;
		padding: 6px 8px;
	}
	
	#summary-tabs .summary-label {
		font-size: 11px;
	}
	
	#summary-tabs .summary-value {
		font-size: 12px;
	}
}

/* Styles pour le résumé final de confirmation */
.summary-item-final {
	text-align: left;
}

.summary-item-final small {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-weight: 600;
}

.summary-item-final .fw-bold {
	font-size: 14px;
	margin-top: 2px;
}

/* Amélioration des cartes de confirmation */
#ConfirmationFinale .card {
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#ConfirmationFinale .card:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
}

#ConfirmationFinale .card-header {
	font-weight: 600;
	letter-spacing: 0.5px;
}

#ConfirmationFinale .alert {
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
