Hello world!

Welcome to WordPress. This is your first post. Edit or delete it, then start writing!

document.addEventListener('DOMContentLoaded', function () { const shop = document.querySelector('.borja-shop-layout'); if (!shop) return; document.addEventListener('click', function (event) { const link = event.target.closest( '.borja-filters a, .borja-all-products' ); if (!link) return; /* No interferir con abrir en pestaƱa nueva */ if ( event.ctrlKey || event.metaKey || event.shiftKey || event.altKey || link.target === '_blank' ) { return; } const href = link.getAttribute('href'); if (!href || href.startsWith('#')) return; event.preventDefault(); shop.classList.add('borja-is-leaving'); setTimeout(function () { window.location.href = link.href; }, 160); }); });