Oversized Knit Poncho Sweater

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

Elevate your cold-weather wardrobe with this Oversized Beige Knit Poncho Sweater, a versatile layering piece that blends minimalist elegance with effortless comfort. Its relaxed silhouette drapes gracefully over the body, creating a chic yet cozy look ideal for both casual and refined settings. The soft beige hue offers a timeless neutrality, making it easy to pair with tailored trousers, skirts, or denim.

Material: Soft knit blend with a smooth and warm hand-feel
Design: Oversized poncho silhouette with ribbed crew neckline, cuffs, and hemline
Fit: Relaxed, draped fit with wide sleeves and extended hemline for contemporary styling
Occasion: Perfect for city strolls, travel, casual office days, and weekend gatherings during the cooler seasons
Care Instructions: Wash in cold water, air dry, iron at low temperature when necessary
Available Sizes: S, M, L, XL, 2XL,3XL,4XL

Model Information (M): Height: 168 cm / 66.1 in, Bust: 93.3 cm / 36.9 in, Waist: 73.6 cm / 28.9 in, Hip: 100.3 cm / 39.4 in

Ribbed details at the crew neckline, cuffs, and hemline bring subtle texture and structure, balancing the fluid oversized fit. Designed with dropped shoulders and elongated sleeves, this sweater channels modern nonchalance while ensuring all-day comfort. Whether styled for a laid-back weekend outing or layered over office ensembles, it delivers understated sophistication with ease. 

SizeBust Length
cminchcminch
S10440.9 7429.1 
M10842.5 7529.5 
L11244.1 7629.9 
XL11645.7 7730.3 
2XL12047.2 7830.7 
3XL12448.8 7931.1 
4XL12850.4 8031.5 
1
Select product
Selected 0 item(s)
Beige/ S
Beige/ M
Beige/ L
Beige/ XL
Beige/ 2XL
Beige/ 3XL
Beige/ 4XL
Black/ S
Black/ M
Black/ L
Black/ XL
Black/ 2XL
Black/ 3XL
Black/ 4XL
Pink/ S
Pink/ M
Pink/ L
Pink/ XL
Pink/ 2XL
Pink/ 3XL
Pink/ 4XL
Navy Blue/ S
Navy Blue/ M
Navy Blue/ L
Navy Blue/ XL
Navy Blue/ 2XL
Navy Blue/ 3XL
Navy Blue/ 4XL
Caramel/ S
Caramel/ M
Caramel/ L
Caramel/ XL
Caramel/ 2XL
Caramel/ 3XL
Caramel/ 4XL
Grey/ S
Grey/ M
Grey/ L
Grey/ XL
Grey/ 2XL
Grey/ 3XL
Grey/ 4XL
Olive Green/ S
Olive Green/ M
Olive Green/ L
Olive Green/ XL
Olive Green/ 2XL
Olive Green/ 3XL
Olive Green/ 4XL
Brown/ S
Brown/ M
Brown/ L
Brown/ XL
Brown/ 2XL
Brown/ 3XL
Brown/ 4XL
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)