Trusted by Families Since 2017 • Naturally Ripened Organic Fruits, Organic Vegetables and more groceries • No-Questions-Asked Refunds

document.addEventListener("DOMContentLoaded", function () { function addFloatingMenu() { if (document.querySelector(".floating-menu")) return; var menu = document.createElement("div"); menu.innerHTML = `
`; document.body.appendChild(menu); var style = document.createElement("style"); style.innerHTML = ` @media (min-width: 768px) { .floating-menu { display: none; } } @media (max-width: 767px) { .floating-menu { position: fixed; bottom: 15px; right: 15px; z-index: 9999; } .floating-menu button { background: #2e7d32; color: white; border: none; padding: 14px 18px; border-radius: 30px; font-weight: 600; box-shadow: 0 4px 12px rgba(0,0,0,0.2); } .menu-items { display: none; flex-direction: column; margin-bottom: 10px; } .menu-items a { display: block; background: white; padding: 12px; margin-top: 6px; border-radius: 10px; text-decoration: none; color: #333; font-size: 14px; box-shadow: 0 2px 8px rgba(0,0,0,0.15); } } `; document.head.appendChild(style); document.addEventListener("click", function (e) { if (e.target && e.target.id === "toggleBtn") { var menuItems = document.getElementById("menuItems"); menuItems.style.display = menuItems.style.display === "flex" ? "none" : "flex"; } }); } // Run after delay (important for Ecwid) setTimeout(addFloatingMenu, 1500); });