/* ACTIVE MENU */ document.addEventListener("DOMContentLoaded", function() { const links = document.querySelectorAll(".mbm-item"); const current = window.location.pathname;
links.forEach(link => { if(link.getAttribute("href") === current){ link.classList.add("active"); } }); });
/* LIVE CART COUNT */ function updateCartCount() { fetch('/?wc-ajax=get_refreshed_fragments') .then(res => res.json()) .then(data => { const temp = document.createElement('div'); temp.innerHTML = data.fragments['div.widget_shopping_cart_content'];
const count = temp.querySelectorAll('.woocommerce-mini-cart-item').length || 0; document.getElementById('cart-count').innerText = count; }); }
document.addEventListener("DOMContentLoaded", updateCartCount); document.body.addEventListener('added_to_cart', updateCartCount);