.booking-popup-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.booking-popup-modal.active {
    display: flex;
}

.booking-popup-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    backdrop-filter: blur(4px);
}

.booking-popup-modal__window {
    position: relative;
    max-width: 420px;
    width: 100%;
    margin: 0 16px;
    padding: 40px 32px 32px;
    background: var(--Bg-Radial, radial-gradient(71.15% 71.15% at 50% 50%, #01184C 13.46%, #000417 100%));
    border: 1px solid;
    border-image: var(--Pure-gold, linear-gradient(90deg, #968368 0%, #CCB78C 52%, #968368 100%)) 1;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
    text-align: center;
}

.booking-popup-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 8px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    line-height: 0;
}

.booking-popup-modal__text {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: #DEE8F8;
    margin: 0 0 24px;
}

.booking-popup-modal__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    width: 100%;
    background: var(--Pure-gold, linear-gradient(90deg, #968368 0%, #CCB78C 52%, #968368 100%));
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: opacity .2s ease;
}

.booking-popup-modal__btn:hover {
    opacity: .9;
    color: #fff;
}

@media screen and (max-width: 480px) {
    .booking-popup-modal__window {
        padding: 32px 20px 24px;
    }

    .booking-popup-modal__text {
        font-size: 16px;
    }
}
