/* Smooth Scroll & Luxury Scrollbar */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    overflow-x: hidden;
    max-width: 100vw;
}

/* Lenis Integration */
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-smooth iframe {
    pointer-events: none;
}

/* Luxury Custom Scrollbar */
html {
    scrollbar-width: thin;
    scrollbar-color: #35D6C5 #E2F4FC;
}

::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #4DA8FF 0%, #35D6C5 100%);
    border-radius: 999px;
    border: 2px solid #E2F4FC;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #2A93F5 0%, #1ABDA9 100%);
}
