Men's Geometric Design Business Casual Shirt

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

Description

  • SPU:
    MSR386722
  • Material:
    Cotton Blends
  • Style:
    Casual/Business
  • Pattern Type:
    Geometric
  • Element:
    Button Design
  • Type:
    Stitching Way
  • Size:
    XS/S/M/L/XL/XXL/XXXL/XXXXL/XXXXXL
  • Fit Type:
    Loose
  • Sleeve Style:
    Shirt-sleeve
  • Neckline:
    Turndown Collar
  • Clothing Length Type:
    Regular
*The item does not include any accessories in the picture, unless stated otherwise in the product description.

Size chart

SizeShoulderBustSleeve LengthClothing Length
CMINCHCMINCHCMINCHCMINCH
XS44.017.3296.037.8059.023.2371.027.95
S46.018.11106.041.7360.023.6273.028.74
M48.018.90112.044.0961.024.0275.029.53
L50.019.68118.046.4662.024.4178.030.71
XL52.020.47126.049.6164.025.2080.031.50
2XL54.021.26132.051.9765.025.5982.032.28
3XL56.022.05138.054.3366.025.9885.033.46
4XL58.022.83144.056.6967.026.3887.034.25
5XL60.023.62150.059.0568.026.7789.035.04
1
Select product
Selected 0 item(s)
Pink/ XS
Pink/ S
Pink/ M
Pink/ L
Pink/ XL
Pink/ 2XL
Pink/ 3XL
Pink/ 4XL
Pink/ 5XL
Navy/ XS
Navy/ S
Navy/ M
Navy/ L
Navy/ XL
Navy/ 2XL
Navy/ 3XL
Navy/ 4XL
Navy/ 5XL
Burgundy/ XS
Burgundy/ S
Burgundy/ M
Burgundy/ L
Burgundy/ XL
Burgundy/ 2XL
Burgundy/ 3XL
Burgundy/ 4XL
Burgundy/ 5XL
Black/ XS
Black/ S
Black/ M
Black/ L
Black/ XL
Black/ 2XL
Black/ 3XL
Black/ 4XL
Black/ 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)