/* ======================================================
   TRIBAL WOMEN CRAFTS
   PREMIUM HEADER CSS
   Part 1
====================================================== */

/* Reset */

.site-header *,
.site-header *::before,
.site-header *::after{
    box-sizing:border-box;
}

.site-header{
    width:100%;
    background:#fff;
    position:relative;
    z-index:9999;
    font-family:'Poppins',sans-serif;
}

/* =========================
   CONTAINER
========================= */

.container{
    width:92%;
    max-width:1400px;
    margin:auto;
}

.help-btn,
.contact-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    height:42px;
    padding:0 22px;
    border-radius:30px;
    font-size:15px;
    font-weight:600;
    text-decoration:none;
    transition:all .3s ease;
}

.help-btn{
    background:transparent;
    color:#fff;
    border:1px solid rgba(255,255,255,.35);
}

.help-btn:hover{
    background:rgba(255,255,255,.08);
}

.contact-btn{
    background:#C17A3C;
    color:#fff;
    border:none;
}

.contact-btn:hover{
    background:#B36F34;
}
/* =========================
   MAIN HEADER
========================= */

.main-header{
    background:#fff;
    border-bottom:1px solid #efefef;
}

.main-header .container{
    display:grid;
    grid-template-columns:520px 1fr 320px;
    align-items:center;
    min-height:90px;
    gap:20px;
}


/* ==========================
   Brand Logo
========================== */

.logo{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
}
.logo a{
    flex-shrink:0;
}

.logo img{
    width:82px;
    height:auto;
    display:block;
}

.brand-text{
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.brand-text h2{
    margin:0 0 2px 0;
    font-size:20px;
    font-weight:700;
    line-height:1.1;
    color:#1F2D44;
}
.brand-divider{
    width:250px;
    height:2px;
    background:#C17A3C;
    margin:6px 0;
}

.brand-text p{
    margin:2px 0 0;
    font-size:11px;
    font-weight:400;
    color:#8B5E3C;
    line-height:1.2;
    letter-spacing:.3px;
}
/* ======================================================
   NAVIGATION
====================================================== */

.main-navigation{
    display:flex;
    justify-content:center;
    align-items:center;
    height:100%;
}

.nav-menu{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:35px;
    list-style:none;
    margin:0;
    padding:0;
}

.nav-menu li{
    position:relative;
    list-style:none;
}

.nav-menu li a{
    color:#222;
    text-decoration:none;
    font-size:16px;
    font-weight:600;
    letter-spacing:.3px;
    padding:8px 0;
    transition:.3s ease;

    white-space: nowrap;
}
.nav-menu li a:hover{
    color:#A0522D;
}

.nav-menu li::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:2px;
    background:#C17A3C;
    transition:.3s;
}

.nav-menu li:hover::after{
    width:100%;
}

/* ======================================================
   HEADER RIGHT
====================================================== */

.header-right{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    height:100%;
    gap:18px;
}

/* ======================================================
   SEARCH
====================================================== */

.header-search{
    width:210px;
    display:flex;
    align-items:center;
    justify-content:center;
    height:100%;
}

.header-search form{
    width:100%;
    margin:0;
}

.header-search input{
    width:100%;
    height:44px;
    border:1px solid #ddd;
    border-radius:50px;
    padding:0 18px;
    outline:none;
    transition:.3s;
    box-sizing:border-box;
}

.header-search input:focus{
    border-color:#C17A3C;
    box-shadow:0 0 0 3px rgba(193,122,60,.15);
}
/* ======================================================
   ICONS
====================================================== */

.wishlist-icon,
.account-icon,
.cart-icon{

    width:42px;
    height:42px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    text-decoration:none;

    color:#333;

    transition:.3s;

    position:relative;

}

.wishlist-icon:hover,
.account-icon:hover,
.cart-icon:hover{

    background:#F6F1EA;

    color:#A0522D;

}

/* ======================================================
   CART COUNT
====================================================== */

.cart-count{

    position:absolute;

    top:-5px;
    right:-4px;

    width:20px;
    height:20px;

    background:#C17A3C;

    color:#fff;

    border-radius:50%;

    font-size:11px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-weight:600;

}

/* ======================================================
   MOBILE TOGGLE
====================================================== */

.mobile-toggle{

    display:none;

    width:44px;
    height:44px;

    border:none;
    background:none;

    font-size:28px;

    cursor:pointer;

}

/* ======================================================
   TRUST STRIP
====================================================== */

.trust-strip{
    background:#F8F3EC;
    border-top:1px solid #eee;
    border-bottom:1px solid #eee;
}

.trust-strip{

    background:#4E2C1E;
    color:#fff;

    position:relative;

    width:100%;
    z-index:1;

}

.trust-strip .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    min-height:55px;

}

.trust-strip a{

    color:#fff;

    text-decoration:none;

}

.trust-strip .top-left,

.trust-strip .top-right{

    display:flex;

    align-items:center;

    gap:18px;

}

.trust-strip span{
    color:#5b4636;
    font-size:14px;
    font-weight:500;
}

/* ======================================================
   STICKY HEADER
====================================================== */

.main-header{
    position:sticky;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
    transition:.35s ease;
}

.site-header.scrolled{
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.brand-divider{
    width:180px;
    height:2px;
    background:#C17A3C;
    margin:8px 0;
    border-radius:20px;
}

/* ======================================================
   HEADER SCROLL EFFECT
====================================================== */

.top-header,
.trust-strip{
    transition:all .35s ease;
    overflow:hidden;
}

.top-header,
.trust-strip{
    overflow:hidden;
    max-height:80px;
    opacity:1;
    transition:max-height .35s ease, opacity .25s ease, padding .35s ease;
}
.top-header,
.trust-strip{
    overflow:hidden;
    max-height:80px;
    opacity:1;
    transition:max-height .35s ease, opacity .35s ease, padding .35s ease;
}
.site-header.hide-bars .top-header,
.site-header.hide-bars .trust-strip{
    max-height:0;
    opacity:0;
    padding-top:0;
    padding-bottom:0;
    border:none;
    transition:none;
}
.site-header.hide-bars .trust-strip{
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:none;
}

.main-header{
    background:#fff;
    border-bottom:1px solid #efefef;
    position:sticky;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
    transition:
        background-color .35s ease,
        box-shadow .35s ease;
}
