AFFINITY - EXCLUSIVE FURNITURE COLLECTION - 10% OFF

Furniture

Scroll to Top

COOKIES POLICY

We use cookies to enhance your browsing experience, analyse site traffic, and personalise content.
By clicking “Accept” you agree to our use of cookies. For more details, see our Cookies Policy.

document.addEventListener("DOMContentLoaded", function() { const scrollContainer = document.querySelector(".scroll-buttons-container"); if (scrollContainer) { const firstButton = scrollContainer.querySelector("button"); if (firstButton) { const containerWidth = scrollContainer.offsetWidth; scrollContainer.scrollLeft = firstButton.offsetLeft - (containerWidth / 2) + (firstButton.offsetWidth / 2); } // Enable smooth horizontal scrolling with mouse wheel scrollContainer.addEventListener("wheel", function(event) { if (event.deltaY !== 0) { event.preventDefault(); scrollContainer.scrollLeft += event.deltaY; // Enables smooth sideways scroll } }); } });