/* Mamchandi Laundry Express — Spacing, Radius, Shadow, Motion Tokens */

:root {
  /* ---- Spacing scale (4px base) ---- */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --space-32: 128px;

  /* ---- Radii ---- */
  --radius-sm: 8px;
  --radius-md: 12px;   /* buttons, per brief */
  --radius-lg: 16px;
  --radius-xl: 24px;   /* premium cards */
  --radius-2xl: 32px;  /* hero panels / imagery */
  --radius-full: 999px;

  /* ---- Shadows (soft, minimal — Apple-like) ---- */
  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 16px 48px rgba(15, 23, 42, 0.10);
  --shadow-brand: 0 12px 32px rgba(29, 78, 216, 0.20);
  --shadow-glass: 0 8px 32px rgba(15, 23, 42, 0.08);

  /* ---- Motion ---- */
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1); /* @kind other */
  --ease-out-soft: cubic-bezier(0.16, 1, 0.3, 1); /* @kind other */
  --duration-fast: 150ms; /* @kind other */
  --duration-base: 250ms; /* @kind other */
  --duration-slow: 450ms; /* @kind other */

  /* ---- Layout ---- */
  --container-max: 1200px;
  --container-pad: clamp(20px, 5vw, 64px);
}
