🔥V-Neck Effortless Wide Leg Jumpsuit
🔥V-Neck Effortless Wide Leg Jumpsuit
🔥V-Neck Effortless Wide Leg Jumpsuit
🔥V-Neck Effortless Wide Leg Jumpsuit
🔥V-Neck Effortless Wide Leg Jumpsuit
🔥V-Neck Effortless Wide Leg Jumpsuit
🔥V-Neck Effortless Wide Leg Jumpsuit
🔥V-Neck Effortless Wide Leg Jumpsuit
🔥V-Neck Effortless Wide Leg Jumpsuit
🔥V-Neck Effortless Wide Leg Jumpsuit
🔥V-Neck Effortless Wide Leg Jumpsuit
🔥V-Neck Effortless Wide Leg Jumpsuit
🔥V-Neck Effortless Wide Leg Jumpsuit
🔥V-Neck Effortless Wide Leg Jumpsuit
🔥V-Neck Effortless Wide Leg Jumpsuit
🔥V-Neck Effortless Wide Leg Jumpsuit
🔥V-Neck Effortless Wide Leg Jumpsuit
🔥V-Neck Effortless Wide Leg Jumpsuit
🔥V-Neck Effortless Wide Leg Jumpsuit
🔥V-Neck Effortless Wide Leg Jumpsuit
🔥V-Neck Effortless Wide Leg Jumpsuit
🔥V-Neck Effortless Wide Leg Jumpsuit
🔥V-Neck Effortless Wide Leg Jumpsuit
🔥V-Neck Effortless Wide Leg Jumpsuit

🔥V-Neck Effortless Wide Leg Jumpsuit

Price

$53.98 $28.98
Save 46%

color - Red

Please select a color

size

Please select a size

Quantity

Easy returns
Free Shipping Order Over $69
Sustainably made
Secure payments

Loved by over 30,000 happy customers in the US.

  • PayPal certified merchants in good standing.
  • Facebook officially recommends high-quality merchants.
  • ✅Support PalPay and global credit card payment.
  • Google SSL security certificate guarantees your privacy.
  • Global super fast air transportation.

Casual And Cozy Choice

undefined

Perfect for summer

This summer dress in airy and very comfortable material is perfect for a hot summer day and can be worn on all summer occasions. Be it on the beach or at a party.

undefined

 

Style: Casual

Occasion:Daily

Season:Spring/Summer/Autumn

Pattern Type: Print

Size Chart:

SIZE UK  Length(in) Chest(in) Waistline(in) Hip(in)
S 8 49.6 33 30.7 48.8
M 10 50.0 35 32.6 50.8
L 12 50.4 37 34.6 52.8
XL 14 50.8 39 36.6 54.7
2XL 16 51.2 41 38.5 56.7
3XL 18 51.6 43 40.5 58.6
4XL 20 52.0 45 42.5 60.6
5XL 22 52.4 47 44.4 62.6

Note:

1. Please allow slight 1-3cm(0.4-1.18") difference due to manual measurement and a little color variation for different display setting

2. Size doesn't fit all, please carefully check size chart and select the size based on your real size

3. If you are not sure, please choose a larger size.(1cm=0.39inch,1cich=2.54cm)

✅WHY US?

We work directly with manufacturers all over the world to ensure the best quality of our products. We have Quality Control department which help us to keep our promise!

Price is always competitive.

Awesome Customer Service

Amazing products along with High Quality

Read reviews from our lovely customers

Free Shipping

Free shipping for orders.

Return

100% satisfaction guarantee and 15-day, no hassle returns.

 Worldwide Shipping ✈  
Please note that shipping is insured and requires multiple working days..However, you may receive your items earlier. Tracking Numbers will ALWAYS be sent so you can track it every step of the way! Cool things are worth waiting for!
 100% Risk-Free Purchase  
If you bought it and felt that it is not for you, don't worry. Just shoot us a message, and we will make it right by offering you a replacement or refund. 100% Simple & Risk-Free process.
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.