top of page
hompage
SOAP - Edited.png

Shipping Policy

Thank you for shopping with us! Below you’ll find details about how we process and ship orders.

 

Processing Time
 

All orders are processed within 1–3 weeks (excluding weekends and holidays), depending on quantity.
 

Once your order has shipped, you will receive a confirmation email with tracking information.

 

Shipping Rates & Delivery Estimates
 

Shipping charges for your order will be calculated and displayed at checkout.

Estimated delivery times:

  • Standard Shipping: 3–7 business days

  • Expedited Shipping: 2–3 business days

  • Overnight Shipping: 1 business day

     

Please note that delivery times are estimates and may vary depending on your location and carrier delays.

 

Domestic Shipping
 

We currently ship within the United States. We are not responsible for delays caused by the carrier or incorrect shipping information provided at checkout.


 

Order Tracking
 

Once your order has shipped, you will receive an email with tracking details. Please allow up to 24 hours for tracking information to update

.

Lost or Damaged Packages
 

If your package arrives damaged or is lost in transit, please contact us within 7 days of delivery (or expected delivery date). Include your order number and photos (if applicable), and we will assist you in resolving the issue.

 

Incorrect Shipping Information
 

Please ensure your shipping address is correct at checkout. We are not responsible for orders shipped to incorrectly entered addresses. Additional shipping fees may apply for reshipment.

 

Questions
 

If you have any questions about your shipment, please contact us on the website.

bottom of page
import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.bind.annotation.RestController; import java.util.*; @RestController public class CheckoutController { @GetMapping("/checkout") public Map checkout( @RequestParam String products, @RequestParam(required = false) String coupon) { // Parse products Map productQuantities = new HashMap<>(); for (String productEntry : products.split(",")) { String[] parts = productEntry.split(":"); productQuantities.put( parts[0], // Product ID Integer.parseInt(parts[1]) // Quantity ); } // Build result Map result = new HashMap<>(); result.put("products", productQuantities); result.put("coupon", coupon != null ? coupon : "No coupon applied"); return result; } }