Liliora Halter Corset Midi Dress in Pink Lilac Ribbon Print – Summer Floral Occasion Dress with Side Split and Bow Back

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

Description

Make summer dressing effortless with the Liliora midi dress – a soft, romantic statement piece perfect for garden parties, wedding guests, or dreamy holiday moments. Designed in a pastel pink base with delicate lilac ribbon and vintage floral motifs, this halter corset dress features a flattering square neckline, cinched waist, and open back tied with a feminine bow. The structured bodice shapes the silhouette beautifully, flowing into a full skirt with soft pleats and a subtle thigh split for an elegant reveal. Whether styled with espadrilles for a daytime event or dressed up with heels for golden hour dinners, Liliora is the summer dress made to stand out.

Runs small — Please check the size chart and measurements before ordering.

1
Select product
Selected 0 item(s)
Pink/ S (UK 8)
Pink/ M (UK 10)
Pink/ L (UK 12–14)
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)