.product_card_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.product_card {
    background-color: #ffffff;
    border: none;
    border-radius: 10px;
    height: 420px;
    width: 300px;
    transition: outline 0.5s;
}

.view_more_btn {
    font-size: 12px;
    font-family: OpenSans-semibold;
    color: #408184;
    bottom: 10% !important;
    width: 80%;
    border-radius: 50px !important;
    background-color: #eeeeee;
}

.product_card:hover {
    cursor: pointer;
    background-color: #62aca9;
    color: #eeeeee;
    transition:
        background-color 0.5s ease,
        color 0.5s ease;
}

.product_card:hover .view_more_btn {
    background-color: #408184;
    color: #eeeeee;
    transition:
        background-color 0.5s ease,
        color 0.5s ease;
}

.product_card:hover .truncate-two-lines,
.product_card:hover .product_card_title p {
    color: #eeeeee;
}

.product_card:not(:hover) .view_more_btn {
    background-color: #eeeeee;
    transition: background-color 0.3s ease;
}

.product_card .product_card_img {
    height: 60%;
}

.truncate-two-lines {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: #1e1e1e;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5em;
    max-height: 3em;
    min-height: 3em;
    vertical-align: middle;
    display: flex;
    align-items: center;
}

/* .product_card img {
  object-fit: contain;
  width: 100%;
  height: 100%;
} */

.product_card .product_card_title {
    height: 40%;
    padding-bottom: 30px;
}

.product_card .product_card_title p {
    font-family: OpenSans;
    font-size: 16px;
    color: #1e1e1e;
}

@media screen and (max-width: 768px) {
    .product_card_list {
        flex-direction: column; /* Stack cards vertically */
        align-items: stretch; /* Stretch cards to full width */
    }

    .product_card {
        width: 80%;
        margin: 5% 0;
    }
}
