:root {
    --font-family-1: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Ubuntu, Helvetica Neue, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
    --menu-bg: black;
    --menu-color: white;
    --popup-menu-color: white;
    --menu-discount-bg: red;
    --menu-discount-color: var(--menu-color);
    --text-color: #878787;
    --text-color-accent: white;
    --text-color-accent-invert: black;
    --link-color-hover: #000000;
    --icon-color: white;
    --link-color-accent: #e9ff00;
    --product-img-hover-bg: #e5e5e5;
    --product-title-color: black;
    --product-price-color: rgb(105, 105, 105);
    --border-color: #ddd;
    --border-color-accent: white;
    --border-color-accent-invert: black;
    --border-color-disabled: #878787;
    --soldout-badge-bg: #999999;
    --btn-border-color: black;
    --footer-bg: black;
    --footer-color: white;
    --sold-out-color: black;
    --bg-white: white;
    --bg-dark: black;
    --bg-gray: #878787;
    --warning-color: #e0b252;

    --hover-color: rgba(0,0,0, .08);
    --on-top-z-index: 10;
    --header-z-index: 9;
    --drop-down-z-index: 5;
    --scroll-btn-z-index: 4;
    --badge-z-index: 3;
    --image-loader-z-index: 2;
    --slider-item-z-index: 1;
}

*, *::after, *::before {
    box-sizing: border-box;
}

html {
    min-width: 330px;
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-family-1);
    width: 100vw;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex-grow: 1;
}

img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border: 0;
    vertical-align: middle;
}

.menu {
    display: flex;
    width: 100%;
    min-width: 100%;
    min-height: 50px;
    background-color: var(--menu-bg);
    color: var(--menu-color);
}

.menu_list {
    display: flex;
    flex-grow: 1;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding-left: 0;
    list-style-type: none;
    text-transform: uppercase;
}

.menu_list__item {
    position: relative;
    font-weight: 600;
    font-size: 18px;
    padding: 6px 18px;
}

.percent_off {
    position: absolute;
    top: -50%;
    right: -12%;
    border-radius: 50px;
    padding: 0 8px;
    color: var(--menu-discount-color);
    background-color: var(--menu-discount-bg);
    font-size: 9px;
    line-height: 18px;
    text-transform: uppercase;
}

.arrow_icon {
    width: 8px;
    margin-inline-start: 5px;
}

.lang_menu__button {
    display: flex;
    align-items: center;
    cursor: pointer;
    background: none;
    border: none;
    font-size: 13px;
    color: var(--text-color)
}

.lang_menu__button--active {
    color: var(--link-color-hover)
}

.lang_menu__list {
    padding: 15px;
    border: 1px solid var(--menu-color);
    background-color: var(--popup-menu-color);
    position: absolute;
    top: 100%;
    left: 0;
    z-index: var(--on-top-z-index);
}

.lang_menu > * {
    color: var(--menu-color);
}

.list__item {
    margin-bottom: 5px;
    color: var(--text-color);
}

.list__item--selected {
    color: var(--link-color-hover);
}

.lang_menu {
    position: relative;
}

.lang_menu__list--hidden {
    display: none;
}

.top_header {
    display: flex;
    padding: 10px 0;
    flex-wrap: wrap;
    gap: 10px;
    min-height: 20px;
    font-size: 14px;
    color: var(--text-color-accent);
    background-color: var(--menu-bg);
}

.top_header__right_panel {
    flex-grow: 1;
}

.top_header__left_panel {
    flex-grow: 1;
}

.top_header__center_panel {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.top_header__center_panel > p {
    margin: 0;
    word-break: break-word;
    text-align: center;
}

.social_icon {
    color: var(--text-color);
    font-size: 26px;
    transition: color .5s ease, transform .5s ease;
    padding: 0 15px;
    text-decoration: none;
    outline: none;
}

.social_icon:hover {
    color: red;
    transform: translateY(-5px);
}

.icon-instagram {
    height: 18px;
    width: 18px;
    color: var(--icon-color);
    fill: var(--icon-color);
}

.icon-search {
    color: var(--text-color-accent);
    line-height: 1;
    transition: .35s cubic-bezier(.25, .1, .25, 1);
    width: 22px;
    height: 22px;
}

.icon-search > svg {
    fill:var(--text-color-accent);
    color: var(--text-color-accent);
    width: 22px;
    height: 22px;
}

.page_link--accent {
    color: var(--link-color-accent);
}

.main_header {
    position: sticky;
    top: -1px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    background-color: var(--menu-bg);
    z-index: var(--header-z-index);
}

.main_header__left_panel {
    flex-grow: 1;
    padding-left: 15px;
}

.main_header__center_panel {
    flex-grow: 2;
}

.main_header__right_panel {
    display: flex;
    align-items: center;
    flex: 1 1 0;
    padding-right: 15px;
}

.promo_image {
    width: 100%;
}

.zoom-out {
    transform: scale(1.2);
    transition: 4s;
}

.zoom-in {
    transform: scale(1);
    transition: 4s;
}

.promo_header {
    overflow: hidden;
}

.site_title {
    visibility: hidden;
    position: absolute;
}

.slider_section {
    display: flex;
    flex-direction: column;
}

.slider_section__header {
    text-align: center;
    text-transform: uppercase;
}

.slider_section__header > h2 {
    margin: 28px 0;
}

.slider_section__container {
    position: relative;
    max-width: 1600px;
    margin-inline-end: auto;
    margin-inline-start: auto;
    overflow: hidden;
    margin-bottom: 20px;
}

.container__slider {
    white-space: nowrap;
    display: inline-block;
    user-select: none;
    touch-action: pan-y;
    font-size: 0;
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
}

.slider__item {
    position: relative;
    display: inline-block;
    overflow: hidden;
    margin: 0 15px;
    box-sizing: border-box;
    width: calc(25% - 30px);
    background-color: var(--text-color);
}

.slider__item > img {
    object-fit: cover;
    object-position: center center;
    vertical-align: top;
    transition: all 1s;
    aspect-ratio: 1 / 1.5;
}

.slider__item:hover > img {
    transform: scale(1.2);
    transition: 1s;
}

.slider__item::before {
    content: attr(data-title);
    text-transform: inherit;
    display: flex;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    color: white;
    font-size: 24px;
    font-weight: 600;
    justify-content: center;
    align-items: center;
    z-index: var(--slider-item-z-index);
    text-shadow: var(--text-color) 1px 1px;
}

.rounded_left_icon, .rounded_right_icon {
    height: 16px;
    stroke: currentColor;
    fill: currentColor;
}

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

.container__scroll_button {
    display: flex;
    top: 50%;
    justify-content: center;
    align-items: center;
    position: absolute;
    border-radius: 50%;
    border: 2px solid var(--border-color-accent-invert);
    background: transparent;
    width: 48px;
    height: 48px;
    z-index: var(--scroll-btn-z-index);
    transition: all .5s ease;
    outline: none;
    color: var(--text-color-accent-invert);
}

.container__scroll_button--left {
    left: 20px;
}

.container__scroll_button--right {
    right: 20px;
}

.container__scroll_button[disabled] {
    border-color: var(--border-color-disabled);
    color: var(--border-color-disabled);
}

.container__scroll_button:not([disabled]):hover {
    background-color: var(--link-color-hover);
    color: var(--text-color-accent);
}

.arrivals_section__header {
    display: flex;
    text-align: left;
    text-transform: uppercase;
    padding: 0 15px;
}

.arrivals_section__header > h2 {
    display: inline-flex;
}

.arrivals_section {
    max-width: 1600px;
    margin-inline-end: auto;
    margin-inline-start: auto;
}

.arrivals_section__container {
    position: relative;
    max-width: 1600px;
    margin-inline-end: auto;
    margin-inline-start: auto;
    overflow: hidden;
    height: 435px;
    margin-bottom: 20px;
}

.slider__item_arrival {
    width: 20%;
    height: 100%;
    margin: 0;
    padding: 0 15px;
    background-color: transparent;
}

.slider__item_arrival::before {
    content: none;
}

.item_arrival__product_img {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 100%;
}

.item_arrival__product_info {
    display: flex;
    white-space: break-spaces;
}

.item_arrival__product_img > img {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: contain;
    object-position: center center;
    vertical-align: top;
    transition: transform 1s;
    aspect-ratio: 1 / 1;
}

.item_arrival__product_img:hover:has(img:nth-of-type(2)) > img:nth-of-type(1) {
    transform: scale(1.1);
    transition: transform .7s ease-out, opacity .7s ease-out;
    z-index: 0;
    opacity: 0;
}

.item_arrival__product_img:hover:not(:has(img:nth-of-type(2))) > img:nth-of-type(1) {
    transform: scale(1.1);
    transition: transform .5s ease-out;
    z-index: 0;
}

.item_arrival__product_img > img:nth-of-type(2) {
    opacity: 0;
}

.item_arrival__product_img:hover > img:nth-of-type(2) {
    transform: scale(1.1);
    transition: 1s;
    opacity: 1;
    z-index: 1;
    opacity: 1;
}

.product__title {
    color: var(--product-title-color);
    font-size: 14px;
    font-weight: 500;
    /* line-height: 23.8px; */
    margin: 0;
    padding-top: 15px;
    line-height: 1.1em;
}

.product__price {
    color: var(--product-price-color);
    font-size: 14px;
    font-weight: 500;
    line-height: 23.8px;
}

.product__rating {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
}

.rating__star::before {
    content: "\2606";
    font-size: 18px;
    font-weight: 700;
    color: black;
}

.rating__star--fill::before {
    content: "\2605";
}

.arrival_slider__button {
    top: 25%;
}

.product__colors {
    min-height: 28px;
    display: flex;
    margin: 0 -4px;
    flex-wrap: wrap;
}

.colors__box {
    position: relative;
    display: inline-flex;
    border-radius: 50%;
    padding: 1px;
    margin: 4px;
    border: 1px solid var(--border-color);
    cursor: pointer;
    vertical-align: top;
}

.colors__box input[type="radio"] {
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.colors__box:has(input[type="radio"]:checked) {
    background-color: var(--link-color-hover);
    border: 1px solid var(--link-color-hover);
}

.box__image {
    display: inline-flex;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.colors__box:hover {
    background-color: var(--link-color-hover);
    border: 1px solid var(--link-color-hover);
}

.badge--black {
    position: static;
    background-color: var(--link-color-hover);
    color: var(--text-color-accent);
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    padding: 2px 5px;
}

.badge--red {
    background-color: var(--menu-discount-bg);
    color: var(--text-color-accent);
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 5px;
    font-family: 'Allerta Stencil', sans-serif;
    font-style: normal;
    font-size: 14px;
    font-weight: 600;
    white-space: break-spaces;
    text-align: center;
    width: min-content;
}

.badge--soldout {
    justify-content: center;
    align-items: center;
    min-width: 60px;
    min-height: 24px;
    font-size: 14px;
    color: #fff;
    word-break: break-word;
    white-space: break-spaces;
    padding: 0 5px;
    line-height: 1;
    text-align: center;
    background-color: var(--soldout-badge-bg);
}

.badges {
    position: absolute;
    z-index: var(--badge-z-index);
    top: 15px;
    right: 15px;
    gap: 5px;
    display: flex;
    font-size: 14px;
    justify-content: center;
    flex-direction: column;
    align-items: flex-end;
    pointer-events: none;
}

.badges > .badges__item {
    display: none;
}

.badges__item:not(:empty) {
    display: flex;
}

.image_loader {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: var(--image-loader-z-index);
    background: white url('data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100px%22%20height%3D%22100px%22%20viewBox%3D%220%200%20100%20100%22%20preserveAspectRatio%3D%22xMidYMid%22%3E%3Cpath%20fill%3D%22none%22%20d%3D%22M24.3%2C30C11.4%2C30%2C5%2C43.3%2C5%2C50s6.4%2C20%2C19.3%2C20c19.3%2C0%2C32.1-40%2C51.4-40%20C88.6%2C30%2C95%2C43.3%2C95%2C50s-6.4%2C20-19.3%2C20C56.4%2C70%2C43.6%2C30%2C24.3%2C30z%22%20stroke%3D%22%23000000%22%20stroke-width%3D%222%22%20stroke-dasharray%3D%22205.271142578125%2051.317785644531256%22%3E%3Canimate%20attributeName%3D%22stroke-dashoffset%22%20calcMode%3D%22linear%22%20values%3D%220%3B256.58892822265625%22%20keyTimes%3D%220%3B1%22%20dur%3D%221%22%20begin%3D%220s%22%20repeatCount%3D%22indefinite%22%20%2F%3E%3C%2Fpath%3E%3C%2Fsvg%3E') no-repeat center center;
    background-size: 50px;
}

img:nth-of-type(1).loaded + img:nth-of-type(2).loaded + .image_loader, 
img:nth-of-type(1).loaded + .image_loader {
    display: none;
}

img:not(.loaded) + .image_loader {
    background-color: var(--product-img-hover-bg);
}

.arrivals__controls {
    text-align: center;
}

.arrivals__view_all {
    display: inline-flex;
    text-decoration: none;
    color: var(--text-color-accent-invert);
    border: 2px solid var(--btn-border-color);
    align-items: center;
    font-size: 14px;
    height: 50px;
    font-weight: 600;
    border-radius: 60px;
    background-color: transparent;
    border-width: 2px;
    padding: 0 45px;
    margin: 40px 0;
    transition: all .5s ease;
}

.arrivals__view_all:hover {
    background-color: var(--link-color-hover);
    color: var(--text-color-accent);
}

footer {
    background-color: var(--footer-bg);
}

.footer {
    background-color: var(--footer-bg);
    font-size: 16px;
    line-height: 22px;
    color: var(--text-color);
    max-width: 1600px;
    margin-inline-end: auto;
    margin-inline-start: auto;
}

.footer__content {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.invisible_head {
    visibility: hidden;
    font-size: 0;
}

.footer__links {
    display: flex;
    padding: 70px 0;
    min-height: 200px;
}

.footer__copyrights {
    margin: 10px 0 0;
    padding: 15px 0;
    min-height: 50px;
    color: var(--text-color);
    font-size: 14px;
}

.links__headline {
    color: var(--text-color-accent);
    font-size: 16px;
    line-height: 22px;
    margin: 0 0 30px 0;
}

.links__section {
    display: flex;
    flex-direction: column;
    font-size: 14px;
}

.links__section ul {
    color: var(--footer-color);
    padding-left: 0;
    margin: 0;
}

.links__section  ul > li {
    list-style-type: none;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 10px;
} 

.links__section a {
    text-decoration: none;
    color: var(--text-color);
}

.links__section a:hover {
    color: var(--link-color-accent);
}

.links__section p {
    margin-top: 0;
}

.float_to_right {
    align-self: flex-end;
}

.color__item {
    box-shadow: inset 0 0 0 2px white;
}

.header__filters {
    display: inline-flex;
    flex: 1 1 auto;
    align-items: center;
    justify-content: end;
    text-transform: capitalize;
}

.radio--hidden {
    opacity: 0;
    visibility: hidden;
    position: absolute;
}

.filter__label {
    position: relative;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-color);
    padding: 15px;
}

.filter__label:last-of-type {
    padding-right: 0px;
}

.filter__label:has(input[type="radio"]:checked) {
    color: var(--link-color-hover);
}

.sliders_container {
    position: relative;
    height: 435px;
}

.container__slider--men, .container__slider--women, .container__slider--equipment {
    position: absolute;
    left: 0;
    top: 0;
    visibility: hidden;
    transform: translateY(40px);
    opacity: 0;
    width: 100%;
    height: 100%;
}

.arrivals_section__header:has(input[value="MEN"]:checked) ~ .sliders_container .container__slider--men {
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
    transition: .2s ease-in-out .2s;
}

.arrivals_section__header:has(input[value="WOMEN"]:checked) ~ .sliders_container .container__slider--women {
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
    transition: .2s ease-in-out .2s;
}

.arrivals_section__header:has(input[value="EQUIPMENT"]:checked) ~ .sliders_container .container__slider--equipment {
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
    transition: .2s ease-in-out .2s;
}

.main_categories {
    height: auto;
}

.menu_btn {
    position: relative;
    color: var(--text-color-accent);
    background-color: var(--menu-bg);
    border: none;
}

.menu_btn > svg {
    width: 31px;
}

html:has(.main_header__left_panel input[type="checkbox"]:checked) {
    overflow: hidden;
    position: fixed;
    width: 100%;
    overflow: hidden;
    overscroll-behavior: none;
}

.main_header__left_panel:has(input[type="checkbox"]:checked) ~ .main_header__center_panel {
    transform: translateX(0);
}

.main_header__left_panel:has(input[type="checkbox"]:checked) ~ .main_header__center_panel .menu {
    width: calc(330px - 60px);
    transform: translateX(0);
    transition: transform .5s ease;
}

.main_header__left_panel:has(input[type="checkbox"]:checked) .menu_btn {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    left: calc(330px - 60px);
    top: 0;
    width: 60px;
    height: 60px;
    background-color: var(--menu-bg);
    z-index: 12;
}

.menu_btn .icon-burger, .menu_btn .icon-close {
    display: none;
}

.menu_btn:has(input[type="checkbox"]:checked) .icon-close {
    display: block;
}

.menu_btn:not(:has(input[type="checkbox"]:checked)) .icon-burger {
    display: block;
}

.list__link {
    color: var(--text-color-accent-invert);
    text-decoration: none;
}

.item__wrapper {
    position: relative;
}

.icon--plus {
    position: absolute;
    display: inline-block;
    width: 20px;
    height: 20px;
    right: 20px;
}

.icon--plus::before {
    content: "";
    display: block;
    position: absolute;
    left: 47%;
    top: 15%;
    width: 0;
    height: 70%;
    border: 1px solid #999999;
    rotate: 0deg;
    transition: rotate .3s ease;
}

.icon--plus::after {
    content: "";
    display: block;
    position: absolute;
    top: 47%;
    left: 15%;
    width: 70%;
    height: 0;
    border: 1px solid #999999;
}

.plus_control {
    position: absolute;
    right: 0;
}

input[type="checkbox"]:checked + .icon--plus::before {
    rotate: 90deg;
    transition: rotate .3s ease;
}

.menu_btn {
    display: none;
}

.link--no-decoration {
    text-decoration: none;
    color: currentColor;
}

.breadcrumbs__section {
    background: var(--menu-bg);
    color: var(--text-color);
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 30px;
    padding: 18px 15px;
    line-height: 18px;
}

.breadcrumbs__section a {
    color: var(--text-color-accent);
}

.section__wrapper {
    max-width: 1600px;
    margin-inline-end: auto;
    margin-inline-start: auto;
}

.breadcrumbs__section * {
    text-decoration: none;
    text-transform: capitalize;
    color: currentColor;
}

.breadcrumbs__delimeter {
    padding: 0 5px;
}

.breadcrumbs__delimeter::before {
    content: "\203A";
}

select {
    display: inline-block;
    padding: 0 30px 0 15px;
    max-width: 100%;
    width: 100%;
    height: 40px;
    vertical-align: middle;
    font-size: 14px;
    transition: border-color .5s;
    appearance: none;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNSIgaGVpZ2h0PSIyNSIgZmlsbD0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2U9IiNiYmIiPjxwYXRoIGQ9Ik02IDlsNiA2IDYtNiIvPjwvc3ZnPg==);
    background-position: right 10px top 50%;
    background-size: auto 18px;
    background-repeat: no-repeat;
    background-color: transparent;
    box-shadow: none;
    border-radius: 30px;
}

select:focus {
    outline: none;
}

select:focus-visible {
    box-shadow: none;
}

input[type="text"] {
    border: 1px solid var(--border-color);
    height: 40px;
    font-size: 14px;
    outline: 0;
    color: var(--text-color);
    border-radius: 0;
    max-width: 100%;
    width: 100%;
    border-radius: 60px;
    padding: 0 50px 0 20px;
    line-height: 18px;
}

.links__section .icon--plus {
    display: none;
}

.categories_slider {
    width: 100%;
}

.footer__content a {
    text-decoration: none;
    color: var(--text-color);
}

@media only screen and (min-width: 330px) and (max-width: 1366px) {
    .main_header__center_panel {
        position: fixed;
        left: 0;
        top: 0;
        width: 100vw;
        height: 100vh;
        height: 100dvh;
        background: #000000b3;
        z-index: var(--on-top-z-index);
        transform: translateX(-100vw);
        transition: transform .1s ease;
    }

    .menu_list {
        display: block;
        transition: height .5s ease;
    }

    .menu_list .menu_list {
        margin-bottom: -18px;
        margin-right: -18px;
        margin-top: 18px;
    }

    .menu_btn {
        display: block;
    }

    .menu__title {
        display: block;
        font-weight: 600;
        font-size: 18px;
        padding: 18px;
        margin-bottom: -16px;
        border-bottom: #e5e5e5 1px solid;
    }

    .menu_list__item {
        padding: 18px;
        border-bottom: #e5e5e5 1px solid;
        text-transform: capitalize;
        font-weight: 400;
        font-size: 14px;
    }

    .menu_list > .menu_list__item:has(label.plus_control) {
        font-weight: 500;
    }

    .menu_list__item:has(> label > input[type="checkbox"]:checked) {
        background-color: #eceaea;
    }

    .menu_list__item:not(:has(> label > input[type="checkbox"]:checked)) {
        background-color: white;
    }

    .menu_list__item:not(:has(> label > input[type="checkbox"]:checked)):hover {
        background-color: #d4d4d4;
    }

    .menu_list__item:not(:has(> label > input[type="checkbox"]:checked)) > .menu_list {
        height: 0;
        overflow: hidden;
    }

    .menu {
        position: absolute;
        display: block;
        left: 0;
        top: 0;
        background-color: var(--menu-color);
        height: 100vh;
        min-width: inherit;
        color: var(--text-color-accent-invert);
        transform: translateX(-100%);
        overflow-y: auto;
        overflow-x: hidden;
    }

    .main_header__right_panel {
        justify-content: flex-end;
    }

    .main_header__left_panel {
        align-items: center;
        display: flex;
    }

    .icon-search {
        margin: 0 5px;
        width: 23px;
        height: 23px;
    }

    .main_header {
        height: 60px;
    }

    .top_header {
        flex-direction: column;
        align-items: center;
    }

    .slider__item {
        width: calc(100% - 30px);
    }

    .arrival_slider .slider__item {
        width: 50%;
    }

    .sliders_container {
        position: relative;
        height: 430px;
    }

    .main_categories {
        height: auto;
    }

    html:has(.main_header__left_panel input[type="checkbox"]:checked) {
        overflow: hidden;
        position: fixed;
        width: 100%;
        overflow: hidden;
        overscroll-behavior: none;
    }

    .footer__content {
        flex-direction: column;
    }

    .footer__copyrights .footer__content {
        align-items: center;
    }

    .float_to_right {
        align-self: auto;
    }

    .footer__links {
        padding: 15px 0 0 20px;
    }

    .footer__copyrights {
        margin-top: 0;
        min-height: 30px;
    }

    .links__section {
        padding: 15px;
        height: 50px;
        overflow: hidden;
    }

    .links__section:has(input[type="checkbox"]:checked) {
        overflow: auto;
        height: auto;
        transition: height .4s ease;
    }

    .links__section label {
        position: relative;    
    }

    .links__section .icon--plus {
        display: inline-block;
        top: 0;
    }

    input[type="checkbox"][name="footer_collapse"]:checked ~ .icon--plus::before {
        rotate: 90deg;
        transition: rotate .3s ease;
    }
}

@media only screen and (min-width: 640px) {
    .slider__item {
        width: calc(50% - 30px);
    }

    .arrival_slider .slider__item {
        width: 25%;
    }

    .sliders_container {
        position: relative;
        height: 370px;
    }

    .main_categories {
        height: auto;
    }
}

@media only screen and (max-width: 329px) {
    .menu, .menu_btn {
        display: none;
    }
}

@media only screen and (min-width: 330px) and (max-width: 767px) {
    .banner--mobile {
        display: block;
    }

    .banner--desktop {
        display: none;
    }

    .arrivals_section__header {
        flex-wrap: wrap;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .header__filters {
        flex: none;
        padding-bottom: 15px;
    }

    .arrivals_section__header > h2 {
        margin-bottom: 0;
    }

    .main_header__left_panel:has(input[type="checkbox"]:checked)~.main_header__center_panel .menu {
        width: calc(100vw - 60px);
    }

    .main_header__left_panel:has(input[type="checkbox"]:checked) .menu_btn { 
        left: auto;
        right: 0;
    }
}

/* Medium devices such as tablets (768px and up) */
@media only screen and (min-width: 768px) {
    .banner--mobile {
        display: none;
    }

    .banner--desktop {
        display: block;
    }

    .slider__item {
        width: calc(50% - 30px);
    }

    .arrival_slider .slider__item {
        width: 25%;
    }

    .sliders_container {
        position: relative;
        height: 400px;
    }
}

/* Large devices such as laptops (1024px and up) */
@media only screen and (min-width: 1024px) {
    .slider__item {
        width: calc(25% - 30px);
    }

    .arrival_slider .slider__item {
        width: 25%;
    }

    .sliders_container {
        position: relative;
        height: 432px;
    }

    .main_categories {
        height: auto;
    }
}

/* Largest devices such as desktops (1280px and up) */
@media only screen and (min-width: 1367px) {
    .main_header__left_panel:has(input[type="checkbox"]:checked)~.main_header__center_panel .menu {
        width: auto;
    }

    .main_header__left_panel:has(input[type="checkbox"]:checked) .menu_btn {
        display: none;
    }

    html:has(.main_header__left_panel input[type="checkbox"]:checked) {
        overflow: auto;
        margin-right: 5px;
        position: fixed;
        width: 100%;
        overflow: hidden;
        overscroll-behavior: none;
    }

    .list__link {
        color: var(--text-color-accent);
    }

    .menu__title {
        display: none;
    }

    .menu>.menu_list::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
        background-color: rgba(0, 0, 0, 0.2);
        animation: hideAnimation 0s ease-in 2s;
        animation-fill-mode: forwards;
    }

    @keyframes hideAnimation {
        to {
            visibility: hidden;
            width: 0;
            height: 0;
        }
    }

    .menu > .menu_list > .menu_list__item:hover > .menu_list > .menu_list__item > .list__link {
        display: block;
        text-transform: uppercase;
        font-weight: 500;
        font-size: 12px;
        width: 100%;
        padding: 5px 0;
        border-bottom: 1px solid #eee;
    }

    .menu > .menu_list > .menu_list__item:hover > .menu_list > .menu_list__item > .menu_list a {
        text-transform: capitalize;
        font-size: 14px;
        font-weight: 400;
        line-height: 1.5;
        color: gray;
    }

    .menu > .menu_list > .menu_list__item > .menu_list {
        display: none;
    }

    .menu > .menu_list > .menu_list__item:hover > .menu_list {
        display: flex;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
        padding: 30px;
    }

    .menu > .menu_list > .menu_list__item:hover::before {
        content: "";
        position: absolute;
        top: 27px;
        left: -25%;
        width: 150%;
        height: 159%;
    }

    .menu > .menu_list > .menu_list__item:hover .menu_list {
        display: flex;
        justify-content: space-evenly;
        flex-wrap: nowrap;
        align-items: flex-start;
    }

    .menu > .menu_list > .menu_list__item:hover > a {
        color: var(--text-color-accent);
    }

    .menu > .menu_list > .menu_list__item:hover > .menu_list {
        position: fixed;
        width: 176%;
        display: flex;
        flex-direction: row;
        left: -38%;
        top: 100%;
        background-color: var(--menu-color);
    }

    .menu > .menu_list > .menu_list__item:hover > .menu_list>.menu_list__item > .menu_list {
        display: flex;
        flex-direction: column;
        align-items: start;
    }

    .menu > .menu_list > .menu_list__item:hover > .menu_list a {
        color: var(--text-color-accent-invert);
    }

    .menu_list__item {
        position: relative;
        font-weight: 600;
        font-size: 18px;
        padding: 6px 18px;
        text-transform: uppercase;
        border-bottom: none;
    }

    .mobile_only {
        display: none;
    }

    .menu {
        display: flex;
        position: static;
        width: inherit;
        height: inherit;
        background-color: var(--menu-bg);
        color: var(--text-color-accent);
        transform: translateX(0);
    }

    .main_header__right_panel {
        justify-content: start;
    }

    .main_header {
        height: inherit;
    }

    .top_header {
        flex-direction: row;
        align-items: initial;
    }

    .main_header__center_panel {
        position: initial;
        width: auto;
        height: auto;
        background: currentColor;
        z-index: initial;
        transform: translateX(0);
        transition: none;
    }

    .slider__item {
        width: calc(25% - 30px);
    }

    .arrival_slider .slider__item {
        width: 20%;
    }

    .sliders_container {
        position: relative;
        height: 435px;
    }
}