/* Príma Bővítmény – Felugró ablak (frontend) */

.prima-popup-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.65);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:99999;
    padding:20px;
    opacity:0;
    transition:opacity .25s ease;
}
.prima-popup-overlay.is-open{
    display:flex;
    opacity:1;
}

.prima-popup-box{
    position:relative;
    max-width:90vw;
    max-height:90vh;
    animation:primaPopupIn .35s ease;
}
.prima-popup-box img{
    display:block;
    max-width:100%;
    max-height:90vh;
    width:auto;
    height:auto;
    border-radius:6px;
    box-shadow:0 10px 40px rgba(0,0,0,.4);
}

.prima-popup-close{
    position:absolute;
    top:-14px;
    right:-14px;
    width:36px;
    height:36px;
    border-radius:50%;
    background:#fff;
    color:#000;
    border:none;
    font-size:22px;
    line-height:34px;
    text-align:center;
    cursor:pointer;
    box-shadow:0 2px 8px rgba(0,0,0,.3);
    font-weight:700;
    padding:0;
}
.prima-popup-close:hover{
    background:#f0f0f0;
}

.prima-popup-img-mobile{ display:none; }

/* Mobil: ha van külön mobil kép, azt mutatjuk */
@media (max-width:768px){
    .prima-popup-overlay.has-mobile .prima-popup-img-desktop{ display:none; }
    .prima-popup-overlay.has-mobile .prima-popup-img-mobile{ display:block; }
    .prima-popup-close{
        top:-10px;
        right:-10px;
        width:32px;
        height:32px;
        font-size:20px;
        line-height:30px;
    }
}

@keyframes primaPopupIn{
    from{ transform:scale(.9); opacity:0; }
    to  { transform:scale(1);  opacity:1; }
}

/* Háttér-görgetés letiltása amikor popup nyitva van */
body.prima-popup-open{
    overflow:hidden !important;
}
html.prima-popup-open{
    overflow:hidden !important;
}
