Welcome to our store

  • Home
  • Catalog
  • Collections

THE.png

  • Home
  • Catalog
  • Collections
Cart

THE Z HUT

Devoko 5 Pieces Patio Furniture Sets All Weather Outdoor Sectional Patio Sofa Manual Weaving Wicker Rattan Patio Seating Sofas with Cushion and Glass Table(Beige)

Regular price $349.99
Regular price $349.99 Sale price $349.99
Sold out
Size
Color
(function(f) {var _np=(window.P._namespace("PremiumAplusModule"));if(_np.guardFatal){_np.guardFatal(f)(_np);}else{f(_np);}}(function(P) { P.now('premium-module-5-comparison-table-scroller').execute(function(init){ if (init) { return; } P.register('premium-module-5-comparison-table-scroller', function(){ return function() { P.when('jQuery', 'a-popover', 'A', 'ready').execute(function($, popover, A) { function initCompTable(module) { /** * Premium comparison table: popover trigger module */ var comparisonName = $(module).data('comparison-name'); (function() { var $additionalInfo = $('.aplus-v2 .aplus-popover-trigger'); $additionalInfo.each(function(i, trigger) { return popover.create(trigger, $(trigger).data()); }); $additionalInfo.hover( function() { $(this).focus(); } ); })(); /** * Premium comparison table: adjust column width module */ (function() { var VISIBLE_COLUMNS = 4.2; /* How many visible columns on load */ var MIN_WIDTH = 230; var getWidth = function() { return $(this).outerWidth(); } /* cache selectors */ var $container = $('.aplus-v2 .comparison-table #'+comparisonName), $header = $('.aplus-v2 .comparison-table #'+comparisonName+' td.attribute'), $slider = $('.aplus-v2 .comparison-table #'+comparisonName+' .table-slider'), $columns = $('.aplus-v2 .comparison-table #'+comparisonName+' .aplus-data-column'), $activeColumn = $('.aplus-v2 .comparison-table #'+comparisonName+' .aplus-data-column.active.active-item'); /* Formula for determining desired column width */ var calculatedColumnWidth = Math.floor( ($container.innerWidth() - $header.innerWidth()) / VISIBLE_COLUMNS ); var childWidths = $activeColumn.map(getWidth).get(); var maxChildWidth = Math.max(MIN_WIDTH, Math.max.apply(Math, childWidths)); var minColumnWidth = $columns.innerWidth(); /* set the min-width of each column to the calulated width or minWidth */ $columns.css( 'min-width', Math.max(MIN_WIDTH, (calculatedColumnWidth < minColumnWidth ? calculatedColumnWidth : minColumnWidth)) ); $activeColumn.css('width', maxChildWidth); /* show the component */ $container.removeClass('loading'); })(); /** * Premium comparison table: sticky attribute & column */ (function() { /* cache selectors */ const comparisonTable = document.querySelector('.aplus-v2 .comparison-table #'+comparisonName); const header = comparisonTable.querySelector('td.attribute'); const fixedColumn = comparisonTable.querySelector('td.active'); const attributeColumnObserver = new ResizeObserver((entries) => { for (let entry of entries) { const bounds = entry.target.getBoundingClientRect().width; const activeCellWidth = window.getComputedStyle(fixedColumn).left; if (bounds + "px" !== activeCellWidth) { const activeCells = document.querySelectorAll('.aplus-data-column.active'); activeCells.forEach(cell => cell.style.left = bounds + "px"); } } }) attributeColumnObserver.observe(header) })(); /** * Premium comparison table: top scroll bar */ (function() { /* cache selectors */ var $header = $('.aplus-v2 .comparison-table #'+comparisonName+' td.attribute'), $fixedColumn = $('.aplus-v2 .comparison-table #'+comparisonName+' td.active'), $scrollWrapperTop = $('.aplus-v2 .comparison-table #'+comparisonName+' .scroll-wrapper-top'), $scrollWrapperBottom = $('.aplus-v2 .comparison-table #'+comparisonName+' .scroll-wrapper-bottom'), $scrollWidth = $('.aplus-v2 .comparison-table #'+comparisonName+' .scroll-width'), $scrollBar = $('.aplus-v2 .comparison-table #'+comparisonName+' .scroll-bar'); /* confirm fixed column exists and can add width to the total width of the scroll bar */ var fixedColumnWidth = $fixedColumn.innerWidth(); if ( fixedColumnWidth === null ) { fixedColumnWidth = 0; } /* set width of scrollBar */ $scrollBar.css('width', $scrollWidth.innerWidth() + fixedColumnWidth + $header.innerWidth()); /* connect scrolls together */ $scrollWrapperTop.scroll(function() { $scrollWrapperBottom.scrollLeft($scrollWrapperTop.scrollLeft()); }); $scrollWrapperBottom.scroll(function() { $scrollWrapperTop.scrollLeft($scrollWrapperBottom.scrollLeft()); }); })(); } $('.aplus-v2 .premium-aplus-module-5 .table-container').each(function(index, module) { initCompTable(module); }); }); } }); }); }));
Previous page
Next page
P.now("premium-aplus-13-carousel-3").execute(function(init) { if (init) { return; } P.register("premium-aplus-13-carousel-3", function(){ return function() { P.when("A", "jQuery", "a-carousel-framework", "ready").execute(function (A, $, framework) { const ENTER_KEY_CODE = 13; const ESCAPE_KEY_CODE = 27; var moduleId = "3"; var carouselName = "premium-aplus-13-carousel-3"; var paginationAction = "aplus-pagination-dot-action-" + moduleId; var paginationGroup = "#aplus-pagination-group-" + moduleId + "-" + carouselName; /* If the carousel goes to a new page */ A.on("a:carousel:"+carouselName+":change:pageNumber", function (data) { A.$(paginationGroup+" .carousel-slider-circle").removeClass("aplus-carousel-active").attr('aria-selected', 'false').attr('tabindex', -1) .eq(data.newValue - 1).addClass("aplus-carousel-active").attr('aria-selected', 'true').attr('tabindex', 0); }); function syncPaginationDotsWithCarouselPages(numPages) { const children = document.querySelector(paginationGroup).children; for(let i = 0; i < children.length; i++) { if (i >= numPages) { // If number of dots > num of pages, we should hide other dots children[i].classList.add('aplus-pagination-dot--display-none'); } else if(children[i].classList.contains('aplus-pagination-dot--display-none')){ // Reset display of dots if it was hidden before children[i].classList.remove('aplus-pagination-dot--display-none'); } } } framework.onInit(carouselName, function (carousel) { var totalPages = carousel.getAttr('totalPages'); syncPaginationDotsWithCarouselPages(totalPages); /* Resize event handler to re-calculate the pagination dots count based on orientation */ window.addEventListener('resize', function() { carousel.resize(); totalPages = carousel.getAttr('totalPages'); syncPaginationDotsWithCarouselPages(totalPages); }); A.declarative(paginationAction, 'click keydown', function(event){ var isClick = event.type === 'click'; var isKeydown = event.type === 'keydown'; var isEnter = isKeydown && event.$event.keyCode === ENTER_KEY_CODE; var isEsc = isKeydown && event.$event.keyCode === ESCAPE_KEY_CODE; if (isClick || isEnter) { var data = event.data; carousel.gotoPage(data.page); } else if (isEsc) { // force remove focus event.$target.blur() } }); }); }); } }); });
(function(f) {var _np=(window.P._namespace("PremiumAplusModule"));if(_np.guardFatal){_np.guardFatal(f)(_np);}else{f(_np);}}(function(P) { P.when("premium-aplus-13-carousel-3").execute(function(init){init();}); }));

More choice for YOU - Decorate your outdoor living life

2 Pieces Sectional Sofa

logShoppableMetrics("premium-module-5-comparison-table-scroller", false)
Buying Options

6 Pieces Sectional Sofa

logShoppableMetrics("premium-module-5-comparison-table-scroller", true)

7 Pieces Sectional Sofa

logShoppableMetrics("premium-module-5-comparison-table-scroller", true)

4 Pieces Sectional Sofa

logShoppableMetrics("premium-module-5-comparison-table-scroller", false)
Buying Options

Outdoor Daybed

logShoppableMetrics("premium-module-5-comparison-table-scroller", true)
Customer Reviews
4.4 out of 5 stars 149
4.0 out of 5 stars 1,802
4.0 out of 5 stars 977
4.0 out of 5 stars 1,802
4.0 out of 5 stars 414
Price
— $399.99$399.99 $419.99$419.99 — $299.99$299.99
Water Resistance
✔ ✔ ✔ ✔ ✔
Easy Assemble
✔ ✔ ✔ ✔ ✔
UV Protected
✔ ✔ ✔ ✘ ✔
Pieces number
2 Pieces 6 Pieces 7 Pieces 4 Pieces 4 Pieces
Weight Capacity
330 lbs 330 lbs 330 lbs 330 lbs 330 lbs
Applicable Scene
garden, backyard, deck, etc garden, backyard, deck, etc garden, backyard, deck, etc garden, backyard, deck, etc garden, backyard, deck, etc
(function(f) {var _np=(window.P._namespace("PremiumAplusModule"));if(_np.guardFatal){_np.guardFatal(f)(_np);}else{f(_np);}}(function(P) { P.when('premium-module-5-comparison-table-scroller', 'ready').execute(function(init){ init() }); }));
  • Modern & Comfortable: Modern design outdoor sectional patio sofa with High-quality thickened seat and back cushions take you more extraordinary comfort, enjoy your leisure time whatever sitting or lying, suitable for entertaining your neighbors or friends.
  • Sturdy & Durabce: This outdoor sectional patio sofa sets with solid frame, high quality PE wicker are strong enough to withstand all weather variations. Thickened water resistant durable cushions and tempered glass are easy to clean.
  • Sectional & Suitable: Patio furniture Sectional sofa sets freely rearranged into different combination for different occasion, Widely used for outdoor patio, porch, backyard, balcony, poolside, garden and other suitable space in your home. (When you don' t use it, advise you to take cushions inside or buy a cover for longer service time)
  • Separable & Multifunctional: This outdoor sectional patio sofa sets are 2 boxes including, 2 corner chair, 1 armless chair, 1 ottoman chair, 1 glass coffee table. This moveable design allows it to adjust a required combination and change to different shapes for seating or lying
  • Warranty & Support: What We offer: A new 5 pieces sectional sofa, Complete installation tools, An installation instruction(Notice: There are two boxes in total. If you only receive one box, please not worry, the other box is on the way to your house.)
› See more product details
Color Beige
Brand Devoko
Size 5 Pieces set
Item Depth 83 inches
Item dimensions L x W x H 83 x 25 x 25 inches

Quick links

  • Search
  • Catalog
  • Collections
Payment methods
  • Choosing a selection results in a full page refresh.