Skip to content
Loom Gardens
Opening soon
E-mail
Notify me
Enter using password
Store access
Enter password below to access the store
Password
Enter the store
Follow us
This shop is powered by
Store owner?
Login
document.addEventListener('DOMContentLoaded', function () { const faqItems = document.querySelectorAll('.faq-item'); faqItems.forEach((item) => { const question = item.querySelector('.faq-question'); question.addEventListener('click', () => { // Toggle 'open' class for the clicked item item.classList.toggle('open'); // Close other FAQ items (accordion effect) faqItems.forEach((otherItem) => { if (otherItem !== item) { otherItem.classList.remove('open'); } }); }); }); });