Elegant vintage print V-neck velvet maxi dress

$47.99
$98.99
Save $51.00
people are viewing this right now
Free worldwide shipping
Free returns
Sustainably made
Secure payments
Description
Description

This velvet maxi dress combines vintage-inspired prints with a V-neck design, seamlessly blending retro charm with modern elegance. Crafted from luxurious velvet fabric, this gown is sure to be a style statement at any event. The deep V-neck adds a touch of allure, while the delicate gold prints shimmer subtly against the rich green background, creating a striking visual contrast.  

Accessorize with gold or diamond jewelry to highlight the intricate print details. Pair it with heels to elongate your silhouette and a vintage clutch to complete the elegant, timeless look. For your hairstyle, a soft updo or loose waves will accentuate your collarbone and add a contemporary twist to the retro-inspired outfit.

Key Features:

SPU: RB2575
1.Material: High quality comfortable glossy velvet fabric
2.Design: V-neck with pleated waist
3.Fit: Regular fit, suitable for different body types
4.Occasion: Suitable for daily activities, from work to weekend getaways
5.Care instructions: Wash in cold water, air dry, iron on low heat when necessary
6.Available sizes: S, M, L, XL, 2XL,3XL,4XL,5XL

1
Select product
Selected 0 item(s)
As shown/ S
As shown/ M
As shown/ L
As shown/ XL
As shown/ 2XL
As shown/ 3XL
As shown/ 4XL
As shown/ 5XL
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)