﻿/* ============================================ */
/* Smartori AI/Search/Chat Fab Buttons - 헤더 통합 배치 */
/* ============================================ */

/* 4개 버튼을 감싸는 그룹 박스 (가상 컨테이너) */
body::before {
  content: '';
  position: fixed;
  top: 4px;
  right: 295px;
  width: 200px;
  height: 42px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 24px;
  backdrop-filter: blur(4px);
  z-index: 9999;
  pointer-events: none;
}

/* AI 버튼 (보라) */
#ai-fab {
  position: fixed !important;
  top: 8px !important;
  right: 305px !important;
  bottom: auto !important;
  left: auto !important;
  width: 34px !important;
  height: 34px !important;
  font-size: 16px !important;
  z-index: 10000 !important;
}

/* Artwork 검색 버튼 (오렌지) */
#artwork-search-fab {
  position: fixed !important;
  top: 8px !important;
  right: 350px !important;
  bottom: auto !important;
  left: auto !important;
  width: 34px !important;
  height: 34px !important;
  z-index: 10000 !important;
}

/* Sketch 검색 버튼 (보라) */
#sketch-search-fab {
  position: fixed !important;
  top: 8px !important;
  right: 395px !important;
  bottom: auto !important;
  left: auto !important;
  width: 34px !important;
  height: 34px !important;
  z-index: 10000 !important;
}

/* Chat 버튼 (파랑) - smartori-chat */
#sc-btn {
  position: fixed !important;
  top: 8px !important;
  right: 440px !important;
  bottom: auto !important;
  left: auto !important;
  width: 34px !important;
  height: 34px !important;
  z-index: 10000 !important;
}

/* SVG 아이콘 크기 통일 */
#artwork-search-fab svg,
#sketch-search-fab svg,
#sc-btn svg {
  width: 20px !important;
  height: 20px !important;
}

/* AI 패널 위치 (헤더 아래) */
#ai-panel {
  top: 50px !important;
  right: 8px !important;
  bottom: auto !important;
}

/* 채팅 창 위치 (헤더 아래) */
#sc-popup {
  position: fixed !important;
  top: 50px !important;
  right: 28px !important;
  bottom: auto !important;
}