/* Exit-Intent Modal Styles */

.exit-intent-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9998;
    display: none; /* Hidden by default */
    justify-content: center;
    align-items: center;
}

.exit-intent-modal {
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    position: relative;
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.exit-intent-modal .close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    line-height: 1;
}

.exit-intent-modal .close-modal:hover {
    color: #000;
}

.exit-intent-modal h3 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 15px;
    color: #333;
}

.exit-intent-modal p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #555;
}

.exit-intent-modal .form-group {
    margin-bottom: 15px;
}

.exit-intent-modal .form-control {
    /* Assuming .form-control styles are defined globally */
    /* Re-declaring for consistency if needed */
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

.exit-intent-modal .btn-primary {
    /* Assuming .btn-primary styles are defined globally */
    /* Re-declaring for consistency if needed */
    width: 100%;
    padding: 12px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    background-color: #007bff; /* Example color, should match site's primary button */
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
}

.exit-intent-modal .btn-primary:hover {
    background-color: #0056b3; /* Example hover color */
}
