Elegant Sleeveless Mock Neck Midi Dress | Chic High-Waisted A-Line Party Dress

$59.99
$79.99
Save $20.00
people are viewing this right now
Free worldwide shipping
Free returns
Sustainably made
Secure payments
Description

Minimalist Elegance, Effortless Style

Embrace a look of refined sophistication with our Sleeveless Mock Neck Midi Dress. Designed with a flattering high-waist A-line silhouette, this dress features a clean, minimalist aesthetic that is perfect for summer gatherings, professional events, or a chic date night. The soft, breathable knit fabric ensures comfort while maintaining a structured, elegant drape.

Product Highlights:

  • Refined Design: Classic mock neck and sleeveless cut for a timeless, polished look.
  • Flattering Silhouette: High-waisted A-line fit with a subtle side slit to enhance movement and style.
  • Premium Comfort: Crafted from high-quality, breathable knit fabric (95%+ Polyester).
  • Versatile Wardrobe Essential: Ideal for vacations, business casual, or elegant evening wear.

Size Guide (CM / INCH):

Size Bust (cm/inch) Waist (cm/inch) Length (cm/inch)
S 92 cm / 36.2" 81 cm / 31.9" 110 cm / 43.3"
M 97 cm / 38.2" 86 cm / 33.9" 111 cm / 43.7"
L 102 cm / 40.2" 91 cm / 35.8" 112 cm / 44.1"
XL 107 cm / 42.1" 96 cm / 37.8" 113 cm / 44.5"
2XL 112 cm / 44.1" 101 cm / 39.8" 114 cm / 44.9"

*Note: Manual measurements may vary by 2-3 cm (0.8-1.2"). Please allow for slight color and detail variations between the image and the actual product due to lighting and monitor settings. Machine wash cold, hang dry.

1
Select product
Selected 0 item(s)
white/ S
white/ M
white/ L
white/ XL
white/ 2XL
black/ S
black/ M
black/ L
black/ XL
black/ 2XL
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)