/*==================================================
MEGA MENU
==================================================*/
/*==================================
Wrapper
==================================*/
.mx-mega-menu{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    display:none;
    z-index:9999;
    background:#fff;
    border-top:1px solid #ececec;
    border-bottom:1px solid #ececec;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
    padding:28px 0 24px;
}
/*==================================
Container
==================================*/
.mx-mega-menu .container{
    position:relative;
    max-width:1500px;
    padding-inline:42px;
}
/*==================================
Arrow Area
==================================*/
.mx-mega-header{
    position:absolute;
    top:72px;
    left:0;
    right:0;
    pointer-events:none;
    z-index:5;
}
.mx-mega-arrow{
    position:absolute;
    width:42px;
    height:42px;
    border:none;
    border-radius:50%;
    background:#fff;
    color:#111;
    box-shadow:0 8px 22px rgba(0,0,0,.12);
    cursor:pointer;
    pointer-events:auto;
    transition:.30s;
}
.mx-mega-prev{
    left:8px;
}
.mx-mega-next{
    right:8px;
}
.mx-mega-arrow:hover{
    background:#ffd700;
    color:#111;
}
/*==================================
Slider
==================================*/
.mx-mega-slider{
    overflow:hidden;
    width:100%;
}
/*==================================
Track
==================================*/
.mx-mega-track{
    display:flex;
    gap:22px;
    transition:.45s ease;
    will-change:transform;
}
/*==================================
Card
==================================*/
.mx-mega-card{
    flex:0 0 calc((100% - 110px)/6);
    min-width:190px;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
}
/*==================================
Image
==================================*/
.mx-mega-thumb-link{
    text-decoration:none;
}
.mx-mega-thumb{
    width:128px;
    height:128px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#f7f7f7;
    border-radius:14px;
    overflow:hidden;
    margin-bottom:15px;
    transition:.35s;
}
.mx-mega-thumb img{
    width:100%;
    height:100%;
    object-fit:contain;
    transition:.35s;
}
/*==================================
Title
==================================*/
.mx-mega-title{
    display:block;
    margin-bottom:12px;
    color:#111;
    font-size:15px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.3px;
    line-height:1.4;
    text-decoration:none;
    transition:.30s;
}
/*=================================
Child Categories
==================================*/
.mx-mega-links{
    margin:0;
    padding:0;
    list-style:none;
}
.mx-mega-links li{
    margin-bottom:8px;
}
.mx-mega-links a{
    color:#555;
    font-size:14px;
    line-height:1.45;
    text-decoration:none;
    transition:.25s;
}
.mx-mega-links a:hover{
    color:#111;
    padding-left:5px;
}
/*==================================
View All
==================================*/
.mx-view-all{
    display:inline-flex;
    align-items:center;
    gap:6px;
    margin-top:12px;
    color:#111;
    font-size:14px;
    font-weight:700;
    text-decoration:none;
    transition:.3s;
}
.mx-view-all::after{
    content:"→";
    transition:.3s;
}
.mx-view-all:hover{
    color:#ffd700;
}
.mx-view-all:hover::after{
    transform:translateX(5px);
}
/*==================================
Footer
==================================*/
.mx-mega-footer{
    display:flex;
    justify-content:center;
    margin-top:26px;
    padding-top:22px;
    border-top:1px solid #ececec;
}
.mx-shop-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:14px 34px;
    border-radius:100px;
    background:#111;
    color:#fff;
    text-decoration:none;
    font-size:15px;
    font-weight:700;
    transition:.35s;
}
.mx-shop-btn:hover{
    background:#ffd700;
    color:#111;
}
.mx-shop-btn i{
    transition:.3s;
}
.mx-shop-btn:hover i{
    transform:translateX(5px);
}
/*==================================
Hover
==================================*/
.mx-mega-card:hover .mx-mega-thumb{
    transform:translateY(-5px);
    box-shadow:0 18px 34px rgba(0,0,0,.10);
}
.mx-mega-card:hover img{
    transform:scale(1.06);
}
.mx-mega-card:hover .mx-mega-title{
    color:#ffd700;
}
/*==================================
Placeholder
==================================*/
.mx-mega-placeholder{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    height:100%;
    color:#bdbdbd;
    font-size:30px;
}
/*==================================
Scrollbar
==================================*/
.mx-mega-slider::-webkit-scrollbar{
    display:none;
}
.mx-mega-slider{
    scrollbar-width:none;
}
/*==================================
Slider
==================================*/
.mx-mega-slider{
    position:relative;
    width:100%;
    overflow-x:auto;
    overflow-y:hidden;
    display:block;
    padding:0 22px;
    cursor:grab;
    scroll-behavior:smooth;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
}
.mx-mega-slider::-webkit-scrollbar{
    display:none;
}
.mx-mega-slider.dragging{
    cursor:grabbing;
    user-select:none;
    scroll-behavior:auto;
}
/*==================================
Track
==================================*/
.mx-mega-track{
    display:flex;
    align-items:flex-start;
    gap:22px;
    width:max-content;
    min-width:100%;
}
/*==================================
Slider Card
==================================*/
.mx-mega-card{
    flex:0 0 185px;
    scroll-snap-align:start;
    scroll-snap-stop:always;
}
/*==================================
Responsive
==================================*/
@media(max-width:1300px){
    .mx-mega-card{
        flex:0 0 calc((100% - 66px)/4);
    }
}
@media(max-width:991px){
    .mx-mega-menu{
        display:none !important;
    }
}

/*//
//////////////////// MEGA PANELS //////////////////////
//////*/

.mx-mega-panel{
    display:none;
    width:100%;
}

.mx-mega-panel.active{
    display:block;
}

/*////////////////////////////////////////////////////////////////////
///////////////////////// NEW ARRIVALS MEGA MENU //////////////////////
////////////////////////////////////////////////////////////////////*/
/*==================================
Wrapper
==================================*/
.mx-na-menu{
    padding:30px 0 34px;
    background:#fff;
}
/*==================================
Container
==================================*/
.mx-na-menu .container{
    max-width:1480px;
    padding-inline:55px;
}
/*==================================
Header
==================================*/
.mx-na-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:24px;
}
.mx-na-header h3{
    margin:0;
    font-size:24px;
    font-weight:800;
    color:#111;
    letter-spacing:.4px;
}
.mx-na-header a{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:#111;
    font-size:15px;
    font-weight:700;
    text-decoration:none;
    transition:.35s;
}
.mx-na-header a:hover{
    color:#ffd700;
}
.mx-na-header a i{
    transition:.35s;
}
.mx-na-header a:hover i{
    transform:translateX(5px);
}
/*==================================
Grid
==================================*/
.mx-na-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:22px;

}
/*==================================
Card
==================================*/
.mx-na-card{
    display:block;
    text-decoration:none;
    overflow:hidden;
    border-radius:18px;
    background:#f7f7f7;
    position:relative;
    transition:.4s;
}
.mx-na-card:hover{
    transform:translateY(-8px);
    box-shadow:0 22px 45px rgba(0,0,0,.12);
}
/*==================================
Image
==================================*/
.mx-na-image{
    position:relative;
    height:285px;
    overflow:hidden;
}
.mx-na-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .7s ease;
}
.mx-na-card:hover img{
    transform:scale(1.08);
}
/*==================================
Overlay
==================================*/
.mx-na-overlay{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding:18px;
    background:
    linear-gradient(
    transparent,
    rgba(0,0,0,.12) 20%,
    rgba(0,0,0,.88)
    );
}
/*==================================
Badge
==================================*/
.mx-na-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:5px 11px;
    border-radius:999px;
    background:#ffd700;
    color:#111;
    font-size:11px;
    font-weight:800;
    letter-spacing:.8px;
    margin-bottom:12px;
}
/*==================================
Title
==================================*/
.mx-na-title{
    margin:0 0 10px;
    color:#fff;
    font-size:18px;
    font-weight:700;
    line-height:1.35;
}
/*==================================
Button
==================================*/
.mx-na-btn{
    display:inline-flex;
    align-items:center;
    gap:7px;
    color:#fff;
    font-size:14px;
    font-weight:700;
    transition:.35s;
}
.mx-na-btn i{
    transition:.35s;
}
.mx-na-card:hover .mx-na-btn{
    color:#ffd700;
}
.mx-na-card:hover .mx-na-btn i{
    transform:translateX(6px);
}
/*==================================
Responsive
==================================*/
@media(max-width:1400px){
    .mx-na-grid{
        grid-template-columns:repeat(4,1fr);
    }
}
@media(max-width:1200px){
    .mx-na-grid{
        grid-template-columns:repeat(3,1fr);
    }
}
@media(max-width:991px){
    .mx-na-menu{
        display:none;
    }
}