/* ========================================
   VARIABLES
   ======================================== */
:root {
    --primary-color: #FF6B9D;
    --primary-hover: #FF5589;
    --secondary-color: #4A5568;
    --accent-color: #FFF5F7;
    --text-dark: #2D3748;
    --text-medium: #4A5568;
    --text-light: #718096;
    --border-color: #E2E8F0;
    --bg-light: #F7FAFC;
    --white: #FFFFFF;
    --success: #48BB78;
    --danger: #F56565;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Playfair Display', serif;
}

/* ========================================
   RESET
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

/* ========================================
   SECTION RÉSERVATION
   ======================================== */
.reservation-section-booking {
    padding: 3rem 2rem;
}

.container-booking {
    max-width: 1100px;
    margin: 0 auto;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
}

input, select, textarea {
    font-family: inherit;
    border: none;
    outline: none;
}

/* ========================================
   NAVIGATION
   ======================================== */
.booking-nav {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.booking-nav .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.back-link {
    color: var(--text-medium);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.back-link:hover {
    color: var(--primary-color);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.nav-logo i {
    color: var(--primary-color);
}

/* ========================================
   MAIN CONTAINER
   ======================================== */
.booking-main {
    padding: 3rem 0;
    min-height: calc(100vh - 80px);
}

.booking-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

/* ========================================
   LEFT SIDE - SELECTION
   ======================================== */
.booking-left {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.booking-header {
    margin-bottom: 2rem;
}

.booking-header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.booking-header p {
    color: var(--text-light);
    font-size: 1rem;
}

/* Service Selector */
.service-selector {
    margin-bottom: 1.25rem;
}

.service-selector label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.service-dropdown {
    width: 100%;
    padding: 1rem;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.2s ease;
}

.service-dropdown:hover {
    border-color: var(--primary-color);
}

.service-dropdown:focus {
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.1);
}

/* Service Buttons */
.service-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.service-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 0.5rem;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
}

.service-btn:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.service-btn.active {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.05), rgba(255, 107, 157, 0.1));
    box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.1);
}

.service-btn-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #2a9d8f, #264653);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--white);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.service-btn:hover .service-btn-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-btn.active .service-btn-icon {
    background: linear-gradient(135deg, var(--primary-color), #ff8bb0);
    transform: scale(1.05);
}

.service-btn-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.service-btn-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.8rem;
    line-height: 1.2;
}

.service-btn-meta {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* Responsive service buttons */
/* ========================================
   CALENDRIER ADMIN OPTIMISÉ
   ======================================== */
/* Conteneur principal */
.calendar-editor-section {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
    padding: 1rem;
}

/* En-tête compact */
.section-header.compact {
    padding: 1rem;
    border-bottom: none;
    flex-direction: column;
    gap: 1rem;
}

/* Grille de contrôles */
.calendar-controls-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    width: 100%;
}

.date-range-picker {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.date-input {
    padding: 0.5rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    max-width: 150px;
}

.calendar-buttons {
    display: flex;
    gap: 0.5rem;
}

/* Conteneur calendrier */
.calendar-wrapper {
    margin-top: 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

/* Navigation mois */
.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--bg-light);
    border-bottom: 2px solid var(--border-color);
}

#current-month {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.btn-icon {
    padding: 0.5rem;
    width: 40px;
    height: 40px;
}

/* Grille des jours */
#calendar {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 1px;
    background: var(--border-color);
}

/* Jours du calendrier */
.calendar-day-admin {
    aspect-ratio: 1;
    padding: 0.5rem;
    background: var(--white);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-height: 100px;
}

.calendar-day-admin:hover {
    background: var(--accent-color) !important;
}

/* Style des créneaux */
.time-slot-admin {
    padding: 0.25rem;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 1.2;
}

.slot-actions {
    display: flex;
    gap: 0.25rem;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.time-slot-admin:hover .slot-actions {
    opacity: 1;
}

/* États */
.calendar-day-admin.has-slots {
    background: rgba(72, 187, 120, 0.05);
}

.calendar-day-admin.selected {
    background: var(--primary-color);
    color: var(--white);
}

.calendar-day-admin.disabled {
    background: repeating-linear-gradient(
        45deg,
        var(--bg-light),
        var(--bg-light) 4px,
        var(--white) 4px,
        var(--white) 8px
    );
    cursor: not-allowed;
}

/* Responsive */
@media (max-width: 768px) {
    .calendar-controls-grid {
        grid-template-columns: 1fr;
    }
    
    .calendar-day-admin {
        min-height: 80px;
        font-size: 0.9rem;
    }
}
.calendar-editor-section {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

.calendar-controls {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.date-range-picker {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.date-input {
    padding: 0.5rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
}

#calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    padding: 1rem;
}

.calendar-day-admin {
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s ease;
}

.calendar-day-admin.disabled {
    background: var(--bg-light);
    opacity: 0.5;
    cursor: not-allowed;
}

.calendar-day-admin.has-slots {
    background: rgba(72, 187, 120, 0.1);
    border-color: var(--success);
}

.calendar-day-admin.selected {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.time-slot-admin {
    padding: 0.25rem 0.5rem;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    margin-top: 0.5rem;
    font-size: 0.875rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.slot-actions {
    display: flex;
    gap: 0.25rem;
}

@media (max-width: 768px) {
    .service-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================================
   CALENDAR & TIME SLOTS CONTAINER
   ======================================== */
.calendar-timeslots-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
    margin-bottom: 0;
}

/* ========================================
   CALENDAR
   ======================================== */
.calendar-wrapper {
    margin-bottom: 0;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.calendar-header h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
}

.calendar-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--text-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.calendar-nav-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

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

.weekday {
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-light);
    padding: 0.5rem;
}

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

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    background: var(--white);
    border: 2px solid transparent;
}

.calendar-day:hover:not(.disabled):not(.other-month) {
    background: var(--accent-color);
    border-color: var(--primary-color);
}

.calendar-day.selected {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.calendar-day.today {
    border-color: var(--primary-color);
    color: var(--primary-color);
    font-weight: 700;
}

.calendar-day.disabled {
    color: var(--text-light);
    opacity: 0.4;
    cursor: not-allowed;
}

.calendar-day.other-month {
    color: var(--text-light);
    opacity: 0.3;
}

.calendar-day.no-slots {
    position: relative;
    color: var(--text-light);
    opacity: 0.5;
    cursor: not-allowed;
}

.calendar-day.no-slots::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 1px;
    background: var(--text-light);
    opacity: 0.5;
}

/* ========================================
   TIME SLOTS
   ======================================== */
.time-slots-wrapper {
    margin-bottom: 0;
}

.time-slots-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.time-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.no-slots-message {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--text-light);
    padding: 2rem;
    font-style: italic;
}

.time-slot {
    padding: 0.5rem 0.75rem;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 70px;
}

.time-slot:hover {
    background: var(--accent-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.time-slot.selected {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.time-slot.unavailable {
    background: #F7F7F7;
    color: var(--text-light);
    opacity: 0.5;
    cursor: not-allowed;
    text-decoration: line-through;
}

.time-slot.unavailable:hover {
    transform: none;
    border-color: var(--border-color);
    background: #F7F7F7;
}

/* ========================================
   CLIENT INFO
   ======================================== */
.client-info-wrapper {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.client-info-wrapper h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

/* Bouton Retour */
.btn-back {
    width: 100%;
    padding: 0.875rem;
    background: var(--bg-light);
    color: var(--text-medium);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
    cursor: pointer;
}

.btn-back:hover {
    background: var(--white);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.client-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-field label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.875rem;
}

.form-field input,
.form-field textarea {
    padding: 0.875rem;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    color: var(--text-dark);
    transition: all 0.2s ease;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.1);
}

.form-field textarea {
    resize: vertical;
    min-height: 80px;
}

/* ========================================
   RIGHT SIDE - SUMMARY
   ======================================== */
.booking-right {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.booking-summary-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    box-shadow: var(--shadow-md);
    margin-bottom: 1.25rem;
    max-width: 300px;
}

.summary-header h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
}

/* Service Preview */
.service-preview {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.service-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
}

.service-details h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.service-details p {
    color: var(--text-light);
    font-size: 0.875rem;
}

.service-price {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 0.5rem;
}

/* Summary Placeholder */
.summary-placeholder {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-light);
}

.summary-placeholder i {
    font-size: 3rem;
    color: var(--border-color);
    margin-bottom: 1rem;
}

.summary-placeholder p {
    font-size: 0.95rem;
}

/* Booking Details */
.booking-details {
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    margin-bottom: 0.5rem;
}

.detail-item i {
    font-size: 1.25rem;
    color: var(--primary-color);
    width: 24px;
    text-align: center;
}

.detail-item div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.detail-label {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.detail-value {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

/* Summary Total */
.summary-total {
    padding: 1.5rem 0;
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 1.5rem;
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.total-row span:first-child {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.total-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Continue Button */
.btn-continue {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.btn-continue:hover:not(:disabled) {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-continue:disabled {
    background: var(--border-color);
    color: var(--text-light);
    cursor: not-allowed;
    box-shadow: none;
}

.security-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.875rem;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.security-note i {
    color: var(--success);
}

/* Benefits Card */
.benefits-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--text-medium);
    font-size: 0.95rem;
}

.benefit-item i {
    color: var(--success);
    font-size: 1.125rem;
}

/* ========================================
   MODAL
   ======================================== */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 100%;
    box-shadow: var(--shadow-lg);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    padding: 2rem;
    text-align: center;
    border-bottom: 2px solid var(--border-color);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.success-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.modal-header h2 {
    font-size: 1.5rem;
    color: var(--text-dark);
}

.modal-body {
    padding: 2rem;
}

.modal-body p {
    color: var(--text-medium);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.modal-details {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.modal-detail-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.modal-detail-item:last-child {
    border-bottom: none;
}

.modal-detail-item strong {
    color: var(--text-dark);
}

.modal-detail-item span {
    color: var(--text-medium);
    font-weight: 600;
}

.modal-footer {
    padding: 2rem;
    border-top: 2px solid var(--border-color);
}

.btn-modal-close {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: var(--transition-normal);
    width: 100%;
}

.btn-modal-close:hover {
    background: var(--color-secondary);
    transform: translateY(-2px);
}

.btn-email-fallback {
    background: linear-gradient(135deg, var(--success), #27ae60);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    margin: 1rem 0;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
    box-shadow: var(--shadow-md);
}

.btn-email-fallback:hover {
    background: linear-gradient(135deg, #27ae60, #219a52);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Statut email dans la modal */
.modal-detail-item span i {
    margin-left: 8px;
}

.modal-detail-item small {
    display: block;
    margin-top: 4px;
    font-weight: normal;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .booking-container {
        grid-template-columns: 1fr;
    }

    .booking-right {
        position: static;
    }
}

@media (max-width: 768px) {
    .booking-container {
        padding: 0 1rem;
    }

    .booking-left,
    .booking-summary-card {
        padding: 1.5rem;
    }

    .booking-header h1 {
        font-size: 1.5rem;
    }

    .calendar-timeslots-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .client-form .form-row {
        grid-template-columns: 1fr;
    }

    .time-slots {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    }

    .calendar-day {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .booking-main {
        padding: 1.5rem 0;
    }

    .booking-left,
    .booking-summary-card {
        padding: 1rem;
    }

    .time-slots {
        grid-template-columns: repeat(3, 1fr);
    }
}
