.product-card {
    border: 0px;
}

.product-card .product-card-img {
    height: 270px;
    object-fit: contain;
    /* object-position: center top; */
}

.product-card-body {
    padding: 4px 8px;
    height: 104px;
}

.product-card .product-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 0em;
    color: #222222;
}

.stars {
    gap: 5px;
}

.stars img {
    height: 18px;
    width: auto;
}

.product-card .card-text.d-flex {
    gap: 6px;
}

.product-card .prod-price {
    font-size: 16px;
    font-weight: 500;
    line-height: 18px;
    letter-spacing: 0em;
    color: #222222;
}

.product-card .prod-mrp {
    font-size: 14px;
    font-weight: 300;
    line-height: 18px;
    letter-spacing: 0em;
    color: #808080;
}

.product-card .prod-offpercent {
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 0em;
}

@media (max-width: 767px) {
    .product-card-body {
        padding: 4px 5px;
        height: 70px;
    }

    .product-card .product-title {
        font-size: 10px;
        line-height: 12px;
    }
    
    .product-card .prod-price {
        font-size: 12px;
        line-height: 12px;
    }

    .stars {
        gap: 3px;
    }

    .stars img {
        height: 10px;
    }

    .product-card .card-text.d-flex {
        gap: 5px;
    }

    .product-card .prod-mrp,
    .product-card .prod-offpercent {
        font-size: 10px;
        line-height: 12px;
    }

    .product-card .product-card-img {
        height: 180px;
    }
}