Product Information Craving a seasonal boost on the go? Dive into the fall vibes with HAPI Pumpkin Protein! It’s your muscle-building secret weapon, blending whey, casein, and egg white – all in a not-so-basic pumpkin flavor. Shake it or bake it, every scoop is like a cozy autumn hug for your muscles. It’s a final sale, but who wouldn’t fall for a protein this gourd-geous? Fuel your hustle, embrace the gains, and let every sip be a taste of autumn bliss! Benefits 24g of protein per serving Ingredients HAPI Protein Blend (Pure Undenatured & Nonther- mally- Processed Milk Protein Isolate, Cross-Flow Nanofiltered Whey Protein Isolate, Ultrafiltered Whey Protein Concentrate, Egg Albumen), Inulin, Natural & Artificial Flavors, Spices, Xanthan Gum, Cellulose Gum, Guar Gum, Protease Enzymes, Acesulfame Potassium, Sucralose, Soy Lecithi How to Use Mix 1 scoop (34g) HAPI Protein in 8oz of cold water or another beverage (milk, almond milk, etc). Shake or blend for about 20 seconds until creamy. May also be used to cook with! .accordion { border-top: 1px solid #ccc; } .accordion-item { border-bottom: 1px solid #ccc; } .accordion-header { padding: 15px; cursor: pointer; font-size: 18px; display: flex; justify-content: space-between; align-items: center; color: #1a237e; font-weight: bold; } .accordion-header:hover { background-color: #f9f9f9; } .accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; padding: 0 15px; font-size: 16px; color: #333; } .accordion-content.open { padding: 15px; } .accordion-header::after { content: "+"; font-weight: bold; transition: transform 0.3s; } .accordion-header.active::after { content: "-"; } .width-set img { width: 400px; } .main-header_img img { width: 80%; } .second-mega a { text-decoration: none; color: #000000; } li.all-collection a { text-decoration: none; } const headers = document.querySelectorAll('.accordion-header'); const contents = document.querySelectorAll('.accordion-content'); headers.forEach((header, index) => { header.addEventListener('click', () => { const content = header.nextElementSibling; const isOpen = content.style.maxHeight; // Close all contents.forEach(c => { c.style.maxHeight = null; c.classList.remove('open'); }); headers.forEach(h => { h.classList.remove('active'); }); // Toggle clicked one if (!isOpen) { content.style.maxHeight = content.scrollHeight + 'px'; content.classList.add('open'); header.classList.add('active'); } }); }); // Open ONLY the first section on page load window.addEventListener('DOMContentLoaded', () => { const firstHeader = document.querySelector('.accordion .accordion-item:first-child .accordion-header'); const firstContent = document.querySelector('.accordion .accordion-item:first-child .accordion-content'); if (firstHeader && firstContent) { firstHeader.classList.add('active'); firstContent.classList.add('open'); firstContent.style.maxHeight = firstContent.scrollHeight + 'px'; } });