#exit-intent-popup.eip-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    box-sizing: border-box;
}

#exit-intent-popup .eip-popup-inner {
    background: #fff;
    padding: 0rem;
    border-radius: 10px;
    max-width: 600px;
    width: 90%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.3s ease-out;
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes fadeInUp {
    from {opacity: 0; transform: translateY(20px);}
    to {opacity: 1; transform: translateY(0);}
}

#exit-intent-popup .close-exit-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #666;
    cursor: pointer;
}

@media (max-width: 480px) {
    #exit-intent-popup.eip-popup {
        align-items: flex-start;
    }

    #exit-intent-popup .eip-popup-inner {
        margin-top: 100px;
        padding: 1rem;
        width: 95%;
        max-height: calc(100vh - 120px);
    }

    #exit-intent-popup .close-exit-popup {
        font-size: 1.5rem;
    }
}
