Women's Minimalist Linen-blend Sleeveless Maxi Dress With Ruffle Details MDZ1622A0Y

$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 53.1 37.4 15.7 29.5 37.4
S 4-6 53.9 39.4 16.1 31.5 39.4
M 8-10 54.7 41.3 16.5 33.5 41.3
L 12-14 55.5 43.3 16.9 35.4 43.3
XL 16-18 56.3 45.3 17.3 37.4 45.3
2XL 20-22 57.1 47.2 17.7 39.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 Linen-blend Sleeveless Maxi Dress With Ruffle Details

Description:
A clean and airy sleeveless maxi dress made from a breathable linen blend, accented with subtle ruffle details for a soft, minimalist charm.

Product Features:

  • Linen-blend fabric

  • Sleeveless silhouette

  • Delicate ruffle details

Fabric: Linen blend
Fit: Regular fit
Neckline: Simple round neck
Sleeve Length: Sleeveless
Dress Length: Maxi length

Styling Suggestions:
Style with flat sandals and a straw tote for everyday ease, or elevate with espadrilles and minimal accessories for vacation looks.

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

1
Select product
Selected 0 item(s)
Black/ XS
Black/ S
Black/ M
Black/ L
Black/ XL
Black/ 2XL
Red/ XS
Red/ S
Red/ M
Red/ L
Red/ XL
Red/ 2XL
Light Blue/ XS
Light Blue/ S
Light Blue/ M
Light Blue/ L
Light Blue/ XL
Light Blue/ 2XL
Purple/ XS
Purple/ S
Purple/ M
Purple/ L
Purple/ XL
Purple/ 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)