Elegant Contrast Stripe Sleeveless Maxi Dress - High-Waisted Ivory Formal Swing Long Dress

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

The Sculpted Silhouette

Elegance in Contrast. Sophistication in Simplicity.

Architectural Lines

The bold black central stripe isn't just a design choice—it's a deliberate technique to draw the eye upward, creating an incredibly lean and tall visual effect.

Timeless Ivory

Our signature Ivory hue offers a softer, more luxurious look than stark white, ensuring you look radiant in any lighting.

Design Specifications

  • Fabric: High-density premium blend with superior drape and recovery.
  • Neckline: Modern jewel neck for a clean, chic finish.
  • Closure: Concealed back zipper for a seamless, tailored fit.
  • Length: Floor-length maxi designed to pair perfectly with heels.

Size Guide

Size Bust (in) Waist (in) Length (in)
S 33.1" 26.8" 55.1"
M 34.6" 28.3" 55.5"
L 36.2" 29.9" 55.9"
XL 38.6" 32.3" 56.3"
2XL 40.9" 34.6" 56.7"

* Tailored Fit. If you are between sizes, we recommend sizing up for comfort.

Occasions: Wedding Guest, Cocktail Party, Gala, Formal Dinner, Anniversary.

Care: Dry clean recommended or hand wash cold. Cool iron on reverse side.

1
Select product
Selected 0 item(s)
S
M
L
XL
2XL
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)