class CustomHero extends HTMLElement { connectedCallback() { this.attachShadow({ mode: 'open' }); this.shadowRoot.innerHTML = `

WEAR YOUR DIGITAL SOUL

NOIRWAY redefines streetwear for the new generation. Limited edition designs that blend digital art with physical form. For those who live between worlds.

NOIRWAY Model

500+

5-Star Reviews

"The quality is unreal. This isn't fast fashion—it's future fashion."

`; // Initialize feather icons setTimeout(() => { if (window.feather) { window.feather.replace(); } }, 100); } } customElements.define('custom-hero', CustomHero);