/* ARTINIAN OT Form – Support chat bubble */
.chat-widget-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  font-family: inherit;
}
.chat-bubble {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c1c4c8 0%, #7b7f85 100%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.chat-bubble:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}
.chat-bubble svg {
  width: 26px;
  height: 26px;
  color: white;
}
.chat-panel {
  position: fixed;
  bottom: 86px;
  right: 20px;
  width: 340px;
  max-height: 400px;
  background: var(--surface-2, #fff);
  border: 1px solid var(--border-main, #ddd);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 1001;
}
.chat-panel-header {
  padding: 12px 14px;
  background: var(--surface-1, #f5f5f5);
  border-bottom: 1px solid var(--border-main, #ddd);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.chat-panel-header h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
}
.chat-panel-close {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
  color: var(--text-muted, #666);
}
.chat-panel-body {
  padding: 12px;
  display: flex;
  flex-direction: column;
}
.chat-send-btn {
  margin-top: 8px;
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid var(--border-main, #ccc);
  background: var(--button-primary, #2b2e33);
  color: var(--button-primary-text, #fff);
  font-weight: 600;
  cursor: pointer;
}
.chat-send-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
