Women's Elegant Cowl Neck Long Sleeve Ruffled Cuffs Satin Blouse

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

Style: Elegant, Daily

Color: Apricot, Green, Black

Material: Satin

Fit Type: Refgular Fit

Neckline: Cowl Neck

Pattern Type: Solid

Details: Long Sleeve, Ruffled Cuffs

Product Type: Instock

Item ID: SQ000759

SIZE CHART
SizeBustCuffsSleeve WidthShoulderLengthSleeves Length
CMINCHCMINCHCMINCHCMINCHCMINCHCMINCH
S9336.5 18-41.97.1-16.5  34.513.6 38.615.2 60.523.8 63.525.0 
M9738.1 19.1-42.97.5-16.9  35.814.1 39.615.6 61.524.2 64.525.3 
L103.140.5 20.6-44.58.1-17.5  37.814.9 40.916.1 6324.8 65.825.9 
XL10942.8 22.1-468.7-18.1  39.915.7 42.416.7 64.525.3 66.826.3 
2XL115.145.2 23.6-47.59.3-18.7  41.916.5 43.917.3 6625.9 68.126.8 
*This data was obtained from manually measuring the product, it may be off by 2-3 CM.
*1 cm=0.393 inch, 1 inch=2.54 cm
1
Select product
Selected 0 item(s)
Apricot/ S
Apricot/ M
Apricot/ L
Apricot/ XL
Apricot/ 2XL
Green/ S
Green/ M
Green/ L
Green/ XL
Green/ 2XL
Black/ S
Black/ M
Black/ L
Black/ XL
Black/ 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)