/* ===========================================================================
   Banooyi — Spacing, radii, shadows, layout
   8pt-ish scale. Soft purple-tinted shadows. Generous breathing room.
   =========================================================================== */

:root {
  /* Spacing scale */
  --space-1: 0.25rem;  /* 4 */
  --space-2: 0.5rem;   /* 8 */
  --space-3: 0.75rem;  /* 12 */
  --space-4: 1rem;     /* 16 */
  --space-5: 1.5rem;   /* 24 */
  --space-6: 2rem;     /* 32 */
  --space-7: 3rem;     /* 48 */
  --space-8: 4rem;     /* 64 */

  /* Radii */
  --radius-card: 20px;     /* cards */
  --radius-input: 12px;    /* inputs / selects */
  --radius-button: 20px;   /* buttons only (softened rectangle, not a pill) */
  --radius-pill: 999px;    /* chips, badges, avatars, the favorite heart */
  --radius-sm: 8px;        /* small inner elements */
  --radius-image: 16px;    /* media / cover images */

  /* Shadows — soft, light, subtle purple tint */
  --shadow-xs: 0 1px 2px rgba(124, 58, 237, 0.06);
  --shadow-sm: 0 4px 14px rgba(124, 58, 237, 0.08);
  --shadow-md: 0 10px 30px rgba(124, 58, 237, 0.10);
  --shadow-lg: 0 18px 48px rgba(124, 58, 237, 0.14);
  --shadow-focus: 0 0 0 3px rgba(168, 85, 247, 0.30);

  /* Layout — one standard max content width across all pages. */
  --content-width: 1280px;
  --content-inner: 1280px;
  --tap-min: 44px;        /* minimum touch target */
}
