.borderless-card {
    border: none;
}
.product-image {
    max-height: 300px; /* Adjust this value as needed */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa; /* Light background color */
    overflow: hidden;
}
.card-title {
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Number of lines you want */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 5em;
}
.product-image img {
    max-height: 100%;
    max-width: 100%;
    height: auto;
    width: auto;
    transition: transform 0.5s ease;
}
.product-image:hover img {
    transform: scale(1.1); /* Scales the image up to 110% of its original size */
}

.product-price {
    font-weight: bold;
    font-size: 2.2em;
    color: #333; /* Or any color that fits your design */
}
.borderless-card{
    border:none!important;
}
.card-footer{
    border-top:none!important;
    border-bottom:1px!important;
}
