NEW product ranges in store! FREE DELIVERY for orders above $30*

// Wait for Ecwid to fully load Ecwid.OnAPILoaded.add(function() { // Listen for page changes in Ecwid Ecwid.OnPageLoaded.add(function(page) { // Check if we're on the Superfood Bowls category page if (page.type === 'CATEGORY' && page.categoryId === 141150283) { // Small delay to ensure DOM is ready setTimeout(function() { // Remove any existing calculator to prevent duplicates var existingCalc = document.getElementById('fruicey-calculator'); if (existingCalc) { existingCalc.remove(); } // Create the calculator container var calcDiv = document.createElement('div'); calcDiv.id = 'fruicey-calculator'; calcDiv.style.cssText = 'margin-top: 60px; padding: 40px 20px; border-top: 2px solid #e5e7eb;'; calcDiv.innerHTML = ''; // Find the right place to insert it var targetElement = document.querySelector('.ec-store__content-wrapper') || document.querySelector('.ec-wrapper') || document.querySelector('main') || document.body; targetElement.appendChild(calcDiv); }, 300); } }); });