/* ???????????????????????????????????????????????????????????????????????????
   FIRELAX PREMIUM DESIGN SYSTEM 2025
   Ein visuell aussergewoehnliches, rechtlich konformes Shopping-Erlebnis
   ??????????????????????????????????????????????????????????????????????????? */

/* ?????????????????????????????????????????????????????????????????????????????
   DESIGN TOKENS - Premium Brand Identity
   ????????????????????????????????????????????????????????????????????????????? */

:root {
    /* Primary Brand Colors - Refined Gold */
    --brand-gold: #F5A623;
    --brand-gold-light: #FFD073;
    --brand-gold-dark: #D4850C;
    --brand-gold-subtle: rgba(245, 166, 35, 0.08);
    --brand-gold-glow: rgba(245, 166, 35, 0.25);
    
    /* Dark Theme - Sophisticated Charcoal */
    --dark-900: #0D0F12;
    --dark-800: #141619;
    --dark-700: #1A1D21;
    --dark-600: #22262B;
    --dark-500: #2D3139;
    --dark-400: #3D4250;
    
    /* Light Theme - Clean & Airy */
    --light-50: #FAFBFC;
    --light-100: #F5F7F9;
    --light-200: #EEF1F4;
    --light-300: #E2E6EB;
    --light-400: #CED4DB;
    --light-500: #9AA3AF;
    
    /* Text Colors - Optimized Contrast */
    --text-primary: #1A1D21;
    --text-secondary: #5A6270;
    --text-tertiary: #8B939F;
    --text-inverted: #FFFFFF;
    --text-muted: #A0A8B3;
    
    /* Semantic Colors */
    --success: #22C55E;
    --success-light: #BBF7D0;
    --warning: #F59E0B;
    --warning-light: #FEF3C7;
    --error: #EF4444;
    --error-light: #FEE2E2;
    --info: #3B82F6;
    --info-light: #DBEAFE;
    
    /* Spacing Scale (8px base) */
    --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 */
    
    /* Typography Scale */
    --font-family-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-family-display: 'Plus Jakarta Sans', var(--font-family-sans);
    
    --text-xs: 0.75rem;     /* 12px */
    --text-sm: 0.875rem;    /* 14px */
    --text-base: 1rem;      /* 16px */
    --text-lg: 1.125rem;    /* 18px */
    --text-xl: 1.25rem;     /* 20px */
    --text-2xl: 1.5rem;     /* 24px */
    --text-3xl: 1.875rem;   /* 30px */
    --text-4xl: 2.25rem;    /* 36px */
    --text-5xl: 3rem;       /* 48px */
    
    /* Font Weights */
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --font-extrabold: 800;
    
    /* Line Heights */
    --leading-tight: 1.25;
    --leading-snug: 1.375;
    --leading-normal: 1.5;
    --leading-relaxed: 1.625;
    
    /* Border Radius */
    --radius-sm: 0.375rem;  /* 6px */
    --radius-md: 0.5rem;    /* 8px */
    --radius-lg: 0.75rem;   /* 12px */
    --radius-xl: 1rem;      /* 16px */
    --radius-2xl: 1.5rem;   /* 24px */
    --radius-full: 9999px;
    
    /* Shadows - Layered Depth */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.16);
    --shadow-2xl: 0 24px 64px rgba(0, 0, 0, 0.2);
    --shadow-gold: 0 8px 32px rgba(245, 166, 35, 0.25);
    --shadow-gold-lg: 0 16px 48px rgba(245, 166, 35, 0.3);
    --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.06);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;
    --transition-spring: 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
    
    /* Z-Index Scale */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal-backdrop: 400;
    --z-modal: 500;
    --z-popover: 600;
    --z-tooltip: 700;
    --z-toast: 800;
    
    /* Layout */
    --container-max: 1440px;
    --header-height: 80px;
}

/* ?????????????????????????????????????????????????????????????????????????????
   GOOGLE FONTS IMPORT
   ????????????????????????????????????????????????????????????????????????????? */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@600;700;800&display=swap');

/* ?????????????????????????????????????????????????????????????????????????????
   CSS RESET & BASE STYLES
   ????????????????????????????????????????????????????????????????????????????? */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: var(--font-family-sans);
    font-size: var(--text-base);
    line-height: var(--leading-normal);
    color: var(--text-primary);
    background: var(--light-50);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Focus Styles - Accessibility */
:focus-visible {
    outline: 2px solid var(--brand-gold);
    outline-offset: 2px;
}

/* Selection */
::selection {
    background: var(--brand-gold-light);
    color: var(--text-primary);
}

/* ?????????????????????????????????????????????????????????????????????????????
   PREMIUM HEADER - Sophisticated Navigation
   ????????????????????????????????????????????????????????????????????????????? */

.premium-header {
    background: var(--dark-800);
    position: sticky;
    top: 0;
    z-index: var(--z-sticky);
    border-bottom: 1px solid var(--dark-500);
}

.premium-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--brand-gold) 20%, 
        var(--brand-gold) 80%, 
        transparent 100%
    );
    opacity: 0.8;
}

.header-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-6);
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-8);
}

/* Logo */
.brand-logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    text-decoration: none;
    transition: var(--transition-base);
}

.brand-logo:hover {
    transform: translateY(-2px);
}

.brand-logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--brand-gold) 0%, var(--brand-gold-dark) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
}

.brand-logo-icon i {
    font-size: 1.5rem;
    color: var(--dark-800);
}

.brand-logo-text {
    font-family: var(--font-family-display);
    font-size: var(--text-2xl);
    font-weight: var(--font-extrabold);
    color: var(--text-inverted);
    letter-spacing: -0.02em;
}

.brand-logo-text span {
    color: var(--brand-gold);
}

/* Search Bar - Elevated Design */
.search-container {
    flex: 1;
    max-width: 520px;
}

.search-form {
    position: relative;
    display: flex;
    align-items: stretch;
}

.search-input {
    flex: 1;
    height: 48px;
    padding: 0 var(--space-5);
    padding-right: 56px;
    background: var(--dark-600);
    border: 1px solid var(--dark-500);
    border-radius: var(--radius-xl);
    color: var(--text-inverted);
    font-size: var(--text-sm);
    transition: var(--transition-base);
}

.search-input::placeholder {
    color: var(--light-500);
}

.search-input:focus {
    outline: none;
    border-color: var(--brand-gold);
    box-shadow: 0 0 0 3px var(--brand-gold-glow);
    background: var(--dark-700);
}

.search-btn {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--brand-gold);
    border: none;
    border-radius: var(--radius-lg);
    color: var(--dark-800);
    font-size: var(--text-base);
    cursor: pointer;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn:hover {
    background: var(--brand-gold-light);
    transform: translateY(-50%) scale(1.05);
}

/* Navigation Links */
.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-1);
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-4);
    color: var(--light-400);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
}

.nav-link:hover {
    color: var(--text-inverted);
    background: var(--dark-600);
}

.nav-link--active {
    color: var(--brand-gold);
    background: var(--brand-gold-subtle);
}

.nav-link--sale {
    color: var(--error);
    background: rgba(239, 68, 68, 0.1);
}

.nav-link--sale:hover {
    background: var(--error);
    color: var(--text-inverted);
}

.nav-link--sale i {
    animation: pulse-fire 1s ease-in-out infinite;
}

@keyframes pulse-fire {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* Cart Button */
.cart-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-4);
    background: transparent;
    border: 1px solid var(--dark-500);
    border-radius: var(--radius-lg);
    color: var(--light-400);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    cursor: pointer;
    transition: var(--transition-base);
    text-decoration: none;
}

.cart-btn:hover {
    border-color: var(--brand-gold);
    color: var(--brand-gold);
    background: var(--brand-gold-subtle);
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    background: var(--error);
    border-radius: var(--radius-full);
    color: var(--text-inverted);
    font-size: var(--text-xs);
    font-weight: var(--font-bold);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
}

/* User Account Dropdown */
.account-dropdown {
    position: relative;
}

.account-btn {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-3);
    background: transparent;
    border: none;
    color: var(--light-400);
    font-size: var(--text-sm);
    cursor: pointer;
    transition: var(--transition-base);
    border-radius: var(--radius-lg);
}

.account-btn:hover {
    color: var(--text-inverted);
    background: var(--dark-600);
}

.account-avatar {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--brand-gold) 0%, var(--brand-gold-dark) 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-bold);
    color: var(--dark-800);
    font-size: var(--text-sm);
}

/* ?????????????????????????????????????????????????????????????????????????????
   PREMIUM FOOTER - Trust & Legal Compliance
   ????????????????????????????????????????????????????????????????????????????? */

.premium-footer {
    background: var(--dark-800);
    color: var(--light-400);
    margin-top: auto;
}

/* Trust Bar */
.trust-bar {
    background: var(--dark-700);
    border-bottom: 1px solid var(--dark-500);
    padding: var(--space-6) 0;
}

.trust-items {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-6);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.trust-icon {
    width: 48px;
    height: 48px;
    background: var(--brand-gold-subtle);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-gold);
    font-size: var(--text-xl);
    flex-shrink: 0;
}

.trust-content h4 {
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    color: var(--text-inverted);
    margin-bottom: var(--space-1);
}

.trust-content p {
    font-size: var(--text-xs);
    color: var(--light-500);
    margin: 0;
}

/* Footer Main */
.footer-main {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--space-16) var(--space-6);
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: var(--space-12);
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
}

.footer-logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--brand-gold) 0%, var(--brand-gold-dark) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-icon i {
    color: var(--dark-800);
    font-size: var(--text-lg);
}

.footer-logo-text {
    font-family: var(--font-family-display);
    font-size: var(--text-xl);
    font-weight: var(--font-bold);
    color: var(--text-inverted);
}

.footer-logo-text span {
    color: var(--brand-gold);
}

.footer-brand p {
    font-size: var(--text-sm);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-6);
}

.footer-social {
    display: flex;
    gap: var(--space-3);
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--dark-600);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-400);
    transition: var(--transition-base);
}

.social-link:hover {
    background: var(--brand-gold);
    color: var(--dark-800);
    transform: translateY(-2px);
}

/* Footer Columns */
.footer-column h5 {
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    color: var(--text-inverted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-5);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer-link {
    color: var(--light-500);
    text-decoration: none;
    font-size: var(--text-sm);
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
}

.footer-link:hover {
    color: var(--brand-gold);
    transform: translateX(4px);
}

.footer-link i {
    font-size: var(--text-xs);
    opacity: 0;
    transition: var(--transition-base);
}

.footer-link:hover i {
    opacity: 1;
}

/* Payment Methods */
.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-top: var(--space-4);
}

.payment-icon {
    height: 28px;
    padding: var(--space-1) var(--space-2);
    background: var(--dark-600);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-icon img {
    height: 16px;
    width: auto;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid var(--dark-500);
    padding: var(--space-6) 0;
}

.footer-bottom-content {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-6);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: var(--text-sm);
    color: var(--light-500);
}

.footer-legal {
    display: flex;
    gap: var(--space-6);
}

.footer-legal a {
    font-size: var(--text-sm);
    color: var(--light-500);
    text-decoration: none;
    transition: var(--transition-base);
}

.footer-legal a:hover {
    color: var(--brand-gold);
}

/* ?????????????????????????????????????????????????????????????????????????????
   BUTTONS - Premium Interaction Design
   ????????????????????????????????????????????????????????????????????????????? */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-5);
    font-family: var(--font-family-sans);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    line-height: 1;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition-base);
}

.btn--primary {
    background: linear-gradient(135deg, var(--brand-gold) 0%, var(--brand-gold-dark) 100%);
    color: var(--dark-800);
    box-shadow: var(--shadow-gold);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-lg);
}

.btn--secondary {
    background: var(--light-200);
    color: var(--text-primary);
}

.btn--secondary:hover {
    background: var(--light-300);
}

.btn--outline {
    background: transparent;
    border: 1px solid var(--light-400);
    color: var(--text-primary);
}

.btn--outline:hover {
    border-color: var(--brand-gold);
    color: var(--brand-gold);
    background: var(--brand-gold-subtle);
}

.btn--lg {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-base);
    border-radius: var(--radius-xl);
}

.btn--sm {
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-xs);
}

.btn--full {
    width: 100%;
}

/* ?????????????????????????????????????????????????????????????????????????????
   CARDS - Elevated Content Containers
   ????????????????????????????????????????????????????????????????????????????? */

.card {
    background: var(--light-50);
    border: 1px solid var(--light-200);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition-base);
}

.card:hover {
    border-color: var(--light-300);
    box-shadow: var(--shadow-lg);
}

.card--elevated {
    box-shadow: var(--shadow-md);
}

.card--interactive:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* ?????????????????????????????????????????????????????????????????????????????
   BADGES - Status Indicators
   ????????????????????????????????????????????????????????????????????????????? */

.badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    padding: var(--space-1) var(--space-3);
    font-size: var(--text-xs);
    font-weight: var(--font-semibold);
    border-radius: var(--radius-full);
}

.badge--sale {
    background: linear-gradient(135deg, var(--error) 0%, #DC2626 100%);
    color: var(--text-inverted);
}

.badge--new {
    background: linear-gradient(135deg, var(--success) 0%, #16A34A 100%);
    color: var(--text-inverted);
}

.badge--stock-low {
    background: var(--warning-light);
    color: #92400E;
}

.badge--out-of-stock {
    background: var(--light-300);
    color: var(--text-secondary);
}

/* ?????????????????????????????????????????????????????????????????????????????
   FORM ELEMENTS - Refined Inputs
   ????????????????????????????????????????????????????????????????????????????? */

.form-group {
    margin-bottom: var(--space-5);
}

.form-label {
    display: block;
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--text-primary);
    margin-bottom: var(--space-2);
}

.form-input {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    font-family: var(--font-family-sans);
    font-size: var(--text-base);
    color: var(--text-primary);
    background: var(--light-50);
    border: 1px solid var(--light-300);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
}

.form-input:focus {
    outline: none;
    border-color: var(--brand-gold);
    box-shadow: 0 0 0 3px var(--brand-gold-glow);
}

.form-input::placeholder {
    color: var(--text-muted);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235A6270' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: var(--space-10);
}

/* ?????????????????????????????????????????????????????????????????????????????
   UTILITY CLASSES
   ????????????????????????????????????????????????????????????????????????????? */

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.text-center { text-align: center; }
.text-right { text-align: right; }

.text-primary { color: var(--text-primary); }
.text-secondary { color: var(--text-secondary); }
.text-muted { color: var(--text-muted); }
.text-gold { color: var(--brand-gold); }
.text-success { color: var(--success); }
.text-error { color: var(--error); }

.font-medium { font-weight: var(--font-medium); }
.font-semibold { font-weight: var(--font-semibold); }
.font-bold { font-weight: var(--font-bold); }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ?????????????????????????????????????????????????????????????????????????????
   PAGE TITLES
   ????????????????????????????????????????????????????????????????????????????? */

.page-header {
    padding: var(--space-10) 0 var(--space-8);
}

.page-title {
    font-family: var(--font-family-display);
    font-size: var(--text-4xl);
    font-weight: var(--font-bold);
    color: var(--text-primary);
    letter-spacing: -0.02em;
    margin-bottom: var(--space-2);
}

.page-subtitle {
    font-size: var(--text-lg);
    color: var(--text-secondary);
}

/* ?????????????????????????????????????????????????????????????????????????????
   RESPONSIVE DESIGN
   ????????????????????????????????????????????????????????????????????????????? */

@media (max-width: 1200px) {
    .trust-items {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .trust-items {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-6);
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 64px;
    }
    
    .header-container {
        padding: 0 var(--space-4);
        gap: var(--space-4);
    }
    
    .search-container {
        display: none;
    }
    
    .nav-menu {
        display: none;
    }
    
    .trust-items {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: var(--space-8);
        padding: var(--space-10) var(--space-4);
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: var(--space-4);
        text-align: center;
    }
    
    .page-title {
        font-size: var(--text-3xl);
    }
}

/* ?????????????????????????????????????????????????????????????????????????????
   LEGACY COMPATIBILITY - Existing Component Support
   ????????????????????????????????????????????????????????????????????????????? */

/* Map old variables to new system */
:root {
    --firelax-orange: var(--brand-gold);
    --firelax-orange-hover: var(--brand-gold-dark);
    --firelax-orange-light: var(--brand-gold-light);
    --firelax-dark: var(--dark-700);
    --firelax-darker: var(--dark-800);
    --firelax-sidebar: var(--dark-600);
    --firelax-card: var(--dark-500);
    --firelax-border: var(--dark-400);
    --firelax-text: var(--text-inverted);
    --firelax-text-secondary: var(--light-500);
    --firelax-green: var(--success);
    --firelax-red: var(--error);
    --firelax-blue: var(--info);
    --light-bg: var(--light-50);
    --light-text: var(--text-primary);
    --light-border: var(--light-300);
    --transition: var(--transition-base);
    --shadow-sm: var(--shadow-sm);
    --shadow-md: var(--shadow-md);
    --shadow-lg: var(--shadow-lg);
    --shadow-orange: var(--shadow-gold);
}
