This site has limited support for your browser. We recommend switching to Edge, Chrome, Safari, or Firefox.

FREE SHIPPING ON ALL ORDERS

Cart 0

Congratulations! Your order qualifies for free shipping You are $0.00 AUD away from free shipping.
No more products available for purchase

Products
Pair with
Add order notes
Subtotal Free
Shipping, taxes, and discount codes are calculated at checkout

Sarahs Favourites

document.addEventListener('DOMContentLoaded', function() { const header = document.querySelector('.header'); // Adjust if your header has a different class function checkHeaderTransparency() { if (!header) return; const scrollY = window.scrollY || window.pageYOffset; // Add 'transparent' class if at top of page if (scrollY === 0) { header.classList.add('transparent'); } else { header.classList.remove('transparent'); } } // Run on scroll and on page load window.addEventListener('scroll', checkHeaderTransparency); checkHeaderTransparency(); });