:root {
  /* Primary Colors - from business card */
  --color-primary: #1a2a4a;
  --color-primary-light: #2a3f6a;
  --color-primary-dark: #0f1a30;
  --color-accent: #8b1a1a;
  --color-accent-light: #a52a2a;
  --color-accent-dark: #6b1010;

  /* Backgrounds */
  --color-bg: #ffffff;
  --color-bg-alt: #f7f7f2;
  --color-bg-dark: #1a2a4a;

  /* Text */
  --color-text: #1a2a4a;
  --color-text-light: #ffffff;
  --color-text-muted: #6b7b8d;

  /* Borders */
  --color-border: #e0e0e0;
  --color-border-light: #f0f0f0;

  /* Status Colors */
  --color-available: #28a745;
  --color-sold: #dc3545;
  --color-reserved: #fd7e14;

  /* Typography */
  --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  --font-heading: 'Montserrat', var(--font-primary);

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.16);
  --shadow-xl: 0 12px 36px rgba(0, 0, 0, 0.2);

  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 5rem;

  /* Layout */
  --max-width: 1200px;
  --radius: 8px;
  --radius-lg: 12px;
  --transition: 0.3s ease;
  --transition-fast: 0.15s ease;
}
