Burleigh Wagon

26 sold
$26.98
$128.95
-79%
Color:  Seafoam Green
Get Free:  Umbrellas
Quantity

Description

Product Features:

✓ Fits up to 4 kids with seatbelts included

✓ Approved to be used as a quad and/or double stroller

✓ Built in under-seat esky (ice chest) with plugs included 

✓ Bench seating for up to 3 people- can hold up to 330lbs (150kg)

✓ All-terrain 9-inch rubber polyurethane tires

✓ 5th wheel steering system with 180 degree turning radius 

✓ Dual cup holders included

✓ Meets safety standards of a quad stroller

✓ Detachable side wall for bench seating and accessibility

✓ Foot space or dual esky (ice chest) compartments 

We are not your average wagon designed to simply cart around your gear. We are a hybrid of a wagon and a quad stroller that will make getting out of the house with your family easier and less stressful. Simply put, we carry all your gear PLUS your children safely and kids actually love to ride in it! Perfect for parks, theme parks, shopping, markets, festivals, beaches, and camping, where there is much to pack and not enough hands! 

Bursting with innovative features to help you make the most of your time outdoors, your wagon quickly converts to a bench seat or a table. Imagine enjoying a picnic on the beach without annoying sand getting in the snacks you packed. Imagine pulling your wagon right up to the water's edge while your little ones splash in the waves as you relax on your wagon's bench seating and enjoy a cool drink from your wagon's esky.
 
Transform your wagon into a makeshift bed for nap time or even use it as a discrete, sand-free change-table for your little one. You will always have a spot to sit and relax or feed the baby with your wagon. The unique separate rear trunk storage is ideal for wet & sandy bathing suits, or any items that you want to keep from the reach of curious little hands, like your phone or car keys.
 
Unlike a canvas-folding wagon, the Burleigh Wagon doesn’t need repeated packing and unpacking. All of your outing essentials will be easily contained within your wagon during transport, including food and drinks to stay cold. Simply fold the handle over the top of the wagon. The whole unit fits neatly into the trunk of a standard SUV and some smaller vehicles, please see examples .
 
If you are tired of dragging your stroller down the sand, carrying children and bags at the same time, having to make multiple trips back to the car, or listening to whining about tired legs 15 minutes into your day out, we may be just what you need!

Specifications
- Maximum weight load - 330lbs (150kg)
- Ages 6 months+
-42.9"L x 22.4"W x 22"H (109cmL x 57cmW x 56cmH)  

Personalize your wagon to suit your lifestyle! - We offer a range of optional accessories so you can customize your wagon. Check out some of our most popular add-ons below.

Side Storage Rack: Perfect for your surfboard, boogie board, umbrella, fishing rods, skateboard, scooter, yoga mat, Grazing Picnic Table and so much more!

Umbrella: A removable UV-protected canopy that is height adjustable and can pop straight into the sand from the wagon.

Snack Tray: A removable full snack tray with additional two cup holders (two adult cup holders come standard at the front of the wagon).

Bluetooth Speaker: Built-in Bluetooth speaker with not one, but two charging ports!

*REGISTERED DESIGN
*GRANTED INTERNATIONAL PATENTS

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.