/* ================================
   BOOKING MODAL STYLES
   ================================ */

/* Reusing existing .modal class for container */

.booking-modal-content {
    background: var(--white);
    width: 100%;
    max-width: 42rem;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    max-height: 90vh;
    animation: zoomIn 0.2s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.95);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.booking-modal-header {
    padding: 1.25rem;
    border-bottom: 1px solid var(--slate-100);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 10;
    border-radius: 1rem 1rem 0 0;
}

.booking-venue-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.booking-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: rgba(49, 125, 190, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dsn-blue);
}

.booking-venue-name {
    font-size: 1.125rem;
    font-weight: 900;
    color: var(--dsn-dark);
}

.modal-close-icon {
    padding: 0.5rem;
    color: var(--slate-400);
    transition: color 0.3s ease;
    cursor: pointer;
}

.modal-close-icon:hover {
    color: #ef4444;
}

.booking-modal-body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.booking-section-title {
    font-size: 10px;
    font-weight: 900;
    color: var(--slate-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
    display: block;
}

/* Date Selector */
.date-scroll {
    display: flex;
    gap: 0.625rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
}

.date-scroll::-webkit-scrollbar {
    display: none;
}

.date-card {
    flex-shrink: 0;
    width: 3.5rem;
    height: 4rem;
    border-radius: 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--slate-100);
    background: var(--white);
    color: var(--slate-500);
    transition: all 0.3s ease;
    cursor: pointer;
}

.date-card:hover {
    border-color: rgba(49, 125, 190, 0.3);
}

.date-card.active {
    background: var(--dsn-blue);
    border-color: var(--dsn-blue);
    color: var(--white);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.date-day {
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.date-date {
    font-size: 1.125rem;
    font-weight: 900;
}

/* Time Grid */
.time-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.625rem;
}

@media (min-width: 640px) {
    .time-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.time-slot {
    padding: 1rem;
    border-radius: 0.75rem;
    border: 1px solid var(--slate-100);
    background: var(--white);
    text-align: left;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.time-slot:hover {
    border-color: rgba(71, 164, 75, 0.3);
}

.time-slot.booked {
    background: var(--slate-50);
    opacity: 0.5;
    cursor: not-allowed;
}

.time-slot.active {
    background: rgba(71, 164, 75, 0.1);
    border-color: var(--dsn-green);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.time-text {
    font-size: 14px;
    font-weight: 900;
    color: var(--slate-700);
}

.time-slot.active .time-text {
    color: var(--dsn-green);
}

.time-price {
    font-size: 10px;
    font-weight: 900;
    color: var(--dsn-blue);
}

/* Services */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    border-radius: 0.75rem;
    border: 1px solid var(--slate-100);
    background: rgba(248, 250, 252, 0.5);
}

.service-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.service-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--slate-500);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--slate-100);
}

.service-name {
    font-size: 12px;
    font-weight: 900;
    color: var(--dsn-dark);
}

.service-price {
    font-size: 10px;
    font-weight: 700;
    color: var(--slate-400);
}

.service-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--white);
    padding: 0.25rem 0.5rem;
    border-radius: 0.5rem;
    border: 1px solid var(--slate-200);
}

.service-btn {
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.375rem;
    color: var(--slate-400);
    transition: all 0.3s ease;
}

.service-btn:hover:not(:disabled) {
    background: var(--slate-100);
}

.service-btn.plus:hover {
    background: var(--dsn-blue);
    color: var(--white);
}

.service-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.service-qty {
    font-size: 12px;
    font-weight: 900;
    color: var(--dsn-dark);
    width: 1rem;
    text-align: center;
}

/* Footer */
.booking-modal-footer {
    padding: 1.25rem;
    border-top: 1px solid var(--slate-100);
    background: var(--white);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
    z-index: 20;
    border-radius: 0 0 1rem 1rem;
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.total-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--slate-400);
}

.total-amount {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--dsn-dark);
}

.breakdown-text {
    font-size: 10px;
    font-weight: 700;
    color: var(--slate-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: right;
}

.breakdown-text span {
    color: var(--dsn-blue);
}

.checkout-btn {
    width: 100%;
    padding: 1rem;
    background: var(--dsn-blue);
    color: var(--white);
    border-radius: 0.75rem;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.checkout-btn:hover:not(:disabled) {
    background: var(--dsn-dark);
}

.checkout-btn:disabled {
    background: var(--slate-100);
    color: var(--slate-400);
    cursor: not-allowed;
    box-shadow: none;
}