Gift for Her/Softest Satin Pajama - Mother's Day Gift

people are viewing this right now
$19.99
$39.99
-$20.00
  • Deliver to: |
Color:  White
Size:  S
Style:  Short Sets (short sleeve's top and shorts)
Quantity

Description

💗💗💗New Arrivals! CUSTOMIZED GIFTS!💗💗💗

NEW!!! We offer 2 styles: SHORT sets (short sleeve's top and shorts), and LONG sets (long sleeve's top and pants). 

💗SIZE GUIDE💗 (Pajamas run big!)
SMALL: US Dress Size 0-4
MEDIUM: US Dress Size 6-8
LARGE: US Dress Size 10-12
XLARGE: US Dress Size 14-16
XXLARGE: US Dress Size 18-22

💗Sizing & Fit (in inches) for SHORT PAJAMAS (short sleeves & shorts)
SMALL (US Dress Size 2-4): SHOULDER 15.7 /BUST 39.4 /LENGHT OF TOP 26 /WAIST OF SHORTS 43.3 /LENGHT OF SHORTS 12.6
MEDIUM (US Dress Size 6-8): SHOULDER 17.7 /BUST 42.5/LENGHT OF TOP 27.6 /WAIST OF SHORTS 44.9 /LENGHT OF SHORTS 13
LARGE (US Dress Size 10-12): SHOULDER 18.1 /BUST 47.2 /LENGHT OF TOP 28 /WAIST OF SHORTS 48 /LENGHT OF SHORTS 13.4
XLARGE (US Dress Size 14-16): SHOULDER 19.7 /BUST 51.2/LENGHT OF TOP 28 /WAIST OF SHORTS 51.2 /LENGHT OF SHORTS 13.8
XXLARGE (US Dress Size 18-22): SHOULDER 20.9 /BUST 53.5 /LENGHT OF TOP 29 /WAIST OF SHORTS 55 /LENGHT OF SHORTS 13.8

💗Sizing & Fit (in inches) for LONG PAJAMAS (long sleeves & pants)
SMALL (US Dress Size 2-4): SHOULDER 15.7 /BUST 39.4 /LENGHT OF TOP 26 /LENGHT OF SLEEVE 22 /WAIST OF PANTS 43.3 /LENGHT OF PANTS 39
MEDIUM (US Dress Size 6-8): SHOULDER 17 /BUST 43 /LENGHT OF TOP 27 /LENGHT OF SLEEVE 22 /WAIST OF PANTS 45 /LENGHT OF PANTS 39
LARGE (US Dress Size 10-12): SHOULDER 18 /BUST 47 /LENGHT OF TOP 28 /LENGHT OF SLEEVE 22.5 /WAIST OF PANTS 48 /LENGHT OF PANTS 39
XLARGE (US Dress Size 14-16): SHOULDER 20/BUST 51.2 /LENGHT OF TOP 28.3 /LENGHT OF SLEEVE 23 /WAIST OF PANTS 51 /LENGHT OF PANTS 40
XXLARGE (US Dress Size 18-22):SHOULDER 21/BUST 54 /LENGHT OF TOP 29 /LENGHT OF SLEEVE 23 /WAIST OF PANTS 55/LENGHT OF PANTS 40

💗 FREE GIFT WRAPPING 💗
💗 HIGHEST QUALITY Silky satin matte fabric
💗 MIX & MATCH as many colors as you’d like
💗Add CUSTOMIZATION of your choice - Monogram, Initial, name or title.
💗How to Order
Select the color and size of your choice
You can choose as many colors/sizes/combinations as you want, add them separately into your cart and check out together to SAVE on SHIPPING
💗 Color for customization: white, gold, silver, burgundy, rose gold, black, dusty blue, navy, maple
All monogram letters will be printed exactly as provided by the buyer, please provide in the following order First/Last/Middle
If text color is not chosen, we will do in default colors gold, rose gold or white.

💗Care: Hand wash cold. Iron with low heat.

If you have any problem with your order, please contact us within 3 days after delivery. Customized items can not be returned or exchanged.

Shipping & Returns

  • Orders can be cancelled or modified within 2 hours after being placed.
  • International orders: It may take additional days if orders have to go through customs. We have no influence on the customs process and apologize for any inconvenience due to delivery delays resulting from this.
  • For more detailed information and instructions, please visit our Replacement & Refund Policy.
  • Learn more about Shipping Policy here.

Personalization

  • Please complete fields required to customize options (Name/Characteristics) and recheck carefully all the customized options.
  • Text: Standard English excluding special characters, emojis to ensure the best looking.
  • Characteristics: Pick one-by-one options that match your description.
  • The last step, click “ADD TO CART” and wait for us to create your wonderful creation ❤️.
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.