:root {
  /* Colors */
  --color-primary: #a9804d;
  --color-primary-hover: #8e683a;
  --color-primary-light: #f5e9d7;
  --color-dark: #211f1c;
  --color-dark-light: #333128;
  --color-dark-muted: #49453f;
  --color-white: #ffffff;
  --color-light: #fdfbf7;
  
  --color-text-dark: #211f1c;
  --color-text-muted: #4b5457;
  --color-text-light: #ffffff;
  --color-text-gray: #bfbfbf;
  
  --color-border-light: #e5e7eb;
  --color-border-gray: #d9d9d9;
  --color-border-dark: #404040;
  
  --color-success: #16a34a;
  --color-error: #b91c1c;

  /* Typography */
  --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Lora', Georgia, Cambria, 'Times New Roman', Times, serif;

  /* Transition Speeds */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --container-max-width: 1176px;
  --border-radius-sm: 4px;
  --border-radius-md: 6px;
  --border-radius-lg: 12px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-luxury: 0 20px 40px rgba(33, 31, 28, 0.08);
}
