:root,
[data-theme="light"] {
  /* Background */
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fa;
  --bg-sidebar: #f0f1f3;
  --bg-hover: #e8e9eb;
  --bg-active: #dfe0e2;
  --bg-input: #ffffff;
  --bg-code: #f6f8fa;

  /* Text */
  --text-primary: #1a1a1a;
  --text-secondary: #6b7280;
  --text-tertiary: #9ca3af;
  --text-inverse: #ffffff;

  /* Accent – System-Mischer CI Orange */
  --accent: #E66D39;
  --accent-hover: #d05a2a;
  --accent-light: #fef3ee;

  /* User message */
  --user-bg: #E66D39;
  --user-text: #ffffff;

  /* Assistant message */
  --assistant-bg: #f0f1f3;
  --assistant-text: #1a1a1a;

  /* Borders */
  --border: #e5e7eb;
  --border-light: #f3f4f6;

  /* Status */
  --success: #22c55e;
  --danger: #ef4444;
  --danger-hover: #dc2626;
  --warning: #f59e0b;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);

  /* Spacing */
  --sidebar-width: 280px;
  --header-height: 56px;
  --input-max-height: 200px;
  --chat-max-width: 768px;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-normal: 250ms ease;
}

[data-theme="dark"] {
  --bg-primary: #0f0f0f;
  --bg-secondary: #1a1a1a;
  --bg-sidebar: #141414;
  --bg-hover: #252525;
  --bg-active: #303030;
  --bg-input: #1a1a1a;
  --bg-code: #1e1e1e;

  --text-primary: #e5e5e5;
  --text-secondary: #a0a0a0;
  --text-tertiary: #6b6b6b;
  --text-inverse: #ffffff;

  --accent: #E66D39;
  --accent-hover: #f0854e;
  --accent-light: #2a1f18;

  --user-bg: #E66D39;
  --user-text: #ffffff;

  --assistant-bg: #1e1e1e;
  --assistant-text: #e5e5e5;

  --border: #2a2a2a;
  --border-light: #1f1f1f;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
}
