/* PHPCUK Marketplace - CSS Custom Properties */
/* Design system variables for consistent styling */

:root {
  /* Brand Colors (from Phase 1 mock + PHPCUK) */
  --primary: #401268;
  --primary-deep: #2e0d4c;
  --primary-soft: #f0e8f7;
  --primary-muted: #bda5d7;
  
  /* Neutrals (purple-tinted, not generic grey) */
  --bg: #f7f4fa;
  --surface: #ffffff;
  --surface-soft: #f7f2fb;
  --text: #1f1728;
  --text-muted: #64596f;
  --border: #e6dff0;
  --border-subtle: #eee6f4;
  --highlight: #faf6fd;
  
  /* Semantic Colors */
  --success-bg: #e7f5e7;
  --success-text: #2d5f2d;
  --warning-bg: #fff7e6;
  --warning-text: #996c00;
  --error-bg: #fee;
  --error-text: #c00;
  --inactive-bg: #f0f0f0;
  --inactive-text: #666;
  
  /* Spacing Scale */
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-7: 28px;
  --space-8: 32px;
  --space-10: 48px;
  
  /* Border Radius */
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 12px;
  --radius-full: 999px;
  
  /* Shadows */
  --shadow: 0 14px 36px rgba(64, 18, 104, 0.08);
  --shadow-sm: 0 4px 12px rgba(64, 18, 104, 0.06);
  
  /* Typography */
  --font-heading: 'Crimson Pro', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', Arial, Helvetica, sans-serif;
  --font-mono: 'Courier New', monospace;
  
  /* Font Sizes */
  --text-sm: 13px;
  --text-base: 15px;
  --text-lg: 18px;
  --text-xl: 22px;
  --text-2xl: 28px;
}
