Kids Twin Size Trundle Bed with Storage Drawers

$389.99
Color:  White
Quantity
Free Shipping And Delivery Within 3-5 Business Days
30-day Return
Payment Safety

Description

Feature:

  • Extendable Truck and Large Storage Space: Our Twin Captain Bed features a 108.5 x 199.62 cm trunk under the bed, providing guests with extra sleeping space. Also, there are 3 large storage drawers for you to store your daily necessities, books or toys.

  • Multi-functional and dual-purpose design: Combining the functions of the wooden bed and sofa with the storage function fully improves the space utilization. Simple styling complements existing décor perfectly. With it, children and guests can sit on it, read a book, play games, or just lie down and rest.

  • Modern and Practical Double Bed: Our modern and stylish twin bed can be perfectly matched with different decoration styles or furniture. The non-toxic and odorless spray paint on the surface will not harm the health of you or your family, and can be used with confidence.

  • Stability Enhanced Structure: In order to improve the overall stability and durability, we have strictly screened high-quality wood to ensure the safety of children. Supported by wooden slats, provide users with strong support and ensure high-quality sleep.

  • Easy Assemply and Maintenance: With no spring requirements, our twin captain's bed is easy to assemble. Detailed instructions and complete accessories help you complete the entire assembly process accurately.

Specification:

  • Material: Wood
  • Product Dimensions: 78.6"L x 95.4"W x 36.2"H
  • Color: Brown,White
  • Shape: Rectangular

Alt

Shipping Policy

Ship from USA(1-3 business days for processing)

The shipping scope includes all regions in the United States excluding Alaska, Hawaii, Puerto Rico, and Guam.

Shipping Method Shipping Time Costs
STANDARD SHIPPING Estimated Delivery Time:3-5 Business Days Free

* Shipping time is estimated and commences from the date of shipping, rather than the date of order, and can take longer than expected date due to invalid address, customs clearance procedures or other causes.


* Please contact us within 3 months of shipment if the package does not arrive in time. Note that overdue requests may not be accepted.


During peak sale season, the delivery time of your package(s) may take a little bit longer. Thanks for your patience. Please go to "How To Track" page to learn how to track your items.
Return & Refund

Return Policy

We hope you love what you've ordered! But just in case you're not 100% satisfied, we've made the return process super easy.

How long do I have to make a return?

Please contact us within 30 days upon receiving the items to initiate the return process if you are not satisfied with your order.

What is the return method, and do I have to pay a return shipping charge

Pack your items carefully and send them through your local post office to make sure they arrive safely.
(Return by yourself at your own cost)

How do I make a return?



1. Please Contact Us to get in touch with our customer service team and describe the items you want to return and the reason for your return.

2. Pack your items carefully and send them through your local post office to make sure they arrive safely.

3. We will process the return or exchange as soon as we receive your package.

4. Once your refund is issued, you will receive a confirmation email. TOLEAD cannot refund, reimburse, cover, or otherwise be responsible for any fees not paid to tolead.com. This includes any customs taxes or VAT as well as any return shipping costs you may incur in the refund process. Refunds are issued back to the original form of payment used to purchase the order.

How can I get the return address?

We have warehouses in USA! If you want to return the items to the nearest return address, please contact us and our customer service representatives will get back to you within 24 hours.

Can I still return items if they are worn, damaged, or have the tags removed?

1. Items must be returned unworn, unwashed, undamaged, and with all original tags attached.

2. Items with non-returnable marks and free gifts cannot be returned.


Note:

1. Please confirm the return address with our customer service. The Wrong return address will affect processing your return.

2. Please be sure to double-check your returns before shipping them out. We will not be held responsible for the return of non-TOLEAD products.

3. If you receive a damaged/defective item, please contact TOLEAD Customer Service within 24 hours of receipt.

How will I get my refund?

Your request will be processed within 1-3 business days after we receive your return. The refund will be issued to your bank account or the original payment account, as per your request.

Note:

1. The original shipping fee and shipping guarantee are non-refundable.

2. Please contact us within 3 months if you have any issues with your orders. Note that overdue requests may not be accepted.
Do I need to pay for the restock fee?
There is no restocking fee for the returned items that meet the condition of selling.
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.