.fade-up { opacity: 0; transform: translateY(40px); transition: all 1s cubic-bezier(.22,.61,.36,1); } .fade-up.visible { opacity: 1; transform: translateY(0); } .fade-blur { opacity: 0; filter: blur(10px); transform: translateY(20px); transition: all 1.2s cubic-bezier(.22,.61,.36,1); } .fade-blur.visible { opacity: 1; filter: blur(0); transform: translateY(0); } .return-card { padding:20px; border-radius:28px; border:1px solid #eee; margin-bottom:14px; background:#fff; } .return-step { display:flex; gap:14px; align-items:flex-start; } .return-number { min-width:30px; height:30px; border-radius:50%; border:1px solid #e5e5e5; display:flex; align-items:center; justify-content:center; font-size:12px; color:#111; } .contact-button { display:block; width:100%; padding:18px; border-radius:999px; border:1px solid #dcdcdc; text-align:center; text-decoration:none; color:#111; font-size:13px; letter-spacing:4px; transition: all 0.3s ease; } .contact-button:hover { background:#111; color:#fff; } RETURNS Return your order Changed your mind? No problem. We’ve made returns simple and effortless so you can shop with confidence. RETURN POLICY • Returns can be requested within 14 days of delivery. • Items must be unworn, unwashed and returned in original condition with tags attached. • For hygiene reasons, certain items may not be eligible for return. • Once approved, your return instructions will be sent by email. HOW IT WORKS 1 Request your return Contact our support team with your order number and reason for return. 2 Receive approval Once approved, we’ll send you the return instructions by email. 3 Send your item back Package your item securely and return it using the provided instructions. SUPPORT Need assistance? Our support team is here to help with returns, sizing questions and order support. CONTACT SUPPORT const elements = document.querySelectorAll('.fade-up, .fade-blur'); const observer = new IntersectionObserver((entries) => { entries.forEach((entry, index) => { if(entry.isIntersecting){ setTimeout(() => { entry.target.classList.add('visible'); }, index * 120); } }); }, { threshold: 0.08 }); elements.forEach(el => observer.observe(el));