📁 last Posts

Healthy Snacks

Healthy Snacks No-Prep Healthy Snacks for Busy Fitness Lifestyles
Meal prep culture assumes everyone has a Sunday afternoon free for chopping, portioning, and container-stacking. Plenty of genuinely busy pe...
Healthy Snacks Pre-Workout Snack Prep Ideas for Better Training
The pre-workout snack gets less attention than post-workout nutrition, but eating the wrong thing beforehand — or nothing at all — shows up ...
Healthy Snacks Healthy Ice Cream Recipes for Guilt-Free Summer Treats
Ice cream sits at the top of nearly every summer craving list, and it's also one of the easiest desserts to genuinely rebuild without lo...
// Blog CTA Close Functionality document.addEventListener('DOMContentLoaded', function() { // Check if CTA box exists on the page const ctaBox = document.querySelector('.blog-cta-box'); const ctaCloseBtn = document.querySelector('.cta-close'); if (ctaCloseBtn && ctaBox) { ctaCloseBtn.addEventListener('click', function() { ctaBox.style.opacity = '0'; ctaBox.style.transform = 'translateY(-20px)'; setTimeout(function() { ctaBox.style.display = 'none'; }, 300); }); } // Optional: Local storage to show CTA less frequently const ctaDismissed = localStorage.getItem('blogCtaDismissed'); if (ctaDismissed && ctaBox) { // If dismissed in last 7 days, don't show const dismissTime = parseInt(ctaDismissed); const oneWeek = 7 * 24 * 60 * 60 * 1000; if (Date.now() - dismissTime < oneWeek) { ctaBox.style.display = 'none'; } } // Update local storage when closed if (ctaCloseBtn) { ctaCloseBtn.addEventListener('click', function() { localStorage.setItem('blogCtaDismissed', Date.now().toString()); }); } });