@charset "UTF-8";

* {
    padding: 0px;
    margin: 0px;
    border: 0px;
}

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

        *::before,
        *::after {
            display: inline-block;
        }

html,
body {
    height: 100%;
}

body {
    line-height: 1;
    scrollbar-gutter: stable;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

input,
button,
textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
    background-color: transparent;
}

input,
textarea {
    width: 100%;
}

label {
    display: inline-block;
}

button,
select,
option {
    cursor: pointer;
}

a {
    display: inline-block;
    color: inherit;
    text-decoration: none;
}

a, button {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

ul li {
    list-style: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: inherit;
    font-size: inherit;
}

@font-face {
    font-family: RobotoCondensed;
    font-display: swap;
    src: url("../assets/fonts/RobotoCondensed-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: RobotoCondensed;
    font-display: swap;
    src: url("../assets/fonts/RobotoCondensed-Medium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "iconfont";
    font-display: swap;
    src: url("../assets/fonts/iconfont.woff2?d3c16c3f2dfaa8c444a18ecfefa733ea") format("woff2");
}

[class*="--icon-"]::before {
    font-family: iconfont;
}

[class*="--icon-warn"]::before {
    content: "\f101";
}

[class*="--icon-search"]::before {
    content: "\f102";
}

[class*="--icon-location"]::before {
    content: "\f103";
}

[class*="--icon-fav"]::before {
    content: "\f104";
}

[class*="--icon-check"]::before {
    content: "\f105";
}

[class*="--icon-arrow-r"]::before {
    content: "\f106";
}

/* Generated by vite-plugin-svg-spritemap */
:root {
    --grayColor: #2B2A29CC;
    --lightGray: #F7F7F7;
    --mainColor: #2B2A29;
    --whiteColor: #ffffff;
    --lightCream: #F9F2EB;
    --creamColor: #FCEAD8;
    --darkCream: #633100;
    --redColor: #FD4C00;
    --darkRed: #C60000;
    --blueColor: #416AD1;
    --darkBlue: #222B59;
    --orangeColor: #FDAD00;
    --greenColor: #57CA0A;
    --yellowColor: #FFEE04;
    --errorColor: #ffd2d2;
}

body {
    min-width: 360px;
    color: var(--mainColor);
    font-family: "RobotoCondensed";
    font-size: 14px;
}

[data-fls-scrolllock] body {
    overflow: hidden;
    touch-action: none;
    overscroll-behavior: none;
}

.wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    overflow: clip;
}

    .wrapper > main {
        flex: 1 1 auto;
    }

    .wrapper > * {
        min-width: 0;
    }

[class*=__container] {
    max-width: 1072px;
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.inprow {
    display: block;
    position: relative;
}

    .inprow span {
        font-size: 12px;
        line-height: 116.666667%; /* 14/12 */
        margin-bottom: 4px;
        color: rgba(43, 42, 41, 0.5019607843);
        display: block;
    }

    .inprow input,
    .inprow textarea {
        padding: 8px;
        border-radius: 0 !important;
        width: 100%;
        display: block;
        border: 1px solid rgba(43, 42, 41, 0.3019607843);
        caret-color: inherit;
        font-size: 16px;
        line-height: 135.714286%; /* 19/14 */
        background-color: var(--lightGray);
        outline: none;
    }

        .inprow input[placeholder]:not([data-fls-placeholder-nohiden])::placeholder,
        .inprow textarea[placeholder]:not([data-fls-placeholder-nohiden])::placeholder {
            transition: opacity 0.3s;
        }

        .inprow input[placeholder]:not([data-fls-placeholder-nohiden]):focus::placeholder,
        .inprow textarea[placeholder]:not([data-fls-placeholder-nohiden]):focus::placeholder {
            opacity: 0;
        }

        .inprow input[disabled],
        .inprow textarea[disabled] {
            border-color: transparent;
        }

        .inprow input.--form-focus,
        .inprow textarea.--form-focus {
            border-color: var(--grayColor);
        }

        .inprow input.--form-error,
        .inprow textarea.--form-error {
            border-color: rgba(198, 0, 0, 0.3019607843);
            background-color: rgba(198, 0, 0, 0.0509803922);
        }

            .inprow input.--form-error.--form-focus,
            .inprow textarea.--form-error.--form-focus {
                border-color: var(--grayColor);
            }

.inprow__txta {
    width: 100%;
    display: block;
    border: 1px solid rgba(43, 42, 41, 0.3019607843);
    padding: 8px;
    background-color: var(--lightGray);
}

    .inprow__txta.--form-focus {
        border-color: var(--grayColor);
    }

    .inprow__txta.--form-error {
        border-color: rgba(198, 0, 0, 0.3019607843);
        background-color: rgba(198, 0, 0, 0.0509803922);
    }

        .inprow__txta.--form-error.--form-focus {
            border-color: var(--grayColor);
        }

.inprow textarea {
    resize: vertical;
    padding: 0px 0px;
    border: none;
}

.inprow [data-fls-form-error] {
    color: var(--darkRed);
    font-size: 12px;
    line-height: 116.666667%; /* 14/12 */
    position: absolute;
    left: 0;
    width: 100%;
    top: 100%;
}

.checkbox {
    display: inline-block;
    position: relative;
}

.checkbox__item {
    cursor: pointer;
}

.checkbox__input {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
}

    .checkbox__input:focus-visible + .checkbox__text {
        outline: 1px solid #000;
    }

    .checkbox__input:checked + .checkbox__text:before {
        background: url("../assets/img/check-w.svg") center/80% 80% no-repeat var(--mainColor);
    }

.checkbox__text {
    cursor: pointer;
    position: relative;
    gap: 8px;
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    line-height: 116.666667%; /* 14/12 */
    color: rgba(43, 42, 41, 0.5019607843);
}

    .checkbox__text a {
        color: var(--mainColor);
        display: inline;
    }

    .checkbox__text:before {
        content: "";
        border-radius: 4px;
        align-self: flex-start;
        margin-top: 1px;
        flex: 0 0 16px;
        width: 16px;
        height: 16px;
        border: 1px solid #cad5e2;
    }

.--form-error .checkbox__text:before {
    border-color: rgba(198, 0, 0, 0.3019607843);
    background-color: rgba(198, 0, 0, 0.0509803922);
}

.button {
    display: inline-flex;
    padding: 9px 19px;
    border: 1px solid transparent;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 16px;
    line-height: 118.75%; /* 19/16 */
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

    .button.button--black {
        background-color: var(--mainColor);
        color: var(--whiteColor);
        border-color: transparent;
    }

        .button.button--black:active {
            background-color: rgba(43, 42, 41, 0.5019607843);
        }

    .button.button--border {
        border-color: var(--grayColor);
        background-color: var(--whiteColor);
        color: var(--mainColor);
    }

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

.title-h1 {
    font-weight: 500;
}

    .title-h1.title--reg {
        font-weight: 400;
        color: rgba(43, 42, 41, 0.7411764706);
    }

.title-h2 {
    font-weight: 500;
}

    .title-h2.title--reg {
        font-weight: 400;
        color: rgba(43, 42, 41, 0.7411764706);
    }

.title-h3 {
    font-weight: 500;
    line-height: 115%; /* 23/20 */
}

    .title-h3.title--reg {
        font-weight: 400;
        color: rgba(43, 42, 41, 0.7411764706);
    }

.crumbs__container {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.crumbs__link {
    font-size: 12px;
    line-height: 116.666667%; /* 14/12 */
    transition: color 0.3s;
}

    .crumbs__link:not(:first-child) {
        color: rgba(43, 42, 41, 0.5019607843);
        pointer-events: none;
    }

    .crumbs__link:not(:last-child)::after {
        font-family: iconfont;
        content: "\f106";
        font-size: 7px;
        width: 12px;
        height: 12px;
        flex: 0 0 12px;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        margin-left: 4px;
    }

    .crumbs__link:last-child {
        pointer-events: none;
    }

.crumbs__link-active {
    color: inherit !important;
    pointer-events: auto !important;
}

.cityblock {
    position: relative;
}

.cityblock__popbutton {
    display: flex;
    gap: 4px;
    align-items: center;
    color: var(--grayColor);
    max-width: 100%;
}

    .cityblock__popbutton span {
        overflow: hidden;
        text-overflow: ellipsis;
        flex: 1 1 auto;
        text-align: left;
    }

    .cityblock__popbutton::before {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .cityblock__popbutton:active {
        color: var(--darkCream);
    }

.cityblock__pop {
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.3019607843), 0px 8px 12px 6px rgba(0, 0, 0, 0.1490196078);
    background-color: var(--whiteColor);
    padding: 16px;
    width: 327px;
    transition: opacity 0.3s, visibility 0.3s;
    /*pointer-events: none;*/
    /*position: absolute;*/
    /*left: 0;*/
    /*top: calc(100% + 15px);*/
    /*opacity: 0;*/
    /*visibility: hidden;*/
    /*z-index: 2;*/
}

    .cityblock__pop._active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

.cityblock__top {
    font-size: 14px;
    line-height: 114.285714%; /* 16/14 */
    margin-bottom: 4px;
    color: var(--mainColor);
}

.cityblock__city {
    font-size: 20px;
    line-height: 140%; /* 28/20 */
    font-weight: 500;
    margin-bottom: 16px;
    width: 100%;
    word-break: break-word;
    color: var(--mainColor);
}

.cityblock__buttons {
    gap: 8px;
    display: flex;
}

.cityblock__button {
    flex: 1 1 50%;
}

.socsblock {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.socsblock__item {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    display: block;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    background-color: rgba(224, 211, 181, 0.5019607843);
    transition: background-color 0.3s;
}

    .socsblock__item img {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        object-fit: contain;
    }

    .socsblock__item:active {
        background-color: #e0d3b5;
    }

.swiper-pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    column-gap: 8px;
    row-gap: 4px;
}

    .swiper-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        flex: 0 0 8px;
        border-radius: 50%;
        border: 1px solid var(--darkBlue);
        transition: background-color 0.3s;
        cursor: pointer;
    }

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

        .swiper-pagination .swiper-pagination-bullet:active {
            background-color: rgba(43, 42, 41, 0.6);
        }

.prod-item__image {
    position: relative;
    /*background-color: var(--lightGray);*/
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    overflow: hidden;
    -webkit-mask-image: radial-gradient(white, #000);
    mask-image: radial-gradient(white, #000);
    z-index: 1;
}

    .prod-item__image img {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        object-fit: contain;
        transition: transform 0.4s;
    }

.prod-item__info {
    position: relative;
    z-index: 1;
    line-height: 116.666667%; /* 14/12 */
    color: var(--whiteColor);
}

    .prod-item__info.prod-item__info--new {
        background-color: var(--orangeColor);
    }

    .prod-item__info.prod-item__info--top {
        background-color: var(--darkRed);
    }

    .prod-item__info.prod-item__info--recom {
        background-color: var(--greenColor);
    }

.prod-item__perc {
    position: relative;
    z-index: 1;
    line-height: 116.666667%; /* 14/12 */
    color: var(--whiteColor);
    background-color: var(--redColor);
}

.prod-item__toptext {
    margin-bottom: 4px;
}

.prod-item__name {
    font-weight: 500;
    transition: opacity 0.3s;
}

.prod-item__opttop:not(:last-child) {
    margin-bottom: 4px;
}

.prod-item__options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.prod-item__option-volume {
    font-weight: 600;
}

.prod-item__optionsitem {
    position: relative;
    cursor: pointer;
}

.prod-item__optionsinput {
    width: 0;
    height: 0;
    opacity: 0;
    position: absolute;
}

    .prod-item__optionsinput:focus-visible + .prod-item__optionstext {
        outline: 1px solid #000;
    }

    .prod-item__optionsinput:checked + .prod-item__optionstext {
        font-weight: 500;
        border-color: var(--mainColor);
    }

.prod-item__optionstext {
    padding: 7px 11px;
    border: 1px solid rgba(43, 42, 41, 0.3019607843);
    display: block;
    transition: background-color 0.3s, border-color 0.3s;
}

    .prod-item__optionstext:active {
        background-color: rgba(43, 42, 41, 0.1019607843);
    }

.prod-item__bontop {
    color: var(--blueColor);
}

    .prod-item__bontop span {
        font-weight: 500;
    }

    /* Сумма бонусов (число + ₽) синим — только в корзине (.card__block есть лишь на странице корзины) */
    .card__block .prod-item__bonus-sum {
        color: var(--blueColor);
    }

.prod-item__pricecont {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
}

    .prod-item__pricecont:has(.prod-item__oldprice) .prod-item__price {
        color: var(--redColor);
    }

.prod-item__price {
    font-weight: 500;
}

.prod-item__oldprice {
    color: rgba(43, 42, 41, 0.5019607843);
    line-height: 133.333333%; /* 24/18 */
    text-decoration: line-through;
}

.prod-item__right {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

.prod-item__state {
    display: inline-flex;
    -ms-align-items: center;
    -o-align-items: center;
    -webkit-align-items: center;
    align-items: center;
    -o-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center;
    min-height: 40px;
    padding: 6px 14px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0.2px;
    border: 1px solid rgba(43, 42, 41, 0.2);
    background-color: var(--lightCream);
    color: var(--mainColor);
    white-space: nowrap;
}

.prod-item__state--wait {
    border-color: rgba(253, 173, 0, 0.45);
    background-color: rgba(253, 173, 0, 0.12);
    color: #7a4b00;
}

.prod-item__right .quantity {
    flex: 1 1 auto;
}

.prod-item__favbutton {
    background-color: var(--mainColor);
}

    .prod-item__favbutton._active svg path {
        fill: var(--redColor);
        stroke: var(--redColor);
    }

    .prod-item__favbutton:active svg path {
        fill: rgba(255, 255, 255, 0.6980392157);
        stroke: rgba(255, 255, 255, 0.6980392157);
    }

    .prod-item__favbutton svg {
        width: 16px;
        height: 16px;
    }

        .prod-item__favbutton svg path {
            transition: all 0.3s;
            stroke: var(--whiteColor);
        }

.prod-item__trashbutton {
    background-color: var(--mainColor);
}

    .prod-item__trashbutton._active svg path {
        fill: var(--redColor);
        stroke: var(--redColor);
    }

    .prod-item__trashbutton:active svg path {
        fill: rgba(255, 255, 255, 0.6980392157);
        stroke: rgba(255, 255, 255, 0.6980392157);
    }

    .prod-item__trashbutton svg {
        width: 16px;
        height: 16px;
    }

        .prod-item__trashbutton svg path {
            transition: all 0.3s;
            stroke: var(--whiteColor);
        }

.prod-item__button {
    flex: 1 1 auto;
}

.spollers__item {
    border-bottom: 1px solid rgba(34, 43, 89, 0.1490196078);
}

.spollers__title {
    width: 100%;
    cursor: default;
    padding-bottom: 8px;
    text-align: left;
    position: relative;
    list-style: none;
    font-size: 20px;
    line-height: 115%; /* 23/20 */
    font-weight: 500;
}

    .spollers__title::marker, .spollers__title::-webkit-details-marker {
        display: none;
    }

.--spoller-init .spollers__title {
    cursor: pointer;
}

    .--spoller-init .spollers__title::before, .--spoller-init .spollers__title::after {
        content: "";
        position: absolute;
        right: 3px;
        top: 50%;
        background-color: #0f172b;
        height: 2px;
        width: 7px;
        transition: transform 0.5s ease 0s;
        border-radius: 1px;
    }

    .--spoller-init .spollers__title::before {
        transform: translate(-75%, -50%) rotate(40deg);
    }

    .--spoller-init .spollers__title::after {
        transform: translate(0, -50%) rotate(-40deg);
    }

    .--spoller-init .spollers__title.--spoller-active::before {
        transform: translateX(-75%) rotate(-40deg);
    }

    .--spoller-init .spollers__title.--spoller-active::after {
        transform: rotate(40deg);
    }

.spollers__body {
    padding-bottom: 16px;
    font-size: 14px;
    line-height: 121.428571%; /* 17/14 */
}

    .spollers__body ul li p:first-child::before {
        content: "•";
        padding-right: 3px;
    }
/* Generated by vite-plugin-svg-spritemap */
.select {
    min-width: 0;
    position: relative;
}

.select__body {
    position: relative;
}

.select__title {
    color: inherit;
    text-align: left;
    border: 1px solid rgba(43, 42, 41, 0.3019607843);
    background-color: var(--lightGray);
    cursor: pointer;
    width: 100%;
    font-size: 16px;
    line-height: 118.75%; /* 19/16 */
}

.select__value {
    display: flex;
    min-width: 0;
    align-items: center;
    height: 37px;
    gap: 10px;
}

    .select__value > * {
        flex: 1 1 auto;
    }

    .select__value:after {
        content: "\f102";
        font-family: "iconfont";
        align-self: center;
        flex: 0 0 16px;
        transition: all 0.3s ease 0s;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 16px;
        margin-right: 9px;
        font-size: 16px;
    }

.--select-open .select__value:after {
    transform: rotate(-180deg);
}

.popup__block .--select-open .select__value:after {
    transform: none;
}

.select__value.--select-pseudo-label::before {
    content: attr(data-pseudo-label);
    opacity: 0.5;
}

.select__content {
    flex: 1 1 auto;
    padding: 0 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.select__text {
    flex: 1 1 auto;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.select__input {
    padding: 0 9px;
    width: 100%;
    background-color: transparent;
    height: 100%;
    outline: none;
}

.--select-active .select__input::placeholder {
    color: #000;
}

.--select-focus .select__input::placeholder {
    opacity: 0.5;
}

.select__options {
    color: #000;
    position: absolute;
    top: calc(100% - 0.0625rem);
    min-width: 100%;
    left: 0;
    padding-top: 3px;
    box-shadow: 0px 4px 6px -2px rgba(0, 0, 0, 0.0509803922), 0px 10px 15px -3px rgba(0, 0, 0, 0.1019607843);
}

.select__scroll {
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 12.5rem;
    border: 1px solid #ebebeb;
    background-color: #fff;
}

.select__option {
    width: 100%;
    text-align: left;
    cursor: pointer;
    padding: 10px 16px;
    color: inherit;
    font-size: 14px;
    line-height: 114.285714%; /* 16/14 */
}

    .select__option.--select-selected {
        background-color: #eee;
    }

.select__row {
    display: inline-flex;
    align-items: center;
}

.select--show-top .select__options {
    top: auto;
    bottom: calc(100% - 0.0625rem);
    border: 1px solid #d9d9d9;
    border-bottom: 0;
    border-radius: 4px 4px 0 0;
    padding: 5px 0px 10px 0px;
}

.--select-tag {
    cursor: pointer;
}
/* Generated by vite-plugin-svg-spritemap */
.menu__link {
    color: rgba(43, 42, 41, 0.8);
}

    .menu__link:active {
        color: var(--darkCream);
    }

.header__icblock {
    width: 527px;
}

/* Generated by vite-plugin-svg-spritemap */
.header__iclinks {
    display: flex;
    justify-content: flex-end;
}

.header__iclink {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: opacity 0.3s;
    width: 100%;
}

    .header__iclink:active {
        opacity: 0.5;
    }

.header__icicon {
    position: relative;
}

    .header__icicon img {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        object-fit: contain;
    }

.header__iccount {
    position: absolute;
    top: 2px;
    right: -2px;
    background-color: var(--redColor);
    border-radius: 50%;
    color: var(--whiteColor);
    font-size: 10px;
    line-height: 120%; /* 12/10 */
    padding: 2px;
    min-width: 16px;
    /*display: flex;*/
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1;
}
/* Generated by vite-plugin-svg-spritemap */
.footer {
    background-color: #252525;
    color: var(--lightGray);
}

.footer__top {
    padding: 48px 0 32px 0;
}

.footer__topbody {
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(224, 211, 181, 0.2);
}

.footer__city:not(:last-child) {
    margin-bottom: 16px;
}

.footer__city .cityblock__pop {
    top: auto;
    bottom: calc(100% + 15px);
}

.footer__city .cityblock__popbutton {
    color: rgba(224, 211, 181, 0.8);
}

    .footer__city .cityblock__popbutton:active {
        color: #e0d3b5;
    }

.footer__tel {
    color: #e0d3b5;
    white-space: nowrap;
    font-size: 24px;
    line-height: 116.666667%; /* 28/24 */
}

    .footer__tel:not(:last-child) {
        margin-bottom: 24px;
    }

    .footer__tel:active {
        color: #e0d3b5;
    }

.footer__menuitem:not(:last-child) {
    margin-bottom: 8px;
}

.footer__menulink {
    font-size: 14px;
    line-height: 114.285714%; /* 16/14 */
    color: rgba(224, 211, 181, 0.5019607843);
    transition: color 0.3s;
}

    .footer__menulink:active {
        color: #e0d3b5;
    }

.footer__toptext {
    padding: 32px 0;
    font-size: 14px;
    line-height: 114.285714%; /* 16/14 */
    color: #e0d3b5;
}

.footer__bottom {
    padding: 31px 0;
    background-color: #151515;
}

.footer__bottomtext {
    color: rgba(224, 211, 181, 0.5019607843);
    font-size: 14px;
    line-height: 114.285714%; /* 16/14 */
}
/* Generated by vite-plugin-svg-spritemap */
.rating {
    display: inline-block;
}

.rating__items {
    display: inline-flex;
    align-items: flex-start;
    gap: 0.25rem;
}

.rating__item {
    flex: 0 0 0.875rem;
    width: 0.875rem;
    height: 0.875rem;
    position: relative;
    background: url("../assets/img/star.svg") 0 0/0.875rem no-repeat;
    transition: all 0.3s;
}

.rating__item--active {
    background: url("../assets/img/star-full.svg") 0 0/0.875rem no-repeat;
}

.rating__item span {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 0.875rem;
    background: url("../assets/img/star-full.svg") 0 0/0.875rem no-repeat;
}

.rating__item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 0.25rem;
    transform: translateX(100%);
}

[data-rating=set] .rating__item:not(:last-child)::after {
    cursor: pointer;
}

.rating__input {
    width: 100%;
    height: 100%;
    opacity: 0;
    display: block;
}

[data-fls-rating=set] .rating__input {
    cursor: pointer;
}
/* Generated by vite-plugin-svg-spritemap */ /* Generated by vite-plugin-svg-spritemap */ /* Generated by vite-plugin-svg-spritemap */ /* Generated by vite-plugin-svg-spritemap */
.first__body {
    position: relative;
}

.first__slider {
    opacity: 0;
}

    .first__slider.swiper-initialized {
        opacity: 1;
    }

.first__slide {
    position: relative;
    min-height: 312px;
}

.first__content {
    position: relative;
    z-index: 1;
}

.first__toptext:not(:last-child) {
    margin-bottom: 12px;
}

.first__image {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

    .first__image img {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        object-fit: cover;
        object-position: right bottom;
    }

.first__swiper-button-prev::before {
    transform: rotate(180deg);
}

.catalog:not(:last-child) {
    margin-bottom: 16px;
}

.catalog__tabsnavigation {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.catalog__tabstitle {
    padding: 9px;
    border: 1px solid rgba(43, 42, 41, 0.3019607843);
    transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}

    .catalog__tabstitle.--tab-active {
        background-color: var(--mainColor);
        color: var(--whiteColor);
    }

    .catalog__tabstitle:active {
        background-color: rgba(43, 42, 41, 0.1019607843);
    }

.infoblock__text {
    color: rgba(43, 42, 41, 0.7411764706);
}

    .infoblock__text:not(:last-child) {
        margin-bottom: 18px;
    }

    .infoblock__text a {
        white-space: nowrap;
    }

.card__blocks {
    border-bottom: 1px solid rgba(34, 43, 89, 0.1490196078);
}

.card__blockname {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(34, 43, 89, 0.1490196078);
}

.card__bottomname:not(:last-child) {
    margin-bottom: 16px;
}

.card__bottomrows:not(:last-child) {
    margin-bottom: 16px;
}

.card__bottomrow {
    display: flex;
    justify-content: space-between;
    gap: 4px;
}

    .card__bottomrow:not(:last-child) {
        margin-bottom: 16px;
    }

    .card__bottomrow.card__bottomrow--gray {
        color: rgba(43, 42, 41, 0.4);
    }

    .card__bottomrow span:nth-child(2) {
        font-weight: 500;
    }

.card__total {
    display: flex;
    gap: 10px;
    align-items: flex-end;
    justify-content: flex-end;
}

.card-footer__address {
    display: flex;
    gap: 10px;
    align-items: flex-end;
}

.card-footer__promo {
    display: flex;
    gap: 10px;
    align-items: flex-end;
}

.card-footer__inp {
    flex: 1 1 auto;
}

.card-footer__promo:not(:last-child) {
    margin-bottom: 24px;
}

.card-footer__bons:not(:last-child) {
    margin-bottom: 24px;
}

.card-footer__bonstitle {
    font-size: 20px;
    line-height: 115%; /* 23/20 */
}

    .card-footer__bonstitle:not(:last-child) {
        margin-bottom: 8px;
    }

    .card-footer__bonstitle span {
        font-weight: 500;
    }

.card-footer__bontext {
    font-size: 14px;
    color: rgba(43, 42, 41, 0.5019607843);
    line-height: 114.285714%; /* 16/14 */
}

    .card-footer__bontext:not(:last-child) {
        margin-bottom: 8px;
    }

    .card-footer__bontext span {
        font-weight: 500;
    }

.card-footer__options {
    padding: 4px;
    background-color: rgba(43, 42, 41, 0.1019607843);
    display: inline-block;
    position: relative;
    display: flex;
}

.card-footer__optionsitem {
    flex: 1 1 50%;
    cursor: pointer;
}

.card-footer__optionsinput {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
}

    .card-footer__optionsinput:focus-visible + .checkbox__text {
        outline: 1px solid #000;
    }

    .card-footer__optionsinput:checked + .card-footer__optionstext {
        color: var(--whiteColor);
        background-color: var(--mainColor);
    }

.card-footer__optionstext {
    padding: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: 500;
    font-size: 14px;
    line-height: 114.285714%; /* 16/14 */
    transition: background-color 0.3s;
}

.card-footer__textareacont textarea {
    min-height: 75px;
}

.card-footer__payrow {
    display: flex;
    justify-content: space-between;
    gap: 4px;
}

    .card-footer__payrow:not(:last-child) {
        margin-bottom: 16px;
    }

    .card-footer__payrow span:nth-child(2) {
        font-weight: 500;
    }

.card-footer__payrow--gray {
    color: rgba(43, 42, 41, 0.4);
}

.card-footer__payrow--green {
    color: var(--greenColor);
}

.card-footer__payrow--blue {
    color: var(--blueColor);
}

.card-footer__payrow--red {
    color: var(--darkRed);
}

.card-footer__paybottom {
    background-color: rgba(224, 211, 181, 0.5019607843);
}

.card-footer__paytotal {
    font-size: 20px;
    line-height: 115%; /* 23/20 */
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

    .card-footer__paytotal span {
        font-size: 24px;
        line-height: 116.666667%; /* 28/24 */
        font-weight: 500;
    }

.personal {
    margin-bottom: 16px;
    padding-bottom: 32px;
    position: relative;
}

    .personal::before, .personal::after {
        content: "";
        position: absolute;
        height: 1px;
        left: 50%;
        transform: translateX(-50%);
        background-color: rgba(34, 43, 89, 0.1490196078);
        bottom: 0;
        max-width: 1040px;
        width: calc(100% - 32px);
    }

.personal__left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.personal__certificate {
    padding: 8px;
    background-color: var(--greenColor);
    color: var(--whiteColor);
    font-size: 18px;
    line-height: 116.666667%; /* 21/18 */
    width: 100%;
}

.personal__bonus {
    padding: 8px;
    background-color: var(--blueColor);
    color: var(--whiteColor);
    font-size: 18px;
    line-height: 116.666667%; /* 21/18 */
}

.personal__bonus-expire {
    padding: 8px;
    background-color: var(--redColor);
    color: var(--whiteColor);
    font-size: 18px;
    line-height: 116.666667%; /* 21/18 */
    margin-bottom: 12px;
}

/* Уведомление об окончании подписки (≤3 дней). Размещается под .personal__role. */
.personal__subscription-alert {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    margin-bottom: 12px;
    background-color: var(--redColor);
    color: var(--whiteColor);
    border-radius: 6px;
    line-height: 1.25;
}

    .personal__subscription-alert__icon {
        flex-shrink: 0;
        width: 20px;
        height: 20px;
        margin-top: 1px;
    }

    .personal__subscription-alert__body {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .personal__subscription-alert__title {
        font-size: 16px;
    }

    .personal__subscription-alert__date {
        font-size: 13px;
        opacity: 0.88;
    }

/* Нейтральный блок "Подписка до …" — когда до окончания больше 3 дней. */
.personal__subscription {
    padding: 8px 0;
    margin-bottom: 12px;
    color: var(--grayColor);
    font-size: 16px;
}

/* Мобильный вариант блока подписки — показывается в .personal__right, когда .personal__left скрыт. */
.personal__subscription-alertMobile {
    display: none;
}

@media (max-width: 61.99875em) {
    .personal__subscription-alertMobile {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        padding: 10px 12px;
        margin: 6px 0 12px;
        background-color: var(--redColor);
        color: var(--whiteColor);
        border-radius: 6px;
        line-height: 1.25;
    }

        .personal__subscription-alertMobile__icon {
            flex-shrink: 0;
            width: 18px;
            height: 18px;
            margin-top: 1px;
        }

        .personal__subscription-alertMobile__title {
            font-weight: 600;
            font-size: 14px;
        }

        .personal__subscription-alertMobile__date {
            font-size: 12px;
            opacity: 0.88;
        }
}

.personal__role {
    padding: 8px;
    background-color: var(--mainColor);
    color: var(--whiteColor);
    font-size: 18px;
    line-height: 116.666667%; /* 21/18 */
}

.personal__certificate:not(:last-child) {
    margin-bottom: 12px;
}

.personal__bonus:not(:last-child) {
    margin-bottom: 12px;
}

.personal__role:not(:last-child) {
    margin-bottom: 12px;
}

.personal__links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.personal__link {
    font-size: 20px;
    line-height: 115%; /* 23/20 */
    color: var(--grayColor);
    transition: color 0.3s, font-weight 0.3s;
}

    .personal__link:not(:last-child) {
        margin-bottom: 12px;
    }

    .personal__link._active {
        font-weight: 500;
        color: var(--mainColor);
    }

.personal__inputs:has(.personal__optionsitem) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.personal__inputs .inprow:not(:last-child) {
    margin-bottom: 16px;
}

.personal__optionsitem {
    position: relative;
    cursor: pointer;
}

.personal__optionsinput {
    width: 0;
    height: 0;
    opacity: 0;
    position: absolute;
}

    .personal__optionsinput:focus-visible + .personal__optionstext {
        outline: 1px solid #000;
    }

    .personal__optionsinput:checked + .personal__optionstext:before {
        background-color: var(--mainColor);
        border-color: var(--mainColor);
    }

    .personal__optionsinput:checked + .personal__optionstext:after {
        transform: scale(1);
    }

    .personal__optionsinput:disabled + .personal__optionstext:after {
        display: none !important;
    }

    .personal__optionsinput:disabled + .personal__optionstext::before {
        display: none !important;
    }

.personal__optionstext {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    gap: 8px;
}

    .personal__optionstext:before {
        content: "";
        align-self: flex-start;
        width: 16px;
        height: 16px;
        flex: 0 0 16px;
        border-radius: 50%;
        border: 1px solid #cad5e2;
    }

    .personal__optionstext:after {
        content: "";
        transition: all 0.3s ease 0s;
        transform: scale(0);
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background-color: var(--whiteColor);
        position: absolute;
        left: 5px;
        top: 5px;
    }

.personal__optiontop {
    font-size: 12px;
    line-height: 116.666667%; /* 14/12 */
    color: rgba(43, 42, 41, 0.5019607843);
    margin-bottom: 3px;
    display: block;
}

.personal__optionaddress {
    font-size: 16px;
    line-height: 118.75%; /* 19/16 */
}

.personal__orderrow {
    border-bottom: 1px solid rgba(34, 43, 89, 0.1490196078);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

    .personal__orderrow:not(:last-child) {
        margin-bottom: 2px;
    }

.personal__ordertop {
    color: rgba(43, 42, 41, 0.5019607843);
    font-size: 12px;
    line-height: 116.666667%; /* 14/12 */
    margin-bottom: 4px;
}

.personal__otrderbottom {
    font-weight: 500;
    font-size: 20px;
    line-height: 115%; /* 23/20 */
}

.personal__otrderbottom--nowrap {
    white-space: nowrap;
    width: 276px;
}

.personal__otrderbottom--blue {
    color: var(--blueColor);
}

.personal__otrderbottom--red {
    color: var(--darkRed);
}

.personal__button {
    min-width: 184px;
}

.personal__sub {
    display: none;
}

.product__sliders {
    min-width: 0;
    height: 100%;
}

.product__smallslide {
    position: relative;
    overflow: hidden;
    -webkit-mask-image: radial-gradient(white, #000);
    mask-image: radial-gradient(white, #000);
    z-index: 1;
    cursor: pointer;
}

    .product__smallslide img {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        object-fit: cover;
        transition: transform 0.4s;
    }

.product__bigslider {
    position: relative;
    flex: 1 1 auto;
}

.product__info {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    line-height: 116.666667%; /* 14/12 */
    color: var(--whiteColor);
}

    .product__info.product__info--new {
        background-color: var(--orangeColor);
    }

    .product__info.product__info--top {
        background-color: var(--darkRed);
    }

    .product__info.product__info--recom {
        background-color: var(--greenColor);
    }

.product__bigslide {
    position: relative;
    overflow: hidden;
    -webkit-mask-image: radial-gradient(white, #000);
    mask-image: radial-gradient(white, #000);
    z-index: 1;
    aspect-ratio: 410/336;
}

    .product__bigslide img {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        object-fit: cover;
    }

.product__perc {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    line-height: 116.666667%; /* 14/12 */
    color: var(--whiteColor);
    background-color: var(--redColor);
}

.product__type {
    margin-bottom: 4px;
    font-size: 14px;
    line-height: 114.285714%; /* 16/14 */
}

.product__descrow {
    font-size: 14px;
    line-height: 114.285714%; /* 16/14 */
    display: flex;
    align-items: center;
    gap: 5px;
}

    .product__descrow:not(:last-child) {
        margin-bottom: 4px;
    }

    .product__descrow .rating {
        padding-top: 3px;
    }

.product__opttop:not(:last-child) {
    margin-bottom: 4px;
}

.product__options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.product__optionsitem {
    position: relative;
    cursor: pointer;
}

.product__optionsinput {
    width: 0;
    height: 0;
    opacity: 0;
    position: absolute;
}

    .product__optionsinput:focus-visible + .product__optionstext {
        outline: 1px solid #000;
    }

    .product__optionsinput:checked + .product__optionstext {
        font-weight: 500;
        border-color: var(--mainColor);
    }

.product__optionstext {
    padding: 7px 11px;
    border: 1px solid rgba(43, 42, 41, 0.3019607843);
    display: block;
    transition: background-color 0.3s;
}

.product__bontop {
    color: var(--blueColor);
}

    .product__bontop span {
        font-weight: 500;
    }

.product__pricecont {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
}

    .product__pricecont:has(.product__oldprice) .product__price {
        color: var(--redColor);
    }

.product__price {
    font-weight: 500;
}

.product__oldprice {
    line-height: 133.333333%; /* 24/18 */
    text-decoration: line-through;
}

.product__right {
    display: flex;
    gap: 8px;
}

    .product__right .quantity {
        flex: 1 1 auto;
    }

.product__favbutton {
    background-color: var(--mainColor);
}

    .product__favbutton._active svg path {
        fill: var(--redColor);
        stroke: var(--redColor);
    }

    .product__favbutton svg {
        width: 16px;
        height: 16px;
    }

        .product__favbutton svg path {
            transition: all 0.3s;
            stroke: var(--whiteColor);
        }

.product__chartop {
    padding: 8px;
    background-color: #fee9b9;
    font-size: 16px;
    line-height: 118.75%; /* 19/16 */
}

.product__chartitle {
    font-size: 20px;
    font-weight: 500;
    line-height: 140%; /* 28/20 */
}

    .product__chartitle:not(:last-child) {
        margin-bottom: 4px;
    }

.product__chartext {
    font-size: 14px;
    line-height: 121.428571%; /* 17/14 */
}

    .product__chartext:not(:last-child) {
        margin-bottom: 15px;
    }

.comments {
    margin-bottom: 16px;
    padding-bottom: 16px;
    position: relative;
}

    .comments::before, .comments::after {
        content: "";
        position: absolute;
        height: 1px;
        left: 50%;
        transform: translateX(-50%);
        background-color: rgba(34, 43, 89, 0.1490196078);
        bottom: 0;
        max-width: 1040px;
        width: calc(100% - 32px);
    }

.comments__topleft {
    display: flex;
    align-items: center;
    gap: 4px;
}

.comments__title {
    font-size: 20px;
    line-height: 115%; /* 23/20 */
    font-weight: 500;
}

.comments__toplink {
    font-size: 14px;
    line-height: 114.285714%; /* 16/14 */
    text-decoration: underline;
}

.comments__item {
    padding: 16px;
    background-color: var(--lightGray);
}

.comments__itemtop {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    justify-content: space-between;
}

    .comments__itemtop:not(:last-child) {
        margin-bottom: 10px;
    }

.comments__name {
    font-size: 14px;
    line-height: 114.285714%; /* 16/14 */
}

.comments__date {
    font-size: 12px;
    line-height: 116.666667%; /* 14/12 */
    color: rgba(43, 42, 41, 0.5019607843);
}

    .comments__date:not(:last-child) {
        margin-bottom: 10px;
    }

.comments__text {
    font-size: 14px;
    line-height: 114.285714%; /* 16/14 */
}

.article {
    margin-bottom: 16px;
    position: relative;
}

    .article::before, .article::after {
        content: "";
        position: absolute;
        height: 1px;
        left: 50%;
        transform: translateX(-50%);
        background-color: rgba(34, 43, 89, 0.1490196078);
        bottom: 0;
        max-width: 1040px;
        width: calc(100% - 32px);
    }

.article__imageblock {
    padding: 16px 0 24px 0;
}

.article__image img {
    width: 100%;
}

.article__text {
    color: rgba(43, 42, 41, 0.7411764706);
    font-size: 14px;
    line-height: 128.571429%; /* 18/14 */
}

    .article__text:not(:last-child) {
        margin-bottom: 24px;
    }

    .article__text.article__text--mw {
        max-width: 709px;
    }

.article__listcont:not(:last-child) {
    margin-bottom: 24px;
}

.article__listcont.article__listcont--mw {
    max-width: 647px;
}

.article__listtitle:not(:last-child) {
    margin-bottom: 10px !important;
}

.article__list li {
    color: rgba(43, 42, 41, 0.7411764706);
    font-size: 14px;
    line-height: 128.571429%; /* 18/14 */
    padding-left: 20px;
    position: relative;
}

.article__list--unordered li::before {
    content: "";
    width: 3px;
    height: 3px;
    background-color: rgba(43, 42, 41, 0.7411764706);
    border-radius: 50%;
    top: 6px;
    left: 10px;
    position: absolute;
}

.article__list--ordered {
    list-style-type: none;
    counter-reset: item;
}

    .article__list--ordered li::before {
        counter-increment: item;
        content: counter(item) ".";
        top: 0;
        left: 3px;
        position: absolute;
    }

.article__flexblock {
    display: flex;
    gap: 24px;
}

    .article__flexblock:not(:last-child) {
        margin-bottom: 24px;
    }

.article__images {
    display: grid;
}

    .article__images:not(:last-child) {
        margin-bottom: 56px;
    }

.article__imagesitem {
    position: relative;
    overflow: hidden;
    -webkit-mask-image: radial-gradient(white, #000);
    mask-image: radial-gradient(white, #000);
    z-index: 1;
}

    .article__imagesitem img {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        object-fit: cover;
        transition: transform 0.4s;
    }

.article__imagesitem-1 {
    aspect-ratio: 508/392;
}

.article__tablecont:not(:last-child) {
    margin-bottom: 24px;
}

.article__table {
    overflow: auto;
}

    .article__table:not(:last-child) {
        margin-bottom: 24px;
    }

    .article__table table {
        width: 100%;
        border-collapse: collapse;
        font-size: 14px;
        line-height: 128.571429%; /* 18/14 */
    }

        .article__table table th,
        .article__table table td {
            border-bottom: 1px solid #d9d9d9;
        }

        .article__table table thead {
            background-color: #e0d3b5;
        }

            .article__table table thead th {
                font-weight: 500;
                text-align: left;
            }

.article__tablenote {
    font-size: 12px;
    line-height: 150%; /* 18/12 */
    color: rgba(43, 42, 41, 0.5019607843);
}

.delivery {
    margin-bottom: 16px;
    position: relative;
}

    .delivery::before, .delivery::after {
        content: "";
        position: absolute;
        height: 1px;
        left: 50%;
        transform: translateX(-50%);
        background-color: rgba(34, 43, 89, 0.1490196078);
        bottom: 0;
        max-width: 1040px;
        width: calc(100% - 32px);
    }

.delivery__title {
    border-bottom: 1px solid rgba(34, 43, 89, 0.1490196078);
}

.delivery__top {
    font-size: 14px;
    line-height: 114.285714%; /* 16/14 */
}

.delivery__text {
    font-size: 14px;
    line-height: 142.857143%; /* 20/14 */
}

.delivery__contacts {
    font-size: 14px;
    line-height: 114.285714%; /* 16/14 */
}

    .delivery__contacts p:not(:last-child) {
        margin-bottom: 4px;
    }

.delivery__contactstel {
    font-size: 20px;
    line-height: 140%; /* 28/20 */
}
/* Generated by vite-plugin-svg-spritemap */
body::after {
    content: "";
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.8s ease 0s;
    pointer-events: none;
    z-index: 149;
}

[data-fls-popup-open] body::after {
    opacity: 1;
}

[data-fls-popup] {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 30px 10px;
    transition: visibility 0.8s ease 0s;
    visibility: hidden;
    pointer-events: none;
}

    [data-fls-popup][data-fls-popup-active] {
        z-index: 150;
        visibility: visible;
        overflow: auto;
        pointer-events: auto;
    }

[data-fls-popup-active] [data-fls-popup-body] {
    visibility: visible;
    transform: scale(1);
}

[data-fls-popup-wrapper] {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100%;
    flex: 1 1 auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

[data-fls-popup-body] {
    visibility: hidden;
    transform: scale(0);
    transition: transform 0.3s ease 0s, visibility 0.3s ease 0s;
    background-color: var(--whiteColor);
    padding: 24px;
    width: 100%;
    max-width: 330px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.3019607843), 0px 8px 12px 6px rgba(0, 0, 0, 0.1490196078);
}

[data-fls-popup-youtube-place] iframe {
    width: 100%;
    aspect-ratio: 16/9;
}

.popup__blocks:not(:last-child) {
    margin-bottom: 24px;
}

.popup__block:not(:last-child) {
    margin-bottom: 24px;
}

.popup__title {
    font-size: 20px;
    font-weight: 500;
    line-height: 115%; /* 23/20 */
}

    .popup__title:not(:last-child) {
        margin-bottom: 24px;
    }

.popup__cityoptions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.popup__cityoptionsitem {
    position: relative;
    cursor: pointer;
}

.popup__cityoptionsinput {
    width: 0;
    height: 0;
    opacity: 0;
    position: absolute;
}

    .popup__cityoptionsinput:focus-visible + .popup__cityoptionstext {
        outline: 1px solid #000;
    }

    .popup__cityoptionsinput:checked + .popup__cityoptionstext:after {
        background: url("../assets/img/check-green.svg") center/80% 80% no-repeat;
    }

.popup__cityoptionstext {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    gap: 8px;
}

    .popup__cityoptionstext:after {
        content: "";
        align-self: flex-start;
        width: 16px;
        height: 16px;
        flex: 0 0 16px;
    }

.popup__button {
    width: 100%;
}

.popup-signin__top {
    display: flex;
    gap: 12px;
}

    .popup-signin__top:not(:last-child) {
        margin-bottom: 24px;
    }

.popup-signin__topbutton {
    border-bottom: 1px dashed rgba(43, 42, 41, 0.8);
    flex-wrap: wrap;
    font-size: 20px;
    line-height: 115%; /* 23/20 */
    color: rgba(43, 42, 41, 0.6980392157);
}

    .popup-signin__topbutton._active {
        border-bottom: none;
        font-weight: 500;
        color: var(--mainColor);
    }

.popup-signin__toptext {
    font-size: 14px;
    line-height: 142.857143%; /* 20/14 */
}

.popup-signin__options {
    display: flex;
    align-items: center;
    gap: 24px;
}

    .popup-signin__options:not(:last-child) {
        margin-bottom: 24px;
    }

.popup-signin__optionsitem {
    position: relative;
    cursor: pointer;
}

.popup-signin__optionsinput {
    width: 0;
    height: 0;
    opacity: 0;
    position: absolute;
}

    .popup-signin__optionsinput:focus-visible + .popup-signin__optionstext {
        outline: 1px solid #000;
    }

    .popup-signin__optionsinput:checked + .popup-signin__optionstext:before {
        background-color: var(--mainColor);
        border-color: var(--mainColor);
    }

    .popup-signin__optionsinput:checked + .popup-signin__optionstext:after {
        transform: scale(1);
    }

.popup-signin__optionstext {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    gap: 8px;
    font-size: 12px;
    line-height: 116.666667%; /* 14/12 */
    color: rgba(43, 42, 41, 0.5019607843);
}

    .popup-signin__optionstext:before {
        content: "";
        align-self: flex-start;
        width: 16px;
        height: 16px;
        flex: 0 0 16px;
        border-radius: 50%;
        border: 1px solid #cad5e2;
    }

    .popup-signin__optionstext:after {
        content: "";
        transition: all 0.3s ease 0s;
        transform: scale(0);
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background-color: var(--whiteColor);
        position: absolute;
        left: 5px;
        top: 5px;
    }

.popup-signin__inprows:not(:last-child) {
    margin-bottom: 24px;
}

.popup-signin__inprow:not(:last-child) {
    margin-bottom: 16px;
}

.popup-signin__bottomtext {
    font-size: 12px;
    line-height: 116.666667%; /* 14/12 */
    color: rgba(43, 42, 41, 0.5019607843);
}

    .popup-signin__bottomtext:not(:last-child) {
        margin-bottom: 24px;
    }

.popup-signin__checks:not(:last-child) {
    margin-bottom: 24px;
}

.popup-signin__checks .checkbox:not(:last-child) {
    margin-bottom: 8px;
}

.popup-signin__submit {
    width: 100%;
}

.popup-thanks__top {
    font-size: 20px;
    line-height: 115%; /* 23/20 */
    margin-bottom: 24px;
    font-weight: 500;
}

.popup-thanks__text {
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 118.75%; /* 19/16 */
}

    .popup-thanks__text p:not(:last-child) {
        margin-bottom: 16px;
    }

.popup-thanks__button {
    width: 100%;
}
/* Generated by vite-plugin-svg-spritemap */
.swiper {
    overflow: hidden;
}

.swiper-initialized {
    touch-action: pan-y;
}

.swiper-wrapper {
    width: 100%;
    height: 100%;
    box-sizing: content-box;
    display: flex;
    position: relative;
}

.swiper-vertical .swiper-wrapper {
    flex-direction: column;
}

.swiper-autoheight .swiper-wrapper {
    align-items: flex-start;
}

.swiper-initialized .swiper-slide {
    flex-shrink: 0;
}

.swiper-android .swiper-slide,
.swiper-android .swiper-wrapper {
    transform: translate3d(0px, 0, 0);
}

.swiper-wrapper-link:hover {
    cursor: pointer;
}

.swiper-button-lock {
    display: none !important;
}
/* Generated by vite-plugin-svg-spritemap */
.quantity {
    height: 40px;
    display: flex;
    border: 1px solid rgba(43, 42, 41, 0.3019607843);
    background-color: var(--lightGray);
}

.quantity__button {
    flex: 0 0 45px;
    position: relative;
    cursor: pointer;
    transition: background-color 0.3s;
}

    .quantity__button::before, .quantity__button::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        margin: 0px 0px 0px -4.5px;
        background-color: #0f172b;
        width: 11px;
        height: 2px;
    }

    .quantity__button:active {
        background-color: rgba(43, 42, 41, 0.3019607843);
    }

.quantity__button--plus::before {
    transform: rotate(-90deg);
}

.quantity__input {
    flex: 1 1 auto;
}

    .quantity__input input {
        height: 100%;
        color: var(--mainColor);
        width: 100%;
        text-align: center;
        font-weight: 500;
    }
/* Generated by vite-plugin-svg-spritemap */ /* Generated by vite-plugin-svg-spritemap */ /* Generated by vite-plugin-svg-spritemap */

.cart-btn {
    width: 170px;
}

.warn-block {
    position: fixed;
    left: 0;
    width: 100%;
    bottom: 0;
    background-color: var(--yellowColor);
    z-index: 3;
    transition: opacity 0.3s, visibility 0.3s;
}

    .warn-block._hidden {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

.warn-block__body {
    display: flex;
    align-items: center;
}

.warn-block__warn {
    display: flex;
    align-items: center;
}

    .warn-block__warn span {
        font-weight: 500;
    }

    .warn-block__warn p {
        margin-bottom: 0;
    }

    .warn-block__warn::before {
        display: flex;
        justify-content: center;
        align-items: center;
    }

.warn-block__button {
    padding: 4px 7px;
    border: 1px solid var(--mainColor);
    transition: background-color 0.3s;
}
/* Generated by vite-plugin-svg-spritemap */
.tabs__navigation {
    display: flex;
}

.tabs__title {
    border: 1px solid #eee;
    padding: 10px 15px;
    border-radius: 5px;
}

    .tabs__title.--tab-active {
        border: 1px solid #000;
    }

.tabs__content {
    border: 1px solid #eee;
    padding: 10px 15px;
}

@font-face {
    font-family: "lg";
    src: url("../assets/fonts/lg.woff2?io9a6k") format("woff2");
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

.lg-icon {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: "lg" !important;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.lg-container {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.lg-next,
.lg-prev {
    background-color: rgba(0, 0, 0, 0.45);
    border-radius: 2px;
    color: #999;
    cursor: pointer;
    display: block;
    font-size: 22px;
    margin-top: -10px;
    padding: 8px 10px 9px;
    position: absolute;
    top: 50%;
    z-index: 1084;
    outline: none;
    border: none;
}

    .lg-next.disabled,
    .lg-prev.disabled {
        opacity: 0 !important;
        cursor: default;
    }

    .lg-next:hover:not(.disabled),
    .lg-prev:hover:not(.disabled) {
        color: #fff;
    }

.lg-single-item .lg-next,
.lg-single-item .lg-prev {
    display: none;
}

.lg-next {
    right: 20px;
}

    .lg-next:before {
        content: "\e095";
    }

.lg-prev {
    left: 20px;
}

    .lg-prev:after {
        content: "\e094";
    }

@-webkit-keyframes lg-right-end {
    0% {
        left: 0;
    }

    50% {
        left: -30px;
    }

    100% {
        left: 0;
    }
}

@-moz-keyframes lg-right-end {
    0% {
        left: 0;
    }

    50% {
        left: -30px;
    }

    100% {
        left: 0;
    }
}

@-ms-keyframes lg-right-end {
    0% {
        left: 0;
    }

    50% {
        left: -30px;
    }

    100% {
        left: 0;
    }
}

@keyframes lg-right-end {
    0% {
        left: 0;
    }

    50% {
        left: -30px;
    }

    100% {
        left: 0;
    }
}

@-webkit-keyframes lg-left-end {
    0% {
        left: 0;
    }

    50% {
        left: 30px;
    }

    100% {
        left: 0;
    }
}

@-moz-keyframes lg-left-end {
    0% {
        left: 0;
    }

    50% {
        left: 30px;
    }

    100% {
        left: 0;
    }
}

@-ms-keyframes lg-left-end {
    0% {
        left: 0;
    }

    50% {
        left: 30px;
    }

    100% {
        left: 0;
    }
}

@keyframes lg-left-end {
    0% {
        left: 0;
    }

    50% {
        left: 30px;
    }

    100% {
        left: 0;
    }
}

.lg-outer.lg-right-end .lg-object {
    -webkit-animation: lg-right-end 0.3s;
    -o-animation: lg-right-end 0.3s;
    animation: lg-right-end 0.3s;
    position: relative;
}

.lg-outer.lg-left-end .lg-object {
    -webkit-animation: lg-left-end 0.3s;
    -o-animation: lg-left-end 0.3s;
    animation: lg-left-end 0.3s;
    position: relative;
}

.lg-toolbar {
    z-index: 1082;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.lg-media-overlap .lg-toolbar {
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
}

.lg-toolbar .lg-icon {
    color: #999;
    cursor: pointer;
    float: right;
    font-size: 24px;
    height: 47px;
    line-height: 27px;
    padding: 10px 0;
    text-align: center;
    width: 50px;
    text-decoration: none !important;
    outline: medium none;
    will-change: color;
    -webkit-transition: color 0.2s linear;
    -o-transition: color 0.2s linear;
    transition: color 0.2s linear;
    background: none;
    border: none;
    box-shadow: none;
}

    .lg-toolbar .lg-icon.lg-icon-18 {
        font-size: 18px;
    }

    .lg-toolbar .lg-icon:hover {
        color: #fff;
    }

.lg-toolbar .lg-close:after {
    content: "\e070";
}

.lg-toolbar .lg-maximize {
    font-size: 22px;
}

    .lg-toolbar .lg-maximize:after {
        content: "\e90a";
    }

.lg-toolbar .lg-download:after {
    content: "\e0f2";
}

.lg-sub-html {
    color: #eee;
    font-size: 16px;
    padding: 10px 40px;
    text-align: center;
    z-index: 1080;
    opacity: 0;
    -webkit-transition: opacity 0.2s ease-out 0s;
    -o-transition: opacity 0.2s ease-out 0s;
    transition: opacity 0.2s ease-out 0s;
}

    .lg-sub-html h4 {
        margin: 0;
        font-size: 13px;
        font-weight: bold;
    }

    .lg-sub-html p {
        font-size: 12px;
        margin: 5px 0 0;
    }

    .lg-sub-html a {
        color: inherit;
    }

        .lg-sub-html a:hover {
            text-decoration: underline;
        }

.lg-media-overlap .lg-sub-html {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
}

.lg-item .lg-sub-html {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
}

.lg-error-msg {
    font-size: 14px;
    color: #999;
}

.lg-counter {
    color: #999;
    display: inline-block;
    font-size: 16px;
    padding-left: 20px;
    padding-top: 12px;
    height: 47px;
    vertical-align: middle;
}

.lg-closing .lg-toolbar,
.lg-closing .lg-prev,
.lg-closing .lg-next,
.lg-closing .lg-sub-html {
    opacity: 0;
    -webkit-transition: -webkit-transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear;
    -moz-transition: -moz-transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear;
    -o-transition: -o-transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear;
    transition: transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear;
}

body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable) .lg-img-wrap,
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable) .lg-video-cont,
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable) .lg-media-cont {
    opacity: 0;
    -moz-transform: scale3d(0.5, 0.5, 0.5);
    -o-transform: scale3d(0.5, 0.5, 0.5);
    -ms-transform: scale3d(0.5, 0.5, 0.5);
    -webkit-transform: scale3d(0.5, 0.5, 0.5);
    transform: scale3d(0.5, 0.5, 0.5);
    will-change: transform, opacity;
    -webkit-transition: -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
    -moz-transition: -moz-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
    -o-transition: -o-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
    transition: transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
}

body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable).lg-complete .lg-img-wrap,
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable).lg-complete .lg-video-cont,
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable).lg-complete .lg-media-cont {
    opacity: 1;
    -moz-transform: scale3d(1, 1, 1);
    -o-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}

.lg-icon:focus-visible {
    color: #fff;
    border-radius: 3px;
    outline: 1px dashed rgba(255, 255, 255, 0.6);
}

.lg-toolbar .lg-icon:focus-visible {
    border-radius: 8px;
    outline-offset: -5px;
}

.lg-group:after {
    content: "";
    display: table;
    clear: both;
}

.lg-container {
    display: none;
    outline: none;
}

    .lg-container.lg-show {
        display: block;
    }

.lg-on {
    scroll-behavior: unset;
}

.lg-overlay-open {
    overflow: hidden;
}

.lg-toolbar,
.lg-prev,
.lg-next,
.lg-pager-outer,
.lg-hide-sub-html .lg-sub-html {
    opacity: 0;
    will-change: transform, opacity;
    -webkit-transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
    -moz-transition: -moz-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
    -o-transition: -o-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
    transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-show-in .lg-toolbar,
.lg-show-in .lg-prev,
.lg-show-in .lg-next,
.lg-show-in .lg-pager-outer {
    opacity: 1;
}

.lg-show-in.lg-hide-sub-html .lg-sub-html {
    opacity: 1;
}

.lg-show-in .lg-hide-items .lg-prev {
    opacity: 0;
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
}

.lg-show-in .lg-hide-items .lg-next {
    opacity: 0;
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
}

.lg-show-in .lg-hide-items .lg-toolbar {
    opacity: 0;
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
}

.lg-show-in .lg-hide-items.lg-hide-sub-html .lg-sub-html {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
}

.lg-outer {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    text-align: left;
    opacity: 0.001;
    outline: none;
    will-change: auto;
    overflow: hidden;
    -webkit-transition: opacity 0.15s ease 0s;
    -o-transition: opacity 0.15s ease 0s;
    transition: opacity 0.15s ease 0s;
}

    .lg-outer * {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    .lg-outer.lg-zoom-from-image {
        opacity: 1;
    }

    .lg-outer.lg-visible {
        opacity: 1;
    }

    .lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-prev-slide,
    .lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-next-slide,
    .lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-current {
        -webkit-transition-duration: inherit !important;
        transition-duration: inherit !important;
        -webkit-transition-timing-function: inherit !important;
        transition-timing-function: inherit !important;
    }

    .lg-outer.lg-css3.lg-dragging .lg-item.lg-prev-slide,
    .lg-outer.lg-css3.lg-dragging .lg-item.lg-next-slide,
    .lg-outer.lg-css3.lg-dragging .lg-item.lg-current {
        -webkit-transition-duration: 0s !important;
        transition-duration: 0s !important;
        opacity: 1;
    }

    .lg-outer.lg-grab img.lg-object {
        cursor: -webkit-grab;
        cursor: -moz-grab;
        cursor: -o-grab;
        cursor: -ms-grab;
        cursor: grab;
    }

    .lg-outer.lg-grabbing img.lg-object {
        cursor: move;
        cursor: -webkit-grabbing;
        cursor: -moz-grabbing;
        cursor: -o-grabbing;
        cursor: -ms-grabbing;
        cursor: grabbing;
    }

    .lg-outer .lg-content {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }

    .lg-outer .lg-inner {
        width: 100%;
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        -webkit-transition: opacity 0s;
        -o-transition: opacity 0s;
        transition: opacity 0s;
        white-space: nowrap;
    }

    .lg-outer .lg-item {
        display: none !important;
    }

        .lg-outer .lg-item:not(.lg-start-end-progress) {
            background: url("data:image/gif;base64,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") no-repeat scroll center center transparent;
        }

    .lg-outer.lg-css3 .lg-prev-slide,
    .lg-outer.lg-css3 .lg-current,
    .lg-outer.lg-css3 .lg-next-slide {
        display: inline-block !important;
    }

    .lg-outer.lg-css .lg-current {
        display: inline-block !important;
    }

    .lg-outer .lg-item,
    .lg-outer .lg-img-wrap {
        display: inline-block;
        text-align: center;
        position: absolute;
        width: 100%;
        height: 100%;
    }

        .lg-outer .lg-item:before,
        .lg-outer .lg-img-wrap:before {
            content: "";
            display: inline-block;
            height: 100%;
            vertical-align: middle;
        }

    .lg-outer .lg-img-wrap {
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        white-space: nowrap;
        font-size: 0;
    }

    .lg-outer .lg-item.lg-complete {
        background-image: none;
    }

    .lg-outer .lg-item.lg-current {
        z-index: 1060;
    }

    .lg-outer .lg-object {
        display: inline-block;
        vertical-align: middle;
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        position: relative;
    }

    .lg-outer .lg-empty-html.lg-sub-html,
    .lg-outer .lg-empty-html .lg-sub-html {
        display: none;
    }

    .lg-outer.lg-hide-download .lg-download {
        opacity: 0.75;
        pointer-events: none;
    }

    .lg-outer .lg-first-slide .lg-dummy-img {
        position: absolute;
        top: 50%;
        left: 50%;
    }

    .lg-outer.lg-components-open:not(.lg-zoomed) .lg-components {
        -webkit-transform: translate3d(0, 0%, 0);
        transform: translate3d(0, 0%, 0);
        opacity: 1;
    }

    .lg-outer.lg-components-open:not(.lg-zoomed) .lg-sub-html {
        opacity: 1;
        transition: opacity 0.2s ease-out 0.15s;
    }

    .lg-outer .lg-media-cont {
        text-align: center;
        display: inline-block;
        vertical-align: middle;
        position: relative;
    }

        .lg-outer .lg-media-cont .lg-object {
            width: 100% !important;
            height: 100% !important;
        }

    .lg-outer .lg-has-iframe .lg-media-cont {
        -webkit-overflow-scrolling: touch;
        overflow: auto;
    }

.lg-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1040;
    background-color: #000;
    opacity: 0;
    will-change: auto;
    -webkit-transition: opacity 333ms ease-in 0s;
    -o-transition: opacity 333ms ease-in 0s;
    transition: opacity 333ms ease-in 0s;
}

    .lg-backdrop.in {
        opacity: 1;
    }

.lg-css3.lg-no-trans .lg-prev-slide,
.lg-css3.lg-no-trans .lg-next-slide,
.lg-css3.lg-no-trans .lg-current {
    -webkit-transition: none 0s ease 0s !important;
    -moz-transition: none 0s ease 0s !important;
    -o-transition: none 0s ease 0s !important;
    transition: none 0s ease 0s !important;
}

.lg-css3.lg-use-css3 .lg-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
}

.lg-css3.lg-fade .lg-item {
    opacity: 0;
}

    .lg-css3.lg-fade .lg-item.lg-current {
        opacity: 1;
    }

    .lg-css3.lg-fade .lg-item.lg-prev-slide,
    .lg-css3.lg-fade .lg-item.lg-next-slide,
    .lg-css3.lg-fade .lg-item.lg-current {
        -webkit-transition: opacity 0.1s ease 0s;
        -moz-transition: opacity 0.1s ease 0s;
        -o-transition: opacity 0.1s ease 0s;
        transition: opacity 0.1s ease 0s;
    }

.lg-css3.lg-use-css3 .lg-item.lg-start-progress {
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
    -moz-transition: -moz-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
    -o-transition: -o-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
    transition: transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
}

.lg-css3.lg-use-css3 .lg-item.lg-start-end-progress {
    -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
    -moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
    -o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
    transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
}

.lg-css3.lg-slide.lg-use-css3 .lg-item {
    opacity: 0;
}

    .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }

    .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }

    .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }

    .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide,
    .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide,
    .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
        -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
        -moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
        -o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
        transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
    }

.lg-container {
    display: none;
}

    .lg-container.lg-show {
        display: block;
    }

    .lg-container.lg-dragging-vertical .lg-backdrop {
        -webkit-transition-duration: 0s !important;
        transition-duration: 0s !important;
    }

    .lg-container.lg-dragging-vertical .lg-css3 .lg-item.lg-current {
        -webkit-transition-duration: 0s !important;
        transition-duration: 0s !important;
        opacity: 1;
    }

.lg-inline .lg-backdrop,
.lg-inline .lg-outer {
    position: absolute;
}

.lg-inline .lg-backdrop {
    z-index: 1;
}

.lg-inline .lg-outer {
    z-index: 2;
}

.lg-inline .lg-maximize:after {
    content: "\e909";
}

.lg-components {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    will-change: transform;
    -webkit-transition: -webkit-transform 0.35s ease-out 0s;
    -moz-transition: -moz-transform 0.35s ease-out 0s;
    -o-transition: -o-transform 0.35s ease-out 0s;
    transition: transform 0.35s ease-out 0s;
    z-index: 1080;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
}

.wrapper-login {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.login {
    width: 400px;
    max-width: 100%;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

    .login h2 {
        font-size: 18px;
        padding-bottom: 13px;
    }

    .login .personal__inputs {
        font-size: 18px;
        padding-top: 13px;
    }

    .login .invalid-feedback {
        position: relative;
        top: 4px;
        font-size: 16px;
        color: var(--darkRed);
    }

    .login .inprow {
        margin-bottom: 20px !important;
    }

    .login .validation-summary-errors {
        color: var(--darkRed);
        font-size: 16px;
    }

@media (max-width: 67em) {
    .personal__orderrow {
        gap: 16px;
    }

    .product__smallslide {
        aspect-ratio: 106/86;
    }

    .product__bigslider {
        margin-bottom: 9px;
    }
}

@media (max-width: 61.99875em) {
    .personal::after {
        display: none;
    }

    .personal__left {
        display: none;
    }

        .personal__left.personal__left--db {
            display: flex;
        }

    .article__table table th,
    .article__table table td {
        padding: 8px;
    }
}

@media (max-width: 47.99875em) {
    .wrapper:has(.warn-block) .footer {
        margin-bottom: 80px;
    }

    .wrapper:has(.warn-block._hidden) .footer {
        margin-bottom: 48px;
    }

    .title-h1 {
        font-size: 24px;
        line-height: 116.666667%; /* 28/24 */
    }

    .title-h2 {
        font-size: 20px;
        line-height: 115%; /* 23/20 */
    }

    .title-h3 {
        font-size: 18px;
    }

    .crumbs {
        padding: 16px 0;
    }

    .cityblock__popbutton span {
        font-size: 18px;
        line-height: 116.666667%; /* 21/18 */
    }

    .cityblock__popbutton::before {
        width: 20px;
        height: 20px;
        flex: 0 0 20px;
        font-size: 18px;
        font-weight: 700;
    }

    .prod-item {
        padding: 8px 0;
        display: grid;
        grid-template-columns: 200px 1fr;
        grid-template-rows: 1fr 36px;
        align-items: start;
        gap: 8px;
    }

    .prod-item__image {
        aspect-ratio: 128/141;
        grid-row: 1/3;
        grid-column: 1/2;
    }

    .prod-item__info {
        padding: 4px;
        font-size: 12px;
    }

    .prod-item__perc {
        padding: 4px;
        font-size: 12px;
    }

    .prod-item__content {
        padding-top: 4px;
    }

    .prod-item__top {
        margin-bottom: 30px;
    }

    .prod-item__toptext {
        font-size: 12px;
        line-height: 116.666667%; /* 14/12 */
    }

    .prod-item__name {
        font-size: 16px;
        line-height: 118.75%; /* 19/16 */
    }

    .prod-item__bottom {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }

    .prod-item__opttop {
        font-size: 12px;
        line-height: 116.666667%; /* 14/12 */
    }

    .prod-item__optionstext {
        font-size: 12px;
        line-height: 116.666667%; /* 14/12 */
    }

    .prod-item__bontop {
        margin-bottom: 6px;
        font-size: 12px;
        line-height: 116.666667%; /* 14/12 */
    }

    .prod-item__pricecont {
        gap: 4px;
    }

    .prod-item__price {
        font-size: 16px;
        line-height: 118.75%; /* 19/16 */
    }

    .prod-item__oldprice {
        font-size: 14px;
    }

    .prod-item__right {
        align-self: end;
    }

    .product__content .prod-item__right {
        width: 100% !important;
    }

    .prod-item__right .quantity {
        height: 36px;
    }

    .prod-item__favbutton {
        width: 36px;
        height: 36px;
        flex: 0 0 36px;
    }

    .prod-item__trashbutton {
        width: 36px;
        height: 36px;
        flex: 0 0 36px;
    }

    .spollers__item:not(:last-child) {
        margin-bottom: 8px;
    }

    .menu__close {
        width: 24px;
        height: 24px;
    }

        .menu__close img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

    .menu__body {
        background-color: var(--lightCream);
        position: fixed;
        width: 100%;
        height: 100svh;
        left: -100%;
        top: 0;
        overflow: auto;
        padding: 48px 16px;
        transition: left 0.3s;
        z-index: 7;
        display: grid;
        grid-template-columns: 1fr 24px;
        grid-template-rows: auto auto 1fr;
        align-items: center;
    }

    [data-fls-menu-open] .menu__body {
        left: 0;
    }

    .menu__list {
        margin-top: 48px;
    }

    .menu__item:not(:last-child) {
        margin-bottom: 32px;
    }

    .menu__link {
        font-size: 24px;
        line-height: 116.666667%; /* 28/24 */
        font-weight: 500;
    }

    .header__logo {
        display: none;
    }

    .header__icblock {
        position: fixed;
        bottom: 0;
        left: 0;
        padding: 4px 0;
        width: 100%;
        background-color: var(--lightCream);
        z-index: 5;
    }

    .header__iclinks {
        align-items: center;
        margin-bottom: 0;
        padding-left: 0;
    }

    .header__icitem {
        flex: 1 1 20%;
    }

    /* Мобилка: скрываем "Выйти" (перенесён в выдвижное меню) */
    .header__icitem--logout {
        display: none;
    }

    .header__icicon {
        width: 24px;
        height: 24px;
        flex: 0 0 24px;
    }

    .header__iclinkname {
        font-size: 12px;
        line-height: 116.666667%; /* 14/12 */
        color: #999999;
    }

    [data-fls-menu] .header__iclinkname {
        color: var(--mainColor);
        font-size: 14px;
        line-height: 114.285714%; /* 16/14 */
    }

    .footer__left:not(:last-child) {
        margin-bottom: 24px;
    }

    .footer__menu:not(:last-child) {
        margin-bottom: 24px;
    }

    .first__container {
        padding: 0;
    }

    .first__body:not(:last-child) {
        margin-bottom: 16px;
    }

    .first__slide {
        padding: 85px 15px;
    }

    .first__toptext {
        font-size: 16px;
        line-height: 118.75%; /* 19/16 */
    }

    .first__title {
        font-size: 31px;
        line-height: 118.75%; /* 19/16 */
    }

    .first__swiper-button {
        display: none;
    }

    .catalog {
        padding-top: 32px;
    }

    .catalog__title {
        margin-bottom: 16px;
    }

    .catalog__tabstitle {
        font-size: 14px;
        line-height: 114.285714%; /* 16/14 */
    }

    .infoblock {
        padding-top: 16px;
        padding-bottom: 32px;
    }

    .infoblock__left:not(:last-child) {
        margin-bottom: 16px;
    }

    .infoblock__text {
        font-size: 12px;
        line-height: 150%; /* 18/12 */
    }

    .card {
        padding-bottom: 16px;
        border: 0;
        display: block;
    }

    .card__title:not(:last-child) {
        margin-bottom: 24px;
    }

    .card__blocks {
        padding-bottom: 36px;
    }

        .card__blocks:not(:last-child) {
            margin-bottom: 28px;
        }

    .card__block:not(:last-child) {
        margin-bottom: 20px;
    }

    .card__blockitems {
        margin-bottom: 8px;
    }

    .card__bottomrow {
        font-size: 16px;
        line-height: 118.75%; /* 19/16 */
    }

        .card__bottomrow::before {
            display: none;
        }

    .card__total {
        font-size: 16px;
        line-height: 118.75%; /* 19/16 */
    }

    .card-footer__address:not(:last-child) {
        margin-bottom: 16px;
    }

    .card-footer__promo:not(:last-child) {
        margin-bottom: 16px;
    }

    .card-footer__promobutton {
        padding-left: 15px;
        padding-right: 15px;
    }

    .card-footer__textareacont:not(:last-child) {
        margin-bottom: 16px;
    }

    .card-footer__pay {
        border-bottom: 1px solid rgba(34, 43, 89, 0.1490196078);
        padding-bottom: 16px;
    }

    .card-footer__paytitle:not(:last-child) {
        margin-bottom: 16px;
    }

    .card-footer__payrows:not(:last-child) {
        margin-bottom: 20px;
    }

    .card-footer__payrow {
        font-size: 16px;
        line-height: 118.75%; /* 19/16 */
    }

        .card-footer__payrow::before {
            display: none;
        }

    .card-footer__paybottom {
        padding: 16px;
    }

    .card-footer__paytotal {
        justify-content: space-between;
    }

        .card-footer__paytotal:not(:last-child) {
            margin-bottom: 8px;
        }

    .card-footer__paybutton {
        width: 100%;
    }

    .personal__title {
        margin-bottom: 24px;
    }

    .personal__inputs:not(:last-child) {
        margin-bottom: 28px;
    }

    .personal__orderrow {
        padding: 8px 0 16px 0;
    }

    .personal__orderitem {
        flex: 0 1 calc((100% - 16px) / 2);
    }

    .personal__orderlink {
        flex: 1 1 100%;
    }

    .product {
        padding-bottom: 32px;
    }

    .product__top {
        margin-bottom: 24px;
    }

    .product__sliders {
        margin-bottom: 12px;
    }

    .product__info {
        padding: 4px;
        font-size: 12px;
    }

    .product__perc {
        padding: 4px;
        font-size: 12px;
    }

    .product__conttop {
        margin-bottom: 16px;
    }

    .product__descrows {
        margin-bottom: 16px;
    }

    .product__bottom {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
        margin-bottom: 16px;
    }

    .product__optcont {
        flex: 0 1 calc((100% - 12px) / 2);
    }

    .product__opttop {
        font-size: 12px;
        line-height: 116.666667%; /* 14/12 */
    }

    .product__optionstext {
        font-size: 12px;
        line-height: 116.666667%; /* 14/12 */
    }

    .product__boncont {
        flex: 0 1 calc((100% - 12px) / 2);
    }

    .product__bontop {
        margin-bottom: 6px;
        font-size: 12px;
        line-height: 116.666667%; /* 14/12 */
    }

    .product__pricecont {
        gap: 4px;
    }

    .product__price {
        font-size: 16px;
        line-height: 118.75%; /* 19/16 */
    }

    .product__oldprice {
        font-size: 14px;
    }

    .product__right .quantity {
        height: 36px;
    }

    .product__favbutton {
        width: 36px;
        height: 36px;
        flex: 0 0 36px;
    }

    .product__chartop {
        margin-bottom: 16px;
    }

    .product__charblock:not(:last-child) {
        margin-bottom: 16px;
    }

    .comments__top {
        margin-bottom: 24px;
    }

    .comments__topleft {
        margin-bottom: 10px;
    }

    .comments__row {
        margin-bottom: 16px;
    }

    .comments__item:not(:last-child) {
        margin-bottom: 16px;
    }

    .article {
        padding-bottom: 16px;
    }

    .article__container .title-h1:not(:last-child),
    .article__container .title-h2:not(:last-child) {
        margin-bottom: 24px;
    }

    .article__container .title-h3:not(:last-child) {
        margin-bottom: 16px;
    }

    .article__image:not(:last-child) {
        margin-bottom: 24px;
    }

    .article__flexblock {
        flex-direction: column;
    }

    .article__images {
        gap: 16px;
        grid-template-columns: 1fr 1fr;
    }

    .article__imagesitem-1 {
        grid-column: 1/3;
        grid-row: 1/2;
    }

    .article__imagesitem-2 {
        grid-column: 1/2;
        grid-row: 2/4;
    }

    .article__imagesitem-3 {
        grid-column: 2/3;
        grid-row: 2/3;
        aspect-ratio: 242/184;
    }

    .article__imagesitem-4 {
        grid-column: 2/3;
        grid-row: 3/4;
        aspect-ratio: 242/184;
    }

    .article__table table th,
    .article__table table td {
        min-width: 123px;
    }

    .delivery {
        padding-bottom: 24px;
    }

    .delivery__title {
        padding-bottom: 16px;
        margin-bottom: 24px;
    }

    .delivery__top {
        margin-bottom: 16px;
    }

    .quantity__input input {
        font-size: 14px;
        line-height: 114.285714%; /* 16/14 */
    }

    .warn-block {
        bottom: 48px;
    }

    .warn-block__body {
        padding: 5px 0;
        gap: 30px;
    }

    .warn-block__warn {
        gap: 4px;
        font-size: 12px;
        line-height: 116.666667%; /* 14/12 */
    }

        .warn-block__warn::before {
            width: 16px;
            height: 16px;
            flex: 0 0 16px;
            font-size: 14px;
        }

    .warn-block__button {
        font-size: 10px;
        line-height: 121.428571%; /* 17/14 */
    }
}

@media (max-width: 29.99875em) {
    .prod-item {
        grid-template-columns: 128px 1fr;
    }

    .prod-item__top {
        margin-bottom: 8px;
    }
}

@media (max-width: 23.4375em) {
    .prod-item__bottom {
        gap: 8px;
    }

    .prod-item__optionstext {
        padding: 7px;
    }
}

@media (min-width: 47.99875em) and (any-hover: hover) {
    .first__swiper-button:active:hover {
        background-color: #ddb083;
    }

    .first__swiper-button:hover {
        background-color: var(--creamColor);
    }
}

@media (min-width: 47.99875em) {
    .wrapper:has(.warn-block) .footer {
        margin-bottom: 81px;
    }

    .wrapper:has(.warn-block._hidden) .footer {
        margin-bottom: 0;
    }

    .title-h1 {
        font-size: 28px;
        line-height: 118.75%; /* 38/32 */
    }

    .title-h2 {
        font-size: 24px;
        line-height: 116.666667%; /* 28/24 */
    }

    .title-h3 {
        font-size: 20px;
    }

    .crumbs {
        padding: 32px 0;
    }

    .cityblock__popbutton span {
        font-size: 14px;
        line-height: 114.285714%; /* 16/14 */
    }

    .cityblock__popbutton::before {
        width: 16px;
        height: 16px;
        flex: 0 0 16px;
        font-size: 14px;
    }

    .prod-item {
        padding-top: 7px;
        padding-bottom: 22px;
        border-bottom: 1px solid rgba(34, 43, 89, 0.1490196078);
        display: flex;
        gap: 24px;
    }

        .prod-item:not(:last-child) {
            margin-bottom: 16px;
        }

    .prod-item__image {
        flex: 0 0 264px;
        aspect-ratio: 264/214;
        align-self: flex-start;
    }

    .prod-item__info {
        padding: 3.5px 8px;
        font-size: 18px;
    }

    .prod-item__perc {
        padding: 8px;
        font-size: 18px;
    }

    .prod-item__content {
        padding-top: 16px;
        flex: 1 1 auto;
    }

    .prod-item__top {
        margin-bottom: 16px;
    }

    .prod-item__toptext {
        font-size: 14px;
        line-height: 114.285714%; /* 16/14 */
    }

    .prod-item__name {
        font-size: 20px;
        line-height: 140%; /* 28/20 */
    }

    .prod-item__optcont {
        margin-bottom: 16px;
    }

    .prod-item__opttop {
        font-size: 14px;
        line-height: 114.285714%; /* 16/14 */
    }

    .prod-item__optionstext {
        font-size: 16px;
        line-height: 118.75%; /* 19/16 */
    }

    .prod-item__bontop {
        margin-bottom: 8px;
        font-size: 14px;
        line-height: 114.285714%; /* 16/14 */
    }

    .prod-item__pricecont {
        gap: 8px;
    }

    .prod-item__price {
        font-size: 20px;
        line-height: 116.666667%; /* 28/24 */
    }

    .prod-item__oldprice {
        font-size: 18px;
    }

    .prod-item__right {
        margin-left: auto;
        flex: 0 0 218px;
        align-self: flex-end;
    }

        .prod-item__right .quantity {
            height: 40px;
        }

    .prod-item__favbutton {
        width: 40px;
        height: 40px;
        flex: 0 0 40px;
    }

    .prod-item__trashbutton {
        width: 40px;
        height: 40px;
        flex: 0 0 40px;
    }

    .spollers__item:not(:last-child) {
        margin-bottom: 16px;
    }

    .menu__close {
        display: none;
    }

    .menu__body {
        display: flex;
        align-items: center;
        gap: 30px;
        justify-content: space-between;
    }

    .menu__city {
        width: 250px;
        flex: 0 0 250px;
    }

    .menu__list {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-end;
        column-gap: 32px;
        row-gap: 5px;
        font-size: 14px;
        line-height: 114.285714%; /* 16/14 */
        margin-bottom: 0;
    }

    .menu__link {
        font-size: 14px;
        line-height: 114.285714%; /* 16/14 */
    }

    .header__top {
        background-color: var(--lightCream);
        padding: 15px 0;
    }

    .header__menu {
        flex: 1 1 auto;
    }

    .header__bottom .header__container {
        display: flex;
        justify-content: space-between;
        gap: 20px;
        align-items: flex-end;
        padding-top: 26px;
        padding-bottom: 27px;
    }

    .header__bottom .span-full-name {
        margin: 0 0 30px 0;
        font-size: 18px;
    }

    .header__logo {
        width: 76px;
        flex: 0 0 76px;
    }

        .header__logo span {
            position: relative;
            top: 12px;
        }

    .header__icitem {
        flex: 0 0 112px;
        display: flex;
        justify-content: center;
    }

        .header__icitem:has([data-fls-menu]) {
            display: none;
        }

        /* Десктоп: скрываем "Выйти" из иконок (доступен в бургер-меню) */
        .header__icitem--logout {
            display: none;
        }

    .header__icicon {
        width: 32px;
        height: 32px;
        flex: 0 0 32px;
        margin-bottom: 4px;
    }

    .header__iclinkname {
        font-size: 14px;
        line-height: 114.285714%; /* 16/14 */
    }

    .footer__topbody {
        display: flex;
        flex-wrap: wrap;
        gap: 24px;
    }

    .footer__left {
        flex: 0 1 calc((100% - 48px) / 3);
    }

    .footer__menu {
        flex: 0 1 calc((100% - 48px) / 3);
    }

    .first__body:not(:last-child) {
        margin-bottom: 33px;
    }

    .first__slide {
        padding: 65px 65px 54px 65px;
    }

    .first__content {
        width: 61%;
    }

    .first__toptext {
        font-size: 18px;
        line-height: 116.666667%; /* 28/24 */
    }

    .first__title {
        font-size: 35px;
        line-height: 116.666667%; /* 28/24 */
    }

    .first__swiper-button-prev {
        left: -15px;
    }

    .first__swiper-button {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: var(--lightCream);
        font-size: 10px;
        transition: background-color 0.3s;
    }

        .first__swiper-button:active {
            background-color: #ddb083;
        }

    .first__swiper-button-next {
        right: -15px;
    }

    .catalog {
        padding-top: 48px;
    }

    .catalog__title {
        margin-bottom: 24px;
    }

    .catalog__tabstitle {
        font-size: 16px;
        line-height: 118.75%; /* 19/16 */
    }

    .catalog__tabscontent {
        padding-top: 16px;
        border-top: 1px solid rgba(34, 43, 89, 0.1490196078);
    }

    .infoblock {
        padding-top: 32px;
        padding-bottom: 48px;
    }

    .infoblock__container {
        display: flex;
        align-items: flex-start;
        gap: 20px;
    }

    .infoblock__left {
        flex: 1 1 auto;
    }

    .infoblock__text {
        font-size: 14px;
        line-height: 128.571429%; /* 18/14 */
    }

    .infoblock__right {
        flex: 0 0 325px;
    }

    .card {
        padding-bottom: 64px;
        display: block;
        border: 0;
    }

    .card__title:not(:last-child) {
        margin-bottom: 40px;
    }

    .card__blocks {
        padding-bottom: 48px;
    }

        .card__blocks:not(:last-child) {
            margin-bottom: 48px;
        }

    .card__block:not(:last-child) {
        margin-bottom: 16px;
    }

    .card__blockitems {
        margin-bottom: 16px;
    }

    .card__bottomrow {
        font-size: 20px;
        line-height: 115%; /* 23/20 */
    }

        .card__bottomrow::before {
            content: "";
            flex: 1 1 auto;
            order: 1;
            border-bottom: 1px dashed rgba(43, 42, 41, 0.3019607843);
            margin-bottom: 3px;
        }

        .card__bottomrow span:nth-child(1) {
            order: 0;
        }

        .card__bottomrow span:nth-child(2) {
            flex: 0 0 219px;
            order: 2;
        }

    .card__total {
        font-size: 20px;
        line-height: 115%; /* 23/20 */
    }

        .card__total span {
            flex: 0 0 220px;
        }

    .card-footer__address {
        max-width: 416px;
    }

    .card-footer__promo {
        max-width: 416px;
    }

    .card-footer__address:not(:last-child) {
        margin-bottom: 24px;
    }

    .card-footer__promo:not(:last-child) {
        margin-bottom: 24px;
    }

    .card-footer__promobutton {
        flex: 0 0 184px;
    }

    .card-footer__promo {
        max-width: 416px;
    }

    .card-footer__bons {
        max-width: 416px;
    }

    .card-footer__textareacont:not(:last-child) {
        margin-bottom: 24px;
    }

    .card-footer__paytitle:not(:last-child) {
        margin-bottom: 24px;
    }

    .card-footer__payrows:not(:last-child) {
        margin-bottom: 24px;
    }

    .card-footer__payrow {
        font-size: 20px;
        line-height: 115%; /* 23/20 */
    }

        .card-footer__payrow::before {
            content: "";
            flex: 1 1 auto;
            order: 1;
            border-bottom: 1px dashed rgba(43, 42, 41, 0.3019607843);
            margin-bottom: 3px;
        }

        .card-footer__payrow span:nth-child(1) {
            order: 0;
        }

        .card-footer__payrow span:nth-child(2) {
            flex: 0 0 219px;
            order: 2;
        }

    .card-footer__paybottom {
        display: flex;
        gap: 16px;
        align-items: center;
        justify-content: space-between;
        padding: 4px 4px 4px 8px;
    }

    .card-footer__paybutton {
        flex: 0 0 218px;
    }

    .personal__title {
        margin-bottom: 32px;
    }

    .personal__inputs:not(:last-child) {
        margin-bottom: 32px;
    }

    .personal__orderrow {
        padding: 8px 0;
    }

    .personal__orderitem {
        flex: 0 1 calc((100% - 171px - 48px) / 4);
    }

    .personal__orderlink {
        flex: 1 1 auto;
    }

    .personal__orderitem--empty {
        min-height: 1px;
    }

    .personal__orderlink--empty {
        visibility: hidden;
    }

    .product {
        padding-bottom: 48px;
    }

    .product__top {
        grid-template-columns: 1fr 1fr;
        display: grid;
        grid-template-rows: auto 1fr;
        column-gap: 24px;
        align-items: start;
        margin-bottom: 32px;
    }

    .product__sliders {
        grid-column: 1/2;
        grid-row: 1/3;
    }

    .product__info {
        padding: 3.5px 8px;
        font-size: 18px;
    }

    .product__perc {
        padding: 8px;
        font-size: 18px;
    }

    .product__conttop {
        margin-top: 16px;
        margin-bottom: 13px;
    }

    .product__descrows {
        margin-bottom: 13px;
    }

    .product__bottom {
        margin-bottom: 13px;
    }

    .product__optcont {
        margin-bottom: 16px;
    }

    .product__opttop {
        font-size: 14px;
        line-height: 114.285714%; /* 16/14 */
    }

    .product__optionstext {
        font-size: 16px;
        line-height: 118.75%; /* 19/16 */
    }

    .product__bontop {
        margin-bottom: 8px;
        font-size: 14px;
        line-height: 114.285714%; /* 16/14 */
    }

    .product__pricecont {
        gap: 8px;
    }

    .product__price {
        font-size: 20px;
        line-height: 116.666667%; /* 28/24 */
    }

    .product__oldprice {
        font-size: 18px;
    }

    .product__right {
        max-width: 218px;
    }

        .product__right .quantity {
            height: 40px;
        }

    .product__favbutton {
        width: 40px;
        height: 40px;
        flex: 0 0 40px;
    }

    .product__chartop {
        margin-bottom: 24px;
    }

    .product__charblock:not(:last-child) {
        margin-bottom: 24px;
    }

    .comments__top {
        display: flex;
        align-items: center;
        gap: 20px;
        justify-content: space-between;
        margin-bottom: 16px;
    }

    .comments__row {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
        margin-bottom: 24px;
    }

    .comments__row-reviews {
        flex-direction: column;
    }

    .comments__item {
        flex: 0 1 calc((100% - 16px) / 2);
    }

    .comments__popbutton {
        padding-left: 31px;
        padding-right: 31px;
    }

    .article {
        padding-bottom: 24px;
    }

    .article__container .title-h1:not(:last-child),
    .article__container .title-h2:not(:last-child) {
        margin-bottom: 32px;
    }

    .article__container .title-h3:not(:last-child) {
        margin-bottom: 24px;
    }

    .article__imageblock {
        display: flex;
        gap: 24px;
    }

    .article__image {
        flex: 1 1 50%;
    }

    .article__imagecontent {
        flex: 1 1 50%;
    }

    .article__flexblock {
        flex-wrap: wrap;
    }

    .article__flexblock--two .article__text {
        flex: 0 1 calc((100% - 24px) / 2);
    }

    .article__flexblock--three .article__text {
        flex: 0 1 calc((100% - 48px) / 3);
    }

    .article__images {
        grid-template-columns: 50% 25% 25%;
        gap: 24px;
    }

    .article__imagesitem-1 {
        grid-row: 1/3;
    }

    .article__imagesitem-2 {
        grid-row: 1/3;
    }

    .article__imagesitem-3 {
        grid-row: 1/2;
    }

    .article__imagesitem-4 {
        grid-row: 2/3;
    }

    .delivery {
        padding-bottom: 32px;
    }

    .delivery__title {
        padding-bottom: 24px;
        margin-bottom: 32px;
    }

    .delivery__top {
        margin-bottom: 24px;
    }

    .quantity__input input {
        font-size: 16px;
        line-height: 118.75%; /* 19/16 */
    }

    .warn-block__body {
        padding: 25px 0;
        gap: 70px;
    }

    .warn-block__warn {
        gap: 12px;
        font-size: 20px;
        line-height: 115%; /* 23/20 */
    }

        .warn-block__warn::before {
            width: 24px;
            height: 24px;
            flex: 0 0 24px;
            font-size: 20px;
        }

    .warn-block__button {
        font-size: 18px;
        line-height: 116.666667%; /* 21/18 */
    }
}

@media (min-width: 61.99875em) {
    .title-h1 {
        font-size: 32px;
    }

    .prod-item__price {
        font-size: 24px;
    }

    .menu__city {
        width: 327px;
        flex: 0 0 327px;
    }

    .first__toptext {
        font-size: 20px;
    }

    .first__title {
        font-size: 40px;
    }

    .infoblock__container {
        gap: 48px;
    }

    .personal::after {
        content: "";
        position: absolute;
        height: 1px;
        left: 50%;
        transform: translateX(-50%);
        background-color: rgba(34, 43, 89, 0.1490196078);
        bottom: auto;
        top: 0;
        max-width: 1040px;
        width: calc(100% - 32px);
    }

    .personal__container {
        display: flex;
        padding-top: 24px;
        gap: 32px;
    }

    .personal__left {
        flex: 0 0 253px;
    }

    .personal__right {
        flex: 1 1 auto;
    }

    .product__sliders {
        max-width: 549px;
    }

    .product__price {
        font-size: 24px;
    }

    .comments__item {
        flex: 0 1 calc((100% - 48px) / 4);
    }

    .article__table table th,
    .article__table table td {
        padding: 8px 16px;
    }
}

@media (min-width: 67em) {
    .first__toptext {
        font-size: 24px;
    }

    .first__title {
        font-size: 48px;
    }

    .personal__orderrow {
        gap: 24px;
    }

    .personal__orderitem {
        flex: 0 1 calc((100% - 179px - 72px) / 4);
    }

    .product__top {
        grid-template-columns: 549px 1fr;
    }

    .product__sliders {
        display: flex;
        gap: 12px;
        align-items: flex-start;
        flex-direction: row-reverse;
    }

    .product__smallslider {
        flex: 0 0 128px;
        max-height: 336px;
        height: 100%;
    }
}

@media (min-width: 68.75em) {
    .first__swiper-button-prev {
        left: -28px;
    }

    .first__swiper-button {
        width: 56px;
        height: 56px;
        font-size: 14px;
    }

    .first__swiper-button-next {
        right: -28px;
    }
}

@media (any-hover: hover) {
    .checkbox__text a:hover {
        text-decoration: underline;
    }

    .button.button--black:active:hover {
        background-color: rgba(43, 42, 41, 0.5019607843);
    }

    .button.button--black:hover {
        background-color: var(--grayColor);
    }

    .button.button--border:hover {
        color: var(--grayColor);
        background-color: rgba(43, 42, 41, 0.1019607843);
    }

    .crumbs__link:hover {
        color: var(--mainColor);
    }

    .cityblock__popbutton:hover span {
        font-weight: 500;
        text-decoration: underline;
    }

    .cityblock__popbutton_auth:hover {
        cursor: initial;
    }

        .cityblock__popbutton_auth:hover span {
            font-weight: 400 !important;
            text-decoration: none;
            cursor: initial;
        }

    .socsblock__item:active:hover {
        background-color: #e0d3b5;
    }

    .socsblock__item:hover {
        background-color: rgba(224, 211, 181, 0.6980392157);
    }

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

    .swiper-pagination .swiper-pagination-bullet:active:hover {
        background-color: rgba(43, 42, 41, 0.6);
    }

    .swiper-pagination .swiper-pagination-bullet:hover {
        background-color: rgba(43, 42, 41, 0.3019607843);
    }

    .prod-item__image:hover img {
        transform: scale(1.05);
    }

    .prod-item__image-order:hover img {
        cursor: default;
    }

    .prod-item__name:hover {
        opacity: 0.7;
    }

    .prod-item__name-order:hover {
        opacity: 1;
        cursor: default;
    }

    .prod-item__optionstext:hover {
        border-color: rgba(43, 42, 41, 0.6);
    }

    .prod-item__favbutton._active:hover svg path {
        fill: var(--redColor);
        stroke: var(--redColor);
    }

    .prod-item__favbutton:active:hover svg path {
        fill: rgba(255, 255, 255, 0.6980392157);
        stroke: rgba(255, 255, 255, 0.6980392157);
    }

    .prod-item__favbutton:hover svg path {
        fill: var(--whiteColor);
        stroke: var(--whiteColor);
    }

    .prod-item__trashbutton._active:hover svg path {
        fill: var(--redColor);
        stroke: var(--redColor);
    }

    .prod-item__trashbutton:active:hover svg path {
        fill: rgba(255, 255, 255, 0.6980392157);
        stroke: rgba(255, 255, 255, 0.6980392157);
    }

    .prod-item__trashbutton:hover svg path {
        fill: var(--whiteColor);
        stroke: var(--whiteColor);
    }

    .select__option:hover {
        background: #f5f5f5;
    }

    .menu__link:active:hover {
        text-shadow: 0.3px 0 --darkCream, -0.3px 0 --darkCream, 0 0.3px --darkCream, 0 -0.3px --darkCream;
        text-decoration: underline;
    }

    .menu__link:hover {
        text-shadow: 0.3px 0 rgba(43, 42, 41, 0.4), -0.3px 0 rgba(43, 42, 41, 0.4), 0 0.3px rgba(43, 42, 41, 0.4), 0 -0.3px rgba(43, 42, 41, 0.4);
        text-decoration: underline;
    }

    .header__iclink:active:hover {
        opacity: 0.5;
    }

    .header__iclink:hover {
        opacity: 0.7;
    }

    .footer__tel:active:hover {
        color: #e0d3b5;
    }

    .footer__tel:hover {
        text-decoration: underline;
    }

    .footer__menulink:hover {
        text-decoration: underline;
    }

    .footer__toptext a:hover {
        text-decoration: underline;
    }

    [data-fls-rating=set] .rating__items:hover .rating__item {
        background: url("../assets/img/star-full.svg") 0 0/0.875rem no-repeat;
    }

    [data-fls-rating=set] .rating__item:hover ~ .rating__item {
        background: url("../assets/img/star.svg") 0 0/0.875rem no-repeat;
    }

        [data-fls-rating=set] .rating__item:hover ~ .rating__item span {
            display: none;
        }

    .catalog__tabstitle.--tab-active:hover {
        border-color: var(--mainColor);
    }

    .catalog__tabstitle:hover {
        border-color: var(--mainColor);
    }

    .infoblock__text a:hover {
        text-decoration: underline;
    }

    .card-footer__optionstext:hover {
        background-color: rgba(43, 42, 41, 0.1019607843);
    }

    .personal__link:hover {
        color: var(--mainColor);
    }

    .product__smallslide:hover img {
        transform: scale(1.05);
    }

    .product__optionstext:hover {
        background-color: rgba(43, 42, 41, 0.1019607843);
    }

    .product__favbutton._active:hover svg path {
        fill: var(--redColor);
        stroke: var(--redColor);
    }

    .product__favbutton:hover svg path {
        fill: rgba(255, 255, 255, 0.6980392157);
        stroke: rgba(255, 255, 255, 0.6980392157);
    }

    .comments__toplink:hover {
        text-decoration: none;
    }

    .article__imagesitem:hover img {
        transform: scale(1.05);
    }

    .delivery__contacts a:hover {
        text-decoration: underline;
    }

    .popup-signin__topbutton:hover {
        color: var(--mainColor);
    }

    .popup-thanks__text a:hover {
        text-decoration: underline;
    }

    .quantity__button:active:hover {
        background-color: rgba(43, 42, 41, 0.3019607843);
    }

    .quantity__button:hover {
        background-color: rgba(43, 42, 41, 0.1019607843);
    }

    .warn-block__button:hover {
        background-color: rgba(43, 42, 41, 0.1019607843);
    }
}

/* Мобильная версия */
@media (max-width: 768px) {
    .wrapper-login {
        padding: 10px;
        align-items: flex-start;
    }

    .login {
        width: 100%;
        margin: 0;
        padding: 30px 20px;
    }
}

.editor-content {
    /*all: revert;*/ /* или initial / unset */
}

    .editor-content h1 {
        font-size: 32px;
        padding-bottom: 24px;
        margin-bottom: 32px;
        line-height: 118.75%;
        border-bottom: 1px solid rgba(34, 43, 89, 0.1490196078);
        font-weight: 500;
    }

    .editor-content p {
        font-size: 14px;
        line-height: 142.857143%;
    }

.product__content .prod-item__right {
    width: 218px;
    margin-left: 0;
}

.cityPopup::before {
    content: "\f103";
    font-family: iconfont;
}

.footer__menulist {
    padding-left: 0;
}

.option-form1 {
    height: 39px;
    background-color: #F7F7F7;
    border: 1px solid #BABAB9;
    width: 100%;
    padding: 0px 6px;
}

.red {
    color: var(--redColor);
}

.text-center {
    text-align: center;
}

.invalid-feedback {
    color: var(--darkRed);
    position: absolute;
    top: 58px;
}

.invalid-feedback-no-label {
    color: var(--darkRed);
    position: absolute;
    top: 39px;
    font-size: 14px;
}

.input-validation-error {
    background-color: var(--errorColor) !important;
    border-color: var(--darkRed) !important;
}

.content-none,
.content-none:after,
.content-none:before {
    content: none;
}

.catalog-filter {
    font-weight: 500;
    padding: 10px 10px;
    border: 1px solid #000;
    width: 145px;
    border-radius: 4px;
    background-color: #f9f2eb;
    margin-bottom: 24px;
}

    .catalog-filter svg {
        width: 16px;
    }

    .catalog-filter:hover {
        cursor: pointer;
    }

/* ===== User chip in header ===== */
.userchip {
    margin-left: auto; /* прижимает блок аккаунта вправо */
    margin-right: 18px; /* небольшой отступ до иконок */
    display: flex;
    align-items: center;
    min-width: 0; /* важно для ellipsis */
}

.userchip__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 999px;
    text-decoration: none;
    color: var(--mainColor);
    background: rgba(0, 0, 0, 0.04);
    transition: background .15s ease, transform .15s ease;
    max-width: 360px;
    min-width: 0;
}

    .userchip__link:hover {
        background: rgba(0, 0, 0, 0.07);
    }

    .userchip__link:active {
        transform: translateY(1px);
    }

.userchip__icon img {
    width: 18px;
    height: 18px;
    display: block;
}

.userchip__name {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 260px;
}

/* На мобилке оставляем только иконку (имя прячем), чтобы шапка не расползалась */
@media (max-width: 767.98px) {
    .userchip {
        margin-right: 10px;
    }

    .userchip__link {
        padding: 8px 10px;
        max-width: none;
    }

    .userchip__name {
        /*display: none;*/
    }
}

/* ===== collapsible profile menu (mobile) ===== */

.profile-nav-toggle {
    width: 100%;
    display: none; /* включим на мобилке */
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 14px;
    border: 1px solid rgba(43, 42, 41, 0.15);
    background: #fff;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.2;
}

.profile-nav-toggle__chev {
    transition: transform .2s ease;
}

/* меню по умолчанию скрыто на мобилке */
.profile-nav {
    display: none; /* десктоп */
}

    /* состояние "открыто" */
    .profile-nav.is-open {
        display: block;
    }

.profile-nav-toggle[aria-expanded="true"] .profile-nav-toggle__chev {
    transform: rotate(180deg);
}

/* Мобилка */
@media (max-width: 47.99875em) {
    .profile-nav-toggle {
        display: flex;
        margin-bottom: 10px;
    }

    /* на мобилке скрываем меню пока не открыли */
    .profile-nav {
        display: none;
        margin-bottom: 14px;
        padding: 8px 0;
        border: 1px solid rgba(43, 42, 41, 0.10);
        border-radius: 10px;
        background: #fff;
    }

        /* ссылки внутри выпадашки - столбиком */
        .profile-nav .personal__link {
            display: block;
            padding: 10px 14px;
        }
}

/* Роль/бонусы в правой колонке (для мобилки/планшета, когда скрыт personal__left) */
.personal__badges,
.personal__roleMobile,
.personal__bonusMobile {
    display: none;
}

@media (max-width: 61.99875em) {
    .personal__badges {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 8px 10px;
        margin: 6px 0 10px;
    }

    .personal__roleMobile,
    .personal__bonusMobile {
        display: inline-flex;
        align-items: center;
        padding: 6px 10px;
        border-radius: 10px;
        font-size: 14px;
        line-height: 1.2;
        font-weight: 500;
        color: var(--whiteColor);
        white-space: nowrap;
    }

    .personal__roleMobile {
        background-color: var(--mainColor);
    }

    .personal__bonusMobile {
        background-color: var(--blueColor);
    }
}

/* адреса кнопки */
@media (max-width: 768px) {
    .personal__form .personal__button {
        display: block;
        width: 100%;
        max-width: none;
    }

    .personal__form .personal__button + .personal__button {
        margin-top: 10px;
    }
}

/* ===== Таблица просмотра заказа клиента ===== */
.order-detail-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
}

    .order-detail-table th,
    .order-detail-table td {
        border: 1px solid #dcdcdc;
        padding: 10px 14px;
        vertical-align: top;
        text-align: left;
    }

    .order-detail-table th {
        background: #f5f5f5;
        font-weight: 600;
        white-space: nowrap;
    }

    .order-detail-table__center {
        text-align: center !important;
    }

    .order-detail-table__right {
        text-align: right !important;
        white-space: nowrap;
    }

/* --- Таблица информации о заказе --- */

/* --- Таблица товаров: ширины колонок --- */
.order-detail-table--items {
    table-layout: auto;
}

    .order-detail-table--items th:nth-child(1),
    .order-detail-table--items td:nth-child(1) {
        white-space: nowrap;
    }

    .order-detail-table--items th:nth-child(3),
    .order-detail-table--items td:nth-child(3) {
        text-align: center;
        white-space: nowrap;
    }

    .order-detail-table--items th:nth-child(4),
    .order-detail-table--items td:nth-child(4) {
        text-align: center;
        white-space: nowrap;
    }

    .order-detail-table--items th:nth-child(5),
    .order-detail-table--items td:nth-child(5),
    .order-detail-table--items th:nth-child(6),
    .order-detail-table--items td:nth-child(6),
    .order-detail-table--items th:nth-child(7),
    .order-detail-table--items td:nth-child(7) {
        text-align: right;
        white-space: nowrap;
    }

/* Итоговая строка товаров */
.order-detail-table__total-row td {
    border-top: 2px solid #999;
    font-weight: 500;
}

/* --- Таблица итогов --- */
.order-detail-table--summary td:last-child {
    text-align: right;
    white-space: nowrap;
}

/* Строка "К оплате" */
.order-detail-table__pay-row td {
    border-top: 2px solid #333;
    font-size: 16px;
    background: #f9f9f9;
}

/* Статус заказа */
.order-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 13px;
    white-space: nowrap;
}

/* Не оплачено (Pending = 10) */
.order-status--10 {
    background: #fff3cd;
    color: #856404;
}

/* Оплачено (Payment = 50) */
.order-status--50 {
    background: #d4edda;
    color: #155724;
}

/* Удалён (Deleted = 99) */
.order-status--99 {
    background: #f8d7da;
    color: #721c24;
}

/* Адаптив для мобильных */
@media (max-width: 768px) {
    .order-detail-table--items {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .order-detail-table--info th,
    .order-detail-table--info td {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }

    .order-detail-table--info tr {
        display: block;
        margin-bottom: 8px;
    }

}

/* === Блок «Цена» / «Цена с подпиской» (аноним, Розница и Оптовик; Дистрибьюторам не показывается) === */
/* Единая обёртка двух колонок цены. Если SubCost не задан — обёртка работает как обычный pricecont. */
.prod-item__pricewrap {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* Две колонки цены: выравниваем по верху строки-заголовка и растягиваем колонки на одну высоту,
   чтобы числа стояли на одной базовой линии независимо от рамки/паддинга subCost. */
.prod-item__pricewrap--two {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    align-items: stretch;
}

.prod-item__pricecol {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 0 0 auto;
}

/* Подпись «Цена» / «Цена с подпиской» — фиксированная высота, чтобы оба заголовка занимали
   ровно одну строку и числа под ними стояли на одной горизонтали. */
.prod-item__pricelabel {
    font-size: 12px;
    line-height: 16px;
    color: rgba(43, 42, 41, 0.6);
    text-transform: none;
    min-height: 16px;
}

/* Размер числа subCost — на ступень меньше основной цены (22px → 18px),
   чтобы визуально подчеркнуть, что это «вторая», информационная цена. */
.prod-item__subprice {
    font-weight: 500;
    font-size: 18px;
    line-height: 1.2;
    color: var(--redColor, #b8232a);
    border: 1.5px solid var(--redColor, #b8232a);
    border-radius: 6px;
    padding: 4px 10px;
    display: inline-block;
    align-self: flex-start;
    box-sizing: border-box;
}

/* Колонка второй цены. Инлайновый display управляется из changeCost: при переключении
   на объём без SubCost колонка скрывается целиком, вместе с подписью. */
.prod-item__pricecol--sub {
    align-items: flex-start;
}

/* Пояснение для неавторизованного посетителя: цена доступна по подписке.
   Клик открывает попап входа/регистрации (data-fls-popup-link='popup-login'). */
.prod-item__pricenote {
    font-size: 11px;
    line-height: 14px;
    color: rgba(43, 42, 41, 0.6);
    text-decoration: underline;
    text-underline-offset: 2px;
    align-self: flex-start;
}

.prod-item__pricenote:hover {
    color: var(--redColor, #b8232a);
}

/* В режиме двух колонок принудительно фиксируем размер «обычной цены» в 22px,
   чтобы оба числа были визуально симметричны независимо от внешнего контекста. */
.prod-item__pricewrap--two .prod-item__price,
.prod-item__pricewrap--two .product__price,
.prod-item__pricewrap--two .prod-item__oldprice,
.prod-item__pricewrap--two .product__oldprice {
    font-size: 22px;
    line-height: 1.2;
}

/* Колонка «Цена» — поджимаем pricecont без внутреннего padding, чтобы её число было ровно
   на той же высоте, что число subCost внутри рамки. */
.prod-item__pricecol .prod-item__pricecont,
.prod-item__pricecol .product__pricecont {
    padding: 4px 0;
    align-items: baseline;
    gap: 6px;
}

@media (max-width: 768px) {
    .prod-item__pricewrap--two {
        gap: 8px;
    }

    .prod-item__subprice {
        padding: 3px 8px;
        border-width: 1px;
        border-radius: 5px;
        font-size: 15px;
    }

    .prod-item__pricelabel {
        font-size: 11px;
        line-height: 14px;
        min-height: 14px;
    }

    .prod-item__pricenote {
        font-size: 10px;
        line-height: 13px;
    }

    .prod-item__pricecol .prod-item__pricecont,
    .prod-item__pricecol .product__pricecont {
        padding: 3px 0;
    }
}
