FREE SHIPPING for all orders over $150 USE CODE : FS150
0

CNTDWN CUSTOMS

$50.00

Secure your custom order slot with a $50 non-refundable deposit.

Every CNTDWN ETERNITY custom is handmade and one-of-one. Pricing varies depending on design complexity, materials, distressing, patchwork, graphics, and garment type.

This deposit goes toward your final total. After checkout, you will receive a message within 24–48 hours to discuss your custom idea, sizing, inspiration, timeline, and final quote.

CUSTOM TYPES:

* Denim Customs
* Reworked Vintage
* Patchwork Pieces
* Matching Sets
* One-of-One Streetwear

IMPORTANT:

* Deposits are NON-REFUNDABLE
* All custom pieces are FINAL SALE
* Turnaround times vary depending on project complexity
* Final balance must be paid before shipping or pickup
* Prices may increase for detailed work or specialty materials

Thank you for supporting wearable art by CNTDWN ETERNITY.

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; } }