We use our own and third party cookies to improve your experience and our services, analyzing the navigation on our website. If you continue browsing, we consider that you accept its use. You can get more information in our Cookie Policy.
// MOBIL NUEVA COLECCIÓN
var nuevaMobile = document.querySelectorAll(
'#_mobile_iqitmegamenu-mobile a.mobile-menu__link[href*="nueva-coleccion"]'
);
nuevaMobile.forEach(function(a){
a.style.setProperty("color", "#000000", "important");
a.style.setProperty("font-weight", "700", "important");
var span = a.querySelector(".js-mobile-menu__tab-title");
if (span) {
span.style.setProperty("color", "#000000", "important");
span.style.setProperty("font-weight", "700", "important");
}
});
// DESKTOP NUEVA COLECCIÓN
var nuevaDesktop = document.querySelectorAll(
'#header a[href*="nueva-coleccion"]'
);
nuevaDesktop.forEach(function(a){
a.style.setProperty("color", "#000000", "important");
a.style.setProperty("font-weight", "700", "important");
});