.product-details { margin: 30px 0; border-top: 1px solid #e0e0e0; } .detail-section { border-bottom: 1px solid #e0e0e0; } .detail-header { padding: 18px 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-size: 13px; font-weight: bold; letter-spacing: 1.5px; text-transform: uppercase; color: #000000; } .detail-header:hover { color: #666666; } .detail-toggle { font-size: 20px; transition: transform 0.2s; } .detail-content { display: none; padding: 0 0 20px 0; } .detail-content.open { display: block; } .detail-content p { font-size: 14px; line-height: 1.7; color: #5a5a5a; margin-bottom: 15px; } .scent-notes { margin-top: 10px; } .scent-category { margin-bottom: 12px; } .scent-category strong { display: block; font-size: 11px; letter-spacing: 1px; color: #000000; margin-bottom: 5px; } .scent-category span { font-size: 14px; color: #5a5a5a; } The Feelings + A warm, sensual fragrance designed for intimate moments and meaningful connections. Light this when you want someone to feel cherished and adored, or when you need to create a romantic atmosphere that words cannot express. The Scent Notes + TOP: Bohemian Rose — Soft, romantic petals with a hint of wild elegance. MID: Leather — Warm and grounding. Adds depth and sensuality to the floral opening. BASE: Egyptian Amber — Rich, resinous, and timeless. The lingering warmth that stays with you. Specifications + • 8.5 oz. premium coconut apricot wax• 50+ hour burn time• Lead free cotton wick• Hand poured in Charlotte, NC• Burns cleaner than soy or paraffin Candle Care + Before Each Burn:Trim wick to 1/4 inch to prevent soot and ensure an even burn. First Burn:Allow wax to melt completely to the edges of the jar to prevent tunneling. This may take 2 to 3 hours. Burn Time:Do not burn for more than 4 hours at a time. Allow candle to cool for at least 2 hours before relighting. Safety:Never leave a burning candle unattended. Keep away from drafts, children, and pets. Discontinue use when 1/2 inch of wax remains. function ilcToggle(header) { var content = header.nextElementSibling; var toggle = header.querySelector('.detail-toggle'); var isOpen = content.classList.contains('open'); document.querySelectorAll('.detail-content.open').forEach(function(el) { el.classList.remove('open'); }); document.querySelectorAll('.detail-toggle').forEach(function(el) { el.textContent = '+'; }); if (!isOpen) { content.classList.add('open'); toggle.textContent = '×'; } }