/* id.healthcoach.how — HealthCoach BRAND OVERRIDE (GREEN + GOLD).
 *
 * Loaded AFTER /core/tokens.css (+ /core/chrome.css). It redefines ONLY the colour custom-properties to the
 * HealthCoach palette — emerald GREEN (same as see.healthcoach.how: brand-600 #059669 / 700 #047857) + GOLD —
 * across BOTH light and dark token sets (and OS-auto dark). All layout / chrome / toggle / icon machinery and
 * the non-colour tokens (radius / space / shadow / fonts) come from the shared theailand-core system UNCHANGED.
 * We do NOT edit the shared tokens.css/chrome.css/theme-i18n.js, and we do NOT use theailand's navy/gold colours.
 */

/* ---- LIGHT (default) ---- */
:root {
  --c-bg: #f5f7fb; --c-surface: #ffffff; --c-surface-2: #eef2f8;
  --c-text: #16202e; --c-text-muted: #5c6b7e; --c-border: #dbe2ec;

  /* brand = HealthCoach emerald green (navy slot = deep green so shared chrome/buttons render green) */
  --c-navy: #047857; --c-navy-2: #059669;
  --c-primary: #059669; --c-primary-strong: #047857;
  /* gold accent (HealthCoach Coach-ID gold — NOT theailand gold) */
  --c-gold: #b0894e; --c-gold-2: #916d33;
  --c-accent: var(--c-gold);

  --c-success: #1a8a4a; --c-danger: #c23b3b;
  --c-ultra: #b0894e; --c-premium: #059669;
}

/* ---- DARK (explicit toggle) ---- */
:root[data-theme="dark"] {
  --c-bg: #0e1622; --c-surface: #16202e; --c-surface-2: #1d2a3a;
  --c-text: #e8eef6; --c-text-muted: #9fb0c4; --c-border: #2a3a4e;

  --c-navy: #059669; --c-navy-2: #10b981;
  --c-primary: #34d399; --c-primary-strong: #6ee7b7;
  --c-gold: #d4b072; --c-gold-2: #e0c48c;
  --c-accent: var(--c-gold);

  --c-success: #46c07f; --c-danger: #f0736f;
  --c-ultra: #d4b072; --c-premium: #34d399;
}

/* ---- OS-auto dark (when the user hasn't toggled → data-theme unset) ---- */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --c-bg: #0e1622; --c-surface: #16202e; --c-surface-2: #1d2a3a;
    --c-text: #e8eef6; --c-text-muted: #9fb0c4; --c-border: #2a3a4e;
    --c-navy: #059669; --c-navy-2: #10b981;
    --c-primary: #34d399; --c-primary-strong: #6ee7b7;
    --c-gold: #d4b072; --c-gold-2: #e0c48c; --c-accent: var(--c-gold);
    --c-success: #46c07f; --c-danger: #f0736f;
    --c-ultra: #d4b072; --c-premium: #34d399;
  }
}
