/* Global Styling */ body { font-family: Arial, sans-serif; margin: 0; padding: 20px; background-color: #f9f9f9; color: #333; line-height: 1.6; } /* Main Product Info Container */ .product-info { max-width: 900px; margin: 20px auto; padding: 30px; background-color: #fff; border-radius: 12px; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); text-align: center; } /* Section Containers */ .section { margin: 30px 0; } /* Headers */ h1, h2, h3 { margin: 15px 0; } /* Images */ .product-images { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; } .product-image { width: 240px; height: 240px; object-fit: cover; border: 2px solid #ddd; border-radius: 8px; transition: transform 0.3s ease, box-shadow 0.3s ease; } .product-image:hover { transform: scale(1.05); box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2); } /* Callout Section */ .callout { background-color: rgb(255, 240, 240); border-left: 5px solid rgb(255, 42, 0); padding: 15px; margin: 20px 0; text-align: left; } /* Text Highlights */ .highlight { color: rgb(255, 42, 0); font-weight: bold; } a.link-faded[href="/collections/vendors?q=Groomers%20Helper%C2%AE"] { color: #FF0000; /* Red color */ } Never Raise or Lower Your Grooming Arm Again! The Groomers Helper® Loop Adjuster with Loop allows you to keep your grooming arm at one height.Simply adjust the loop to the size of each dog you're grooming.The loop adjuster and the grooming loop are one unit, combining functionality with ease of use. Product Images Key Features Ease of UseAttach the loop adjuster to the grooming arm. Your loop attaches securely to the D-ring at the bottom of the Loop Adjuster. Adjust the loop up or down as needed without moving the grooming arm itself. Durable ConstructionThe Groomers Helper® Loop Adjuster is crafted for professional grooming environments and offers long-lasting performance. Benefits ✔️ Simplifies grooming by eliminating the need to adjust the grooming arm height ✔️ Keeps pets safe and secure during grooming sessions ✔️ Ideal for groomers who handle a variety of dog breeds and sizes Why Choose Our Loop Adjuster with Safety Loop? The Groomers Helper® Loop Adjuster with Safety Loop is a trusted choice for professional groomers worldwide. Its innovative design and unmatched durability make it a must-have for any grooming setup. lightbox.option({ 'resizeDuration': 200, 'wrapAround': true, 'disableScrolling': true, 'alwaysShowNavOnTouchDevices': true, 'fadeDuration': 200, 'onOpen': function() { document.addEventListener('click', handleClick); document.addEventListener('touchstart', handleTouchStart); document.addEventListener('touchmove', handleTouchMove); }, 'onClose': function() { document.removeEventListener('click', handleClick); document.removeEventListener('touchstart', handleTouchStart); document.removeEventListener('touchmove', handleTouchMove); } }); function handleClick(event) { if (event.button === 0) { // Left mouse button history.back(); } } let xDown = null; let yDown = null; function handleTouchStart(event) { const firstTouch = (event.touches || event.originalEvent.touches)[0]; xDown = firstTouch.clientX; yDown = firstTouch.clientY; } function handleTouchMove(event) { if (!xDown || !yDown) { return; } let xUp = event.touches[0].clientX; let yUp = event.touches[0].clientY; let xDiff = xDown - xUp; let yDiff = yDown - yUp; if (Math.abs(xDiff) > Math.abs(yDiff)) { // Left or right swipe if (xDiff > 0) { // Left swipe history.back(); } else { // Right swipe history.back(); } } else { // Up or down swipe if (yDiff > 0) { // Up swipe history.back(); } else { // Down swipe history.back(); } } xDown = null; yDown = null; }