document.addEventListener("DOMContentLoaded", function () {
// Disable the back button and force redirection to homepage
window.history.forward();
window.onpopstate = function () {
window.history.go(1); // Force forward
};
document.addEventListener('change', function (e) {
if (e.target && e.target.id === 'currency-selector') {
window.location.href = '/'; // Redirect to homepage after country selection
}
});
});