document.addEventListener("DOMContentLoaded",function (){const target=document.querySelector('.cart-icon');// Replace with your actual class name if (target){const newItem=document.createElement('li');const newLink=document.createElement('a');newLink.href='#';newLink.textContent='New Link';newItem.appendChild(newLink);target.parentNode.insertBefore(newItem,target.nextSibling)}else{console.log("Target element not found")}});