

.prduct-category-img{
    padding: 20px 120px 10px;
    background: linear-gradient(#fff , #ffdce1);
}

.product-category{
    display: flex;
    /* gap: 20px; */
    overflow: auto;
}
.product-category div{
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    text-align: center;
    padding: 10px 32px;
    cursor: pointer;
}
.product-category img{
    background-color: white;
    border-radius: 50%;
    height: 200px;
    border: 5px solid #ffffff;
    width: 100px;
    height: 100px;
    margin: auto;
}



.prduct-category-img{
    padding: 20px 120px 0px;
    background: linear-gradient(#fff, #8f145240);
}

.product-category{
    display: flex;
    /* gap: 20px; */
}
.product-category div{
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    text-align: center;
    padding: 10px 32px;
    cursor: pointer;
    position: relative;
}

.product-category a{
    display: flex;
    flex-direction: column;
}

.product-category img{
    background-color: white;
    border-radius: 20%;
    height: 200px;
    border: 5px solid rgb(145 25 86 / 39%);
    width: 100px;
    height: 100px;
    margin: auto;
    object-fit: cover;
}

.product-category a{
    text-decoration: none;
    gap: 8px;
}

.product-category a span{
    color: #8f1452;
    font-weight: 500;
    text-decoration: none;
    /* background-color: white; */
}

.active-bar:after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    background: var(--border-color);
    width: 100%;
    height: 4px;
    border-radius: 10px 10px 0px 0px;
}



.category-product{
    padding: 20px 120px;
}

.category-product-list{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 12px;
    background: #ffffff00;
    margin-bottom: 16px;
}

.category-heading{
    margin-top: 12px;
    font-size: 18px;
}

.category-heading a{
    color: #dc3545;
}







@media (max-width: 1200px) {
    .category-product-list{
        grid-template-columns: repeat(3, 1fr);
    }
}


@media (max-width: 992px) {
    .category-product-list{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .category-product , .prduct-category-img{
        padding: 16px 0px 0px;
    }

    .category-product-list{
        grid-template-columns: repeat(1, 1fr);
    }
    .product-category img {
        width: 60px;
        height: 60px;
    }
    .product-category div {
        padding: 5px;
    }
    /* .category-product-list .item {
        width: 100% !Important;
    } */

    .category-product-list .item  a{
        width: 100% !Important;
    }
    .category-product-list {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 12px;
        background: #ffffff00;
        margin-bottom: 16px;
    }
}