*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}
.container {
    max-width: 1860px;
    margin: auto;
    padding: 0 20px;
}
.header_top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    padding-top: 10px;
}
.search-form button img {
    width: 19px;
}
.action_icon img {
    width: 25px;
}
.header_actions {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 9px;
}
.header_logo img {
    filter: brightness(0);
}
.search-form input#search-field {
    display: block;
    width: 100%;
    /* max-width: 490px; */
    margin: auto;
    border: 1px solid #000;
    padding: 7px;
    padding-right: 40px;
}
form.search-form {
    position: relative;
    max-width: 490px;
    margin: auto;
}
.search-form button.search-submit {
    position: absolute;
    top: 0;
    background: #000;
    right: 0;
    height: 100%;
    padding: 5px;
    z-index: 2;
}
.search-form button.search-submit img {
    filter: brightness(0) invert(1);
}
nav.main_nav {
    display: grid;
    align-items: center;
    justify-content: space-between;
    padding: 7px 0;
    grid-template-columns: max-content 1fr max-content;
}
.nav_arr  svg {
    width: 15px;
}
.nav_arr {
    display: flex;
}
nav.main_nav a, nav.main_nav span {
    text-decoration: none;
    font-size: 15px;
    padding: 9px 8px;
    color: #000;
    line-height: 1;
    display: inline-block;
    white-space: nowrap;
    cursor: pointer;
    font-weight: 500;
}
.main_nav .nav_first_cat span {
    padding-left: 0;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}
.nav_content {
    display: flex;
    align-items: center;
    width: 100%;
    overflow: auto;
}
.nav_content::-webkit-scrollbar {
    display: none;
}
/* Firefox */
.nav_content {
    scrollbar-width: none;
}
/* IE / old Edge */
.nav_content {
    -ms-overflow-style: none;
}
.nav_content a:hover {
    background: rgba(0,0,0,.08);
}
.main_nav .nav_first_cat span:after {
    content: "";
    width: 18px;
    height: 20px;
    display: inline-block;
    background: url('data:image/svg+xml,<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg" style="width: auto; height: 1em;"><path d="M10.7712 4.89648L11.4783 5.60359L6.99995 10.0819L2.52161 5.60359L3.22871 4.89648L6.99995 8.66804L10.7712 4.89648Z" fill="currentColor"></path></svg>');
    background-size: contain;
    background-position: center;
}
.mega_inner {
    display: grid;
    grid-template-columns: 1fr 5fr;
    padding: 20px 0;
    /* max-height: 490px; */
}
.mega_menu_list li {
    list-style: none;
    padding: 8px 14px 8px 7px;
    font-size: 14px;
    font-weight: 400;
}
.mega_menu_list li:hover {
    background: rgba(0,0,0,.08);
    cursor: pointer;
}
.mega_menu_list ul {
    padding-right: 30px;
}
.shop_cat_grid_itm span {
    display: block;
    font-size: 15px;
    font-weight: 500;
}
.mega_menu_cover {
    display: grid;
    grid-template-columns: 0.9fr 2fr;
    gap: 0;
}
.shop_cat_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, 111px);
    gap: 25px;
}
.shop_cat_grid_itm img {
    aspect-ratio: 1;
    display: block;
    width: 100%;
    border-radius: 50%;
    margin-bottom: 7px;
    object-fit: cover;
}
.shop_cat_grid_itm {
    text-align: center;
}
.shop_cat_head {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
    padding: 0 13px;
}
.shop_category_mega {
    border-right: 1px solid #eee;
    padding: 0 30px;
    border-left: 1px solid #eee;
}
.picks_for_you {
    padding: 0 20px;
}
.mega_scroll {
    overflow: auto;
    max-height: 490px;
}