(function () { function acceptCookies() { try { // Set consent cookie manually document.cookie = "cookieconsent=true; path=/; max-age=31536000"; // Remove banner visually document.querySelectorAll('[class*="cookie"], [id*="cookie"]').forEach(el => el.remove()); } catch (e) {} } // Run multiple times (because Food Amigos loads async) const interval = setInterval(acceptCookies, 500); window.addEventListener("load", acceptCookies); setTimeout(() => clearInterval(interval), 5000); })();