Stamina is more than a scent, it’s a mindset. It captures that sharp focus, quiet strength, and inner fire that pushes you forward. Bright Citrus Bergamia opens the fragrance with a burst of fresh clarity. Earthy, grounding notes of sandalwood and mahogany bring depth and confidence, while a subtle touch of vanilla softens the edges, leaving a smooth, powerful trail. This scent is for those who wake up with purpose and never move without intention. Stamina adapts to your pace whether you're making power moves at work, hitting the gym, or owning the night. Fragrance Notes+ • Citrus Bergamia • Sandalwood • Mahogany • Vanilla 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 spot test 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) }); });