/* ============================================================
   SCROLLBAR FIX - La Signorina Fuoriluogo
   Hides all internal scrollbars, keeping only the main window scrollbar.
   ============================================================ */

/* 1. Hide all internal scrollbars across the site */
* {
    -ms-overflow-style: none !important;  /* IE and Edge */
    scrollbar-width: none !important;  /* Firefox */
}
*::-webkit-scrollbar {
    display: none !important; /* Chrome, Safari and Opera */
}

/* 2. Re-enable scrollbars strictly for the main HTML/Body */
html, body {
    -ms-overflow-style: auto !important;
    scrollbar-width: auto !important;
}

html::-webkit-scrollbar, 
body::-webkit-scrollbar {
    display: block !important;
    width: 8px !important;
    height: 8px !important;
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
    background: #f5f5f5 !important;
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
    background: #bbbbbb !important;
    border-radius: 4px !important;
}

html::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover {
    background: #999999 !important;
}

/* 3. Safety fix for Wix main containers that might trap scrolling */
body:not(.responsive) #site-root {
    min-width: 0 !important;
    width: 100% !important;
}

#SITE_CONTAINER {
    overflow-x: hidden !important;
}