.card-img{
    max-width: 100%;
     width: 100%;
    height: 100%;
    object-fit: cover; /* Assegura que a imagem preencha a área sem distorcer */
    border-radius: 5px;
}

.product-row-list {
    display: flex;
    align-items: center;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px;
    /* margin: 15px 0; */
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.product-row-list:hover {
    cursor:pointer;
    box-shadow: 0px 0px 20px -10px rgba(0, 0, 0, 0.5);
}

.product-details {
    flex-grow: 1;
    /* float:left; */
}

.product-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.product-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.product-price {
    font-size: 16px;
    color: #ff5e3a;
    font-weight: bold;
}

.product-actions {
    display: flex;
    gap: 10px;
}

.product-actions button {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.product-actions button:hover {
    background-color: #0056b3;
}
