/* --- Styles Généraux et Conteneur --- */
.my-custom-date-picker-wrapper {
    font-family: 'Poppins', sans-serif; /* Assurez-vous que cette police est chargée */
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    /*box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);*/
    position: relative; /* Pour les flèches de navigation */
    /*width: 700px; /* Largeur fixe pour contenir les deux mois + flèches */
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #333; /* Couleur de texte par défaut */
}

.picker-title {
    font-size: 2.2em;
    font-weight: 600;
    margin-bottom: 40px;
    color: var(--dark-blue); /* Bleu foncé pour le titre */
}

/* --- Groupement des inputs Date de début / Date de fin --- */
.input-group {
    display: flex;
    justify-content: center;
	justify-content: space-between;
    gap: 60px; /* Grand espace entre les inputs */
    margin-bottom: 30px;
    width: 100%;
    /*max-width: 500px; /* Limite la largeur des inputs */
}

.input-item {
    text-align: left;
    flex-grow: 1; /* Permet aux items de prendre de l'espace */
}

.input-item label {
    display: block;
    margin-bottom: 8px;
	color: var(--dark-blue);
	font-weight: bold;
}

.my-custom-date-picker-wrapper input[type="text"] {
    width: 100%; /* Prend la largeur disponible de son parent */
    padding: 8px 0; /* Pas de padding horizontal pour les inputs eux-mêmes, juste bordure inférieure */
    border: none;
    border-bottom: 2px solid #e0e0e0; /* Bordure inférieure */
    font-size: 1.1em; /* Un peu plus grand */
    color: #333;
    box-sizing: border-box; /* Inclut le padding dans la largeur */
    transition: border-color 0.2s, box-shadow 0.2s;
    text-align: left; /* Alignement du texte à gauche */
}

.my-custom-date-picker-wrapper input[type="text"]:focus {
    border-color: var(--dark-blue); /* Bordure bleue foncée au focus */
    outline: none;
    box-shadow: none; /* Pas d'ombre */
}

/* --- Zone d'affichage du Calendrier --- */
.calendar-display-area {
    display: flex;
    align-items: center; /* Aligne les flèches au centre verticalement des mois */
    position: relative;
    width: 100%; /* Prend la largeur de son parent */
    justify-content: center;
}

.calendar-months-container {
    display: flex;
    gap: 40px; /* Espace entre les deux mois */
    justify-content: center;
    align-items: flex-start; /* Aligne le haut des mois si leurs hauteurs diffèrent */
    flex-grow: 1; /* Permet au conteneur des mois de prendre l'espace central */
}
.calendar-month {
    padding: 0;
    text-align: center;
    /* Pour 2 mois avec un gap de 40px dans un conteneur de 700px (60px * 2 pour les flèches)
       Largeur disponible = 700 - (60*2) = 580px. Deux mois avec 40px de gap.
       2*width + 40 = 580 => 2*width = 540 => width = 270px.
    */
    width: 100%;
    /*max-width: 300px;*/ /* Sécurité */
}
@media screen and (min-width:768px) {
	.calendar-month {  
    
    width: 50%;
   
}
}


.month-header {
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--dark-blue);
}

.weekdays {
    display: flex;
    justify-content: space-around;
    margin-bottom: 10px;
}

.weekdays span {
    font-size: 0.75em;
    font-weight: 500;
    color: #777;
    flex: 1; /* Chaque jour de la semaine prend une part égale */
    text-align: center;
}

.days-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr); /* 7 colonnes égales */
    gap: 5px; /* Petit espace entre les jours */
}

/* Styles des jours individuels */
.day {
        width: 100%;
    height: 55px;
    line-height: 55px;/* Centre le texte verticalement */
    font-size: 0.9em; /* Taille de police pour les jours */
   /* border-radius: 50%; /* Pour les cercles de sélection */
    background-color: transparent; /* Pas de fond par défaut */
    color: #333;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s, border-radius 0.2s;
    text-align: center;
    box-sizing: border-box; /* Important pour inclure padding/bordure dans width/height */
    position: relative;
    background-color: #F2F8F9;
}

/* Au survol d'un jour non sélectionné */
.day:hover:not(.other-month):not(.start-range):not(.end-range):not(.in-range) {
    background-color:rgba(10, 45, 68, 0.1) !important; /* Gris clair au survol */
    color: var(--dark-blue);
}

/* Jours des mois précédents/suivants (hors du mois courant) */
.day.other-month {
    color: #bbb; /* Plus clair */
    cursor: default; /* Pas de curseur de pointeur */
    pointer-events: none; /* Désactive les clics sur ces jours */
}

/* Style du jour actuel */
.day.today {
    text-decoration: underline; /* Bordure bleue foncée pour le jour actuel */
	text-underline-offset:5px;
    color: var(--dark-blue);
    background-color: transparent; /* S'assure qu'il n'y a pas de fond par défaut */
}
/* Pas de bordure si le jour actuel est sélectionné */
.day.today.start-range,
.day.today.end-range,
.day.today.in-range {
    border: none;
}

/* --- Styles de la Sélection de Plage --- */



/* Jours compris dans la plage */
.day.in-range {
    background-color: #d9e7c1 !important; /* Bleu très clair pour la plage */
    color: var(--dark-blue); /* Texte bleu pour les jours dans la plage */
    border-radius: 0 !important; /* Pas de bordure ronde pour ceux-là */
}

/* Début et fin de la plage */
.day.start-range,
.day.end-range {
    background-color: var(--dark-blue) !important; /* Bleu foncé pour début/fin */
   /* color: white !important;*/
    border-radius: 116px !important; /* Force le cercle */
	 border: solid 1px var(--dark-blue)!important;

}


/* Ajustements des bords arrondis pour la plage */
/* Si c'est le début de la plage mais pas aussi la fin */
.day.start-range:not(.end-range) {
 border-radius: 10px;
background-color: rgba(10, 45, 68, 0.1) !important;
 border: solid 1px var(--dark-blue)!important;
 color: var(--dark-blue);
}
/* Si c'est la fin de la plage mais pas aussi le début */
.day.end-range:not(.start-range) {
    border-radius: 10px;
	color: var(--white);
}
.day.end-range:not(.start-range) span{
    	color: var(--white);
}

/* Correction pour les jours "in-range" qui ne sont ni début ni fin */
.day.in-range:not(.start-range):not(.end-range):not(.today) {
    border-radius: 0 !important; /* Pour que la barre bleue soit continue */
}

/* Surcharge au survol des jours dans la plage */
.day.in-range:hover:not(.start-range):not(.end-range) {
    background-color: #cce9ff !important; /* Un bleu un peu plus foncé au survol des jours dans la plage */
}

/* --- Flèches de navigation globales --- */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--dark-blue); /* Fond gris clair pour les boutons */
    border-radius: 50%; /* Forme circulaire */
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10; /* Pour s'assurer qu'ils sont au-dessus du calendrier */
    color: var(--white); /* Couleur de la flèche */
    font-size: 2rem; /* Taille de la flèche */
    border: none;
    box-shadow: none;
    transition: background-color 0.2s, color 0.2s;
}
@media screen and (max-width:767px) {
	.nav-arrow{
		display: none;
	}
}
.nav-arrow:hover {
    background-color: #e0e6eb;
}

.prev-month-arrow {
    left: -60px; /* Positionne à gauche du conteneur parent */
}

.next-month-arrow {
    right: -60px; /* Positionne à droite du conteneur parent */
}

/* --- Styles des jours désactivés / bloqués --- */
.day.disabled {
    background-color: #f2f2f2; /* Gris clair */
    color: #a0a0a0; /* Texte gris */
    cursor: not-allowed; /* Curseur "interdit" */
    opacity: 0.7; /* Légèrement transparent */
    pointer-events: none; /* Empêche les événements de souris sur ces jours */
}

/* S'assurer que les jours désactivés ne reçoivent pas les styles de sélection */
.day.disabled.start-range,
.day.disabled.end-range,
.day.disabled.in-range {
    background-color: #f2f2f2 !important; /* Force le gris */
    color: #a0a0a0 !important;
    border-radius: 5px !important; /* Réinitialise le rond si c'était appliqué */
}

/* Jours du mois précédent/suivant (cellules vides) */
.calendar-month .day.other-month {
  visibility: hidden; /* Masquer mais garder l'espace */
  pointer-events: none;
}

/* Assurer que la grille fait 7 colonnes */
.days-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}


label.card.selected {
  background-color: var(--green);
}



/** slider radio **/

.mySwiper-radio img{
	border-radius: 10px;

}

.mySwiper-radio .card{
	border-radius: 16px;
	padding: 1rem;
	box-shadow: none;
}

.mySwiper-radio .picto-slide-radio .custom-bullet::before {
    content: "";
    display: inline-block;
    width: 1em;
    height: 1em;
    margin-right: 10px;
    margin-top: -9px;
    background-repeat: no-repeat;
    background-size: contain;
    vertical-align: middle;
}

.mySwiper-radio .picto-slide-radio .texte{
	font-size: 1em;
}
.mySwiper-radio .picto-slide-radio li{
	margin-bottom: 0!important;
}

.piu-radio-slide{
	width: 16px;
	height: 16px;
	border: solid 1px var(--black);
	border-radius: 20px;
	position: absolute;
	top:5px;
	right: 5px;
}

.mySwiper-radio .selected .piu-radio-slide{
	background-color: var(--dark-green);
}
.mySwiper-radio .card-title{
padding-right: 24px;
}


.my-custom-date-picker-wrapper input[type="text"]{
background-color: var(--white)!important;
}

.custom-form-switch .form-switch .form-check-input {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23488096'/%3e%3c/svg%3e");
background-color: #C0D8E1;
}


.custom-form-switch .form-switch .form-check-input:checked {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23628137'/%3e%3c/svg%3e");
background-color: var(--green);
}

.custom-form-switch .form-switch .form-check-input{
    padding: 3px;
    height: 35px;
    width: 70px;
    border: transparent;
	margin-left: 0.5em;
}

.custom-form-switch .form-check.form-switch.mb-2 {
    display: flex;
    align-items: center;
}

.custom-form-switch .form-switch{
display: flex;
align-items: center;
padding-left: 0;
}




.custom-form-switch {
  border: 2px solid transparent; /* bordure transparente par défaut */
  border-radius: 12px;
  padding: 1.5rem;
  background-color: #F2F8F9; /* fond bleu clair quand unchecked */
  margin-bottom: 0;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

/* Quand l’input est checked → fond beige + bordure verte */
.custom-form-switch:has(.form-check-input:checked) {
  background-color: #f9f9f3;
  border-color: #7b9b64;
}

.custom-form-switch h3 {
  font-weight: 500;
  color: #1d2b2a;
}

.custom-form-switch .status {
  font-weight: 700;
  font-size: 1.5rem;
  color: #1d2b2a;
}
.custom-form-switch .status::first-letter {
  text-transform: uppercase;
}

.custom-form-switch p {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #4a5a58;
}

/* Switch customisé */
.form-switch .form-check-input {
  width: 3rem;
  height: 1.5rem;
  background-color: #bcd9e4; /* bleu clair quand unchecked */
  border: none;
  pointer-events: none;
}

.form-switch .form-check-input:checked {
  background-color: #5a7d3d; /* vert foncé quand checked */
}

.form-switch .form-check-input:focus {
  box-shadow: none;
}

.formulaire-resa input.form-control, .formulaire-resa textarea.form-control{
    background-color: var(--light-blue);
    border: 1px solid transparent;
    padding: 10px;
    border-radius: 0;
    box-sizing: border-box;
}

.formulaire-resa .green-btn{
font-size: 1rem!important;
}
.formulaire-resa .btn-kerhir-cf7{
font-size:1.5rem!important;
font-weight: normal!important;
}

.formulaire-resa .wpcf7-list-item{
	margin: 0!important;
}
.mySwiper-radio {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mySwiper-radio.ready {
  visibility: visible;
  opacity: 1;
}
#montant-total.inactive {
  color: #999;       /* gris clair */
  font-style: italic; /* optionnel */
  transition: color 0.3s ease;
}


.day-price {
    font-size: 0.7rem;
    color: var(--dark-blue);
    margin-top: 2px;
    position: absolute;
    bottom: -18px;
    margin: auto;
    left: 0;
    right: 0;
}




span.day-number {
    position: absolute;
    left: 0;
    right: 0;
    top: -5px;
    font-weight: 600;
}


/* ============================================
   WIDGET FLOTTANT DE RÉCAPITULATIF
   ============================================ */

/* Widget flottant en bas à droite */
.price-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    width: 360px;
    max-width: calc(100vw - 40px);
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.price-widget.collapsed {
    width: 200px;
    height: 60px;
}

.price-widget.collapsed .widget-content {
    opacity: 0;
    pointer-events: none;
    max-height: 0;
    padding: 0;
}

.price-widget.collapsed .widget-badge {
    opacity: 0;
    pointer-events: none;
}

.price-widget.collapsed .widget-toggle .icon-close {
    display: none;
}

.price-widget.collapsed .widget-toggle .icon-open {
    display: block;
}

/* Header du widget (titre + bouton) */
.widget-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.price-widget.collapsed .widget-header {
    background: white;
    border-bottom: none;
    cursor: pointer;
}

.price-widget.collapsed .widget-header:hover {
    background: #f8f9fa;
}

/* Titre compact (visible quand réduit) */
.widget-title-compact {
    font-size: 1.1rem;
    font-weight: 600;
    color: #212529;
    margin: 0;
    transition: opacity 0.3s ease;
}

.price-widget:not(.collapsed) .widget-title-compact {
    opacity: 1;
}

.price-widget.collapsed .widget-title-compact {
    opacity: 1;
    font-size: 1rem;
}

/* Bouton toggle */
.widget-toggle {
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.widget-toggle:hover {
    background: #e9ecef;
    transform: scale(1.1);
}

.widget-toggle .icon-open {
    display: none;
}

.widget-toggle svg {
    color: #495057;
}

/* Badge (quand le widget est masqué) - OPTIONNEL, garde au cas où */
.widget-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.badge-amount {
    font-size: 1.3rem;
    font-weight: 700;
    color: #000;
}

/* Contenu du widget */
.widget-content {
    padding: 20px;
    opacity: 1;
    max-height: 600px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.widget-section {
    margin-bottom: 12px;
}

.widget-label {
    font-size: 0.75rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.widget-value {
    font-size: 1rem;
    font-weight: 500;
    color: #212529;
}

.widget-dates {
    font-size: 0.95rem;
}

.dates-row {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #212529;
    font-weight: 500;
}

.arrow {
    color: #adb5bd;
}

.widget-nuits .labelNb {
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: 4px;
}

.widget-divider {
    height: 1px;
    background: #dee2e6;
    margin: 16px 0;
}

/* Affichage du montant dans le widget */
.price-widget .montant-total {
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.price-widget .tarif-ligne {
    padding: 5px 0;
    font-size: 0.85rem;
}

.price-widget .tarif-ligne span {
    display: inline-block;
}

.price-widget .tarif-total {
    font-size: 1.2rem;
    margin-top: 8px;
    padding-top: 8px;
    color: var(--dark-blue);
}

.price-widget .tarif-total strong {
    color: var(--dark-blue);
}

.montant-message {
    font-size: 0.8rem;
    color: #6c757d;
    font-style: italic;
    text-align: center;
    margin-top: 8px;
}

/* Animation d'apparition */
@keyframes slideInUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.price-widget {
    animation: slideInUp 0.5s ease-out;
}

/* Effet de survol sur le header quand réduit */
.price-widget.collapsed .widget-header:hover .widget-title-compact {
    color: var(--dark-blue);
}

/* Amélioration visuelle des lignes de tarif */
.price-widget .tarif-ligne {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-widget .tarif-reduction {
    color: #28a745;
}

.price-widget .tarif-reduction span:last-child {
    font-weight: 600;
}

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

@media (max-width: 768px) {
    /* Widget */
    .price-widget {
        bottom: 10px;
        right: 10px;
        width: calc(100vw - 20px);
        max-width: 100%;
    }
    
    .price-widget.collapsed {
        width: 180px;
        height: 56px;
    }
    
    .widget-content {
        padding: 16px;
    }
    
    .widget-header {
        padding: 10px 12px;
    }
    
    .widget-title-compact {
        font-size: 1rem;
    }
    
    .price-widget.collapsed .widget-title-compact {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .price-widget {
        border-radius: 12px;
    }
    
    .price-widget.collapsed {
        width: 160px;
    }
    
    .widget-toggle {
        width: 32px;
        height: 32px;
    }
    
    .widget-section {
        margin-bottom: 10px;
    }
    
    .widget-label {
        font-size: 0.7rem;
    }
    
    .widget-value {
        font-size: 0.9rem;
    }
}

/* Amélioration pour les petits écrans en paysage */
@media (max-height: 600px) and (orientation: landscape) {
    .price-widget {
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .widget-content {
        padding: 12px;
    }
}

/* Style pour les lignes d'options */
.tarif-option {
    font-size: 0.85rem;
    color: #495057;
    padding-left: 12px;
    position: relative;
}

.tarif-option::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--dark-blue);
}

/* Dans le widget, adapter la taille */
.price-widget .tarif-option {
    font-size: 0.8rem;
}

/* Espacement entre hébergement et options */
.tarif-ligne + .tarif-option {
    margin-top: 4px;
}

/* Espacement entre dernière option et réduction */
.tarif-option + .tarif-reduction {
    margin-top: 8px;
}

/* ============================================
   AFFICHAGE DU MONTANT TOTAL (styles harmonisés)
   ============================================ */

/* Conteneur principal du montant */
#montant-total {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
    margin-top: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    font-weight: normal !important;
    font-size: 1rem !important;
}

/* Détail tarifaire */
.tarif-detail {
    width: 100%;
    font-size: 0.95rem;
}

.tarif-ligne {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f1f3f5;
    font-size: 0.95rem;
}

.tarif-ligne:last-child {
    border-bottom: none;
}

.tarif-ligne span {
    display: inline-block;
}

/* Ligne d'option */
.tarif-option {
    font-size: 0.9rem;
    color: #495057;
    padding-left: 16px;
    position: relative;
    padding-top: 8px;
    padding-bottom: 8px;
}

.tarif-option::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--dark-blue);
    font-size: 1.2rem;
    line-height: 1;
}

/* Ligne de réduction */
.tarif-reduction {
    color: #28a745 !important;
    background: #f9f9f3;
    padding: 12px 16px !important;
    margin: 8px -16px;
    border-radius: 8px;
    border-bottom: none !important;
}

.tarif-reduction span {
    color: #28a745;
    font-weight: 500;
}

.tarif-reduction span:last-child {
    font-weight: 600;
}

/* Ligne du total */
.tarif-total {
    margin-top: 12px;
    padding-top: 16px !important;
    border-top: 2px solid #dee2e6 !important;
    border-bottom: none !important;
    font-size: 1.2rem !important;
}

.tarif-total span {
    color: var(--dark-blue);
    font-size: 1.2rem;
}

.tarif-total strong {
    color: var(--dark-blue);
    font-weight: 700;
}

/* Message d'information */
.montant-message {
    font-size: 0.85rem;
    color: #6c757d;
    font-style: italic;
    text-align: center;
    margin-top: 12px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
}

/* ============================================
   STYLES SPÉCIFIQUES AU WIDGET
   ============================================ */

/* Ajustements pour le widget (plus compact) */
.price-widget #widget-montant-total {
    padding: 0;
    margin: 0;
    border: none;
    box-shadow: none;
    background: transparent;
}

.price-widget .montant-total {
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.price-widget .tarif-ligne {
    padding: 8px 0;
    font-size: 0.85rem;
}

.price-widget .tarif-option {
    font-size: 0.8rem;
    padding-left: 12px;
    padding-top: 6px;
    padding-bottom: 6px;
}

.price-widget .tarif-option::before {
    font-size: 1rem;
}

.price-widget .tarif-reduction {
    padding: 10px 12px !important;
    margin: 6px -12px;
    font-size: 0.85rem;
}

.price-widget .tarif-total {
    font-size: 1.1rem !important;
    margin-top: 10px;
    padding-top: 12px !important;
}

.price-widget .tarif-total span {
    font-size: 1.1rem;
}

.price-widget .montant-message {
    font-size: 0.8rem;
    padding: 8px;
    margin-top: 8px;
}

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

@media (max-width: 768px) {
    #montant-total {
        padding: 16px;
        margin-top: 1.5rem;
    }
    
    .tarif-ligne {
        padding: 8px 0;
        font-size: 0.9rem;
    }
    
    .tarif-option {
        font-size: 0.85rem;
        padding-left: 14px;
    }
    
    .tarif-reduction {
        padding: 10px 12px !important;
        margin: 6px -12px;
        font-size: 0.85rem;
    }
    
    .tarif-total {
        font-size: 1.1rem !important;
        padding-top: 14px !important;
    }
    
    .tarif-total span {
        font-size: 1.1rem;
    }
    
    .montant-message {
        font-size: 0.8rem;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    #montant-total {
        padding: 14px;
    }
    
    .tarif-ligne {
        font-size: 0.85rem;
    }
    
    .tarif-option {
        font-size: 0.8rem;
    }
    
    .tarif-total {
        font-size: 1rem !important;
    }
    
    .tarif-total span {
        font-size: 1rem;
    }
}

/* ============================================
   HEADER DU RÉCAPITULATIF TARIFAIRE
   ============================================ */

.tarif-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 16px;
}

.tarif-hebergement,
.tarif-dates {
    padding: 0;
}

.tarif-label {
    font-size: 0.75rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    font-weight: 500;
    text-align: left;
}

.tarif-nom {
    font-size: 1.1rem;
    font-weight: 600;
    color: #212529;
    line-height: 1.3;
    text-align: left;
}

.tarif-dates-range {
    font-size: 1rem;
    color: #212529;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
    text-align: left;
}

.tarif-nuits {
    font-size: 0.85rem;
    color: #6c757d;
    text-align: left;
}

.tarif-divider {
    height: 1px;
    background: #dee2e6;
    margin: 16px 0;
}

/* Responsive pour le header */
@media (max-width: 768px) {
    .tarif-header {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .tarif-nom {
        font-size: 1rem;
    }
    
    .tarif-dates-range {
        font-size: 0.95rem;
    }
    
    .tarif-label {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .tarif-header {
        gap: 12px;
    }
    
    .tarif-nom {
        font-size: 0.95rem;
    }
    
    .tarif-dates-range {
        font-size: 0.9rem;
        flex-wrap: wrap;
    }
    
    .tarif-nuits {
        font-size: 0.8rem;
    }
}

/* ============================================
   ÉTAT VIDE DU RÉCAPITULATIF
   ============================================ */

/* Texte grisé pour les infos non renseignées */
.tarif-empty {
    color: #adb5bd !important;
    font-style: italic;
}

/* Message d'information */
.tarif-message-info {
    text-align: center;
    padding: 32px 20px;
    color: #6c757d;
    font-size: 0.95rem;
    font-style: italic;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px dashed #dee2e6;
}

/* Version widget du message */
.price-widget .tarif-message-info {
    padding: 20px 16px;
    font-size: 0.85rem;
    margin: 0;
}

/* Ajustement du message dans le widget */
#widget-montant-message {
    display: none; /* On n'utilise plus ce message séparé */
}

/* Responsive */
@media (max-width: 768px) {
    .tarif-message-info {
        padding: 24px 16px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .tarif-message-info {
        padding: 20px 12px;
        font-size: 0.85rem;
    }
    
    .price-widget .tarif-message-info {
        padding: 16px 12px;
        font-size: 0.8rem;
    }
}

/* ============================================
   MULTI-SÉLECTION HÉBERGEMENTS
   ============================================ */

/* Info multi-sélection */
.hebergements-selection-info {
    background: #f9f9f3;
    border: 1px solid transparent;
    border-left: 4px solid var(--green);
    padding: 16px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.hebergements-selection-info p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Badge de sélection sur les cartes */
.hebergement-card {
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hebergement-card.selected {
    border-color: #007bff;
    box-shadow: 0 4px 16px rgba(0, 123, 255, 0.2);
}

.selection-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    background: #007bff;
    color: white;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.4);
    z-index: 10;
}

.hebergement-card.selected .selection-badge {
    display: flex;
    animation: popIn 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes popIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* ============================================
   INFO COMBINAISON
   ============================================ */

.combinaison-info {
    margin: 20px 0;
    animation: slideDown 0.4s ease-out;
}

.combinaison-badge {
    background: var(--dark-blue);
    color: white;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);
}

.badge-icon {
    font-size: 2rem;
    line-height: 1;
}

.badge-content {
    flex: 1;
}

.badge-content strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.badge-content p {
    margin: 0 0 8px 0;
    opacity: 0.95;
    font-size: 0.95rem;
    line-height: 1.4;
}

.economie {
    display: inline-block;
    background: var(--light-blue);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid var(--light-blue);
    color: var(--red);
}

/* ============================================
   ALERTE RÈGLES DE LOCATION (centrée sur calendrier)
   ============================================ */

/* Overlay semi-transparent */
.alert-regles-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    display: none;
    animation: fadeIn 0.3s ease-out;
}

.alert-regles-overlay.show {
    display: block;
}

/* Conteneur de l'alerte */
.alert-regles-location {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    width: 90%;
    max-width: 600px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    display: none;
    animation: slideInScale 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.alert-regles-location.show {
    display: block;
}

/* Contenu de l'alerte */
.alert-regles-content {
    padding: 30px;
}

/* Header de l'alerte */
.alert-regles-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--green);
}



.alert-title {
    flex: 1;
}

.alert-title h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
}

.alert-title p {
    margin: 4px 0 0 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Corps de l'alerte */
.alert-body {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.alert-body p {
    margin: 0 0 12px 0;
}

.alert-body strong {
    display: block;
    margin-top: 12px;
    font-weight: 600;
}

.alert-body br {
    display: block;
    content: "";
    margin-top: 8px;
}

/* Bouton de fermeture */
.alert-close-btn {
    width: 100%;
    padding: 14px 24px;
    background: var(--dark-blue);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.alert-close-btn:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
}

.alert-close-btn:active {
    transform: translateY(0);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInScale {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* Icône de fermeture (X) en haut à droite */
.alert-close-icon {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 1.5rem;
    line-height: 1;
}

.alert-close-icon:hover {
    background: rgba(133, 100, 4, 0.1);
    transform: rotate(90deg);
}

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

@media (max-width: 768px) {
    .alert-regles-location {
        width: 95%;
        max-width: none;
        margin: 20px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    .alert-regles-content {
        padding: 24px;
    }
    
    .alert-regles-header {
        gap: 12px;
        margin-bottom: 16px;
        padding-bottom: 16px;
    }
    
    
    
    .alert-title h3 {
        font-size: 1.2rem;
    }
    
    .alert-title p {
        font-size: 0.85rem;
    }
    
    .alert-body {
        font-size: 0.95rem;
    }
    
    .alert-close-btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .alert-regles-content {
        padding: 20px;
    }
    
    .alert-regles-header {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
       
    .alert-title h3 {
        font-size: 1.1rem;
    }
    
    .alert-body {
        font-size: 0.9rem;
    }
}

/* Animation de sortie */
@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes slideOutScale {
    from {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    to {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
}

.alert-regles-overlay.hiding {
    animation: fadeOut 0.3s ease-out;
}

.alert-regles-location.hiding {
    animation: slideOutScale 0.3s ease-out;
}

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

@media (max-width: 768px) {
    .hebergements-selection-info {
        padding: 12px;
        font-size: 0.9rem;
    }
    
    .selection-badge {
        width: 28px;
        height: 28px;
        font-size: 1rem;
        top: 8px;
        right: 8px;
    }
    
    .combinaison-badge {
        padding: 16px;
        gap: 12px;
    }
    
    .badge-icon {
        font-size: 1.5rem;
    }
    
    .badge-content strong {
        font-size: 1.1rem;
    }
    
    .badge-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hebergements-selection-info p {
        font-size: 0.85rem;
    }
    
    .combinaison-badge {
        flex-direction: column;
        text-align: center;
    }
    
    .badge-icon {
        font-size: 2rem;
    }
}

/* Message quand pas de prix disponible dans le calendrier */
.calendar-no-price-message {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 12px 16px;
    margin: 0 0 16px 0;
    color: #856404;
    font-size: 0.9rem;
    text-align: center;
    font-weight: 500;
}

/* Masquer le badge de sélection si vous l'aviez en CSS */
.selection-badge {
    display: none;
}



.tarif-message-erreur {
    background: #f8f9fa;
border: 1px dashed #dee2e6;
    border-radius: 12px;
    padding: 20px;
    color: #F52A45;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
}

.tarif-message-erreur strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: #F52A45;
}

.tarif-message-erreur p {
    margin: 8px 0;
}

.tarif-message-erreur a {
    color: #000;
    text-decoration: none;
    font-weight: 600;
}

.tarif-message-erreur a:hover {
    text-decoration: underline;
}


/* ============================================
   MODALE D'ALERTE UNIFIÉE
   ============================================ */

/* Overlay */
.alert-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    display: none;
    animation: fadeIn 0.3s ease-out;
}

.alert-modal-overlay.show {
    display: block;
}

/* Conteneur de la modale */
.alert-modal-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    width: 90%;
    max-width: 600px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    display: none;
    animation: slideInScale 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.alert-modal-container.show {
    display: block;
}

/* Contenu */
.alert-modal-content {
    padding: 30px;
}

/* Header */
.alert-modal-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.alert-icon {
    font-size: 2.5rem;
    line-height: 1;
    flex-shrink: 0;
}

.alert-title {
    flex: 1;
}

.alert-title h3 {
    margin: 0;
    font-size: 1.4rem;
    color: #333;
    font-weight: 600;
}

/* Corps */
.alert-modal-body {
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.alert-modal-body p {
    margin: 0 0 12px 0;
}

.alert-modal-body strong {
    display: block;
    margin-top: 12px;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.alert-modal-body div {
    margin-top: 4px;
    padding-left: 16px;
    color: #555;
}

.alert-modal-body a {
    color: #000;
    text-decoration: none;
    font-weight: 600;
}

.alert-modal-body a:hover {
    text-decoration: underline;
}

/* Boutons */



.alert-close-btn:active {
    transform: translateY(0);
}

.alert-close-icon {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    color: #666;
    font-size: 1.5rem;
    line-height: 1;
}

.alert-close-icon:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInScale {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

@keyframes slideOutScale {
    from {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    to {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
}

.alert-modal-overlay.hiding {
    animation: fadeOut 0.3s ease-out;
}

.alert-modal-container.hiding {
    animation: slideOutScale 0.3s ease-out;
}

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

@media (max-width: 768px) {
    .alert-modal-container {
        width: 95%;
        max-width: 95%;
        margin: 0;
    }
    
    .alert-modal-content {
        padding: 24px;
    }
    
    .alert-modal-header {
        gap: 12px;
        margin-bottom: 16px;
        padding-bottom: 16px;
    }
    
    .alert-icon {
        font-size: 2rem;
    }
    
    .alert-title h3 {
        font-size: 1.2rem;
    }
    
    .alert-modal-body {
        font-size: 0.95rem;
    }
    
    .alert-close-btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
}


/* Cacher le checkbox natif */
.hebergement-checkbox {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

/* Badge visuel */
.selection-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.95);
    border: 2px solid #DEE2E6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
   /* transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);*/
    z-index: 2;
    pointer-events: none;
    visibility: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Icône check */
.selection-badge .check-icon {
    color: transparent;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
}

/* État sélectionné (quand la carte a la classe .selected) */
.hebergement-card.selected .selection-badge {
    background-color: var(--dark-blue);
    border-color: var(--dark-blue);
    transform: scale(1.1);
    
    visibility:visible;
   /* box-shadow: 0 4px 12px;*/
}

.hebergement-card.selected .selection-badge .check-icon {
    color: white;
    transform: scale(1.2);
}

/* Hover sur la carte */
.hebergement-card:hover .selection-badge {
    transform: scale(1.05);
    border-color: var(--dark-blue);
}

.hebergement-card.selected:hover .selection-badge {
    transform: scale(1.15);
}

/* Animation à la sélection */
@keyframes badgeCheck {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
    100% {
        transform: scale(1.1);
    }
}

.hebergement-card.selected .selection-badge {
    animation: badgeCheck 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}



.calendar-months-container.changing-month .calendar-month {
  animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0.5;
  }
  to {
    opacity: 1;
  }
}




/* ============================================
   CALENDRIER - SWIPE ET ANIMATIONS
   ============================================ */

/* Conteneur du calendrier - Support tactile */
.calendar-months-container {
  touch-action: pan-y pinch-zoom;
  position: relative;
}

/* Désactiver la sélection de texte pendant le swipe */
.calendar-months-container * {
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
}

/* Animation UNIQUEMENT lors du changement de mois */
.calendar-month {
  /* Pas d'animation par défaut */
}

.calendar-months-container.changing-month .calendar-month {
  animation: fadeSlide 0.25s ease;
}

@keyframes fadeSlide {
  from {
    opacity: 0.3;
    transform: translateX(10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}


/* Améliorer les zones tactiles des flèches (mobile) */
@media (max-width: 768px) {
  .prev-month-arrow,
  .next-month-arrow {
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-arrow{
    bottom: -90px;
    left: auto;
    right: auto;
    margin: auto;
    top: auto;
  }

   .prev-month-arrow{
    right:calc(50% + 5px);
   }
    .next-month-arrow {
        left: calc(50% + 5px);
    }

  .my-custom-date-picker-wrapper{
    padding: 40px 0 0 0;
padding-bottom: 100px;
  }

}

#menage-option-container {
  transition: opacity 0.3s ease;
}

#menage-option-container[style*="display: none"] {
  opacity: 0;
}

#menage-option-container[style*="display: block"] {
  opacity: 1;
}

.prix-detail {
    margin-top: 0.5rem;
    color: var(--dark-blue);
    font-style: italic;
}

.prix-detail small {
    font-size: 0.75rem;
    line-height: 1rem;
    display: inline-block;
}

/* Widget - Style compact pour le prix par nuit */



/* Responsive : masquer sur très petit écran */
@media (max-width: 360px) {
  #widget-montant-total .tarif-detail-nuit {
    display: none;
  }
}


.calendar-info-message {
  padding: 16px;
  margin: 12px;
  background: #e3f2fd;
  border-left: 4px solid #2196F3;
  border-radius: 4px;
  color: #1565C0;
  font-size: 14px;
  text-align: center;
  font-weight: 500;
}


/* Calendrier désactivé si aucun hébergement */
/* Calendrier désactivé si aucun hébergement */
.calendar-months-container.no-hebergement {
  opacity: 0.5;
  pointer-events: none;
  position: relative;
  min-height: 400px; /* Assurer un espace pour le message */
}

.calendar-months-container.no-hebergement::after {
  content: "👆 Sélectionnez d'abord un ou plusieurs hébergements";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #f9f9f3;
  padding: 24px 32px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  font-size: 16px;
  font-weight: 600;
  z-index: 10;
  text-align: center;
  max-width: 90%;
  line-height: 1.5;
  border: 2px solid #7b9b64;
}

/* Animation d'apparition */
@keyframes fadeInMessage {
  from {
    opacity: 0;
    transform: translate(-50%, -60%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

.calendar-months-container.no-hebergement::after {
  animation: fadeInMessage 0.3s ease-out;
}

/* Responsive */
@media (max-width: 768px) {
  .calendar-months-container.no-hebergement::after {
    font-size: 14px;
    padding: 20px 24px;
  }
}






/* ============================================
   ERREUR CHECKBOX ACCEPTANCE
   ============================================ */

/* Container principal */
span.wpcf7-form-control-wrap[data-name="acceptance-kerhir"] {
  display: block;
  position: relative;
  margin-bottom: 20px;
}

/* Message d'erreur */
span.wpcf7-form-control-wrap[data-name="acceptance-kerhir"] .wpcf7-not-valid-tip {
  display: block !important;
  position: relative !important;
  margin-top: 12px !important;
  margin-bottom: 0 !important;
  padding: 12px 16px !important;
  background: #fff0f0 !important;
  border-left: 4px solid #d63638 !important;
  border-radius: 4px !important;
  color: #d63638 !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 1.5 !important;
  animation: slideIn 0.3s ease-out;
}



/* Animation */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Checkbox en erreur */
/*
span.wpcf7-form-control-wrap[data-name="acceptance-kerhir"] input[type="checkbox"].wpcf7-not-valid {
  outline: 2px solid #d63638 !important;
  outline-offset: 3px !important;
  box-shadow: 0 0 0 5px rgba(214, 54, 56, 0.15) !important;
}*/




/* Label en rouge */
span.wpcf7-form-control-wrap[data-name="acceptance-kerhir"].wpcf7-not-valid .wpcf7-list-item-label {
  color: #d63638 !important;
  font-weight: 600 !important;
}

/* ============================================
   MASQUER LE MESSAGE GLOBAL (optionnel)
   ============================================ */

/* Si vous voulez masquer le message en bas du formulaire */
.wpcf7-response-output.wpcf7-validation-errors {
  /* Décommentez pour masquer complètement */
  /* display: none !important; */
}

/* Ou le garder mais stylé */
.wpcf7-response-output {
  /*border: none !important;*/
  padding: 16px 20px !important;
  border-radius: 8px !important;
  /*margin: 20px 0 !important;
  font-size: 15px !important;
  font-weight: 600 !important;*/
}

.wpcf7-validation-errors {
  background: #fff0f0 !important;
  border-left: 5px solid #d63638 !important;
  color: #d63638 !important;
}



/* ============================================
   AUTRES CHAMPS EN ERREUR
   ============================================ */

.wpcf7-not-valid-tip {
  display: block !important;
  color: #d63638 !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  margin-top: 8px !important;
/*  padding: 10px 14px !important;*/
  /*background: #fff0f0 !important;*/
/*  border-left: 4px solid #d63638 !important;*/
  border-radius: 4px !important;
}


input.wpcf7-not-valid,
textarea.wpcf7-not-valid,
select.wpcf7-not-valid {
  border-color: #d63638 !important;
  background-color: #fff8f8 !important;
}

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

@media (max-width: 768px) {
  span.wpcf7-form-control-wrap[data-name="acceptance-kerhir"] .wpcf7-not-valid-tip {
    font-size: 13px !important;
    padding: 10px 14px !important;
  }
}

