/* Corner launcher bubble that opens Gigi. Gold avatar + "Chat with Gigi" peek. */
function GigiLauncher({ onOpen }) {
  return (
    <button onClick={onOpen} style={{
      display: "flex", alignItems: "center", gap: "10px", cursor: "pointer",
      border: "none", background: "none", fontFamily: "var(--font-sans)", padding: 0,
    }}>
      <span style={{
        background: "#fff", border: "1px solid var(--line)", borderRadius: "18px",
        padding: "9px 14px", fontSize: "12.5px", fontWeight: 700, color: "var(--navy-600)",
        boxShadow: "0 8px 20px rgba(28,39,51,.14)",
      }}>Chat with Gigi</span>
      <span style={{
        width: "58px", height: "58px", borderRadius: "50%",
        background: "center/cover url(../../assets/brand/gigi-sparkle.png), radial-gradient(circle at 32% 26%, #FFDCA0, var(--gold-500) 72%, #E8841E)",
        boxShadow: "0 10px 24px rgba(247,158,54,.5)",
      }} />
    </button>
  );
}
window.GigiLauncher = GigiLauncher;
