(function() { // Prevent multiple loads if (window.P6ChatWidgetLoaded) return; window.P6ChatWidgetLoaded = true; // Create container const container = document.createElement('div'); container.id = 'p6-chat-widget-root'; container.style.cssText = 'position: fixed; bottom: 0; right: 0; width: 450px; height: 650px; z-index: 999999; pointer-events: auto;'; document.body.appendChild(container); // Create iframe for isolated rendering const iframe = document.createElement('iframe'); iframe.src = 'https://chat.p6brandagency.com/ChatWidget'; iframe.style.cssText = 'width: 100%; height: 100%; border: none; background: transparent;'; iframe.allow = 'cross-origin-isolated'; container.appendChild(iframe); })();