body.catalog-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

body {
    min-height: 100vh;
    min-height: -webkit-fill-available;
}

html {
    height: -webkit-fill-available;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.tg-sticky-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: none;
    justify-content: space-around;
    align-items: stretch;
    padding: 0;
    z-index: 1000;
    border-top: 1px solid #e0e0e0;
    height: 64px;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
    -webkit-overflow-scrolling: touch;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .tg-sticky-menu {
        padding-bottom: env(safe-area-inset-bottom);
        height: calc(64px + env(safe-area-inset-bottom));
    }
}

@supports (padding-bottom: constant(safe-area-inset-bottom)) {
    .tg-sticky-menu {
        padding-bottom: constant(safe-area-inset-bottom);
        height: calc(64px + constant(safe-area-inset-bottom));
    }
}

.tg-sticky-menu__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex: 1;
    padding: 8px 8px 4px 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-decoration: none;
    color: #1c2126;
    transition: color 0.2s ease;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    min-width: 0;
    height: 64px;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    perspective: 1000;
}

button.tg-sticky-menu__item {
    font-family: inherit;
}

.tg-sticky-menu__item svg {
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    stroke: #1c2126;
    stroke-width: 2;
    fill: none;
    transition: stroke 0.2s ease;
    flex-shrink: 0;
    -webkit-transform: translateZ(0) scale(1.0);
    transform: translateZ(0) scale(1.0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: auto;
    -webkit-font-smoothing: antialiased;

    image-rendering: optimizeSpeed;
    image-rendering: -webkit-optimize-contrast;
    shape-rendering: geometricPrecision;
}

@supports (-webkit-touch-callout: none) {
    .tg-sticky-menu__item svg {
        -webkit-transform: translate3d(0, 0, 0) scale(1.0);
        transform: translate3d(0, 0, 0) scale(1.0);
    }
}

.tg-sticky-menu__item span {
    font-size: 12px;
    font-weight: 500;
    color: #1c2126;
    transition: color 0.2s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    line-height: 1.2;

    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
}

.tg-sticky-menu__item:hover svg,
.tg-sticky-menu__item:active svg {
    stroke: #000000;
}

.tg-sticky-menu__badge {
    position: absolute;
    top: 10px;
    right: 26%;
    transform: translateX(14px);
    background: #ebcc00;
    color: #231f20;
    font-size: 10px;
    font-weight: bold;
    border-radius: 50%;
    padding: 2px 5px;
    min-width: 16px;
    height: 16px;
    width: 16px;
    text-align: center;
    line-height: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;

    /* Стабилизация бейджа */
    -webkit-transform: translateX(14px) translateZ(0);
    transform: translateX(14px) translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.tg-sticky-menu__item * {
    -webkit-tap-highlight-color: transparent;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* Мобильный каталог */
.tg-mobile-catalog {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s, opacity 0.3s;
}

.tg-mobile-catalog.is-open {
    visibility: visible;
    opacity: 1;
}

.tg-mobile-catalog__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.tg-mobile-catalog__content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    transform: translateY(100%);
    transition: transform 0.3s ease-out;
}

.tg-mobile-catalog.is-open .tg-mobile-catalog__content {
    transform: translateY(0);
}

.tg-mobile-catalog__header {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    border-bottom: 1px solid #e5e5e5;
    background: #fff;
    flex-shrink: 0;
    z-index: 10;
}

.tg-mobile-catalog__back,
.tg-mobile-catalog__close {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tg-mobile-catalog__back {
    margin-right: 8px;
    padding-left: 0;
}

.tg-mobile-catalog__close {
    margin-left: 8px;
}

.tg-mobile-catalog__title {
    flex: 1;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    text-align: center;
}

.tg-mobile-catalog__body {
    flex: 1;
    position: relative;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
}

.tg-mobile-catalog__level {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    padding: 16px 0;
    transform: translateX(100%);
    transition: transform 0.3s ease-out;
    opacity: 0;
    pointer-events: none;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

.tg-mobile-catalog__level--active {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

.tg-mobile-catalog__level--prev {
    transform: translateX(-30%);
}

.tg-mobile-catalog__search {
    padding: 0 16px 16px;
}

.tg-mobile-catalog__search input {
    align-items: center;
    justify-content: left;
    border: none;
    color: #231f20;
    cursor: pointer;
    transition: color 0.2s;
    width: 100%;
    padding: 10px 45px 10px 16px;
    border-radius: 8px !important;
    font-size: 14px;
    background: #f3f3f3;
    line-height: 20px;
    height: 44px;
    font-family: inherit;
}

.tg-mobile-catalog__search input:focus {
    border-color: #007aff;
}

.tg-mobile-catalog__section-title {
    padding: 12px 16px 8px;
    font-size: 13px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tg-mobile-catalog__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    cursor: pointer;
    transition: background-color 0.2s;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #d6d7d8;
    background: none;
    width: 100%;
    text-align: left;
    font-size: 16px;
}

.tg-mobile-catalog__level
> :is(.tg-mobile-catalog__item, .tg-mobile-catalog__item--link):has(+ .tg-mobile-catalog__separator) {
    border-bottom: none;
}

a.tg-mobile-catalog__item.tg-mobile-catalog__item--link.tg-mobile-catalog__item--header {
    border: none;
}

.tg-mobile-catalog__item:active {
    background-color: #f5f5f5;
}

.tg-mobile-catalog__item span {
    flex: 1;
}

.tg-mobile-catalog__item svg {
    color: #999;
    flex-shrink: 0;
}

.tg-mobile-catalog__item--link svg {
    display: none;
}

.tg-mobile-catalog__separator {
    height: 8px;
    background: #f5f5f5;
    margin: 8px 0;
}

.tg-mobile-catalog__accordion {
    margin-top: 8px;
}

.tg-mobile-catalog__accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 16px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: #333;
    text-align: left;
}

.tg-mobile-catalog__accordion-header svg {
    color: #999;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.tg-mobile-catalog__accordion.is-open .tg-mobile-catalog__accordion-header svg {
    transform: rotate(180deg);
}

.tg-mobile-catalog__accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.tg-mobile-catalog__accordion.is-open .tg-mobile-catalog__accordion-content {
    max-height: 500px;
}

.tg-mobile-catalog__contact {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    color: #007aff;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.2s;
}

.tg-mobile-catalog__contact:active {
    background-color: #f5f5f5;
}

.tg-mobile-catalog__contact--messenger {
    gap: 12px;
}

.tg-mobile-catalog__contact--messenger svg {
    flex-shrink: 0;
}

jdiv.wrap__BMpR1._orientationRight__UsOqu._show__hZLfV.__jivoMobileButton {
    display: none;
}

@supports (-webkit-touch-callout: none) {
    .tg-sticky-menu__item {
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    }

    .tg-sticky-menu {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@media (max-width: 768px) {
    .tg-sticky-menu {
        display: flex;
    }

    body {
        padding-bottom: 64px;
    }

    @supports (padding-bottom: env(safe-area-inset-bottom)) {
        body {
            padding-bottom: calc(64px + env(safe-area-inset-bottom));
        }
    }

    @supports (padding-bottom: constant(safe-area-inset-bottom)) {
        body {
            padding-bottom: calc(64px + constant(safe-area-inset-bottom));
        }
    }
}

@media (min-width: 769px) {
    .tg-mobile-catalog,
    .tg-sticky-menu {
        display: none;
    }
}

@media (max-width: 360px) {
    .tg-sticky-menu {
        height: 60px;
    }

    @supports (padding-bottom: env(safe-area-inset-bottom)) {
        .tg-sticky-menu {
            height: calc(60px + env(safe-area-inset-bottom));
        }
    }

    @supports (padding-bottom: constant(safe-area-inset-bottom)) {
        .tg-sticky-menu {
            height: calc(60px + constant(safe-area-inset-bottom));
        }
    }

    .tg-sticky-menu__item {
        padding: 6px 2px;
        height: 60px;
        gap: 2px;
    }

    .tg-sticky-menu__item svg {
        width: 22px;
        height: 22px;
        min-width: 22px;
        min-height: 22px;
    }

    .tg-sticky-menu__item span {
        font-size: 11px;
    }

    .tg-sticky-menu__badge {
        font-size: 9px;
        padding: 1px 4px;
        min-width: 14px;
        height: 14px;
        line-height: 12px;
        -webkit-transform: translateX(12px) translateZ(0);
        transform: translateX(12px) translateZ(0);
    }

    body {
        padding-bottom: 60px;
    }

    @supports (padding-bottom: env(safe-area-inset-bottom)) {
        body {
            padding-bottom: calc(60px + env(safe-area-inset-bottom));
        }
    }

    @supports (padding-bottom: constant(safe-area-inset-bottom)) {
        body {
            padding-bottom: calc(60px + constant(safe-area-inset-bottom));
        }
    }
}

@media (hover: none) and (pointer: coarse) {
    .tg-sticky-menu {
        transition: none;
    }

    .tg-sticky-menu__item svg {
        will-change: auto;
        transition: stroke 0.2s ease;
    }
}

.tg-sticky-menu.is-scrolling {
    pointer-events: none !important;
}

.tg-sticky-menu.is-scrolling * {
    pointer-events: none !important;
    animation: none !important;
    transition: none !important;
}

.tg-sticky-menu.is-scrolling svg {
    animation: none !important;
    transition: none !important;
    will-change: auto !important;
}

.tg-sticky-menu svg {
    image-rendering: optimizeSpeed;
    image-rendering: -moz-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: optimize-contrast;
    image-rendering: pixelated;

    shape-rendering: crispEdges;
}

.tg-sticky-menu {
    contain: layout style paint;
}

.tg-sticky-menu__item {
    contain: layout style paint;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
    .tg-sticky-menu__item svg {
        transform: translateZ(0) scale(1.001);
    }
}

@supports (-webkit-appearance: none) and (stroke-color: transparent) {
    .tg-sticky-menu__item svg {
        transform: translate3d(0, 0, 0) scale(1);
        -webkit-transform: translate3d(0, 0, 0) scale(1);
    }
}

:root {
    --sab: 0px;
}

@supports not (padding-bottom: env(safe-area-inset-bottom)) {
    .tg-sticky-menu {
        padding-bottom: var(--sab);
        height: calc(64px + var(--sab));
    }

    body {
        padding-bottom: calc(64px + var(--sab));
    }

    @media (max-width: 360px) {
        .tg-sticky-menu {
            height: calc(60px + var(--sab));
        }

        body {
            padding-bottom: calc(60px + var(--sab));
        }
    }
}