/* DESIGN GLOBAL */
.lr-booking-wrapper { max-width: 1000px; margin: 30px auto; padding: 30px; background: #fff; border-radius: 15px; box-shadow: 0 10px 40px rgba(0,0,0,0.08); font-family: sans-serif; }

/* CATEGORIES */
.lr-cat-header { border-bottom: 2px solid #d63638; padding-bottom: 10px; margin: 40px 0 20px; color: #333; font-size: 22px; text-transform: uppercase; letter-spacing: 1px; }

/* SERVICES */
.lr-grid-services { display: grid !important; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important; gap: 20px !important; }
.lr-service-card { background: #fff; border: 2px solid #f0f0f0; border-radius: 12px; padding: 20px; cursor: pointer; transition: 0.3s; display: flex; flex-direction: column; justify-content: space-between; }
.lr-service-card:hover { border-color: #d63638; transform: translateY(-5px); box-shadow: 0 8px 25px rgba(214, 54, 56, 0.12); }
.lr-service-info strong { font-size: 18px; display: block; margin-bottom: 5px; }
.lr-desc { font-size: 14px; color: #666; margin-bottom: 15px; }
.lr-service-meta { display: flex; justify-content: space-between; border-top: 1px solid #eee; padding-top: 10px; font-weight: bold; }
.lr-price-tag { color: #d63638; }

/* CALENDRIER */
#lr-calendar-container { background: #fafafa; border-radius: 10px; padding: 15px; border: 1px solid #eee; }
.fc-daygrid-day { cursor: pointer !important; }
.fc-daygrid-day.lr-date-selected { background-color: #d63638 !important; color: #fff !important; }

/* SLOTS 5 COLONNES */
.lr-slots-grid { display: grid !important; grid-template-columns: repeat(5, 1fr) !important; gap: 10px; margin-top: 20px; }
.lr-slot-item { border: 2px solid #d63638; color: #d63638; padding: 10px; text-align: center; border-radius: 8px; cursor: pointer; font-weight: bold; transition: 0.2s; }
.lr-slot-item:hover { background: #d63638; color: #fff; }

/* RÉCAPITULATIF */
.lr-summary-box { background: #fdf2f2; border-left: 5px solid #d63638; padding: 20px; margin-bottom: 30px; border-radius: 5px; }

@media (max-width: 768px) { .lr-slots-grid { grid-template-columns: repeat(3, 1fr) !important; } .lr-form-group-main { display: block; } }
/* Force la visibilité du calendrier */
#lr-calendar-container {
    display: block !important;
    min-height: 500px !important; /* Hauteur minimum pour être visible */
    background: #ffffff !important;
    margin: 20px 0 !important;
    border: 1px solid #ddd !important;
    padding: 10px !important;
    border-radius: 8px !important;
}

/* Évite les conflits de thèmes qui cachent le contenu */
.fc .fc-view-harness {
    min-height: 400px !important;
}
/* CORRECTIF D'AFFICHAGE CALENDRIER */
#lr-calendar-container {
    display: block !important;
    min-height: 500px !important;
    background: #ffffff !important;
    border: 1px solid #eeeeee !important;
    padding: 15px !important;
    margin-top: 20px !important;
}

/* On s'assure que les boutons de navigation du calendrier sont visibles */
.fc .fc-button-primary {
    background-color: #2c3e50 !important;
    border-color: #2c3e50 !important;
}

.fc-theme-standard td, .fc-theme-standard th {
    border: 1px solid #ddd !important;
}
/* Style du Récapitulatif */
.lr-summary-box {
    background: #f8f9fa;
    border-left: 4px solid #27ae60;
    padding: 15px;
    margin-bottom: 25px;
    border-radius: 4px;
}

.lr-recap-box strong {
    color: #2c3e50;
    display: inline-block;
    width: 100px;
}

/* Style du Formulaire de Contact */
.lr-form-group-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.lr-form-group-main input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

/* Le champ téléphone prend toute la largeur */
#lr-phone {
    grid-column: span 2;
}

/* Bouton de confirmation */
.lr-btn-submit {
    background-color: #27ae60;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    width: 100%;
    font-size: 16px;
    transition: background 0.3s;
}

.lr-btn-submit:hover {
    background-color: #219150;
}
.lr-contact-form-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    background: #fff;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 25px;
}

.lr-field-full { width: 100%; }
.lr-field-half { width: calc(50% - 10px); }

.lr-contact-form-grid label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.lr-contact-form-grid input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 15px;
}

@media (max-width: 600px) {
    .lr-field-half { width: 100%; }
}
/* GRILLE DU FORMULAIRE CONTACT */
.lr-contact-form-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    background: #ffffff;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-top: 20px;
    margin-bottom: 25px;
}

.lr-field-full {
    flex: 0 0 100%; /* Prend toute la largeur */
}

.lr-field-half {
    flex: 0 0 calc(50% - 8px); /* Prend la moitié moins l'espace du gap */
}

.lr-contact-form-grid label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 14px;
    color: #444;
}

.lr-contact-form-grid input {
    width: 100% !important;
    padding: 10px 12px !important;
    border: 1px solid #ccc !important;
    border-radius: 4px !important;
    box-sizing: border-box !important; /* Important pour ne pas déborder */
}

/* Ajustement pour mobile */
@media (max-width: 600px) {
    .lr-field-half {
        flex: 0 0 100%;
    }
}

/* Boite de récapitulatif */
.lr-summary-box {
    background: #eef9f1;
    border: 1px solid #c2e6cd;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    color: #2e7d32;
}