Skip to content

Choose a discipline

Cart

Your cart is empty

High Pressure Pump

ACCESSORY
Sale price$62.99
SKU: K2KAPUMPH000XXX

Size:
High Pressure Pump
High Pressure Pump Sale price$62.99

Coming Soon

Click below for first access to new product information.

// Toggle .cart-open class on body when drawer opens/closes function watchDrawer() { const cartDrawer = document.querySelector('cart-drawer'); if (!cartDrawer) return; const observer = new MutationObserver(() => { const isOpen = cartDrawer.hasAttribute('open'); document.body.classList.toggle('cart-open', isOpen); }); observer.observe(cartDrawer, { attributes: true }); } const waitForDrawer = setInterval(() => { const cartDrawer = document.querySelector('cart-drawer'); if (cartDrawer) { clearInterval(waitForDrawer); watchDrawer(); } }, 300); });