@charset "UTF-8";

.container-bg {
    padding: 30px 16px;
    background-color: #fff;
    border-radius: 16px
}

.container-bg_pt-sm {
    padding: 20px 16px 30px
}

.header {
    display: flex;
    flex-flow: column nowrap;
    gap: 10px;
    width: 100%;
    padding: 10px 16px;
    background-color: #fff;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 2px 8px #0000000f
}

.header__top {
    display: flex;
    flex-flow: row nowrap;
    gap: 20px;
    align-items: center
}

.header__options {
    margin-left: auto
}

.options {
    display: flex;
    flex-flow: row nowrap;
    gap: 8px
}

.options__link {
    display: grid;
    width: 36px;
    height: 36px;
    color: #454856;
    background-color: #f4f5f6;
    border-radius: 12px;
    transition: .15s ease-out;
    place-items: center
}

.options__link:active {
    background-color: color-mix(in srgb, #ec670b 90%, #fff)
}

.options__link:focus {
    box-shadow: 0 2px 8px #0000000f
}

.burger {
    display: flex;
    flex: 0 0 36px;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: space-around;
    width: 36px;
    height: 32px;
    padding: 4px 0
}

.burger__line,
.burger:after,
.burger:before {
    display: block;
    width: 86%;
    height: 3px;
    background-color: #454856;
    border-radius: 2px;
    transition: .15s ease-out
}

.burger:after,
.burger:before {
    transition: .15s ease-out;
    content: ""
}

.search {
    width: 100%;
    background-color: #f4f5f6;
    border-radius: 12px
}

.search_white {
    background-color: #fff
}

.search__container {
    display: flex;
    align-items: center;
    width: 100%
}

.search__input {
    flex: 1;
    max-height: 40px;
    padding: 9px 8px 8px;
    font-size: 16px;
    border: 3px solid transparent;
    border-right: none;
    border-radius: 12px 0 0 12px;
    transition: .15s ease-out
}

.search__input:focus {
    background-color: #fff;
    border-color: #ec670b
}

.search__input:focus~.search__btn {
    background-color: #fff;
    border-color: #ec670b;
    outline: none
}

.search__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #807f7d;
    border: 3px solid transparent;
    border-left: none;
    border-radius: 0 12px 12px 0;
    transition: .15s ease-out
}

.search__btn>svg {
    stroke: color-mix(in srgb, #161d28 45%, transparent);
    transition: .15s ease-out
}

.search__hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0
}

.logo {
    display: block;
    height: 32px;
    max-height: 32px
}

.logo>img {
    display: block;
    width: auto;
    height: 32px;
    max-height: 32px;
    -o-object-fit: contain;
    object-fit: contain
}

.footer {
    width: 100%;
    padding-bottom: 108px
}

.footer_sm {
    padding-bottom: 48px
}

.footer__info {
    padding: 20px 16px 36px;
    font-size: 14px;
    font-weight: 400;
    background-color: #f4f5f6
}

.footer__img {
    width: 100%;
    max-width: 260px;
    -o-object-fit: contain;
    object-fit: contain
}

.button {
    --bg-color: #ec670b;
    display: flex;
    flex-flow: column nowrap;
    gap: 4px;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    padding: 8px 16px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    color: #fff;
    background-color: var(--bg-color);
    border-radius: 16px;
    transition: .15s ease-out
}

.button_sm {
    min-height: auto;
    padding: 12px 16px 10px;
    font-size: 14px;
    border-radius: 12px
}

.button:active {
    background-color: color-mix(in srgb, var(--bg-color) 80%, currentcolor)
}

.button:focus {
    box-shadow: 0 2px 8px #0000000f
}

.button_green {
    --bg-color: #14c14c
}

.button_blue {
    --bg-color: #1ec0fc
}

.button_grey {
    --bg-color: #f4f5f6;
    color: #454856
}

.button_icon-green {
    --bg-color: #14c14c;
    color: #fff
}

.button_icon-grey {
    --bg-color: #f4f5f6;
    color: #807f7d
}

.button_icon {
    --bg-color: #f4f5f6;
    flex-flow: row nowrap;
    gap: 8px;
    color: #454856
}

.button_icon>svg {
    transition: .15s ease-out
}

.button_icon.open>svg {
    transform: rotate(180deg)
}

.button_icon-white {
    --bg-color: #fff
}

.button__text {
    font-size: 12px;
    font-weight: 400;
    line-height: 1
}

.button_border {
    color: #ec670b;
    background-color: transparent;
    border: 1px solid #ec670b
}

.navigation-fixed {
    width: 100%;
    padding: 16px;
    background-color: #fff;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 -2px 10px #00000014
}

.navigation-fixed__list {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
    padding: 0
}

.navigation-fixed__item {
    color: #807f7d
}

.navigation-fixed__item-cart {
    position: relative
}

.navigation-fixed__item-cart:after {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    padding: 2px 4px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    color: #ec670b;
    background-color: color-mix(in srgb, #ec670b 20%, #fff);
    border-radius: 6px;
    transform: translate(12px, -30%);
    content: attr(data-count)
}

.navigation-fixed__item,
.navigation-fixed__link {
    display: block;
    width: 28px;
    height: 28px
}

.navigation-fixed__item:active,
.navigation-fixed__item:focus {
    color: #ec670b
}

.navigation-fixed__link {
    color: currentcolor
}

.navigation-fixed__link>svg {
    transition: .15s ease-out
}

.breadcrumbs {
    display: flex;
    flex-flow: row nowrap;
    margin: 8px 0;
    padding: 8px 0;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: #888 #f1f1f1;
    white-space: nowrap;
    scrollbar-gutter: stable
}

.breadcrumbs::-webkit-scrollbar {
    width: 8px;
    height: 8px
}

.breadcrumbs::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 4px
}

.breadcrumbs::-webkit-scrollbar-thumb,
.breadcrumbs::-webkit-scrollbar-track {
    visibility: visible
}

.breadcrumbs__link,
.breadcrumbs__item {
    font-size: 12px;
    font-weight: 400;
    text-decoration: none;
    color: #807f7d
}

.breadcrumbs__link {
    flex: 1;
    transition: .15s ease-out
}

.breadcrumbs__link:hover {
    text-decoration: none;
    color: var(--mm-brand, #ec670b)
}

.breadcrumbs__item {
    display: flex;
    align-items: center;
    line-height: 1;
    text-wrap: nowrap
}

.breadcrumbs__item:not(:last-child):after {
    display: block;
    margin: 0 6px;
    font-weight: 400;
    color: #807f7d;
    content: "/"
}

.tag {
    display: block;
    width: 100%;
    max-width: -moz-max-content;
    max-width: max-content;
    height: 100%;
    min-height: 36px;
    padding: 9px 16px 7px;
    font-size: 14px;
    font-weight: 500;
    color: #454856;
    background-color: #f4f5f6;
    border-radius: 12px
}

.tag_sm {
    height: 20px;
    min-height: auto;
    padding: 3px 10px 2px;
    font-size: 12px;
    font-weight: 400;
    line-height: 15px
}

.tag_bg {
    background-color: #fff
}

.tag[href] {
    color: #807f7d;
    transition: .15s ease-out
}

.tag[href]:active {
    background-color: color-mix(in srgb, #f4f5f6 70%, #ec670b)
}

.tag[href]:focus {
    box-shadow: 0 2px 8px #0000000f
}

.tag_hot {
    color: #fff;
    background-color: #ec670b
}

.tag_sale {
    color: color-mix(in srgb, #ec670b 90%, #fff);
    background-color: color-mix(in srgb, #ec670b 10%, #fff)
}

.tag.tag_date {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    width: auto;
    max-width: max-content;
    height: auto;
    min-height: 0;
    padding: 6px 12px 5px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.2;
    color: #807f7d;
    white-space: nowrap;
    background-color: #f4f5f6;
    border-radius: 999px;
}

.tag_icon {
    display: grid;
    width: 36px;
    max-width: none;
    height: 36px;
    padding: 0;
    color: #807f7d;
    place-items: center;
    transition: .15s ease-out
}

.tag_icon:active {
    color: #161d28
}

.tag_icon:focus {
    box-shadow: 0 2px 8px #0000000f
}

.tag_border {
    max-width: none;
    padding: 8px 16px 6px;
    text-align: center;
    background-color: transparent;
    border: 1px solid #f4f5f6
}

.tag_green {
    color: #14c14c;
    background: color-mix(in srgb, #14c14c 10%, #fff)
}

.tag_purple {
    color: #8400fc;
    background: color-mix(in srgb, #8400fc 10%, #fff)
}

.preorder {
  width: 69px;
  height: 35px;
  position: relative;
  background: url(/design/2025-metalmaster-mob/img/pre_order_shild.png) no-repeat center / contain;
  top: -7px;
  left: 0;
  display: block;
  padding: 0;
  border-radius: 0;
  min-width: 0;
  min-height: 0;
}


.tag_red {
    color: #f31919;
    background: color-mix(in srgb, #f31919 10%, #fff)
}

.tag_yellow {
    color: #ecb00b;
    background: color-mix(in srgb, #ecb00b 10%, #fff)
}

.tag_flex {
    display: flex;
    flex-flow: row nowrap;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    padding: 0
}

.tag_flex__btn {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    color: #807f7d;
    transition: .15s ease-out
}

.tag_flex__btn:active,
.tag_flex__btn:focus {
    color: #161d28
}

.tag_option {
    display: grid;
    grid-template-columns: 16px 1fr;
    gap: 6px;
    align-items: center;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    color: #454856;
    background-color: #fff
}

.tag_option__text {
    max-width: 119px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden
}

.title {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 500;
    font-style: normal;
    line-height: 1.3;
    color: #161d28
}

.title_margin-sm {
    margin-bottom: 4px
}

.title_margin-md {
    margin-bottom: 10px
}

.title_margin-lg {
    margin-bottom: 16px
}

.title_line-h-sm {
    line-height: 1
}

.card-product-detail {
    display: flex;
    flex-flow: column nowrap
}

.card-product-detail__header {
    display: flex;
    flex-flow: row nowrap;
    gap: 4px;
    align-items: center;
    margin-bottom: 10px
}

.card-product-detail__options {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-left: auto
}

.card-product-detail__options-icon {
    display: block;
    width: 32px;
    height: 32px;
    color: #454856
}

.card-product-detail__options-icon:active,
.card-product-detail__options-icon:focus {
    color: #ec670b
}

.card-product-detail__options-icon>svg {
    transition: .15s ease-out
}

.card-product-detail__body {
    margin: 0 -16px 10px;
    padding: 0 16px 10px;
    border-bottom: 1px solid #f4f5f6
}

.card-product-detail__slider {
    margin-bottom: 4px
}

.card-product-detail__slider .slider__image {
    border-radius: 16px
}

.card-product-detail__slider-tag[type=button] {
    position: absolute;
    bottom: 20px;
    left: 10px;
    display: flex;
    gap: 8px;
    align-items: center;
    height: 36px;
    padding: 9px 16px 7px;
    line-height: 21px;
    color: #454856;
    background-color: color-mix(in srgb, #fff 60%, transparent)
}

.card-product-detail__tag {
    margin-bottom: 10px;
    color: #ec670b
}

.card-product-detail__tag>del {
    padding-right: 4px;
    color: #807f7d
}

.card-product-detail__price {
    margin-bottom: 4px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    color: #161d28
}

.card-product-detail__note {
    font-size: 12px;
    font-weight: 500;
    color: #807f7d
}

.card-product-detail__footer {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.slider {
    position: relative;
    height: 100%
}

.slider__container {
    display: flex;
    gap: 10px;
    width: 100%;
    height: 100%;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: #888 #f1f1f1;
    scroll-snap-type: x mandatory;
    padding: 0 0 10px;
    scrollbar-gutter: stable
}

.slider__container::-webkit-scrollbar {
    width: 8px;
    height: 8px
}

.slider__container::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 4px
}

.slider__container::-webkit-scrollbar-thumb,
.slider__container::-webkit-scrollbar-track {
    visibility: visible
}

.slider__slide {
    flex: 0 0 calc(100vw - 32px);
    height: 100%;
    scroll-snap-align: center
}

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

.social {
    display: flex;
    gap: 16px
}

.social__link {
    display: block;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    transition: .15s ease-out;
    overflow: hidden
}

.social__link:active,
.social__link:focus {
    opacity: .8
}

.accordion {
    width: 100%;
    overflow-anchor: none
}

.accordion__content {
    position: relative;
    height: 100%;
    max-height: 193px;
    overflow-y: hidden;
    overflow-anchor: none;
    transition: none
}

.accordion__content:before {
    position: absolute;
    z-index: 1;
    display: block;
    background: linear-gradient(#fff0, #fff 96%);
    opacity: 1;
    visibility: visible;
    content: "";
    top: 50%;
    right: 0;
    bottom: -1%;
    left: 0
}

.accordion__content.open {
    transition: .3s ease-out
}

.accordion__content.open:before {
    position: absolute;
    display: block;
    opacity: 0;
    visibility: hidden;
    top: 50%;
    right: 0;
    bottom: 0;
    left: 0;
    transition: opacity .15s linear, visibility 1ms linear .15s
}

.flex {
    position: relative;
    display: flex;
    flex-flow: row wrap;
    gap: var(--gap, 8px)
}

.flex_btns-duo {
    display: flex;
    gap: 10px
}

.flex_btns-duo:first-child {
    flex: 1
}

.flex_btns-duo:last-child {
    flex: 0 0 48px
}

.form-element {
    margin-bottom: 16px
}

.form-element:has(label:not([class=form-element__hidden])) {
    margin-top: -2px
}

.form-element:last-child {
    margin-bottom: 20px
}

.form-element__label {
    font-size: 14px;
    font-weight: 450;
    line-height: 1
}

.form-element__label~input {
    margin-top: 8px
}

.form-element__field {
    width: 100%;
    padding: 9px 8px 8px;
    font-size: 16px;
    line-height: 17px;
    color: #161d28;
    background-color: #f4f5f6;
    border: 3px solid transparent;
    border-radius: 12px;
    outline: none;
    transition: .15s ease-out
}

.form-element__field::-moz-placeholder {
    color: #807f7d;
    opacity: 1
}

.form-element__field::placeholder {
    color: #807f7d;
    opacity: 1
}

.form-element__field:focus {
    border-color: #ec670b
}

.form-element__hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    white-space: nowrap;
    border: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0)
}

.form-element__checkbox {
    position: relative;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    margin-right: 8px;
    background-color: #f4f5f6;
    border-radius: 8px;
    cursor: pointer;
    accent-color: #fff;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.form-element__checkbox:checked {
    background-color: #ec670b
}

.form-element__checkbox:checked:after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
    content: url(/design/2025-metalmaster-mob/img/icons/check.svg)
}

.form-element__checkbox+label {
    display: flex;
    align-items: center;
    padding-top: 2px;
    font-size: 13px;
    font-weight: 350;
    line-height: 120%;
    color: #161d28;
    cursor: pointer
}

.form-element__checkbox+label p {
    margin-bottom: 0
}

.form-element_flex-row {
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start
}

.form-element_flex-row:has(label:not([class=form-element__hidden])) {
    margin-top: 0
}

.form-element__note {
    font-size: 12px;
    font-weight: 400
}

/* Эталонный блок РИМ + ПДн для мобильных форм */
.form-consent-rim {
    margin-top: 14px;
}
p.form-consent-pd {
    margin: 10px 0 0 32px;
    font-size: 13px;
    line-height: 120%;
    font-weight: 350;
    color: #161d28;
}
.form-consent-pd a {
    margin: 0 !important;
    color: #FF8915 !important;
    text-decoration: underline !important;
    font-size: 13px !important;
    font-weight: 350 !important;
}

.card-reviews {
    width: 100%;
    padding: 16px;
    background-color: #fff;
    border-radius: 16px
}

.card-reviews__name {
    margin-top: 16px;
    margin-bottom: 4px;
    font-size: 16px;
    font-weight: 500;
    color: #161d28
}

.card-reviews__text {
    font-size: 15px;
    font-weight: 350
}

.card-reviews__text>p {
    margin-bottom: 4px
}

.card-reviews__text>p:last-child {
    margin-bottom: 0
}

.card-reviews__answer {
    margin-top: 16px;
    padding: 16px;
    background-color: #f4f5f6;
    border-radius: 16px
}

.card-reviews__answer-person {
    margin-bottom: 16px
}

.card-reviews__answer-img {
    float: left;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
    overflow: hidden
}

.card-reviews__answer-name {
    margin-bottom: 4px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    color: #161d28
}

.card-reviews__answer-post {
    font-size: 12px;
    font-weight: 300;
    line-height: 1.1;
    color: #807f7d
}

.card-reviews__answer-text {
    font-size: 15px;
    font-weight: 350
}

.card-reviews__answer-text>p {
    margin-bottom: 4px
}

.card-reviews__answer-text>p:last-child {
    margin-bottom: 0
}

.reviews {
    display: flex;
    flex-flow: column nowrap;
    gap: 10px
}

.advice {
    display: grid;
    grid-template-columns: repeat(2, calc(50vw - 2px));
    gap: 4px
}

.card-product {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    padding: 0 10px 10px;
    background-color: #fff;
    border-radius: 12px
}

.card-product__link {
    position: relative;
    display: block;
    margin: 0 -10px auto;
    color: #161d28
}

.card-product__link:active {
    color: #807f7d
}

.card-product__link:focus {
    color: #454856
}

.card-product__slider {
    height: var(--slider-height, 130px);
    margin-right: -10px;
    margin-bottom: 8px;
    margin-left: -10px;
    border-radius: 12px 12px 0 0;
    overflow: hidden
}

.card-product__slider .slider__slide {
    flex: 0 0 var(--slider-width, calc(50vw - 2px))
}

.card-product__tags-container {
    position: absolute;
    top: 10px;
    right: 0;
    left: 10px;
    display: flex;
    flex-flow: row wrap;
    gap: 4px
}

.card-product__tag-option {
    position: absolute;
    bottom: 10px;
    left: 10px
}

.card-product__trade {
    margin-bottom: 8px;
    padding: 0 10px
}

.card-product__price {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    line-height: 1
}

.card-product__price>del {
    margin-left: 4px;
    font-size: 12px;
    color: #807f7d
}

.card-product__sale {
    margin-top: 4px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    color: #ec670b
}

.card-product__blank {
    font-size: 12px;
    font-weight: 700;
    color: #807f7d
}

.card-product__title {
    display: -webkit-box;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 450;
    line-height: 130%;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.card-product__info {
    margin-bottom: 16px;
    padding: 0 10px
}

.card-product__info-text {
    margin-bottom: 4px;
    font-size: 14px;
    font-weight: 400;
    line-height: 130%;
    color: #807f7d
}

.card-product__info-text:last-child {
    margin-bottom: 0
}

.card-product__info-text>span {
    font-weight: 500;
    color: #161d28
}

.card-product__btns-container {
    display: grid;
    grid-template-columns: unset;
    gap: 10px
}

.cards-list#table .card-product__btns-container {
    grid-template-columns: 1fr 40px;
}

.modal {
    position: fixed;
    z-index: 200;
    width: 100vw;
    height: 100vh;
    padding: 84px 0 100px;
    background-color: #f4f5f6;
    box-sizing: border-box;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow-y: scroll;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease
}

.modal__content {
    position: relative;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s ease .1s, transform .4s ease .1s, visibility .4s .1s;
    transform: translateY(-20px)
}

.modal__btn {
    position: fixed;
    top: 20px;
    right: 16px;
    display: grid;
    width: 48px;
    height: 48px;
    color: #807f7d;
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 8px #0000000f;
    place-items: center;
    transition: .15s ease-out
}

.modal__btn:active {
    background-color: color-mix(in srgb, #fff, #ec670b 10%)
}

.modal__btn:focus {
    opacity: .8
}

.modal__btn>svg {
    transform: rotate(45deg)
}

.modal.active {
    opacity: 1;
    visibility: visible
}

.modal.active .modal__content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.card-product-cart__preview {
    display: flex;
    flex-flow: row nowrap;
    gap: 16px;
    margin-bottom: 16px
}

.card-product-cart__img {
    flex: 0 0 120px;
    width: 120px;
    height: 84px;
    border: 1px solid #f4f5f6;
    border-radius: 12px;
    -o-object-fit: cover;
    object-fit: cover
}

.card-product-cart__info {
    flex: 1
}

.card-product-cart__price {
    display: flex;
    align-items: center;
    margin-bottom: 4px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1
}

.card-product-cart__price>del {
    margin-left: 4px;
    font-size: 12px;
    color: #807f7d
}

.card-product-cart__name {
    font-size: 16px;
    font-weight: 450;
    line-height: 130%
}

.card-product-cart__options {
    display: flex;
    flex-flow: row nowrap;
    gap: 10px
}

.card-product-cart__amount {
    flex: 1
}

.grid {
    display: grid
}

.grid_btns-duo {
    grid-template-columns: 1fr 48px;
    gap: 10px
}

.card-catalog {
    display: flex;
    flex-flow: column nowrap;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    width: 140px;
    min-height: 150px;
    padding: 10px;
    background-color: #fff;
    border-radius: 12px;
    scroll-snap-align: center
}

.card-catalog:active {
    background: color-mix(in srgb, #ec670b, #fff 90%)
}

.card-catalog:focus {
    background: color-mix(in srgb, #ec670b, #fff 80%)
}

.card-catalog__title {
    width: 100%;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 120%;
    color: #161d28;
    overflow: hidden;
}

.card-catalog__img {
    max-width: 100%;
    max-height: 70px;
    -o-object-fit: contain;
    object-fit: contain
}

.catalog {
    display: flex;
    gap: 10px;
    width: 100%;
    padding: 0 0 10px;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: #888 #f1f1f1;
    scroll-snap-type: x mandatory;
    scrollbar-gutter: stable
}

.dropdown.active {
    z-index: 150
}

.dropdown.active .dropdown__content {
    opacity: 1;
    visibility: visible;
    transition: .25s
}

.dropdown__content {
    position: absolute;
    top: 40px;
    right: 10px;
    left: 10px;
    padding: 20px;
    background-color: #fff;
    border-radius: 12px;
    opacity: 0;
    visibility: hidden
}

.dropdown__item {
    height: 36px;
    margin-bottom: 4px;
    background-color: transparent;
    border: 1px solid #f4f5f6;
    border-radius: 12px
}

.dropdown__item:last-child {
    margin-bottom: 0
}

.dropdown__item>label {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0 16px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    color: #454856
}

.dropdown__item:has(input[type=radio]:checked) {
    background-color: #f4f5f6
}

.dropdown__item>input {
    display: none
}

.overlay {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 100;
    height: 100vh;
    background-color: #311f1533;
    opacity: 0;
    visibility: hidden;
    transition: .15s;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px)
}

.overlay.active {
    opacity: 1;
    visibility: visible
}

.cards-list {
    display: grid
}

@media (max-width: 879px) {
    html.is-catalog .page__footer .footer__mid {
        display: flex !important;
        flex-direction: column !important
    }

    html.is-catalog .page__footer .footer__nav-group {
        display: none !important
    }

    /*
      Большие категории содержат более сотни карточек. Браузер сохраняет
      полную выдачу и сортировку, но не рассчитывает/не рисует далёкие строки
      до приближения к viewport.
    */
    html.is-catalog .cards-list>.card-product:nth-child(n+7) {
        content-visibility: auto;
        contain-intrinsic-size: auto 520px
    }
}

.cards-list#single {
    grid-template-columns: 100vw;
    gap: 10px
}

.cards-list#single .card-product {
    --slider-width: 100vw;
    --slider-height: 230px
}

.cards-list#single .card-product__trade {
    margin-bottom: 10px
}

.cards-list#single .card-product__price {
    font-size: 22px
}

.cards-list#single .card-product__price>del {
    margin-left: 8px;
    font-size: 16px
}

.cards-list#single .card-product__sale {
    margin-top: 8px;
    font-size: 16px
}

.cards-list#single .card-product__blank {
    font-size: 18px
}

.cards-list#single .card-product__title {
    font-size: 16px
}

.cards-list#single .card-product .tag {
    height: 28px;
    padding: 4px 16px;
    font-size: 14px;
    line-height: 22px
}

.cards-list#single .card-product .button {
    height: 48px;
    font-size: 16px
}

.cards-list#double {
    grid-template-columns: repeat(2, calc(50vw - 2px));
    gap: 4px
}

.cards-list#double .card-product {
    --slider-width: calc(50vw - 2px);
    --slider-height: 130px
}

.cards-list#table {
    grid-auto-columns: calc((100vw - 1px)/2);
    grid-auto-flow: column;
    grid-template-columns: repeat(auto-fill, calc((100vw - 1px)/2));
    grid-template-rows: 1fr;
    gap: 1px;
    padding: 1px 1px 10px;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: #888 #f1f1f1;
    scroll-snap-type: x mandatory;
    scrollbar-gutter: stable
}

.cards-list#table .card-product {
    --slider-width: calc((100vw - 1px)/2);
    --slider-height: 130px;
    border-radius: 0;
    scroll-snap-align: center;
    overflow: hidden
}

.cards-list#table .card-product:first-child {
    border-radius: 12px 0 0 12px
}

.cards-list#table .card-product:first-child .card-product__info-text {
    position: sticky;
    color: #807f7d
}

.cards-list#table .card-product:last-child {
    border-radius: 0 12px 12px 0
}

.cards-list#table .card-product__slider {
    border-radius: 0
}

.cards-list#table .card-product__section {
    min-height: 105px;
    margin-bottom: 10px;
    border-bottom: 1px solid #f4f5f6
}

.cards-list#table .card-product__info-text {
    display: flex;
    flex-flow: column nowrap;
    min-height: 75px;
    margin-right: -10px;
    margin-bottom: 10px;
    margin-left: -10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    border-bottom: 1px solid #f4f5f6
}

.cards-list#table .card-product__info-text>span {
    display: block;
    align-self: center;
    margin-top: auto;
    color: #161d28
}

.mobile__filter {
    width: 100%
}

.mobile__filter .filter__block {
    margin: 0;
    border: none
}

.mobile__filter .filter_block {
    background: transparent
}

.mobile__filter .container {
    padding-right: 0;
    padding-left: 0
}

.mobile__filter .row {
    display: flex;
    flex-wrap: wrap;
    margin-right: 0;
    margin-left: 0
}

.mobile__filter .filter {
    padding: 30px 0 10px;
    background: transparent
}

.mobile__filter .filter:last-child {
    padding: 10px 0 0
}

.mobile__filter .filter:first-child {
    padding: 10px 0 0
}

.mobile__filter .filter:hover {
    background: transparent
}

.mobile__filter .filter_title {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 500
}

.mobile__filter .filter_price_b {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 16px
}

.mobile__filter .mobile__filter .filter_price_pole {
    width: 45%
}

.mobile__filter .filter_price_pole {
    width: 45%;
    height: 40px;
    padding: 12px 10px 10px;
    font-size: 16px;
    font-weight: 550;
    text-align: center;
    color: #807f7d;
    border: 1px solid #f4f5f6;
    border-radius: 12px
}

.mobile__filter .mobile__filter .fpdef,
.mobile__filter .fpdef {
    display: none !important;
}

.mobile__filter .filter_price_field {
    position: relative;
    display: flex;
    flex: 1 1 0;
    align-items: center;
    min-width: 0;
    width: 48%;
}

.mobile__filter .filter_price_prefix {
    position: absolute;
    left: 10px;
    z-index: 1;
    font-size: 14px;
    font-weight: 500;
    color: #9a9aa3;
    pointer-events: none;
}

.mobile__filter .f_pri .filter_price_field .filter_price_pole {
    width: 100%;
    padding-left: 36px;
    text-align: left;
}

.mobile__filter .filter_block .niceCheck {
    position: relative;
    display: table-row;
    width: 24px;
    min-width: 70px;
    height: 24px;
    margin-right: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    accent-color: #ec670b;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.mobile__filter .filter_block .niceCheck input {
    width: 24px;
    height: 24px;
    margin-right: 4px
}

.mobile__filter .fpdef {
    display: none !important;
}

.mobile__filter .fpnc,
.mobile__filter .fpnl,
.mobile__filter .fpnr {
    font-size: 12px;
    color: #807f7d
}

.mobile__filter .fpnc {
    position: absolute;
    left: 0;
    width: 100%;
    margin-top: 0;
    text-align: center
}

.mobile__filter .fpnl {
    float: left
}

.mobile__filter .fpnr {
    float: right
}

.mobile__filter .filter_price_fix {
    position: relative;
    height: 21px;
    margin-bottom: 6px;
    font-size: 10px;
    color: #807f7d
}

.mobile__filter .ui-widget-content {
    background: #f4f5f6;
    border: none
}

.mobile__filter .ui-slider-horizontal {
    height: 4px
}

.mobile__filter .ui-slider {
    position: relative
}

.mobile__filter .filter_price_fix_separ {
    position: absolute;
    left: 50%;
    margin-top: 19px;
    font-size: 7px
}

.mobile__filter .filter_price_slider {
    width: calc(100% - 20px);
    max-width: none
}

.mobile__filter .ui-slider-horizontal .ui-slider-range {
    top: 0;
    height: 100%
}

.mobile__filter .ui-slider .ui-slider-range {
    position: absolute;
    z-index: 1;
    display: block;
    font-size: .7em;
    border: 0;
    overflow: hidden
}

.mobile__filter .ui-widget-header {
    background: #ec670b
}

.mobile__filter .ui-slider-horizontal .ui-slider-handle {
    top: -7px
}

.mobile__filter .ui-slider .ui-slider-handle {
    position: absolute;
    z-index: 1;
    width: 19px;
    height: 19px;
    background: #fff;
    border: 3px solid #ec670b;
    border-radius: 50%
}

.mobile__filter .fil_count_2 {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%
}

.filter-modal {
    position: fixed;
    z-index: 150;
    height: 100%;
    min-height: 100vh;
    padding: 20px 16px 100px;
    background-color: #fff;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: .25s ease-out
}

.filter-modal__btn {
    position: absolute;
    top: 26px;
    right: 16px;
    color: #807f7d;
    transform: rotate(45deg)
}

.filter-modal.active {
    opacity: 1;
    visibility: visible
}

.vk-video {
    position: relative;
    display: block
}

.vk-video:before {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 50px;
    height: 50px;
    background: url(/img/icons/vk_video.png) center/contain;
    transform: translate(-50%, -50%);
    content: ""
}

.vk-video>img {
    margin-bottom: 10px;
    border-radius: 16px
}

.vk-video:last-child>img {
    margin-bottom: 0
}

html:has(div.modal.active, div.overlay.active, div.filter-modal.active) {
    overflow: hidden
}

iframe {
    border-radius: 16px
}

hr {
    height: 1px;
    background-color: #f4f5f6;
    box-sizing: content-box;
    overflow: visible
}

hr.margin-out {
    margin-right: -1rem;
    margin-left: -1rem
}

a:not([class]),
a:link:not([class]) {
    font-weight: 400;
    text-decoration: underline;
    text-decoration-color: var(--mm-brand, #ec670b);
    color: var(--mm-brand, #ec670b);
    transition: .15s;
    cursor: pointer
}

.page__footer .footer__mid a:not([class]),
.page__footer .footer__mid a:link:not([class]) {
    color: var(--mm-muted, #454856);
    text-decoration: none;
    font-weight: 500;
}

.page__footer .footer__mid a:not([class]):hover,
.page__footer .footer__mid a:link:not([class]):hover {
    color: var(--mm-brand, #ec670b);
    text-decoration: none;
}

a:not([class]):hover,
a:not([class]):active,
a:not([class]):focus,
a:link:not([class]):hover,
a:link:not([class]):active,
a:link:not([class]):focus {
    text-decoration: underline;
    text-decoration-color: var(--mm-hover, #d45a0a);
    color: var(--mm-hover, #d45a0a)
}

.visually-hidden:not(:focus, :active),
input[type=checkbox].visually-hidden,
input[type=radio].visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    white-space: nowrap;
    border: 0;
    clip: rect(0 0 0 0);
    clip-path: inset(100%);
    overflow: hidden
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 650
}

h1>a:not([class]),
h2>a:not([class]),
h3>a:not([class]),
h4>a:not([class]),
h5>a:not([class]),
h6>a:not([class]) {
    font-weight: 650 !important
}

.title {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
    color: #161d28
}

.button_in_cart {
    display: none;
}
.cards-list#table .button_in_cart {
    display: flex;
}

.catalog-batch-nav {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    justify-items: center;
    width: 100%;
    margin: 20px 0 8px;
}

.catalog-batch-nav__next {
    min-width: 190px;
    min-height: 44px;
}

.catalog-batch-nav__prev {
    font-size: 14px;
}

.catalog-batch-nav__sentinel {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    pointer-events: none;
}

.catalog-batch-nav__status {
    min-height: 18px;
    font-size: 13px;
    line-height: 18px;
    text-align: center;
    color: var(--mm-muted, #6b6f7b);
}

.catalog-batch-nav.is-loading .catalog-batch-nav__next,
.dropdown.is-loading {
    opacity: .65;
}

.catalog-batch-nav.is-loading .catalog-batch-nav__next {
    pointer-events: none;
}

@media (max-width: 879px) {
    .catalog-batch-nav {
        padding: 0 16px;
    }

    .catalog-batch-nav__next {
        width: 100%;
    }
}
