Shipping policy

Orders & Shipping FAQ body { font-family: 'Helvetica Neue', sans-serif; background: #f9f9f9; margin: 0; padding: 40px 20px; } .faq-section { max-width: 800px; margin: auto; } .faq-title { text-align: center; font-size: 28px; font-weight: 600; margin-bottom: 30px; letter-spacing: 1px; } .faq-item { background: #fff; border-radius: 12px; margin-bottom: 15px; box-shadow: 0 4px 20px rgba(0,0,0,0.05); overflow: hidden; transition: all 0.3s ease; } .faq-question { padding: 18px 20px; cursor: pointer; font-size: 16px; font-weight: 500; position: relative; } .faq-question::after { content: '+'; position: absolute; right: 20px; font-size: 20px; transition: transform 0.3s ease; } .faq-item.active .faq-question::after { content: '−'; } .faq-answer { max-height: 0; overflow: hidden; padding: 0 20px; color: #555; font-size: 14px; line-height: 1.6; transition: max-height 0.4s ease, padding 0.3s ease; } .faq-item.active .faq-answer { max-height: 200px; padding: 0 20px 20px; }
Orders & Shipping
When will my order ship?
All orders are processed and dispatched within 1–3 business days after confirmation. You will receive shipping details once your order is shipped.
How long does shipping take?
Standard shipping typically takes 3–7 business days, depending on your location. Timelines may vary during peak periods.
Do you offer expedited shipping?
Yes, expedited shipping options may be available at checkout based on your delivery location.
Do you ship internationally?
Currently, we ship within the United States only. International shipping options may be introduced soon.
const items = document.querySelectorAll(".faq-item"); items.forEach(item => { item.querySelector(".faq-question").addEventListener("click", () => { // Close all items.forEach(i => { if(i !== item) i.classList.remove("active"); }); // Toggle current item.classList.toggle("active"); }); });