// JavaScript for Age Verification Pop-up
document.addEventListener("DOMContentLoaded", function () {
const popup = document.getElementById("age-verification-popup");
popup.style.display = "inline";
//const verifyButton = document.getElementById("verify-button");
//verifyButton.addEventListener("click", function () {
// Add code here to handle verification logic
// For example, you can set a cookie to remember the user's age verification
// popup.style.display = "none";
//});
// Add code here to check if the user has already verified their age (e.g., using cookies)
// If verified, hide the pop-up initially
// Example:
// if (verified) {
// popup.style.display = "none";
// }
});