/*
Theme Name: PCSpecs - Headless PC Part Picker & Compatibility Engine
Theme URI: https://pcspecs.in
Author: Rohit Bhardwaj
Author URI: https://pcspecs.in
Description: Ultra-fast, headless-ready PC Builder and Hardware Compatibility Engine theme.
Version: 2.9.4
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: MIT
License URI: https://opensource.org/licenses/MIT
Text Domain: pcspecs
Tags: custom-post-types, rest-api, headless, react, pc-builder, hardware
*/

/* 
 * Core Fallback Theme Styles 
 * The primary styling is handled by the embedded React Application bundled in dist/assets/
 */
:root {
  --pc-bg: #f8f9fb;
  --pc-surface: #ffffff;
  --pc-primary: #004ac6;
  --pc-on-primary: #ffffff;
  --pc-on-background: #191c1e;
}

.dark {
  --pc-bg: #0b1326;
  --pc-surface: #171f33;
  --pc-primary: #8aebff;
  --pc-on-primary: #041920;
  --pc-on-background: #dae2fd;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--pc-bg);
  color: var(--pc-on-background);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.2s ease, color 0.2s ease;
}
