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

.mp-popup-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.mp-popup-content {
    background: #fff;
    padding: 3rem;
    border-radius: 8px;
    max-width: 500px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.mp-popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
}

/* Chat Widget */
.mp-chat-widget-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9990;
}

.mp-chat-toggle {
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-size: 1.5rem;
    transition: transform 0.2s ease;
}

.mp-chat-toggle:hover {
    transform: scale(1.1);
}

.mp-chat-box {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 300px;
    height: 400px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.mp-chat-box.active {
    display: flex;
}

.mp-chat-header {
    background: var(--color-primary);
    color: #fff;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mp-chat-body {
    flex: 1;
    padding: 1rem;
    background: #f7fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
}

/* Promo Top Bar */
.mp-promo-bar {
    background: var(--color-primary-dark);
    color: #fff;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.mp-promo-timer {
    font-family: monospace;
    font-weight: 700;
    color: var(--color-cta);
    margin-left: 0.5rem;
}