const FAQS=[ ['How long does a saree take to arrive?','Most pieces ship in 5–7 days, made to order. Bridal commissions may take up to three weeks.'], ['Can I return a saree?','Yes — within 7 days of delivery, unworn, with tags attached and original packaging.'], ['Are your sarees authentic handwoven silk?','Every saree ships with a handwritten note naming the weaver and loom. Nothing is machine-embroidered or power-loomed.'], ['Do you ship internationally?','Currently we ship across India only. International shipping is planned for the coming season.'], ['How do I care for a silk saree?','Dry clean only. Store folded in muslin cloth, away from direct light, and iron on reverse at low heat.'] ]; function FAQ(){ React.useEffect(()=>{ document.title='FAQ — Bold Bee'; const schema={"@context":"https://schema.org","@type":"FAQPage",mainEntity:FAQS.map(([q,a])=>({"@type":"Question",name:q,acceptedAnswer:{"@type":"Answer",text:a}}))}; let el=document.getElementById('bb-schema'); if(!el){el=document.createElement('script');el.type='application/ld+json';el.id='bb-schema';document.head.appendChild(el);} el.textContent=JSON.stringify(schema); },[]); return (