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

:root {
  /* Background */
  --color-bg: #F5F5EB;
  --color-surface: rgba(239, 231, 218, 0.6);
  --color-surface-solid: #EFE7DA;
  --color-surface-hover: rgba(225, 218, 202, 0.8);
  --color-surface-alt: rgba(193, 182, 163, 0.4);
  --color-border: rgba(179, 144, 122, 0.2);
  --color-border-glow: rgba(179, 144, 122, 0.5);

  /* Primary & Accents */
  --color-primary: #B3907A;
  --color-primary-hover: #C1B6A3;
  --color-primary-glow: rgba(179, 144, 122, 0.3);
  --color-secondary: #C1B6A3;
  --color-whatsapp: #25D366;
  --color-whatsapp-hover: #20BD5A;
  --color-danger: #FF6B6B;
  --color-danger-hover: #FF5252;
  --color-success: #00B894;
  --color-warning: #FDCB6E;

  /* Text – Dark colors for light background */
  --color-text: #2c2c2c;
  --color-text-secondary: #5a5a5a;
  --color-text-muted: #878787;
  --color-text-inverse: #F5F5EB;

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-size-xs: 11px;
  --font-size-sm: 13px;
  --font-size-base: 15px;
  --font-size-lg: 18px;
  --font-size-xl: 22px;
  --font-size-2xl: 28px;
  --font-size-3xl: 36px;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;
  --line-height: 1.5;
  --line-height-tight: 1.25;

  /* Spacing */
  --space-xs: 3px;
  --space-sm: 6px;
  --space-md: 12px;
  --space-lg: 20px;
  --space-xl: 28px;
  --space-2xl: 40px;
  --space-3xl: 56px;

  /* Components */
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --btn-min-height: 44px;
  --btn-min-width: 44px;
  --card-padding: 14px;

  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 20px var(--color-primary-glow);

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition: 0.3s ease;
  --transition-slow: 0.5s ease;
}
