This product is not intended to diagnose, treat, cure or prevent any disease or cancer. The views and nutritional advice expressed by fruicey are not intended to be a substitute for conventional medical service.
// 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);
}
});
});