Cherry Crave captures the thrill of wanting more and not holding back. Sweet Cherry opens with a mouthwatering burst that feels playful yet seductive, instantly drawing you in. Wild Raspberry adds a vibrant twist, enhancing the sweetness with a touch of bold energy and intrigue.As it settles, smooth Vanilla melts into rich Merlot, creating a warm, intoxicating depth that lingers on the skin.A scent made to be noticed. Fragrance Notes+ • Sweet Cherry • Wild Raspberry • Vanilla • Merlot How to Wear It:+ The Perfect Feeling Ritual Start with hydrated skin. Apply to clean, moisturized skin ideally after an unscented lotion. Fragrance clings better to moisture, allowing the notes to unfold slowly and naturally. Target your pulse points. Spray lightly on your wrists, neck, and behind the ears. These warm areas help the fragrance evolve with your body, revealing every layer over time. Let it breathe. Don’t rub just tap gently or let it settle. This allows the top, heart, and base notes to open as intended without disruption. Pro tip: Add a subtle touch to clothing or scarves for extra staying power. Just spottest the fabric first. You’ll leave a signature trail that lasts even longer soft, bold, and unforgettable. Ingredients: Alcohol, parfum .accordion { max-width: 800px; margin: 0 auto; font-family: Arial, sans-serif; } .accordion h2 { text-align: center; margin-bottom: 1rem; } .item { border: 1px solid #e6e6e6; border-radius: 8px; margin-bottom: 0.6rem; overflow: hidden; } .toggle { width: 100%; text-align: left; background: #fff; border: none; padding: 0.8rem; font-weight: 600; display:flex; justify-content:space-between; align-items:center; cursor:pointer; } .toggle:focus { outline: 2px solid #4d90fe; } .panel { padding: 0 0.8rem 0.8rem 0.8rem; line-height:1.5; transition: max-height 0.28s ease; } .icon { margin-left: 1rem; font-weight: 700; } document.addEventListener('DOMContentLoaded', () => { const toggles = document.querySelectorAll('.accordion .toggle'); toggles.forEach(btn => { btn.addEventListener('click', () => { const isOpen = btn.getAttribute('aria-expanded') === 'true'; // Cerrar todos toggles.forEach(t => { t.setAttribute('aria-expanded', 'false'); t.nextElementSibling.hidden = true; }); // Si estaba cerrado, abrirlo if (!isOpen) { btn.setAttribute('aria-expanded', 'true'); btn.nextElementSibling.hidden = false; // opcional: mover focus al panel (mejora accesibilidad) btn.nextElementSibling.focus?.(); } }); // Accesibilidad: permitir toggle con Enter y Espacio (botón ya lo hace) }); });