:root{

    --color-primary:rgba(36, 64, 130, 1);
    --color-error: rgba(227, 30, 36, 1);
    --color-accent: rgba(254, 204, 0, 1);
    --color-neutral: rgba(240,240,240, 1);

    --color-bg-primary: #ffffff;
    --color-bg-secondary: #d9d9d9;

    --text-primary-color: #6E6E6E;
    --text-secondary-color: #323232;

    --border-color-lite: #e0e0e0;
    --border-color-base: #C9C9C9;

    --font-family-base: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-family-heading: 'Inter', 'Segoe UI', sans-serif;
    
    /* ===== РАЗМЕРЫ ШРИФТОВ ===== */
    --font-size-xxs: 0.625rem;  /* 10px */
    --font-size-xs: 0.75rem;    /* 12px */
    --font-size-sm: 0.875rem;   /* 14px */
    --font-size-base: 1rem;     /* 16px */
    --font-size-md: 1.125rem;   /* 18px */
    --font-size-lg: 1.25rem;    /* 20px */
    --font-size-xl: 1.5rem;     /* 24px */
    --font-size-2xl: 1.875rem;  /* 30px */
    --font-size-3xl: 2.25rem;   /* 36px */
    --font-size-4xl: 3rem;      /* 48px */

    /* ===== ВЫСОТА СТРОКИ ===== */
    --line-height-tight: 1.2;
    --line-height-base: 1.5;
    --line-height-loose: 1.8;
    
    /* ===== ВЕС ШРИФТА ===== */
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* ===== ОТСТУПЫ ===== */
    --spacing-xs: 0.25rem;   /* 4px */
    --spacing-sm: 0.5rem;    /* 8px */
    --spacing-base: 0.75rem; /* 12px */
    --spacing-md: 1rem;      /* 16px */
    --spacing-lg: 1.5rem;    /* 24px */
    --spacing-xl: 2rem;      /* 32px */
    --spacing-2xl: 3rem;     /* 48px */
    --spacing-3xl: 4rem;     /* 64px */
    --spacing-4xl: 6rem;     /* 96px */

    /* ===== КОНТЕЙНЕР ===== */
    --container-max-width: 100%;
    --container-padding: 1rem;
}


@media (min-width: 768px) and (max-width: 1023px) {
    :root{
        --container-max-width: 768px;
        --container-padding: 2.75rem;
    }
}

@media (min-width: 1024px) and (max-width: 1199px) {
    :root {
        --container-max-width: 1024px;
        --container-padding: 2.75rem;
    }
}

@media (min-width: 1200px) {
    :root {
        --container-max-width: 1200px;
        --container-padding: 0.625rem;
    }
}

@media (min-width: 1460px) {
    :root {
        --container-max-width: 1200px;
        --container-padding: 0.5rem;
    }
}