✦ Verified product
Haircare Minimalist Bundle
USD 29.99
Junamour
Verified independent store
→
Junamour - All-In Jetsetter Bundle * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, C
antarell, sans-serif; line-height: 1.6; color: #333; background-color: #FFFFFF; padding: 20px; } .product-description-container { max-width: 800px; margin: 0 auto; background: #EAE4D6; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); overflow: hidden; } .accordion-item { border-bottom: 1px solid #EAE4D6; } .accordion-item:last-child { border-bottom: none; } .accordion-header { width: 100%; background: #EAE4D6; border: none; padding: 20px 24px; text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: background-color 0.2s ease; -webkit-tap-highlight-color: transparent; } .accordion-header:hover { background-color: #EAE4D6; } .accordion-header:active { background-color: #ebebeb; } .accordion-header h2 { font-size: 1.5rem; font-weight: 600; color: #1a1a1a; margin: 0; } .accordion-icon { width: 24px; height: 24px; position: relative; flex-shrink: 0; margin-left: 16px; } .accordion-icon::before, .accordion-icon::after { content: ''; position: absolute; background-color: #333; transition: transform 0.3s ease; } .accordion-icon::before { width: 16px; height: 2px; top: 11px; left: 4px; } .accordion-icon::after { width: 2px; height: 16px; top: 4px; left: 11px; } .accordion-header.active .accordion-icon::after { transform: rotate(90deg); opacity: 0; } .accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; } .accordion-content-inner { padding: 0 24px 24px 24px; color: #555; font-size: 1.5rem; line-height: 1.7; } .accordion-content p { margin-bottom: 12px; } .accordion-content ul { list-style: none; padding-left: 0; } .accordion-content ul li { padding: 6px 0; padding-left: 24px; position: relative; } .accordion-content ul li::before { content: '•'; position: absolute; left: 8px; color: #666; font-weight: bold; } .accordion-content ul ul { margin-top: 8px; margin-bottom: 8px; } .accordion-content ul ul li { padding-left: 40px; font-size: 1.5rem; color: #666; } .accordion-content ul ul li::before { content: '◦'; left: 24px; } .accordion-content h3 { font-size: 1.75rem; color: #1a1a1a; margin-bottom: 12px; font-weight: 600; } /* Mobile optimizations */ @media (max-width: 768px) { body { padding: 12px; } .accordion-header { padding: 16px 20px; } .accordion-header h2 { font-size: 1.25rem; } .accordion-content-inner { padding: 0 20px 20px 20px; font-size: 1.25rem; } .accordion-icon { width: 20px; height: 20px; } .accordion-icon::before { width: 14px; top: 9px; left: 3px; } .accordion-icon::after { height: 14px; top: 3px; left: 9px; } } /* Touch device optimizations */ @media (hover: none) and (pointer: coarse) { .accordion-header { padding: 18px 20px; } } Product Description Give the gift of calm packing. Two elegant Large Junamour Jars hold up to the full TSA-compliant 3.4 oz each—perfect for shampoo and conditioner—inside a leakproof, wide-mouth design that’s easy to fill and easy to clean in the dishwasher. Movable label bands keep her routine beautifully sorted, and a 1-year warranty adds peace of mind. Assembled and shipped in the USA Inside Bundle 2 Large jar fills up to 3.4oz capacity Large jar weighs 1.05oz Large jar size is 3"x1.75"x1.75" Toliety Jars Material Designed with NASA Engineers to solve toiletries spilling Did you know the actual CAUSE OF JET LAG is time spent at Altitude? Most commercial flight cabin elevations settle between 6500 and 7500 The fluctuation in cabin pressure (elevation) causes soft materials to squeeze & expand snap caps, destroying carry-ons & wasting product. No way to start a trip. Bottle is made of PPE- A durable structure to withstand pressure +/- , never cracking or breaking. Bottle is PPE- for sturdy design Cap TPE- A strong leakproof seal, with enough flexibility, adapting to any pressure changes Travel Container Features Adjustable Label Band- never deal with labeling a bottles again Lightweight design- to make carry-on and checked bags lighter Stable Design- Bring more in less space & never run out of what you need Twist Cap- perfect leakproof seal every time. Tested over 100,000+ miles // Accordion functionality document.addEventListener('DOMContentLoaded', function() { const accordionHeaders = document.querySelectorAll('.accordion-header'); accordionHeaders.forEach(header => { header.addEventListener('click', function() { const content = this.nextElementSibling; const isActive = this.classList.contains('active'); // Close all accordions accordionHeaders.forEach(h => { h.classList.remove('active'); h.setAttribute('aria-expanded', 'false'); h.nextElementSibling.style.maxHeight = null; }); // Open clicked accordion if it wasn't active if (!isActive) { this.classList.add('active'); this.setAttribute('aria-expanded', 'true'); content.style.maxHeight = content.scrollHeight + 'px'; } }); }); // Optional: Open first accordion by default // accordionHeaders[0].click(); });