/* =============================================
   POS Verdulería — Design Tokens
   ============================================= */

:root {
    /* ---- Colors: Primary ---- */
    --color-primary: #2D5A3D;
    --color-primary-light: #3D7A52;
    --color-primary-lighter: #4A8C62;
    --color-primary-dark: #1E3D2A;
    --color-primary-darker: #142A1D;

    /* ---- Colors: Accent ---- */
    --color-accent: #8BC34A;
    --color-accent-light: #A4D465;
    --color-accent-dark: #6FA038;

    /* ---- Colors: Background ---- */
    --color-bg: #F4F1EC;
    --color-bg-alt: #EDE9E2;
    --color-surface: #FFFFFF;
    --color-surface-hover: #F9F8F6;

    /* ---- Colors: Text ---- */
    --color-text: #2C3E2D;
    --color-text-secondary: #6B7B6E;
    --color-text-muted: #9CA89E;
    --color-text-inverse: #FFFFFF;

    /* ---- Colors: Semantic ---- */
    --color-success: #27AE60;
    --color-success-bg: #E8F8EF;
    --color-warning: #F5A623;
    --color-warning-bg: #FFF4E0;
    --color-danger: #E74C3C;
    --color-danger-bg: #FDE8E6;
    --color-info: #3498DB;
    --color-info-bg: #E3F2FD;

    /* ---- Colors: Borders ---- */
    --color-border: #E2DED8;
    --color-border-light: #EDE9E2;

    /* ---- Typography ---- */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Outfit', 'Inter', sans-serif;

    --font-xs: 0.6875rem;    /* 11px */
    --font-sm: 0.8125rem;    /* 13px */
    --font-base: 0.9375rem;  /* 15px */
    --font-md: 1rem;         /* 16px */
    --font-lg: 1.125rem;     /* 18px */
    --font-xl: 1.375rem;     /* 22px */
    --font-2xl: 1.75rem;     /* 28px */
    --font-3xl: 2.25rem;     /* 36px */

    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    --line-height: 1.6;
    --line-height-tight: 1.3;

    /* ---- Spacing ---- */
    --space-xs: 0.25rem;     /* 4px */
    --space-sm: 0.5rem;      /* 8px */
    --space-md: 0.75rem;     /* 12px */
    --space-base: 1rem;      /* 16px */
    --space-lg: 1.5rem;      /* 24px */
    --space-xl: 2rem;        /* 32px */
    --space-2xl: 3rem;       /* 48px */

    /* ---- Border Radius ---- */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 20px;
    --radius-full: 9999px;

    /* ---- Shadows ---- */
    --shadow-sm: 0 1px 3px rgba(45, 90, 61, 0.06);
    --shadow-md: 0 4px 12px rgba(45, 90, 61, 0.08);
    --shadow-lg: 0 8px 30px rgba(45, 90, 61, 0.12);
    --shadow-xl: 0 20px 60px rgba(45, 90, 61, 0.15);

    /* ---- Transitions ---- */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;

    /* ---- Layout ---- */
    --sidebar-width: 260px;
    --sidebar-collapsed: 70px;
    --navbar-height: 64px;

    /* ---- Z-index ---- */
    --z-sidebar: 100;
    --z-navbar: 90;
    --z-modal: 200;
    --z-toast: 300;
    --z-tooltip: 150;
}
