/* =========================================
   RESET
========================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:
    Arial,
    sans-serif;

    background:#f8f8f8;

    color:#111;

    overflow-x:hidden;
}

.container{

    width:100%;
    max-width:1400px;
    margin:auto;
    padding:0 20px;
}


/* =========================================
   PREMIUM HEADER
========================================= */

.header{

    width:100%;
    background:#fff;
    position:relative;
    z-index:100;
    box-shadow:0 5px 20px rgba(0,0,0,.04);
}


/* TOP */

.header-top{

    padding:15px 0;
    border-bottom:1px solid rgba(0,0,0,.05);
}

.header-top-flex{

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px;
}


/* LOGO */

.logo{

    width:180px;
    object-fit:contain;
}


/* SEARCH */

.search{

    flex:1;
    max-width:520px;
    height:54px;
    border:1px solid #eee;
    border-radius:50px;
    overflow:hidden;
    display:flex;
    align-items:center;
    background:#fff;
}

.search input{

    flex:1;
    border:none;
    outline:none;
    height:100%;
    padding:0 22px;
    font-size:15px;
}

.search button{

    width:64px;
    height:100%;
    border:none;
    background:#ff6600;
    color:#fff;
    cursor:pointer;
}


/* RIGHT */

/* RIGHT LINKS */

/* RIGHT SECTION */

.right{

    display:flex !important;
    flex-direction:row !important;
    align-items:center;
    justify-content:flex-end;
    gap:18px;
    white-space:nowrap;
    flex-wrap:nowrap;
}


/* HOVER */

.right a:hover{

    background:
    linear-gradient(90deg,#ff6600,#ff7a1a);
    color:#fff;
    box-shadow:0 10px 25px rgba(255,102,0,.18);
}

.right i{

    font-size:20px;
    
}

/* AUTH LINKS */

.auth-link{

    position:relative;

    display:flex;

    align-items:center;

    justify-content:center;

    height:44px;

    padding:0 18px;

    border-radius:40px;

    text-decoration:none;

    color:#111;

    font-weight:600;

    transition:.35s ease;
}


/* HOVER */

.auth-link:hover{

    background:
    linear-gradient(
        90deg,
        #ff6600,
        #ff7a1a
    );

    color:#fff;

    box-shadow:
    0 10px 25px rgba(255,102,0,.18);
}

/* CART */

.cart-icon{

    position:relative;
}

.cart-count{

    position:absolute;
    top:-8px;
    right:-10px;
    width:20px;
    height:20px;
    border-radius:50%;
    background:#ff3d00;
    color:#fff;
    font-size:11px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
}


/* BOTTOM */

.header-bottom{

    padding:18px 0;
}


/* NAV */

.nav{

    width:100%;
}

.nav-flex{

    display:flex;
    align-items:center;
    justify-content:center;
    gap:55px;
}


/* LINKS */

.nav-link{

    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    height:48px;
    padding:0 22px;
    border-radius:40px;
    text-decoration:none;
    color:#111;
    font-size:16px;
    font-weight:450;
    transition:.35s ease;
    
}


/* HOVER */

/* HOVER + ACTIVE */

.nav-link:hover,
.nav-link.active{

    color:#fff;
    background:linear-gradient(90deg,#ff6600,#c54f0a);
    box-shadow:0 10px 25px rgba(255,102,0,.22);
}



/* FLOATING UNDERLINE */

.nav-link::after{

    content:'';
    position:absolute;
    left:50%;
    bottom:-14px;
    width:0;
    height:4px;
    border-radius:20px;
    background:linear-gradient(90deg,#ff6600,#ff3d00);
    transform:translateX(-50%);
    transition:.35s ease;
    opacity:0;
}


/* SHOW UNDERLINE */

.nav-link:hover::after,
.nav-link.active::after{

    width:55%;

    opacity:1;
}

/* SHOW UNDERLINE */

.nav-link:hover::after,
.nav-link.active::after{

    width:55%;

    opacity:1;
}

/* RESPONSIVE */

@media(max-width:992px){

    .header-top-flex{

        flex-wrap:wrap;
        justify-content:center;
    }

    .search{

        max-width:100%;
        width:100%;
    }

    .nav-flex{

        flex-wrap:wrap;
        gap:25px;
    }

    .right{

        justify-content:center;
        width:100%;
    }
}