/*////////////////////////////////////////////////////////////////////
//////////////////////// MOBILE MEGA MENU /////////////////////////////
////////////////////////////////////////////////////////////////////*/
/*==================================================
DESKTOP
==================================================*/
.mx-mobile-toggle,
.mx-mobile-menu-overlay,
.mx-mobile-mega-menu{
    display:none;
}
/*==================================================
MOBILE
==================================================*/
@media(max-width:991px){
    /*==================================
    Toggle Button
    ==================================*/
    .mx-mobile-toggle{
        width:42px;
        height:42px;
        display:flex;
        align-items:center;
        justify-content:center;
        flex-shrink:0;
        border:none;
        outline:none;
        background:transparent;
        color:#111;
        font-size:28px;
        cursor:pointer;
        transition:.30s;
    }
    .mx-mobile-toggle:hover{
        color:#ffd700;
    }
    /*==================================
    Header
    ==================================*/
    .mx-header-inner{
        display:flex;
        align-items:center;
        justify-content:space-between;
    }
    .mx-nav{
        display:none;
    }
    .mx-logo{
        margin-right:auto;
        margin-left:14px;
    }
    /*==================================
    Overlay
    ==================================*/
    .mx-mobile-menu-overlay{
        position:fixed;
        inset:0;
        background:rgba(0,0,0,.45);
        opacity:0;
        visibility:hidden;
        transition:.35s;
        z-index:9998;
    }
    /*==================================
    Drawer
    ==================================*/
	.mx-mobile-mega-menu{
		display:block;
		position:fixed;
		top:0;
		left:0;
		width:340px;
		max-width:88%;
		height:100vh;
		background:#fff;
		transform:translateX(-100%);
		transition:
		transform .35s cubic-bezier(.22,.61,.36,1);
		z-index:9999;
		overflow:hidden;
		box-shadow:20px 0 60px rgba(0,0,0,.18);
	}
    /*==================================
    Active
    ==================================*/
	.mx-mobile-menu-overlay.active{
		opacity:1;
		visibility:visible;
	}
	.mx-mobile-mega-menu.active{
		transform:translateX(0);
	}
    body.mx-mobile-menu-open{
        overflow:hidden;
    }
    /*==================================
    Header
    ==================================*/
    .mx-mobile-menu-header{
        display:flex;
        align-items:center;
        gap:18px;
        height:78px;
        padding:0 22px;
        border-bottom:1px solid #ececec;
    }
    .mx-mobile-menu-close{
        width:42px;
        height:42px;
        border:none;
        background:none;
        color:#111;
        font-size:26px;
        cursor:pointer;
    }
    .mx-mobile-menu-logo img{
        height:34px;
        width:auto;
        display:block;
    }
    /*==================================
    Navigation
    ==================================*/
    .mx-mobile-menu-nav{
        padding:20px 0;
    }
    .mx-mobile-menu-list{
        margin:0;
        padding:0;
        list-style:none;
    }
    .mx-mobile-menu-list li{
        border-bottom:1px solid #f3f3f3;
    }
    .mx-mobile-menu-list li:last-child{
        border-bottom:none;
    }
    .mx-mobile-menu-list li a{
        display:flex;
        align-items:center;
        justify-content:space-between;
        padding:18px 24px;
        color:#111;
        font-size:16px;
        font-weight:600;
        text-decoration:none;
        transition:.30s;
    }
    .mx-mobile-menu-list li a:hover{
        color:#ffd700;
        padding-left:30px;
    }
    /*==================================
    Footer
    ==================================*/
    .mx-mobile-menu-footer{
        padding:20px 24px;
        border-top:1px solid #ececec;
        display:flex;
        flex-direction:column;
        gap:18px;
    }
    .mx-mobile-menu-footer a{
        display:flex;
        align-items:center;
        gap:12px;
        color:#111;
        font-size:15px;
        font-weight:600;
        text-decoration:none;
    }
    .mx-mobile-menu-footer a i{
        font-size:20px;
    }
}
/* ///////////////////////////////////////// */

/*==================================
Mobile Panels
==================================*/
.mx-mobile-panel-body{
    padding-bottom:50px;
}
.mx-mobile-panel{
    position:absolute;
    inset:0;
    background:#111111;
    color:#ffffff;
    z-index:20;
    transform:translateX(100%);
    transition:.35s;
    overflow-y:auto;
}
.mx-mobile-panel.active{
    transform:translateX(0);
}
.mx-mobile-panel-header{
    display:flex;
    align-items:center;
    gap:16px;
    height:72px;
    padding:0 22px;
    background:#181818;
    border-bottom:1px solid rgba(255,255,255,.08);
}
.mx-mobile-panel-header span{
    color:#fff;
    font-size:18px;
    font-weight:700;
}

.mx-mobile-back{
    border:none;
    background:none;
    color:#fff;
    font-size:24px;
}
.mx-mobile-submenu{
    margin:0;
    padding:0;
    list-style:none;
}
.mx-mobile-submenu li{
    border-bottom:1px solid rgba(255,255,255,.06);
}
.mx-mobile-submenu li a{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:18px 24px;
    color:#ffffff;
    text-decoration:none;
    font-size:14px;
    font-weight:500;
    transition:.30s;
}
.mx-mobile-submenu li a:hover{
    background:#ffd700;
    color:#111;
    padding-left:30px;
}
.mx-mobile-submenu li a i{
    font-size:14px;
}
/*==================================================
NEW ARRIVALS PRODUCTS
==================================================*/
.mx-mobile-products{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
    padding:20px;
}
/*==================================
Card
==================================*/
.mx-mobile-product-card{
    display:block;
    text-decoration:none;
    background:#1b1b1b;
    border:1px solid #2b2b2b;
    border-radius:18px;
    overflow:hidden;
    transition:.35s;
}
.mx-mobile-product-card:hover{
    border-color:#ffd700;
    transform:translateY(-4px);
}
/*==================================
Image
==================================*/
.mx-mobile-product-image{
    height:130px;
    padding:16px;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
}
.mx-mobile-product-image img{
    width:100%;
    height:100%;
    object-fit:contain;
    transition:.35s;
}
.mx-mobile-product-card:hover img{
    transform:scale(1.06);
}
/*==================================
Title
==================================*/
.mx-mobile-product-card h4{
    margin:0;
    padding:12px 10px;
    color:#fff;
    font-size:13px;
    font-weight:600;
    line-height:1.4;
    text-align:center;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}
/*==================================
Hover
==================================*/
.mx-mobile-product-card:hover h4{
    color:#ffd700;
}
/*==================================================
MOBILE WORK ESSENTIALS PANEL
==================================================*/
/*==================================
Intro
==================================*/
.mx-mobile-we-intro{
    margin:18px;
    padding:22px;
    border-radius:18px;
    background:linear-gradient(
    135deg,
    #242424 0%,
    #111 100%
    );
    text-align:center;
    border:1px solid rgba(255,215,0,.18);
}
.mx-mobile-we-intro h3{
    margin:0 0 10px;
    color:#fff;
    font-size:20px;
    font-weight:800;
}
.mx-mobile-we-intro p{
    margin:0;
    color:#cfcfcf;
    font-size:13px;
    line-height:1.7;
}
/*==================================
Grid
==================================*/
.mx-mobile-we-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
    padding:0 18px;
}
/*==================================
Card
==================================*/
.mx-mobile-we-card{
    display:block;
    text-decoration:none;
    background:#1b1b1b;
    border:1px solid #2a2a2a;
    border-radius:16px;
    overflow:hidden;
    transition:.35s;
}
.mx-mobile-we-card:hover{
    border-color:#ffd700;
    transform:translateY(-4px);
}
/*==================================
Image
==================================*/
.mx-mobile-we-image{
    height:110px;
    padding:14px;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
}
.mx-mobile-we-image img{
    width:100%;
    height:100%;
    object-fit:contain;
    transition:.35s;
}
.mx-mobile-we-card:hover img{
    transform:scale(1.08);
}
/*==================================
Title
==================================*/
.mx-mobile-we-card h4{
    margin:0;
    padding:14px 10px;
    color:#fff;
    font-size:13px;
    font-weight:600;
    line-height:1.5;
    text-align:center;
}
.mx-mobile-we-card:hover h4{
    color:#ffd700;
}
/*==================================
Bottom CTA
==================================*/
.mx-mobile-we-bottom{
    margin:20px 18px 10px;
    padding:22px;
    border-radius:18px;
    background:#1a1a1a;
    text-align:center;
    border:1px solid rgba(255,255,255,.08);
}
.mx-mobile-we-bottom h5{
    margin:0 0 8px;
    color:#fff;
    font-size:18px;
    font-weight:700;
}
.mx-mobile-we-bottom p{
    margin:0 0 18px;
    color:#bdbdbd;
    font-size:13px;
    line-height:1.7;
}
.mx-mobile-we-bottom a{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:12px 24px;
    border-radius:999px;
    background:#ffd700;
    color:#111;
    font-size:14px;
    font-weight:700;
    text-decoration:none;
    transition:.35s;
}
.mx-mobile-we-bottom a:hover{
    background:#fff;
}
.mx-mobile-we-bottom a i{
    transition:.35s;
}
.mx-mobile-we-bottom a:hover i{
    transform:translateX(4px);
}
/*==================================================
MOBILE ACCESSORIES INTRO
==================================================*/
.mx-mobile-acc-intro{
    margin:18px;
    padding:20px;
    border-radius:16px;
    background:linear-gradient(
    135deg,
    #242424 0%,
    #111 100%
    );
    text-align:center;
    border:1px solid rgba(255,215,0,.18);
}
.mx-mobile-acc-intro h3{
    margin:0 0 8px;
    color:#fff;
    font-size:18px;
    font-weight:800;
}
.mx-mobile-acc-intro p{
    margin:0;
    color:#cfcfcf;
    font-size:13px;
    line-height:1.6;
}
/*==================================================
MOBILE ACCESSORIES PANEL
==================================================*/
.mx-mobile-acc-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
    padding:20px;
}
.mx-mobile-acc-card{
    display:block;
    text-decoration:none;
    background:#1b1b1b;
    border:1px solid #2b2b2b;
    border-radius:16px;
    overflow:hidden;
    transition:.35s;
}
.mx-mobile-acc-card:hover{
    border-color:#ffd700;
    transform:translateY(-4px);
}
.mx-mobile-acc-image{
    height:120px;
    padding:14px;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
}
.mx-mobile-acc-image img{
    width:100%;
    height:100%;
    object-fit:contain;
    transition:.35s;
}
.mx-mobile-acc-card:hover img{
    transform:scale(1.06);
}
.mx-mobile-acc-card h4{
    margin:0;
    padding:12px 10px;
    color:#fff;
    font-size:13px;
    font-weight:600;
    text-align:center;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}
/*  */

/*==================================================
MOBILE COLLECTIONS PANEL
==================================================*/
.mx-mobile-coll-list{
    display:flex;
    flex-direction:column;
    gap:14px;
    padding:20px;
}
.mx-mobile-coll-card{
    position:relative;
    display:block;
    height:140px;
    border-radius:16px;
    overflow:hidden;
    text-decoration:none;
    background:#1b1b1b;
}
.mx-mobile-coll-card::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
    transparent 50%,
    rgba(0,0,0,.6)
    );
}
.mx-mobile-coll-image{
    position:absolute;
    inset:0;
}
.mx-mobile-coll-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.4s;
}
.mx-mobile-coll-card:hover img{
    transform:scale(1.06);
}
.mx-mobile-coll-name{
    position:absolute;
    left:14px;
    bottom:12px;
    z-index:2;
    color:#fff;
    font-size:14px;
    font-weight:700;
}