THE MIDWEIGHT FOREVER FLANNEL Ideal for year-round wear, our Midweight Forever Flannel is your new go-to. Featuring the same heritage style as the Men’s Forever Flannel, but developed with a lighter, more athletic flannel material that leaves plenty of room for pairing with hoodies and jackets. From streetwear looks to lumberjack layering, our new Midweight Forever Flannel is flexible enough to tackle any day with unmatched style and comfort .
const accordionItems = [ { label: 'PRODUCT DETAILS', content: ` Perfect layer on top of a tee or under a jacket Suited for multiple seasons of wear Flag Nor Fail Snap button closure Constructed from a blend cotton and elastane for maximum utility Resin buttons with carved logo Regular fit `, }, { label: 'SPECIFICATIONS', content: `Material: Body Flannel Fabric: 92% Cotton / 8% Elastane; Suede Fabric: 100% PolyesterGraphics: Left chest pocket and Flag Nor Fail trim; Screen Printed Monogram Patch on the upper backFit: Men's regular fit that's true to sizeSizes: Available in a range of sizes for all body types `, }, ] const createAccordion = () => { let accordionContainer = document.querySelector('section#accordion') let accordionWrapper = document.createElement('div') accordionWrapper.classList.add('accordion-wrapper') accordionContainer.appendChild(accordionWrapper) accordionItems.forEach((item) => { let accordionItem = document.createElement('div') accordionItem.classList.add('accordion-item') accordionItem.innerHTML = ` ${item.label}
` accordionWrapper.appendChild(accordionItem) }) } const toggleAccordion = (el) => { const accordionItem = el.parentElement accordionItem.classList.contains('is-open') ? accordionItem.classList.remove('is-open') : accordionItem.classList.add('is-open') } createAccordion()