📁 last Posts

Healthy Snacks

Healthy Snacks Quick 5-Minute Healthy Snacks for a Flat Belly
Mid‑afternoon hunger hits, and you reach for a bag of chips or a granola bar. But those processed snacks often cause bloating and derail you...
Healthy Snacks 7 Muscle Building Snack Ideas With 20g+ of Protein
You're putting in the work at the gym, but are you fueling your muscles properly between meals? Snacking often gets a bad reputation, bu...
Healthy Snacks Crunchy & Salty Low Calorie Snacks for Late Night
It's 10 p.m. You're on the couch. The craving hits—that undeniable need for something crunchy, something salty. Your hand almost aut...
// 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()); }); } });