Product Information We get it. You're the busy bee who's always on the go, and you don't always have time for a sit-down meal. That's why we created HAPI Vanilla Bean Protein—it has all the benefits of protein without all the fuss. This delicious chocolate-flavored powder is made with whey, casein and egg white protein, so you can get all the muscle-building benefits without having to choke down a chalky shake. Plus, since it's perfect for baking, you can easily add it to your favorite snacks and desserts. This is a final sale item. Benefits 25g of protein per serving Ingredients HAPI Protein Blend (Pure Undenatured & Nonthermally- Processed Milk Protein Isolate, Cross-Flow Nanofiltered Whey Protein Isolate, Ultrafiltered Whey Protein Concentrate, Egg Albumen). Inulin, Natural & Artificial Flavors, Xanthan Gum, Cellulose Gum, Guar Gum, Protease Enzymes, Acesulfame Potassium, Sucralose, Soy Lecithin 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'; } });