✦ Verified product
Fandango ØL
DKK 60.00
ANTAL DÅSER
KøkkenFandango
Verified independent store
→
#age-gate-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.85); display: none; justify-content: center; align-items: center; z-index: 99999; } #age-gate-box { backgrou
nd: #ffffff; padding: 30px 30px 25px; max-width: 480px; width: 90%; text-align: center; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.3); } #age-gate-box h2 { margin-bottom: 6px; font-size: 26px; font-weight: 600; } #age-gate-box p { margin-bottom: 20px; font-size: 15px; line-height: 1.5; } #age-gate-buttons { display: flex; justify-content: center; gap: 10px; } #age-gate-buttons button { flex: 1; padding: 12px 0; border: none; border-radius: 6px; cursor: pointer; font-size: 17px; font-weight: 500; color: #fff; } /* Din nye knapfarve */ #age-yes { background: #0033FF; } #age-no { background: #b3b3b3; } Velkommen Bekræft venligst, at du er 18 år eller ældre for at fortsætte. Enig Uenig document.addEventListener("DOMContentLoaded", function() { if (!localStorage.getItem("ageVerifiedAlcohol")) { var overlay = document.getElementById("age-gate-overlay"); if (overlay) overlay.style.display = "flex"; } document.getElementById("age-yes").addEventListener("click", function() { localStorage.setItem("ageVerifiedAlcohol", "true"); document.getElementById("age-gate-overlay").style.display = "none"; }); document.getElementById("age-no").addEventListener("click", function() { window.location.href = "https://google.com"; }); });