:root {
    /* Brand Colors */
    --color-primary: #984e00;
    --color-primary-variant: #984f00;
    --color-secondary: #ffbd62;

    /* Neutral Colors */
    --color-white: #ffffff;
    --color-black: #000000;

    /* Text Colors */
    --color-text-dark: #171d2f;
    --color-text-medium: #333;
    --color-text-light: #555;
    --color-text-muted: #666;

    /* Background Colors */
    --color-bg-light: #f5f5f5;
    --color-bg-gray: #e0e0e0;
    --color-bg-border: #eee;
    --color-bg-50-white: #ffffff83;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    --gradient-primary-variant: linear-gradient(135deg, var(--color-primary-variant) 0%, var(--color-secondary) 100%);
}

/* Custom Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 4px;
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-secondary);
}

/* Firefox Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--color-primary) #f1f1f1;
}