body.elit-popup-open {
    overflow: hidden;
}

.elit-booking-popup {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.elit-booking-popup.is-visible {
    visibility: visible;
    opacity: 1;
}

.elit-booking-popup__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(4px);
}

.elit-booking-popup__box {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 520px;
    padding: 38px 32px 32px;
    background: #ffffff;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.32);
    transform: translateY(20px) scale(0.96);
    transition: transform 0.25s ease;
}

.elit-booking-popup.is-visible .elit-booking-popup__box {
    transform: translateY(0) scale(1);
}

.elit-booking-popup__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 78px;
    height: 78px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: #eaf8ef;
    color: #239653;
    font-size: 44px;
    font-weight: 700;
    line-height: 1;
}

.elit-booking-popup__box h2 {
    margin: 0 0 15px;
    color: #151515;
    font-size: 28px;
    line-height: 1.25;
}

.elit-booking-popup__message {
    margin: 0 0 10px;
    color: #333333;
    font-size: 17px;
    line-height: 1.6;
}

.elit-booking-popup__description {
    margin: 0 0 25px;
    color: #696969;
    font-size: 15px;
    line-height: 1.6;
}

.elit-booking-popup__close {
    min-width: 180px;
    padding: 13px 24px;
    border: 0;
    border-radius: 8px;
    background: #111111;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.elit-booking-popup__close:hover {
    background: #d99a00;
    transform: translateY(-1px);
}

.elit-booking-error {
    display: none;
    margin-bottom: 20px;
    padding: 14px 16px;
    border-left: 4px solid #c62828;
    background: #fff0f0;
    color: #a11616;
    font-size: 15px;
    line-height: 1.5;
}

@media (max-width: 600px) {
    .elit-booking-popup__box {
        padding: 32px 20px 25px;
        border-radius: 14px;
    }

    .elit-booking-popup__box h2 {
        font-size: 23px;
    }

    .elit-booking-popup__icon {
        width: 68px;
        height: 68px;
        font-size: 38px;
    }
}