document.addEventListener("DOMContentLoaded", function () {
const grid = document.querySelector('.products');
if (grid && !document.querySelector('.shop-heading-fix')) {
const h2 = document.createElement('h2');
h2.textContent = 'Products';
h2.className = 'shop-heading-fix';
grid.parentNode.insertBefore(h2, grid);
}
});




































