/* Kahiko Sales Assistant Widget Styles */
#kahiko-chat-root {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999999;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.kahiko-btn-trigger {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #0d9488;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.18);
  cursor: pointer;
  transition: transform 0.2s ease;
  border: none;
}
.kahiko-btn-trigger:hover {
  transform: scale(1.06);
}
.kahiko-window {
  width: 380px;
  height: 560px;
  max-width: calc(100vw - 32px);
  max-height: calc(100vh - 100px);
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}
.kahiko-header {
  background: #0d9488;
  color: white;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.kahiko-body {
  flex: 1;
  padding: 14px;
  overflow-y: auto;
  background: #f8fafc;
}
.kahiko-product-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 10px;
  margin-top: 8px;
  display: flex;
  gap: 10px;
}
.kahiko-footer {
  padding: 12px;
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
}
