Vintage-Inspired Satin Midi Dress With Draped Collar

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

Crafted from a luxurious satin-like fabric, this dress features a draped shawl collar that softly frames the neckline, complemented by a fitted bodice and voluminous A-line skirt. 

  • Material:  High-quality satin with a soft luster and structured body
  • Design: Side seam pockets for convenience
  • Fit: Fitted at the top with a full skirt; flattering and vintage-inspired silhouette
  • Occasion: Ideal for evening galas, cocktail parties, formal dinners, or weddings
  • Care Instructions: Wash in cold water, air dry, iron at low temperature when necessary
  • Available Sizes: XS, S, M, L, XL, 2XL
  • Model Information(M):Height:168/66.1, Bust:93.3/36.9, Waist:73.6/28.9, Hip:100.3/39.4

The long sleeves and defined waist offer a refined silhouette, while discreet side pockets add a touch of practicality. Perfect for formal affairs where sophistication is key.

Size(cm)LENGTHBUSTWAISTShoulderSleeve
XS114836839.157
S116887340.358
M118937841.559
L120988342.760
XL1221038843.961
2XL1241089345.162

Size(IN)LENGTHBUSTWAISTShoulderSleeve
XS44.932.726.815.422.4
S45.734.628.715.922.8
M46.536.630.716.323.2
L47.238.632.716.823.6
XL4840.634.617.324
2XL48.842.536.617.824.4
1
Select product
Selected 0 item(s)
Black/ XS(2)
Black/ S(4-6)
Black/ M(8-10)
Black/ L(12-14)
Black/ XL(16)
Black/ 2XL(18)
Navy Blue/ XS(2)
Navy Blue/ S(4-6)
Navy Blue/ M(8-10)
Navy Blue/ L(12-14)
Navy Blue/ XL(16)
Navy Blue/ 2XL(18)
Wine/ XS(2)
Wine/ S(4-6)
Wine/ M(8-10)
Wine/ L(12-14)
Wine/ XL(16)
Wine/ 2XL(18)
Beige/ XS(2)
Beige/ S(4-6)
Beige/ M(8-10)
Beige/ L(12-14)
Beige/ XL(16)
Beige/ 2XL(18)
Purple/ XS(2)
Purple/ S(4-6)
Purple/ M(8-10)
Purple/ L(12-14)
Purple/ XL(16)
Purple/ 2XL(18)
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)