/* ! header start */
.global-notification {
    background-color: #333333;
    color: white;
    padding: 14px 0;
    text-align: center;
    font-size: 12px;
}

.global-notification a {
    color: white;
    font-weight: 600;
}

header {
    border-bottom: 1px solid #dee0ea;
    position: sticky;
    width: 100%;
    z-index: 10;
    background-color: #fff;
    top: 0;
}

.header-row {
    height: 90px;
    display: flex;
    align-items: center;
}



.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-mobile {
    font-size: 24px;
    cursor: pointer;
    display: none;
}

.logo img {
    height: 45px;
    width: auto;
    display: block;
    padding: 5px;
}

.logo a {
    display: flex;
    align-items: center;
}



.header-center .navigation .menu-list {
    display: flex;
    align-items: center;
    column-gap: 30px;

}

.header-center .menu-list .menu-list-item {
    display: flex;
    align-items: center;
    position: relative;
    height: 90px;
}



.header-center .menu-list .menu-link {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    position: relative;
}

.header-center .menu-list .menu-link::after {
    content: "";
    width: 0;
    height: 1px;
    background-color: #333333;
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translate(-50%);
    transition: .2s ease width;

}

.header-center .menu-list .menu-link.active::after {
    width: 100%;
}


.header-center .menu-list .menu-list-item:hover .menu-link::after {
    width: 100%;
}

.header-center .menu-list i {
    font-size: 12px;
}

.header-center .bi-x-circle {
    display: none;
}

.header-right .header-right-links {
    display: flex;
    align-items: center;
    column-gap: 16px;
}

.header-right .bi-person {
    font-size: 23px;
}

.header-right .search-button {
    border: none;
    background-color: transparent;
}

.header-right i {
    font-size: 18px;
    display: flex;
}

.header-right .header-cart {
    position: relative;
}


.header-right .header-cart-link .header-cart-count {
    width: 16px;
    height: 16px;
    background-color: #333333;
    color: white;
    font-size: 10px;
    border-radius: 100%;
    position: absolute;
    top: -10px;
    right: -6px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;

}




/* ! header end */

@media(max-width:650px) {
    .header-center {
        position: fixed;
        top: 0;
        left: -100%;
        background-color: #fff;
        border-right: 1px solid #dee0ea;
        height: 100vh;
        width: 280px;
        z-index: 2;
        transition: 0.5s ease all;
    }

    .header-center .menu-list {
        flex-direction: column;
        padding: 50px 30px;
    }

    .header-center .bi-x-circle {
        display: inline-block;
        position: absolute;
        top: 15px;
        right: 15px;
        font-size: 20px;
        cursor: pointer;
    }

    .header-mobile {
        display: inline-block;
    }



    header .menu-list-item a {
        font-size: 16px !important;
    }
}