Avina Crochet Beach Shirt Dress Cover-Up – Long Sleeve Summer Holiday Mesh Tunic

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

Description

Turn heads on holiday with the Avina crochet beach shirt dress – the ultimate lightweight summer cover-up for your next getaway. Designed in an airy, open-knit mesh with a relaxed oversized fit, this long-sleeve tunic is perfect for slipping over your bikini or swimsuit. Featuring a collared neckline and drop shoulder sleeves, it brings effortless glam to poolside lounging or strolls along the beach. Whether you are heading to Ibiza, Mykonos, or a tropical escape, this crochet beach dress adds a boho-luxe edge to your resort wardrobe. Style it with gold jewellery, statement sunglasses, and a straw hat for an Instagram-worthy finish. A beachwear essential for summer holidays, coastal getaways, or your next beach club party.

Available in beige, black, cobalt blue, and white with contrast blue collar.

1
Select product
Selected 0 item(s)
Beige/ S
Beige/ M
Beige/ L
White/ S
White/ M
White/ L
Blue/ S
Blue/ M
Blue/ L
Black/ S
Black/ M
Black/ L
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)