Leona Halterneck Cut-Out Midi Dress with Gold Ring Detail – Black, Pink and Olive Green Bodycon Holiday Dress

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

Description

Turn heads this summer in the Leona Cut-Out Midi Dress – the ultimate halterneck bodycon that combines bold elegance with on-trend design. This sleek silhouette hugs your figure in all the right places, with sculpting stretch fabric, a daring front cut-out, and eye-catching gold ring accents that add a touch of glam. The ruched detailing across the waist enhances your curves, while the midi length keeps the overall look polished and sultry. Perfect for a wide range of occasions – from summer holidays and destination weddings to rooftop parties and cocktail nights – this is the go-to dress for women who want to stand out.

Whether you are styling it with heels for an elevated night-out outfit or pairing it with sandals for a sunset dinner abroad, the Leona dress is made for warm-weather moments. The backless halter design and vibrant colourways – including bold black, hot pink, and olive green – make it one of this season’s most in-demand styles.

A must-have for your summer wardrobe, this dress is ideal for weddings, beach club looks, holiday nights, or dressing up for your next Instagram-worthy event.

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