Ladies Lapel Long Sleeve Single Breasted Belt Maxi Dress

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

Product Name:
Ladies Lapel Long Sleeve Single Breasted Belt Maxi Dress

Product Description:
A timeless long-sleeve maxi dress featuring a classic lapel collar and single-breasted front. The included belt cinches the waist, highlighting an elegant silhouette, while the maxi length adds sophistication and versatility.

Product Features:

  • Lapel collar for a refined, structured look

  • Single-breasted front for classic detailing

  • Matching belt to define the waistline

  • Long sleeves for balanced coverage

  • Maxi length for a graceful, elongated silhouette

Fabric: Blended fabric

Fit: Regular fit with adjustable waist

Neckline: Lapel collar

Sleeve Length: Long sleeves

Dress Length: Maxi length

Styling Suggestions: Pair with ankle boots or strappy heels and a structured handbag for effortless day-to-night transitions.

Suitable Seasons: Spring, Autumn

Occasions: Office wear, business meetings, daily outings, formal dinners, or semi-casual events

Size Chart
Size Bust Length Waist Sleeve length Shoulder width
cm inch cm inch cm inch cm inch cm inch
S 90 35.4  130 51.2  70 27.6  59 23.2  38 39.4 
M 95 37.4  131 51.6  75 29.5  60 23.6  39 39.8 
L 100 39.4  132 52.0  80 31.5  61 24.0  40 40.2 
XL 105 41.3  133 52.4  85 33.5  62 24.4  41 40.6 
2XL 110 43.3  134 52.8  90 35.4  63 24.8  42 16.5 
3XL 115 45.3  135 53.1  95 37.4  64 25.2  43 16.9 

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