.mayil-shop-category {
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* HEADER */

.mayil-category-header {
    text-align: center;
    margin-bottom: 35px;
      display: flex;
    justify-content: space-between;
}

.mayil-category-heading {
    margin: 0 0 25px;
    font-family:"montserret", ui-serif;
    font-size: 40px;
    font-weight: 500;
    line-height: 1.2;
}

.mayil-view-all {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    text-decoration: none;

    color: #2a0c00;

    font-size: 10px;
    font-weight: 400;

    letter-spacing: 2px;

    transition: all .3s ease;
}

.mayil-view-all:hover {
    color: #160f0d;
}

.mayil-view-arrow {
    font-size: 22px;
    line-height: 1;
    transition: transform .3s ease;
}

.mayil-view-all:hover .mayil-view-arrow {
    transform: translateX(5px);
}


/* SLIDER */

.mayil-category-slider-wrapper {
    position: relative;
}

.mayil-category-slider {
    display: flex;
    gap: 20px;

    overflow-x: auto;
    scroll-behavior: smooth;

    scrollbar-width: none;

    padding: 0 0 5px;
}

.mayil-category-slider::-webkit-scrollbar {
    display: none;
}

.mayil-category-slide {
    flex: 0 0 calc(25% - 15px);
    min-width: 0;
}


/* CARD */

.mayil-category-card {
    display: block;
    width: 100%;

    text-decoration: none;
}

.mayil-category-image-wrap {
    width: 100%;
    overflow: hidden;

    border-radius: 25px;

    background: #eee;
}

.mayil-category-image {
    width: 100%;
    height: 340px;

    display: block;

    object-fit: cover;

    transition: transform .5s ease;
}

.mayil-category-card:hover .mayil-category-image {
    transform: scale(1.04);
}


/* CATEGORY NAME */

.mayil-category-name {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;

    min-height: 46px;

    margin-top: 14px;

    padding: 10px 15px;

    border: 1px solid #e9dcd4;

    border-radius: 30px;

    background: #fff;

    color: #7b1631;

    font-size: 14px;
    font-weight: 400;

    letter-spacing: 2px;

    text-align: center;

    transition: all .3s ease;
}
.mayil-category-name h4{
    font-size:small;
    margin:0;
}
.mayil-category-card:hover .mayil-category-name {
    background: #2a0c00 !important;
    color: #fff !important;
}


/* ARROWS */

.mayil-category-prev,
.mayil-category-next {

    position: absolute;

    top: 43%;

    transform: translateY(-50%);

    width: 45px;
    height: 45px;

    border-radius: 50%;

    border: 1px solid #eadfd8;

    background: #fff;

    color: #7b1631;

    display: flex;

    justify-content: center;
    align-items: center;

    font-size: 30px;

    line-height: 1;

    cursor: pointer;

    z-index: 5;

    box-shadow: 0 3px 15px rgba(0,0,0,.05);

    transition: all .3s ease;
    padding: 12px !important;
}

.mayil-category-prev {
    left: 5px;
}

.mayil-category-next {
    right: 5px;
}

.mayil-category-prev:hover,
.mayil-category-next:hover {
    background: #7b1631;
    color: #fff;
}

.mayil-category-prev span,
.mayil-category-next span {
    margin-top: -4px;
}


/* TABLET */

@media (max-width: 1024px) {

    .mayil-category-slide {
        flex: 0 0 calc(33.333% - 14px);
    }

    .mayil-category-heading {
        font-size: 36px;
    }

}


/* MOBILE */

@media (max-width: 767px) {

    .mayil-category-header {
        margin-bottom: 30px;
            display: block;
    
    }

    .mayil-category-heading {
        font-size: 34px;
    }

    .mayil-view-all {
        font-size: 9px;
        letter-spacing: 1.8px;
    }

    .mayil-category-slider {
        gap: 20px;

       
    }

    .mayil-category-slide {
        flex: 0 0 calc(75% - 10px);
    }

    .mayil-category-image {
        height: 340px;
    }

    .mayil-category-image-wrap {
        border-radius: 25px;
    }

    .mayil-category-name {
        min-height: 46px;

        margin-top: 14px;

        padding: 8px 5px;

        font-size: 12px;

        letter-spacing: 1.5px;
    }

    .mayil-category-prev,
    .mayil-category-next {
        width: 43px;
        height: 43px;

        top: 42%;
    }

    .mayil-category-prev {
        left: 3px;
    }

    .mayil-category-next {
        right: 3px;
    }

}


/* SMALL MOBILE */

@media (max-width: 480px) {

    .mayil-category-heading {
        font-size: 32px;
    }

    .mayil-category-image {
        height: 400px !important;
    }

}