
.cart-toast {
    position: fixed;
    top: 20px;
    right: -400px;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: white;
    padding: 16px 22px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    z-index: 9999;
    transition: all 0.5s ease;
    opacity: 0;
}

.cart-toast.show {
    right: 20px;
    opacity: 1;
}

.toast-icon {
    font-size: 20px;
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}
