.product-image-container {
    height: 150px !important;
    /* Adjust this to control the container height */
    overflow: hidden;
}


.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Ensures that the image fits the container proportionally */
}

.category-section span {
    font-size: 12px;
}

.star-rating-box i {
    color: #ffb30c;

}

.star-rating-box span:before {
    font-size: 13px !important;
}

.product-seller-info {
    font-size: 15px;
}

.product-seller-info span {
    color: #f74780 !important
}

.cart-btn {
    padding: 7px 9px;
    font-size: 14px;
    color: white;
}

.product-card-bottom span {
    color: #f74780;
    font-size: 14px;
}

.product-image-container {
    position: relative;
    width: 100%;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.232);
    border-radius: 6px 6px 0px 0px;
    /* Semi-transparent background */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    /* Initially hidden */
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
    cursor: pointer;
}

.product-image-container img {
    transition: all .5s;
}

.product-image-container:hover .image-overlay {
    opacity: 1;
    /* Show overlay */
    visibility: visible;
    /* Make it visible */
}

.product-image-container:hover img {
    width: 50%;
}