:root {
    /* Colors - Dark Premium Theme */
    --color-bg-base: #07070a;
    --color-bg-alt: #111116;
    --color-text-main: #ffffff;
    --color-text-muted: #a0a0ab;
    --color-border: rgba(255, 255, 255, 0.1);

    /* Variables that will change dynamically based on the active sneaker */
    --color-brand-active: #4ca3c3;
    --color-btn-text: #ffffff;
    /* Default active color (cyan/blue) */

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Container & Sizes */
    --container-max-width: 1400px;
    --container-padding: 2rem;
    --navbar-height: 80px;

    /* Transitions & Animations */
    --transition-fast: 200ms ease;
    --transition-normal: 400ms cubic-bezier(0.25, 1, 0.5, 1);
    --transition-slow: 700ms cubic-bezier(0.25, 1, 0.5, 1);

    /* Z-indexes */
    --z-background: -10;
    --z-carousel-bg: 0;
    --z-carousel-items: 10;
    --z-navbar: 100;
    --z-ui: 50;
}