VCSHOES red cotton Wardrobes Mermaid dress Traveling stand collar Dresses

$144.00
Size:  S/US-2/EUR-34
Quantity

Description

French red cotton Wardrobes Mermaid dress Traveling stand collar Dresses

This dress is made of cotton or linen fabric. soft and breathy.

Flattering cut. Makes you look slimmer and matches easlily.

Materials used: cotton blended

Measurement:Size S/US-2/EUR-34
length 140cm / 54.6"
Shoulder 34cm / 13.26"
bust 82cm / 31.98"
Waist 66cm / 25.74"
hem 304cm / 118.56"
Sleeve length 34cm / 13.26"
Cuff 22cm / 8.58"


Size M/US4-6/EUR34-36
length 141cm / 54.99"
Shoulder 35cm / 13.65"
bust 86cm / 33.54"
Waist 70cm / 27.3"
hem 308cm / 120.12"
Sleeve length 35cm / 13.65"
Cuff 23cm / 8.97"


Size L/US8-10/EUR38-40
length 142cm / 55.38"
Shoulder 36cm / 14.04"
bust 90cm / 35.1"
Waist 74cm / 28.86"
hem 312cm / 121.68"
Sleeve length 36cm / 14.04"
Cuff 24cm / 9.36"


Size XL/US8-10/EUR38-40
length 143cm / 55.77"
Shoulder 37cm / 14.43"
bust 94cm / 36.66"
Waist 78cm / 30.42"
hem 316cm / 123.24"
Sleeve length 37cm / 14.43"
Cuff 25cm / 9.75"


Size 2XL/US12-14/EUR42
length 144cm / 56.16"
Shoulder 38cm / 14.82"
bust 98cm / 38.22"
Waist 82cm / 31.98"
hem 320cm / 124.8"
Sleeve length 38cm / 14.82"
Cuff 26cm / 10.14"


Size 3XL/US16-18/EUR44
length 145cm / 56.55"
Shoulder 39cm / 15.21"
bust 102cm / 39.78"
Waist 86cm / 33.54"
hem 324cm / 126.36"
Sleeve length 39cm / 15.21"
Cuff 27cm / 10.53"


Size 4XL/US16-18/EUR44
length 146cm / 56.94"
Shoulder 40cm / 15.6"
bust 106cm / 41.34"
Waist 90cm / 35.1"
hem 328cm / 127.92"
Sleeve length 40cm / 15.6"
Cuff 28cm / 10.92"




We ship worldwide.

Tracking numbers provided for all orders.

Return Policy

Refund Policy


Thank you for shopping at VCshoes. Our online shop provides unique fashion products from our independent designers, backed by high quality material and reliable production. Our production team inspect each product before packaging to make sure it meets our dispatch standards.


If you are not entirely satisfied with your purchase, our refund policy is valid for up to 30 days. If 30 days have gone by since you received your purchase, unfortunately we can’t offer you a refund or exchange and you will only be issued store credit.

Refunds will also not be accepted if items are not in their original condition, with tags attached (including the cotton dust bag).

EXCHANGES/RETURNS

We offer 30 days to return your items by from date of receiving, as long as the items are still in their original condition and tags still attached.

Please note we do not cover returns postage.

It can take up to 5 business days for your return to be processed by the warehouse and once it has we will process the refund back to the original payment method.

Once you receive this email, it can take up to 5 business days for the funds to reach your account, depending on your payment provider.


ORDER CANCELLATION

We offer a full refund if the order is cancelled within 24 hours of your purchase. Please submit a help query to sophia@vcshoes.com if you decide to cancel your order. For orders cancelled after 24 hours of purchase, but have not yet been shipped we will offer a partial refund, after charging a 15% cancellation fee. We will NOT accept a cancellation request once the order has been shipped.

CONTACT US

If you run into any further issues, feel free to email us at sophia@vcshoes.com

Shipping Policy

Processing Time

After your payment is authorized and verified, Orders are processed within 3 business days. This is just an estimate and doesn't include weekends or holidays.

Delivery Time

Free Standard Shipping deliver time 12-20 business days

Shipping Costs

Standard shipping: Free

Duties and Taxes

You may need pay for Local Customs Import Tariffs, it's determined by local law. Usually it will be on behalf of the charges by the courier company, if the courier company charged you, please ask them for the reason.

Want to contact us? You can send mail to sophia@vchoes.com

Customer Reviews
Here are what our customers say.
Write a Review
Customer Reviews
Wow you reached the bottom
Newest
Most liked
Highest ratings
Lowest ratings
×
class SpzCustomFileUpload extends SPZ.BaseElement { constructor(element) { super(element); this.uploadCount_ = 0; this.fileList_ = []; } buildCallback() { this.action = SPZServices.actionServiceForDoc(this.element); this.registerAction('upload', (data) => { this.handleFileUpload_(data.event?.detail?.data || []); }); this.registerAction('delete', (data) => { this.handleFileDelete_(data?.args?.data); }); this.registerAction('preview', (data) => { this.handleFilePreview_(data?.args?.data); }); this.registerAction('limit', (data) => { this.handleFileLimit_(); }); this.registerAction('sizeLimit', (data) => { this.handleFileSizeLimit_(); }); } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } setData_(count, file) { this.uploadCount_ = count; this.fileList_ = file; } handleFileUpload_(data) { data.forEach(i => { if(this.fileList_.some(j => j.url === i.url)) return; this.fileList_.push(i); }) this.uploadCount_++; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileUpload", { count: this.uploadCount_, files: this.fileList_}); if(this.fileList_.length >= 5){ document.querySelector('#review_upload').style.display = 'none'; } if(this.fileList_.length > 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '8px'; } } handleFileDelete_(index) { this.fileList_.splice(index, 1); this.uploadCount_--; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileDelete", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; if(this.fileList_?.length === 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '132px'; } } handleFilePreview_(index) { const finalPreviewData = this.fileList_[index]; const filePreviewModal = document.getElementById('filePreviewModal'); const fullScreenVideo = document.getElementById('fullScreenVideo'); const fullScreenImage = document.getElementById('fullScreenImage'); const previewModalClose = document.getElementById('previewModalClose'); const previewLoading = document.getElementById('previewLoading'); filePreviewModal.style.display = 'block'; previewLoading.style.display = 'flex'; if(finalPreviewData?.type === 'video'){ const media = this.mediaParse_(this.fileList_[index]?.url); fullScreenVideo.addEventListener('canplaythrough', function() { previewLoading.style.display = 'none'; }); fullScreenImage.src = ''; fullScreenImage.style.display = 'none'; fullScreenVideo.style.display = 'block'; fullScreenVideo.src = media.mp4 || ''; } else { fullScreenImage.onload = function() { previewLoading.style.display = 'none'; }; fullScreenVideo.src = ''; fullScreenVideo.style.display = 'none'; fullScreenImage.style.display = 'block'; fullScreenImage.src = finalPreviewData.url; } previewModalClose.addEventListener('click', function() { filePreviewModal.style.display = 'none'; }); } handleFileLimit_() { alert(window.AppReviewsLocale.comment_file_limit || 'please do not upload files more than 5'); this.triggerEvent_("handleFileLimit"); } handleFileSizeLimit_() { alert(window.AppReviewsLocale.comment_file_size_limit || 'File size does not exceed 10M'); } clear(){ this.fileList_ = []; this.uploadCount_ = 0; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleClear", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; } mediaParse_(url) { var result = {}; try { url.replace(/[?&]+([^=&]+)=([^&]*)/gi, function (str, key, value) { try { result[key] = decodeURIComponent(value); } catch (e) { result[key] = value; } }); result.preview_image = url.split('?')[0]; } catch (e) {}; return result; } triggerEvent_(name, data) { const event = SPZUtils.Event.create(this.win, name, data); this.action.trigger(this.element, name, event); } } SPZ.defineElement('spz-custom-file-upload', SpzCustomFileUpload);
The review would not show in product details on storefront since it does not support to.