(function(){ if(window.innerWidth > 849) return; var a = document.querySelector('#logo a'); if(!a) return; // Ẩn hết logo cũ a.querySelectorAll('img').forEach(function(img){ img.style.setProperty('display','none','important'); }); // Xóa logo cũ inject nếu có var old = a.querySelector('.ws-mobile-logo'); if(old) old.remove(); // Inject logo mobile mới var img = document.createElement('img'); img.src = 'URL_ẢNH_MOBILE'; img.alt = 'Logo WangSun Mobile'; img.className = 'ws-mobile-logo'; img.style.cssText = 'height:44px!important;width:auto!important;display:block!important;object-fit:contain!important;'; a.appendChild(img); })();