.product-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.product-row , .product-row-2 {
    width: 100%; /* Set the width to 100% to force each row to a new line */
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.product-item {
    width: 30%;
    padding: 10px;
    border: 1px solid #ddd;
    text-align: center;
}

.product-row-2 .product-item {
    width: 48% !important;
    padding: 10px;
    border: 1px solid #ddd;
    text-align: center;
}

.product-name,
.product-price {
    margin-top: 5px;
}
.view-all-link {
    text-align: center;
    margin-top: 20px;
}

.view-all-link .button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0073e6;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.view-all-link .button:hover {
    background-color: #0057b0;
}

.order-button {
    padding: 8px;
    padding-left: 12px;
    padding-right: 12px;
    background: #3d7da8;
    color: white;
    border-radius: 6px;
}

.order-button:hover {
    background: #3face0;
}