Soothe It – Purple Skin Comfort Spray
Soothe It – Purple Skin Comfort Spray

Soothe It – Purple Skin Comfort Spray

$36.95
Tax included.

“Instantly cool, vibrant, and my horse loves it!”

James L., Horse Owner

SIZE
Only 28 left in stock!

Pickup available at 578 Coorong Avenue, Red Cliffs, VIC

Usually ready in 24 hours

same day shipping for orders before 11:30am AEST

30 day money back guarantee

Satisfaction guaranteed or your money back

Product Description

A quick mist of comfort for coats exposed to the elements.

An easy, all-over conditioning spray for horses with sensitive skin areas.

Lightweight and simple to apply, Soothe It Spray spreads easily through the coat to support comfortable, well-conditioned skin in areas exposed to the elements.

Perfect for use through the mane base, tail head, belly line and coat, especially for horses needing extra coat care.

Leaves the coat feeling soft while helping maintain well-conditioned skin and shine.

💜 Why Horse Owners Love It

✔ Quick daily spray application
✔ Ideal for horses with sensitive skin areas
✔ Lightweight, non-greasy feel
✔ Easy to use through mane and coat
✔ Supports comfortable, conditioned skin

Signature Purple Formula

Soothe It Spray carries the signature Horse Queened purple tint, making it easy to recognise in your grooming kit.

The light colour helps you see where the spray has been applied while leaving the coat looking natural once worked through. The colour won't stain your horse's coat.

💜 Where To Use

Soothe It Spray can be used on areas exposed to sun, wind, weather, and everyday environmental factors. Ideal for horses needing extra coat conditioning.

Common areas include:

• Mane base
• Tail head
• Belly line
• Neck and shoulders
• Coat exposed to sun, wind or rugs

💜 How To Use

SHAKE WELL BEFORE USE

Spray directly onto the coat or skin and spread if required.

Use as part of your regular grooming routine.

💜 Ingredients

Purified Water, Conditioning Plant Oils, Natural Mineral Clays, Botanical Oils, Vitamin E, Plant-Derived Emulsifiers, Preservative.

💜 Storage

Store below 30°C
Keep out of direct sunlight

For Animal Use Only
For External Use Only

Disclaimer: Soothe It Spray is a cosmetic product designed for external grooming use only. It is not a veterinary or therapeutic treatment and does not claim to prevent, treat, or cure any disease or condition.

💜 Horse Queened

Australian-made grooming products created by horse people who understand the everyday challenges of keeping horses comfortable and looking their best.

💜 Perfect For Horses That

• Have sensitive skin areas
• Spend time in rugs
• Are exposed to harsh weather
• Need a quick daily comfort spray

 

Why do horses need extra coat care?

Some horses have naturally more sensitive skin or coat areas. This can happen for many everyday reasons: rugs, sweat, dry skin, seasonal changes, or environmental factors.

When horses experience coat sensitivity, it can leave the coat looking rough and the hair in need of extra conditioning. That's why many horse owners add gentle daily coat care to their routine.

Soothe It Spray is designed as an easy all-over spray for horses with sensitive coat areas or dry patches. The lightweight formula makes it simple to apply during grooming, after riding, or whenever your horse needs a little extra care.

 

How to care for horses with sensitive coat areas

A simple routine can help keep the coat comfortable and looking its best:

• Keep the coat clean and dry
• Check rugs and tack for friction points
• Groom regularly to remove sweat and buildup
• Use gentle coat care products designed for sensitive areas

Many owners also combine Soothe It Spray with Soothe It Cream for targeted areas and Grow It for mane and tail care.

If your horse is rubbing their mane out due to Queensland Itch, read our full guide here →

How to Use

+
Shake well before use.

Spray directly onto the coat or skin and spread if required.

Ideal for use through areas prone to rubbing including:

• Mane base
• Tail head
• Belly line
• Neck and shoulders
• Coat exposed to sun, wind or rugs

Use as part of your regular grooming routine.

Ingredients & Safety

+
Formulated for external grooming use on horses.

• For animal use only
• Avoid contact with eyes
• If irritation occurs discontinue use
• Store below 30°C
• Keep out of direct sunlight
• Keep out of reach of children

Lightweight gel with a fresh, cooling feel

Subtle herbal scent — no overpowering odours

Non-greasy, fast-absorbing formula

Gentle on sensitive skin

Made in Australia with natural ingredients

FREQUENTLY ASKED QUESTIONS

Whether you've got questions about your gear, shipping, or anything in between - we've got answers. And if we don't, we'll get back to you fast.

When will my order ship?

Same day shipping if placed before 11.30am AEST, fast daily shipping

How do I track my order?

Head to our Track Order page and enter your email and order number. You’ll get real-time updates on your shipment status.

What’s your return policy?

We offer a 30-day performance guarantee. If you’re not satisfied with your purchase, reach out to us and we’ll make it right - no questions asked.

Do you offer international shipping?

Yes! We ship worldwide. Shipping rates and delivery times are calculated at checkout based on your location.

How do I contact customer support?

Use the contact form from the “Support” page. Please allow 24 business hours for a response from our support team.

are your products safe?

Sure! All natural, cosmetic formulas, external use only, not a veterinary product.

Recently viewed

/* Product zoom: mouse-follow + touch toggle Works with: product-zoom-element[data-magnify], .product-zoom--wrapper, .product-zoom--enlarged */ (() => { const ZOOM_ATTR = 'data-magnify'; const roots = Array.from(document.querySelectorAll(`product-zoom-element[${ZOOM_ATTR}]`)); if (!roots.length) return; roots.forEach(root => { // ensure root is focusable for keyboard access if (!root.hasAttribute('tabindex')) root.setAttribute('tabindex', '0'); const wrapper = root.querySelector('.product-zoom--wrapper'); const enlarged = root.querySelector('.product-zoom--enlarged'); if (!wrapper) return; const rawZoom = parseFloat(root.getAttribute('data-magnify')) || 1.7; let effectiveZoom = rawZoom; // may be increased if high-res image is larger let isZoomed = false; // compute effective zoom based on the natural size of the enlarged image (if available) function updateEffectiveZoom() { try { if (enlarged && enlarged.naturalWidth && root.offsetWidth) { const imageRatio = enlarged.naturalWidth / root.offsetWidth; // we want at least rawZoom but if enlarged image is bigger, allow larger zoom effectiveZoom = Math.max(rawZoom, imageRatio); } else { effectiveZoom = rawZoom; } } catch (err) { effectiveZoom = rawZoom; } } if (enlarged) { if (enlarged.complete) updateEffectiveZoom(); else enlarged.addEventListener('load', updateEffectiveZoom, { once: true }); // also update on window resize (image/container geometry changes) window.addEventListener('resize', () => { updateEffectiveZoom(); }); } // Utility: set transform-origin and scale for enlarged image function setOriginAndScale(clientX, clientY) { const rect = root.getBoundingClientRect(); // clamp values 0..100 const x = Math.min(100, Math.max(0, ((clientX - rect.left) / rect.width) * 100)); const y = Math.min(100, Math.max(0, ((clientY - rect.top) / rect.height) * 100)); if (enlarged) { enlarged.style.transformOrigin = `${x}% ${y}%`; enlarged.style.transform = `scale(${effectiveZoom})`; } // slight parallax: move wrapper transform-origin to follow cursor (subtle) wrapper.style.transformOrigin = `${x}% ${y}%`; } // Activate zoom (add class, set scale) function activateZoom(clientX, clientY) { updateEffectiveZoom(); root.classList.add('is-zoomed'); isZoomed = true; if (typeof clientX === 'number' && typeof clientY === 'number') { setOriginAndScale(clientX, clientY); } else { // center if no coordinates provided if (enlarged) { enlarged.style.transformOrigin = `50% 50%`; enlarged.style.transform = `scale(${effectiveZoom})`; } wrapper.style.transformOrigin = `50% 50%`; } } // Deactivate zoom (reset transforms) function deactivateZoom() { root.classList.remove('is-zoomed'); isZoomed = false; if (enlarged) { enlarged.style.transform = 'scale(1)'; enlarged.style.transformOrigin = '50% 50%'; } wrapper.style.transform = 'scale(1)'; wrapper.style.transformOrigin = '50% 50%'; } // Mouse handlers function onMouseMove(e) { if (!isZoomed) activateZoom(e.clientX, e.clientY); else setOriginAndScale(e.clientX, e.clientY); } function onMouseEnter(e) { // activate but don't force a jump — set origin from event activateZoom(e.clientX, e.clientY); } function onMouseLeave() { deactivateZoom(); } // Touch handlers (simple toggle on first tap; move origin while zoomed) let lastTouchEnd = 0; function onTouchStart(e) { if (e.touches.length > 1) { // ignore pinch for now — allow browser default return; } const t = e.touches[0]; // toggle on tap if (!isZoomed) { activateZoom(t.clientX, t.clientY); } else { // if already zoomed, just update origin (user may pan) setOriginAndScale(t.clientX, t.clientY); } } function onTouchMove(e) { if (!isZoomed || e.touches.length === 0) return; const t = e.touches[0]; setOriginAndScale(t.clientX, t.clientY); } function onTouchEnd(e) { // if touchend with no subsequent touches, keep zoom active; second tap will close. // implement a quick double-tap-to-close const now = Date.now(); if (now - lastTouchEnd < 300) { // double-tap detected -> close deactivateZoom(); } lastTouchEnd = now; } // Keyboard (Enter/Space toggles) function onKeyDown(e) { if (e.key === 'Enter' || e.key === ' ' || e.key === 'Spacebar') { e.preventDefault(); if (!isZoomed) activateZoom(root.getBoundingClientRect().left + root.offsetWidth / 2, root.getBoundingClientRect().top + root.offsetHeight / 2); else deactivateZoom(); } else if (e.key === 'Escape' && isZoomed) { deactivateZoom(); } } // Bind events root.addEventListener('mousemove', onMouseMove); root.addEventListener('mouseenter', onMouseEnter); root.addEventListener('mouseleave', onMouseLeave); // touch: use passive listeners where safe root.addEventListener('touchstart', onTouchStart, { passive: true }); root.addEventListener('touchmove', onTouchMove, { passive: true }); root.addEventListener('touchend', onTouchEnd, { passive: true }); root.addEventListener('keydown', onKeyDown); // Clean up in case element is removed (optional) // If you dynamically remove elements, consider removing listeners to avoid leaks. }); })();