.reserve-popup-overlay {
    position: fixed !important;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.55);

    display: none;
    align-items: center;
    justify-content: center;

    z-index: 9999999;

    padding: 20px;
    box-sizing: border-box;
}

.reserve-popup-overlay.active {
    display: flex;
}

.reserve-popup-box {
    position: relative;

    width: 100%;
    max-width: 420px;

    background: #fff9f2;
    border-radius: 22px;

    padding: 40px 30px 30px;

    text-align: center;

    box-shadow: 0 20px 60px rgba(0,0,0,0.30);
}

.reserve-popup-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #333;
}

.reserve-popup-buttons {
    display: flex;
    gap: 12px;
}

.reserve-popup-location {
    flex: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 56px;

    border: 2px solid #333;
    border-radius: 50px;

    background: #fff;
    color: #333;

    text-decoration: none;

    transition: 0.2s ease;
}

.reserve-popup-location:hover {
    background: #333;
    color: #fff;
}

.reserve-popup-close {
    position: absolute;

    top: 12px;
    left: 16px;

    border: 0;
    background: none;

    font-size: 30px;
    line-height: 1;

    cursor: pointer;
}

@media (max-width: 600px) {

    .reserve-popup-box {
        max-width: 340px;
        padding: 36px 20px 24px;
    }

    .reserve-popup-buttons {
        flex-direction: column;
    }
}