<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.header__section {
    background-color: var(--white);
    box-shadow: 0 1px 4px 2px var(--black-opacity-05);
    position: relative;
}

/* header top */
.header__section .header__top {
    padding: 15px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* top left */
.header__section .header__top_left {
    display: flex;
    align-items: center;
    gap: 5px;
}

.header__section .hamburger__btn {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: none;
    outline: none;
}

.header__section .brand__logo {
    display: flex;
}

.header__section .brand__logo img {
    display: flex;
}

/* top right */
.header__section .ecommerce__btn_groups {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header__section .ecommerce__btn_groups {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header__section .ecommerce__btn {
    display: flex;
    position: relative;
}


/* header bottom */
.header__section .header__bottom {
    padding: 16px 0;
    display: none;
}

.header__section .main__menu {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;
}

.header__section .main__menu .menu__link {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: var(--black-olive);
    text-decoration: none;
}

/* search modal css */
.header__section .search__modal {
    position: absolute;
    top: 100%;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
    visibility: hidden;
    opacity: 0;
    transition: .3s;
}

.header__section .search__modal.openSearchModal {
    visibility: visible;
    opacity: 1;
}

.header__section .search__modal .search__box {
    width: 100%;
    height: 44px;
    background-color: var(--cultured);
    padding: 5px;
    position: relative;
}

.header__section .search__modal .input__controls {
    width: 100%;
    height: 100%;
    background-color: transparent;
    border: none;
    outline: none;
    padding-left: 46px;
    padding-right: 35px;
}

.header__section .search__modal .input__controls,
.header__section .search__modal .input__controls::placeholder {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: var(--granite-gray);
}

.header__section .search__modal .search__btn,
.header__section .search__modal .search__close_btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
}

.header__section .search__modal .search__btn {
    left: 5px;
}

.header__section .search__modal .search__close_btn {
    right: 5px;
}

.header__section .search__btn img {
    pointer-events: none;
}

.header__section .notification {
    position: absolute;
    top: -4px;
    right: -5px;
    padding: 5px;
    text-align: center;
    height: 16px;
    width: auto;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    color: var(--secondary-color);
    background: var(--primary-color);
    font-size: 9px;
    line-height: 8px;
}


/* ================ desk menu drawer css start ================ */
.overlay,
.mb__menu_drawer {
    position: fixed;
    transition: .3s;
}

.overlay {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--black-opacity-7);
    z-index: 80;
}

.mb__menu_drawer {
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--white);
    z-index: 80;
}

.overlay,
.mb__menu_drawer {
    visibility: hidden;
    opacity: 0;
    transition: .3s;
    display: block;
}

.openSidebar.mb__menu_drawer {
    right: 0;
}

.openSidebar.mb__menu_drawer,
.openSidebar.overlay {
    visibility: visible;
    opacity: 1;
}

.mb__menu_list,
.nested__mb_menu__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nested__mb_menu__list {
    background-color: var(--cultured);
    display: none;
}

.mb__menu_list {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 52px);
    overflow-y: scroll;
}

/* custom scrollbar css start */
.mb__menu_list::-webkit-scrollbar {
    width: 3px;
}

.mb__menu_list::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px var(--chinese-white);
    border-radius: 10px;
}

.mb__menu_list::-webkit-scrollbar-thumb {
    background: var(--chinese-silver);
    border-radius: 10px;
}
/* custom scrollbar css end */

.mb__menu_item__inner,
.mobile__menu_list .mobile__menu_item__wrapper {
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    border-bottom: 1px solid var(--collection-card-bg-1);
}

.mb__menu_link {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: var(--granite-gray);
    text-decoration: none;
    display: block;
    width: 100%;
    margin-right: 20px;
}

.arrow__down {
    display: flex;
    transition: transform 0.3s ease;
}

.rotate {
    transform: rotate(-180deg);
}

.mb__sidebar_heading {
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 10px 16px;
    border-bottom: 1px solid var(--collection-card-bg-1);
}

.mb__sidebar_heading .icon {
    display: flex;
}

/* active menu class */
.active_menu .menu__link_wrapper .menu__link {
    color: var(--charleston-green) !important;
    font-weight: 500;
}

@media(min-width:494px) {
    .mb__menu_drawer {
        width: 320px;
    }
}


/* ================ desk menu drawer css end ================ */

@media(min-width:1024px) {

    .header__section .header__top {
        padding: 20px 0;
    }

    .header__section .ecommerce__btn_groups {
        gap: 14px;
    }

    .header__section .hamburger__btn {
        display: none;
    }

    /* header bottom */
    .header__section .header__bottom {
        display: block;
    }

    /* search modal css */
    .header__section .search__modal {
        top: 15px;
        width: 435px;
    }

    .header__section .search__modal .search__box {
        height: 40px;
        margin: auto;
        border-bottom: 1px solid var(--vivid-cerulean);
    }


    /* cursor pointer */
    .header__section .ecommerce__btn,
    .header__section .search__modal .search__btn,
    .header__section .search__modal .search__close_btn {
        cursor: pointer;
    }

}

</pre></body></html>