Gradient Print Boat Neck Off Shoulder Gem Detail Slit Gown Maxi Dress

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

You'll turn heads from the moment you wear this ombre print gem design dress. We love pairing it with classic heels and sparkly accessories for a very chic gown look.

  • Length: Long
  • Material: Polyester
  • Sleeve Type: Cuffed Lantern Sleeves
  • Neckline: Boat Neck Off Shoulder Gem Detail 
  • Back Zipper Design
  • Style: Party Wear
  • Fit Style: Regular Fit


@Note:
Size: please check measurements carefully
Please allow 0.5-1" difference due to manual measurement
Different monitor settings means colors may differ slightly
1" = 2.54cm

SizeBustLength
cminchcminch
S8633.9 13352.4 
M9035.4 13452.8 
L9637.8 13553.1 
XL10240.2 13653.5 
1
Select product
Selected 0 item(s)
White/ S
White/ M
White/ L
White/ XL
Ash/ S
Ash/ M
Ash/ L
Ash/ XL
Light purple/ S
Light purple/ M
Light purple/ L
Light purple/ XL
Blackish Green/ S
Blackish Green/ M
Blackish Green/ L
Blackish Green/ XL
Yellow/ S
Yellow/ M
Yellow/ L
Yellow/ XL
Wine Red/ S
Wine Red/ M
Wine Red/ L
Wine Red/ XL
Navy blue/ S
Navy blue/ M
Navy blue/ L
Navy blue/ XL
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)