/* ===============================
   MEB AKUB POPUP
   =============================== */

#mebakubPopupOverlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    z-index: 99999; /* HEADER + SPLIDE + MENU üstü */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Popup kutusu */
#mebakubPopupBox {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0,0,0,0.6);
}

/* Resim & video */
#mebakubPopupBox img,
#mebakubPopupBox video {
    width: 100%;
    height: auto;
    max-height: 80vh;
    display: block;
    object-fit: contain;
    background: #000;
}

/* Kapat butonu */
#mebakubPopupClose {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #D91E18;
    color: #fff;
    font-size: 26px;
    font-weight: bold;
    cursor: pointer;
    line-height: 38px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

#mebakubPopupClose:hover {
    background: #b51712;
}

/* Mobil düzeltme */
@media (max-width: 600px) {
    #mebakubPopupBox {
        max-width: 95%;
        max-height: 85%;
    }
}
