.Common_Category_Card {
    /* background: #f6eedc; */
    /* margin-bottom: 20px; */
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 3px 6px #00000029;
}

.Common_Category_Card .img_holder {
    background: #2f2f2f;
    width: 100%;
    /* height: 350px; */
    aspect-ratio: 1/1;
    /* padding: 20px; */
    border-radius: 10px 10px 0px 0px;
}

.Common_Category_Card .img_holder .prod_img {
    width: 100%;
    height: 100%;
    /* object-fit: contain; */
    object-fit: cover;
    object-position: center;
}

.Common_Category_Card .title_text {
    font-size: 16px;
    margin: 20px 20px 20px 0px;
    text-align: left;
    cursor: pointer;
    color: #fff;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}

.Common_Category_Card .title_text .inner_icon {
    font-size: 16px;
    transition: 0.3s;
    margin-left: 5px;
}

.Common_Category_Card .title_text:hover .inner_icon {
    transform: translate(8px, 0px);
    transition: 0.3s;
}


@media (min-width: 0px) and (max-width: 575px) {
    .Common_Category_Card .img_holder {
        height: 120px;
        /* padding: 10px; */
    }

    .Common_Category_Card .title_text {
        font-size: 14px;
        margin: 10px 10px 10px 0px;
        /* height: 35px; */
    }

    .Common_Category_Card .title_text .inner_icon {
        font-size: 11px;
    }

}

@media (min-width: 576px) and (max-width: 767.98px) {
    .Common_Category_Card .img_holder {
        height: 220px;
    }

    .Common_Category_Card .title_text {
        font-size: 14px;
        margin: 15px 10px;
    }


}

@media (min-width: 768px) and (max-width: 1199px) {
    .Common_Category_Card .img_holder {
        height: 280px;
    }

    .Common_Category_Card .title_text {
        font-size: 14px;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .Common_Category_Card .img_holder {
        height: 300px;
    }

    .Common_Category_Card .title_text {
        font-size: 15px;
    }
}