/**
 * Vime MiniCart 2 Notifications Styles
 */

.vime-minicart2-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 4px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    z-index: 99999;
    max-width: 300px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: none;
    animation: slideInRight 0.3s ease;
}

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

.vime-minicart2-notification-success {
    background: #4caf50;
}

.vime-minicart2-notification-error {
    background: #f44336;
}

.vime-minicart2-notification-warning {
    background: #ff9800;
}

.vime-minicart2-notification-info {
    background: #2196f3;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .vime-minicart2-notification {
        left: 20px;
        right: 20px;
        max-width: none;
    }
}