Women's Minimalist Loose-fitting White Trim Sleeveless Jumpsuit MDA3086L9Y

$29.99
people are viewing this right now
Free worldwide shipping
Free returns
Sustainably made
Secure payments
Description
Size
LENGTH BUST SHOULDER WAIST HIP
XS 0-2 55.1 33.5 14.2 25.6 37.4
S 4-6 55.9 35.4 15.0 27.6 39.4
M 8-10 56.7 37.4 15.7 29.5 41.3
L 12-14 57.5 39.4 16.5 31.5 43.3
XL 16-18 58.3 41.3 17.3 33.5 45.3
2XL 20-22 59.1 43.3 18.1 35.4 47.2

Sizes can vary from 2-3 centimeters because they are measured by hand. 1inch=2.54cm
The size matched on a label can differ from the one you have ordered

 

Product Name: Women’s Minimalist Loose-fitting White Trim Sleeveless Jumpsuit

Description:
A clean, minimalist jumpsuit designed with a loose fit and contrasting white trim, offering a modern and effortlessly relaxed silhouette.

Product Features:

  • Lightweight fabric

  • Loose-fitting silhouette

  • White trim detailing

  • Sleeveless design

Fabric: Polyester blend
Fit: Loose fit
Neckline: Zipper neck
Sleeve Length: Sleeveless
Pant Length: Full length

Styling Suggestions:
Style with flat sandals for a casual daytime look, or pair with heels and minimal accessories for a chic, elevated outfit.

Suitable Seasons: Spring, summer
Occasions: Daily wear, casual outings, travel, vacation

1
Select product
Selected 0 item(s)
Photo Color/ XS
Photo Color/ S
Photo Color/ M
Photo Color/ L
Photo Color/ XL
Photo Color/ 2XL
Army Green/ XS
Army Green/ S
Army Green/ M
Army Green/ L
Army Green/ XL
Army Green/ 2XL
Red/ XS
Red/ S
Red/ M
Red/ L
Red/ XL
Red/ 2XL
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)