/* GeetaAI Omnipresent Co-Pilot Styles (Gemini Aesthetic) */
.geeta-omni-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999999;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: #f1f5f9;
}

/* Floating Action Button */
.geeta-omni-fab {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #0f172a;
  border: 1.5px solid rgba(250, 181, 13, 0.6);
  border-radius: 999px;
  padding: 8px 18px 8px 10px;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 20px rgba(250, 181, 13, 0.25);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
}

.geeta-omni-fab:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 40px rgba(0,0,0,0.6), 0 0 30px rgba(250, 181, 13, 0.45);
  border-color: #fab50d;
}

/* Gemini Glowing Aura */
.geeta-omni-aura {
  position: absolute;
  inset: -2px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fab50d, #38bdf8, #a855f7, #fab50d);
  background-size: 300% 300%;
  z-index: -1;
  opacity: 0.75;
  filter: blur(6px);
  animation: geetaAuraGlow 4s ease infinite;
}

@keyframes geetaAuraGlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.geeta-omni-icon-wrap {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.15);
}

.geeta-omni-logo {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.geeta-omni-label {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.3px;
  background: linear-gradient(90deg, #ffffff, #fab50d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Floating Window Card */
.geeta-omni-card {
  position: fixed;
  bottom: 84px;
  right: 24px;
  width: 400px;
  max-width: calc(100vw - 32px);
  height: 560px;
  max-height: calc(100vh - 110px);
  background: rgba(15, 23, 42, 0.94);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(250, 181, 13, 0.3);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.65), 0 0 40px rgba(250, 181, 13, 0.15);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: geetaCardOpen 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1000000;
}

@keyframes geetaCardOpen {
  from { opacity: 0; transform: translateY(16px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Header */
.geeta-omni-header {
  padding: 14px 18px;
  background: rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.geeta-omni-head-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.geeta-omni-head-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.geeta-omni-head-title {
  font-weight: 700;
  font-size: 14px;
  color: #fff;
}

.geeta-omni-badge {
  font-size: 11px;
  font-weight: 600;
  color: #fab50d;
  background: rgba(250, 181, 13, 0.12);
  border: 1px solid rgba(250, 181, 13, 0.25);
  padding: 2px 8px;
  border-radius: 999px;
  margin-top: 2px;
  display: inline-block;
}

.geeta-omni-head-actions {
  display: flex;
  gap: 6px;
}

.geeta-omni-head-btn {
  background: rgba(255, 255, 255, 0.06);
  border: none;
  color: #94a3b8;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: all 0.2s;
}

.geeta-omni-head-btn:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

/* Message History */
.geeta-omni-messages {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.geeta-omni-msg {
  display: flex;
  flex-direction: column;
  max-width: 88%;
}

.geeta-omni-msg-user {
  align-self: flex-end;
}

.geeta-omni-msg-ai {
  align-self: flex-start;
}

.geeta-omni-msg-bubble {
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.5;
}

.geeta-omni-msg-user .geeta-omni-msg-bubble {
  background: #fab50d;
  color: #000;
  font-weight: 500;
  border-bottom-right-radius: 2px;
}

.geeta-omni-msg-ai .geeta-omni-msg-bubble {
  background: #1e293b;
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom-left-radius: 2px;
}

.geeta-omni-msg-ai .geeta-omni-msg-bubble h3 {
  margin: 0 0 6px;
  font-size: 14px;
  color: #fab50d;
}

.geeta-omni-msg-ai .geeta-omni-msg-bubble p {
  margin: 0 0 8px;
}
.geeta-omni-msg-ai .geeta-omni-msg-bubble p:last-child {
  margin-bottom: 0;
}

/* Chips */
.geeta-omni-chips {
  padding: 8px 16px;
  display: flex;
  gap: 6px;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
}
.geeta-omni-chips::-webkit-scrollbar { display: none; }

.geeta-omni-chip {
  background: rgba(250, 181, 13, 0.1);
  border: 1px solid rgba(250, 181, 13, 0.3);
  color: #f8fafc;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.geeta-omni-chip:hover {
  background: #fab50d;
  color: #000;
  border-color: #fab50d;
}

/* Footer & Input */
.geeta-omni-footer {
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.35);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.geeta-omni-input-bar {
  display: flex;
  align-items: center;
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 4px 6px 4px 12px;
  gap: 6px;
}

.geeta-omni-input-bar:focus-within {
  border-color: #fab50d;
  box-shadow: 0 0 12px rgba(250, 181, 13, 0.2);
}

#geeta-omni-input {
  flex: 1;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 13px;
  resize: none;
  outline: none;
  max-height: 80px;
  line-height: 1.4;
  padding: 6px 0;
}

.geeta-omni-mic, .geeta-omni-send {
  background: none;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  padding: 6px 8px;
  font-size: 15px;
  border-radius: 6px;
  transition: color 0.2s;
}

.geeta-omni-send {
  background: #fab50d;
  color: #000;
  font-weight: 700;
}
.geeta-omni-send:hover { background: #ffd043; }

.geeta-omni-caption {
  font-size: 10px;
  color: #64748b;
  text-align: center;
  margin-top: 6px;
}
