Linen-Look Peplum Vest & Wide-Leg Pants Set - 2-Piece Chic Commuter Outfit

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

The Art of Effortless Chic

Elevate your spring wardrobe with our 2025 Signature Linen-Blend Set.


WHY YOU'LL LOVE IT

  • ✨ Sophisticated Peplum Cut: Designed to highlight your waist while offering a relaxed, airy fit.
  • ✨ Premium Linen-Blend: All the texture and breathability of linen, enhanced with durability for everyday wear.
  • ✨ Versatile Coordination: A complete look in one click. Mix and match with your favorite staples for endless styles.
  • ✨ Occasion Ready: Perfect for gallery hopping, office meetings, or weekend getaways.

PRODUCT DETAILS

Material: Cotton-Polyester Blend (Linen Texture)
Sleeve: Sleeveless Vest
Neckline: Deep V-Neck
Pants: High-Waisted Wide Leg
Season: Spring / Summer 2025

SIZE GUIDE (CM)

Size Bust Top Length Waist Hips Pants Length
S 96 62.5 66 103 105
M 100 63.5 70 107 106
L 104 64.5 74 111 107
XL 109 65.5 79 116 108
2XL 114 66.5 84 121 109

*Please allow 1-3 cm difference due to manual measurement. We recommend choosing your usual size.

Hand wash cold or gentle machine wash. Hang dry. Warm iron if needed.

1
Select product
Selected 0 item(s)
S/ Pink
S/ Black
S/ Gray
S/ Blue
S/ Off-white
S/ Khaki
M/ Pink
M/ Black
M/ Gray
M/ Blue
M/ Off-white
M/ Khaki
L/ Pink
L/ Black
L/ Gray
L/ Blue
L/ Off-white
L/ Khaki
XL/ Pink
XL/ Black
XL/ Gray
XL/ Blue
XL/ Off-white
XL/ Khaki
2XL/ Pink
2XL/ Black
2XL/ Gray
2XL/ Blue
2XL/ Off-white
2XL/ Khaki
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)