/* Спливаюче вікно (popup) із зображенням */
.site-popup {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.site-popup.site-popup--closed {
    display: none;
}

/* Затемнений напівпрозорий фон */
.site-popup__overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.65);
    cursor: pointer;
}

.site-popup__box {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    animation: sitePopupIn 0.3s ease;
}

.site-popup__img {
    display: block;
    max-width: 100%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.site-popup__link {
    display: block;
}

/* Кнопка закриття (хрестик) */
.site-popup__close {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 38px;
    height: 38px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: #111;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
    transition: transform 0.2s ease, background 0.2s ease;
}

.site-popup__close:hover {
    background: #f0f0f0;
    transform: scale(1.08);
}

.site-popup__close svg {
    width: 18px;
    height: 18px;
}

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

@keyframes sitePopupIn {
    from {
        opacity: 0;
        transform: scale(0.92);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 575px) {
    .site-popup__close {
        top: 8px;
        right: 8px;
    }
}
