✦ Verified product
The Accessory Kit
USD 118.95
Kit Main Color
Groomers Helper®
Verified independent store
→
/* Global Reset */ * { margin: 0; padding: 0; box-sizing: border-box; } /* Ensures the layout is flexible and mobile-friendly */ body { font-family: Arial, sans-serif; background-c
olor: #f5f5f5; padding: 20px; color: #333; } /* Styling for the main product container */ .product-info { display: flex; flex-direction: column; align-items: center; text-align: center; background-color: #fff; border: 1px solid #ddd; padding: 20px; margin: 20px auto; max-width: 1200px; border-radius: 8px; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); } /* Heading styles for various heading levels */ h1, h2, h3 { margin: 20px 0; line-height: 1.5; } /* Styling for the main product title */ .product-title { font-size: 24px; margin-bottom: 10px; } /* Styling for description and additional headings */ .product-description, .product-details, .additional-info { font-size: 18px; line-height: 1.7; margin: 10px 0; color: #555; } /* Highlight class for important text */ .highlight { color: #ff2a00; font-weight: bold; } /* Styling for the images section */ .product-images { display: flex; justify-content: center; margin-bottom: 20px; } /* Individual product image styling */ .product-image { height: 260px; width: 260px; margin: 0 10px; } /* Key features list styling */ .product-features { list-style: none; padding: 0; text-align: center; margin: 20px 0; } /* Individual list item styling */ .product-features li { margin-bottom: 10px; } /* Styling for content that will be toggled */ .productInfoContainer { display: none; /* Hidden by default */ padding: 20px; margin-top: 10px; text-align: center; } /* Responsive adjustments for smaller screens */ @media (max-width: 768px) { /* For smaller screens, stack the images vertically */ .product-images { flex-direction: column; gap: 10px; } } /* Custom styling for color choices */ .colors-row { display: flex; justify-content: space-evenly; margin-bottom: 10px; } .colors-row span { font-size: 20px; padding: 0 10px; } a.link-faded[href="/collections/vendors?q=Groomers%20Helper%C2%AE"] { color: #FF0000; /* Red color */ } The Accessory Kit bundles our top consumables to provide replacement or additional options for your grooming routine Saving you money compared to purchasing each item separately The Groomers Helper® Accessory Kit (1) Groomers Helper® 5/8″ Grooming Loop ($17.95)Ideal for larger breeds, offering robust support and control. (1) Groomers Helper® Loop Adjuster ($17.95)Easily adjust the length of your grooming loops for optimal positioning. (1) Groomers Helper® Tether Repair Kit ($12.95)Keep your equipment in top shape, ensuring longevity and reliability. (1) Groomers Helper® Dryer Holder ($69.95)Free up your hands with this stable and adjustable holder, making drying effortless and efficient. Invest in Top-Quality with the Groomers Helper® Accessory Kit & Streamline your Grooming Sessions while ensuring Maximum-Comfort for your furry clients. Having Replacement items readily available is invaluable— accidents can happen — whether from Dog or Groomer error. Ensure continuous operation without Down-Time Available Colors: Black Pink Purple Blue Green Orange Red // Lightbox2 initialization document.addEventListener('DOMContentLoaded', (event) => { lightbox.option({ 'disableScrolling': true, 'alwaysShowNavOnTouchDevices': true, 'fadeDuration': 200, 'resizeDuration': 200, 'wrapAround': true, '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; } });