document.addEventListener("DOMContentLoaded", function() {
if (!localStorage.getItem('ageVerified')) {
let ageConfirmed = confirm("By entering Vape Crazy, you confirm you are 18 years or older. Click OK if yes, Cancel if no.");
if (ageConfirmed) {
localStorage.setItem('ageVerified', 'true');
} else {
window.location.href = "https://www.google.com";
}
}
});