/* Design Tokens */

:root {
  /* Colors */
  --color-navy-dark: #0f1419;
  --color-navy-bg: #1a1f2e;
  --color-navy-light: #2d3748;
  --color-navy-lighter: #4a5568;
  
  --color-gold: #CCB26C;
  --color-gold-hover: #E0CA8A;
  --color-gold-dark: #A8904E;
  --gold-rgb: 204, 178, 108;

  --color-green-success: #72B042;
  --color-green-light: #8FCC5A;
  --color-danger: #dc2626;

  /* Background and glow tokens */
  --bg-page: #0b1220;
  --bg-hero: #10182c;
  --bg-section: #111b31;
  --bg-section-alt: #162442;
  --glow-blue: rgba(56, 116, 255, 0.16);
  --surface-card: rgba(255, 255, 255, 0.06);
  --surface-card-strong: rgba(255, 255, 255, 0.1);

  --color-white: #ffffff;
  --color-gray-100: #f7fafc;
  --color-gray-200: #edf2f7;
  --color-gray-300: #e2e8f0;
  --color-gray-400: #cbd5e0;
  --color-gray-500: #a0aec0;
  --color-gray-600: #718096;
  --color-gray-700: #4a5568;
  
  /* Typography */
  --font-family-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  --font-size-6xl: 3.75rem;
  
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;
  
  /* Borders */
  --border-radius-sm: 0.375rem;
  --border-radius-md: 0.5rem;
  --border-radius-lg: 0.75rem;
  --border-radius-xl: 1rem;
  --border-radius-2xl: 1.5rem;
  --border-radius-full: 999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  
  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-base: 200ms ease-in-out;
  --transition-slow: 300ms ease-in-out;

  /* Glass + glow tokens */
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.06);
  --glass-backdrop: rgba(255, 255, 255, 0.02);
  --glow-gold: rgba(204, 178, 108, 0.12);
  --glow-green: rgba(114, 176, 66, 0.08);
  --grid-stroke: rgba(255, 255, 255, 0.03);

  /* Product preview sizing */
  --product-card-width: 260px;
  --product-card-gap: 18px;
}
