:root {
  /* Color Palette - Wellness Boutique Style */
  --color-gold-champagne: #C9A86A;
  --color-gold-hover: #e0be82;
  --color-bronze: #8C6F3D;
  --color-taupe: #B9AE9F;
  --color-taupe-light: #ECE8E2;
  --color-off-white: #FAF7F2;
  --color-pure-white: #FFFFFF;
  --color-soft-black: #1A1714;
  --color-soft-black-muted: #2d2824;
  --color-gray-border: #E5DFD5;
  --color-error: #D9534F;
  --color-error-bg: #FDF7F7;
  --color-success: #5CB85C;
  --color-success-bg: #F7FDF7;

  /* Typography Fonts */
  --font-title: 'Montserrat', sans-serif;
  --font-body: 'Poppins', sans-serif;

  /* Spacing Scale (Relative values) */
  --spacing-xs: 0.5rem;   /* 8px */
  --spacing-sm: 1rem;     /* 16px */
  --spacing-md: 2rem;     /* 32px */
  --spacing-lg: 4rem;     /* 64px */
  --spacing-xl: 6rem;     /* 96px */

  /* Global Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.15s ease-out;

  /* Design Standards */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --box-shadow-premium: 0 10px 30px rgba(26, 23, 20, 0.05);
  --box-shadow-hover: 0 15px 35px rgba(140, 111, 61, 0.1);
  --max-width-container: 1200px;
  --header-height: 80px;
}
