/* ─────────────────────────────────────────────
   VARMUK — Design Tokens
   All colors, fonts, spacing live here.
   Change something here → updates everywhere.
───────────────────────────────────────────── */

:root {

    /* ── Colors ── */
    --clr-bg: #0f0f13;
    /* page background — near-black */
    --clr-surface: #1a1a22;
    /* cards, nav background */
    --clr-surface-2: #22222d;
    /* elevated surfaces */
    --clr-border: #2e2e3a;
    /* subtle dividers */

    --clr-amber: #e8a020;
    /* primary accent */
    --clr-amber-light: #f5bc50;
    /* hover state */
    --clr-amber-dim: #b57e18;
    /* pressed state */

    --clr-text-primary: #f0ede8;
    /* headings */
    --clr-text-secondary: #a09d98;
    /* body copy */
    --clr-text-muted: #5a5856;
    /* placeholders, fine print */

    --clr-white: #ffffff;
    --clr-black: #000000;

    /* Product accent colors */
    --clr-payil: #4a9eff;
    /* Payil — cool blue */
    --clr-carepro: #3ecf8e;
    /* CarePro — health green */

    /* ── Typography ── */
    --font-display: 'Cormorant Garamond', 'Georgia', serif;
    --font-body: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;
    --font-mono: 'JetBrains Mono', 'Courier New', monospace;

    /* ── Font Sizes (fluid scale) ── */
    --fs-xs: 0.75rem;
    /* 12px */
    --fs-sm: 0.875rem;
    /* 14px */
    --fs-base: 1rem;
    /* 16px */
    --fs-md: 1.125rem;
    /* 18px */
    --fs-lg: 1.25rem;
    /* 20px */
    --fs-xl: 1.5rem;
    /* 24px */
    --fs-2xl: 2rem;
    /* 32px */
    --fs-3xl: 2.75rem;
    /* 44px */
    --fs-4xl: 3.75rem;
    /* 60px */
    --fs-5xl: 5rem;
    /* 80px */

    /* ── Font Weights ── */
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-bold: 700;

    /* ── Spacing ── */
    --space-1: 0.25rem;
    /* 4px  */
    --space-2: 0.5rem;
    /* 8px  */
    --space-3: 0.75rem;
    /* 12px */
    --space-4: 1rem;
    /* 16px */
    --space-5: 1.25rem;
    /* 20px */
    --space-6: 1.5rem;
    /* 24px */
    --space-8: 2rem;
    /* 32px */
    --space-10: 2.5rem;
    /* 40px */
    --space-12: 3rem;
    /* 48px */
    --space-16: 4rem;
    /* 64px */
    --space-20: 5rem;
    /* 80px */
    --space-24: 6rem;
    /* 96px */
    --space-32: 8rem;
    /* 128px */

    /* ── Layout ── */
    --max-width: 1200px;
    --max-width-text: 720px;
    --nav-height: 72px;

    /* ── Border Radius ── */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* ── Shadows ── */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.6);
    --shadow-amber: 0 0 32px rgba(232, 160, 32, 0.15);

    /* ── Transitions ── */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}