Patio Sofa Set, 4 Pieces Outdoor Sectional Furniture, Acacia Solid Wood Patio Conversation, Cushioned Sofa Set with Coffee Table for Patio Garden Poolside Deck

$389.99
Quantity
Description

SEGMART 4 Piece Sectional Sofa Set with Cushions will be a good choice if you want to relax and enjoy some time outside. Our outdoor patio furniture set is designed for relaxation and parties. You can enjoy a coffee in the morning sun, tea after lunch and a beer at a party. Adopting high-quality acacia wood frame that can last years to come. The thickened cushion for leaning, which can be easily removed and cleaned, provides you with the greatest degree of comfort. Perfect for patio, garden, backyard, poolside, balconies. You will like it so what are you still waiting for? We will lead you to experience unprecedented comfort and pleasure to be better at enjoying your leisure time.

【Comfortable Sofa Set】

This contemporary outdoor sectional sofa comes with enough room to seat 4 friends comfortably.

【Material】

Made of high-quality acacia wood frame, all-weather resistant synthetic resin is built to last while having a sleek and stylish finish.

【Comfortable & Convenient】

The 3.9" thicker sponge cushions and backrests fill with high-density foam, which provides extraordinary comfort while relaxing in your leisure time. The cushion covers are made of superior fabric, which is durable and washable.

【Suitable for Outdoor Decoration】

This stylish furniture set will be the beautiful scenery on your patio, backyard or balcony. You can enjoy the cozy time whether sitting or lying and it is suitable for you to entertain your neighbors or friends on a day off.

【Sectional & Separable Design】

This patio sectional sofa set includes 2 single sofas, 1 loveseat sofa, and 1 table in total. You can combine them according to your needs and preferences. Each piece of furniture can also be used individually. Our patio set can be widely used in your home.

【Easy Assembly】

This garden furniture set comes with all hardware & necessary tools. Following the instruction, you can easily and quickly assemble the patio sofa set. NOTE: When you try to install the Patio Furniture Set, try to line the hole together on all sides,    do not over-tight one hole, then try to tighten it slowly on each side.

Specification:

Material:  Acacia Wood, Sponge, Polyester Fabric

Cushion Color: Gray

Seating Capacity: 4

Package Number: 2

Assembly Required: Yes

Overall Product Weight: 126.76 lbs

Size:

Single Sofa: 25.5'' D x 32.6'' W x 34.2'' H

Loveseat Sofa: 46” D x 32.6'' W x 34.2'' H

Tea Table: 39.3'' L x 22" W x 15.7'' H

Seat Cushion Thickness: 3.9''

Weight Capacity:

Sofa: 250 lbs/Seat

Table: 175 lbs

Package Size:

Box 1: 28.35 x 24.41 x 19.69 in / 45.19 lbs

Box 2: 48.82 x 24.8 x 15.35 in. / 81.57 lbs

Package Include:

2 x Single Sofas

1 x Loveseat  Sofa

1 x Table

3 x Seat Cushions

4 x Back Cushions

1 x Accessories Bag

1 x User Manual

 

  • [High Quality] - Our sets feature modern designs and are constructed of high-quality materials that are ensured to last, Arrange the sofas however you like!

  • [All-weather Material] - Outdoor patio furniture sets made of high-quality acacia wood which has the advantages of high tensile strength, water resistance, long service life and so on.

  • [Comfortable Sofa with Cushions] - Our outdoor sofa set comes with padded seat cushions and thick back cushions, which are filled with an elastic sponge to provide the ultimate comfort to you. You can sit or lie on the sofa to help you forget the fatigue of the day.

  • [Low Maintenance] - The cushions only require minor spot cleaning with a damp rag, water, and mild soap for endless beauty season after season.

  • [Ideal Outdoor Furniture Set] - Versatile enough to fit most of the space such as patio, garden, park, yard, poolside and more.

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.