/* ==========================================================
   GLORE FASHION
   HEADER V3
========================================================== */

:root{

    --gf-gold:#C8A44D;
    --gf-dark:#111111;
    --gf-white:#ffffff;

    --gf-border:rgba(200,164,77,.15);

    --gf-transition:.35s ease;

    --gf-shadow:0 20px 60px rgba(0,0,0,.08);

}


/* ==========================================================
   MAIN HEADER
========================================================== */

.gf-header{

    position:relative;

    width:100%;

    background:#fff;

    border-bottom:1px solid var(--gf-border);

    z-index:999;

}


/* ==========================================================
   HEADER CONTAINER
========================================================== */

.gf-header__container{

    width:min(1400px,calc(100% - 60px));

    height:92px;

    margin:0 auto;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:40px;

}


/* ==========================================================
   LOGO
========================================================== */

.gf-header__logo{

    flex:0 0 180px;

    display:flex;

    align-items:center;

}

.gf-header__logo .custom-logo,
.gf-mobile-logo .custom-logo,
.gf-mobile-drawer__logo .custom-logo{

    height:48px;
    width:auto;
    max-width:none;
    display:block;

}

.gf-header__logo .custom-logo-link,
.gf-mobile-logo .custom-logo-link,
.gf-mobile-drawer__logo .custom-logo-link{

    display:flex;
    align-items:center;

}


/* ==========================================================
   DESKTOP NAVIGATION
========================================================== */

.gf-nav{

    flex:1;

    display:flex;

    justify-content:center;

}

.gf-menu{

    display:flex;

    align-items:center;

    gap:34px;

    margin:0;

    padding:0;

    list-style:none;

}

.gf-menu>li{

    position:relative;

}

.gf-menu>li>a{

    position:relative;

    display:flex;

    align-items:center;

    height:92px;

    padding:0 6px;

    color:var(--gf-dark);

    text-decoration:none;

    font-size:15px;

    font-weight:600;

    transition:var(--gf-transition);

}

.gf-menu>li>a:hover{

    color:var(--gf-gold);

}


/* underline */

.gf-menu>li>a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:22px;

    width:0;

    height:2px;

    background:var(--gf-gold);

    transition:var(--gf-transition);

}

.gf-menu>li:hover>a::after{

    width:100%;

}


/* ==========================================================
   CTA
========================================================== */

.gf-header__cta{

    flex:0 0 auto;

}

.gf-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    min-width:165px;

    height:54px;

    border:2px solid var(--gf-gold);

    border-radius:999px;

    color:var(--gf-dark);

    text-decoration:none;

    font-weight:700;

    transition:var(--gf-transition);

}

.gf-btn:hover{

    background:var(--gf-gold);

    color:#fff;

}


/* ==========================================================
   DESKTOP DROPDOWNS
========================================================== */

.gf-menu .sub-menu{

    position:absolute;

    top:100%;
    left:0;

    min-width:280px;

    margin:0;
    padding:18px 0;

    list-style:none;

    background:rgba(255,255,255,.96);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(200,164,77,.20);

    border-radius:18px;

    box-shadow:0 20px 60px rgba(0,0,0,.08);

    opacity:0;

    visibility:hidden;

    pointer-events:none;

    transform:translateY(15px);

    transition:all .35s ease;

    z-index:9999;

}

.gf-menu > li:hover > .sub-menu{

    opacity:1;

    visibility:visible;

    pointer-events:auto;

    transform:translateY(0);

}

.gf-menu .sub-menu li{

    width:100%;

}

.gf-menu .sub-menu a{

    display:block;

    padding:13px 26px;

    color:#222;

    text-decoration:none;

    font-size:15px;

    font-weight:500;

    transition:.3s ease;

}

.gf-menu .sub-menu a:hover{

    background:#F8F5EF;

    color:var(--gf-gold);

    padding-left:34px;

}


.gf-menu .menu-item-has-children > a{

    padding-right:22px;

}

.gf-menu .menu-item-has-children > a::before{

    content:"⌄";

    position:absolute;

    right:0;

    font-size:12px;

    color:#777;

    transition:.35s ease;

}

.gf-menu .menu-item-has-children:hover > a::before{

    transform:rotate(180deg);

    color:var(--gf-gold);

}


/* ==========================================================
   MOBILE HEADER
========================================================== */

.gf-mobile-header{

    display:none;

    height:74px;

    background:#fff;

    border-bottom:1px solid var(--gf-border);

}

.gf-mobile-header__inner{

    width:min(1400px, calc(100% - 32px));

    height:74px;

    margin:0 auto;

    display:flex;

    align-items:center;

    justify-content:space-between;

}

.gf-mobile-logo img{

    max-height:42px;

    width:auto;

    display:block;

}


/* ==========================================================
   MOBILE TOGGLE
========================================================== */

.gf-mobile-toggle{

    all:unset;

    width:44px;

    height:44px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    gap:6px;

    cursor:pointer;

}

.gf-mobile-toggle{

    border:none !important;
    background:transparent !important;
    padding:0;
    outline:none;

}

.gf-mobile-toggle span{

    display:block !important;

    width:26px;

    height:3px;

    background:#111 !important;

    border-radius:99px;

    margin:3px 0;

    opacity:1 !important;

    visibility:visible !important;

}


/* ==========================================================
   MOBILE DRAWER
========================================================== */

.gf-mobile-drawer{

    position:fixed;

    inset:0 0 0 auto;

    width:340px;

    max-width:90vw;

    background:#fff;

    transform:translateX(100%);

    transition:transform .35s ease;

    z-index:10020;

    display:flex;

    flex-direction:column;

    height:100dvh;

    overflow:hidden;

}

.gf-mobile-drawer.active{

    transform:translateX(0);

}


/* ==========================================================
   DRAWER HEADER
========================================================== */

.gf-mobile-drawer__header{

    height:74px;

    padding:0 20px;

    border-bottom:1px solid #eee;

    display:flex;

    align-items:center;

    justify-content:space-between;

    flex-shrink:0;

}

.gf-mobile-drawer__logo img{

    max-height:40px;

}


/* ==========================================================
   DRAWER BODY
========================================================== */

.gf-mobile-nav{

    flex:1;

    overflow-y:auto;

    -webkit-overflow-scrolling:touch;

    padding:25px;

}


/* ==========================================================
   CLOSE BUTTON
========================================================== */

.gf-mobile-close{

    all:unset;

    width:40px;

    height:40px;

    display:flex;

    align-items:center;

    justify-content:center;

    cursor:pointer;

    font-size:22px;

}


/* ==========================================================
   OVERLAY
========================================================== */

.gf-mobile-overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.45);

    opacity:0;

    visibility:hidden;

    pointer-events:none;

    transition:.35s ease;

    z-index:10010;

}

.gf-mobile-overlay.active{

    opacity:1;

    visibility:visible;

    pointer-events:auto;

}


/* ==========================================================
   BODY LOCK
========================================================== */

body.menu-open{

    overflow:hidden;

}


/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width:1024px){

    .gf-header__container{

        display:none;

    }

    .gf-mobile-header{

        display:block;

    }

}


/* ==========================================================
   MOBILE MENU
========================================================== */

.gf-mobile-menu{

    list-style:none;

    margin:0;

    padding:0;

}

.gf-mobile-menu li{

    border-bottom:1px solid rgba(0,0,0,.08);

}

.gf-mobile-menu>li>a{

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:18px 0;

    color:var(--gf-dark);

    text-decoration:none;

    font-size:16px;

    font-weight:600;

    transition:var(--gf-transition);

}

.gf-mobile-menu>li>a:hover{

    color:var(--gf-gold);

}


/* ==========================================================
   ACCORDION
========================================================== */

.gf-mobile-menu .sub-menu{

    list-style:none;

    margin:0;

    padding:0 0 10px 18px;

    max-height:0;

    overflow:hidden;

    opacity:0;

    transition:max-height .35s ease, opacity .35s ease;

}

.gf-mobile-menu li.open>.sub-menu{

    max-height:700px;

    opacity:1;

}

.gf-mobile-menu .sub-menu li{

    border:none;

}

.gf-mobile-menu .sub-menu a{

    display:block;

    padding:12px 0;

    color:#666;

    text-decoration:none;

    font-size:15px;

    font-weight:500;

    transition:var(--gf-transition);

}

.gf-mobile-menu .sub-menu a:hover{

    color:var(--gf-gold);

}


/* ==========================================================
   PLUS ICON
========================================================== */

.gf-mobile-menu .menu-item-has-children>a::after{

    content:"+";

    font-size:22px;

    font-weight:300;

    transition:.3s ease;

}

.gf-mobile-menu li.open>a::after{

    content:"−";

}


/* ==========================================================
   CTA
========================================================== */

.gf-mobile-cta{

    margin-top:30px;

}

.gf-mobile-cta .gf-btn{

    width:100%;

}


/* ==========================================================
   SMALL DEVICES
========================================================== */

@media(max-width:480px){

    .gf-mobile-drawer{

        width:100%;

        max-width:100%;

    }

}