
.grocery-product-row {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #eee;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 6px;
    background-color: #fff;
}
.grocery-thumb img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}
.grocery-details {
    flex: 1;
}
.grocery-title {
    font-weight: bold;
    text-decoration: none;
    color: #333;
}
.grocery-price {
    color: green;
    margin-top: 4px;
}
.grocery-qty {
    display: flex;
    align-items: center;
    gap: 4px;
}
.qty-input {
    width: 50px;
    text-align: center;
}
.grocery-cart .add_to_cart_button {
    background: #27ae60;
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    text-decoration: none;
}
