Skip to content

This content is protected - please log in with your customer account to continue.

document.addEventListener("DOMContentLoaded", function() { fetch('/cart.js') .then(response => response.json()) .then(data => { let cartCountElement = document.querySelector('.cart-count'); // Adjust based on your theme if (cartCountElement) { cartCountElement.textContent = data.item_count; } }); });