/* ═══════════════════════════════════════════════════════════════
   LGClonator — Storefront Styles
   Chat panel, annotation overlay, typing indicator
   Theme: dark with copper accent (#d4a574)
   ═══════════════════════════════════════════════════════════════ */

/* ─── Login overlay ────────────────────────────────────────── */

#clonator-login-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2147483640;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

#clonator-login-overlay .login-box {
  background: #1a1a2e;
  border: 1px solid rgba(212, 165, 116, 0.3);
  border-radius: 16px;
  padding: 28px;
  width: 340px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}

#clonator-login-overlay h3 {
  color: #d4a574;
  font-size: 16px;
  margin: 0 0 16px;
  text-align: center;
}

#clonator-login-overlay input {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  color: #e0e0e0;
  font-size: 13px;
  outline: none;
  box-sizing: border-box;
}

#clonator-login-overlay input:focus {
  border-color: rgba(212, 165, 116, 0.5);
}

#clonator-login-overlay input::placeholder { color: rgba(255,255,255,0.3); }

#clonator-login-overlay .login-btn {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, #d4a574, #c08850);
  color: #1a1a2e;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 4px;
}

#clonator-login-overlay .login-btn:hover { filter: brightness(1.1); }
#clonator-login-overlay .login-btn:disabled { opacity: 0.5; cursor: not-allowed; }

#clonator-login-overlay .login-error {
  color: #ff6b6b;
  font-size: 12px;
  text-align: center;
  margin-top: 8px;
  display: none;
}

#clonator-login-overlay .login-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  color: #888;
  font-size: 18px;
  cursor: pointer;
}

/* ─── Annotation overlay ───────────────────────────────────── */

#cca-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2147483645;
  pointer-events: none;
}

#cca-overlay * { box-sizing: border-box; }

#cca-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  cursor: crosshair;
  pointer-events: auto;
}

/* ─── Toolbar ────────────────────────────────────────────── */

#cca-toolbar {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(26, 26, 46, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 165, 116, 0.2);
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.05) inset;
  pointer-events: auto;
  user-select: none;
  z-index: 2147483647;
}

.cca-brand {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #d4a574;
  letter-spacing: 0.5px;
  padding-right: 4px;
  white-space: nowrap;
}

.cca-separator {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.1);
  margin: 0 4px;
  flex-shrink: 0;
}

.cca-tool-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: #ccc;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.15s ease;
  padding: 0;
  line-height: 1;
  flex-shrink: 0;
}

.cca-tool-btn:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: rgba(255,255,255,0.1);
}

.cca-tool-btn.cca-active {
  background: rgba(212, 165, 116, 0.2);
  color: #d4a574;
  border-color: rgba(212, 165, 116, 0.4);
  box-shadow: 0 0 8px rgba(212, 165, 116, 0.15);
}

.cca-tool-btn:active { transform: scale(0.92); }

.cca-close-btn { color: #ff6b6b; }
.cca-close-btn:hover {
  background: rgba(255, 107, 107, 0.15);
  color: #ff6b6b;
  border-color: rgba(255, 107, 107, 0.3);
}

.cca-color-btn {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.15s ease;
  padding: 0;
  flex-shrink: 0;
}

.cca-color-btn:hover { transform: scale(1.2); border-color: rgba(255,255,255,0.4); }
.cca-color-btn.cca-active { border-color: #fff; transform: scale(1.2); box-shadow: 0 0 8px rgba(255,255,255,0.2); }

.cca-size-label { display: flex; align-items: center; gap: 6px; cursor: pointer; }

.cca-size-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 70px; height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

.cca-size-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #d4a574;
  cursor: pointer;
  border: 2px solid #1a1a2e;
  box-shadow: 0 0 4px rgba(212, 165, 116, 0.4);
}

.cca-size-slider::-moz-range-thumb {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #d4a574;
  cursor: pointer;
  border: 2px solid #1a1a2e;
  box-shadow: 0 0 4px rgba(212, 165, 116, 0.4);
}

/* ─── Comment panel ──────────────────────────────────────── */

#cca-comment-panel {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  align-items: flex-end;
  padding: 12px 14px;
  background: rgba(26, 26, 46, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 165, 116, 0.2);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.05) inset;
  pointer-events: auto;
  z-index: 2147483647;
  width: min(600px, 90vw);
}

.cca-comment-textarea {
  flex: 1;
  resize: none;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  color: #e0e0e0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size: 13px;
  padding: 10px 12px;
  outline: none;
  line-height: 1.4;
  min-height: 40px;
  max-height: 120px;
}

.cca-comment-textarea::placeholder { color: rgba(255,255,255,0.3); }
.cca-comment-textarea:focus { border-color: rgba(212, 165, 116, 0.5); }

.cca-send-btn {
  padding: 10px 18px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, #d4a574, #c08850);
  color: #1a1a2e;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.15s ease;
  letter-spacing: 0.3px;
  flex-shrink: 0;
}

.cca-send-btn:hover { filter: brightness(1.1); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(212, 165, 116, 0.3); }
.cca-send-btn:active { transform: translateY(0) scale(0.97); }

/* ─── Toast ──────────────────────────────────────────────── */

#cca-toast-container {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  pointer-events: none;
  z-index: 2147483647;
}

.cca-toast {
  padding: 10px 20px;
  border-radius: 10px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 500;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  pointer-events: auto;
  max-width: 400px;
  text-align: center;
}

.cca-toast-visible { opacity: 1; transform: translateY(0); }
.cca-toast-info { background: rgba(51, 154, 240, 0.9); color: #fff; box-shadow: 0 4px 16px rgba(51, 154, 240, 0.3); }
.cca-toast-success { background: rgba(81, 207, 102, 0.9); color: #1a1a2e; box-shadow: 0 4px 16px rgba(81, 207, 102, 0.3); }
.cca-toast-error { background: rgba(255, 107, 107, 0.9); color: #fff; box-shadow: 0 4px 16px rgba(255, 107, 107, 0.3); }

/* ─── Text inline ────────────────────────────────────────── */

.cca-text-input {
  position: fixed;
  min-width: 100px;
  max-width: 60vw;
  padding: 4px 6px;
  border: 1.5px solid rgba(212, 165, 116, 0.5);
  border-radius: 4px;
  background: rgba(0,0,0,0.55);
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 500;
  outline: none;
  pointer-events: auto;
  z-index: 2147483647;
  caret-color: #d4a574;
  box-shadow: 0 2px 10px rgba(0,0,0,0.4);
  resize: none;
  overflow: hidden;
  white-space: pre-wrap;
  word-wrap: break-word;
}

.cca-text-input::placeholder { color: rgba(255,255,255,0.25); font-weight: 400; }
.cca-text-input:focus { border-color: rgba(212, 165, 116, 0.7); }

/* ─── Preview modal ──────────────────────────────────────── */

#cca-preview-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(10, 10, 20, 0.92);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px;
  pointer-events: auto;
  z-index: 2147483647;
}

.cca-preview-header { text-align: center; }
.cca-preview-title { display: block; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif; font-size: 14px; font-weight: 600; color: #d4a574; margin-bottom: 4px; }
.cca-preview-meta { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif; font-size: 11px; color: #888; word-break: break-all; }

.cca-preview-image-wrapper {
  flex: 1;
  min-height: 0;
  max-width: 90vw;
  max-height: 65vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  border-radius: 12px;
  overflow: auto;
  border: 1px solid rgba(212, 165, 116, 0.3);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}

.cca-preview-image { max-width: 100%; object-fit: contain; border-radius: 12px; }

.cca-preview-comment {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size: 13px;
  color: #ccc;
  background: rgba(255,255,255,0.05);
  padding: 10px 16px;
  border-radius: 10px;
  max-width: 600px;
  text-align: center;
  line-height: 1.4;
}

.cca-preview-comment strong { color: #d4a574; }
.cca-preview-comment em { color: #888; }

.cca-preview-actions { display: flex; gap: 12px; margin-top: 4px; }

.cca-preview-btn {
  padding: 10px 24px;
  border: none;
  border-radius: 10px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
}

.cca-preview-cancel { background: rgba(255,255,255,0.1); color: #ccc; border: 1px solid rgba(255,255,255,0.15); }
.cca-preview-cancel:hover { background: rgba(255,255,255,0.15); color: #fff; }
.cca-preview-confirm { background: linear-gradient(135deg, #d4a574, #c08850); color: #1a1a2e; }
.cca-preview-confirm:hover { filter: brightness(1.1); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(212, 165, 116, 0.3); }

/* ═══════════════════════════════════════════════════════════════
   Chat Panel
   ═══════════════════════════════════════════════════════════════ */

#clonator-chat {
  position: fixed;
  top: 0;
  right: 0;
  width: 380px;
  height: 100vh;
  background: #1a1a2e;
  border-left: 1px solid rgba(212, 165, 116, 0.2);
  box-shadow: -4px 0 24px rgba(0,0,0,0.5);
  z-index: 2147483646;
  display: flex;
  flex-direction: column;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  transform: translateX(100%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

#clonator-chat.transparent { opacity: 0.15; }
#clonator-chat.transparent:hover { opacity: 1; }
#clonator-chat.open { transform: translateX(0); }
#clonator-chat * { box-sizing: border-box; }

.clonator-chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}

.clonator-chat-title { font-size: 13px; font-weight: 600; color: #d4a574; }

.clonator-chat-status {
  font-size: 10px;
  color: #888;
  display: flex;
  align-items: center;
  gap: 5px;
}

.clonator-chat-status .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  display: inline-block;
}

.clonator-chat-header-actions { display: flex; align-items: center; gap: 8px; }

.clonator-transparency-toggle { display: flex; align-items: center; gap: 4px; cursor: pointer; user-select: none; }
.clonator-transparency-toggle input { display: none; }

.clonator-toggle-slider {
  width: 28px; height: 16px;
  background: rgba(255,255,255,0.15);
  border-radius: 8px;
  position: relative;
  transition: background 0.2s;
}

.clonator-toggle-slider::after {
  content: '';
  position: absolute;
  top: 2px; left: 2px;
  width: 12px; height: 12px;
  background: #888;
  border-radius: 50%;
  transition: all 0.2s;
}

.clonator-transparency-toggle input:checked + .clonator-toggle-slider { background: rgba(212, 165, 116, 0.3); }
.clonator-transparency-toggle input:checked + .clonator-toggle-slider::after { left: 14px; background: #d4a574; }

.clonator-toggle-label { font-size: 12px; opacity: 0.5; transition: opacity 0.2s; }
.clonator-transparency-toggle input:checked ~ .clonator-toggle-label { opacity: 1; }

.clonator-git-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(255, 170, 0, 0.1);
  border-bottom: 1px solid rgba(255, 170, 0, 0.2);
  font-size: 11px;
  color: #cca050;
  flex-shrink: 0;
}

.clonator-notif-btn {
  background: none !important; border: none !important; font-size: 13px; cursor: pointer;
  opacity: 0.3; transition: opacity 0.2s; padding: 0 1px !important; line-height: 1;
}
.clonator-notif-btn:hover { opacity: 0.7; }
.clonator-notif-btn.active { opacity: 1; }

.clonator-history-btn {
  background: none !important; border: none !important; font-size: 15px; cursor: pointer;
  opacity: 0.5; transition: opacity 0.2s; padding: 0 2px !important; line-height: 1;
}
.clonator-history-btn:hover { opacity: 1; }

.clonator-history-panel {
  background: rgba(0,0,0,0.3); border-radius: 8px; padding: 10px 12px; margin: 4px 0;
}
.clonator-history-title {
  font-size: 12px; font-weight: 600; color: #d4a574; margin-bottom: 8px;
}
.clonator-history-item {
  display: flex; align-items: center; gap: 8px; padding: 4px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 12px;
}
.clonator-history-item:last-of-type { border-bottom: none; }
.clonator-history-step {
  background: rgba(212,165,116,0.2); color: #d4a574; border-radius: 4px;
  min-width: 22px; text-align: center; padding: 2px 4px; font-weight: 600; font-size: 11px;
}
.clonator-history-msg { flex: 1; color: #ccc; }
.clonator-history-hash { font-family: monospace; font-size: 10px; color: #666; }

.clonator-chat-close {
  width: 28px; height: 28px;
  border: none;
  border-radius: 6px;
  background: transparent;
  color: #888;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}

.clonator-chat-close:hover { background: rgba(255, 107, 107, 0.15); color: #ff6b6b; }

.clonator-chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.clonator-chat-msg {
  max-width: 90%;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.4;
  word-wrap: break-word;
  white-space: pre-wrap;
}

.clonator-chat-msg.user { align-self: flex-end; background: rgba(212, 165, 116, 0.15); color: #e0e0e0; border-bottom-right-radius: 4px; }
.clonator-chat-msg.claude { align-self: flex-start; background: rgba(255,255,255,0.06); color: #ccc; border-bottom-left-radius: 4px; }
.clonator-chat-msg.system { align-self: center; background: rgba(51, 154, 240, 0.1); color: #888; font-size: 11px; text-align: center; }
.clonator-chat-msg.error { align-self: center; background: rgba(255, 107, 107, 0.1); color: #ff6b6b; font-size: 11px; text-align: center; }

.clonator-chat-typing {
  display: none;
  align-self: flex-start;
  padding: 8px 16px;
  font-size: 12px;
  color: #d4a574;
  font-style: italic;
  background: rgba(212, 165, 116, 0.08);
  border-radius: 10px;
  margin: 0 16px 4px;
  animation: clonator-typing-pulse 2s ease-in-out infinite;
}

.clonator-chat-typing.visible { display: block; }

@keyframes clonator-typing-pulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

.clonator-chat-attachments {
  display: none;
  flex-wrap: wrap;
  gap: 6px;
  padding: 6px 16px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.clonator-chat-attach {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  padding: 0 4px;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.clonator-chat-attach:hover { opacity: 1; }

#clonator-chat.dragover {
  outline: 2px dashed rgba(212, 165, 116, 0.5);
  outline-offset: -4px;
}

.clonator-chat-input-area {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}

.clonator-chat-input {
  flex: 1;
  resize: none;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: 10px !important;
  background: rgba(255,255,255,0.05) !important;
  color: #e0e0e0 !important;
  font-family: inherit;
  font-size: 13px !important;
  padding: 8px 12px !important;
  outline: none !important;
  min-height: 36px;
  max-height: 100px;
  line-height: 1.4;
  transition: border-color 0.2s;
}

.clonator-chat-input::placeholder { color: rgba(255,255,255,0.25) !important; }
.clonator-chat-input:focus { border-color: rgba(212, 165, 116, 0.5) !important; color: #e0e0e0 !important; background: rgba(255,255,255,0.05) !important; }

.clonator-chat-send {
  width: 36px; height: 36px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, #d4a574, #c08850);
  color: #1a1a2e;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.15s;
  align-self: flex-end;
}

.clonator-chat-send:hover { filter: brightness(1.1); transform: translateY(-1px); }
.clonator-chat-send:active { transform: scale(0.95); }

.clonator-chat-messages::-webkit-scrollbar { width: 5px; }
.clonator-chat-messages::-webkit-scrollbar-track { background: transparent; }
.clonator-chat-messages::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 3px; }
.clonator-chat-messages::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.2); }

/* ─── Chat minimized tab ─────────────────────────────────── */

#clonator-chat-mintab {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2147483646;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 10px 6px;
  background: rgba(26, 26, 46, 0.92);
  border: 1px solid rgba(212, 165, 116, 0.3);
  border-right: none;
  border-radius: 10px 0 0 10px;
  cursor: pointer;
  box-shadow: -2px 0 12px rgba(0,0,0,0.4);
  transition: all 0.2s ease;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

#clonator-chat-mintab:hover {
  background: rgba(26, 26, 46, 1);
  border-color: rgba(212, 165, 116, 0.6);
  padding-right: 10px;
}

.clonator-mintab-icon {
  width: 24px; height: 24px;
  background: linear-gradient(135deg, #d4a574, #c08850);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #1a1a2e;
}

.clonator-mintab-label {
  font-size: 9px;
  color: #d4a574;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* ─── Floating action button (FAB) ───────────────────────── */

#clonator-fab {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4a574, #c08850);
  color: #1a1a2e;
  border: none;
  box-shadow: 0 4px 20px rgba(212, 165, 116, 0.4);
  cursor: pointer;
  z-index: 2147483644;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  transition: all 0.2s;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

#clonator-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(212, 165, 116, 0.5);
}

#clonator-fab:active { transform: scale(0.95); }

/* FAB menu */
#clonator-fab-menu {
  position: fixed;
  bottom: 84px;
  right: 20px;
  background: rgba(26, 26, 46, 0.95);
  border: 1px solid rgba(212, 165, 116, 0.2);
  border-radius: 12px;
  padding: 6px;
  z-index: 2147483644;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  display: none;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

#clonator-fab-menu.open { display: block; }

.clonator-fab-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: none;
  background: transparent;
  color: #ccc;
  font-size: 13px;
  cursor: pointer;
  border-radius: 8px;
  width: 100%;
  text-align: left;
  transition: all 0.15s;
  white-space: nowrap;
}

.clonator-fab-item:hover { background: rgba(255,255,255,0.08); color: #fff; }
.clonator-fab-item .icon { font-size: 16px; width: 20px; text-align: center; }

/* ─── Responsive ─────────────────────────────────────────── */

@media (max-width: 480px) {
  #clonator-chat { width: 100vw; }
  #cca-toolbar { gap: 3px; padding: 6px 10px; }
  #cca-comment-panel { width: 95vw; }
}
