/* ===== PREMIUM GOLDEN SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--furniture-dark, #0A1410);
}

::-webkit-scrollbar-thumb {
    background: #00a99d;
    border-radius: 10px;
    border: 2px solid var(--furniture-dark, #0A1410);
}

::-webkit-scrollbar-thumb:hover {
    background: #00a99d;
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: #00a99d #0A1410;
}

/* Lenis Smooth Scroll Styles */
html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}