Product Information Meet your new obsession: HAPI Samoa Cookie Protein. Inspired by the iconic cookie you know and love, this flavor brings together rich chocolate, toasted coconut, and a hint of caramel—without derailing your macros. With a balanced blend of whey, casein, and egg white protein, each scoop delivers 24g of sustained-release protein to support your goals while satisfying your sweet tooth. No amino spiking, no fluff—just clean, grass-fed dairy protein that works as hard as you do. Blend it into shakes, bake it into treats, or stir it into your yogurt. However you scoop it, it’s pure Samoa satisfaction. Indulgent. Functional. Benefits 24g of protein per serving Ingredients Milk Protein Isolate, Cross-Flow Nanofiltered Whey Protein Isolate, Whey Protein Concentrate, Inulin, Natural & Artificial Flavors, Cocoa Powder, Salt, Cellulose Gum, Xanthan Gum, Guar Gum, Sucralose, Egg White Protein, Protease Enzymes, Acesulfame Potassium 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! Allergen Statement CONTAINS: Milk, Egg, Soy .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'; } });