Skip to content

AS-02U-R0

There are no products matching your search

View all products
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; } }); });