/* Hover scale - transizione morbida enter/exit sull'elemento stesso */
.col2 {
    transition: transform 0.3s ease;
    cursor: pointer;
}
.col2:hover,
.col2:focus {
    transform: scale(0.98);
}

.ohhv {
    transition: transform 0.3s ease;
    cursor: pointer;
}
.ohhv:hover,
.ohhv:focus {
    transform: scale(0.98);
}

/* #blueLight:hover > .zimh {
    background-color: color(display-p3 0.345 0.379 1 / 0.04);
}

#yellowLight:hover > .zimh {
    background-color: color(display-p3 1 0.91 0.44 / 0.06);
}

#brownLight:hover > .zimh {
    background-color: rgba(138, 122, 102, 0.08);
}

#brownDark:hover > .zimh {
    background-color: rgba(128, 102, 72, 0.079);
} */
/* RIMOSSO: gestito da filter_sort.css
#filterBadge:hover {
    background: #ff9999 !important;
    transform: scale(1.05);
    transition: all 0.2s ease;
    cursor: pointer;
}
*/

.mac a {
    transition: color 0.3s ease;
}

.mac a:hover {
    color: var(--hover-color);
    cursor: pointer;
}

