/* Ventas Nubecol — theme tokens (light + dark) */

:root[data-theme="light"] {
  --bg: #FBF3E7;
  --bg-blush: #F3D9D9;
  --surface: #FFFFFF;
  --surface-muted: #F3EFE6;
  --primary: #7CB342;
  --primary-contrast: #FFFFFF;
  --accent: #F5A623;
  --text: #2B2F42;
  --text-muted: #6B7086;
  --border: #E7E1D4;
  --shadow: 0 10px 30px rgba(43, 47, 66, 0.08);
}

:root[data-theme="dark"] {
  --bg: #1E2233;
  --bg-blush: #2A2E45;
  --surface: #2B2F42;
  --surface-muted: #262A3C;
  --primary: #F5A623;
  --primary-contrast: #1E2233;
  --accent: #8BC34A;
  --text: #F2EFE9;
  --text-muted: #A9AEC4;
  --border: #3A3F58;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

/* Fallback for first paint before theme.js resolves a stored/preferred theme */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --bg: #1E2233;
    --bg-blush: #2A2E45;
    --surface: #2B2F42;
    --surface-muted: #262A3C;
    --primary: #F5A623;
    --primary-contrast: #1E2233;
    --accent: #8BC34A;
    --text: #F2EFE9;
    --text-muted: #A9AEC4;
    --border: #3A3F58;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  }
}
