/* ============================================================
   STIZ Design System — Tokens (source of truth)
   기반: 디자인 핸드오프 _ds/stiz-design-system-4d8af37b/tokens/
   병합일: 2026-07-09

   ⚠️ 기존 style.css의 :root { ... } 값은 그대로 두어 하위 호환 유지.
   신규 페이지·컴포넌트는 이 파일의 토큰을 사용할 것.
   중복되는 이름(--stiz-black, --stiz-blue 등)은 값 동일하므로 안전.
   ============================================================ */

:root {

  /* ─── Brand core ─────────────────────────────────────────── */
  --stiz-black: #111111;
  --stiz-white: #ffffff;
  --stiz-blue: #2563eb;
  --stiz-blue-700: #1d4ed8;
  --stiz-red: #e63946;
  --stiz-red-600: #dc2626;

  /* ─── Neutral scale (Tailwind gray) ─────────────────────── */
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  /* ─── Semantic: text ─────────────────────────────────────── */
  --text-primary: #111111;
  --text-secondary: #4b5563;
  --text-muted: #9ca3af;
  --text-on-dark: #ffffff;
  --text-on-dark-muted: #9ca3af;
  --text-link: #2563eb;

  /* ─── Semantic: surface ──────────────────────────────────── */
  --surface: #ffffff;
  --surface-muted: #f9fafb;
  --surface-sunken: #f3f4f6;
  --surface-dark: #111111;
  --surface-overlay: rgba(17, 17, 17, 0.30);
  --surface-overlay-strong: rgba(17, 17, 17, 0.50);

  /* ─── Semantic: border ───────────────────────────────────── */
  --border: #e5e7eb;
  --border-strong: #111111;
  --border-dark: #1f2937;

  /* ─── Semantic: status ───────────────────────────────────── */
  --accent: #2563eb;
  --sale: #e63946;
  --success: #16a34a;
  --focus-ring: #111111;

  /* ─── Typography — families ──────────────────────────────── */
  --font-sans: "Pretendard", "Pretendard Variable", "Inter", -apple-system,
    BlinkMacSystemFont, system-ui, "Apple SD Gothic Neo", "Malgun Gothic",
    sans-serif;
  --font-mono: ui-monospace, "SF Mono", "SFMono-Regular", Menlo, Consolas, monospace;

  /* ─── Typography — weights ───────────────────────────────── */
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-black: 900;

  /* ─── Typography — scale (px) ────────────────────────────── */
  --fs-eyebrow: 12px;
  --fs-caption: 12px;
  --fs-sm: 14px;
  --fs-base: 16px;
  --fs-lg: 18px;
  --fs-xl: 20px;
  --fs-2xl: 24px;
  --fs-3xl: 30px;
  --fs-4xl: 36px;
  --fs-5xl: 48px;
  --fs-6xl: 60px;
  --fs-7xl: 72px;

  /* ─── Typography — line height ───────────────────────────── */
  --lh-tight: 1.1;
  --lh-snug: 1.25;
  --lh-normal: 1.5;
  --lh-relaxed: 1.65;

  /* ─── Typography — letter spacing ────────────────────────── */
  --ls-tighter: -0.04em;
  --ls-tight: -0.02em;
  --ls-normal: 0;
  --ls-wide: 0.05em;
  --ls-wider: 0.1em;
  --ls-widest: 0.2em;

  /* ─── Spacing (4px grid) ─────────────────────────────────── */
  --space-0: 0;
  --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;

  /* ─── Radius ─────────────────────────────────────────────── */
  /* 디자인 시스템 표준 (신규 코드에서 사용) */
  --radius-none: 0;         /* primary CTA, hero buttons, NEW/BEST 배지 */
  --radius-xs: 4px;         /* small tags */
  --radius-card: 8px;       /* cards, inputs, guide tiles */
  --radius-well: 12px;      /* product image wells */
  --radius-full: 9999px;    /* pills, avatar, cart badge */

  /* 기존 하위 호환 (style.css의 :root가 별도로 정의하고 있으니 그대로 둠) */
  /* --radius-sm: 8px  (기존값 유지, 신규코드는 --radius-card 사용) */
  /* --radius-md: 12px (기존값 유지, 신규코드는 --radius-well 사용) */

  /* ─── Shadow (subtle, neutral) ───────────────────────────── */
  --shadow-xs: 0 1px 2px rgba(17, 17, 17, 0.05);
  --shadow-sm: 0 1px 3px rgba(17, 17, 17, 0.08);
  --shadow-md: 0 4px 12px rgba(17, 17, 17, 0.08);
  --shadow-lg: 0 10px 20px rgba(17, 17, 17, 0.05);
  --shadow-xl: 0 20px 40px rgba(17, 17, 17, 0.12);
  --shadow-card-hover: 0 8px 24px rgba(17, 17, 17, 0.10);
  /* 기존 하위 호환 */
  /* --shadow-soft: 0 18px 45px rgba(17, 17, 17, 0.08); (style.css 유지) */

  /* ─── Layout ─────────────────────────────────────────────── */
  --container-max: 1280px;
  --container-pad: 24px;
  --header-height: 80px;

  /* ─── Motion ─────────────────────────────────────────────── */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast: 150ms;
  --dur-base: 300ms;
  --dur-slow: 500ms;
  --dur-slower: 700ms;

  /* ─── Z-index ────────────────────────────────────────────── */
  --z-header: 50;
  --z-menu: 40;
  --z-overlay: 100;
  --z-chat-fab: 120;
  --z-modal: 200;

}

/* ─── Reduced motion 대응 ─────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  :root {
    --dur-fast: 0ms;
    --dur-base: 0ms;
    --dur-slow: 0ms;
    --dur-slower: 0ms;
  }
}
