/*
 * Phase 1 theme scaffold
 * Light theme stylesheet wired through #themeStylesheet.
 * Current inline theme rules in index.php remain as fallback while we migrate.
 */

:root {
    --vipqr-theme-name: "light";
    --vipqr-bg: #f2f3f5;
    --vipqr-surface: #ffffff;
    --vipqr-surface-2: #f8fafc;
    --vipqr-text: #111111;
    --vipqr-text-muted: #6b7280;
    --vipqr-border: #e5e7eb;
    --vipqr-accent: #111111;
}

body.light-mode {
    background-color: var(--vipqr-bg);
    color: var(--vipqr-text);
    color-scheme: light;
}
