/* delivery modal */

.btn-delivery-info {

    color: #000;
    text-decoration: underline;
    background: none;
    border: none;
}

.btn-delivery-info:hover {

    color: #f63e3e;
    text-decoration: none;
    background: none;
    border: none;
}

/* Оверлей (затемнение фона) */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
    /* чтобы на мобильных был скролл внутри окна */
}

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

/* Окно */
.modal-window {
    background: #fff;
    padding: 24px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    transform: translateY(-20px);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.modal-overlay.active .modal-window {
    transform: translateY(0);
}

/* Кнопка закрытия */
.close-modal {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    color: #999;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
}

.close-modal:hover {
    color: #000;
}

/* Заголовок */
.modal-title {
    margin: 0 0 16px 0;
    font-size: 22px;
}

/* Контент */
.modal-content {
    line-height: 1.5;
    color: #333;
}

.delivery-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}

.delivery-list li {
    margin-bottom: 16px;
}

.modal-note {
    font-size: 13px;
    color: #777;
    margin: 0;
}


.delivery-details summary {
    cursor: pointer;
    list-style: none;
    padding: 0;
    border: none;
    background: none;
    color: #007bff;
}

.delivery-details summary::-webkit-details-marker {
    display: none;
}

.delivery-content {
    margin-top: 12px;
}

/* Адаптив: на мобильных делаем окно почти на весь экран */
@media (max-width: 768px) {
    .modal-window {
        width: 95%;
        max-width: none;
        border-radius: 0;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .modal-overlay.active .modal-window {
        transform: none;
    }

    .close-modal {
        position: fixed;
        top: 16px;
        right: 16px;
    }
}

/* header category mobile menu */





.mobile-header-row {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    /* прижимает категории влево, группу действий — вправо */
    padding: 8px 12px;
    background: #fff;
    border-bottom: 1px solid #eee;
}

/* Группа кнопок справа */
.mobile-header-actions {
    display: flex;
    gap: 10px;
    /* расстояние между лупой и телефоном */
}

/* Общий стиль для кнопок действий (лупа, телефон) */
.mobile-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: none;
    background: #f5f5f5;
    border-radius: 50%;
    color: #333;
    cursor: pointer;
    text-decoration: none;
    padding: 0;
}

.mobile-action-btn:hover {
    background: #e0e0e0;
}

/* Кнопка категорий (слева) */
.mobile-categories-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px;
    cursor: pointer;
    color: #333;
    font-weight: 500;
    padding: 6px 8px;
    border-radius: 6px;
}



.mobile-categories-toggle:hover {
    background: #f5f5f5;
}




@media (max-width: 767px) {
    .mobile-header-row {
        display: flex;
                justify-content: flex-end;
    }

    .mobile-categories-toggle {
        display: block;
    }
}

@media (min-width: 767px) {
    .mobile-header-row {
        display: none;
    }
}


.mobile-phone-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f0f0f0;
    color: #000;
    text-decoration: none;
}

.mobile-phone-toggle:hover {
    background: #e0e0e0;
}

/* Выпадающее меню категорий */
.mobile-categories-menu {
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-categories-menu.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}


.mobile-categories-menu li {
    border-bottom: 1px solid #eee;
    padding: 8px 0;
}

.mobile-categories-menu.open {
    display: block;
}


.mobile-categories-menu li a {
    display: block;
    padding: 10px 16px;
    color: #333;
    text-decoration: none;
}

.mobile-categories-menu li a:hover {
    background: #f9f9f9;
}


/* Скрываем панель полностью на десктопе и планшетах */
@media (min-width: 768px) {
    #offcanvas-phones {
        display: none !important;
    }
                #offcanvas-category {
                    display: none !important;
                }
}

/* На мобильных показываем и используем анимацию через left */
@media (max-width: 767px) {
    .mobile-offcanvas-panel {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100vw;
        height: 100vh;
        background: #fff;
        z-index: 1100;
        padding: 20px;
        box-sizing: border-box;
        transition: left 0.3s ease-in-out;
        display: flex;
        flex-direction: column;
    }

          .mobile-offcanvas-category-panel {
              position: fixed;
              top: 0;
              left: -100%;
              width: 70vw;
              height: 100vh;
              background: #fff;
              z-index: 1100;
              padding: 20px;
              box-sizing: border-box;
              transition: left 0.3s ease-in-out;
              display: flex;
              flex-direction: column;
              overflow: auto;
          }



    .mobile-offcanvas-panel.open {
        left: 0;
    }
                .mobile-offcanvas-category-panel.open {
                    left: 0;
                }
}

.mobile-offcanvas-close {
    align-self: flex-start;
    background: none;
    border: none;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    color: #333;
}

.mobile-offcanvas-category-close {
    cursor: pointer;
        position: absolute;
            z-index: 1000;
            top: 20px;
            right: 20px;
            padding: 5px;
                color: rgba(0, 0, 0, 0.5);
                    -webkit-transition: 0.1s ease-in-out;
                    -o-transition: 0.1s ease-in-out;
                    transition: 0.1s ease-in-out;
                    -webkit-transition-property: color, opacity;
                    -o-transition-property: color, opacity;
                    transition-property: color, opacity;
                    margin: 0;
                        border: none;
                        border-radius: 0;
                        overflow: visible;
                        font: inherit;
                        color: inherit;
                        text-transform: none;
                        padding: 0;
                        background-color: transparent;
                        display: inline-block;
                        fill: currentcolor;
                        line-height: 0;
                        font-size: 36px;
}


.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    /* Черный с прозрачностью 60% */
    z-index: 1090;
    /* Должно быть МЕНЬШЕ, чем у панели (1100) */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
    /* Чтобы клики проходили сквозь выключенный фон */
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    /* Когда активно, фон ловит клики */
}

.cat-menu-margin-medium {
    margin-bottom: 40px;
}
.mobile-offcanvas-phone {
    font-size: 18px;
    font-weight: bold;
    margin: 16px 0 24px 0;
}

.mobile-offcanvas-call-btn {
    display: block;
    width: 100%;
    padding: 14px;
    background: #007bff;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
}


/* accordeon mobile cat menu */

.accordion-account {
    width: 100%;
    max-width: 320px;
    /* под мобильную шапку */
    font-family: inherit;
    font-size: 16px;
}

.accordion-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    color: #333;
}

.accordion-title {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.accordion-icon {
    width: 20px;
    height: 20px;
    display: inline-block;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: transform 0.3s ease;
}

/* Поворот иконки при раскрытии */
.accordion-trigger[aria-expanded="true"] .accordion-icon {
    transform: rotate(180deg);
}

.accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #fff;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.accordion-panel[aria-hidden="false"] {
    max-height: 200px;
    /* подберите под число ссылок */
    padding: 8px 0;
}

.accordion-link {
    display: block;
    padding: 12px 16px;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.2s, color 0.2s;
}

.accordion-link:hover {
    background: #f5f5f5;
    color: #000;
}

/* Опционально: убрать обводку у кнопки в фокусе для чистоты вида */
.accordion-trigger:focus-visible {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}

/* nav link mob cat */

.sim-nav-mob-ul {
        margin: 0;
            padding: 0;
            list-style: none;
            font-size: 15px;
}

.sim-nav-mob-li {
        text-transform: uppercase !important;

}

.sim-nav-mob-ul>li>a {
    color: rgba(0, 0, 0, 0.5);
}

.sim-nav-mob-ul>li>a {
    padding: 5px 0;
}

.sim-nav-mob-ul li>a {
    display: block;
    text-decoration: none;
}

.sim-nav-mob-li-title {
        color: rgba(0, 0, 0, 0.8);
        padding: 5px 0;
            text-transform: uppercase;
            font-size: 13px;
}

.sim-nav-mob-li-link-cat {
    color: rgba(0, 0, 0, 0.8);
    padding: 1px 0;
    
    font-size: 13px;
}

.sim-nav-divider {
        border-top: 1px solid rgba(0, 0, 0, 0.1);
            margin: 5px 0;
}
.Content__Home>.Content__Container--Standalone:first-child .Home__Widget {
    margin-top: 2rem !important;
}


.Search__Box--Mobile {
    display: none !important;
}

.Search__Box--Mobile-asdweb {
    max-width: 90vw;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0.6rem;
    padding-right: 0.6rem;
    /* margin-top: 2.2rem; */
    position: relative;
    z-index: 151;
}


/* Кнопка лупы в шапке */
.mobile-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: none;
    background: #f5f5f5;
    border-radius: 50%;
    color: #333;
    cursor: pointer;
    padding: 0;
}

.mobile-search-btn:hover {
    background: #e0e0e0;
}

/* Панель поиска (скрыта по умолчанию) */
.mobile-search-overlay {
    position: fixed;
    top: -100%;
    /* уводим за верхний край */
    left: 0;
    width: 100vw;
    height: 115px;
    /* подстройте под высоту шапки, если нужно */
    padding-top: 56px;
    /* отступ под шапку, чтобы не перекрывать */
    background: #fff;
    z-index: 1200;
    overflow-y: auto;
    transition: top 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
}

/* Состояние "открыто" */
.mobile-search-overlay.open {
    top: 0;
}

/* Кнопка закрытия */
.mobile-search-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    color: #333;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    z-index: 1210;
    padding: 0;
}


/* Скрываем на десктопе (чтобы не было полосы) */
@media (min-width: 768px) {

    .mobile-header-actions,
    .mobile-search-btn,
    .mobile-search-overlay {
        display: none !important;
    }
}



/* низ шапки */

.Header {
    background-color: #fff;
    border-bottom: 1px solid #e6e6e6;
    box-shadow: 0px 2px 18px 3px #00000014;
}


/* category */

.cat-flex-asd {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 760px) {
    .cat-text-mob-none {
        display: none;
    }
}

@media (min-width: 41.25em) {
    .Category__View {
        width: 100% !important;
    }
}

.Category__Sort.-Mobile {
    margin-bottom: 0px;
}

.Category__Sort {
    margin-bottom: 0rem !important;
}

/* logo */

@media screen and (max-width: 700px) {
    .Header__Img--Branding {
        max-width: 100%;
    }
}

@media screen and (max-width: 700px) {
    .Header__Img--Branding {
        max-width: 250%!important;
    }
}

.StickyHeader__Img {

    max-width: 18rem;

}

.StickyHeader__Logo {
    padding: 0;
}

/* sort */
.category-products-count {
    width: 20%;
    font-size: 14px;
    color: #666;
}


.category-products-count strong {
    color: #333;
    font-weight: 700;
}




.Category__Item--View {

    margin-left: 0rem;
}



.Category__Footer {

    width: 12rem !important;
}

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

    .Category__Sort--Mobile {
        padding: .8rem 0.5rem !important;
        width: 8rem !important;
    }

    .Category__Footer {

        margin-bottom: 5px;
    }
}

@media (max-width: 53.125em) {
    .Header {
        display: flex !important;
    }

    .Header__Branding {
        width: 40%!important;
        top: 0px!important;
    }

    .Header__Box {
        display: flex;
    }

    .Header__Search {

        width: 29.25%;
    }

    .Header__Shop {
        display: none;
        width: 52%;
        float: right;
    }
}



.mct-span {
    /* margin-right: 4px; */
    margin-top: 6px;
}

/* телефон в шапке */

._col._phones {
    position: relative;
}



.phones ._item a {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    color: #404040;
}



.phones ._item svg {
    color: rgb(188 188 188);
    transition: 0.4s;
}

.phones ._item:hover svg {
    color: #ee4a51;
    width: 25px;
        height: 25px;
    transition: 0.4s;
}

.hcallback {
    position: absolute;
    width: 100%;
    text-align: center;
    padding-left: 25px;
}

.hcallback a {
    text-transform: lowercase;
    font-size: 12px;
    color: #ee1c24;
}

/* часы работы */
.Header__Title--WorkHours {
    margin-left: -10px;
    display: flex;
    align-items: center;
    /* вертикальное выравнивание по центру */
    gap: 3px;
    /* расстояние между иконкой и текстом */
    margin-bottom: 0.6rem;
    justify-content: center;
}

.Header__Title--WorkHours .usvg-worktime {
    display: block;
    /* убирает лишние отступы у SVG */
    width: 20px;
    height: 20px;
}


.Header__WorkHours {
    margin-top: -4px;
}
/* pages menu */

.Pages__Sidebar {
    padding: 0 18px 0 1.6rem;
    width: 30% !important;
}

.shop-pages {
    display: flex;
}

.shop-pages__leftside {
    min-width: 245px;
    width: 280px;
    margin-right: 30px;
}

@media (max-width: 700px) {
.shop-pages__leftside {
       display:none;
    }
}

.shop-pages__rightside {
    flex: 1;
}

.container_pages {

        max-width: 138rem;
            margin: 0 auto;
            width: 96%;
            padding: 0 calc(1.5rem / 2);
}

.menu-t.static {
    position: relative;
    display: block;
    margin: 0 0 20px;
    padding: 0;
    border: 1px solid #e3e3e3;
    border-radius: 20px;
    list-style: none;
    background: #fff;
    box-shadow: none;
}

.menu-t.static li:first-child {
    border-top: 0;
}

.menu-t.static li:last-child {
    border-bottom: 0;
}

.menu-t.static li {
    z-index: 10;
    margin: 0;
    border-right: 0;
    border-bottom: 1px solid #e3e3e3;
    position: relative;
    transition: all .2s ease-in-out 0s;
    width: 100%;
}

.menu-t.static li a {
    text-transform: none;
    display: block;
    padding: 10px 35px 10px 15px;
    margin: 0;
    font-size: 15px;
    color: #2d2d32;
    line-height: 22px;
    text-decoration: none;
    transition: margin-right 0.7s 0.5s;
}

.menu-t.static li.selected a {
    color: #2a6cff;
    font-weight: 700;
}

.menu-t.static li a:hover {
    font-weight: 600;
    color: #000;
    transition: margin-right 0.7s 0.5s;
}

a:hover:not(.button):not(.no-opacity) {
    opacity: .75;
}

.menu-t.static li:first-child:hover {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}


.menu-t.static li:hover {
    background: #f3f3f3;
}

/* cart */

@media (min-width: 75em) {
    .Header__Right--Shop.-Reduced-Cart {
        width: 20%;
    }
}


.Header__Box--Cart {
    display: flex;
    justify-content: flex-end;

}

.Header__Box--Order {
    margin-right: 0rem!important;
}

.userarea {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}

.userarea ._item._cart {
    background-color: #f2f2f2;
}

.userarea ._item._cart:hover {
    background-color: #fa939786;
}

.userarea ._item {
    width: 43px;
    height: 43px;
    border-radius: 4px;
    background-color: #f6f6f6;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    position: relative;
}

.userarea a {
    color: inherit;
    padding-top: 5px;
}

.userarea a:before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.userarea ._item._cart svg {
    color: #353a3e;
}

.userarea ._item._cart ._count {
    background-color: #f6f6f6;
    color: #000;
}

.userarea ._item ._count {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 30px;
    height: 30px;
    line-height: 1;
    border-radius: 50%;
    color: #fff;
    background-color: #ee1c24;
    font-size: 12px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 5px rgba(0, 0, 0, .15);
}

@media (max-width: 767px) {
    .userarea {
        display: none;
        gap: 10px;
    }
}

@media (max-width: 767px) {
    .userarea ._item ._count {
        width: 20px;
        height: 20px;
        top: -5px;
        right: -6px;
    }
}



@media (max-width: 500px) {
    a.Header__Link--Cart.js-header-cart-button {
        margin: 5px 0 0 0;
    }
}

img#logo-h {
    width: 51%;
    float: left;
    margin: 0 0 0 19px;
}

/* nav */

.Nav__Primary {
    background-color: #353a3e;
    /* border-bottom: .2rem solid #1d2023; */
    border-radius: 0;

}

@media (min-width: 64em) {
    .Nav__Primary {
        display: block;
        margin-bottom: 2.2rem;
    }
}

.Nav__Item--Level-2 {
    background-color: #353a3e;
    border-bottom: 1px solid #2c3033;
    padding-right: 2.5rem;
    overflow: hidden;
    transition: .3s all;
}


/* product */

/* features характеристики top */
.cols1-mobile {
    padding-left: 15px!important;
    padding-right: 15px!important;
}
.features-block {
    padding-bottom: 6px;
    padding-top: 3px;
padding-left: 3px !important;
    padding-right: 5px !important;
    border-bottom: 1px dotted #cecece;
    --cols-count: 1;
}

.features {
    list-style: none;
    margin: 0;
    padding: 0;
    column-gap: 30px;
    row-gap: 24px;
}

.row.gap32 {
    --gap: 4px;
    gap: var(--gap);
}

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

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

.col.w6 {
    --cols-count: 2;
    --col-width: 50%;
    flex: 0 0 auto;
    width: calc(var(--col-width) - (var(--gap) / var(--cols-count)) * (var(--cols-count) - 1));
}

.col.w12 {
    --cols-count: 1;
    --col-width: 100%;
    flex: 0 0 auto;
    width: calc(var(--col-width) - (var(--gap) / var(--cols-count)) * (var(--cols-count) - 1));
}

.col {
    flex: 1 0 0;
    width: calc(var(--col-width) - (var(--gap) / var(--cols-count)) * (var(--cols-count) - 1));
}

.features .name {
    color: #9a9a9a;
    font-size: 1.3rem;
    width: 50%;
    font-weight: 400;
}

.feature-dot-divider {
    border-bottom: 1px dotted #e0e0e0;
    height: 1em;
    margin: 0 5px;
}

.wa-flex-fill {
    flex: 1 1 auto;
}

.features .value {
    font-size: 1.3rem;
    color: light-dark(#161616, #888888);
    width: 45%;
}

/* -- */


/* -- */

.Single__Item--Catname {
    color: #737373;
    display: flex;
    font-size: 1.3rem !important;
    margin-bottom: 15px;
    padding: 12px 9px;
    position: relative;
    border-bottom: 1px solid #80808061;
    margin-top: 14px;
}

@media (min-width: 5em) {
    .Single__Item--Catname .Single__Value--Attrs {
        width: 60%;
        padding-left: 4px;
    }
.Single__Item--Catname .Single__Key--Attrs {
    width: 60%;
}
}

@media (min-width: 30em) {
.Single__Item--Catname .Single__Value--Attrs {
        width: 90%; 
}

.Single__Item--Catname .Single__Key--Attrs {
    width: 60%;
}
}
        
/* кнопка Описание полностью */



.prod-more-link {
    margin-bottom: 15px;
    padding-left: 0px;
    margin-top: 5px;
}

.js-product-tab {
    color: #335eea;
}

.text-sm {
    font-size: 14px!important;
    line-height: 1.42;
}

.border-current {
    border-color: currentcolor;
}

.border-dotted {
    --tw-border-style: dotted;
    border-style: none;
}

.border-b {
    border-bottom-style: var(--tw-border-style);
    border-bottom-width: 1px;
}

.mt-2 {
    margin-top: calc(0.25rem * 2);
}

/* product page */
.Single__Box--Delivery {
    width: 100%;
    float: right;
}

.Single__Box--Price .Product__Price--Current {
    font-size: 38px;
}

.product__delivery {
    margin-top: 25px;
    background: #f5f5f5;
    padding: 25px;
    border-radius: 20px;
}

.product__delivery-inner {
    display: flex;
    margin-bottom: 10px;
    align-items: center;
}

.product__delivery-icon {
    width: 50px;
    font-size: 25px;
    color: #fe8031;
    fill: #ee4a51;
    padding-right: 15px;
}


.product__delivery-text {
    flex: 1;
    font-size: 15px;
    line-height: 1.4;
}

.bolder {
    font-weight: 500;
}

.is-marginless {
    margin: 0 !important;
}

.product__delivery-text .hint,
.product__delivery a {
    font-size: 14px;
}

.hint {
    color: #909295;
}

.product__delivery a {
    display: inline-block;
    vertical-align: middle;
    color: #000;
    text-decoration: underline;
}

.product__delivery:hover a {

    color: rgb(230, 57, 57);
}



/* end product page */

.badge-red-1-div {
    padding-top: 6px;
        padding-bottom: 6px;
        padding-left: 16px;
            padding-right: 16px;
            background-color: oklch(0.68 0.22 40 / 0.15);
            border-color: oklch(.68 .22 40 / .2);
            border: 1px solid #ea2b373b;
            border-radius: 9999px;
            gap: 8px;
                align-items: center;
                display: inline-flex;
                    margin-bottom: 24px;
}

.badge-red-pulse {
  
            --tw-bg-opacity: 1;
            /* background-color: oklch(.68 .22 40 / var(--tw-bg-opacity, 1)); */
            background-color: oklch(0.65 0.25 35.87);
                border-radius: 9999px;
                animation: 2.0s ease-in-out infinite pulse-glow;
                        width: 8px;
                        height: 8px;
        }
@keyframes pulse-glow {

    0%,
    to {
        opacity: .3
    }

    50% {
        opacity: 1
    }
}

.animate-pulse-glow {
    animation: 2.0s ease-in-out infinite pulse-glow;
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

.animate-spin {
    animation: 1s linear infinite spin
}
.badge-red-text {
        --tw-text-opacity: 1;
            /* color: oklch(.74 .18 40 / var(--tw-text-opacity, 1)); */
            color: oklch(0.65 0.25 35.87);
            
            font-weight: 500;
                font-size: 12px;
                    line-height:14px;
                        white-space: nowrap;
}

/* price badge */

.price-badge {
    position: relative;
}
.price-badge .badge {
top: -14px;

}

.badge.bestseller {
            background-color: oklch(.68 .22 40 / .1)!important;
        color: #ce1420!important;
}

/* product card height name */

.Product__Link--Slider.-four {

    height: 42px!important;
}

/* price new category */

.Product__Price--Current {
    display: flex;
}

/* slider products home */

@media (min-width: 48em) {

    .Title__Home,
    .Title__Home--SideBySide {
        display: flex!important;
        justify-content: space-between;
        align-items: baseline;
    }
}
@media (max-width: 48em) {
        .Title__Home,
            .Title__Home--SideBySide {
display: flex !important;
align-items: center;
    padding-left: 0px!important;
            justify-content: space-between;
            }
}
.Slider__Link--Category {
        background-color: unset!important;
        box-shadow: unset!important;
            color: #4c4c4c!important;
            transition: margin-right 0.7s 0.5s;
}

.Slider__Link--Category:hover {
    background-color: #ce1420!important;
    border-radius: 10px;
    color: white!important;
    transition: margin-right 0.7s 0.5s;
}

.Slider__Box--Category {
   text-align: right;
    width: 200px;
}

/* категория характеристика убрать справа от имг */
.Single__Item--Attrs:last-child {
    display:none;
}


/* slider home */

/* slider home modern */

@media (min-width: 1024px) {
    .slide-title {
        margin-bottom: 16px;
        font-size: 64px;
        line-height: 110%;
        font-weight: 700;
        letter-spacing: -0.64px;
    }
}

.slide.slide2 {
    justify-content: left;
    margin: 0px auto;
    padding: 48px 60px;
}

.slide.slide2 .slide-content {
    text-align: left;
}

.slide.slide3 {
    justify-content: right;
    margin: auto 0px;
    padding: 48px 60px;
}

.slide.slide3 h2 {
    text-align: right;
}

.slide.slide3 .slide-content {
    text-align: right;
}

/* end slide */


@media (max-width: 1024px) {
    .slide.slide2 {
        padding: 12px 18px;
    }

    .slide.slide2 .slide-content {
        padding: 24px;
    }

                .slide.slide3 {
                    padding: 12px 18px;
                }
        
                .slide.slide3 .slide-content {
                    padding: 24px;
                }
}

/* slide def */

.modern-slider {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.slider-wrapper {
    display: flex;
    width: 100%;
    height: 500px;
    /* фиксированная высота — можно менять */
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Затемнение фона для читаемости текста */
.slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 40px;
    max-width: 800px;
}

.slide-title {
    font-size: 48px;
    line-height: 1.2;
    margin: 0 0 16px;
    font-weight: 700;
}

.slide-desc {
    font-size: 32px;
    line-height: 1.1;
    margin: 0 0 36px;
    opacity: 0.95;
    font-weight: 600;
}

.slide-btn {
    display: inline-block;
    padding: 14px 32px;
    background: #fff;
    color: #222;
    text-decoration: none;
    font-weight: 600;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.slide-btn:hover {
        background: #ea2b37;
            color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

/* Стрелки навигации */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    transition: background 0.3s, transform 0.3s;
    z-index: 10;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

/* Точки-индикаторы */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.dot.active {
    background: #fff;
    transform: scale(1.3);
}

/* Адаптив */
@media (max-width: 768px) {
    .slider-wrapper {
        height: 380px;
    }

    .modern-slider {
        width: 97%;
    }

    .slide-title {
        font-size: 28px;
    }

    .slide-desc {
        font-size: 16px;
    }

    .prev-btn,
    .next-btn {
        display: none;
    }

    /* на мобильных лучше свайп или автопрокрутка */
}

.text-slider-gradient-red {
        --tw-gradient-to-position: ;
            --tw-gradient-from-position: ;
        --tw-gradient-to: oklch(0.95 0.24 107.39) var(--tw-gradient-to-position);
            --tw-gradient-from: oklch(0.66 0.26 34.23) var(--tw-gradient-from-position);
            --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
            color: #810d0d00;
                -webkit-background-clip: text;
                    background-clip: text;
                background-image: linear-gradient(to right, var(--tw-gradient-stops));
                    line-height: 0.7;

}

/* end slide home */

/* bestseller хит продаж */

.Product__Slider .Product__Link--Slider.-four {
    height: 2.8em;
}

.StickyHeader {
    border-radius: 15px;
    margin-left: 10%;
    box-shadow: 0 .2rem 10px #dbdbdb;
    background-color: #f5f5f5f0;
    border-bottom: .1rem solid #cdcdcd;
    width: 80%;
}

.StickyHeader.-Sticky {
    top: 10px;

}

.Slider__Box .slick-next,
.Slider__Box .slick-prev {
    border-radius: 5px;
    box-shadow: 0 .2rem 0px #fff;
    color: #696969;
}

/* delivery product block */

.benefits-block {
    background-color: #0b0b0b;
    padding: 32px 0;
}

.benefits-container {
    max-width: 1024px;
    margin: 0 auto;
    margin-bottom: 15px;
    padding: 0 0px;
    display: grid;
    /* 2 колонки на десктопе */
    grid-template-columns: repeat(2, 1fr);
    gap: 0px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 8px;
    background-color: unset;
    border-radius: 12px;
    color: #e0e0e0;
    font-family: Montserrat, Roboto, sans-serif;
    font-size: 14px;
}

.benefit-icon {
    font-size: 24px;
    flex-shrink: 0;
    color: #f4570e;
}

.benefit-text strong {
    color: #303030;
    font-weight: 500;
}

/* Адаптив: на планшетах и мобильных — 1 колонка */
@media (max-width: 768px) {


    .benefit-item {
        justify-content: flex-start;
        text-align: left;
    }
}

.benefit-item:hover {
    background-color: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 94, 20, 0.12);
}

/* cart product quantity */

.wa-quantity-cart-section .wa-field-wrapper {
    margin-bottom: 0px !important;
}

#themeOverride .wa-field {
    margin-bottom: 0px !important;
}


#themeOverride .Order .wa-field-wrapper {
    width: auto !important;
}


.wa-quantity-cart-section {
    margin-top: 20px !important;
    display: flex;
    justify-content: space-between;
}

/* Ширина вертикальной полосы */
::-webkit-scrollbar {
    width: 12px;
}

/* Фон дорожки (трека) */
::-webkit-scrollbar-track {
    background: #121212;
    border-radius: 10px;
}

/* Сам ползунок */
::-webkit-scrollbar-thumb {
    background: #ff2b14;
    border-radius: 10px;
    border: 3px solid #121212;
    /* отступ от краёв, чтобы трек был виден */
}

/* Ползунок при наведении */
::-webkit-scrollbar-thumb:hover {
    background: #ff6363;
}

/* Для Firefox (отдельная поддержка) */
html {
    scrollbar-width: thin;
    scrollbar-color: #ff1814 #bfbfbfac;
}

/* home section pozvoni */

/* 1. Объявление кастомной темы (твои цвета) */
:root {
        /* Интерпретация твоих значений как HSL */
            --bg-background-100: hsl(260, 1%, 18%);
            /* Светлый фон секции */
            --bg-background-200: hsl(260, 1%, 22%);
            /* Фон карточек */
            --bg-background-300: hsl(260, 1%, 30%);
            /* Цвет границы */
    /* Интерпретация: HSL(Hue, Sat%, Light%) */
    --bg-background-50: hsl(260, 1%, 12%);
    /* Тёмный фон */
    --text-foreground-50: hsl(0, 0%, 98%);
    /* Почти белый текст */
    --text-foreground-400: hsl(0, 1%, 68%);

        /* Белый заголовок */
            --text-foreground-100: hsl(0, 0%, 95%);
            /* Белый текст заголовка карточки */
            --text-foreground-500: hsl(0, 1%, 75%);
            /* Серый текст описания */
    /* Серый текст (подзаголовки) */
    --accent-500:#ff5250;
    /* Акцентный цвет (оранжево-жёлтый) */
    --border-accent-500-alpha: #ff7a7a;
    /* Полупрозрачная граница */
    --border-accent-500-alpha: rgba(173, 130, 88, 0.2);
}

/* 1. Кастомная тема (цвета) */


/* 2. Базовые стили блока */
.consultation-block {
    position: relative;
    overflow: hidden;
    padding: 160px 20px;
    color: var(--text-foreground-50);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* 3. Стили фона и оверлея */
.consultation-bg-image {
    position: absolute;
    inset: 0;
    background-image: url('/wa-data/public/site/data/sim03.shop/img/home_sections/pozvoni.jpg');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.consultation-overlay {
    position: absolute;
    inset: 0;
    /* Эквивалент bg-background-50/85 (85% непрозрачности) */
    background-color: oklch(.12 .01 260 / .75);
    z-index: 2;
}

/* 4. Контейнер контента */
.consultation-container {
    position: relative;
    z-index: 3;
    max-width: 540px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

/* 5. Типографика */
.consultation-title {
    font-size: 3.5rem;
    line-height: 1.2;
    font-weight: 900;
    color: var(--text-foreground-50);
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .consultation-title {
        font-size: 3.5rem;
    }
}

.consultation-subtitle {
    color: var(--text-foreground-400);
    font-size: 1.5rem;
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.5;
}

/* 6. Форма */
.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 700px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .consultation-form {
       height: 50px;
        flex-direction: row;
    }
}

/* Поле ввода */
.consultation-input {
    background-color: hsl(0, 0%, 16%);
    /* Чуть светлее фона */
    border: 1px solid var(--border-accent-500-alpha);
    color: var(--text-foreground-50);
    padding: 24px 32px;
    border-radius: 999px;
    /* Очень скруглённые углы */
    font-size: 18px;
    width: 100%;
    height: 50px;
    box-sizing: border-box;
    transition: all 0.3s ease;
    outline: none;
}

.consultation-input::placeholder {
    color: hsl(0, 0%, 50%);
}

.consultation-input:focus {
    border-color: var(--accent-500);
    box-shadow: 0 0 0 3px rgba(173, 130, 88, 0.2);
}

/* Кнопка */
.consultation-btn {
    background-color: var(--accent-500);
    color: #fafafa;
    /* Тёмный текст на ярком фоне для контраста */
    border: none;
    padding: 5px 5px;
  
        height: 50px;
width: stretch;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.consultation-btn:hover {
    background-color: hsl(0, 89%, 69%);
    /* Чуть светлее при наведении */
    transform: translateY(-1px);
}

.consultation-btn:active {
    transform: translateY(0);
}

/* Скрытое поле (honeypot) */
.honeypot-field {
    display: none;
}

/* Футер с телефоном */
.consultation-footer {
    margin-top: 32px;
    font-size: 16px;
    color: var(--text-foreground-400);
}

.consultation-phone-link {
    color: var(--accent-500);
    text-decoration: none;
    font-weight: 600;
}

.consultation-phone-link:hover {
    color: hsl(0, 100%, 75%);
    text-decoration: underline;
}


/* home section */



/* 2. Базовые стили секции */
.why-choose-us-section {
    padding: 130px 20px;
    /* background-color: var(--bg-background-100); */
    color: var(--text-foreground-50);
}
@media (max-width: 700px) {
.why-choose-us-section {
 padding-bottom:20px!important;
}
}
.why-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 0px;
}

/* 3. Заголовок и подзаголовок */
.why-header {
    text-align: center;
    margin-bottom: 56px;
}

.why-title {
    font-size: 3.5rem;
    line-height: 1.2;
    font-weight: 900;
    color: #333;
    margin: 0 0 16px 0;
}

@media (min-width: 768px) {
    .why-title {
        font-size: 3.5rem;
    }
}

.why-subtitle {
    color: #333;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* 4. Сетка карточек */
.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* 5. Карточка */
.why-card {
    background-color: hsl(0deg 0% 100%);
    border: 1px solid var(--bg-background-300);
    border-color: #a5a5a587;
    /* аналог background-300/30 */
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.why-card:hover {
    border-color: #ffaaad;
    transform: translateY(-4px);
}

/* 6. Иконка */
.why-icon-wrapper {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background-color: #ff959540;
    /* аналог accent-500/10 */
    color: var(--accent-500);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.why-card:hover svg {
fill:white;
}
.why-card:hover .why-icon-wrapper {
    background-color: var(--accent-500);
    color: #000;
    /* аналог text-background-950 */
}

.why-icon-wrapper i {
    font-size: 34px;
}

/* 7. Заголовок и текст карточки */
.why-card-title {
    font-size: 16px;
    font-weight: 700;
    color: hsl(0deg 0% 18.21%);
    margin: 0 0 8px 0;
}

.why-card-text {
    color: hsl(0deg 0% 36.97%);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* filter sticky categ asd */

.filter-asd {

   position: sticky;
    top: 0px;
    /* Высота вашей шапки + отступ. Подберите под свой дизайн */
    background-color: #f5f5f5;
    /* Цвет фона блока (как на скриншоте) */
    padding: 15px 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    /* Легкая тень для отделения от контента */
    z-index: 11;
}

@media (max-width: 700px) {
    .filter-asd {
display: none;
}
}


.postavka-card {
    position: absolute;
        z-index: 2;
        background: #00000054;
        border-radius: 10px;
        padding: 5px 12px;
        bottom: 5px;
        left: 10px;
        color: #ffffffbf; 
}

/* btn buy prod card */


/* btn gradients */

.btn {
    position: relative;
    display: inline-flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;
        padding: 14px 26px;
    column-gap: 1rem;
    /* было calc(var(--spacing) * 2) — подставь своё значение spacing, например 0.5rem */
    border-radius: 8px;
    /* было var(--theme-radius) — поставь свой радиус */
    text-wrap: nowrap;
    outline-style: none;
}

/* Для режима forced-colors (если нужно сохранить поддержку) */
@media (forced-colors: active) {

    .btn,
    .btn:focus {
        outline: 2px solid transparent;
        outline-offset: 2px;
    }
}

.btn:disabled {
    pointer-events: none;
    opacity: 0.5;
}

.btn {
    transition: background-color 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        background-position 0.4s ease,
        opacity 0.2s ease;
}


/* --- Градиентные кнопки --- */

.btn-gradient-cyan-blue {
    border-style: solid;
    border-width: 1px;
    border-color: transparent;
    color: #fff;
    background-image: linear-gradient(to right, #06b6d4, #3b82f6, #06b6d4);
    background-size: 200% auto;
    background-position: left center;
}

.btn-gradient-cyan-blue:hover,
.btn-gradient-cyan-blue:focus {
    color: #fff;
    background-position: right center;
}


.btn-gradient-danger {
    border-style: solid;
    border-width: 1px;
    border-color: transparent;
    color: #fff;
    /* Примерные цвета для red-400/500/600 */
    background-image: linear-gradient(to right, #ef4444, #f97316, #ea580c, #f97316, #ef4444);
    background-size: 200% auto;
    background-position: left center;
}

.btn-gradient-danger:hover,
.btn-gradient-danger:focus {
    color: #fff;
    background-position: right center;
}


.btn-gradient-green-blue {
    border-style: solid;
    border-width: 1px;
    border-color: transparent;
    color: #fff;
    background-image: linear-gradient(to right, #4ade80, #2563eb, #4ade80);
    background-size: 200% auto;
    background-position: left center;
}

.btn-gradient-green-blue:hover,
.btn-gradient-green-blue:focus {
    color: #fff;
    background-position: right center;
}


.btn-gradient-pink-orange {
    border-style: solid;
    border-width: 1px;
    border-color: transparent;
    color: #fff;
    background-image: linear-gradient(to right, #ec4899, #fb923c, #ec4899);
    background-size: 200% auto;
    background-position: left center;
}

.btn-gradient-pink-orange:hover,
.btn-gradient-pink-orange:focus {
    color: #fff;
    background-position: right center;
}


.btn-gradient-purple-blue {
    border-style: solid;
    border-width: 1px;
    border-color: transparent;
    color: #fff;
    background-image: linear-gradient(to right, #9333ea, #3b82f6, #9333ea);
    background-size: 200% auto;
    background-position: left center;
}

.btn-gradient-purple-blue:hover,
.btn-gradient-purple-blue:focus {
    color: #fff;
    background-position: right center;
}


.btn-gradient-purple-pink {
    border-style: solid;
    border-width: 1px;
    border-color: transparent;
    color: #fff;
    background-image: linear-gradient(to right, #a855f7, #ec4899, #a855f7);
    background-size: 200% auto;
    background-position: left center;
}

.btn-gradient-purple-pink:hover,
.btn-gradient-purple-pink:focus {
    color: #fff;
    background-position: right center;
}


.btn-gradient-teal-lime {
    border-style: solid;
    border-width: 1px;
    border-color: transparent;
    /* oklch(0.269 0 0) ≈ очень тёмный цвет; для кнопки с белым градиентом логичнее оставить белый или подстроить */
    color: #111;
    /* заменил на тёмный, потому что градиент светлый */
    background-image: linear-gradient(to right, #99f6e4, #d9f99d, #99f6e4);
    background-size: 200% auto;
    background-position: left center;
}

.btn-gradient-teal-lime:hover,
.btn-gradient-teal-lime:focus {
    color: #111;
    background-position: right center;
}
/* menu btn cat */

.Nav--Site-sim03 {
    max-width: 128rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.6rem;
    padding-right: 1.6rem
}

.Nav--Site-sim03 {
    display: flex;
    align-items: stretch;
    align-content: stretch;
    flex-wrap: wrap;
    position: relative;
    padding: 0;
    z-index: 2
}

.Nav--Site-sim03.-Sticky {
    display: block !important;
    position: fixed;
    top: 5.7rem;
    z-index: 1100
}

.Nav--Site-sim03.-Highlight-First .Nav__Item--Root:first-child .Nav__Link--Catalog,
.Nav--Site-sim03.-Highlight-First .Nav__Item--Root:first-child .Nav__Link--Root {
    color: #fff
}

.Nav--Site-sim03.-Highlight-First .Nav__Item--Root:first-child .Nav__Link--Catalog:hover,
.Nav--Site-sim03.-Highlight-First .Nav__Item--Root:first-child .Nav__Link--Root:hover {
    background-color: #232323;
    box-shadow: 0 .2rem #990b11;
    color: #fff
}

.Nav--Site-sim03.-Highlight-Last .Nav__Item--Root:last-child .Nav__Link--Catalog,
.Nav--Site-sim03.-Highlight-Last .Nav__Item--Root:last-child .Nav__Link--Root {
    color: #fff
}

.Nav--Site-sim03.-Highlight-Last .Nav__Item--Root:last-child .Nav__Link--Catalog:after,
.Nav--Site-sim03.-Highlight-Last .Nav__Item--Root:last-child .Nav__Link--Root:after {
    color: #fff
}

.Nav--Site-sim03.-Highlight-Last .Nav__Item--Root:last-child .Nav__Link--Catalog:hover,
.Nav--Site-sim03.-Highlight-Last .Nav__Item--Root:last-child .Nav__Link--Root:hover {
    background-color: #232323;
    box-shadow: 0 .2rem #ee1c24;
    color: #fff
}

/* rpart 2 */

/* epraa 2 */
@media (max-width: 1200px) {
    .phones ._item a {
        font-size: 14px;
        font-weight: 500;
    }
}
@media (min-width: 800px) {
    .Header__Search {
        display: inline-block!important;
        padding-left: 1.6rem;
        vertical-align: middle;
        width: 25%!important;
    }
}

@media (min-width: 62em) {
    .Header__Box.-Small {
       
        display: flex;
                align-items: center;
    }
}
.Nav__Link--Catalog.Link-sim03 {
    width: 134px!important;
    box-shadow: unset!important;
    border-radius: 10px;
        background-color: #f2f2f2!important;
            color: #353a3e!important;
}

.Nav--Market-sim03 {
    background-color: #fff;
    display: block;
    left: 0;
    position: absolute;
    min-width: 100%;
    z-index: 2000;
    top: calc(100% + .2rem)
}

.Nav--Market-sim03 .Nav__Link--Level-2 {
    align-items: center;
    display: inline-flex;
    color: #000;
    font-size: 1.4rem;
    font-weight: 700;
    padding: .5rem .5rem
}

.Nav--Market-sim03 .Nav__Link--Level-2:hover {
    color: #d78282;
    text-decoration: underline
}

.Nav--Market-sim03 .Nav__Link--Level-2 .Nav__Market__Text--Image {
    width: 2rem
}

.Nav--Market-sim03 .Nav__Link--Level-2.Nav__Market__Link--Important {
    margin-bottom: .5rem
}

.Nav--Market-sim03 .Nav__Link--Level-2.Nav__Market__Link--Important .Nav__Market__Text--Image {
    display: none
}

.Nav--Market-sim03 .Nav__Link--Level-3 {
    align-items: center;
    display: inline-flex;
    padding: .5rem .5rem
}

.Nav--Market-sim03 .Nav__Link--Level-3 .Nav__Market__Text--Image {
    width: 2rem
}

.Nav--Market-sim03 .Nav__Link--Level-3 .Nav__Text--Level-3 {
    font-size: 1.4rem
}

.Nav--Market-sim03 .Nav__Link--Level-3.Nav__Market__Link--Important {
    margin-left: .5rem
}

.Nav--Market-sim03 .Nav__Link--Level-3.Nav__Market__Link--Important .Nav__Market__Text--Image {
    display: none
}

.Nav--Market-sim03 .Nav__Level--All {
    float: none;
    padding: 0;
    width: 100%
}

.Nav--Market-sim03 .Nav__Market__Link--Important {
    background-color: #d78282 !important;
    border-radius: .2rem;
    color: #fff !important;
    display: inline-flex !important;
    font-weight: 700 !important
}

.Nav--Market-sim03 .Nav__Market__Banner--Right {
    float: right;
    padding-left: 1rem;
    width: 20rem
}

.Nav--Market-sim03 .Nav__Active--Sub .Nav__Link--Sub {
    color: #000
}

.Nav--Market-sim03 .Nav__Active--Sub .Nav__Link--Sub:hover {
    color: #d78282
}

.Nav--Market-sim03 .Nav__Item--Sub {
    flex: 0 1 33.3333%
}

.Nav--Market-sim03 .Nav__Item--Sub.Nav__Active--Sub>.Nav__Link--Sub {
    color: #d78282;
    text-decoration: underline
}

.category-name {
    line-height: 1.2;
    font-weight: 500 !important;
    font-size: 36px !important;
}

    @media (max-width: 1000px) {
        .nav-category-button {
            display: none;
        }
        .category-name {
            font-size: 28px!important;
        }
}

/* sub-categoryes */

.Category__Inner--All {
    display: flex;
    flex-direction: row;
    /* элементы в строку */
    align-items: center;
    /* вертикальное выравнивание по центру */
    justify-content: flex-start;
    /* прижать к левому краю */
        padding: 8px 16px;
            border-radius: 10px;
            border: 1px solid #e5e5e5!important;
            background: unset!important;
            
            transition: box-shadow .2s ease-in-out;
}

.Category__Inner--Image {
    flex: 0 0 auto;
    /* не сжимать и не растягивать картинку */
    margin-right: 0px;
    /* отступ между картинкой и текстом */
    width: 80px;
    height: 67px;
    overflow: hidden;
    padding-bottom: 0px !important;
}

.Category__Inner--Image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* чтобы картинка заполняла блок без искажений */
    display: block;
}

.Category__Span--All,
.Category__Link--Child {
    flex: 1 1 auto;
    /* текст занимает оставшееся место */
    white-space: normal;
    /* текст в одну строку (если нужно) */
    overflow: hidden;
    text-overflow: ellipsis;
}

.Category__List--All.-Top {
    margin-bottom: 18px;
}

@media (min-width: 48em) {
    .Category__Span--All.-image.-NoMobile {
        position: relative!important;
       
    }
}


.Category__Inner--strelka {
      
            line-height: 1;
            text-align: center;
                    width: 50px !important;
                        height: 33px !important;
                        z-index: 1;
                        flex: 0 0 auto;
                            margin-right: 0px;
                            width: 80px;
                            height: 67px;
                            overflow: hidden;
                            padding-bottom: 0px !important;
                            line-height: 1;
                            display: none;
                            font-size: 32px;
}

.Category__Span--All.-image,
.Category__Span--All.-image:hover {
line-height: 1.2;
    position: relative;
}

@media (max-width: 29.9375em) {
    .Category__Row--All.-Double-Mobile .Category__Item--All {
        width: 100%!important;
        margin-bottom: 5px;
    }
        .Category__Span--All {
            padding: 6px 12px!important;
               
                position: relative!important;
        }
                .Category__Inner--Image {
                        width: 50px!important;
                            height: 33px!important;
                            z-index: 1;
                }
                                .Category__Inner--strelka {
                                    display: block;
                                    margin-right: -20px;
                                }
                                .Category__Span--All,
                                .Category__Link--Child {
                               
                                    /* текст занимает оставшееся место */
                                    white-space: nowrap;
                                }
           
}