My website has a structured HTML layout with product containers and individual products. I also have a JavaScript function that can remove any product from the page.
<div class="products-container">
{foreach from=$cart.products item=product}
<div class="product" data-id-product="{$product.id_product}" data-id-product-attribute="{$product.id_product_attribute}">
...
</div>
</div>
I am looking for a way to enhance the user experience by fading out the deleted product div as it moves to the right, while animating the other products to fill in the empty space.