/* ========== NOUVEAU MODAL DE RÉSERVATION (DESIGN RESERVATION) ========== */

/* Modal Container */
.booking-modal-new {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.booking-modal-new.active {
    display: flex;
    animation: fadeIn 0.3s;
}

.booking-modal-content-new {
    max-width: 80rem;
    /* max-w-7xl */
    width: 95%;
    height: 95vh;
    background: rgba(15, 23, 42, 0.95);
    /* slate-900/95 */
    border: 1px solid rgba(168, 85, 247, 0.2);
    /* purple-500/20 */
    border-radius: 1rem;
    backdrop-filter: blur(20px);
    padding: 0;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

/* Header */
.booking-modal-header-new {
    border-bottom: 1px solid rgba(168, 85, 247, 0.2);
    padding: 1.5rem;
    flex-shrink: 0;
    position: relative;
}

.booking-modal-close-new {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    color: #9ca3af;
    /* gray-400 */
    font-size: 1.25rem;
    cursor: pointer;
    transition: color 0.2s;
    z-index: 10;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
}

.booking-modal-close-new:hover {
    color: white;
    background: rgba(168, 85, 247, 0.1);
}

.booking-modal-title-new {
    text-align: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Step Indicator */
.step-indicator-new {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.step-indicator-item-new {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.step-indicator-circle-new {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    background: #334155;
    /* slate-700 */
}

.step-indicator-item-new.active .step-indicator-circle-new {
    background: linear-gradient(135deg, hsl(271, 91%, 65%), hsl(271, 91%, 75%));
    box-shadow: 0 10px 25px rgba(168, 85, 247, 0.5);
}

.step-indicator-item-new[data-step] .step-indicator-circle-new.completed {
    background: hsl(271, 91%, 65%);
}

.step-indicator-circle-new i {
    font-size: 1.25rem;
    color: #9ca3af;
}

.step-indicator-item-new.active .step-indicator-circle-new i,
.step-indicator-item-new[data-step] .step-indicator-circle-new.completed i {
    color: white;
}

.step-indicator-label-new {
    font-size: 0.875rem;
    color: #6b7280;
    /* gray-500 */
}

.step-indicator-item-new.active .step-indicator-label-new {
    color: hsl(271, 91%, 75%);
}

.step-indicator-item-new[data-step] .step-indicator-label-new.completed {
    color: hsl(271, 91%, 65%);
}

.step-indicator-line-new {
    width: 4rem;
    height: 2px;
    background: #334155;
    margin-bottom: 3rem;
    position: relative;
}

.step-indicator-progress-new {
    height: 100%;
    background: linear-gradient(90deg, hsl(271, 91%, 65%), hsl(271, 91%, 75%));
    transition: width 0.3s;
    width: 0;
}

.step-indicator-progress-new.complete {
    width: 100%;
}

/* Body - Scrollable */
.booking-modal-body-new {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
}

.booking-steps-container-new {
    padding: 2rem;
    max-width: 80rem;
    /* max-w-5xl */
    margin: 0 auto;
}

/* Step Header */
.step-header-new {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.step-icon-new {
    font-size: 1.5rem;
    color: hsl(271, 91%, 75%);
}

.step-icon-box-new {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, hsl(271, 91%, 65%), hsl(271, 91%, 75%));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(168, 85, 247, 0.3);
}

.step-icon-box-new i {
    font-size: 1.5rem;
    color: white;
}

.step-header-text-new {
    flex: 1;
}

.step-title-new {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.step-subtitle-new {
    color: #9ca3af;
    font-size: 0.875rem;
    margin: 0.25rem 0 0 0;
}

.duration-badge-new {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(139, 92, 246, 0.2));
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 0.75rem;
    padding: 0.5rem 1rem;
}

.duration-label-new {
    font-size: 0.625rem;
    color: #9ca3af;
    text-align: center;
    margin: 0 0 0.125rem 0;
}

.duration-value-new {
    color: white;
    font-weight: 700;
    text-align: center;
    margin: 0;
    font-size: 1rem;
}

/* Recurrence Section */
.recurrent-section-new {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(168, 85, 247, 0.2);
    animation: fadeIn 0.3s;
}

.recurrent-title-new {
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.recurrent-subtitle-new {
    color: #9ca3af;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.recurrent-options-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.75rem;
    margin-top: 1rem;
}

.recurrent-btn-new {
    background: rgba(30, 41, 59, 0.6) !important;
    border: 2px solid rgba(148, 163, 184, 0.2) !important;
    border-radius: 12px !important;
    padding: 1rem !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.25rem !important;
    position: relative !important;
    overflow: hidden !important;
}

.recurrent-btn-new::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(139, 92, 246, 0.1)) !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
}

.recurrent-btn-new:hover::before {
    opacity: 1 !important;
}

.recurrent-btn-new:hover {
    border-color: rgba(168, 85, 247, 0.4) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 16px rgba(168, 85, 247, 0.15) !important;
}

.recurrent-btn-new.active {
    background: linear-gradient(135deg, #a855f7, #8b5cf6) !important;
    border-color: #a855f7 !important;
    box-shadow: 0 8px 20px rgba(168, 85, 247, 0.3) !important;
}

.recurrent-btn-new span {
    color: #cbd5e1 !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    position: relative !important;
    z-index: 1 !important;
}

.recurrent-btn-new.active span {
    color: white !important;
}

.recurrent-btn-new small {
    font-size: 0.75rem !important;
    color: #94a3b8 !important;
    position: relative !important;
    z-index: 1 !important;
}

.recurrent-btn-new.active small {
    color: rgba(255, 255, 255, 0.9) !important;
}

.recurrent-info-box-new {
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 0.75rem;
    padding: 1rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.recurrent-info-icon-new {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: rgba(168, 85, 247, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.recurrent-info-icon-new i {
    color: hsl(271, 91%, 75%);
    font-size: 1rem;
}

.recurrent-info-text-new h4 {
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
}

.recurrent-info-text-new p {
    color: #cbd5e1;
    font-size: 0.75rem;
    margin: 0;
    line-height: 1.4;
}

.recurrent-custom-input-new {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.recurrent-custom-input-new label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #cbd5e1;
}

.custom-input-wrapper-new {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.custom-input-wrapper-new input {
    width: 80px;
    padding: 0.5rem;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.3);
    border-radius: 8px;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: white;
}

.custom-input-wrapper-new input:focus {
    outline: none;
    border-color: #a855f7;
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
}

.custom-input-wrapper-new span {
    font-size: 0.9rem;
    color: #94a3b8;
}

/* Calendar Container */
.calendar-container-new {
    background: rgba(30, 41, 59, 0.5);
    /* slate-800/50 */
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(168, 85, 247, 0.1);
    max-width: 45rem;
    /* Reduced from 64rem */
    /* max-w-4xl */
    margin: 0 auto;
}

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

.btn-nav-calendar-new {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-nav-calendar-new:hover {
    background: rgba(168, 85, 247, 0.2);
    color: white;
}

.btn-nav-calendar-new i {
    font-size: 1.5rem;
}

.calendar-month-new {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

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

.calendar-weekdays-new span {
    text-align: center;
    font-size: 0.875rem;
    color: #9ca3af;
    font-weight: 500;
    padding: 0.5rem 0;
}

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

.booking-calendar-new .calendar-day {
    aspect-ratio: 1;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    position: relative;
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    font-weight: 500;
}

.booking-calendar-new .calendar-day:hover:not(.disabled):not(.selected) {
    background: rgba(168, 85, 247, 0.2);
    transform: scale(1.05);
}

.booking-calendar-new .calendar-day.selected {
    background: linear-gradient(135deg, hsl(271, 91%, 65%), hsl(271, 91%, 75%));
    color: white;
    box-shadow: 0 10px 25px rgba(168, 85, 247, 0.5);
    transform: scale(1.05);
}

.booking-calendar-new .calendar-day.disabled {
    color: #4b5563;
    /* gray-600 */
    cursor: not-allowed;
    opacity: 0.5;
}

.booking-calendar-new .calendar-day.today::after {
    content: '';
    position: absolute;
    bottom: 0.25rem;
    width: 0.25rem;
    height: 0.25rem;
    border-radius: 50%;
    background: hsl(271, 91%, 75%);
}

/* Time Slots Container */
.time-slots-container-new {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.time-period-section-new {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.time-period-header-new {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.time-period-icon-box-new {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.time-period-icon-box-new.morning {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    /* amber-500 to orange-500 */
}

.time-period-icon-box-new.afternoon {
    background: linear-gradient(135deg, #eab308, #f59e0b);
    /* yellow-500 to amber-500 */
}

.time-period-icon-box-new.evening {
    background: linear-gradient(135deg, #f97316, #ec4899);
    /* orange-500 to pink-500 */
}

.time-period-icon-box-new.night {
    background: linear-gradient(135deg, #6366f1, #a855f7);
    /* indigo-500 to purple-500 */
}

.time-period-icon-box-new i {
    font-size: 1.25rem;
    color: white;
}

.time-period-title-new {
    color: white;
    font-weight: 500;
    font-size: 1rem;
}

.time-period-line-new {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(168, 85, 247, 0.2), transparent);
}

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

.time-slot-btn-new {
    position: relative;
    padding: 1rem;
    border-radius: 1rem;
    border: 2px solid;
    transition: all 0.3s;
    background: transparent;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.time-slot-btn-new:disabled {
    border-color: rgba(55, 65, 81, 0.5);
    background: rgba(30, 41, 59, 0.2);
    color: #4b5563;
    cursor: not-allowed;
    opacity: 0.5;
}

.time-slot-btn-new:not(:disabled):hover {
    transform: scale(1.05);
}

.time-slot-btn-new.start,
.time-slot-btn-new.end {
    background: linear-gradient(135deg, hsl(271, 91%, 65%), hsl(271, 91%, 75%));
    border-color: rgba(196, 181, 253, 1);
    color: white;
    box-shadow: 0 20px 40px rgba(168, 85, 247, 0.5);
    transform: scale(1.05);
    z-index: 10;
}

.time-slot-btn-new.in-range {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.4), rgba(168, 85, 247, 0.4));
    border-color: rgba(196, 181, 253, 0.6);
    color: white;
    box-shadow: 0 10px 25px rgba(168, 85, 247, 0.3);
}

.time-slot-btn-new:not(:disabled):not(.start):not(.end):not(.in-range) {
    border-color: rgba(168, 85, 247, 0.2);
    color: white;
}

.time-slot-btn-new:not(:disabled):not(.start):not(.end):not(.in-range):hover {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(139, 92, 246, 0.2));
    border-color: rgba(168, 85, 247, 0.6);
    box-shadow: 0 10px 25px rgba(168, 85, 247, 0.2);
}

.time-slot-icon-new {
    font-size: 1rem;
    transition: all 0.3s;
}

.time-slot-btn-new.start .time-slot-icon-new,
.time-slot-btn-new.end .time-slot-icon-new {
    color: white;
    transform: scale(1.1);
}

.time-slot-btn-new.in-range .time-slot-icon-new {
    color: rgba(196, 181, 253, 1);
}

.time-slot-btn-new:not(:disabled):not(.start):not(.end):not(.in-range) .time-slot-icon-new {
    color: hsl(271, 91%, 75%);
}

.time-slot-time-new {
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s;
}

.time-slot-btn-new.start .time-slot-time-new,
.time-slot-btn-new.end .time-slot-time-new {
    font-size: 1rem;
}

.time-slot-label-new {
    font-size: 0.625rem;
    color: rgba(196, 181, 253, 0.8);
    margin-top: 0.25rem;
}

.time-slot-btn-new.start::after,
.time-slot-btn-new.end::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(196, 181, 253, 0.2), rgba(168, 85, 247, 0.2));
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Mode Selection */
.mode-selection-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 64rem;
    /* max-w-4xl */
    margin: 0 auto;
}

.mode-option-new {
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid;
    transition: all 0.2s;
    background: transparent;
    cursor: pointer;
    text-align: left;
}

.mode-option-new:hover:not(.selected) {
    border-color: rgba(168, 85, 247, 0.5);
    background: rgba(168, 85, 247, 0.1);
}

.mode-option-new.selected {
    background: linear-gradient(135deg, hsl(271, 91%, 65%), hsl(271, 91%, 75%));
    border-color: rgba(196, 181, 253, 1);
    box-shadow: 0 10px 25px rgba(168, 85, 247, 0.5);
    transform: scale(1.05);
}

.mode-option-new:not(.selected) {
    border-color: rgba(168, 85, 247, 0.2);
}

.mode-option-content-new {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.mode-icon-circle-new {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.mode-option-new.selected .mode-icon-circle-new {
    background: rgba(255, 255, 255, 0.2);
}

.mode-option-new:not(.selected) .mode-icon-circle-new {
    background: rgba(168, 85, 247, 0.2);
}

.mode-icon-circle-new i {
    font-size: 2.5rem;
    color: white;
}

.mode-text-new h4 {
    color: white;
    font-size: 1.25rem;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.mode-text-new p {
    color: rgba(203, 213, 225, 1);
    /* slate-300 */
    font-size: 0.875rem;
    margin: 0;
}

/* Location Input */
.location-input-new {
    animation: fadeIn 0.3s;
    padding-top: 1rem;
    max-width: 32rem;
    /* max-w-2xl */
    margin: 0 auto;
}

.location-label-new {
    color: white;
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.location-input-field-new {
    width: 100%;
    padding: 0.75rem;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 0.5rem;
    color: white;
    font-size: 1rem;
    transition: all 0.2s;
}

.location-input-field-new:focus {
    outline: none;
    border-color: hsl(271, 91%, 65%);
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
}

.location-input-field-new::placeholder {
    color: #64748b;
}

/* Step Actions */
.step-actions-new {
    display: flex;
    gap: 0.75rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(168, 85, 247, 0.2);
    max-width: 28rem;
    /* max-w-md */
    margin-left: auto;
    margin-right: auto;
}

.btn-continue-new {
    flex: 1;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(90deg, hsl(271, 91%, 65%), hsl(271, 91%, 75%));
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    height: 3rem;
}

.btn-continue-new:hover:not(:disabled) {
    background: linear-gradient(90deg, hsl(271, 91%, 70%), hsl(271, 91%, 80%));
    box-shadow: 0 10px 25px rgba(168, 85, 247, 0.4);
}

.btn-continue-new:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-back-new {
    flex: 1;
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: white;
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-back-new:hover {
    background: rgba(168, 85, 247, 0.1);
    border-color: rgba(168, 85, 247, 0.5);
}

/* Booking Summary - Bottom Fixed */
.booking-summary-new {
    border-top: 1px solid rgba(168, 85, 247, 0.2);
    background: rgba(30, 41, 59, 0.7);
    /* slate-800/70 */
    backdrop-filter: blur(10px);
    flex-shrink: 0;
    padding: 1rem;
}

.summary-empty-new {
    text-align: center;
    padding: 0.75rem;
}

.summary-empty-new i {
    font-size: 2rem;
    color: #4b5563;
    margin-bottom: 0.5rem;
    display: block;
}

.summary-empty-new p {
    color: #9ca3af;
    font-size: 0.75rem;
    margin: 0;
}

.summary-content-new {
    max-width: 80rem;
    /* max-w-6xl */
    margin: 0 auto;
}

.summary-grid-new {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 1rem;
    align-items: center;
}

.summary-details-new {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem 1.5rem;
}

.summary-item-new {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.summary-avatar-new {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(168, 85, 247, 0.3);
}

.summary-icon-box-new {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: rgba(168, 85, 247, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.summary-icon-box-new i {
    font-size: 1rem;
    color: hsl(271, 91%, 75%);
}

.summary-label-new {
    font-size: 0.625rem;
    color: #9ca3af;
    margin: 0;
}

.summary-value-new {
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    margin: 0;
}

.summary-pricing-new {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-left: 1px solid rgba(168, 85, 247, 0.2);
    padding-left: 1rem;
}

.summary-price-box-new {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(139, 92, 246, 0.2));
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 0.75rem;
    padding: 0.5rem 1rem;
}

.summary-price-label-new {
    font-size: 0.625rem;
    color: #9ca3af;
    text-align: center;
    margin: 0 0 0.125rem 0;
}

.summary-price-value-new {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
    margin: 0;
}

.btn-confirm-booking-new {
    background: linear-gradient(90deg, hsl(271, 91%, 65%), hsl(271, 91%, 75%));
    color: white;
    border: none;
    border-radius: 0.5rem;
    padding: 0.625rem 1.25rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    white-space: nowrap;
}

.btn-confirm-booking-new:hover:not(:disabled) {
    background: linear-gradient(90deg, hsl(271, 91%, 70%), hsl(271, 91%, 80%));
    box-shadow: 0 10px 25px rgba(168, 85, 247, 0.4);
}

.btn-confirm-booking-new:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Booking Steps */
.booking-step-new {
    display: none;
    animation: fadeIn 0.3s;
}

.booking-step-new.active {
    display: block;
}

/* Responsive */
@media (max-width: 1024px) {
    .booking-modal-content-new {
        width: 98%;
        height: 98vh;
    }

    .summary-grid-new {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .summary-pricing-new {
        border-left: none;
        border-top: 1px solid rgba(168, 85, 247, 0.2);
        padding-left: 0;
        padding-top: 1rem;
    }
}

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

    .calendar-container-new {
        padding: 1rem;
    }

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

    .mode-selection-new {
        grid-template-columns: 1fr;
    }

    .step-actions-new {
        flex-direction: column;
    }

    .summary-details-new {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Ensure proposal card titles wrap properly */
.proposal-card h4,
.message-booking-card h4 {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    white-space: normal !important;
    line-height: 1.4 !important;
    max-width: 100% !important;
}