:root {
    /* Brand colors — extracted from https://maussafety.com :root tokens */
    --color-primary: #e30613;        /* MAUS brand red — primary CTA */
    --color-primary-dark: #b8050f;   /* hover/active */
    --color-primary-light: #ff3b47;
    --color-dark: #0c2854;           /* deep navy — accent */
    --color-dark-light: #1d2e38;
    --color-text: #2d4156;           /* body copy */
    --color-accent: #0c2854;
    --color-accent-dark: #091e3f;
    --color-white: #ffffff;
    --color-light: #F7F7F7;          /* section bg */
    --color-gray-50:  #fbfbfb;
    --color-gray-100: #f1f3f5;
    --color-gray-150: #f0f4f7;
    --color-gray-200: #e9edf2;
    --color-gray-300: #d8e0e6;
    --color-gray-400: #ced4da;
    --color-gray-500: #adb5bd;
    --color-gray-600: #9199a0;
    --color-gray-700: #495057;
    --color-gray-800: #343a40;
    --color-gray-900: #212529;
    --color-mega-menu-bg: #f5f5f5;   /* dropdown background */
    --color-success: #2d6a4f;
    --color-warning: #e9c46a;

    /* Secondary button colors */
    --color-secondary-border: #e9edf2;
    --color-secondary-text:   #000;
    --color-secondary-bg:     #fbfbfb;

    /* Commerce */
    --color-cart: #3c708e;

    /* Overlay */
    --color-hero-overlay: rgba(0, 0, 0, 0.55);

    /* Typography - Avenir Next (system font on macOS, fallback for others) */
    --font-primary: "Avenir Next", "Avenir", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    --font-weight-black: 900;

    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;

    --leading-tight: 1.15;
    --leading-snug: 1.3;
    --leading-normal: 1.6;
    --leading-relaxed: 1.75;

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;

    /* Layout */
    --container-max: 1280px;
    --container-narrow: 960px;
    --container-wide: 1440px;
    --top-bar-height: 42px;
    --header-height: 80px;
    --total-header-height: calc(var(--top-bar-height) + var(--header-height));

    /* Borders — target uses a consistent 10px button radius and 20px image radius on desktop */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-btn: 10px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-image-mobile:  10px;
    --radius-image-desktop: 20px;
    --radius-2xl: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-card: 0 2px 20px rgba(0, 0, 0, 0.08);
    --shadow-card-hover: 0 8px 30px rgba(0, 0, 0, 0.15);

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

    /* Z-index */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-overlay: 300;
    --z-modal: 400;
}
