#acc-exit-intent-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
}

#acc-exit-intent-modal {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    max-width: 400px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

#acc-exit-intent-modal h2 {
    margin-top: 0;
    color: #333;
}

#acc-exit-intent-modal p {
    color: #666;
    margin-bottom: 20px;
}

#acc-claim-coupon-form input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#acc-claim-coupon-form button {
    width: 100%;
    padding: 10px;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#acc-claim-coupon-form button:hover {
    background: #005177;
}

.acc-close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #aaa;
}

.acc-close-modal:hover {
    color: #333;
}
