/* Email Marketing Platform - Frontend Styles */

/* Cart abandonment notification */
.emp-cart-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    max-width: 300px;
    z-index: 999998;
    animation: empSlideIn 0.3s ease-out;
}

@keyframes empSlideIn {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.emp-cart-notification h4 {
    margin: 0 0 8px;
    font-size: 16px;
    color: #333;
}

.emp-cart-notification p {
    margin: 0 0 10px;
    font-size: 14px;
    color: #666;
}

.emp-cart-notification button {
    background: #007cba;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    margin-right: 8px;
}

.emp-cart-notification .emp-dismiss {
    background: #ccc;
    color: #666;
}