/* Cart Notification Styles */
.cart-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 16px 24px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    font-size: 14px;
    font-weight: 500;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    z-index: 10000;
    max-width: 350px;
}

.cart-notification.show {
    transform: translateX(0);
}

.cart-notification--success {
    border-left: 4px solid #28a745;
    color: #155724;
}

.cart-notification--error {
    border-left: 4px solid #dc3545;
    color: #721c24;
}

.cart-notification--info {
    border-left: 4px solid #17a2b8;
    color: #0c5460;
}
