/* AKKUBEE website chat widget */
#akkb-chat-launch {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: #0a7;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
  cursor: pointer;
  z-index: 1000;
}
#akkb-chat-launch svg { width: 26px; height: 26px; fill: currentColor; }
#akkb-chat-panel {
  position: fixed;
  right: 18px;
  bottom: 84px;
  width: 320px;
  max-width: calc(100vw - 36px);
  background: #fff;
  color: #0f172a;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0,0,0,.15);
  overflow: hidden;
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  transition: all .18s ease;
  z-index: 1000;
}
#akkb-chat-panel.open { transform: translateY(0); opacity: 1; visibility: visible; }
#akkb-chat-panel header {
  padding: 12px 14px;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  font-weight: 600;
}
#akkb-chat-panel .body { padding: 12px; display: grid; gap: 10px; }
#akkb-chat-panel .akb-row { display: flex; gap: 8px; align-items: center; }
#akkb-chat-panel .akb-btn { flex: 1; display: inline-block; text-align: center; padding: 10px 12px; border-radius: 10px; border: 1px solid #e2e8f0; background: #fff; color: #0f172a; font-weight: 600; text-decoration: none; cursor: pointer; }
#akkb-chat-panel .akb-btn.primary { background: #0a7; color: #fff; border-color: #0a7; }
#akkb-chat-panel .akb-input { flex: 1; padding: 10px; border: 1px solid #e2e8f0; border-radius: 10px; }
#akkb-chat-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.25); opacity: 0; visibility: hidden; transition: all .18s ease; z-index: 999; }
#akkb-chat-overlay.open { opacity: 1; visibility: visible; }
@media (max-width: 420px){
  #akkb-chat-panel { right: 12px; left: 12px; width: auto; }
  #akkb-chat-launch { right: 12px; bottom: 12px; }
}

