Elegant Sapphire Lace-up Satin Dress

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

Presents the Elegant Sapphire Lace-up Satin Dress to elevate your sophisticated look. Indulge in luxury with our Elegant Sapphire Satin Gown, designed to mesmerize with its lustrous sheen and sophisticated style.

  • Material: Made of durable, premium Satin
  • Design: Lace-up
  • Fit: Loose and comfortable, suitable for all body shapes and sizes
  • Occasion: Suitable for casual outings, work or smart casual wear.
  • Care Instructions: Wash in cold water, air dry, iron at low temperature when necessary
  • Available Sizes: 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

The flowing satin fabric drapes gracefully, making it ideal for formal events or glamorous gatherings. Pair with statement earrings and a chic clutch for a truly captivating look. Elevate your evening attire with this exquisite masterpiece.

Size Chart:

SizeChestLength
cminchcminch
S9236.2212248.03
M9637.8012348.43
L10240.1612448.82
XL10842.5212549.21
2XL11444.8812649.61
1
Select product
Selected 0 item(s)
Blue/ S(4-6)
Blue/ M(8-10)
Blue/ L(12-14)
Blue/ XL(16)
Blue/ 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)