/* ===========================================================================
   Tota's Shop — Spacing, Radii, Shadows, Motion
   Soft, pillowy, rounded. Shadows are tinted pink (studio cosmetic lighting),
   never neutral grey. Corners are big and friendly.
   =========================================================================== */
:root {
  /* --- Spacing scale (4px base) --- */
  --space-0:  0;
  --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:  2.5rem;   /* 40 */
  --space-8:  3rem;     /* 48 */
  --space-9:  4rem;     /* 64 */
  --space-10: 5rem;     /* 80 */

  /* --- Radii — generous & pillowy --- */
  --radius-xs:   6px;
  --radius-sm:   10px;
  --radius-md:   16px;   /* default card */
  --radius-lg:   24px;   /* large card / sheet */
  --radius-xl:   32px;
  --radius-2xl:  44px;
  --radius-pill: 999px;  /* buttons, chips, tags */

  /* --- Shadows — soft, pink-tinted, never harsh --- */
  --shadow-xs:  0 1px 2px rgba(129, 9, 63, 0.06);
  --shadow-sm:  0 2px 8px rgba(129, 9, 63, 0.08);
  --shadow-md:  0 8px 24px rgba(224, 58, 134, 0.12);
  --shadow-lg:  0 16px 40px rgba(224, 58, 134, 0.16);
  --shadow-pop: 0 10px 0 rgba(129, 9, 63, 0.10);   /* chunky drop for sticker buttons */
  --shadow-inner: inset 0 2px 6px rgba(129, 9, 63, 0.08);

  /* --- Borders --- */
  --border-width: 2px;            /* the brand likes a friendly 2px line */
  --border-width-thick: 3px;

  /* --- Motion — bouncy & cheerful --- */
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1); /* @kind other */
  --ease-soft:   cubic-bezier(0.4, 0, 0.2, 1);      /* @kind other */
  --dur-fast:   120ms;  /* @kind other */
  --dur-base:   220ms;  /* @kind other */
  --dur-slow:   360ms;  /* @kind other */

  /* --- Layout --- */
  --container-max: 1200px;
  --gutter: var(--space-5);
}
