
/* =========================================
   MOBILE HEADER V1
========================================= */

@media(max-width:768px){

    .top-bar{

        padding:12px;
    }

    .top-bar .row{

        gap:12px;
    }

    .top-bar .col-lg-3{

        width:100%;

        justify-content:center !important;
    }

    .top-bar .col-lg-6{

        width:100%;
    }

    .logo-wrap{

        justify-content:center;
    }

    .logo-main{

        font-size:22px;
    }

    .logo-tagline{

        font-size:6px;
    }

    .search-bar{

        max-width:100%;

        height:44px;

        margin-top:0;
    }

    .search-bar input{

        font-size:14px;

        padding:0 16px;
    }

    .bottom-bar{

        overflow-x:auto;

        scrollbar-width:none;
    }

    .bottom-bar::-webkit-scrollbar{

        display:none;
    }

    .bottom-bar .container-fluid{

        width:max-content;

        gap:20px;

        flex-wrap:nowrap;
    }

    .bottom-bar a{

        white-space:nowrap;

        font-size:14px;
    }

}

/* =========================================
   MOBILE HEADER V2
========================================= */

.mobile-header{
    display:none;
}

.mobile-header-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    width:100%;
}

.mobile-search-wrap{
    width:100%;
}

.mobile-menu{
    position:fixed;
    top:0;
    left:-320px;
    width:280px;
    height:100vh;
    background:#fff;
    z-index:10001;
    padding:90px 25px 30px;
    transition:.3s ease;
    box-shadow:0 0 30px rgba(0,0,0,.15);
}

.mobile-menu.active{
    left:0;
}

.mobile-menu a{

    display:flex;

    align-items:center;

    padding:10px 22px;

    color:#f3e2cf;

    text-decoration:none;

    font-size:15px;

    font-weight:500;

    border-bottom:
    1px solid rgba(255,255,255,.05);

    transition:.25s;
}

.mobile-menu a:hover{

    background:
    rgba(212,162,76,.12);

    color:#d4a24c;

    padding-left:28px;
}

.mobile-menu-overlay{

    backdrop-filter:
    blur(3px);

    background:
    rgba(0,0,0,.55);
}

.mobile-menu-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.45);
    opacity:0;
    visibility:hidden;
    z-index:10000;
    transition:.3s;
}

.mobile-menu-overlay.active{
    opacity:1;
    visibility:visible;
}

@media(max-width:991px){

    .top-bar{
        padding:0;
        background:none;
        border:none;
    }

    .top-bar > .row{
        display:none;
    }

    .mobile-header{

        display:flex;
        flex-direction:column;
        gap:12px;

        padding:12px;

        background:
        linear-gradient(
        135deg,
        #7B4F2C,
        #5f3b20
        );
        border-radius: 10px;
    }

    .mobile-menu-btn{

        background:none;
        border:none;
        color:#fff;
        font-size:30px;
        cursor:pointer;
    }

    .mobile-logo{

        display:flex;
        align-items:center;
        gap:10px;

        text-decoration:none;
        color:#fff;
    }

    .mobile-logo img{

        width:48px;
        height:48px;

        border-radius:12px;
    }

    .mobile-logo span{

        font-size:22px;

        font-family:
        'Playfair Display', serif;

        font-weight:600;
    }

    .mobile-cart{

        position:relative;

        color:#fff;

        cursor:pointer;
    }

    .mobile-cart i{

        font-size:28px;
    }

    .mobile-cart span{

        position:absolute;

        top:-8px;
        right:-10px;

        min-width:18px;
        height:18px;

        border-radius:50%;

        background:#ff3d57;

        color:#fff;

        display:flex;
        align-items:center;
        justify-content:center;

        font-size:10px;
    }

    .mobile-search-wrap{

        display:block;

        padding:0;

        background:transparent;
    }

    .mobile-search-wrap .search-bar{

        max-width:100%;

        margin:0;

        background:#fff;

        border-radius:999px;

        overflow:hidden;

        box-shadow:
        0 10px 24px
        rgba(0,0,0,.12);
    }

    .bottom-bar{

        display:block;

        overflow-x:auto;

        white-space:nowrap;
    }

    .bottom-bar::-webkit-scrollbar{
        display:none;
    }

    .bottom-bar .container-fluid{

        width:max-content;

        gap:24px !important;

        padding:0 14px;
    }

    .bottom-bar a{

        white-space:nowrap;

        font-size:13px;

        padding:10px 0;
    }
}

.bottom-bar a{

    font-size:14px !important;

    font-weight:500;
}

@media(max-width:991px){

    .bottom-bar{

        display:none;
    }

}

.mobile-menu{

    position:fixed;

    top:0;
    left:-320px;

    width:290px;
    height:100vh;

    background:
    linear-gradient(
    180deg,
    #4a2f1d,
    #2f1d11
    );

    z-index:10001;

    transition:.35s ease;

    box-shadow:
    10px 0 40px
    rgba(0,0,0,.35);

    overflow-y:auto;
}

.mobile-menu-header{

    position:relative;

    padding:10px 20px 16px;

    display:block !important;

    border-bottom:
    1px solid rgba(255,255,255,.08);
}


.mobile-menu-close{

    position:absolute ;

    top:-35px;

    right:-4px;

    z-index: 10;

    width:40px;
    height:40px;

    border:none;

    border-radius:50%;

    background:
    rgba(212,162,76,.15);

    color:#d4a24c;

    display:flex;

    align-items:center;

    justify-content:center;

    cursor:pointer;

    transition:.3s;
}



.mobile-menu-brand{

    display:flex;

    align-items:center;

    gap:12px;
    
    margin-top:0;
}

.mobile-menu-brand img{

    width:42px;
    height:42px;

    border-radius:10px;
}

.mobile-menu-brand span{

    color:#fff;

    font-size:22px;

    font-family:
    'Playfair Display', serif;

    font-weight:600;
}

.mobile-menu-close{

    background:none;

    border:none;

    color:#d4a24c;

    font-size:22px;

    cursor:pointer;
}

.mobile-menu-close{

    width:38px;
    height:38px;

    border:none;

    border-radius:50%;

    background:
    rgba(212,162,76,.12);

    color:#d4a24c;

    display:flex;

    align-items:center;
    justify-content:center;

    cursor:pointer;

    transition:.25s;
}

.mobile-menu-close:hover{

    background:
    rgba(212,162,76,.22);
}

.mobile-account-card{

    display:block !important;

    padding:16px 18px !important;

    background:
    rgba(255,255,255,.05);

    margin:14px 16px;

    border-radius:14px;

    border:none !important;
}

.mobile-account-top{

    display:flex;

    gap:6px;

    align-items:center;

    display:block !important;
}

.mobile-account-top span{

    display:block;

    font-size:12px;

    color:#cbb39d;
}

.mobile-account-top strong{

    color:#fff;

    font-size:16px;

    font-weight:600;

    display:block;

    margin-top:2px;
}

.mobile-account-label{

    margin-top:8px;

    color:#d4a24c;

    font-size:13px;
}