Boho Deep V-Neck Maxi Dress with Pockets

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

Timeless Boho Elegance

Discover the perfect blend of comfort and style with our V-neck bamboo linen maxi dress. Featuring a flattering A-line silhouette, chic button details, and practical side pockets, this breathable dress is designed for summer vacations, beach outings, and effortless daily wear.

Product Highlights:

  • Premium Material: Crafted from breathable bamboo linen-style fabric for all-day freshness.
  • Flattering Fit: Deep V-neckline and high-waist A-line cut to elongate your silhouette.
  • Functional Style: Single-breasted buttons and hidden pockets for everyday convenience.

Size Guide (CM / INCH):

Size Bust (cm/inch) Length (cm/inch)
S 95 cm / 37.4" 130 cm / 51.2"
M 100 cm / 39.4" 131 cm / 51.6"
L 105 cm / 41.3" 132 cm / 52.0"
XL 110 cm / 43.3" 133 cm / 52.4"
XXL 115 cm / 45.3" 134 cm / 52.8"

*Note: Manual measurement may have 1-3 cm (0.4-1.2") error. Machine wash cold.

1
Select product
Selected 0 item(s)
Black/ S
Black/ M
Black/ L
Black/ XL
Black/ XXL
Creamy White/ S
Creamy White/ M
Creamy White/ L
Creamy White/ XL
Creamy White/ XXL
Navy Blue/ S
Navy Blue/ M
Navy Blue/ L
Navy Blue/ XL
Navy Blue/ XXL
Army Green/ S
Army Green/ M
Army Green/ L
Army Green/ XL
Army Green/ XXL
Wine Red/ S
Wine Red/ M
Wine Red/ L
Wine Red/ XL
Wine Red/ XXL
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)