/* hide ONLY on mobile (max-width 768px) */
@media (max-width: 768px) {
    .product-rating-wrapper {
        display: none !important;
    }
}

/* show on desktop/tablet normally */
@media (min-width: 769px) {
    .product-rating-wrapper {
        display: inline-block !important;
    }
}