/* Ana sayfa duyuru pop-up'ı */

.home-popup {
    align-items: center;
    background: rgba(0, 0, 0, .72);
    display: flex;
    inset: 0;
    justify-content: center;
    padding: 1rem;
    position: fixed;
    z-index: 1080;
}

.home-popup[hidden] {
    display: none;
}

.home-popup__box {
    animation: home-popup-in .25s ease-out;
    max-height: 90vh;
    max-width: min(560px, 92vw);
    position: relative;
}

.home-popup__box img {
    display: block;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
    width: 100%;
}

.home-popup__close {
    align-items: center;
    background: #fff;
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .35);
    color: var(--kirmizi, #e40327);
    cursor: pointer;
    display: flex;
    font-size: 16px;
    height: 34px;
    justify-content: center;
    line-height: 1;
    position: absolute;
    right: 8px;
    top: 8px;
    width: 34px;
    z-index: 2;
}

.home-popup__close:hover {
    background: var(--kirmizi, #e40327);
    color: #fff;
}

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

@keyframes home-popup-in {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-popup__box {
        animation: none;
    }
}
