/* Product List */

.cardd {
    /* height: 300px; */
    height: auto;
    width: 250px;
    /* background-color: skyblue; */
    text-align: center;
    cursor: pointer;
    transition: .2s ease-in-out;
}

.cardd:hover {
    background-color: mistyrose;
}

.cardd .cardd-img img {
    height: 180px;
    width: 150px;
    /* width: 100%; */
    object-fit: contain;
}

.cardd .cardd-img {
    background-color: whitesmoke;
}

.cardd .cardd-body {
    text-align: start;
    padding: 10px 10px;
}

.cardd-body .cardd-title {
    font-weight: 650;
}

.cardd-body .cardd-sub-title {
    font-weight: 350;
    font-size: 14px;
}

.cardd-body .cardd-price .price {
    font-weight: 600;
    font-size: 14px;
}

.cardd-body .cardd-price .comp-price {
    font-weight: 450;
    font-size: 12px;
    text-decoration: line-through;
    color: darkgray;
}

.cardd-body .cardd-price .discount {
    font-weight: 450;
    font-size: 14px;
    color: coral;
}

.cardd-foot {
    display: flex;
    justify-content: space-around;
}