Midnight Elegance Satin Halter Ruffle Gown

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

Command the evening with effortless sophistication in our Midnight Elegance Satin Halter Ruffle Gown. Crafted from luxurious deep navy satin, this gown features a plunging halter neckline that highlights the shoulders and elongates the silhouette. The bodice is thoughtfully wrapped and cinched at the waist with a soft sash tie, sculpting a flattering hourglass shape.

  • Material: Made of durable, premium satin
  • Design: Waist Belt Dress
  • Fit: Fitted and comfortable, suitable for all body shapes and sizes
  • Occasion: Suitable for casual outings, work or smart casual wear.
  • 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
SIZE(IN)LENGTHBUSTWAISTSHOULDERZipper Length
XS58.333.126.814.821.3
S59.43528.715.321.7
M60.63730.715.722
L61.83932.716.222.4
Xl6340.934.616.722.8
2XL64.242.936.617.223.2
SIZE(CM)LENGTHBUSTWAISTSHOULDERZipper Length
XS148846837.654
S151897338.855
M15494784056
L157998341.257
Xl1601048842.458
2XL1631099343.659

The skirt flows into a dramatic high-low hemline trimmed with cascading ruffles that ripple with every step. The subtle front slit adds a modern edge while enhancing movement and allure. Whether you're attending a gala, cocktail soirée, or formal wedding, this gown ensures you exude confidence and grace.

1
Select product
Selected 0 item(s)
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)
Champagne/ XS(2)
Champagne/ S(4-6)
Champagne/ M(8-10)
Champagne/ L(12-14)
Champagne/ XL(16)
Champagne/ 2XL(18)
Burgundy/ XS(2)
Burgundy/ S(4-6)
Burgundy/ M(8-10)
Burgundy/ L(12-14)
Burgundy/ XL(16)
Burgundy/ 2XL(18)
White/ XS(2)
White/ S(4-6)
White/ M(8-10)
White/ L(12-14)
White/ XL(16)
White/ 2XL(18)
Royal Blue/ XS(2)
Royal Blue/ S(4-6)
Royal Blue/ M(8-10)
Royal Blue/ L(12-14)
Royal Blue/ XL(16)
Royal Blue/ 2XL(18)
Brown/ XS(2)
Brown/ S(4-6)
Brown/ M(8-10)
Brown/ L(12-14)
Brown/ XL(16)
Brown/ 2XL(18)
Black/ XS(2)
Black/ S(4-6)
Black/ M(8-10)
Black/ L(12-14)
Black/ XL(16)
Black/ 2XL(18)
Fuchsia/ XS(2)
Fuchsia/ S(4-6)
Fuchsia/ M(8-10)
Fuchsia/ L(12-14)
Fuchsia/ XL(16)
Fuchsia/ 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)