/* ============================================
   TEPIS Store — Design Tokens
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  /* Colors — Contrast Mode (Penguin Toys Blue/Yellow Theme with Light Content) */
  --bg-primary: #f4f6fa;
  --bg-secondary: #ffffff;
  --bg-card: #ffffff;
  --bg-card-hover: #f8fafc;
  --bg-glass: rgba(255, 255, 255, 0.8);
  --bg-glass-strong: rgba(255, 255, 255, 0.95);
  --bg-input: #ffffff;
  --bg-input-focus: #f8fafc;

  /* Border */
  --border-color: #e2e8f0;
  --border-color-hover: #cbd5e1;
  --border-color-focus: #ffd200;

  /* Text */
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --text-inverse: #081736;
  --text-light: #ffffff;

  /* Accent — Brand Yellow */
  --accent: #ffd200;
  --accent-hover: #ffdf00;
  --accent-light: rgba(255, 210, 0, 0.15);
  --accent-glow: rgba(255, 210, 0, 0.3);

  /* Secondary Accent — Royal Blue / Navy */
  --accent-secondary: #081736;
  --accent-secondary-light: rgba(8, 23, 54, 0.08);

  /* Status Colors */
  --success: #10b981;
  --success-light: rgba(16, 185, 129, 0.15);
  --warning: #f59e0b;
  --warning-light: rgba(245, 158, 11, 0.15);
  --danger: #ef4444;
  --danger-light: rgba(239, 68, 68, 0.15);
  --info: #3b82f6;
  --info-light: rgba(59, 130, 246, 0.15);

  /* Promotion Colors */
  --promo: #f97316;
  --promo-light: rgba(249, 115, 22, 0.15);
  --preorder: #3b82f6;
  --preorder-light: rgba(59, 130, 246, 0.15);

  /* Typography */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Outfit', 'Inter', sans-serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-2xl: 28px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.4);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 30px rgba(255, 210, 0, 0.2);
  --shadow-glow-strong: 0 0 50px rgba(15, 61, 153, 0.35);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
  --transition-spring: 300ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Glass Effect */
  --glass-blur: blur(20px);
  --glass-blur-strong: blur(40px);

  /* Z-Index */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-modal-backdrop: 900;
  --z-modal: 1000;
  --z-toast: 1100;

  /* Container */
  --container-max: 1280px;
  --container-padding: var(--space-6);

  /* Sidebar */
  --sidebar-width: 260px;
}
