/**
 * Privilege Studio - Custom Styles
 * Styles personnalisés (hors configuration Tailwind)
 */

/* ============================================
   SMOOTH SCROLL BEHAVIOR
============================================= */
html {
    scroll-behavior: smooth;
}

/* ============================================
   CUSTOM SCROLLBAR - Luxury Feel
============================================= */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: #E5C450;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #d4b445;
}

/* ============================================
   HIDE SCROLLBAR - Carousel Luxury Feel
============================================= */
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}