/* BoviCare — Elevation, shadows, motion */
:root {
  /* Soft, low, green-tinted shadows — never harsh black */
  --shadow-xs: 0 1px 2px rgba(11, 56, 35, 0.06);
  --shadow-sm: 0 1px 3px rgba(11, 56, 35, 0.08), 0 1px 2px rgba(11, 56, 35, 0.06);
  --shadow-md: 0 4px 12px rgba(11, 56, 35, 0.10), 0 2px 4px rgba(11, 56, 35, 0.06);
  --shadow-lg: 0 12px 28px rgba(11, 56, 35, 0.12), 0 4px 10px rgba(11, 56, 35, 0.07);
  --shadow-focus: 0 0 0 3px rgba(77, 178, 72, 0.35);

  /* Motion — quick, gentle, no bounce */
  --ease-standard: cubic-bezier(0.2, 0, 0, 1); /* @kind other */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1); /* @kind other */
  --dur-fast: 120ms; /* @kind other */
  --dur-base: 180ms; /* @kind other */
  --dur-slow: 280ms; /* @kind other */
}
