💝 Last Day For Clearance💥360° Swivel Recliner Chair

$26.95
$88.84
-70%
Color:  Blue
Quantity

Description

TIPS: Our goods are authentic, with genuine patents, counterfeit must be investigated! Customers, please identify our products!
  • 😊 You can return items for a refund or exchange within 30 days.
  • 🚢 Shipping >> Worldwide Express Shipping Available.
  • 🚚 SHIPPING  WORLDWIDE.
  • 📦 Limited Stock At This Price.
  • 👨 9000+ Happy Customers.
  • 💳 Fast refund >> 100% guaranteed refund.
  • ⚡ Address: 3525 W Carson St, Torrance, CA 90503.
  • 🔥 99.3% of Reviewers Recommends This Product.🔥

👍We are  premier wholesale clearance company
🔥We have skilled inventory clearance experts who can buy and sell unwanted inventory. Such as bankruptcy inventory, surplus wholesale inventory, liquidation inventory, clearance and excess merchandise


Ultimate Outdoor Chair

Our promise: free full refund for quality problems within 180 days.

This is probably the most fun beach chair you can take with you to any outdoor activity.

 You can recline in 3 different positions for ultimate comfort while rotating in either direction. It can be easily transported with the use of the padded backpack straps. 

【360° Smooth Rotation】

The folding beach chair has a smooth swivel base. It not only provides rotation in all angles, but also has a weight capacity of up to 617 lbs.

It's worth noting that the pivot axis has a silicone layer to prevent small stones or debris from entering the axis.

【Foldable and Portable】

Unlike other beach chairs that have to be carried by hand, this beach chair can be easily carried like a backpack. The overall structure is made of aviation aluminum, with a weight of only 10.6 lbs, even children can easily lift it.

The excellent folding design makes the thickness of the folding beach chair only 11 inches, which can be placed in the trunk of any vehicle.

【Full Functions】

This beach chair has 3 preset backrest angles, allowing you to sit or lie comfortably as you like.

There is a cup holder on the armrest where you can place a water cup or a mobile phone; There is a large storage bag on the back where you can store magazines or things you like.

The specially processed high-strength fabric not only provides safe and reliable support, but also is breathable and non-slip. In addition, there is a soft and quick-recovery pillow that can be adjusted according to each person's height.

Detailed Features

<Wooden Armrests>

Even with portable products, it is still equipped with highly textured walnut armrests, showing off all the details of your personality!

<Anti-sink Design>

The base is equipped with an anti-sink obstacle, even if used on the loosest beach, the beach chair will not sink and is easy to collect.

<Various Colors to Choose From, The More You Buy, The More Discounts You Get>

There are turquoise and orange colors to choose from, and you only need to buy two folding beach chairs to enjoy a discount of and free shipping. Buy more as gifts for your family and friends, and they will thank you throughout the summer!

Specifications

Material Aviation aluminum; ABS; Fabric
Weight 10.6 lbs
Maximum Load 617 lbs
Angle Adjustment 3 positions
Size Seat Width 18.5 inches; Backrest Length 24 inches; Seat Height 12 inches

Packing List

  • Folding and Swivel Beach Chair * 1
  • Instruction Manual * 1
  • Warranty Card * 1

OUR WARRANTY

📦 Insured worldwide shipping: Every order includes real-time tracking details and insurance coverage in the unlikely event that a package is lost or stolen in transit.

💰 Money Back Guarantee: If your items arrive damaged or become defective within 60 days of normal use, we will gladly issue a replacement or refund.

🔒 Secure payment: We use state-of-the-art SSL Secure encryption to keep your personal and financial information 100% secure.

 

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.