:root {
    /* Your Custom Premium Brand Colors */
    --color-brand: #FF5A5F;       /* Coral Red */
    --color-secondary: #00A699;   /* Teal */
    --color-dark: #484848;        /* Charcoal */
    --color-surface: #F7F7F9;     /* Soft Gray */
}

/* Base Body Styles */
body {
    background-color: var(--color-surface);
    color: var(--color-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Global Focus Outlines (Accessibility & Style) */
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--color-brand) !important;
    box-shadow: 0 0 0 3px rgba(255, 90, 95, 0.2) !important;
}

/* Custom Premium Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-surface);
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-brand);
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}
.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

a, button {
    transition: all 0.3s ease-in-out;
}