CSS can detect the presence of a vertical classic scrollbar:

body {
margin: 0;
container-type: inline-size;
}

@​container (width < 100vw) {
/* classic scrollbar is present */
}

Test page: jsbin.com/mijojox/edit?html,cs