/* category-section css start */
.category-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    /* align-items: center; */
}


.swiper.category-slider .swiper-slide {
    width: 151px;
}

.swiper.category-slider .swiper-wrapper {
    width: fit-content;
    margin: 0 auto;
}

.category-item {
    display: flex;
    align-items: center;
    justify-content: center;
    row-gap: 5px;
    flex-direction: column;
}

.category-item .img {
    overflow: hidden;
    border-radius: 8px;
    background: var(--item-bg3);
    box-shadow: 0px 3px 12px rgb(0 0 0 / 10%);
    transition: all .3s ease-in-out;
}

.category-item:hover .img {
    box-shadow: -1px 3px 12px rgb(0 0 0 / 20%);
}

.category-item .img img {
    aspect-ratio: 1/1;
    transition: all .3s ease-in-out;
}

.category-item:hover .img img {
    transform: scale(1.1);
}

.category-item .content {
    text-align: center;
    padding: 0 4px;
}

.category-item .content .title {
    text-transform: capitalize;
    font-size: 14px;
    line-height: 18px;
    font-weight: 500;
    transition: all .3s ease-in-out;
}

.category-item:hover .content .title {
    text-decoration: underline;
}

/* category-section css end */

@media only screen and (max-width:575px) {

    /* category-section css start */
    .swiper.category-slider .swiper-slide {
        width: 85px;
    }

    .category-item .img {
        border-radius: 5px;
    }

    .category-item .content .title {
        font-size: 12px;
        line-height: 14px;
    }

    /* category-section css end */
}