html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-weight: inherit;
    font-style: inherit;
    font-size: 100%;
    font-family: inherit;
    vertical-align: baseline;
}

/* remember to define focus styles! */
:focus {
    outline: 0;
}

body {
    line-height: 1;
    color: black;
    background: white;
}

ol,
ul {
    list-style: none;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
    border-collapse: separate;
    border-spacing: 0;
}

caption,
th,
td {
    text-align: left;
    font-weight: normal;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
}

blockquote,
q {
    quotes: """";
}

button {
    display: block;
    cursor: pointer;
    transition: 0.3s;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: none;
    border: none;
    padding: 0;
    line-height: 1;
}

button:hover {
    transition: 0.3s;
}

a {
    display: inline-block;
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    transition: 0.3s;
}

button:focus,
a:focus,
img:focus,
li:focus,
input:focus {
    outline: none;
}

button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input::-webkit-input-placeholder {
    opacity: 1;
}

input::-moz-placeholder {
    opacity: 1;
}

input:-moz-placeholder {
    opacity: 1;
}

input:-ms-input-placeholder {
    opacity: 1;
}

textarea::-webkit-input-placeholder {
    opacity: 1;
}

textarea::-moz-placeholder {
    opacity: 1;
}

textarea:-moz-placeholder {
    opacity: 1;
}

textarea:-ms-input-placeholder {
    opacity: 1;
}

input,
select,
option,
input[type=color],
input[type=date],
input[type=datetime],
input[type=datetime-local],
input[type=email],
input[type=month],
input[type=number],
input[type=password],
input[type=search],
input[type=tel],
input[type=text],
input[type=time],
input[type=url],
input[type=week],
select:focus,
textarea {
    font-size: 16px;
    box-shadow: none;
}

.nice-select {
    -webkit-tap-highlight-color: transparent;
    background-color: #fff;
    border-radius: 5px;
    border: solid 1px #e8e8e8;
    box-sizing: border-box;
    clear: both;
    cursor: pointer;
    display: block;
    float: left;
    font-family: inherit;
    font-size: 14px;
    font-weight: normal;
    height: 42px;
    line-height: 40px;
    outline: none;
    padding-left: 18px;
    padding-right: 30px;
    position: relative;
    text-align: left !important;
    transition: all 0.2s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    white-space: nowrap;
    width: auto;
}

.nice-select:hover {
    border-color: #dbdbdb;
}

.nice-select:active,
.nice-select.open,
.nice-select:focus {
    border-color: #999;
}

.nice-select:after {
    border-bottom: 2px solid #999;
    border-right: 2px solid #999;
    content: "";
    display: block;
    height: 5px;
    margin-top: -4px;
    pointer-events: none;
    position: absolute;
    right: 12px;
    top: 50%;
    transform-origin: 66% 66%;
    transform: rotate(45deg);
    transition: all 0.15s ease-in-out;
    width: 5px;
}

.nice-select.open:after {
    transform: rotate(-135deg);
}

.nice-select.open .list {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1) translateY(0);
}

.nice-select.disabled {
    border-color: #ededed;
    color: #999;
    pointer-events: none;
}

.nice-select.disabled:after {
    border-color: #cccccc;
}

.nice-select.wide {
    width: 100%;
}

.nice-select.wide .list {
    left: 0 !important;
    right: 0 !important;
}

.nice-select.right {
    float: right;
}

.nice-select.right .list {
    left: auto;
    right: 0;
}

.nice-select.small {
    font-size: 12px;
    height: 36px;
    line-height: 34px;
}

.nice-select.small:after {
    height: 4px;
    width: 4px;
}

.nice-select.small .option {
    line-height: 34px;
    min-height: 34px;
}

.nice-select .list {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
    box-sizing: border-box;
    margin-top: 4px;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    transform-origin: 50% 0;
    transform: scale(0.75) translateY(-21px);
    transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    z-index: 9;
}

.nice-select .list:hover .option:not(:hover) {
    background-color: transparent !important;
}

.nice-select .option {
    cursor: pointer;
    font-weight: 400;
    line-height: 40px;
    list-style: none;
    min-height: 40px;
    outline: none;
    padding-left: 18px;
    padding-right: 29px;
    text-align: left;
    transition: all 0.2s;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
    background-color: #f6f6f6;
}

.nice-select .option.selected {
    font-weight: bold;
}

.nice-select .option.disabled {
    background-color: transparent;
    color: #999;
    cursor: default;
}

.no-csspointerevents .nice-select .list {
    display: none;
}

.no-csspointerevents .nice-select.open .list {
    display: block;
}

@font-face {
    font-family: "Bicubik";
    src: url("../fonts/Bicubik.woff2") format("woff2"), url("../fonts/Bicubik.woff") format("woff");
    font-weight: 400;
    font-style: normal;
}

:root {
    --main-color: #111214;
    --main-color2: #fff;
    --main-color3: #98979C;
    --main-color4: #494D58;
    --main-color5: #7A8FAF;
    --text-color: #111214;
    --text-color2: #fff;
    --background-color: #111214;
    --background-color2: #fff;
    --border-color: #fff;
    --font-bicubik: "Bicubik", sans-serif;
    --vh: 1vh;
}

body {
    padding-top: 60px;
    position: relative;
    font-size: 16px;
    font-family: "IBM Plex Mono", monospace;
    color: var(--text-color);
    background: var(--background-color2);
}

@media screen and (max-width: 820px) {
    body {
        padding-top: 57px;
    }
}

@media screen and (max-width: 660px) {
    body {
        padding-top: 54px;
    }
}

body * {
    box-sizing: border-box;
}

body *::before {
    box-sizing: border-box;
}

body *::after {
    box-sizing: border-box;
}

body.no-scroll {
    overflow-y: hidden;
}

body button {
    font-family: "IBM Plex Mono", sans-serif;
}

body input {
    font-family: "IBM Plex Mono", sans-serif;
}

body input::-moz-placeholder {
    font-family: "IBM Plex Mono", sans-serif;
}

body input::placeholder {
    font-family: "IBM Plex Mono", sans-serif;
}

body textarea {
    font-family: "IBM Plex Mono", sans-serif;
}

body textarea::-moz-placeholder {
    font-family: "IBM Plex Mono", sans-serif;
}

body textarea::placeholder {
    font-family: "IBM Plex Mono", sans-serif;
}

body a {
    color: inherit;
}

.wrapper {
    width: 1920px;
    margin: 0 auto;
    max-width: 100%;
    position: relative;
    min-height: 100dvh;
    overflow: hidden;
}

.wrapper--nooverflow {
    overflow: visible;
}

.inside {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 0 40px;
    text-align: center;
    margin: 0 auto;
    box-sizing: border-box;
    z-index: 10;
}

@media screen and (max-width: 1440px) {
    .inside {
        padding: 0 20px;
    }
}

@media screen and (max-width: 660px) {
    .inside {
        padding: 0 10px;
    }
}

.usn {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.mob {
    display: none !important;
}

.hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    clip: rect(0 0 0 0);
    overflow: hidden;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
}

section {
    padding: 1px 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

.toggler {
    position: relative;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 40px;
    height: 24px;
    box-sizing: border-box;
    cursor: pointer;
    z-index: 99;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    transition: 0.3s;
}

@media screen and (max-width: 1180px) {
    .toggler {
        display: flex;
        margin-left: 12px;
    }
}

.toggler span {
    display: block;
    width: 100%;
    height: 4px;
    background: var(--background-color);
    border-radius: 12px;
}

.toggler.active span {
    position: absolute;
    top: 8px;
    left: 8px;
    transform: rotate(45deg);
}

.toggler.active span:nth-child(2) {
    transform: rotate(-45deg);
}

.toggler.active span:last-child {
    display: none;
}

.button--switch {
    width: 40px;
    height: 40px;
    left: 0;
    top: 0;
    cursor: pointer;
    position: absolute;
    z-index: 10;
    background: #000;
}

/*base*/
.button {
    padding: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 100%;
    font-size: 14px;
    font-family: var(--font-bicubik);
    color: var(--text-color2);
    border: 1px solid var(--main-color);
    background: var(--background-color);
    transition: 0.3s;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.button:hover {
    color: var(--text-color);
    background: var(--background-color2);
}

.button--type2 {
    border-color: transparent;
    background: rgba(17, 18, 20, 0.2);
    -webkit-backdrop-filter: blur(40px);
    backdrop-filter: blur(40px);
}

.button--type2:hover {
    color: rgba(255, 255, 255, 0.6);
    border-color: transparent;
    background: rgba(17, 18, 20, 0.2);
}

.button--type3 {
    color: var(--text-color);
    border: 1px solid var(--main-color);
    background: var(--background-color2);
}

.button--type3:hover {
    color: var(--text-color2);
    background: var(--background-color);
}

.button--type4 {
    color: var(--text-color);
    border: 1px solid transparent;
    background: var(--background-color2);
}

.button--type4:hover {
    border-color: var(--main-color);
    color: var(--text-color2);
    background: var(--background-color);
}

.button--type5 {
    border-color: transparent;
    color: var(--text-color);
    background: rgba(17, 18, 20, 0.2);
    -webkit-backdrop-filter: blur(40px);
    backdrop-filter: blur(40px);
}

.button--type5:hover {
    color: var(--text-color);
    border-color: transparent;
    background: rgba(17, 18, 20, 0.2);
}

.button--w100 {
    width: 100%;
}

@media screen and (max-width: 660px) {
    .logo {
        margin: 0 auto;
        width: 140px;
    }

    .logo svg,
    .logo img {
        max-width: 100%;
    }
}

header {
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    border-bottom: 1px solid var(--main-color);
    background: #fff;
    z-index: 1000;
}

.header {
    padding: 12px 0;
    height: 60px;
    display: grid;
    align-items: center;
    grid-template-columns: repeat(3, 1fr);
}

@media screen and (max-width: 820px) {
    .header {
        height: 57px;
    }
}

@media screen and (max-width: 660px) {
    .header {
        height: 54px;
    }
}

.header-search {
    width: 22px;
    text-align: left;
}

.header-search-button {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

.header-search-button:hover {
    opacity: 0.7;
}

.header-search-button.active {
    background: var(--background-color);
}

.header-search-button.active svg path {
    fill: var(--main-color2);
}

.header-search-drop {
    padding: 40px 20px;
    position: absolute;
    left: 0;
    width: 100%;
    background: var(--background-color2);
    visibility: hidden;
    top: calc(100% + 1px);
    opacity: 0;
    z-index: -10;
    overflow: hidden;
    transition: all 0.5s linear;
}

@media screen and (max-width: 820px) {
    .header-search-drop {
        padding: 20px;
    }
}

@media screen and (max-width: 660px) {
    .header-search-drop {
        padding: 20px 10px;
    }
}

.header-search-drop.active {
    visibility: visible;
    opacity: 1;
    z-index: 105;
    transition: 0.5s linear;
}

.header-search-drop-inside {
    margin: 0 auto;
    width: 930px;
    max-width: 100%;
    display: grid;
    align-items: flex-end;
    grid-template-columns: 3fr 1fr;
    gap: 10px;
}

@media screen and (max-width: 660px) {
    .header-search-drop-inside {
        grid-template-columns: repeat(1, 1fr);
    }
}

.header-search-drop-inside .button {
    padding: 12px;
}

.header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 38px;
}

@media screen and (max-width: 660px) {
    .header-right {
        gap: 20px;
    }
}

.header-catalog-button {
    position: relative;
    padding: 10px;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
    z-index: 5;
}

.header-catalog-button::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: calc(100% + 20px);
    height: calc(100% + 36px);
    z-index: 2;
    transform: translate(-50%, -50%);
}

.header-catalog-button--mob {
    display: none;
}

.header-catalog-button--mob::before {
    display: none;
}

@media screen and (max-width: 1280px) {
    .header-catalog-button--mob {
        display: block;
    }
}

@media screen and (max-width: 1280px) {
    .header-catalog-button--desktop {
        display: none;
    }
}

@media screen and (max-width: 660px) {
    .header-catalog-button {
        padding: 0;
        font-size: 0;
        order: 2;
    }
}

.header-catalog-button svg {
    transition: 0.3s;
}

@media screen and (max-width: 660px) {
    .header-catalog-button svg {
        display: none;
    }

    .header-catalog-button svg.mob {
        display: block !important;
    }
}

.header-catalog-button svg path {
    transition: 0.3s;
}

.header-catalog-button.active,
.header-catalog-button:hover {
    color: var(--text-color2);
    background: var(--main-color);
}

@media screen and (max-width: 660px) {

    .header-catalog-button.active,
    .header-catalog-button:hover {
        background: none;
    }
}

.header-catalog-button.active svg path,
.header-catalog-button:hover svg path {
    stroke: var(--text-color2);
}

@media screen and (max-width: 660px) {

    .header-catalog-button.active svg path,
    .header-catalog-button:hover svg path {
        stroke: black;
    }
}

.header-catalog-button.active svg {
    transform: rotate(90deg);
}

@media screen and (max-width: 660px) {
    .header-catalog-button.active svg {
        transform: rotate(0deg);
    }
}

.header-basket-button {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

@media screen and (max-width: 660px) {
    .header-basket-button {
        order: 1;
    }
}

@media screen and (max-width: 660px) {
    .header-basket-button span {
        display: none;
    }
}

.header-basket-button::before {
    display: none;
    content: "";
    position: absolute;
    left: 22px;
    top: 0px;
    width: 4px;
    height: 4px;
    border-radius: 100%;
    background: red;
}

@media screen and (max-width: 660px) {
    .header-basket-button.count-active::before {
        display: block;
    }
}

.header-catalog-wrap {
    padding: 20px 0;
    position: absolute;
    left: 0;
    width: 100%;
    background: var(--background-color2);
    visibility: hidden;
    top: calc(100% + 1px);
    opacity: 0;
    z-index: -10;
    transition: 0.5s;
    overflow: hidden;
}

.header-catalog-wrap.active {
    visibility: visible;
    opacity: 1;
    z-index: 100;
}

.header-catalog-wrap .inside {
    width: 1592px;
}

@media screen and (max-width: 1440px) {
    .header-catalog-wrap .inside {
        width: 1204px;
    }
}

.header-catalog {
    display: flex;
    gap: 148px;
}

@media screen and (max-width: 1660px) {
    .header-catalog {
        gap: 75px;
    }
}

@media screen and (max-width: 820px) {
    .header-catalog {
        gap: 102px;
    }
}

@media screen and (max-width: 740px) {
    .header-catalog {
        gap: 20px;
    }
}

.header-catalog-product {
    display: flex;
    align-items: stretch;
    gap: 20px;
}

@media screen and (max-width: 820px) {
    .header-catalog-product {
        gap: 8px;
    }
}

@media screen and (max-width: 660px) {
    .header-catalog-product {
        display: none;
    }
}

.header-catalog-product__photo {
    width: 290px;
    height: 100%;
}

@media screen and (max-width: 1440px) {
    .header-catalog-product__photo {
        width: 216px;
        height: -moz-fit-content;
        height: fit-content;
    }
}

@media screen and (max-width: 1140px) {
    .header-catalog-product__photo {
        width: 90px;
        height: -moz-fit-content;
        height: fit-content;
    }
}

.header-catalog-product__photo img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.header-catalog-product__info {
    text-align: left;
}

.header-catalog-product__new {
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
}

.header-catalog-product__title {
    margin-bottom: 24px;
    display: flex;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.header-catalog-product__description {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.header-catalog-product__description li {
    display: flex;
    gap: 18px;
}

.header-catalog-product__description li:last-child .header-catalog-product__description-info {
    flex-direction: column;
    gap: 14px;
}

.header-catalog-product__description-title {
    padding-top: 2px;
    font-size: 12px;
    color: var(--main-color3);
}

.header-catalog-product__description-info {
    display: flex;
    gap: 20px;
    font-size: 14px;
}

.header-catalog-product__description-info--type2 {
    flex-direction: column;
    gap: 14px;
}

.header-catalog-product__description-info--type2 span {
    position: relative;
    padding-left: 8px;
}

.header-catalog-product__description-info--type2 span::before {
    content: "";
    position: absolute;
    left: -1px;
    top: 8px;
    width: 3px;
    height: 3px;
    border-radius: 100%;
    background: var(--background-color);
}

.header-catalog-nav {
    display: flex;
    align-items: stretch;
    gap: 40px;
}

@media screen and (max-width: 660px) {
    .header-catalog-nav {
        padding-left: 10px;
        padding-right: 10px;
        flex-direction: column;
        gap: 20px;
    }
}

.header-catalog-nav__title {
    display: none;
    font-family: var(--font-bicubik);
    font-size: 16px;
    text-transform: uppercase;
    text-align: left;
}

@media screen and (max-width: 660px) {
    .header-catalog-nav__title {
        display: block;
        order: 1;
        min-height: 16px;
    }
}

.header-catalog-nav__list {
    padding-top: 4px;
    font-size: 14px;
    text-transform: uppercase;
    text-align: left;
}

@media screen and (max-width: 660px) {
    .header-catalog-nav__list {
        padding-top: 0;
        padding-left: 20px;
        order: 2;
    }
}

.header-catalog-nav__list ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.header-catalog-nav__list ul a {
    display: flex;
    align-items: flex-start;
    gap: 2px;
    color: var(--text-color);
    transition: 0.3s;
}

.header-catalog-nav__list ul a:hover {
    opacity: 0.7;
}

.header-catalog-nav__list ul a span {
    margin-top: -2px;
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    color: var(--main-color3);
}

.wrap_banner {
    height: 100%;
}

@media screen and (max-width: 660px) {
    .wrap_banner {
        order: 3;
    }
}

.header-catalog-nav__card {
    width: 600px;
    height: 100%;
}

@media screen and (max-width: 1580px) {
    .header-catalog-nav__card {
        width: 454px;
        height: auto;
    }
}

@media screen and (max-width: 1140px) {
    .header-catalog-nav__card {
        width: 134px;
        height: 128px;
    }
}

@media screen and (max-width: 660px) {
    .header-catalog-nav__card {
        width: 100%;
        height: auto;
    }
}

.header-catalog-nav__card img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.basket-wrap {
    position: fixed;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    max-width: 100%;
    width: 485px;
    height: 100dvh;
    background: var(--background-color);
    visibility: hidden;
    right: -500px;
    top: 0;
    z-index: -10;
    transition: 0.8s;
}

@media screen and (max-width: 660px) {
    .basket-wrap {
        padding: 10px;
    }
}

.basket-wrap.active {
    visibility: visible;
    right: 0;
    z-index: 1000;
}

.basket-header {
    padding-bottom: 20px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
    color: var(--text-color2);
    border-bottom: 1px solid var(--border-color);
}

.basket-header__title {
    font-family: var(--font-bicubik);
    font-size: 16px;
    text-transform: uppercase;
}

.basket-header__counter {
    font-size: 14px;
}

.basket-header__close {
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
}

.basket {
    height: calc(100% - 40px);
    overflow: hidden;
}

.basket-list {
    padding-right: 12px;
    padding-bottom: 140px;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    color: var(--main-color2);
}

.basket-list::-webkit-scrollbar {
    width: 2px;
    border-radius: 12px;
}

.basket-list::-webkit-scrollbar-track {
    box-shadow: inset 2px 4px 4px rgba(72, 67, 65, 0.5);
    background: #fff;
    border-radius: 14px;
}

.basket-list::-webkit-scrollbar-thumb {
    background: var(--main-color4);
    border-radius: 14px;
}

.basket-list>.text-center {
    padding: 8px;
    width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.basket-item {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.basket-item+.basket-item {
    margin-top: 20px;
}

.basket-item:last-child {
    border-bottom: none;
}

.basket-item__photo {
    width: 135px;
    height: 180px;
}

@media screen and (max-width: 660px) {
    .basket-item__photo {
        width: 117px;
    }
}

.basket-item__photo img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.basket-item__info {
    width: calc(100% - 135px - 20px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media screen and (max-width: 660px) {
    .basket-item__info {
        width: calc(100% - 117px - 20px);
    }
}

.basket-item__info-top {
    margin-bottom: 6px;
    font-size: 8px;
    text-align: left;
    text-transform: uppercase;
    color: var(--main-color3);
}

.basket-item__info-header {
    margin-bottom: 18px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    color: var(--text-color2);
    text-align: left;
}

@media screen and (max-width: 660px) {
    .basket-item__info-header {
        flex-wrap: wrap;
    }
}

.basket-item__info-title {
    font-size: 16px;
    line-height: 120%;
    text-transform: uppercase;
}

.basket-item__info-title:hover {
    text-decoration: underline;
}

.basket-item__info-price {
    display: flex;
    align-items: center;
    gap: 14px;
    line-height: 120%;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    text-align: right;
    white-space: nowrap;
}

.basket-item__info-body {
    min-height: 20px;
    display: flex;
    gap: 16px;
}

.basket-item__info-size {
    padding: 2px 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-color2);
    border: 1px solid var(--main-color4);
}

.basket-item__info-color {
    width: 18px;
    height: 18px;
}

.basket-item__info-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.basket-item__info-quantity {
    width: 88px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--main-color2);
    border: 1px solid #626262;
}

.basket-item__info-quantity input {
    width: 44px;
    text-align: center;
    color: var(--main-color2);
    border: none;
    background: none;
}

.basket-item__info-quantity button {
    font-size: 20px;
    color: var(--main-color2);
}

.basket-item__info-delete {
    font-size: 10px;
    color: var(--main-color3);
    text-decoration: underline;
}

.basket-item__info-delete:hover {
    text-decoration: none;
}

.color {
    display: block;
    width: 100%;
    height: 100%;
}

.color--black {
    background: #111214;
}

.color--grafit {
    background: #494D58;
}

.color--grey {
    background: #98979C;
}

.color--white {
    background: #FFFFFF;
}

.color--blue {
    background: #7A8FAF;
}

.text-scroll-wrap {
    font-family: var(--font-bicubik);
    color: var(--text-color2);
    background: var(--background-color);
}

.text-scroll-wrap--type2 {
    font-size: 235px;
    color: var(--text-color);
    background: var(--background-color2);
}

@media screen and (max-width: 660px) {
    .text-scroll-wrap--type2 {
        font-size: 100px;
    }
}

.text-scroll {
    position: relative;
    display: flex;
    gap: 20px;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.text-scroll-list {
    position: relative;
    padding: 5px 0;
    min-width: 100%;
    display: flex;
    flex-shrink: 0;
    gap: 20px;
    /*  animation: scroll 200s linear infinite; */
    animation: scroll 30s linear infinite;
    will-change: left;
}

.text-scroll-list__item span+span {
    margin-left: 20px;
}

/* @keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-100% - 20px));
    }
} */

@keyframes scroll {
    0% {
        left: 0;
    }

    100% {
        left: calc(-100% - 20px);
    }
}


.first-screen-section {
    margin-bottom: 40px;
    padding: 0;
}

.first-screen-item {
    position: relative;
    display: block;
    /*  height: calc(var(--vh, 1vh) * 100 - 60px - 26px); */
    height: calc(100dvh - 60px - 26px);
}

@media screen and (max-width: 820px) {
    .first-screen-item {
        height: calc(100dvh - 57px - 26px);
    }
}

@media screen and (max-width: 660px) {
    .first-screen-item {
        height: calc(100dvh - 54px - 26px);
    }
}

.first-screen-item__photo img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.first-screen-item__title {
    padding: 0 40px;
    position: absolute;
    left: 0;
    bottom: 40px;
    width: 100%;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    font-family: var(--font-bicubik);
    font-size: 15.5vw;
    color: var(--text-color2);
    text-align: center;
    letter-spacing: 3px;
}

@media screen and (max-width: 1440px) {
    .first-screen-item__title {
        margin-bottom: 0;
        padding: 0 20px;
        bottom: 20px;
        font-size: 15vw;
    }
}

@media screen and (max-width: 820px) {
    .first-screen-item__title {
        bottom: 34px;
        font-size: 15vw;
    }
}

@media screen and (max-width: 660px) {
    .first-screen-item__title {
        font-size: 23vw;
        display: block;
    }

    .first-screen-item__title span {
        display: block;
        font-size: 52vw;
        line-height: 62%;
    }
}

.first-screen-item__text {
    padding: 0 40px;
    position: absolute;
    left: 0;
    bottom: 40px;
    width: 100%;
    z-index: 10;
    display: grid;
    align-items: flex-start;
    grid-template-columns: 1fr 0.4fr 1fr;
    gap: 4px;
    font-size: 14px;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    mix-blend-mode: difference;
}

@media screen and (max-width: 1440px) {
    .first-screen-item__text {
        padding: 0 20px;
        bottom: 20px;
    }
}

.first-screen-item__text span {
    display: flex;
    gap: 4px;
    align-items: center;
}

.first-screen-item__text span:first-child {
    text-align: left;
    justify-content: flex-start;
}

.first-screen-item__text span:nth-child(2) {
    justify-content: center;
}

.first-screen-item__text span:last-child {
    text-align: right;
    justify-content: flex-end;
}

.product-section {
    margin-bottom: 38px;
}

.product-slider {
    margin-bottom: 22px;
}

@media screen and (max-width: 1180px) {
    .product-slider.swiper-container {
        overflow: visible;
    }
}

@media screen and (max-width: 820px) {
    .product-slider .swiper-slide {
        width: 453px;
    }
}

@media screen and (max-width: 660px) {
    .product-slider .swiper-slide {
        width: 350px;
    }
}

.product-item {
    position: relative;
}

.product-item:hover .product-item__buttons {
    transform: translateY(0);
}

@media screen and (max-width: 960px) {
    .product-item:hover .product-item__buttons {
        display: none;
    }
}

.product-item--soldout:hover .product-item__buttons {
    display: none;
}

.product-item__photo-wrap {
    position: relative;
    margin-bottom: 12px;
    overflow: hidden;
}

.product-item__photo {
    display: block;
    height: 794px;
}

@media screen and (max-width: 1440px) {
    .product-item__photo {
        height: 600px;
    }
}

@media screen and (max-width: 660px) {
    .product-item__photo {
        height: 467px;
    }
}

.product-item__photo img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.product-item__buttons {
    position: absolute;
    left: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    width: 100%;
    z-index: 100;
    transition: transform 0.3s;
    transform: translateY(100%);
}

.product-item__info {
    display: flex;
    justify-content: space-between;
    text-align: left;
}

.product-item__info-title {
    margin-bottom: 8px;
    font-family: var(--font-bicubik);
    text-transform: uppercase;
}

.product-item__info-title:hover {
    text-decoration: underline;
}

.product-item__info-price {
    font-size: 14px;
    display: flex;
    gap: 10px;
}

.product-item__discount {
    padding-top: 4px;
    font-size: 14px;
    color: var(--main-color3);
    white-space: nowrap;
}

.product-item--soldout .product-item__soldout {
    display: flex;
}

.product-item--soldout .product-item__photo img {
    opacity: 0.4;
}

.product-item__soldout {
    display: none;
    position: absolute;
    left: 0;
    top: 50%;
    z-index: 500;
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-family: var(--font-bicubik);
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(40px);
    backdrop-filter: blur(40px);
}

@media screen and (max-width: 1280px) {
    .product-item__soldout {
        color: var(--text-color2);
        height: 50px;
    }
}

@media screen and (max-width: 660px) {
    .product-item__soldout {
        height: 30px;
    }
}

.price-old {
    text-decoration: line-through;
    color: var(--main-color3);
}

.white {
    color: var(--text-color2);
}

.sales-section {
    margin-bottom: 36px;
}

@media screen and (max-width: 660px) {
    .product-item__soldout {
        margin-bottom: 17px;
    }
}

.sales {
    margin-bottom: 20px;
    position: relative;
    height: 809px;
    overflow: hidden;
}

@media screen and (max-width: 1440px) {
    .sales {
        height: 600px;
    }
}

@media screen and (max-width: 920px) {
    .sales {
        height: 490px;
    }
}

@media screen and (max-width: 660px) {
    .sales {
        height: 420px;
    }
}

.sales img {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
}

.sales__title {
    padding: 26px 60px 12px 38px;
    position: absolute;
    top: -1px;
    left: 50%;
    z-index: 10;
    display: inline-block;
    font-family: var(--font-bicubik);
    font-size: 112px;
    background: #2a2a2a;
    transform: rotate(90deg) translateY(-50%);
    transform-origin: 0 0;
    display: none;
}

@media screen and (max-width: 920px) {
    .sales__title {
        display: none;
    }
}

.more-title {
    font-family: var(--font-bicubik);
    font-size: 8vw;
    text-transform: uppercase;
    line-height: 79%;
    text-align: left;
    letter-spacing: 2px;
}

@media screen and (max-width: 1440px) {
    .more-title {
        line-height: 90%;
    }
}

@media screen and (max-width: 820px) {
    .more-title {
        line-height: 80%;
    }
}

@media screen and (max-width: 660px) {
    .more-title {
        font-size: 8.5vw;
        line-height: 110%;
    }
}

.more-title span {
    display: block;
}

.more-title span:nth-child(2) {
    text-align: right;
}

.more-grid {
    display: grid;
    align-items: flex-start;
    grid-template-columns: calc(41% - 10px) calc(59% - 10px);
    gap: 20px;
}

@media screen and (max-width: 820px) {
    .more-grid {
        gap: 20px 10px;
    }
}

@media screen and (max-width: 660px) {
    .more-grid {
        display: block;
    }
}

.more-grid-item img {
    display: block;
    max-width: 100%;
}

.more-grid-item:nth-child(1) {
    grid-area: 1/2/2/3;
    text-align: right;
}

.more-grid-item:nth-child(2) {
    padding-top: 212px;
    grid-area: 1/1/3/2;
    text-align: left;
}

@media screen and (max-width: 820px) {
    .more-grid-item:nth-child(2) {
        padding-top: 80px;
    }
}

@media screen and (max-width: 660px) {
    .more-grid-item:nth-child(2) {
        padding-top: 0;
    }
}

.more-grid-item:nth-child(3) {
    grid-area: 2/2/3/3;
    text-align: right;
}

.more-arrow {
    margin-left: auto;
    margin-right: 20%;
}

@media screen and (max-width: 1440px) {
    .more-arrow {
        width: 200px;
    }
}

@media screen and (max-width: 820px) {
    .more-arrow {
        width: 140px;
    }
}

@media screen and (max-width: 660px) {
    .more-arrow {
        display: none !important;
    }
}

.more-text {
    margin: 0 auto;
    margin-top: 155px;
    margin-bottom: 60px;
    width: 440px;
    max-width: 100%;
    font-family: var(--font-bicubik);
    font-size: 16px;
    line-height: 120%;
    text-transform: uppercase;
    text-indent: 35%;
}

@media screen and (max-width: 820px) {
    .more-text {
        margin-top: 60px;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 660px) {
    .more-text {
        margin-top: 20px;
    }
}

.more-text2 {
    margin-top: 100px;
    margin-bottom: 30px;
    width: 876px;
    max-width: 100%;
    font-family: var(--font-bicubik);
    font-size: 40px;
    line-height: 120%;
    text-transform: uppercase;
    text-indent: 52%;
    text-align: left;
    word-spacing: 25px;
}

@media screen and (max-width: 1440px) {
    .more-text2 {
        margin-top: 100px;
    }
}

@media screen and (max-width: 820px) {
    .more-text2 {
        margin-top: 80px;
        font-size: 24px;
        text-indent: 35%;
        word-spacing: 10px;
    }
}

@media screen and (max-width: 660px) {
    .more-text2 {
        margin-top: 20px;
        margin-bottom: 20px;
        text-indent: 0;
        text-align: left;
    }
}

.more-text3 {
    margin-bottom: 40px;
    width: 445px;
    max-width: 100%;
    font-size: 14px;
    line-height: 120%;
    text-align: left;
}

@media screen and (max-width: 820px) {
    .more-text3 {
        width: 280px;
    }
}

@media screen and (max-width: 660px) {
    .more-text3 {
        width: 100%;
    }
}

.more-text3--type2 {
    margin-left: auto;
    margin-right: 156px;
}

@media screen and (max-width: 820px) {
    .more-text3--type2 {
        margin-right: 0;
    }
}

@media screen and (max-width: 660px) {
    .more-text3--type2 {
        margin-right: 0;
    }
}

@media screen and (max-width: 660px) {
    .more-text3 {
        margin-bottom: 20px;
    }
}

.subscription-section {
    position: relative;
    height: 823px;
    overflow: hidden;
}

.subscription-section .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../image/subscription-bg.png) no-repeat center top;
    background-size: cover;
    will-change: transform;
}

@media screen and (max-width: 1440px) {
    .subscription-section {
        height: 600px;
    }
}

@media screen and (max-width: 820px) {
    .subscription-section {
        height: 490px;
    }
}

@media screen and (max-width: 660px) {
    .subscription-section {
        height: 590px;
        background: url(../image/subscription-bg-mob.png) no-repeat center 0;
        background-attachment: fixed;
        background-position: top left 28%;
        background: none;
    }

    .subscription-section .bg {
        background: url(../image/subscription-bg-mob.png) no-repeat center 0;
        background-position: top left 28%;
        background-size: 127%;
    }
}

.subscription-form-wrap {
    position: absolute;
    right: 40px;
    bottom: 40px;
    padding: 20px;
    width: 600px;
    max-width: 100%;
    background: var(--background-color2);
    z-index: 10;
}

@media screen and (max-width: 1440px) {
    .subscription-form-wrap {
        right: 20px;
        bottom: 20px;
    }
}

@media screen and (max-width: 820px) {
    .subscription-form-wrap {
        width: calc(100% - 40px);
    }
}

@media screen and (max-width: 660px) {
    .subscription-form-wrap {
        right: 0px;
        bottom: 0px;
        padding: 10px;
        padding-bottom: 0px;
        width: 100%;
    }
}

.subscription-form-title {
    margin-bottom: 24px;
    font-size: 14px;
}

.subscription-form-title span {
    color: var(--main-color5);
}

.subscription-form {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 10px;
}

@media screen and (max-width: 660px) {
    .subscription-form {
        grid-template-columns: repeat(1, 1fr);
    }
}

.input-error-wrap {
    position: relative;
}

.subscription-form .error {
    position: absolute;
    font-size: 8px;
    left: 0;
    bottom: -12px;
    color: red;
}

@media screen and (max-width: 660px) {
    .subscription-form .error {
        margin-top: 4px;
        position: static;
    }
}

.subscription-form .success {
    position: absolute;
    font-size: 8px;
    left: 0;
    bottom: -12px;
    color: green;
}

@media screen and (max-width: 660px) {
    .subscription-form .success {
        margin-top: 4px;
        position: static;
    }
}

.subscription-form__input {
    padding: 16px 0;
    width: 100%;
    height: 50px;
    border: none;
    border-bottom: 1px solid var(--main-color);
    color: var(--main-color4);
}

.subscription-form__input--error {
    border-color: red;
}

.subscription-form .button {
    height: 50px;
}

footer {
    margin-top: 80px;
    position: relative;
    z-index: 10;
}

@media screen and (max-width: 660px) {
    footer {
        margin-top: 16px;
    }
}

.footer {
    padding: 40px 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    border-top: 1px solid var(--main-color);
    border-bottom: 1px solid var(--main-color);
}

.footer .logo {
    width: 200px;
}

@media screen and (max-width: 820px) {
    .footer {
        padding: 20px 0;
        flex-wrap: wrap;
        gap: 40px;
    }
}

.footer-left {
    display: flex;
    align-items: flex-start;
    gap: 120px;
    text-align: left;
}

@media screen and (max-width: 1440px) {
    .footer-left {
        gap: 20px;
    }
}

@media screen and (max-width: 820px) {
    .footer-left {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        justify-content: space-between;
    }
}

@media screen and (max-width: 660px) {
    .footer-left {
        display: flex;
        align-items: center;
    }
}

.footer-copyright {
    margin-top: 55px;
    font-size: 14px;
    line-height: 180%;
}

@media screen and (max-width: 820px) {
    .footer-copyright {
        margin-top: 16px;
    }
}

@media screen and (max-width: 660px) {
    .footer-copyright {
        font-size: 10px;
        line-height: 200%;
    }
}

.footer-left-soc-list {
    display: flex;
    gap: 20px;
}

.footer-right {
    display: flex;
    align-items: flex-start;
    gap: 195px;
}

@media screen and (max-width: 1440px) {
    .footer-right {
        gap: 20px;
    }
}

@media screen and (max-width: 820px) {
    .footer-right {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 660px) {
    .footer-right {
        grid-template-columns: repeat(1, 1fr);
        gap: 40px;
    }
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

.footer-nav:nth-child(2) {
    text-align: right;
}

@media screen and (max-width: 820px) {
    .footer-nav:nth-child(2) {
        text-align: left;
    }
}

.footer-nav__title {
    font-family: var(--font-bicubik);
    font-size: 12px;
    text-transform: uppercase;
}

.footer-nav__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media screen and (max-width: 820px) {
    .footer-nav__list {
        gap: 12px;
    }
}

.footer-nav__list a {
    font-size: 14px;
    color: var(--main-color4);
}

.footer-nav__list a:hover {
    text-decoration: underline;
}

.breadcrumb {
    margin: 10px auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

@media screen and (max-width: 1440px) {
    .breadcrumb {
        padding: 0 20px;
    }
}

@media screen and (max-width: 660px) {
    .breadcrumb {
        padding: 0 10px;
    }
}

.breadcrumb li {
    font-size: 14px;
    line-height: 120%;
    text-transform: uppercase;
    color: var(--main-color3);
}

.breadcrumb li::before {
    content: "/";
    margin-right: 8px;
}

.breadcrumb li:first-child::before {
    display: none;
}

.breadcrumb li:last-child a {
    cursor: default;
}

.breadcrumb li:last-child a:hover {
    color: var(--main-color3);
    text-decoration: none;
}

.breadcrumb li a:hover {
    color: var(--text-color);
    text-decoration: underline;
}

.filter-wrap {
    position: relative;
    margin: 20px auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    transition: 0.3s;
}

@media screen and (min-width: 1281px) {
    .filter-wrap {
        margin: 0;
        padding: 10px 40px;
        position: fixed;
        left: 0;
        top: 70px;
        width: 100%;
        -webkit-backdrop-filter: blur(30px);
        backdrop-filter: blur(30px);
        z-index: 50;
    }

    .filter-wrap.fixed {
        top: 60px;
    }

    .filter-wrap.fixed .filter-drop {
        top: 1px;
    }
}

@media screen and (max-width: 1440px) {
    .filter-wrap {
        padding: 20px;
    }
}

@media screen and (max-width: 1280px) {
    .filter-wrap {
        margin: 0;
        padding: 0;
        height: 75px;
    }
}

@media screen and (max-width: 660px) {
    .filter-wrap {
        padding: 0 10px;
    }
}

.filter-wrap.active {
    z-index: 2000;
}

.filter-list-categories {
    display: flex;
    align-items: center;
    gap: 10px;
    overflow-x: auto;
}

@media screen and (max-width: 1280px) {
    .filter-list-categories {
        position: fixed;
        padding: 10px;
        left: 0;
        top: 60px;
        width: 100%;
        -webkit-backdrop-filter: blur(30px);
        backdrop-filter: blur(30px);
        z-index: 50;
    }
}

@media screen and (max-width: 820px) {
    .filter-list-categories {
        top: 57px;
    }
}

@media screen and (max-width: 660px) {
    .filter-list-categories {
        top: 54px;
    }
}

.filter-list-categories::-webkit-scrollbar {
    display: none;
}

@media screen and (max-width: 1280px) {
    .filter-list-categories {
        padding-bottom: 10px;
        width: 100%;
    }
}

.filter-list-categories__item {
    padding: 17px 20px;
    display: flex;
    align-items: flex-start;
    gap: 2px;
    font-size: 14px;
    text-transform: uppercase;
    transition: 0.3s;
    white-space: nowrap;
}

@media screen and (max-width: 820px) {
    .filter-list-categories__item {
        padding: 15px 20px;
    }
}

.filter-list-categories__item span {
    font-size: 10px;
    color: var(--main-color3);
}

.filter-list-categories__item.active,
.filter-list-categories__item:hover {
    color: var(--text-color2);
    background: var(--background-color);
}

.filter-button-open {
    padding: 17px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: var(--main-color);
    border: 1px solid var(--main-color);
}

@media screen and (max-width: 1280px) {
    .filter-button-open {
        width: auto;
        position: fixed;
        left: 50%;
        bottom: 30px;
        transform: translateX(-50%);
        z-index: 150;
        background: rgba(255, 255, 255, 0.2);
        -webkit-backdrop-filter: blur(30px);
        backdrop-filter: blur(30px);
    }
}

.filter-button-open svg path {
    transition: 0.3s;
}

.filter-button-open:hover {
    color: var(--text-color2);
    background: var(--background-color);
}

.filter-button-open:hover svg path {
    stroke: var(--main-color2);
}

.filter-drop {
    padding: 20px 40px;
    position: absolute;
    left: 0;
    width: 100%;
    background: var(--background-color2);
    top: 0px;
    opacity: 0;
    z-index: -10;
    transition: 0.5s;
    overflow: hidden;
    visibility: hidden;
}

@media screen and (min-width: 1440px) {
    .filter-drop {
        top: -9px;
    }
}

@media screen and (max-width: 1440px) {
    .filter-drop {
        padding: 20px;
    }
}

@media screen and (max-width: 1280px) {
    .filter-drop {
        position: fixed;
        top: 61px;
    }
}

@media screen and (max-width: 820px) {
    .filter-drop {
        top: 57px;
    }
}

@media screen and (max-width: 660px) {
    .filter-drop {
        padding: 10px;
        top: 54px;
    }
}

.filter-drop.active {
    visibility: visible;
    opacity: 1;
    z-index: 199;
}

.filter-drop-header {
    margin-bottom: 42px;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--main-color);
}

@media screen and (max-width: 1280px) {
    .filter-drop-header {
        margin-bottom: 20px;
    }
}

.filter-drop-header__title {
    font-family: var(--font-bicubik);
    font-size: 16px;
    text-transform: uppercase;
}

.filter-drop-header__close {
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--main-color);
}

.filter-drop-body {
    display: grid;
    grid-template-columns: 1.3fr 2fr 1.6fr;
}

@media screen and (max-width: 1280px) {
    .filter-drop-body {
        width: 100%;
        display: block;
    }
}

.filter-title {
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
}

@media screen and (max-width: 1280px) {
    .filter-size-wrap {
        margin-bottom: 20px;
        padding-bottom: 20px;
        border-bottom: 1px solid var(--main-color);
    }
}

.filter-size {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-size__item {
    padding: 10px 12px;
    min-width: 42px;
    font-size: 14px;
    color: var(--text-color);
    border: 1px solid var(--main-color);
    transition: 0.3s;
    cursor: pointer;
    text-align: center;
    cursor: pointer;
    text-align: center;
}

.filter-size__item>input {
    display: none;
}

.filter-size__item.active,
.filter-size__item.ocf-selected,
.filter-size__item:hover {
    color: var(--text-color2);
    background: var(--background-color);
}

.sold_out .filter-size__item {
    color: var(--text-color) !important;
    background: none !important;
    border: none !important;
    opacity: 0.3;
}

.sold_out .filter-color__item {
    opacity: 0.3 !important;
}

@media screen and (max-width: 1280px) {
    .filter-category-wrap {
        margin-bottom: 20px;
        padding-bottom: 20px;
        border-bottom: 1px solid var(--main-color);
    }
}

.filter-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.filter-categories__item {
    padding-top: 2px;
    display: flex;
    align-items: flex-start;
    gap: 2px;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--main-color);
    transition: 0.3s;
}

.filter-categories__item.ocf-selected .ocf-value-name {
    text-decoration: underline;
}

.filter-categories__item .ocf-value-append {
    margin-top: -2px;
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    color: var(--main-color3);
    text-decoration: none;
}

@media screen and (max-width: 1280px) {
    .filter-sorting-wrap {
        margin-bottom: 20px;
        padding-bottom: 20px;
        border-bottom: 1px solid var(--main-color);
    }
}

.filter-sorting {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    grid-auto-flow: column;
    gap: 10px;
}

@media screen and (max-width: 1280px) {
    .filter-sorting {
        display: flex;
        flex-direction: column;
    }
}

.filter-sorting__item {
    cursor: pointer;
    display: flex;
    gap: 10px;
}

.filter-sorting__item input:checked~.filter-sorting__item-box:before {
    opacity: 1;
}

.filter-sorting__item-text {
    font-size: 14px;
}

.filter-sorting__item-box {
    position: relative;
    width: 16px;
    height: 16px;
    border: 1px solid var(--main-color);
}

.filter-sorting__item-box::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 8px;
    height: 8px;
    transform: translate(-50%, -50%);
    border-radius: 100px;
    background: var(--background-color);
    z-index: 10;
    opacity: 0;
    transition: 0.3s;
}

.filter-button {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media screen and (max-width: 1280px) {
    .filter-button {
        gap: 0;
    }
}

@media screen and (min-width: 1281px) {
    .catalog-section {
        padding-top: 85px;
    }
}

.catalog {
    margin-bottom: 20px;
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-flow: row dense;
}

@media screen and (max-width: 960px) {
    .catalog {
        margin-bottom: 10px;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (min-width: 961px) {
    .catalog .product-item:nth-child(6n-5) {
        grid-column: span 2;
    }
}

@media screen and (min-width: 661px) and (max-width: 960px) {
    .catalog .product-item:nth-child(5n-4) {
        grid-column: span 2;
    }

    .catalog .product-item:nth-child(5n-4) .product-item__photo {
        height: 472px;
    }
}

@media screen and (max-width: 660px) {
    .catalog .product-item:nth-child(3n-2) {
        grid-column: span 2;
    }

    .catalog .product-item:nth-child(3n-2) .product-item__photo {
        height: 480px;
    }
}

@media screen and (max-width: 660px) {
    .catalog .product-item__photo {
        height: 244px;
    }
}

@media screen and (max-width: 660px) {
    .catalog .product-item__info {
        flex-wrap: wrap;
        gap: 5px;
    }
}

.catalog .baner {
    grid-column: span 3;
}

@media screen and (max-width: 960px) {
    .catalog .baner {
        grid-column: span 2;
    }
}

.catalog .baner img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.product-card-section {
    position: relative;
    z-index: 50;
}

.product-card {
    margin-bottom: 64px;
}

.product-card-header {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
}

@media screen and (max-width: 1280px) {
    .product-card-header {
        flex-wrap: wrap;
        gap: 10px;
    }
}

.product-card-header__title {
    font-family: var(--font-bicubik);
    font-size: 48px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media screen and (max-width: 1280px) {
    .product-card-header__title {
        width: 100%;
        font-size: 30px;
    }
}

.product-card-header__discount {
    font-size: 14px;
    color: var(--main-color3);
}

@media screen and (max-width: 1280px) {
    .product-card-header__discount {
        width: calc(50% - 10px);
        order: 3;
        text-align: right;
    }
}

.product-card-header__price {
    font-size: 36px;
    line-height: 110%;
    color: var(--main-color3);
}

@media screen and (max-width: 1280px) {
    .product-card-header__price {
        width: calc(50% - 10px);
        font-size: 20px;
        order: 2;
    }
}

.product-card-header__price span {
    text-decoration: line-through;
}

.product-card-header__price-primary {
    text-decoration: none !important;
    color: var(--text-color);
}

.product-card-photo-wrap {
    margin-bottom: 20px;
}

@media screen and (max-width: 820px) {
    .product-card-photo-slider {
        overflow: visible;
        width: calc(100% + 40px);
        margin-left: -20px;
    }
}

@media screen and (max-width: 660px) {
    .product-card-photo-slider {
        overflow: visible;
        width: calc(100% + 20px);
        margin-left: -10px;
        padding-left: 10px;
    }
}

.product-card-photo-slider .swiper-slide {
    width: 25%;
}

@media screen and (max-width: 1280px) {
    .product-card-photo-slider .swiper-slide {
        width: 33.333%;
    }
}

@media screen and (max-width: 820px) {
    .product-card-photo-slider .swiper-slide {
        width: 349px;
    }
}

@media screen and (max-width: 660px) {
    .product-card-photo-slider .swiper-slide {
        width: 349px;
    }
}

.product-card-photo-slider .swiper-slide--big {
    width: 50%;
}

@media screen and (max-width: 1280px) {
    .product-card-photo-slider .swiper-slide--big {
        width: 500px;
    }
}

@media screen and (max-width: 820px) {
    .product-card-photo-slider .swiper-slide--big {
        width: 66.666%;
    }
}

@media screen and (max-width: 660px) {
    .product-card-photo-slider .swiper-slide--big {
        width: 349px;
    }
}

.product-card-photo-slider__item {
    position: relative;
    display: block;
    cursor: pointer;
    height: 620px;
    cursor: url(../image/cursor-plus.svg) 36 36, auto;
}

@media screen and (max-width: 1440px) {
    .product-card-photo-slider__item {
        height: 470px;
    }
}

.product-card-photo-slider__item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.product-card-specs-wrap {
    display: grid;
    grid-template-columns: 2.05fr 1fr 1fr;
    gap: 10px;
    text-align: left;
}

@media screen and (max-width: 1280px) {
    .product-card-specs-wrap {
        gap: 20px;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 660px) {
    .product-card-specs-wrap {
        display: flex;
        flex-direction: column;
    }
}

.product-card-specs-title {
    margin-bottom: 14px;
    font-family: var(--font-bicubik);
    font-size: 16px;
    text-transform: uppercase;
}

@media screen and (max-width: 1280px) {
    .product-card-specs {
        padding-top: 20px;
        border-top: 1px solid var(--main-color);
        grid-column: span 2;
        order: 3;
    }
}

.product-card-specs__list {
    padding-top: 11px;
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 14px;
}

.product-card-specs__list li {
    position: relative;
    padding-left: 15px;
}

.product-card-specs__list li::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 6px;
    width: 3px;
    height: 3px;
    background: var(--background-color);
    border-radius: 100%;
}

@media screen and (max-width: 660px) {
    .product-card-color {
        padding-top: 20px;
        border-top: 1px solid var(--main-color);
    }
}

.product-card-color__list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.product-card-color__item {
    cursor: pointer;
    display: block;
    width: 36px;
    height: 36px;
}

.product-card-color__list .filter-color__item.active .product-card-color__item-box::before,
.product-card-color__item input:checked~.product-card-color__item-box::before {
    opacity: 1;
}

.product-card-color__item-text {
    font-size: 14px;
}

.filter-color__item input {
    display: none;
}

.product-card-color__item-box {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    border: 1px solid var(--main-color3);
    font-size: 0;
}

.product-card-color__item-box::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 8px;
    height: 8px;
    transform: translate(-50%, -50%);
    border: 1px solid #fff;
    border-radius: 100px;
    background: var(--background-color);
    z-index: 10;
    opacity: 0;
    transition: 0.3s;
}

.product-card-body {
    margin-bottom: 20px;
}

@media screen and (max-width: 820px) {
    .product-card-button {
        position: fixed;
        width: auto;
        left: 50%;
        bottom: 10px;
        transform: translateX(-50%);
        z-index: 1500;
    }

    .product-card-button .button {
        width: auto;
    }
}

.product-card-info {
    margin-top: 20px;
}

.product-card-info__item {
    padding: 14px 0;
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    text-align: left;
    border-top: 1px solid var(--main-color);
}

@media screen and (max-width: 960px) {
    .product-card-info__item {
        grid-template-columns: 100%;
        gap: 10px;
    }
}

.product-card-info__item:last-child {
    border-bottom: 1px solid var(--main-color);
}

.product-card-info__item.active .product-card-info__item-text {
    display: block;
}

.product-card-info__item.active .product-card-info__item-toggler {
    transform: rotate(-90deg);
}

.product-card-info__item-title {
    cursor: pointer;
    font-family: var(--font-bicubik);
    font-weight: 400;
    font-size: 16px;
    text-transform: uppercase;
}

.product-card-info__item-text {
    display: none;
    width: 600px;
    max-width: 100%;
    font-size: 14px;
    line-height: 120%;
}

.product-card-info__item-toggler {
    cursor: pointer;
    position: absolute;
    right: 2px;
    top: 12px;
    z-index: 10;
    transition: 0.3s;
}

.product-card-more-title {
    margin-bottom: 32px;
    font-family: var(--font-bicubik);
    font-weight: 400;
    font-size: 44px;
    text-transform: uppercase;
    text-align: left;
    letter-spacing: 1px;
}

@media screen and (max-width: 1280px) {
    .product-card-more-title {
        margin-bottom: 16px;
        font-size: 30px;
    }
}

.product-card-more .product-item__photo {
    display: block;
    height: 600px;
}

@media screen and (max-width: 1440px) {
    .product-card-more .product-item__photo {
        height: 453px;
    }
}

@media screen and (max-width: 820px) {
    .product-card-more-slider .swiper-slide {
        width: 453px;
    }
}

@media screen and (max-width: 660px) {
    .product-card-more-slider .swiper-slide {
        width: 350px;
    }
}

.popup-wrap {
    position: fixed;
    display: none;
    width: 100vw;
    height: 100dvh;
    left: 0;
    top: 0;
    z-index: -10;
    background: rgba(29, 29, 27, 0.33);
}

.popup-wrap.active {
    display: block;
    z-index: 2000;
}

.popup-close {
    padding: 8px;
    position: absolute;
    top: 40px;
    right: 40px;
    width: 30px;
    height: 30px;
    z-index: 50;
    border: 1px solid var(--main-color2);
    background: var(--background-color);
}

.popup-close svg {
    width: 100%;
    height: auto;
}

@media screen and (max-width: 960px) {
    .popup-close {
        top: 20px;
        right: 35px;
    }
}

.popup {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background: #000;
    /* Track */
    /* Handle */
}

.popup::-webkit-scrollbar {
    width: 4px;
    border-radius: 12px;
}

.popup::-webkit-scrollbar-track {
    box-shadow: inset 2px 4px 4px rgba(72, 67, 65, 0.5);
    background: rgba(255, 255, 255, 0.2);
    border-radius: 14px;
}

.popup::-webkit-scrollbar-thumb {
    background: var(--background-color2);
    border-radius: 14px;
}

.swiper-pagination {
    padding: 0 10px;
    display: none;
    gap: 4px;
    position: absolute;
    z-index: 100;
    left: 0;
    bottom: 20px;
    width: 100%;
}

.swiper-pagination-bullet {
    width: 100%;
    height: 3px;
    border-radius: 8px;
    background: #CFD0D0;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--background-color);
}

.slider-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 40px;
    width: 29px;
    height: 58px;
    background: var(--background-color);
    z-index: 100;
    transform: translateY(-50%);
    cursor: pointer;
}

.slider-arrow--next {
    left: auto;
    right: 40px;
}

@media screen and (max-width: 1440px) {
    #popup-product-photo .slider-arrow {
        display: none;
    }

    #popup-product-photo .swiper-pagination {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #popup-product-photo .swiper-pagination-bullet {
        width: 100px;
    }
}

@media screen and (max-width: 820px) {
    #popup-product-photo .swiper-pagination-bullet {
        width: 100%;
    }
}

.popup-product-card-slider {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.popup-product-card-slider .swiper-slide {
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 820px) {
    .popup-product-card-slider .swiper-slide {
        height: 100dvh;
    }
}

.popup-product-card-slider img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

@media screen and (max-width: 820px) {
    .popup-product-card-slider img {
        -o-object-fit: cover;
        object-fit: cover;
    }
}

.payment-wrap {
    margin: 20px auto;
    margin-bottom: 0;
    display: grid;
    grid-template-columns: 1fr 600px;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
}

@media screen and (max-width: 1440px) {
    .payment-wrap {
        grid-template-columns: 1fr 454px;
    }
}

@media screen and (max-width: 1280px) {
    .payment-wrap {
        grid-template-columns: 100%;
    }
}

@media screen and (max-width: 1280px) {
    .payment {
        order: 2;
    }
}

.payment-wrap:last-child {
    margin-top: 0;
    margin-bottom: 0;
}

#agreement_checkbox {
    margin-bottom: 40px;
    display: block;
}

.payment .checkbox {
    max-width: 920px;
}

@media screen and (max-width: 660px) {
    .payment .checkbox {
        margin-bottom: 20px;
    }
}

.payment-title {
    margin-bottom: 48px;
    font-family: var(--font-bicubik);
    font-size: 48px;
    text-transform: uppercase;
    text-align: left;
}

@media screen and (max-width: 1280px) {
    .payment-title {
        margin-top: 20px;
        margin-bottom: 20px;
        display: none;
        font-size: 30px;
    }

    .payment-title.mob {
        display: block !important;
    }
}

.payment-list-title {
    margin-bottom: 32px;
    font-family: var(--font-bicubik);
    font-size: 16px;
    text-transform: uppercase;
}

@media screen and (max-width: 660px) {
    .payment-list-title {
        margin-bottom: 20px;
    }
}

.payment-list {
    margin-bottom: 50px;
    display: grid;
    grid-template-rows: auto;
    grid-auto-flow: row;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
}

@media screen and (max-width: 660px) {
    .payment-list {
        margin-bottom: 20px;
        grid-template-columns: repeat(1, 1fr);
    }
}

.payment-basket {
    position: relative;
    padding: 20px;
    height: 100%;
    background: var(--background-color);
}

.payment-basket .payment-basket {
    padding: 0;
}

@media screen and (max-width: 1280px) {
    .payment-basket {
        order: 1;
        height: calc(100dvh - 60px);
    }

    .payment-basket.close {
        display: flex;
        justify-content: space-between;
        height: auto;
    }

    .payment-basket.close .payment-basket-toggler {
        transform: rotate(90deg);
    }

    .payment-basket.close .payment-basket-title {
        margin-bottom: 0;
        padding-bottom: 0;
        border: none;
        opacity: 0;
    }

    .payment-basket.close .basket {
        display: none;
    }

    .payment-basket.close .payment-basket-footer {
        margin-top: 0;
    }

    .payment-basket.close .payment-basket-footer__info {
        display: none;
    }

    .payment-basket.close .payment-basket-footer__info--type2 {
        margin: 0;
        padding: 0;
        padding-right: 40px;
        display: block;
        border: none;
    }
}

@media screen and (max-width: 820px) {
    .payment-basket {
        height: calc(100dvh - 57px);
    }
}

@media screen and (max-width: 660px) {
    .payment-basket {
        height: calc(100dvh - 54px);
    }
}

.payment-basket .basket {
    height: calc(100% - 40px);
}

.payment-basket .basket-item {
    padding-bottom: 10px;
}

.payment-basket .basket-item+.basket-item {
    margin-top: 10px;
}

.payment-basket .basket-item__photo {
    width: 120px;
    height: 160px;
}

@media screen and (max-width: 820px) {
    .payment-basket .basket-item__photo {
        width: 135px;
        height: 180px;
    }
}

.payment-basket .basket-item__info {
    width: calc(100% - 120px - 20px);
}

@media screen and (max-width: 820px) {
    .payment-basket .basket-item__info {
        width: calc(100% - 135px - 20px);
    }
}

.payment-basket-toggler {
    display: none;
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 100;
    transition: 0.3s;
    z-index: 1000;
}

@media screen and (max-width: 1280px) {
    .payment-basket-toggler {
        display: block;
    }
}

.payment-basket-title {
    margin-bottom: 12px;
    padding-bottom: 12px;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--main-color2);
}

.payment-basket-footer {
    padding: 20px;
    position: absolute;
    left: 0;
    bottom: 0;
    text-align: left;
    z-index: 100;
    width: 100%;
    background: rgba(17, 18, 20, 0.4);
    -webkit-backdrop-filter: blur(55px);
    backdrop-filter: blur(55px);
}

.payment-basket-footer__info {
    margin-bottom: 40px;
    padding-top: 10px;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--main-color3);
    border-top: 1px solid var(--main-color2);
}

.payment-basket-footer__info:last-child {
    margin-bottom: 0;
}

.payment-basket-footer__info--type2 {
    padding-top: 20px;
    color: var(--text-color2);
}

.payment-basket-footer__info p {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.payment-basket-footer__info p+p {
    margin-top: 16px;
}

.payment-basket-footer__info p:last-child {
    display: none;
}

.payment-basket-footer__info--type2 p:last-child {
    display: flex;
}

.payment-basket-footer__info p span:last-child {
    font-weight: 600;
}

.payment-basket-footer .button {
    text-align: center;
}

.input-wrap {
    position: relative;
    width: 100%;
}

.input-wrap--error .input__item {
    border-color: #FF0000;
}

.has-error .simplecheckout-error-text,
.input-wrap--error .input-info {
    margin-top: 3px;
    display: block;
    color: #FF0000;
    font-size: 8px;
}

.input {
    position: relative;
    width: 100%;
    height: 34px;
}

.input__title {
    position: absolute;
    left: 0;
    top: 10px;
    font-size: 14px;
    color: var(--main-color3);
    transition: 0.3s;
}

.input__item {
    padding: 0;
    width: 100%;
    height: 100%;
    font-size: 14px !important;
    border: none;
    border-bottom: 1px solid var(--main-color);
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-shadow: none;
    outline: none;
}

.input__item:not(:-moz-placeholder-shown)~.input__title {
    top: -10px;
    font-size: 12px;
}

.input__item:hover~.input__title,
.input__item:focus~.input__title,
.input__item:not(:placeholder-shown)~.input__title {
    top: -10px;
    font-size: 12px;
}

.input--textarea {
    height: 200px;
}

.input--textarea .input__item {
    padding: 10px;
    height: 100%;
    border: 1px solid var(--main-color);
    resize: none;
}

.input-info {
    margin-top: 2px;
    display: none;
    font-size: 8px;
}

.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    cursor: pointer;
}

.checkbox__box {
    position: relative;
    display: block;
    min-width: 16px;
    width: 16px;
    height: 16px;
    border: 1px solid var(--main-color);
}

.checkbox__box:before {
    content: "";
    position: absolute;
    left: 2px;
    top: 2px;
    width: 10px;
    height: 10px;
    opacity: 0;
    background: var(--background-color);
    transition: 0.3s;
}

.checkbox__title {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    display: block;
    font-size: 14px;
    line-height: 120%;
}

.checkbox__title a {
    margin-top: 4px;
    text-decoration: underline;
}

.checkbox__title a:hover {
    text-decoration: none;
}

.checkbox input:checked~.checkbox__box::before {
    opacity: 1;
}

.select__title {
    margin-top: -8px;
    margin-bottom: 6px;
    font-size: 12px !important;
    color: var(--main-color3);
}

.select__title>* {
    font-size: 12px !important;
}

@media screen and (max-width: 660px) {
    .select__title {
        margin-top: 0;
    }
}

.select .nice-select {
    padding: 0;
    width: 100%;
    line-height: 1;
    font-size: 14px;
    color: var(--text-color);
    border-radius: 0;
    border: none;
    border-bottom: 1px solid var(--main-color);
    height: auto;
    min-height: 26px;
    white-space: pre-wrap;
    padding-right: 20px;
    word-wrap: unset;
    padding-bottom: 6px;
}

.select .nice-select::after {
    right: 4px;
    top: 5px;
    width: 14px;
    height: 14px;
    border: none;
    transform: none;
    background: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 1.38599L13 12.9989L1.3871 12.9989' stroke='%23494D58'/%3E%3Cpath d='M12.8066 12.8057L1.00019 0.999268' stroke='%23494D58'/%3E%3C/svg%3E%0A") no-repeat center 0;
    transition: 0.3s;
}

.select .nice-select.open::after {
    transform: rotate(-90deg);
}

.select .nice-select .list {
    width: 100%;
    max-height: 310px;
    top: calc(100% + 10px);
    border: none;
    border-radius: 0;
    background: #ECECEC;
    box-shadow: none;
    overflow-y: auto;
}

.select .nice-select .option {
    padding: 10px 16px;
    min-height: auto;
    color: var(--main-color3);
    line-height: 1;
    background: none;
}

.select .nice-select .option:hover,
.select .nice-select .option.focus,
.select .nice-select .option.selected.focus {
    color: var(--main-color);
    background: none;
}

.payment-method {
    margin-top: 80px;
    margin-bottom: 40px;
    padding: 20px;
    background: #CFD0D0;
}

@media screen and (max-width: 660px) {
    .payment-method {
        margin-top: 20px;
        margin-bottom: 20px;
    }
}

.payment-method .button {
    padding: 0;
    cursor: pointer !important;
}

.payment-method .button>label {
    padding: 22px;
    cursor: pointer !important;
    width: 100%;
    text-align: center;
}

.payment-method .button:hover {
    color: var(--background-color2);
    border: 1px solid transparent;
    background: var(--text-color);
    text-decoration: underline;
}

.payment-method .button--type4:hover {
    color: var(--text-color);
    border: 1px solid transparent;
    background: var(--background-color2);
    text-decoration: underline;
}

.payment-method .button img {
    display: none;
}

.payment-method .button input {
    display: none;
}

.payment-method__title {
    margin-bottom: 24px;
    font-family: var(--font-bicubik);
    font-size: 16px;
    text-transform: uppercase;
}

.payment-method__text {
    margin-bottom: 20px;
}

.payment-method__text p {
    margin-bottom: 10px;
    font-size: 14px;
    text-transform: uppercase;
}

.payment-method__text span {
    font-size: 12px;
}

.payment-method__list {
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media screen and (max-width: 660px) {
    .payment-method__list {
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }
}

.payment-comment {
    margin-bottom: 40px;
}

@media screen and (max-width: 660px) {
    .payment-comment {
        margin-bottom: 20px;
    }
}

.payment-comment__title {
    margin-bottom: 20px;
    font-family: var(--font-bicubik);
    font-size: 14px;
}

.search-title {
    font-family: var(--font-bicubik);
    font-size: 48px;
    text-transform: uppercase;
}

@media screen and (max-width: 1280px) {
    .search-title {
        font-size: 30px;
    }
}

.search-title span {
    color: var(--main-color3);
}

@media screen and (max-width: 820px) {
    .search-slider .swiper-slide {
        width: 335px;
    }
}

.search-slider .product-item__photo {
    display: block;
    height: 600px;
}

@media screen and (max-width: 1440px) {
    .search-slider .product-item__photo {
        height: 453px;
    }
}

.user-information {
    margin-top: 20px;
}

.user-information__item {
    padding: 14px 0;
    padding-bottom: 18px;
    position: relative;
    text-align: left;
    border-top: 1px solid var(--main-color);
}

.user-information__item:first-child {
    border-top: none;
}

.user-information__item:last-child {
    border-bottom: 1px solid var(--main-color);
}

.user-information__item.active .user-information__item-title {
    padding-bottom: 12px;
    border-color: var(--main-color);
}

.user-information__item.active .user-information__item-text {
    display: block;
}

.user-information__item.active .user-information__item-toggler {
    transform: rotate(-90deg);
}

.user-information__item-title {
    cursor: pointer;
    font-family: var(--font-bicubik);
    font-weight: 400;
    font-size: 16px;
    text-transform: uppercase;
    border-bottom: 1px solid transparent;
    transition: 0.3s;
}

.user-information__item-text {
    padding-top: 12px;
    display: none;
    width: 600px;
    max-width: 100%;
    font-size: 14px;
    line-height: 120%;
}

.user-information__item-text p+p {
    margin-top: 12px;
}

.user-information__item-toggler {
    cursor: pointer;
    position: absolute;
    right: 2px;
    top: 12px;
    z-index: 10;
    transition: 0.3s;
}

.user-information-title {
    margin: 20px auto;
    font-family: var(--font-bicubik);
    font-size: 48px;
    text-transform: uppercase;
}

@media screen and (max-width: 1280px) {
    .user-information-title {
        font-size: 30px;
        text-align: left;
    }
}

.user-information-buttons {
    padding-bottom: 10px;
    margin-bottom: 30px;
    overflow-x: auto;
    display: flex;
    justify-content: center;
    gap: 10px;
    white-space: nowrap;
}

@media screen and (max-width: 1560px) {
    .user-information-buttons {
        justify-content: flex-start;
    }
}

@media screen and (max-width: 1440px) {
    .user-information-buttons {
        padding-right: 20px;
        padding-left: 20px;
        margin-left: -20px;
        margin-right: -20px;
        width: calc(100% + 40px);
    }
}

@media screen and (max-width: 660px) {
    .user-information-buttons {
        padding-right: 10px;
        padding-left: 10px;
        margin-left: -10px;
        margin-right: -10px;
        width: calc(100% + 20px);
    }
}

.user-information-buttons .button {
    padding: 18px;
}

/*--- 404 ---*/
.not_found {
    background: var(--background-color) url("/catalog/view/theme/six_zeros/image/not_found-bg.jpg") center center no-repeat;
    background-size: cover;
    color: var(--main-color);
    display: grid;
    align-items: center;
    justify-content: center;
    min-height: calc(100dvh - 61px);
}

.title404 {
    font-size: 12vw;
    mix-blend-mode: difference;
    color: var(--main-color2);
    font-family: var(--font-bicubik);
}

.title404 span {
    color: var(--main-color3);
}

@media screen and (max-width: 660px) {
    .title404 span {
        display: none;
    }

    .title404 {
        font-size: 28vw;
    }
}

/*--- /404 ---*/
.order-complete-section {
    padding: 280px 0;
}

@media screen and (max-width: 1440px) {
    .order-complete-section {
        padding: 160px 0;
    }
}

.order-complete__icon {
    margin-bottom: 50px;
}

.order-complete__title {
    margin-bottom: 40px;
    font-family: var(--font-bicubik);
    font-size: 48px;
    line-height: 120%;
    text-transform: uppercase;
}

@media screen and (max-width: 1280px) {
    .order-complete__title {
        margin-bottom: 30px;
        font-size: 30px;
    }
}

.order-complete__text {
    margin: 0 auto;
    margin-bottom: 50px;
    width: 600px;
    max-width: 100%;
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
}

@media screen and (max-width: 1280px) {
    .order-complete__text {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 660px) {
    .order-complete__text {
        padding: 0 30px;
    }
}

.order-complete .button {
    display: inline-flex;
}

#agreement_warning {
    margin-top: 10px;
    display: block;
    color: #FF0000;
    font-size: 12px;
}

.simplecheckout-block {
    width: 100%;
}

.simplecheckout-block .basket-item {
    align-items: flex-start;
}

.popup-product-card-slider .swiper-slide img {
    cursor: url(../image/cursor-minus.svg) 36 36, auto;
}

.text-danger {
    margin-top: 10px;
    font-size: 12px;
    color: red;
}

.search-plug {
    padding: 300px 0;
}

@media screen and (max-width: 1280px) {
    .search-plug {
        padding: 160px 0;
    }
}

.search-plug__title {
    margin-bottom: 40px;
    font-family: var(--font-bicubik);
    font-size: 48px;
}

@media screen and (max-width: 1440px) {
    .search-plug__title {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 820px) {
    .search-plug__title {
        font-size: 30px;
    }
}

.search-plug__text {
    font-size: 14px;
}

.simplecheckout-right-column {
    top: 80px;
    position: sticky;
    height: calc(100dvh - 80px - 20px);
}

@media screen and (max-width: 1280px) {
    .simplecheckout-right-column {
        left: 0;
        top: 60px;
        position: fixed;
        height: auto;
        width: 100%;
    }
}

@media screen and (max-width: 820px) {
    .simplecheckout-right-column {
        top: 57px;
    }
}

@media screen and (max-width: 660px) {
    .simplecheckout-right-column {
        top: 54px;
    }
}

.simplecheckout-right-column .simplecheckout-block {
    height: 100%;
}

.payment-section {
    position: relative;
    z-index: 500;
}

@media screen and (max-width: 1280px) {
    .payment-section {
        padding-top: 82px;
    }
}

@keyframes open-animation {
    0% {
        transform: translateY(102%);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes open-animation-revers {
    0% {
        transform: translateY(-102%);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes open-animation-opacity {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes border-animation {
    0% {
        border-color: transparent;
    }

    100% {
        border-color: var(--background-color);
    }
}

.header-search-drop-inside {
    margin-top: -4px;
    padding-top: 4px;
    overflow: hidden;
}

@media screen and (max-width: 820px) {
    .header-search-drop-inside {
        padding-top: 8px;
    }
}

.header-search-drop-inside>* {
    transform: translateY(102%);
}

@media screen and (max-width: 820px) {
    .header-search-drop-inside>* {
        transform: translateY(300%);
    }
}

.header-search-drop.active .header-search-drop-inside {
    overflow: hidden;
}

.header-search-drop.active .header-search-drop-inside>* {
    animation: open-animation 0.8s 0.4s ease forwards;
}

.header-catalog-wrap .header-catalog-product {
    overflow: hidden;
}

.header-catalog-wrap .header-catalog-product__photo {
    overflow: hidden;
}

.header-catalog-wrap .header-catalog-product__photo img {
    opacity: 0;
}

.header-catalog-wrap .header-catalog-nav__card {
    overflow: hidden;
}

.header-catalog-wrap .header-catalog-nav__card img {
    opacity: 0;
}

.header-catalog-wrap .header-catalog-nav__list li {
    padding-top: 2px;
    overflow: hidden;
}

.header-catalog-wrap .header-catalog-nav__list li>*,
.header-catalog-wrap .header-catalog-product__description li>*,
.header-catalog-wrap .header-catalog-product__new>*,
.header-catalog-wrap .header-catalog-product__title>* {
    transform: translateY(-102%);
}

.header-catalog-wrap .header-catalog-nav__title,
.header-catalog-wrap .header-catalog-product__description>*,
.header-catalog-wrap .header-catalog-product__new,
.header-catalog-wrap .header-catalog-product__title {
    overflow: hidden;
}

.header-catalog-wrap .header-catalog-nav__title>* {
    transform: translateY(-102%);
}

.header-catalog-wrap.active .header-catalog-product__photo img {
    animation: open-animation-opacity 1.8s 0.4s ease forwards;
}

.header-catalog-wrap.active .header-catalog-nav__card {
    overflow: hidden;
}

.header-catalog-wrap.active .header-catalog-nav__card img {
    animation: open-animation-opacity 1.8s 0.4s ease forwards;
}

.header-catalog-wrap.active .header-catalog-nav__list li>*,
.header-catalog-wrap.active .header-catalog-nav__title>*,
.header-catalog-wrap.active .header-catalog-product__description li>*,
.header-catalog-wrap.active .header-catalog-product__new>*,
.header-catalog-wrap.active .header-catalog-product__title>* {
    animation: open-animation 0.8s 0.8s ease forwards;
}

.filter-drop .filter-drop-header {
    overflow: hidden;
    opacity: 0;
    transition: 1s;
}

.filter-drop .filter-drop-header>* {
    transform: translateY(202%);
}

.filter-drop .filter-button {
    overflow: hidden;
}

.filter-drop .filter-button>*,
.filter-drop .ocf-value-list .ocf-value-list-body .filter-categories__item>* {
    transform: translateY(202%);
}

.filter-drop .ocf-filter-header,
.filter-drop .ocf-value-list>*,
.filter-drop .ocf-value-list .ocf-value-list-body,
.filter-drop .ocf-value-list .ocf-value-list-body>*,
.filter-drop .filter-title,
.filter-drop .filter-sorting,
.filter-drop .filter-sorting__item {
    overflow: hidden;
}

.filter-drop .ocf-filter-header>*,
.filter-drop .filter-title>*,
.filter-drop .ocf-value-list .ocf-value-list-body>*,
.filter-drop .filter-sorting>*,
.filter-drop .filter-sorting__item>* {
    transform: translateY(102%);
}

.filter-drop .filter-size-wrap,
.filter-drop .filter-sorting-wrap,
.filter-drop .filter-category-wrap {
    border-color: transparent;
}

.filter-drop.active .filter-drop-header {
    opacity: 1;
}

.filter-drop.active .filter-drop-header>* {
    animation: open-animation 0.8s 0.4s ease forwards;
}

.filter-drop.active .filter-button>* {
    animation: open-animation 0.8s 0.4s ease forwards;
}

.filter-drop.active .ocf-filter-header>*,
.filter-drop.active .ocf-value-list .ocf-value-list-body .filter-categories__item>*,
.filter-drop.active .ocf-value-list .ocf-value-list-body>*,
.filter-drop.active .filter-title>*,
.filter-drop.active .filter-sorting>*,
.filter-drop.active .filter-sorting__item>* {
    animation: open-animation 1.3s 0.4s ease forwards;
}

.filter-drop.active .filter-size-wrap,
.filter-drop.active .filter-sorting-wrap,
.filter-drop.active .filter-category-wrap {
    animation: border-animation 1.3s 0.4s ease forwards;
}

.close-all {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100dvh;
    z-index: -50;
    visibility: hidden;
    opacity: 0;
    background: rgba(0, 0, 0, 0.2);
}

.close-all.active {
    visibility: visible;
    z-index: 1000;
    opacity: 1;
}

#cookie {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    border: 1px solid var(--main-color);
    padding: 20px 14px;
    background: var(--main-color2);
    font-size: 14px;
    line-height: 120%;
    z-index: 999;
}

#cookie.hide {
    display: none;
}

#cookie.display_flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#cookie a {
    text-decoration: underline;
}

#cookie a:hover {
    text-decoration: none;
}

.sold_out {
    text-decoration: none !important;
}