Yickyue Egyptina Cotton Bedding Set Luxury Pink Lace Ruffle Duvet Cover Bedspread Bed Skirt Pillowcases Korean Princess Home Textile

$139.12
🚚Global Fast logistics. 7-12 Days To US & UK💲Secure payments. ✅30days Returns
Color:  White
Size:  1.5M Bed Skirt 4pcs
Quantity
Free worldwide shipping
30 Days returns, 100% Money Back Guarantee
7*24h Service at: support@yickyue.com
Secure payments
people are viewing this right now
Shipping

Description

Size: 1 cm = 0.3937 inch

 

Bed Skirt design:

3pcs 1.2M Bed skirt: For 1.2 x 2.0 M bed

duvet cover: 150 x 200 cm  1pcs

bed     skirt:  120 x 200 + 45 cm  1pcs

pillowcases:   48 x 74 cm  2pcs


 

4pcs 1.5M Bed skirt: For 1.5 x 2.0 M bed

duvet cover: 200 x 230 cm  1pcs

bed     skirt:  150 x 200 + 45 cm  1pcs

pillowcases:   48 x 74 cm  2pcs


 

4pcs 1.8M Bed skirt: For 1.8 x 2.0 M bed

duvet cover: 200 x 230 cm  1pcs

bed     skirt:  180 x 200 + 45 cm  1pcs

pillowcases:   48 x 74 cm  2pcs


 

4pcs 2.0M Bed Skirt: For 2.0 x 2.2 M bed

duvet cover: 220 x 240 cm  1pcs

bed     skirt:  200 x 220 + 45 cm  1pcs

pillowcases:   48 x 74 cm    2pcs

 

Kindly Reminder:

•Manual measurement 1 - 3 cm error is allowable.

•Because Country different of the bedding set size, please make sure the size is fit for your bed or not according my describe measurement first Before make order.
• The picture Maybe show 6pc or more with some pillows, but our product just comes with 2 pillow shams.
• Due to the pillow shams fabric cuts from the duvet cover, so maybe is not same with the picture, but always same style with the bedding sets.
•Because of the different displays, Wecan`t promise there have no color difference between the picture and the real product, maybe a little.

• Product price does not include thecustomstraiffs, Free Shipping does not mean you don't need to pay extra customs traiffs. Please understand!

• We have wholesale price for bulk purchase, pls feel free let me know if you need.


 

Payment:

•All forms payment need to go through Escrow.

•Payment methods: (all credit card payment will go through Escrow)
After you bought the item, an email with Checkout procedure will be send to your order email address.

You may also click the the "Checkout or Pay Now" button to complete the checkout.


 

Care Instructions:

• Machine washable or dry cleaning

• Select normal detergent.

• Keep the water degree below 30, the time for soaking will not exceed 20 minutes.

• Keep the un-diluted washing detergent out of this product so that local fade will not occur.
• Please make the reverse side of this material to the sun when drying in order to keep the color fresh forever.
• The first wash can usually fade the color of the set in an acceptable manner. For this reason, when you wash the set for the first time, do NOT mix with other textile items in your wash machine.


Return Policy:

•We do offer refunds or exchange. All returns/exchanges must notified us with 48 hours of receiving the product. Returns/exchanges must be received by us within 15 days close of order. Refunds is given once the product is return. Shipping and handling charge, insurance and return shipping are non-refundable for all returned or exchange items.

Buyer has to pay for shipping fee of the returns/exchange.

•All returns/exchanges must be in original packaging and resalable condition . We will not accept any used, washed, stained, damaged, wrinkled or soiled etc.


Feedback Policy:

•please leave positive feedback after you receive the item.

Please contact us if you are dissatisfied with our products or service before you left a negative feedback, we will try our best to assist you resolve any problems.

•We will be happy to do good business with you.

Communication, The best way to resolve any disputes.


Customer support:

Our qualify customer service will help you with any problem or question you might have.

•All Email will be answer within 12 hours.
Please be sure to reference the ORDER NUMBER that you are buying on with ALL correspondence.

•Shipping and handling charge, Payment instructions, Return policy are part of Terms of Sale. We assume you have read and accepted them if you place your order.


Buy with confidence:

We want you to buy with confidence...

•We do not carry secondary or refurbished goods. All the items we sell are high quality, and speedy shipping. A No Questions Asked Money Back Guarantee!

Our prices are so low, because we directly wholesale or manufacturer our products, and therefore cut out any middleman to keep our cost to you at the lowest possible.



 

We do care about anything you care. Reading above product descriptions carefully pls before purchase.

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.