document.addEventListener("DOMContentLoaded", function() {
let addToCartButtons = document.querySelectorAll("form[action*='/cart/add'] button");
addToCartButtons.forEach(button => {
button.addEventListener("click", function() {
sessionStorage.setItem("lastVisitedPageBeforeCart", window.location.href);
});
});
});