.suggested-product {
    background-color: #f7f7f7;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 10px;
}

.suggested-product__labels {
    display: flex;
    flex-direction: column;
}

.suggested-product__pic img {
    max-width: 100%;
    height: auto;
}

.suggested-product__name {
    font-size: 16px;
    font-weight: bold;
    margin-top: 10px;
}

.suggested-product__price {
    font-size: 14px;
    color: #888;
    margin-top: 5px;
}

.suggested-product__category {
    font-size: 14px;
    margin-top: 5px;
}

.suggested-product__review {
    width: 20px;
    height: 20px;
    background-color: #ffd700;
    margin-top: 10px;
}

.suggested-product__add-to-cart {
    background-color: #4caf50;
    color: #fff;
    border: none;
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 5px;
    margin-top: 10px;
    cursor: pointer;
}

.suggested-product__add-to-cart:hover {
    background-color: #45a049;
}