📦 We ship every Monday — order before Friday 10:00 AM to make dispatch!

document.addEventListener("DOMContentLoaded", function () { // Only show on mobile (max-width: 768px) if (window.innerWidth > 768) return; // Create footer nav container const navBar = document.createElement("div"); navBar.id = "zb-mobile-footer-nav"; navBar.style.position = "fixed"; navBar.style.bottom = "0"; navBar.style.left = "0"; navBar.style.width = "100%"; navBar.style.background = "linear-gradient(90deg, #EC008C, #9B3BB4)"; navBar.style.padding = "8px 0"; navBar.style.display = "flex"; navBar.style.justifyContent = "space-around"; navBar.style.alignItems = "center"; navBar.style.zIndex = "9999"; navBar.style.borderTopLeftRadius = "18px"; navBar.style.borderTopRightRadius = "18px"; // Button creator function createNavButton(icon, label, link) { const btn = document.createElement("div"); btn.style.flex = "1"; btn.style.textAlign = "center"; btn.style.color = "white"; btn.style.fontSize = "12px"; btn.innerHTML = `
${icon}
${label}
`; btn.addEventListener("click", function () { window.location.href = link; }); return btn; } // Create buttons with updated links + new layout const shopBtn = createNavButton("🛍️", "Shop", "https://zazzberry.co.za/products"); const cartBtn = createNavButton("🛒", "Cart", "https://zazzberry.co.za/products/cart"); const favBtn = createNavButton("❤️", "Favorites", "https://zazzberry.co.za/products/account/favorites"); const accountBtn = createNavButton("👤", "My Account", "https://zazzberry.co.za/products/account"); // Append buttons navBar.appendChild(shopBtn); navBar.appendChild(cartBtn); navBar.appendChild(favBtn); navBar.appendChild(accountBtn); // Add nav bar to body document.body.appendChild(navBar); });