/* popup.css – Exit intent popup */
#exitPopupOverlay{display:none;position:fixed;inset:0;background:rgba(0,0,0,0.85);display:flex;align-items:center;justify-content:center;z-index:2147483647;pointer-events:none;flex-direction:column;padding:20px}
#exitPopupOverlay[style*="flex"]{pointer-events:auto}
html,body{touch-action:pan-y pinch-zoom !important}
#exitPopupOverlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999999 !important;
}

#exitPopupBox {
    background: #ffffff;
    width: 90%;
    max-width: 480px;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 0 40px rgba(0,0,0,0.4);

    /* 🔥 A KÖZÉPRE POZICIONÁLÁST EZ A 3 SOR OLDJA MEG 🔥 */
    position: relative;
    top: 0;
    transform: none;

    animation: popupFade 0.3s ease;
}

#exitPopupClose {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #c9a25a; /* arany */
}

@keyframes popupFade {
    from { transform: scale(0.85); opacity: 0; }
    to   { transform: scale(1);   opacity: 1; }
}
