Customer Care
Shipping Policy
Shipping timelines, carriers, and what to expect once your order is in motion.
Last Updated: December 18, 2025

Processing time

Orders are typically processed within 1–3 business days (excluding weekends and holidays).

Shipping time

Shipping time begins once your order has been fulfilled and handed to the carrier.

Carrier delays

Carrier delays may occur due to weather, peak volume, or regional disruptions. These are outside our control.

Address accuracy

Please confirm your shipping address before placing your order. We are not responsible for delivery issues caused by incorrect or incomplete addresses.

If you need an address change, contact us immediately. Once an order ships, changes may not be possible.
(function () { const btn = document.getElementById('hamburger'); const drawer = document.getElementById('menu-drawer'); if (!btn || !drawer) return; // Accessibility btn.setAttribute('role', 'button'); btn.setAttribute('aria-controls', 'menu-drawer'); btn.setAttribute('aria-expanded', 'false'); function openDrawer() { drawer.classList.add('open'); btn.setAttribute('aria-expanded', 'true'); } function closeDrawer() { drawer.classList.remove('open'); btn.setAttribute('aria-expanded', 'false'); } function toggleDrawer() { drawer.classList.contains('open') ? closeDrawer() : openDrawer(); } btn.addEventListener('click', function (e) { e.preventDefault(); toggleDrawer(); }); // Close when clicking outside document.addEventListener('click', function (e) { if (!drawer.classList.contains('open')) return; const isClickInside = drawer.contains(e.target) || btn.contains(e.target); if (!isClickInside) closeDrawer(); }); // Close on ESC document.addEventListener('keydown', function (e) { if (e.key === 'Escape') closeDrawer(); }); // Close after navigating drawer.querySelectorAll('a').forEach(a => { a.addEventListener('click', function () { closeDrawer(); }); }); })();