/* Live Notifications System CSS - Extracted from original */
.notification-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    pointer-events: none;
}

.live-notification {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    border: 1px solid #e0e0e0;
    margin-bottom: 10px;
    min-width: 280px;
    max-width: 350px;
    opacity: 0;
    transform: translateX(-100%);
    transition: all 0.3s ease;
    pointer-events: auto;
    position: relative;
    overflow: hidden;
}

.live-notification::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #4CAF50, #45a049);
}

.live-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.live-notification.hide {
    opacity: 0;
    transform: translateX(-100%);
}

.notification-content {
    padding: 12px 16px;
}

.notification-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.notification-icons {
    display: flex;
    align-items: center;
    gap: 6px;
}

.notification-icon {
    font-size: 16px;
}

.notification-flag {
    font-size: 14px;
}

.notification-close {
    background: none;
    border: none;
    font-size: 18px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.notification-close:hover {
    background: #f0f0f0;
    color: #666;
}

.notification-body {
    margin-bottom: 6px;
}

.notification-message {
    font-size: 14px;
    color: #333;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 2px;
}

.notification-product {
    font-size: 13px;
    color: #4CAF50;
    font-weight: 600;
    line-height: 1.2;
}

.notification-time {
    font-size: 11px;
    color: #999;
    text-align: right;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .notification-container {
        bottom: 15px;
        left: 15px;
        right: 15px;
    }
    
    .live-notification {
        min-width: auto;
        max-width: none;
        width: 100%;
    }
    
    .notification-content {
        padding: 10px 12px;
    }
    
    .notification-message {
        font-size: 13px;
    }
    
    .notification-product {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .notification-container {
        bottom: 10px;
        left: 10px;
        right: 10px;
    }
    
    .live-notification {
        border-radius: 8px;
    }
    
    .notification-content {
        padding: 8px 10px;
    }
    
    .notification-message {
        font-size: 12px;
    }
    
    .notification-product {
        font-size: 11px;
    }
    
    .notification-icon {
        font-size: 14px;
    }
    
    .notification-flag {
        font-size: 12px;
    }
}

/* Animation for notification pulse */
@keyframes notificationPulse {
    0% { box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
    50% { box-shadow: 0 8px 32px rgba(76, 175, 80, 0.2); }
    100% { box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
}

.live-notification.show {
    animation: notificationPulse 0.6s ease-out;
}