/* Tawhid Voyages — promotional Omra popup */
.tv-offer-popup {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(9, 12, 20, 0.76);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.tv-offer-popup.is-visible {
    opacity: 1;
    visibility: visible;
}

.tv-offer-popup__dialog {
    position: relative;
    display: grid;
    grid-template-columns: minmax(260px, 0.92fr) minmax(340px, 1.08fr);
    width: min(920px, 100%);
    max-height: calc(100vh - 48px);
    overflow: hidden;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
    transform: translateY(18px) scale(0.98);
    transition: transform 0.28s ease;
}

.tv-offer-popup.is-visible .tv-offer-popup__dialog {
    transform: translateY(0) scale(1);
}

.tv-offer-popup__visual {
    position: relative;
    min-height: 510px;
    background: #17120f url('../images/bg/bg101.jpg') center center / cover no-repeat;
}

.tv-offer-popup__visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 20%, rgba(0, 0, 0, 0.58) 100%);
}

.tv-offer-popup__visual-label {
    position: absolute;
    z-index: 1;
    left: 28px;
    right: 28px;
    bottom: 28px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.45;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

.tv-offer-popup__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px 48px 44px;
}

.tv-offer-popup__badge {
    align-self: flex-start;
    margin-bottom: 14px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(225, 11, 29, 0.1);
    color: #e10b1d;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tv-offer-popup__title {
    margin: 0;
    color: #161923;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -0.035em;
}

.tv-offer-popup__price {
    display: inline-block;
    color: #e10b1d;
    white-space: nowrap;
}

.tv-offer-popup__lead {
    margin: 17px 0 0;
    color: #343844;
    font-size: 19px;
    font-weight: 700;
}

.tv-offer-popup__features {
    display: grid;
    gap: 10px;
    margin: 24px 0 28px;
    padding: 0;
    list-style: none;
}

.tv-offer-popup__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #515561;
    font-size: 15px;
    line-height: 1.4;
}

.tv-offer-popup__features i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    border-radius: 50%;
    background: rgba(225, 11, 29, 0.1);
    color: #e10b1d;
    font-size: 11px;
}

.tv-offer-popup__actions {
    display: grid;
    grid-template-columns: 0.86fr 1.14fr;
    gap: 12px;
}

.tv-offer-popup__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 12px 18px;
    border: 1px solid #e10b1d;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 800;
    text-align: center;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.tv-offer-popup__button:hover,
.tv-offer-popup__button:focus {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(225, 11, 29, 0.18);
}

.tv-offer-popup__button--call {
    background: #fff;
    color: #e10b1d;
}

.tv-offer-popup__button--more {
    background: #e10b1d;
    color: #fff;
}

.tv-offer-popup__button--more:hover,
.tv-offer-popup__button--more:focus {
    color: #fff;
}

.tv-offer-popup__button i {
    margin-right: 8px;
}

.tv-offer-popup__note {
    margin: 14px 0 0;
    color: #8a8d96;
    font-size: 11px;
    line-height: 1.4;
}

.tv-offer-popup__close {
    position: absolute;
    z-index: 3;
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: #171923;
    font-size: 25px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.16);
}

body.tv-popup-open {
    overflow: hidden;
}

@media (max-width: 767px) {
    .tv-offer-popup {
        align-items: flex-end;
        padding: 12px;
    }

    .tv-offer-popup__dialog {
        grid-template-columns: 1fr;
        width: 100%;
        max-height: calc(100vh - 24px);
        overflow-y: auto;
        border-radius: 20px;
    }

    .tv-offer-popup__visual {
        min-height: 190px;
        background-position: center 42%;
    }

    .tv-offer-popup__visual-label {
        left: 20px;
        right: 64px;
        bottom: 18px;
        font-size: 13px;
    }

    .tv-offer-popup__content {
        padding: 27px 22px 24px;
    }

    .tv-offer-popup__badge {
        margin-bottom: 10px;
    }

    .tv-offer-popup__title {
        font-size: 34px;
    }

    .tv-offer-popup__lead {
        margin-top: 12px;
        font-size: 17px;
    }

    .tv-offer-popup__features {
        gap: 8px;
        margin: 18px 0 21px;
    }

    .tv-offer-popup__actions {
        grid-template-columns: 1fr;
    }

    .tv-offer-popup__button {
        min-height: 48px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .tv-offer-popup,
    .tv-offer-popup__dialog,
    .tv-offer-popup__button {
        transition: none;
    }
}
