﻿.toast-producto-agregado {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #fff0f5; 
    color: #d81b60; 
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    font-size: 15px;
    font-family: 'Segoe UI', 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    animation: slideBounceIn 0.5s ease-out;
    border-left: 4px solid #f48fb1; 
    max-width: 300px;
    min-width: 240px;
    transition: all 0.3s ease-in-out;
}

    .toast-producto-agregado .toast-icon {
        margin-right: 10px;
        font-size: 18px;
        color: #d81b60;
        flex-shrink: 0;
    }

@keyframes slideBounceIn {
    0% {
        transform: translateX(100%) scale(0.95);
        opacity: 0;
    }

    60% {
        transform: translateX(-8%) scale(1.02);
        opacity: 1;
    }

    80% {
        transform: translateX(4%) scale(0.98);
    }

    100% {
        transform: translateX(0) scale(1);
    }
}
