/* Exit Intent Popup Styles */
.exit-intent-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.exit-intent-modal {
    background: white;
    border-radius: 12px;
    max-width: 950px;
    width: 95%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.exit-intent-header {
    background: var(--pico-primary-background);
    color: white;
    padding: 25px;
    text-align: center;
    position: relative;
}

.exit-intent-header h2 {
    margin: 0;
    font-size: 32px;
    font-weight: 800;
    color: white;
}

.exit-intent-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: transparent;
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
    opacity: 0.8;
}

.exit-intent-close:hover {
    opacity: 1;
}

.exit-intent-body {
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.exit-intent-illustration {
    flex: 1;
    max-width: 250px;
}

.exit-intent-illustration img {
    width: 100%;
    height: auto;
}

.exit-intent-info {
    flex: 1.2;
    text-align: left;
}

.exit-intent-info .save-text {
    font-size: 3rem;
    font-weight: 900;
    color: #000;
    line-height: 1;
    margin-bottom: 15px;
}

.exit-intent-info .sub-text {
    font-size: 22px;
    color: #1f2937;
    margin-bottom: 30px;
    line-height: 1.4;
}

.exit-intent-info .sub-text strong {
    font-weight: 900;
}

.exit-intent-btn {
    background: var(--loaris-pink);
    color: white !important;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 800;
    cursor: pointer;
    font-size: 20px;
    text-decoration: none;
    display: inline-block;
}

.exit-intent-btn:hover {
    background: var(--loaris-pink-hover);
    box-shadow: 0 4px 12px rgba(255, 192, 134, 0.3);
}

.exit-intent-footer {
    padding: 25px;
    text-align: center;
    border-top: 1px solid #f3f4f6;
    font-size: 18px;
    color: #4b5563;
}

@media (max-width: 600px) {
    .exit-intent-body {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    .exit-intent-info {
        text-align: center;
    }
    .exit-intent-info .save-text {
        font-size: 48px;
    }
    .exit-intent-illustration {
        max-width: 180px;
    }
}
