/* ──────────────────────────────────────────────────────────────────────────
   Abelssoft — Spacing, radii, shadows, motion
   ────────────────────────────────────────────────────────────────────────── */
: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;

  /* Radii — buttons/inputs 10px, cards 14px, modals 18px, pills full */
  --radius-sm: 7px;     /* tooltips, small chips */
  --radius-md: 10px;    /* buttons, inputs, payment rows */
  --radius-lg: 14px;    /* cards, panels */
  --radius-xl: 18px;    /* modals */
  --radius-pill: 999px; /* pills, avatars, icon buttons */

  /* Shadows — soft, low-spread, cool-tinted */
  --shadow-xs: 0 1px 6px rgba(11, 13, 18, 0.06);          /* sticky header */
  --shadow-sm: 0 1px 3px rgba(20, 30, 40, 0.08);
  --shadow-md: 0 8px 24px rgba(11, 13, 18, 0.12);         /* dropdowns, popovers */
  --shadow-lg: 0 12px 32px rgba(11, 13, 18, 0.16);        /* modals */
  --shadow-lift: 0 10px 26px -12px rgba(20, 30, 40, 0.22);/* hover-lift cards */
  --shadow-cta: 0 8px 30px -8px rgba(204, 31, 31, 0.7);   /* glowing red CTA (dark) */

  /* Borders */
  --border-width: 1px;
  --border-width-strong: 2px;       /* selected payment rows, dotted dividers */

  /* Motion — calm, confident easing */
  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);   /* @kind other */
  --ease-pop: cubic-bezier(0.34, 1.56, 0.64, 1);   /* @kind other */
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);   /* @kind other */
  --dur-fast: 0.12s;     /* @kind other */
  --dur-base: 0.2s;      /* @kind other */
  --dur-slow: 0.34s;     /* @kind other */
  --dur-slower: 0.42s;   /* @kind other */

  /* Layout */
  --container-max: 1200px;
  --container-narrow: 1100px;
}
