.categories-carousel {
    margin: 20px auto;
}

.category-item {
    text-align: center;
    padding: 10px;
}
.category-item a{
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid pink;
    background-color: #000;
    overflow: hidden;  
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    max-width: 90%;
    max-height: 90%;
    margin: auto;
}

.category-item:hover a{
    -webkit-box-shadow: 0px 0px 10px 0px rgba(255,192,203,1);
    -moz-box-shadow: 0px 0px 10px 0px rgba(255,192,203,1);
    box-shadow: 0px 0px 10px 0px rgba(255,192,203,1);
}


.category-item .img-area {
    width: 100%;
    height: 260px;
    background-size: cover;
    background-position: center;
}

.category-item h3 {
    font-size: 24px;
    color: #d1d1d1;
    min-height: 50px;
    align-items: center;
    display: flex;
    justify-content: center;
    text-align: center;
    max-width: 90%;
}
.category-item a{
    text-decoration: none;
}
.category-item:hover h3{
    color: pink;
}

.btn-area{
    width: 100%;
    display: flex;
    justify-content: center;
}

.categories-carousel .owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled {
    display: block !important;
}
.categories-carousel{
    position: relative;
}
.categories-carousel .owl-prev span{
    position: absolute;
    top: 35%;
    left: -30px;
    font-size: 70px;
    color: pink;
}
.categories-carousel .owl-next span{
    position: absolute;
    top: 35%;
    right: -30px;
    font-size: 70px;
    color: pink;
}

@media screen and (max-width: 800px){
    .category-item .img-area{
        height: 200px;
    }
    .owl-item h3{
        min-height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .categories-carousel .owl-next span{
        top: unset;
        bottom: -40px;
        right: 30px !important;
    }
    .categories-carousel .owl-prev span{
        top: unset;
        bottom: -40px;
        left: 30px !important;
    }
}
@media screen and (max-width: 600px){
    .category-item .img-area{
        height: 140px;
    }
    .category-item h3{
        font-size: 18px;
    }
}