.top-reviewed-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
.top-product-item {
    border: 1px solid #eaeaea;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    background: #fff;
    transition: box-shadow 0.3s ease;
}
.top-product-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.top-product-image img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 10px;
}
.top-product-title {
    font-size: 16px;
    margin: 10px 0;
    line-height: 1.3;
}
.top-product-price {
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}
.top-product-reviews {
    font-size: 13px;
    color: #777;
}