/* Reservation Phone Confirmation Popup */
.reservation-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    padding: 20px;
}

.reservation-popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.reservation-popup {
    background: linear-gradient(135deg, #2b2b2b 0%, #1a1a1a 100%);
    border-radius: 20px;
    max-width: 460px;
    width: 100%;
    padding: 40px 35px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    transform: scale(0.9) translateY(20px);
    transition: all 0.4s ease;
    border: 2px solid rgba(232, 116, 59, 0.3);
    text-align: center;
}

.reservation-popup-overlay.show .reservation-popup {
    transform: scale(1) translateY(0);
    animation: reservationPopupSlideIn 0.5s ease;
}

.reservation-popup-title {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.reservation-popup-message {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.reservation-popup-phone {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.5px;
    background: rgba(232, 116, 59, 0.15);
    border: 1px solid rgba(232, 116, 59, 0.4);
    border-radius: 10px;
    padding: 12px 18px;
    margin: 0 0 30px 0;
}

.reservation-popup-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.reservation-popup-button {
    padding: 15px 25px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

.reservation-popup-button-accept {
    background: linear-gradient(135deg, #e8743b 0%, #d45e25 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(232, 116, 59, 0.4);
}

.reservation-popup-button-accept:hover {
    background: linear-gradient(135deg, #d45e25 0%, #c04f1d 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 116, 59, 0.6);
}

.reservation-popup-button-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.reservation-popup-button-secondary:hover {
    background: rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 1);
    border-color: rgba(255, 255, 255, 0.35);
}

@keyframes reservationPopupSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 576px) {
    .reservation-popup {
        padding: 30px 20px;
        max-width: calc(100% - 40px);
    }

    .reservation-popup-title {
        font-size: 19px;
    }

    .reservation-popup-message {
        font-size: 14px;
    }

    .reservation-popup-phone {
        font-size: 19px;
    }

    .reservation-popup-button {
        padding: 13px 20px;
        font-size: 15px;
    }
}
