Elixir
Collapsible Sections — Reference Style body{ font-family: Arial, sans-serif; margin:0; padding:0; background:#fff; color:#333; } .accordion{ border-top:1px solid #e5e5e5; } .accordion-item{ border-bottom:1px solid #e5e5e5; } .accordion-header{ display:flex; justify-content:space-between; align-items:center; padding:14px 16px; cursor:pointer; background:#fff; font-size:15px; font-weight:400; } .accordion-header:hover{ background:#fafafa; } .accordion-header svg{ width:18px; height:18px; transition:transform 0.2s ease; flex-shrink:0; } .accordion-item.open .accordion-header svg{ transform:rotate(90deg); } .accordion-content{ max-height:0; overflow:hidden; transition:max-height 0.3s ease; padding:0 16px; font-size:14px; color:#555; } .accordion-item.open .accordion-content{ padding:10px 16px 16px; max-height:500px; /* enough to fit content */ } ul{margin:0; padding-left:18px} Fragrance Family Oriental Woody -- Description A fragrance of sophistication and allure, Elixir is crafted for those who appreciate depth, complexity, and elegance in every detail. It opens with a vibrant burst of spice and citrus, unfolds into a rich aromatic heart, and settles into a warm, indulgent base that lingers with timeless refinement. Key Highlights Eau de Parfum concentration for long-lasting wear A perfect balance of freshness, spice, and warmth Suited for evening wear, formal occasions, and signature style Crafted for the discerning individual who values refinement and presence Fragrance Story Elixir embodies the art of transformation — the spark of energy, the depth of character, and the warmth of legacy. Each note is meticulously composed to create a scent that is both modern and timeless, making it the perfect expression of elegance and strength. How to Apply Spray onto pulse points — wrists, neck, and behind the ears — for a long-lasting and elegant scent trail. const items = document.querySelectorAll('.accordion-item'); items.forEach(item = { const header = item.querySelector('.accordion-header'); header.addEventListener('click', () = { const open = item.classList.contains('open'); items.forEach(i = i.classList.remove('open')); if(!open){ item.classList.add('open'); } }); });