📁 last Posts

Diet

Diet The Ultimate 7-Day Vegan Diet Plan for Beginners
You're thinking about going vegan. Maybe it's for your health, the planet, or the animals. But standing in the grocery aisle, starin...
Diet Easy Mediterranean Diet Recipes for Weight Loss
You want to lose weight, but you don't want to eat bland chicken and broccoli for the rest of your life. The good news? You don't ha...
Diet Mediterranean Diet Meal Plan for Beginners - A Simple Start
You've heard the name. Maybe you know it involves olive oil and is supposedly good for you. But the idea of overhauling your entire kitc...
Diet The Laziest 7-Day Vegetarian Diet Meal Plan That Works
You want to eat more plants. You know it's better for your health, better for the planet, and honestly, you've been meaning to try i...
Diet Easy 7-Day Diet Meal Plan Low Budget - Cheap and Healthy
Eating healthy on a tight budget often feels like an impossible puzzle. Between rising grocery prices and the convenience of cheap fast food...
Diet Top 7 Diet Salad Recipes That Actually Taste Amazing
You know the stereotype: diet salads are sad bowls of iceberg lettuce with a pale tomato wedge and a drizzle of fat-free dressing that taste...
Diet Healthy Mediterranean Diet Breakfast Ideas You Can Prep Fast
Mornings are chaotic. You're rushing to get out the door, and the idea of a healthy, sit-down breakfast feels like a luxury you simply d...
// 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()); }); } });