:root {
  --font: 'Inter', sans-serif;
  --size: 12px;
  --radius: 8px;
  --shadow: 0 2px 6px rgba(0,0,0,.12);

  /* claro */
  --bg: #f4f4f4;
  --panel: #ffffff;
  --text: #1a1a1a;
  --muted: #5c5c5c;
  --border: #e0e0e0;
  --accent: #d4af37;
  --accent-contrast: #ffffff;

  /* estados */
  --success-bg: #e6f7e6;
  --success-fg: #27632a;
  --warn-bg: #fff6e0;
  --warn-fg: #8b6f1d;
  --error-bg: #fdeaea;
  --error-fg: #b52b2b;
}

[data-theme="dark"] {
  --bg: #1b1b1b;
  --panel: #2e2e2e;
  --text: #e6e6e6;
  --muted: #b0b0b0;
  --border: #333333;
  --shadow: 0 2px 6px rgba(0,0,0,.45);
}