.Sub_Category_Page {
    margin: 50px 0;
}

.Sub_Category_Page .category_card {
    cursor: pointer;
    border: 1px solid #bb0000;
}

.Sub_Category_Page .common_title {
    margin-bottom: 30px;
}

.Sub_Category_Page .category_card .category_img_wrapper {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
    position: relative;
    overflow: hidden;
}

.Sub_Category_Page .category_card .category_img_wrapper .category_img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: all 0.3s;
}

.Sub_Category_Page .category_card .category_img_wrapper::after {
    background: transparent linear-gradient(180deg, #00000000 0%, #000000 100%) 0% 0% no-repeat padding-box;
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 56px;
    z-index: 1;
    right: 0;
}

.Sub_Category_Page .category_card .category_img_wrapper .new_badge {
    width: 40px;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 5;
}

.Sub_Category_Page .category_card .category_img_wrapper .new_badge .new_badge_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.Sub_Category_Page .category_card .card_title {
    font-size: 16px;
    font-weight: 600;
    color: #bb0000;
    text-align: center;
    margin-top: 10px;
    position: relative;
}



.Sub_Category_Page .category_card:hover .card_title::after {
    width: 100%;
}

.Sub_Category_Page .category_card:hover .category_img_wrapper .category_img {
    transform: scale(1.1);
}

.Sub_Category_Page .category_swiper {
    margin-top: 20px;
}

 .Sub_Category_Page .custom_col {
        margin-bottom: 20px;
    }

/* ================= Media Queries ================= */

@media (min-width: 0px) and (max-width: 575px) {
    .Sub_Category_Page .category_card .card_title {
        font-size: 13px;
    }

   
}

@media (min-width: 576px) and (max-width: 991px) {}

@media (min-width: 992px) and (max-width: 1199px) {


    .Sub_Category_Page .category_card .card_title {
        font-size: 14px;
    }

    .Sub_Category_Page .category_card .category_img_wrapper .new_badge {
        width: 30px;
    }
}

@media (min-width: 1400px) and (max-width: 1599px) {


    .Sub_Category_Page .category_card .card_title {
        font-size: 14px;
    }

    .Sub_Category_Page .category_card .category_img_wrapper .new_badge {
        width: 30px;
    }
}