
/* Animated genie launcher & brand colors */
#infagenia-chatbot{font-family:Inter,system-ui,Segoe UI,Roboto,Arial,sans-serif}
#infagenia-chatbot .ig-launcher{
  position:fixed; right:20px; bottom:20px; z-index:99999; width:86px; height:86px; border:none; background:transparent; cursor:pointer; padding:0; isolation:isolate;
}
#infagenia-chatbot .ig-aura{position:absolute; inset:-14px; border-radius:50%;
  background:radial-gradient(closest-side, rgba(255,204,42,.28), transparent 70%);
  animation:ig-pulse 2.8s infinite ease-out}
@keyframes ig-pulse{0%{opacity:.9; transform:scale(1)}70%{opacity:0; transform:scale(1.35)}100%{opacity:0; transform:scale(1)}}

#infagenia-chatbot .ig-genie{width:86px; height:86px; filter:drop-shadow(0 10px 26px rgba(0,0,0,.22)); animation:ig-float 3.2s ease-in-out infinite}
@keyframes ig-float{0%,100%{transform:translateY(0)}50%{transform:translateY(-3px)}}
#infagenia-chatbot .ig-genie .eye{transform-origin:center; animation:ig-blink 3s infinite}
#infagenia-chatbot .ig-genie .eye:nth-of-type(1){animation-delay:.2s}
#infagenia-chatbot .ig-genie .eye:nth-of-type(2){animation-delay:.6s}
@keyframes ig-blink{0%,8%,100%{transform:scaleY(1)}4%{transform:scaleY(.2)}}
#infagenia-chatbot .ig-genie .sparkles circle, 
#infagenia-chatbot .ig-genie .sparkles{animation:ig-spark 2.2s infinite ease-in-out}
@keyframes ig-spark{0%{transform:translateY(0) scale(1); opacity:.9} 60%{transform:translateY(-6px) scale(1.2); opacity:.5} 100%{transform:translateY(0) scale(1); opacity:.9}}

/* Panel */
#infagenia-chatbot .ig-panel{
  position:fixed; right:20px; bottom:118px; width:360px; max-width:92vw; background:#f6faf9;
  border:1px solid #e3efec; border-radius:16px; box-shadow:0 18px 40px rgba(0,0,0,.22);
  transform:translateY(14px) scale(.96); opacity:0; pointer-events:none; transition:all .22s ease; z-index:99999; overflow:hidden
}
#infagenia-chatbot .ig-panel.open{transform:translateY(0) scale(1); opacity:1; pointer-events:auto}
#infagenia-chatbot .ig-header{display:flex; align-items:center; gap:8px; padding:12px; background:#0f2a28; color:#fff}
#infagenia-chatbot .ig-title{font-weight:700; font-size:15px}
#infagenia-chatbot .ig-sub{font-size:12px; opacity:.95}
#infagenia-chatbot .ig-close{margin-left:auto; background:transparent; border:none; color:#d8fffb; font-size:18px; cursor:pointer; padding:6px; border-radius:8px}

#infagenia-chatbot .ig-body{padding:12px; max-height:62vh; overflow:auto}
#infagenia-chatbot .bubble{background:#fff; border:1px solid #e3efec; padding:10px 12px; border-radius:12px; font-size:14px; line-height:1.45}

/* Tabs & chips (your colors) */
:root{--ig-tab-bg:#ffcc2a; --ig-tab-text:#235731; --ig-tab-bg-hover:#e6b800; --ig-tab-border:#d9b21f}
#infagenia-chatbot .opts{display:grid; gap:8px; margin:10px 0}
#infagenia-chatbot .opt, #infagenia-chatbot .chip{
  display:flex; align-items:center; gap:8px; padding:10px 12px;
  background:var(--ig-tab-bg)!important; color:var(--ig-tab-text)!important;
  border:1px solid var(--ig-tab-border)!important; border-radius:12px; font-weight:700; cursor:pointer
}
#infagenia-chatbot .opt:hover, #infagenia-chatbot .chip:hover{background:var(--ig-tab-bg-hover)!important}
#infagenia-chatbot .ig-footer{display:flex; gap:8px; padding:10px; background:#fffbe8; border-top:1px solid #e3efec}
