/* ============================================
   WDT BOOKING MODAL
   Loads external booking platforms (Corsizio,
   ClubSpark, TeamUp) inside a branded popup
   ============================================ */

.wdt-booking-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(32, 52, 74, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.wdt-booking-modal.active {
    display: flex !important;
}

.wdt-booking-modal-content {
    background: #ffffff;
    border-radius: 12px;
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    animation: wdtModalSlideIn 0.3s ease;
}

@keyframes wdtModalSlideIn {
    from { opacity: 0; transform: translateY(-20px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.wdt-booking-modal-header {
    background: linear-gradient(135deg, #384862 0%, #20344A 100%);
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wdt-booking-modal-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0;
}

.wdt-booking-modal-close {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #ffffff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    line-height: 1;
}

.wdt-booking-modal-close:hover {
    background: #EF563F;
    transform: rotate(90deg);
}

.wdt-booking-modal-body {
    height: 70vh;
    max-height: 600px;
}

.wdt-booking-modal-body iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.wdt-booking-modal-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #666;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
}

@media (max-width: 600px) {
    .wdt-booking-modal { padding: 10px; }
    .wdt-booking-modal-content { border-radius: 8px; }
    .wdt-booking-modal-body { height: 75vh; }
}
