/*CURSORE CUSTOM*/
body {
      * {
            cursor: url('../assets/CursoreAFeco.png'), auto!important;
        }
        *::before,
        *::after {
            cursor: url('../assets/CursoreAFeco.png'), auto!important;
        }
        a, a:visited, a:hover, a:active {
            cursor: url('../assets/CursoreAFeco.png'), auto!important;
        }
        ul, li {
            cursor: url('../assets/CursoreAFeco.png'), auto!important;
        }
}
/*CURSORE CUSTOM*/

/* GLOBAL TYPOGRAPHY IMPROVEMENT */
html {
    scroll-behavior: smooth;
}

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

/* Ensure section base */
section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Recensioni & Brand Values sections override min-height */
#recensioni,
#brand-values {
    min-height: auto;
    display: block;
}

/*SCROLL BAR*/
::-webkit-scrollbar {
    display: none;
}
::-webkit-scrollbar-track {
    display: none;
}
::-webkit-scrollbar-thumb {
    display: none;
}
::-webkit-scrollbar-thumb:hover {
    display: none;
}
/*SCROLL BAR*/