/* 01. Общие стили всплывающего баннера
 * Перенесено из index.php. Позиция подключения сохранена.
 */

/* Основные стили баннера */
.popup-overlay {
    display: none; /* По умолчанию скрыт */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.popup-box {
    position: relative;
    max-width: 800px;
    width: 90%;
    background: transparent;
    animation: popupAppear 0.5s ease-out;
}

@keyframes popupAppear {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.popup-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.popup-close {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 45px;
    height: 45px;
    background: #ff4444;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 26px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.popup-close:hover {
    background: #ff0000;
    transform: scale(1.1) rotate(90deg);
}

/* Для мобильных */
@media (max-width: 768px) {
    .popup-box {
        width: 95%;
        max-width: 500px;
    }
    
    .popup-close {
        width: 40px;
        height: 40px;
        font-size: 22px;
        top: -15px;
        right: -15px;
    }
}

/* Блокировка скролла при открытом баннере */
body.popup-open {
    overflow: hidden;
    height: 100vh;
}
