/* Design tokens for Jacks Pet Avenue.
   Anchored to the matched taxonomy cluster (small, friendly neighborhood
   pet shop - sky blue + lime green, rounded geometry, low formality). */

:root {
  /* anchors.palette */
  --color-bg: #ffffff;
  --color-surface: #f4f4f4;
  --color-ink: #323232;
  --color-muted: #83878a;
  --color-accent: #00b7ff;      /* sky blue */
  --color-accent-2: #b0c83e;    /* lime green */
  --color-dark: #2b2f31;        /* dark band surface (trust badges) */

  /* anchors.fonts - rounded, friendly, low-formality sans pairing.
     Self-hosted fallback stack used if the Google Fonts request is blocked. */
  --font-display: "Dosis", "Trebuchet MS", "Segoe UI", Verdana, sans-serif;
  --font-body: "Nunito", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* anchors.type_scale_ratio: 1.25 */
  --type-scale: 1.25;
  --font-size-base: 1rem;
  --font-size-h1: 2.375rem; /* ~38px per anchors.h1_px_desktop */
  --font-size-h2: calc(var(--font-size-base) * var(--type-scale) * var(--type-scale));
  --font-size-h3: calc(var(--font-size-base) * var(--type-scale));

  /* anchors.corner_radius_px / shadow_depth / border_style */
  --radius: 50px;
  --radius-card: 16px;
  --shadow: 0 6px 18px rgba(50, 50, 50, 0.08);
  --shadow-soft: 0 2px 8px rgba(50, 50, 50, 0.06);
  --border: none;

  /* anchors.layout_width: boxed_1170 */
  --content-width: 1170px;

  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;

  /* motion: minimal per taxonomy (motion dial = 1) */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --dur-fast: 180ms;
  --dur-med: 420ms;
  --dur-slow: 700ms;
}
