Docenin™Women's Solid Color Cotton Linen Button Casual Pants

$36.99
$45.99
Save $9.00
people are viewing this right now
Free worldwide shipping
Free returns
Sustainably made
Secure payments
Description

Description

  • SPU:
    WPA177052
  • Material:
    Cotton Blend
  • Pattern Type:
    Plain/Solid Color
  • Style:
    Retro/Casual
  • Theme:
    Summer
  • Thickness:
    Moderate
  • Occasion:
    Daily
*The item does not include any accessories in the picture, unless stated otherwise in the product description.

Size chart

SizeWaistHipLength
CMINCHCMINCHCMINCH
S65.025.59110.043.3192.036.22
M68.526.97114.044.8893.536.81
L72.028.35118.046.4695.037.40
XL75.529.72122.048.0396.537.99
2XL79.031.10126.049.6198.038.58
3XL82.532.48130.051.1899.539.17

If you're deciding between a small or large size, we suggest going with the larger size for optimal fit.

♥FREE SHIPPING OVER $69♥
 ✈FAST SHIPPING WITHIN THE US
1
Select product
Selected 0 item(s)
Dark Blue/ S
Dark Blue/ M
Dark Blue/ L
Dark Blue/ XL
Dark Blue/ 2XL
Dark Blue/ 3XL
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)