// auto open the shopping cart when adding a product to the cart
jQuery(document).ready(function($){
$( document.body ).on( 'added_to_cart', function(){
$('.elementor-menu-cart__container').addClass('elementor-menu-cart--shown');
});
});