MANN-FILTER là thương hiệu bộ lọc cao cấp với hơn 70 năm kinh nghiệm, cung cấp hơn 6.800 sản phẩm lọc chất lượng OEM cho hơn 300.000 ứng dụng trên toàn thế giới. Các sản phẩm lọc của MANN-FILTER – bao gồm lọc gió, lọc dầu, lọc nhiên liệu và lọc không khí – được thiết kế để bảo vệ động cơ, tối ưu hiệu suất vận hành và kéo dài tuổi thọ thiết bị trong nhiều điều kiện hoạt động khác nhau.

document.addEventListener("DOMContentLoaded", function () { const btn = document.querySelector(".nut2 a"); if (!btn) return; // ===== LẤY BRAND TỪ ẢNH ===== const brandImg = document.querySelector(".product-brand img"); if (!brandImg || !brandImg.alt) return; const brand = brandImg.alt.toLowerCase(); // ===== LẤY TÊN SẢN PHẨM ===== const titleEl = document.querySelector("h1.product-title, h1.entry-title"); if (!titleEl) return; const name = titleEl.innerText.trim().toLowerCase(); const nameNoSpace = name.replace(/\s+/g, ''); const nameSlug = name.replace(/\s+/g, '-'); let url = "#"; if (brand.includes("fleetguard")) { url = "https://www.fleetguard.com/fr/product/" + nameSlug; } else if (brand.includes("mann")) { // w-962-1 → w962/1 const code = nameNoSpace.replace('-', ''); url = "https://www.mann-filter.com/vn-vi/catalog/search-results/product.html/" + code + "_mann-filter.html"; } else if (brand.includes("wix")) { url = "https://www.wixfilters.com/vi-vn/catalog/results/product.html/" + nameNoSpace + "_wix.html"; } btn.href = url; btn.target = "_blank"; });