/* ============================================
   DIGITAL EMBALLASJE — Design Tokens
   ============================================ */

:root {
  /* ---- Colors — Silencio-inspired palette ---- */
  /* High-contrast black/white + fire orange accent */
  --color-base: #FAFAFA;
  --color-primary: #050505;
  --color-accent: #E84000;
  --color-accent-hover: #C23400;
  --color-accent-light: #FF5A1A;
  --color-tint: #FFF1EC;
  --color-neutral: #6B6B6B;
  --color-white: #FFFFFF;
  --color-black: #000000;
  --color-border: #1A1A1A;
  --color-border-light: #E8E8E8;
  --color-error: #C23B22;
  --color-success: #1A8C5B;
  --color-warning: #D4A017;

  /* Surface layers */
  --color-surface: #FFFFFF;
  --color-surface-alt: #F0F0F0;
  --color-surface-dark: #0A0A0A;

  /* ---- Typography ---- */
  --font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;

  /* Font sizes */
  --text-hero: clamp(3.5rem, 8vw, 7rem);
  --text-section: clamp(2rem, 4vw, 3.5rem);
  --text-category: clamp(2.5rem, 6vw, 5rem);
  --text-xl: 1.5rem;
  --text-lg: 1.25rem;
  --text-base: 1rem;
  --text-sm: 0.875rem;
  --text-xs: 0.75rem;

  /* Font weights */
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;

  /* Line heights */
  --leading-tight: 0.95;
  --leading-snug: 1.1;
  --leading-normal: 1.5;
  --leading-relaxed: 1.7;

  /* Letter spacing */
  --tracking-tight: -0.02em;
  --tracking-normal: 0;
  --tracking-wide: 0.05em;
  --tracking-wider: 0.1em;

  /* ---- Spacing (8px grid) ---- */
  --space-1: 0.25rem;   /* 4px */
  --space-2: 0.5rem;    /* 8px */
  --space-3: 0.75rem;   /* 12px */
  --space-4: 1rem;      /* 16px */
  --space-6: 1.5rem;    /* 24px */
  --space-8: 2rem;      /* 32px */
  --space-12: 3rem;     /* 48px */
  --space-16: 4rem;     /* 64px */
  --space-20: 5rem;     /* 80px */
  --space-24: 6rem;     /* 96px */
  --space-30: 7.5rem;   /* 120px */
  --space-40: 10rem;    /* 160px */

  /* ---- Border Radius ---- */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* ---- Shadows ---- */
  --shadow-xs: 0 1px 2px rgba(17, 17, 17, 0.04);
  --shadow-sm: 0 2px 6px rgba(17, 17, 17, 0.06);
  --shadow-md: 0 4px 16px rgba(17, 17, 17, 0.08);
  --shadow-lg: 0 8px 30px rgba(17, 17, 17, 0.1);
  --shadow-xl: 0 16px 50px rgba(17, 17, 17, 0.14);

  /* ---- Transitions ---- */
  --ease-out: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.6, 1);
  --transition-fast: 150ms var(--ease-out);
  --transition-base: 300ms var(--ease-out);
  --transition-slow: 500ms var(--ease-out);

  /* ---- Layout ---- */
  --container-max: 1320px;
  --container-narrow: 860px;
  --header-height: 72px;
  --sidebar-width: 360px;

  /* Breakpoints (reference — used as raw values in media queries) */
  /* --bp-sm: 480px  --bp-md: 768px  --bp-lg: 1024px */

  /* ---- Z-Index ---- */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-overlay: 300;
  --z-modal: 400;
  --z-toast: 500;
}
