/* Abandoned Cart Recovery Popup Styles */
#fika-exit-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.exit-popup-content {
    background: #fff;
    width: 90%;
    max-width: 450px;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    animation: popupFadeIn 0.4s ease-out;
}

@keyframes popupFadeIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.exit-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #999;
}

.exit-popup-header {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 24px;
    color: #111;
    margin-bottom: 10px;
}

.exit-popup-sub {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.exit-popup-offer {
    background: #fff8f0;
    border: 2px dashed #ff6600;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.exit-popup-offer strong {
    font-size: 20px;
    color: #ff6600;
    display: block;
}

.exit-popup-form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: inherit;
}

.exit-popup-btn {
    width: 100%;
    padding: 15px;
    background: #ff6600;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.exit-popup-btn:hover {
    background: #e65c00;
}

.exit-popup-trust {
    font-size: 11px;
    color: #999;
    margin-top: 15px;
}
