/* Custom styles for Kuruyemis Theme */
html {
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: #d97706;
    color: #ffffff;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #fdf8f6; 
}
::-webkit-scrollbar-thumb {
    background: #d97706; 
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: #b45309; 
}

/* Hide scrollbar for category menu but allow scroll */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}
.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
