.turaika-popup {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.turaika-popup.is-visible {
    display: flex;
}

.turaika-popup__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.turaika-popup__modal {
    position: relative;
    width: min(94vw, 920px);
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
    animation: turaikaPopupShow 0.25s ease-out;
}

.turaika-popup__image {
    display: block;
    width: 100%;
    height: auto;
}

.turaika-popup__close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 10;

    width: 38px;
    height: 38px;

    border: 0;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.95);
    color: #111827;

    font-size: 28px;
    line-height: 38px;
    text-align: center;

    cursor: pointer;
}

.turaika-popup__close:hover {
    background: #ffffff;
}

.turaika-popup__button {
    position: absolute;
    right: 40px;
    bottom: 85px;
    z-index: 5;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 220px;
    height: 54px;

    padding: 0 28px;

    border-radius: 999px;

    background: #ffe057;

    color: #111827 !important;
    font-size: 20px;
    font-weight: 800;
    text-decoration: none;

    box-shadow: 0 10px 26px rgba(255, 179, 0, 0.45);
}

.turaika-popup__button:hover {
    opacity: 1;
}

.turaika-popup__button:active {
    transform: scale(0.98);
}

@keyframes turaikaPopupShow {
    from {
        opacity: 0;
        transform: scale(0.96);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Планшеты */
@media (max-width: 768px) {
    .turaika-popup {
        padding: 10px;
    }

    .turaika-popup__modal {
        width: 96vw;
        max-height: 90vh;
    }

    .turaika-popup__image {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .turaika-popup__button {
        right: 20px;
        bottom: 60px;

        min-width: 190px;
        height: 48px;

        font-size: 17px;
        padding: 0 20px;
    }

    .turaika-popup__close {
        top: 10px;
        right: 10px;
    }
}

/* Телефоны */
@media (max-width: 480px) {
    .turaika-popup__modal {
        width: 98vw;
        border-radius: 16px;
    }

    .turaika-popup__image {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .turaika-popup__button {
        right: 12px;
        bottom: 35px;

        min-width: 165px;
        height: 42px;

        font-size: 14px;
        padding: 0 16px;
    }

    .turaika-popup__close {
        width: 34px;
        height: 34px;
        line-height: 34px;
        font-size: 24px;
    }
}