4-in-1 Pull Out Chair & Single Sofa Bed

45 sold
$26.98
$125.33
-78%
Color:  Modern Green
Quantity

Description

About this item

  • 【Not Long Enough for Lying?】: Say goodbye to the awkward size that your feet need curled up! This chair bed length is 84” , 15.8’’longer than market sofa beds, making it friendly to most people. Relax yourself on the pull out chair while lying down
  • 【Sitting Like on A Steel Frame?】: We did lots of research about market common issue of complain.Then we upgraded the fabric and foam to get the most comfort. High quality foam balance softness and support. The fabric is more breathable and wear-resistant
  • 【Dented and Broken Frame?】: We put quality at first, so we made 500 lbs bearing VS market 300 lbs. Constructed from a high duty metal frame, the chair bed has passed 200 times 250 lbs push back test and 500 lbs pressure test before leaving the factory
  • 【More Function VS Market】: (1) 4 in 1 than market 3 in one that include: a sofa chair, recliner bed, lounge bed or sofa bed to meet all your needs. (2) 6 backrest angle VS market 3 angle for better feeling. (3) Extra storage area and 2 side big pockets
  • 【Can't Find Customer Service Help?】: We always stand by our products. If you have any questions about the Sleeper chair, please feel free to contact with us. Our customer service team will respond within 24 hours and lifetime technical support

Brand ZZW
Assembly Required Yes
Seat Depth 32 inches
Seat Height 33 Inches
Weight Limit 500 Pounds
Product Dimensions 32"D x 32"W x 32"H
Item Weight 95.5 Pounds
Type Sofa Bed
Color White
Special Feature Four In One, Convertible, Space Saving, Padded Seat, Adjustable Backrest
Upholstery Fabric Type Linen
Arm Style Armless
Pattern Solid
Back Style Square Back
Age Range (Description) Adult
Cushion Style Tufted
Number of Pieces 1
Leg Style Block
Seat Cushion Quantity 1
Cushion has removeable cover true
Product Care Instructions Immediately blot the area with a clean, Dry cloth to wipe down the fabric regularly to remove dust and dirt.For stains, Inconspicuous area first., Damp cloth (avoid rubbing) and use a mild fabric cleaner if necessary.Test any cleaner on a small, Use a soft
Seat fill material Foam
Indoor/Outdoor Usage Indoor
Furniture leg material Wood
Seat back fill material Foam
Back cushion removability Semi-attached
Seat cushion removability Removable
Included Components Cushion, Ottoman
Fill Material Foam
Warranty Type Lifetime
Frame Color White
Item Firmness Description Medium (balancing softness and support)
Reclined Length 84 Inches
Material Feature High quality foam, fabric
Component Connector Assembly Not Required
Furniture Leg Color Black
Seat Cushion Configuration Single Cushion Seat
Upholstery Color White
Reclining Seat Count 1
Reclining Position Count 6
Is Customizable No
Cushion Construction Fabric
Item Weight 95.5 pounds
Manufacturer ZZW
ASIN B0D8TCW5HB
Country of Origin China
Item model number 6004
Customer Reviews

4.0 out of 5 stars
Best Sellers Rank #159,418 in Home & Kitchen ()
#191 in
Date First Available July 4, 2024

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.