/* CP Home Solutions - Design Tokens & Theme Variables (Deep Navy Palette) */
:root {
  /* Color Palette - Deep Navy Brand Theme */
  --color-primary: #162238;
  --color-primary-light: #202F4A;
  --color-primary-dark: #0F172A;
  --color-primary-trans: rgba(22, 34, 56, 0.08);

  --color-accent: #C67D4A;
  --color-accent-hover: #B86B38;
  --color-accent-light: #F4E8DE;
  --color-accent-glow: rgba(198, 125, 74, 0.25);

  --color-sand: #F2ECE1;
  --color-sand-light: #FAF7F2;
  --color-bg: #FAF8F5;
  --color-surface: #FFFFFF;

  --color-text-main: #1A202C;
  --color-text-muted: #4A5568;
  --color-text-light: #718096;
  --color-white: #FFFFFF;

  --color-border: #E2E8F0;
  --color-border-subtle: #EDF2F7;

  /* Typography */
  --font-heading: 'Playfair Display', 'Lora', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Spacing */
  --container-max: 1280px;
  --header-height: 80px;
  --topbar-height: 40px;

  /* Transitions & Shadows */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 16px 40px rgba(15, 23, 42, 0.14);
  --shadow-glow: 0 12px 32px rgba(198, 125, 74, 0.2);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
}
