/* WHITE SOUL design tokens - section 2 of the spec. Single source of truth
   for colour/typography so every page (frontend, customer, admin) matches. */
:root {
  --ws-primary: #D65A3B;
  --ws-secondary: #F28A5B;
  --ws-gold: #C9A05B;
  --ws-white: #FFFFFF;
  --ws-bg: #FFF8F5;
  --ws-black: #1B1B1B;

  --ws-gray-100: #F5F1EE;
  --ws-gray-300: #E4DAD3;
  --ws-gray-500: #9C8F87;
  --ws-gray-700: #5B534F;

  --ws-success: #2F7A4F;
  --ws-danger: #C23B3B;
  --ws-warning: #C9862C;
  --ws-info: #3B6FC2;

  --ws-font-heading: 'Playfair Display', Georgia, serif;
  --ws-font-body: 'Poppins', 'Segoe UI', sans-serif;
  --ws-font-button: 'Montserrat', 'Segoe UI', sans-serif;

  --ws-radius: 4px;
  --ws-radius-lg: 8px;
  --ws-radius-xl: 14px;
  --ws-shadow-sm: 0 1px 3px rgba(27, 27, 27, 0.06);
  --ws-shadow-md: 0 4px 16px rgba(27, 27, 27, 0.08);
  --ws-shadow-lg: 0 12px 32px rgba(27, 27, 27, 0.12);
  --ws-shadow-gold: 0 6px 20px rgba(201, 160, 91, 0.25);

  --ws-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ws-ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --ws-header-height: 76px;
}
