When you go to “COOKIES INCL. ALLOW US SERVICES” click, you agree to the storage of cookies on your device to improve website navigation, analyze site usage, and support our marketing efforts. For more information, see our Privacy statement.

Product overview

Use the filters to quickly find the product you're looking for.

Filters
Reset all
Search
Reset
Department
Reset
Category
Reset
Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.
filters
tag
document.addEventListener("DOMContentLoaded", function () { const isEnglish = window.location.pathname.includes('/en/'); if (!isEnglish) return; const linkBoxes = document.querySelectorAll('.product-link'); linkBoxes.forEach(box => { const slug = box.getAttribute('data-slug'); if (!slug || slug.trim() === '') { console.error('Slug fehlt oder ist leer:', box); return; } // Generiere die englische URL const finalUrl = `/en/produkte/${slug}`; // Überschreibe nur, wenn der aktuelle href-Wert "dummy" ist if (box.getAttribute('href') === 'dummy') { box.setAttribute('href', finalUrl); console.log(`Englischer Link gesetzt: ${finalUrl}`); } }); });