MAILLON RAPIDE

2 Products Found
Katoomba canyoning specialist
Free shipping on orders over $99
Accepted payments: PayPal · Visa · MasterCard · American Express


Copyright © 2026 Adventure Base. E-commerce software by Neto
ABN: 65 615 693 288
Address: 160 Katoomba St, Katoomba, NSW, 2780

/* Adventure Base: move Filter By Brand to top of category filters */ (function () { function elevateBrandFilter() { var root = document.querySelector('#filters .list-group.list-group-flush') || document.querySelector('#filters .list-group'); if (!root) return; var headings = root.querySelectorAll(':scope > .list-group-item > h3, :scope > .list-group-item h3.h4'); var brandHeadingItem = null; for (var i = 0; i < headings.length; i++) { if (/filter by brand/i.test(headings[i].textContent || '')) { brandHeadingItem = headings[i].closest('.list-group-item'); break; } } if (!brandHeadingItem || brandHeadingItem.parentElement !== root) return; var first = root.firstElementChild; if (first === brandHeadingItem) return; var nodes = [brandHeadingItem]; var n = brandHeadingItem.nextElementSibling; while (n) { var h = n.querySelector && n.querySelector('h3'); if (h && /^filter by /i.test((h.textContent || '').trim())) break; nodes.push(n); n = n.nextElementSibling; } var frag = document.createDocumentFragment(); nodes.forEach(function (el) { frag.appendChild(el); }); root.insertBefore(frag, root.firstChild); } if (document.readyState === 'loading') { document.addEventListener('DOMContentLoaded', elevateBrandFilter); } else { elevateBrandFilter(); } })();