/* Global custom scrollbar (viewport + all scrollable elements) */
html,
body,
* {
    scrollbar-width: auto;
    scrollbar-color: #ffcb05 #1a1a1a;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar,
*::-webkit-scrollbar {
    width: 16px !important;
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track,
*::-webkit-scrollbar-track {
    background: #1a1a1a !important;
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb,
*::-webkit-scrollbar-thumb {
    background-color: #ffcb05 !important;
    border-radius: 999px;
    border: 2px solid #1a1a1a;
    min-height: 40px;
}

html::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover,
*::-webkit-scrollbar-thumb:hover {
    background-color: #ffcb05 !important;
}
.cc-btn{
    border-radius: 10px;
}
/* Home hero: mobile-only height override */
@media (max-width: 767.98px) {
    #hero-variant1-0 .hero-section {
        min-height: 50vh !important;
    }
}

