Product Information Looking for a way to get more deep sleep and speed up your recovery? HAPI Shred Nighttime may be just what you need! This capsule helps you tone down cortisol levels, increase deep sleep, and wake up energized. With a witty tone of voice, HAPI Shred Nighttime is the perfect addition to your daily routine. This is a final sale item. Benefits Increase Deep Sleep. Speed Up Recovery. Wake Up Energized. Ingredients GABA, L-Carnitine Tartrate, Chamomile Powder, Passion Flower extract (4:1), 5-HTP, Valerian Root Extract, Grains of Paradise Seed Extract, Melatonin, Rice Flour, Hypromellose (HPMC) Capsule, Vegetable Magnesium Stearate, Silicon Dioxide. How to Use Take two (2) capsules 30 minutes before bed with or without food. .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'; } });