Fashion Lapel Single-breasted Waist Shirt-style Maxi Dress

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

Product Description:
This elegant maxi dress features imitation cotton and linen fabric with a pleated skirt and lapel collar. The single-breasted front and long sleeves create a polished, timeless look perfect for various occasions.

Product Features:

  • Breathable imitation cotton and linen fabric
  • Pleated skirt adds graceful movement
  • Lapel collar for a classic touch
  • Single-breasted front for tailored style
  • Long sleeves for elegance and coverage

Fabric:
Lightweight, breathable imitation cotton and linen blend.

Fit:
Tailored bodice with a flowing pleated maxi skirt.

Neckline:
Lapel collar.

Sleeve Length:
Long sleeves.

Skirt Length:
Maxi length.

Styling Suggestions:
Pair with block heels and a leather tote for chic daytime style.

Suitable Seasons:
Spring, Summer, Early Fall

Occasions:
Casual outings, work, garden parties.

Size:

Size(inch)BustWaistHipsLength
S35.4327.5639.3751.18
M37.429.5341.3451.97
L39.3731.543.3152.76
XL41.3433.4645.2853.54
2XL43.3135.4347.2454.33
Product Description:This elegant maxi dress features imitation cotton and linen fabric with a pleated skirt and lapel collar. The single-breasted front and long sleeves create a polished, timeless look perfect for various occasions.Product Features:Breathable imitation cotton and linen fabricPleated skirt adds graceful movementLapel collar for a classic touchSingle-breasted front for tailored styleLong sleeves for elegance and coverageFabric:Lightweight, breathable imitation cotton and linen blend.Fit:Tailored bodice with a flowing pleated maxi skirt.Neckline:Lapel collar.Sleeve Length:Long sleeves.Skirt Length:Maxi length.Styling Suggestions:Pair with block heels and a leather tote for chic daytime style.Suitable Seasons:Spring, Summer, Early FallOccasions:Casual outings, work, garden parties.Size:Size(inch)BustWaistHipsLengthS35.4327.5639.3751.18M37.429.5341.3451.97L39.3731.543.3152.76XL41.3433.4645.2853.542XL43.3135.4347.2454.33
1
Select product
Selected 0 item(s)
White/ S
White/ M
White/ L
White/ XL
White/ 2XL
White/ 3XL
Black/ S
Black/ M
Black/ L
Black/ XL
Black/ 2XL
Black/ 3XL
Khaki/ S
Khaki/ M
Khaki/ L
Khaki/ XL
Khaki/ 2XL
Khaki/ 3XL
Army Green/ S
Army Green/ M
Army Green/ L
Army Green/ XL
Army Green/ 2XL
Army Green/ 3XL
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)