Effortless Hooded Sleeveless Jumpsuit - Chic Full-Zip Wide Leg One-Piece Romper

$69.99
people are viewing this right now
Free worldwide shipping
Free returns
Sustainably made
Secure payments
Description

The Epitome of Effortless Sophistication

Redefine modern comfort with our Hooded Sleeveless Wide-Leg Jumpsuit. This statement piece blends the casual cool of a hoodie with the statuesque elegance of a high-fashion gown, creating a silhouette that is bold, breathable, and undeniably chic.

✨ Why This Jumpsuit is Your New Favorite:

  • Vertical Lengthening: The exposed front zipper creates a continuous vertical line that elongates your frame for a slimming, taller look.
  • Customizable Neckline: Transition effortlessly from a modest high-neck to a daring deep-V with the smooth-glide metal zipper.
  • High-End Drape: Made from premium polyester blend that offers a heavy, luxurious hang while remaining breathable and wrinkle-resistant.
  • Modern Utility: Features oversized front patch pockets for a touch of urban flair and everyday convenience.

Size Chart (CM)

Size Bust Waist Hip Length Shoulder
S 92 80 98 145 39
M 97 85 103 146.5 40.3
L 102 90 108 148 41.6
XL 107 95 113 149.5 42.9
2XL 112 100 118 151 44.2
3XL 117 105 123 152.5 45.5

* Please choose your size based on our chart. Allow 2-3cm difference due to manual measurement.


Product Details

Fabric: Premium Smooth Polyester (Luxurious Drape)

Feature: Full Front Zipper, Hooded Back, Sleeveless, Oversized Pockets

Style: Lazy Chic / Street Luxury / Quiet Luxury

Colors: Deep Blue, Khaki, Deep Red, Dark Grey

Shipping & Returns

  • Free Shipping: Unlock free worldwide delivery on all orders over $75!
  • Fast Handling: Ships within 48 hours with real-time tracking.
  • 30-Day Guarantee: If you don't love it, we offer easy returns and exchanges within 30 days.
1
Select product
Selected 0 item(s)
S/ Dark Gray
S/ Dark Khaki
S/ Dark Red
S/ Dark Blue
M/ Dark Gray
M/ Dark Khaki
M/ Dark Red
M/ Dark Blue
L/ Dark Gray
L/ Dark Khaki
L/ Dark Red
L/ Dark Blue
XL/ Dark Gray
XL/ Dark Khaki
XL/ Dark Red
XL/ Dark Blue
2XL/ Dark Gray
2XL/ Dark Khaki
2XL/ Dark Red
2XL/ Dark Blue
class SpzCheckoutNotificationHandler extends SPZ.BaseElement { constructor(element) { super(element); this.timer_ = null; } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } sendVariantListUpdateEvent_(data) { const messageData = { type: "theme_variant_list_update", data: { orderToken: data.order_token || data.order_id } }; clearInterval(this.timer_); if(!window.CheckoutAPI) { this.timer_ = setInterval(() => { if(window.CheckoutAPI) { clearInterval(this.timer_); postMessage && postMessage(messageData); } }, 500); } else { postMessage && postMessage(messageData); } } buildCallback() { this.action_ = SPZServices.actionServiceForDoc(this.element); this.registerAction('sendVariantListUpdateEvent', (param) => { this.sendVariantListUpdateEvent_(param.args.data); }); } } SPZ.defineElement('spz-custom-checkout-notification-handler', SpzCheckoutNotificationHandler); function handleGetOrderInfo(data) { if (data.order_id) { let api = `/api/checkout/order/info?order_id=${data.order_id}`; return Promise.resolve(api); } return Promise.reject({}); } function addEventListenerKickItems(data) { if (data.type === 'checkout_kick_items') { return Promise.resolve(data); } return Promise.reject({}); } exportFunction('handleGetOrderInfo', handleGetOrderInfo) exportFunction('addEventListenerKickItems', addEventListenerKickItems)