/* CSS Variables */
:root {
  /* Colors */
  --green-color: #00FF8C;
  --orange-color: #FFAA00;
  --brown-color: #1C0D06;
  --red-color: #FF2033;
  --neutral-400: #768491;

  /* Spacing (optional - add if needed) */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 2.5rem;
  --spacing-2xl: 3rem;

  /* Border Radius */
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-2xl: 40px;

  /* Typography */
  --font-vintage: "VintageGlamore", serif;
  --font-inter: "Inter", sans-serif;
  --font-merriweather: "Merriweather", serif;
}
