- choosing a selection results in a full page refresh
document.addEventListener("DOMContentLoaded", function () {
var soldOutBtn = document.querySelector(".btn--sold-out");
var priceContainer = document.querySelector(".product-single__price-container");
if (soldOutBtn && priceContainer) {
priceContainer.style.display = "none";
}
});