/* PAY-7 Olive Craft — variables imposees par da_engine */
:root{
  /* couleurs */
  --bg: #F7F1E1;
  --bg-alt: #EFE7CF;
  --surface: #FBF6E8;
  --surface-deep: #2A2A1E;
  --text: #312A20;
  --text-2: #5C5544;
  --text-mute: #8C8472;
  --text-on-dark: #F0EAD6;
  --text-on-dark-2: rgba(240, 234, 214, 0.78);
  --border: rgba(49, 42, 32, 0.14);
  --border-strong: rgba(49, 42, 32, 0.28);

  --accent: #6B7A3A;
  --accent-2: #8E9C55;
  --accent-soft: rgba(107, 122, 58, 0.14);
  --accent-on-dark: #C5D086;
  --ink: var(--text); /* alias compat ne JAMAIS utiliser --ink seul */

  --primary: var(--accent);
  --wa-green: #25D366;
  --wa-green-dark: #1DA851;
  --tel-blue: #2D6B7F;

  /* polices */
  --ff-display: "Playfair Display", "Lora", Georgia, serif;
  --ff-body: "Inter", "Helvetica Neue", Arial, sans-serif;
  --ff-ui: "Inter", "Helvetica Neue", Arial, sans-serif;

  /* rayons */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 14px;
  --r-xl: 22px;

  /* header / z-index */
  --header-h: 76px;
  --header-h-mobile: 64px;
  --z-base: 1;
  --z-header: 1100;     /* > menu */
  --z-menu: 1000;
  --z-modal: 1200;
  --z-fab: 1050;

  /* container */
  --container: 1240px;

  /* transitions */
  --tr-fast: .18s ease;
  --tr-med: .35s ease;
}

::selection{ background: var(--accent-soft); color: var(--text); }
