Vintage Romantic Lace Patchwork Midi Dress - Tiered Ruffle White Cottagecore Summer Dress

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

Vintage Dreamscape

"Crafted with lace and light, designed for your most poetic moments."

Detailed Artistry

Hand-inspired crochet lace inserts create a beautiful interplay of shadow and light, offering a high-end vintage aesthetic.

Flowing Movement

The tiered "cake" skirt provides effortless volume and a playful rhythm to your stride, making it a joy to wear.

Specifications

  • Material: Breathable Cotton-Polyester Blend (Non-stretch fabric, elastic waist)
  • Color: Classic Ivory White
  • Design: Sleeveless, Round Neck with Lace Trim, Tiered Skirt
  • Lining: Fully lined to ensure non-transparency.

Find Your Perfect Size (Inches)

Size Bust (in) Waist (in) Length (in)
S 33.1 - 34.6 26.0 - 28.3 48.4
M 35.0 - 36.6 28.0 - 30.3 48.8
L 37.4 - 39.0 30.3 - 32.7 49.2
XL 39.8 - 41.3 32.7 - 35.0 49.6
2XL 42.5 - 44.1 35.4 - 37.8 50.0

* The waist is elasticized for a comfortable fit. If you are between sizes, please size up for a more relaxed feel.

WASH CARE: Hand wash cold or dry clean recommended to protect the delicate lace. Hang to dry. Steam iron only.

1
Select product
Selected 0 item(s)
S/ White
S/ Dark Blue
S/ Burgundy
S/ Sky Blue
S/ Yellow
M/ White
M/ Dark Blue
M/ Burgundy
M/ Sky Blue
M/ Yellow
L/ White
L/ Dark Blue
L/ Burgundy
L/ Sky Blue
L/ Yellow
XL/ White
XL/ Dark Blue
XL/ Burgundy
XL/ Sky Blue
XL/ Yellow
2XL/ White
2XL/ Dark Blue
2XL/ Burgundy
2XL/ Sky Blue
2XL/ Yellow
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)