@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Noto+Serif+Display:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Urbanist:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Restored & Enhanced Brand Color Palette -- Luxury Organic Estate style */
  --color-primary:        #34622b;   /* Original Deep Forest Green */
  --color-primary-hover:  #4c9d43;   /* Original Lighter Green */
  --color-primary-dark:   #144e1c;   /* Original Darkest Green */
  --color-bg:             #ffffff;   /* Original White background */
  --color-bg-alt:         #f8f6f3;   /* Original Warm Off-white alternative */
  --color-bg-footer:      #0c2611;   /* Rich Deep Apothecary Green */
  --color-text:           #2d2d2d;   /* Original Charcoal text */
  --color-text-light:     #6b6b6b;   /* Original Muted secondary text */
  --color-text-inverse:   #ffffff;   /* Inverse white text */
  --color-accent:         #eee1ed;   /* Original Lavender accent */
  --color-border:         #e5e5e5;   /* Original Divider border */
  
  /* Luxury Additions (Without killing the brand colors) */
  --color-gold:           #c5a86a;   /* Artisanal brass gold for ratings & trust indicators */
  --color-terracotta:     #b0512e;   /* Muted terracotta orange for discounts, alerts and highlight tags */
  --color-shadow-organic: rgba(20, 78, 28, 0.08); /* Organic soft green-tinted shadow */

  /* Typography */
  --font-heading:  'Noto Serif Display', Georgia, serif;
  --font-body:     'Urbanist', sans-serif;

  /* Font Scale */
  --text-xs:    0.75rem;    /* 12px */
  --text-sm:    0.875rem;   /* 14px */
  --text-base:  1rem;       /* 16px */
  --text-lg:    1.125rem;   /* 18px */
  --text-xl:    1.25rem;    /* 20px */
  --text-2xl:   1.625rem;   /* 26px */
  --text-3xl:   2.25rem;    /* 36px */
  --text-4xl:   3.25rem;    /* 52px */
  --text-5xl:   4.5rem;     /* 72px */
  --text-hero:  5.5rem;     /* 88px */

  /* Spacing */
  --space-xs:   0.25rem;   /* 4px */
  --space-sm:   0.5rem;    /* 8px */
  --space-md:   1rem;      /* 16px */
  --space-lg:   1.5rem;    /* 24px */
  --space-xl:   2rem;      /* 32px */
  --space-2xl:  3.5rem;    /* 56px */
  --space-3xl:  5.5rem;    /* 88px */
  --space-4xl:  7.5rem;    /* 120px */
  --space-section: 6.5rem; /* 104px */

  /* Design Tokens -- Organic rounded corners and soft green shadows */
  --shadow-sm:    0 2px 8px var(--color-shadow-organic);
  --shadow-md:    0 8px 24px var(--color-shadow-organic);
  --shadow-lg:    0 16px 40px var(--color-shadow-organic);
  --radius-sm:    6px;
  --radius-md:    12px;      /* Rounded card contours */
  --radius-lg:    20px;
  --radius-full:  9999px;    /* Pill shaped components */

  /* Transition Constants */
  --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
