class CustomHeader extends HTMLElement { connectedCallback() { this.attachShadow({ mode: 'open' }); this.shadowRoot.innerHTML = `
🛒 Livraison gratuite à partir de 350€ | 📞 01 39 91 23 04
`; // Initialize feather icons in shadow DOM setTimeout(() => { if (window.feather) { window.feather.replace(); } }, 200); } } customElements.define('custom-header', CustomHeader);