/* ==========================================================================
   HYPERMARKET — DESIGN TOKENS
   Fond neutre off-white, typo sombre, accent unique terracotta/ocre.
   Un seul accent contrôlé — ne jamais en ajouter un deuxième "juste pour varier".
   ========================================================================== */

:root {
  /* Couleurs — base neutre */
  --color-bg: #FAF7F2;             /* off-white chaud, pas blanc pur */
  --color-bg-alt: #F2EDE4;         /* sections alternées, cartes */
  --color-surface: #FFFFFF;        /* cartes produit, éléments surélevés */
  --color-border: #E4DCCC;         /* bordures subtiles, jamais de gris froid */

  /* Couleurs — typographie */
  --color-text: #2B2621;           /* quasi-noir chaud, pas #000 */
  --color-text-muted: #6B6259;     /* texte secondaire */
  --color-text-inverse: #FAF7F2;   /* texte sur fond sombre/accent */

  /* Couleur — accent unique */
  --color-accent: #C1622D;         /* terracotta */
  --color-accent-hover: #A8501F;   /* terracotta plus foncé au hover */
  --color-accent-soft: #F3E2D3;    /* fond terracotta très clair (badges, hover subtil) */

  /* États sémantiques — minimaux, jamais décoratifs */
  --color-success: #4B7B4E;
  --color-error: #B23B2E;
  --color-warning: #B2822E;

  /* Typographie */
  --font-display: 'Fraunces', Georgia, serif;       /* titres — caractère, chaleur artisanale */
  --font-body: 'Inter', -apple-system, sans-serif;  /* texte courant — lisibilité */

  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-lg: 1.125rem;
  --fs-xl: 1.5rem;
  --fs-2xl: 2rem;
  --fs-3xl: 2.75rem;
  --fs-4xl: 3.5rem;

  --lh-tight: 1.15;
  --lh-normal: 1.5;
  --lh-relaxed: 1.7;

  /* Espacement — échelle 8px */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4rem;
  --space-7: 6rem;
  --space-8: 8rem;

  /* Layout */
  --container-max: 1280px;
  --container-narrow: 760px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  /* Ombres — usage très contrôlé, jamais décoratif */
  --shadow-sm: 0 1px 2px rgba(43, 38, 33, 0.06);
  --shadow-md: 0 4px 12px rgba(43, 38, 33, 0.08);
  --shadow-lg: 0 12px 32px rgba(43, 38, 33, 0.10);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --duration-fast: 150ms;
  --duration-base: 250ms;
}
