jQuery(function($){
function showToast(){
if($('.mlz-cart-toast').length) return;
$('body').append(`
Producto añadido al carrito
`);
setTimeout(function(){
$('.mlz-cart-toast').fadeOut(300, function(){
$(this).remove();
});
}, 3000);
}
// Detecta si viene de add-to-cart en la URL
if(window.location.href.indexOf('add-to-cart=') !== -1){
showToast();
}
});