Men's Silk Luxury Business Long Sleeve Shirt

$22.99
$58.30
Save $35.31
people are viewing this right now
Free worldwide shipping
Free returns
Sustainably made
Secure payments
Description
Description

Description

  • SPU:
    MSR466508
  • Material:
    Soft Satin
  • Style:
    Casual/Vintage/Work/Party
  • Element:
    Button Design
  • Size:
    XS/S/M/L/XL/XXL/XXXL/XXXXL/XXXXXL
  • Fit Type:
    Loose
  • Sleeve Style:
    Shirt-sleeve
  • Neckline:
    Shirt collar
  • Clothing Length Type:
    Regular
*The item does not include any accessories in the picture, unless stated otherwise in the product description.

Size chart

SizeShoulderBustClothing Length
CMINCHCMINCHCMINCH
XS44.017.3296.037.8071.027.95
S46.018.11106.041.7373.028.74
M48.018.90112.044.0975.029.53
L50.019.68118.046.4678.030.71
XL52.020.47126.049.6180.031.50
2XL54.021.26132.051.9782.032.28
3XL56.022.05138.054.3385.033.46
4XL58.022.83144.056.6987.034.25
5XL60.023.62150.059.0589.035.04
1
Select product
Selected 0 item(s)
As shown/ XS
As shown/ S
As shown/ M
As shown/ L
As shown/ XL
As shown/ 2XL
As shown/ 3XL
As shown/ 4XL
As shown/ 5XL
Blue/ XS
Blue/ S
Blue/ M
Blue/ L
Blue/ XL
Blue/ 2XL
Blue/ 3XL
Blue/ 4XL
Blue/ 5XL
Sky Blue/ XS
Sky Blue/ S
Sky Blue/ M
Sky Blue/ L
Sky Blue/ XL
Sky Blue/ 2XL
Sky Blue/ 3XL
Sky Blue/ 4XL
Sky Blue/ 5XL
Khaki/ XS
Khaki/ S
Khaki/ M
Khaki/ L
Khaki/ XL
Khaki/ 2XL
Khaki/ 3XL
Khaki/ 4XL
Khaki/ 5XL
Black/ XS
Black/ S
Black/ M
Black/ L
Black/ XL
Black/ 2XL
Black/ 3XL
Black/ 4XL
Black/ 5XL
Orange/ XS
Orange/ S
Orange/ M
Orange/ L
Orange/ XL
Orange/ 2XL
Orange/ 3XL
Orange/ 4XL
Orange/ 5XL
Yellow/ XS
Yellow/ S
Yellow/ M
Yellow/ L
Yellow/ XL
Yellow/ 2XL
Yellow/ 3XL
Yellow/ 4XL
Yellow/ 5XL
Grey/ XS
Grey/ S
Grey/ M
Grey/ L
Grey/ XL
Grey/ 2XL
Grey/ 3XL
Grey/ 4XL
Grey/ 5XL
Red/ XS
Red/ S
Red/ M
Red/ L
Red/ XL
Red/ 2XL
Red/ 3XL
Red/ 4XL
Red/ 5XL
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)