@charset "UTF-8";
@font-face {
    font-family: "Museo Sans";
    src: local("Museo Sans 700"), local("Museo-Sans-700"), url("../../index/fonts/museo-fonts/MuseoSansCyrl-700.woff2") format("woff2"), url("../../index/fonts/museo-fonts/MuseoSansCyrl-700.woff") format("woff"), url("../../index/fonts/museo-fonts/MuseoSansCyrl-700.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: "Museo Sans";
    src: local("Museo Sans 500"), local("Museo-Sans-500"), url("../../index/fonts/museo-fonts/Museo_Sans_Cyrillic_500.woff2") format("woff2"), url("../../index/fonts/museo-fonts/Museo_Sans_Cyrillic_500.woff") format("woff"), url("../../index/fonts/museo-fonts/Museo_Sans_Cyrillic_500.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Museo Sans";
    src: local("Museo Sans 300"), local("Museo-Sans-300"), url("../../index/fonts/museo-fonts/MuseoSansCyrl-300.woff2") format("woff2"), url("../../index/fonts/museo-fonts/MuseoSansCyrl-300.woff") format("woff"), url("../../index/fonts/museo-fonts/MuseoSansCyrl-300.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
}
:root {
    --PrimaryWhite: #F7F7F7;
    --PrimaryBlack: #1A1A1A;
    --SecondaryBlack: #1B1B1B;
    --PrimaryGreen: #428E19;
    --SecondaryGreen: #69AB46;
    --Gray: #808080;
    --GraySecondary: #C7C7C7;
    --GrayTertiary: #434343;
    --GrayQuaternary: #9F9F9F;
    --font-primary: 'Museo Sans', sans-serif;
    --h1: 700 64px/1.2 var(--font-primary);
    --h2: 700 48px/1.2 var(--font-primary);
    --h3: 700 36px/1.2 var(--font-primary);
    --h4: 500 24px/1.2 var(--font-primary);
    --reg: 500 18px/1.3 var(--font-primary);
    --s-reg: 500 16px/1.2 var(--font-primary);
    --s-reg-light: 300 16px/1.2 var(--font-primary);
}

html, body {
    height: 100%;
    width: 100%;
}

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-primary);
    line-height: 1.2;
    color: var(--PrimaryBlack);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    white-space: nowrap;
    clip-path: inset(100%);
    clip: rect(0 0 0 0);
}

input {
    font-family: var(--font-primary);
}

.container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 20px;
}

.button {
    cursor: pointer;
    display: inline-block;
    padding: 20px 40px;
    background-color: transparent;
    /* backdrop-filter: blur(20px); */
    border: 2px solid var(--PrimaryGreen);
    border-radius: 2px;
    color: var(--PrimaryGreen);
    text-decoration: none;
    transition: all 0.3s ease;
    font: var(--reg);
    line-height: 1;
    text-align: center;
}
.button:hover {
    background-color: var(--PrimaryGreen);
    color: var(--PrimaryWhite);
}
.button__secondary {
    background-color: var(--PrimaryWhite);
    color: var(--PrimaryBlack);
    border: 1px solid var(--PrimaryBlack);
}
.button__secondary:hover {
    background-color: var(--PrimaryBlack);
    color: var(--PrimaryWhite);
}
.button__tertiary {
    background-color: var(--PrimaryGreen);
    color: var(--PrimaryWhite);
}
.button__tertiary:hover {
    border: 2px solid var(--PrimaryGreen);
    color: var(--PrimaryGreen);
    background-color: transparent;
}
.button__white {
    background-color: transparent;
    color: var(--PrimaryBlack);
    border: 1px solid #434343;
    padding: 16px 25px;
    border-radius: 2px;
    line-height: 1.2;
    font-size: 14px;
    width: 280px;
    max-width: calc(100% - 32px);
}
.button__white:hover {
    background-color: var(--PrimaryWhite);
    color: var(--PrimaryBlack);
}

.title {
    font: var(--h2);
    color: var(--PrimaryBlack);
    text-align: center;
    margin-bottom: 20px;
}

.page-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 32px;
    line-height: 1;
    color: var(--PrimaryBlack);
    padding: 36px 0;
}

.top-banner__header {
    padding: 100px 0;
    position: relative;
}
.top-banner__header-picture {
    width: 100%;
    height: 100%;
}
.top-banner__header-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
}
.top-banner__header-image-mobile {
    display: none;
}
.top-banner__header-content {
    z-index: 1;
    position: relative;
}
.top-banner__header-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    color: var(--PrimaryWhite);
    max-width: 50%;
}
.top-banner__header-text {
    margin-top: 30px;
    font: var(--reg);
    font-weight: 300;
    line-height: 1;
    color: var(--GraySecondary);
}

@media (max-width: 1520px) and (min-width: 992px) {
    .top-banner__header-title {
        font-size: 48px;
    }
    .top-banner__header-text {
        font-size: 24px;
    }
}
@media (max-width: 991px) {
    .top-banner__header-image-desktop {
        display: none;
    }
    .top-banner__header-image-mobile {
        display: block;
    }
    .top-banner__header {
        padding: 34px 0;
        text-align: center;
    }
    .top-banner__header-title {
        max-width: 100%;
        font-size: 30px;
    }
    .top-banner__header-text {
        margin-top: 20px;
    }
}
@media (max-width: 1520px) and (min-width: 992px) {
    .container {
        max-width: 1200px;
    }
    .title {
        font-size: 40px;
    }
}
@media (max-width: 991px) {
    :root {
        --h1: 700 32px/1.2 var(--font-primary);
        --h2: 700 30px/1.2 var(--font-primary);
        --h3: 700 22px/1.2 var(--font-primary);
        --h4: 500 18px/1.2 var(--font-primary);
        --reg: 400 16px/1.3 var(--font-primary);
        --s-reg: 500 14px/1.2 var(--font-primary);
    }
}
.checkbox {
    display: flex;
    gap: 8px;
    align-items: center;
    cursor: pointer;
    font: var(--s-reg);
}
.checkbox__input {
    display: none;
}
.checkbox__input:checked + .checkbox__toggle::before {
    background-color: var(--GrayTertiary);
    background-image: url('data:image/svg+xml,<svg width="6" height="5" viewBox="0 0 6 5" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.499674 3.16667L1.83301 4.16667L4.83301 0.5" stroke="white" stroke-linecap="round"/></svg>');
    background-size: 10px 11px;
    background-repeat: no-repeat;
    background-position: center;
}
.checkbox__toggle::before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    border: 0.5px solid var(--GrayTertiary);
    border-radius: 2px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 4px;
}
.rating__stars {
    /*display: flex;
    align-items: center;
    gap: 2px;*/
}
/*.rating__star {
    display: block;
    width: 16px;
    height: 16px;
    background: url('data:image/svg+xml,<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.27549 11.9188L11.4255 13.9188C11.8317 14.175 12.3317 13.7938 12.213 13.325L11.3005 9.73752C11.2758 9.63807 11.2797 9.53369 11.3118 9.43638C11.3439 9.33907 11.4028 9.2528 11.4817 9.18752L14.3067 6.83127C14.6755 6.52502 14.488 5.90627 14.0067 5.87502L10.3192 5.63752C10.2186 5.63166 10.1219 5.59663 10.0409 5.53669C9.95984 5.47675 9.89803 5.39451 9.86299 5.30002L8.48799 1.83752C8.45159 1.73745 8.38528 1.65102 8.29807 1.58994C8.21086 1.52886 8.10696 1.49609 8.00049 1.49609C7.89401 1.49609 7.79012 1.52886 7.7029 1.58994C7.61569 1.65102 7.54938 1.73745 7.51299 1.83752L6.13799 5.30002C6.10294 5.39451 6.04113 5.47675 5.96011 5.53669C5.87908 5.59663 5.78235 5.63166 5.68174 5.63752L1.99424 5.87502C1.51299 5.90627 1.32549 6.52502 1.69424 6.83127L4.51924 9.18752C4.5982 9.2528 4.6571 9.33907 4.68917 9.43638C4.72124 9.53369 4.72516 9.63807 4.70049 9.73752L3.85674 13.0625C3.71299 13.625 4.31299 14.0813 4.79424 13.775L7.72549 11.9188C7.80768 11.8665 7.90308 11.8387 8.00049 11.8387C8.0979 11.8387 8.19329 11.8665 8.27549 11.9188Z" fill="%23E9A038"/></svg>') center no-repeat;
}*/

.rating__stars {
    --star-size: 16px;
    --star-color: #E0E0E0;
    --star-fill: #E9A038;
  
    position: relative;
    display: inline-block;
    font-size: var(--star-size);
    line-height: 1;
  }
  .rating__star {
    display: none;
  }

  .rating__stars::before {
    content: "★★★★★";
    letter-spacing: 4px;
    color: var(--star-color);
  }
  
 
  .rating__stars::after {
    content: "★★★★★";
    letter-spacing: 4px;
    color: var(--star-fill);
  
    position: absolute;
    top: 0;
    left: 0;
    width: calc(var(--rating) / 5 * 100%);
    overflow: hidden;
    white-space: nowrap;
  }

.rating__text {
    font-size: 12px;
    line-height: 1;
    color: var(--GrayTertiary);
}

.specification {
    max-width: 465px;
}
.specification__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    font-size: 16px;
    font-weight: 400;
    padding: 4px 0;
}
.specification__label {
    color: #434343;
    width: calc(46% - 8px);
    line-height: 1.5;
    font-weight: 300;
}
.specification__value {
    color: var(--PrimaryBlack);
    width: calc(54% - 8px);
    line-height: 1.2;
}

.swiper-pagination {
    bottom: 0;
    text-align: center;
    max-width: 1360px;
    transform: none;
    left: 0;
}

.swiper-pagination-bullet {
    font-size: 0;
    color: transparent;
    width: 17px;
    height: 8px;
    border-radius: 7px;
    background: #5a5a5a;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    transition: width 0.5s ease-in-out;
    background: var(--PrimaryGreen);
    width: 52px;
    opacity: 1;
}

.main-content__product-sorting {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    margin-bottom: 25px;
}
.main-content__product-sorting label {
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    color: var(--GrayQuaternary);
}
.main-content__product-sorting select {
    border: none;
    outline: none;
    background-color: transparent;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    color: var(--PrimaryBlack);
}

.header {
    width: 100%;
    border-bottom: 1px solid #F1F1F1;
}
.header__top {
    padding: 10px 0;
    background-color: var(--PrimaryBlack);
}
.header__top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}
.header__top-contacts {
    display: flex;
    align-items: center;
    gap: 50px;
}
.header__top-contacts-button {
    font: var(--s-reg);
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}
.header__top-contacts-button:hover {
    opacity: 0.8;
}
.header__top-compare {
    position: relative;
    margin-left: auto;
    display: flex;
    align-items: center;
    text-decoration: none;
}
.header__top-compare #menu-compare {
    display: inline-flex;
    align-items: center;
    line-height: 1;
    text-decoration: none;
    position: absolute;
    top: -4px;
    right: -8px;
}
.header__top-compare #menu-compare .btn__count {
    position: static;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    padding: 0;
    color: #FFF;
    font-size: 12px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
    background-color: #428E19;
    border-radius: 999px;
    text-decoration: none;
    vertical-align: middle;
    font-family: "Museo Sans Cyrillic", sans-serif;
    white-space: nowrap;
}
.header .icon-mobile-close-search {
    display: none;
}
.header__mobile-search {
    display: none;
}
.header__search {
    position: relative;
    width: 100%;
    max-width: 430px;
}
.header__search .search-field {
    display: flex;
    width: calc(100% - 32px);
    padding: 10px 16px;
    align-items: center;
    gap: 8px;
    position: relative;
    background-color: #f5f5f5;
    border-radius: 2px;
}
.header__search .icon-search {
    position: relative;
    width: 24px;
    height: 24px;
    margin-top: -2px;
    margin-bottom: -2px;
}
.header__search input {
    border: none;
    background: transparent;
    outline: none;
    flex: 1;
    font: var(--s-reg);
    color: var(--PrimaryBlack);
}
.header__search input::placeholder {
    color: var(--Gray);
}
.header__quick-search {
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    z-index: 20;
    width: calc(100% - 2px);
    max-height: 420px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 2px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.header__quick-search-content {
    padding: 8px 0;
}
.header__quick-search .search-site__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    text-decoration: none;
    color: var(--PrimaryBlack);
    border-top: 1px solid #f3f3f3;
}
.header__quick-search .search-site__item:first-child {
    border-top: 0;
}
.header__quick-search .search-site__item:hover {
    background: #f7f7f7;
}
.header__quick-search .search-site__image {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header__quick-search .search-site__image img {
    max-width: 40px;
    max-height: 40px;
    object-fit: contain;
}
.header__quick-search .search-site__item p {
    margin: 0;
    flex: 1;
    font: var(--s-reg);
}
.header__quick-search .search-site__item span {
    text-align: right;
    font: var(--s-reg);
    color: #646464;
}
.header__quick-search-empty {
    padding: 10px 12px;
    font: var(--s-reg);
    color: #646464;
}
.header header-drawer {
    display: none;
}
.header__mobile-compare {
    display: none;
}
.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    gap: 10px;
}
.header__menu-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}
.header__logo {
    min-width: 151px;
    display: flex;
    align-items: center;
}
.header__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.header__menu-list {
    list-style: none;
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 30px;
    width: max-content;
}
.header__menu-list .mega-menu {
    font-size: 1rem;
    font-weight: 500;
    border: none;
}
.header__menu-list .mega-menu[open] {
    color: var(--SecondaryGreen);
}
.header__menu-list li a {
    font: var(--reg);
    line-height: 1;
    color: var(--PrimaryBlack);
    text-decoration: none;
    transition: all 0.3s ease;
}
.header__menu-list li a:hover {
    color: var(--PrimaryGreen);
}
.header__lang {
    position: relative;
    padding: 0 4px;
}
.header__lang-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font: var(--s-reg);
    font-weight: 800;
    color: var(--PrimaryWhite);
    transition: all 0.3s ease;
}
.header__lang-button:hover {
    color: var(--PrimaryGreen);
}
.header__lang-button[aria-expanded=true] .header__lang-icon {
    transform: rotate(180deg);
}
.header__lang-current {
    font: var(--s-reg);
    color: var(--PrimaryGreen);
}
.header__lang-icon {
    transition: transform 0.3s ease;
    color: currentColor;
}
.header__lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    list-style: none;
    padding: 8px 0;
    margin: 0;
    background-color: var(--PrimaryWhite);
    border-radius: 4px;
    min-width: 60px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.header__lang[data-open=true] .header__lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.header__lang-option {
    display: block;
    padding: 8px 16px;
    font: var(--s-reg);
    color: var(--PrimaryBlack);
    text-decoration: none;
    transition: all 0.3s ease;
}
.header__lang-option:hover {
    opacity: 0.8;
    background-color: rgba(255, 255, 255, 0.1);
}
.header__lang-option[data-active=true] {
    opacity: 0.8;
    background-color: rgba(255, 255, 255, 0.15);
}
.header .menu-drawer-button {
    list-style: none;
}
.header .menu-drawer {
    position: absolute;
    background-color: var(--PrimaryBlack);
    padding: 50px 24px;
    width: calc(100% - 48px);
    height: calc(100vh - 100px);
    top: 0;
    right: 0;
    z-index: 9;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}
.header .menu-drawer__close {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    z-index: 10;
}
.header .menu-drawer__close svg path {
    fill: var(--PrimaryWhite);
}
.header .menu-drawer__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.header .menu-drawer__list li a {
    font: var(--reg);
    color: var(--PrimaryWhite);
    text-decoration: none;
}
.header .menu-drawer__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.header .menu-drawer__actions p {
    font: var(--reg);
    color: var(--PrimaryWhite);
}
.header .menu-drawer__actions-button {
    font: var(--s-reg);
    color: var(--PrimaryWhite);
    text-decoration: none;
    transition: all 0.3s ease;
}
.header .menu-drawer__lang {
    list-style: none;
    display: flex;
}
.header .menu-drawer__lang li:not(:last-child) {
    margin-right: 7px;
    border-right: 1px solid var(--PrimaryWhite);
}
.header .menu-drawer__lang li:not(:last-child) a {
    padding-right: 7px;
}
.header .menu-drawer__lang-option {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2;
    color: var(--PrimaryWhite);
    text-decoration: none;
    transition: all 0.3s ease;
}
.header .menu-drawer__lang-option.active {
    color: var(--PrimaryGreen);
}
.header .mega-menu__title {
    list-style: none;
    cursor: pointer;
}
.header .mega-menu__content {
    margin-top: 10px;
    position: absolute;
    left: 0;
    width: calc(100% - 40px);
    z-index: 9;
    background-color: #fff;
    padding: 30px 20px;
    border-bottom: 1px solid #F1F1F1;
}
.header .mega-menu__items {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}
.header .mega-menu__item {
    display: flex;
    align-items: flex-start;
    gap: 4%;
    max-width: 190px;
    width: calc(13% - 10px);
    padding: 0px 10px 0px 0;
    border-right: 1px solid #F1F1F1;
}
.header .mega-menu__item:last-child {
    border: none;
}
.header .mega-menu__item-content {
   
}
.header .mega-menu__item-title {
    font-size: 16px;
    color: var(--SecondaryGreen);
    font-weight: 500;
}
.header .mega-menu__item-list {
    margin-top: 16px;
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.header .mega-menu__item-list li a {
    font-size: 14px;
    text-decoration: none;
}
.header .mega-menu__item-picture {
    margin-top: 20px;
    position: relative;
    height: 100%;
    max-height: 90px;
    max-width: 90px;
    width: 100%;
}
.header .mega-menu__item-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.menu-drawer__menu-item {
    list-style: none;
    color: #fff;
}
/* Nested mobile menu */
.header .menu-drawer__list > li > details {
    margin: 0;
    padding: 0;
}
.header .menu-drawer__nested summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font: var(--reg);
    color: var(--PrimaryWhite);
    text-decoration: none;
    padding: 0;
    gap: 8px;
}
.header .menu-drawer__nested summary::-webkit-details-marker,
.header .menu-drawer__nested summary::marker {
    display: none;
}
.header .menu-drawer__submenu {
    position: absolute;
    top: 0;
    right: 0;
    width: calc(100% - 48px);
    height: 100%;
    padding: 50px 24px 24px;
    background-color: var(--PrimaryBlack);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}
.header .menu-drawer__submenu--visible {
    transform: translateX(0);
}
.header .menu-drawer__submenu--closing {
    transform: translateX(100%);
}
.header .menu-drawer__submenu--level-1 {
    padding-left: 24px;
    z-index: 1;
}
.header .menu-drawer__submenu--level-2 {
    padding-left: 24px;
    border-left: none;
    z-index: 2;
}
.header .menu-drawer__close-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    padding: 0 0 16px 0;
    margin-bottom: 8px;
    cursor: pointer;
    font-size: 14px;
    color: var(--SecondaryGreen);
    text-decoration: none;
}
.header .menu-drawer__close-button svg {
    flex-shrink: 0;
}
.header .menu-drawer__menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.header .menu-drawer__menu .menu-drawer__menu-item {
    font: var(--reg);
    color: var(--PrimaryWhite);
    text-decoration: none;
}
.header .menu-drawer__menu li details summary {
    font: var(--reg);
}
@media (max-width: 1520px) and (min-width: 992px) {
    .header__container {
        gap: 25px;
    }
    .header__menu-list li a {
        font-size: 16px;
    }
    .header__search input {
        font-size: 16px;
    }
}
@media (max-width: 1250px) {
    .header__menu-list {
        gap: 15px;
    }
}
@media (max-width: 1130px) {
    .header__top {
        display: none;
    }
    .header__logo {
        min-width: unset;
    }
    .header__top-compare {
        display: none;
    }
    .header__container {
        padding: 10px 0 10px 0;
    }
    .header__mobile-search {
        display: flex;
    }
    .header__mobile-compare {
        display: flex;
        margin-left: 10px;
    }
    .header__menu-container {
        display: none;
    }
    .header .icon-mobile-close-search {
        display: block;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    .header header-drawer {
        display: block;
        margin-left: 10px;
    }
    .header .menu-drawer-container {
        height: 40px;
    }
    .header__search {
        display: none;
        position: absolute;
        width: calc(100% - 40px);
        background-color: #fff;
        max-width: 100%;
    }
    .header__search .search-field {
        width: calc(100% - 75px);
    }
    .header__menu, .header__actions-button {
        display: none;
    }
    .header__logo {
        margin-left: 0px;
        margin-right: auto;
        width: 133px;
    }
    .header .menu-drawer__lang {
        margin-top: 24px;
    }
}
.footer {
    padding: 100px 0 45px 0;
    background-color: var(--SecondaryBlack);
    color: var(--PrimaryWhite);
}
.footer__blocks-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 50px;
    padding-bottom: 50px;
}
.footer__block {
    width: 100%;
}
.footer__block-logo {
    display: flex;
    max-width: 325px;
    flex-direction: column;
    gap: 30px;
}
.footer__block-contacts {
    max-width: 195px;
    display: flex;
    flex-direction: column;
}
.footer__logo-text {
    font: var(--s-reg);
    color: var(--PrimaryWhite);
    margin-bottom: 0;
}
.footer__social-links {
    display: flex;
    gap: 14px;
}
.footer__social-link svg rect {
    transition: all 0.3s ease;
}
.footer__social-link:hover svg rect {
    fill: var(--PrimaryGreen);
}
.footer__block-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 18px;
    line-height: 1.2;
    color: var(--PrimaryWhite);
    margin-bottom: 24px;
}
.footer__block-links {
    max-width: 210px;
}
.footer__contacts-address {
    font: var(--s-reg);
    color: var(--GraySecondary);
}
.footer__contacts-button {
    display: block;
    font: var(--s-reg);
    color: var(--GraySecondary);
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 10px;
}
.footer .menu-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
}
.footer .menu-list__item a {
    font: var(--s-reg);
    color: var(--GraySecondary);
    text-decoration: none;
    transition: all 0.3s ease;
}
.footer .menu-list__item a:hover {
    color: var(--PrimaryGreen);
}
.footer__bottom {
    padding-top: 40px;
    border-top: 1px solid var(--GraySecondary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.footer__bottom-menu.menu-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 40px;
}

@media (max-width: 1520px) and (min-width: 992px) {
    .footer {
        padding: 60px 0 45px 0;
    }
}
@media (max-width: 991px) {
    .footer {
        padding: 50px 0 50px 0;
    }
    .footer__blocks-wrapper {
        column-gap: 20px;
    }
    .footer__block-links {
        max-width: calc(50% - 10px);
    }
    .footer__bottom-menu.menu-list {
        gap: 10px;
    }
}
.hero {
    width: 100%;
    position: relative;
}
.hero__slider-item-picture {
    padding: 100px 0 75px 0;
    position: relative;
    width: 100%;
    height: calc(90vh - 326px);
    min-height: 350px;
}
.hero__slider-item-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero__slider-item-image--mobile {
    display: none;
}
.hero__content {
    max-width: 1360px;
    width: calc(100% - 40px);
    margin: 0 auto;
    padding: 0 20px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: var(--PrimaryWhite);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.hero__text-wrapper {
    width: 36%;
}
.hero__picture {
    width: 62%;
}
.hero__title {
    font: var(--h1);
    line-height: 1;
    margin-bottom: 30px;
    color: var(--PrimaryWhite);
    max-width: 480px;
}
.hero__desc {
    max-width: 480px;
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 40px;
    color: var(--GraySecondary);
}
.hero__button {
    min-width: 228px;
    text-align: center;
}
.hero__pagination.swiper-pagination {
    bottom: 7vh;
    text-align: right;
    max-width: 1360px;
    transform: translate(-50%, 0);
    left: 50%;
    padding: 0 20px;
    width: calc(100% - 40px);
}
.hero__pagination .swiper-pagination-bullet {
    font-size: 0;
    color: transparent;
    width: 17px;
    height: 8px;
    border-radius: 7px;
    background: #5a5a5a;
    opacity: 0.5;
}
.hero__pagination .swiper-pagination-bullet-active {
    transition: width 0.5s ease-in-out;
    background: var(--PrimaryGreen);
    width: 52px;
    opacity: 1;
}

@media (max-width: 1600px) {
    .hero__picture {
        text-align: right;
    }
    .hero__image {
        max-height: 500px;
        width: auto;
    }
}
@media (max-width: 1520px) and (min-width: 992px) {
    .hero__content {
        max-width: 1200px;
    }
    .hero__title {
        font-size: 52px;
    }
    .hero__desc {
        font-size: 24px;
    }
}
@media (max-width: 991px) {
    .hero__content {
        top: 50px;
        text-align: center;
        transform: translate(-50%, 0%);
        flex-direction: column;
        gap: 60px;
    }
    .hero__picture {
        width: 100%;
        text-align: center;
    }
    .hero__image {
        width: auto;
        height: auto;
        max-width: 100%;
    }
    .hero__text-wrapper {
        width: 100%;
    }
    .hero__title {
        font-size: 40px;
        margin: 0 auto 16px auto;
    }
    .hero__desc {
        font-size: 20px;
        line-height: 1.2;
        margin: 0 auto 24px auto;
    }
    .hero__button {
        min-width: 186px;
        max-width: 100%;
        padding: 16px 25px;
    }
    .hero__slider-item-picture {
        height: calc(100vh - 235px);
        min-height: 410px;
    }
    .hero__slider-item-image--mobile {
        display: block;
    }
    .hero__slider-item-image--desktop {
        display: none;
    }
    .hero__pagination.swiper-pagination {
        text-align: center;
    }
}
@media (max-width: 991px) and (min-width: 500px) {
    .hero__slider-item-picture {
        min-height: 640px;
    }
    .hero__content {
        gap: 30px;
    }
}
@media (max-width: 400px) {
    .hero__title {
        font-size: 38px;
    }
    .hero__desc {
        font-size: 18px;
    }
    .hero__desc br {
        display: none;
    }
    .hero__content {
        top: 50px;
        transform: translate(-50%, 0%);
        gap: 30px;
    }
}
.about-us {
    padding: 60px 0;
    background-image: url("../img/new-img/bg-about.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    position: relative;
}
.about-us__container {
    display: flex;
    gap: 4%;
    justify-content: space-between;
    align-items: center;
}
.about-us__content {
    width: 42%;
}
.about-us .title {
    text-align: left;
    line-height: 1;
    margin-bottom: 40px;
}
.about-us__content-text {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--PrimaryBlack);
}
.about-us__content-list {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}
.about-us__picture {
    width: 53%;
}
.about-us__picture img {
    width: 100%;
    height: auto;
}
.about-us__content-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    border: 2px solid var(--PrimaryGreen);
    padding: 20px;
    min-width: 171px;
    border-radius: 4px;
}
.about-us__content-item .number {
    margin-top: 30px;
    font-family: var(--font-primary);
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    color: var(--PrimaryBlack);
}
.about-us__content-item .text {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--PrimaryBlack);
}

@media (max-width: 1520px) and (min-width: 992px) {
    .about-us .title {
        margin-bottom: 30px;
    }
    .about-us__content-list {
        margin-top: 30px;
    }
}
@media (max-width: 991px) {
    .about-us {
        padding: 40px 0;
    }
    .about-us__container {
        flex-direction: column;
        gap: 40px;
    }
    .about-us__content {
        width: 100%;
    }
    .about-us__content-list {
        gap: 10px;
    }
    .about-us__content-item {
        justify-content: flex-start;
        min-width: unset;
        width: calc(50% - 30px);
        padding: 10px;
        max-width: 171px;
    }
    .about-us__content-item svg {
        width: 110px;
    }
    .about-us__content-item .number {
        margin-top: 15px;
        font-size: 32px;
    }
    .about-us__content-item .text {
        font-size: 14px;
        line-height: 1;
    }
    .about-us__picture {
        width: 100%;
    }
}
.our-products {
    position: relative;
}
.our-products__section-content {
    position: absolute;
    top: 5vh;
    left: 50%;
    width: calc(100% - 40px);
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
    padding: 0 20px;
}
.our-products__section-content .title {
    color: var(--PrimaryWhite);
    margin-bottom: 30px;
}
.our-products__section-content-text {
    color: var(--GraySecondary);
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
}
.our-products__tabs-list {
    margin-top: 50px;
    display: flex;
    gap: 60px;
    justify-content: center;
}
.our-products__tabs-item-button {
    cursor: pointer;
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.4;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0 5px;
}
.our-products__tabs-item-button:hover {
    color: var(--PrimaryGreen);
    border-bottom: 2px solid var(--PrimaryGreen);
}
.our-products__tabs-item-button.active {
    color: var(--PrimaryGreen);
    border-bottom: 2px solid var(--PrimaryGreen);
}
.our-products__tabs-item-button.active + .our-products__sub-list {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}
.our-products__tabs-divider {
    font-size: 48px;
    display: flex;
    align-items: center;
    color: var(--PrimaryWhite);
}
.our-products__slider-item-picture {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 768px;
}
.our-products__slider-item-picture:before {
    content: "";
    display: block;
    padding-bottom: 100vh;
}
.our-products__slider-item-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}
.our-products__slider-item-image--mobile {
    display: none;
}
.our-products__slider-item-content {
    position: absolute;
    bottom: 5vh;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: max-content;
    max-width: calc(100% - 40px);
    padding: 0 20px;
}
.our-products__slider-item-description {
    font-family: var(--font-primary);
    font-size: 36px;
    font-weight: 500;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 36px;
}
.our-products__slider-item-button {
    min-width: 230px;
}
.our-products__sub-list {
    margin-top: 60px;
    position: absolute;
    width: calc(100% - 40px);
    display: flex;
    gap: 80px;
    left: 0;
    padding: 0 20px;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    /*transform: translateY(30px);*/
}
.our-products__sub-item {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    color: #fff;
    text-decoration: none;
    padding: 0 5px;
    transition: all 0.3s ease;
}
.our-products__sub-item:empty {
    display: none;
}
.our-products__sub-item.active {
    border-bottom: 2px solid #fff;
}
.our-products__sub-item:hover {
    border-bottom: 2px solid #fff;
}

@media (min-width: 1600px) {
    .our-products__section-content {
        top: 100px;
    }
    .our-products__slider-item-content {
        bottom: 100px;
    }
}
@media (max-width: 1520px) and (min-width: 992px) {
    .our-products__tabs-list {
        margin-top: 30px;
    }
    .our-products__tabs-item-button {
        font-size: 36px;
    }
    .our-products__tabs-divider {
        font-size: 36px;
    }
    .our-products__sub-list {
        margin-top: 40px;
    }
    .our-products__sub-item {
        font-size: 20px;
    }
    .our-products__slider-item-description {
        font-size: 28px;
        margin-bottom: 30px;
    }
    .our-products__section-content {
        top: 6vh;
    }
    .our-products__slider-item-content {
        bottom: 6vh;
    }
}
@media (max-width: 991px) {
    .our-products__section-content {
        max-width: calc(100% - 40px);
    }
    .our-products__section-content .title {
        margin-bottom: 20px;
    }
    .our-products__section-content-text {
        font-size: 14px;
    }
    .our-products__tabs-list {
        margin-top: 40px;
        overflow-y: auto;
        gap: 22px;
        padding-bottom: 20px;
        justify-content: space-around;
    }
    .our-products__tabs-list::-webkit-scrollbar {
        display: none;
    }
    .our-products__section-content {
        top: 7vh;
    }
    .our-products__slider-item-content {
        bottom: 9vh;
    }
    .our-products__tabs-item-button {
        font-size: 24px;
    }
    .our-products__slider-item-description {
        font-size: 20px;
    }
    .our-products__sub-list {
        margin-top: 30px;
        overflow-y: scroll;
        gap: 20px;
        justify-content: space-evenly;
    }
    .our-products__sub-item {
        min-width: max-content;
        font-size: 14px;
    }
    .our-products__tabs-divider {
        font-size: 18px;
    }
}
@media (max-width: 574px) {
    .our-products__slider-item-image--mobile {
        display: block;
    }
    .our-products__slider-item-image--desktop {
        display: none;
    }
}
.why-choose-us__container {
    display: flex;
    background-color: #f1f1f1;
}
.why-choose-us__picture {
    width: 50%;
    position: relative;
}
.why-choose-us__picture-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    position: absolute;
    left: 0;
    top: 0;
}
.why-choose-us__content {
    width: calc(50% - 120px);
    padding: 100px 20px 100px 100px;
    background-color: var(--PrimaryWhite);
}
.why-choose-us__content .title {
    text-align: left;
    margin-bottom: 30px;
}
.why-choose-us__content-text {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--PrimaryBlack);
}
.why-choose-us__content-list {
    margin-top: 60px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
}
.why-choose-us__content-item {
    max-width: 190px;
    padding: 20px 30px;
    border: 1px solid var(--PrimaryGreen);
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.why-choose-us__content-item-link {
    padding: 20px;
    max-width: 208px;
    width: 100%;
    text-align: center;
}
.why-choose-us__content-item-title {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--PrimaryBlack);
}
.why-choose-us__content-item-text {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--PrimaryBlack);
}

@media (max-width: 1520px) and (min-width: 992px) {
    .why-choose-us__content {
        width: calc(50% - 70px);
        padding: 60px 20px 60px 50px;
    }
    .why-choose-us__content-list {
        margin-top: 30px;
    }
}
@media (max-width: 1200px) and (min-width: 992px) {
    .why-choose-us__content {
        width: calc(50% - 40px);
        padding: 60px 20px 60px 20px;
    }
    .why-choose-us__content-item {
        padding: 20px 15px;
    }
    .why-choose-us__content-item-link {
        padding: 20px 15px;
        max-width: 190px;
    }
    .why-choose-us__content-list {
        gap: 12px;
    }
}
@media (max-width: 991px) {
    .why-choose-us__container {
        flex-direction: column-reverse;
    }
    .why-choose-us__content-item-link {
        height: fit-content;
        padding: 16px 12px;
        display: block;
        max-width: 190px;
        width: calc(50% - 35px);
        font-size: 13px;
    }
    .why-choose-us__content {
        width: calc(100% - 40px);
        padding: 80px 20px 0 20px;
    }
    .why-choose-us__content .title {
        margin-bottom: 20px;
        text-align: center;
    }
    .why-choose-us__content-text {
        text-align: center;
    }
    .why-choose-us__picture {
        width: 100%;
    }
    .why-choose-us__picture:before {
        content: "";
        display: block;
        padding-bottom: 100%;
    }
    .why-choose-us__content-list {
        margin-top: 30px;
        justify-content: center;
        gap: 10px;
        margin-bottom: 30px;
    }
    .why-choose-us__content-item {
        width: calc(50% - 31px);
        gap: 10px;
        padding: 16px 12px;
    }
    .why-choose-us__content-item svg {
        width: 40px;
        height: 40px;
    }
    .why-choose-us__content-item-title {
        font-size: 18px;
    }
    .why-choose-us__content-item-text {
        font-size: 14px;
    }
}
.news {
    padding: 100px 0;
}
.news__page {
    padding-top: 36px;
}
.news .title {
    text-align: left;
    margin-bottom: 30px;
}
.news__content-wrapper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}
.news__text {
    font: var(--reg);
}
.news__all-news-button {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: var(--PrimaryGreen);
    font: var(--reg);
    transition: all 0.3s ease;
}
.news__all-news-button:hover {
    opacity: 0.7;
}
.news__list {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: flex-start;
}
.news__item {
    width: calc(33.333% - 33.333px);
}
.news__item-link {
    text-decoration: none;
    color: var(--PrimaryBlack);
}
.news__item-picture {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
}
.news__item-picture:before {
    content: "";
    display: block;
    padding-bottom: 72%;
}
.news__item-image {
    border-radius: 4px;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border: 0.5px solid #ccc;
}
.news__item-date {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--Gray);
    margin-bottom: 20px;
}
.news__item-title {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
}
.news__item-text {
    font: var(--s-reg-light);
}

@media (max-width: 1520px) and (min-width: 992px) {
    .news {
        padding: 60px 0;
    }
    .news__page {
        padding-top: 36px;
    }
}
@media (max-width: 991px) {
    .news {
        padding: 40px 0;
    }
    .news__page {
        padding-top: 36px;
    }
    .news .title {
        text-align: center;
        margin-bottom: 20px;
    }
    .news__text {
        text-align: center;
        font-size: 14px;
    }
    .news__all-news-button {
        justify-content: flex-end;
    }
    .news__content-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    .news__list {
        flex-direction: column;
        gap: 40px;
    }
    .news__item {
        width: 100%;
    }
}
.category__container {
    display: flex;
    gap: 35px;
}
.category__sidebar {
    width: 25%;
}
.category__content {
    width: 75%;
}
.category__content-products--full-width {
    width: 100%;
}
.category__filter--mobile {
    display: none;
}
.category .sidebar__title {
    padding: 16px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    background-color: var(--PrimaryWhite);
    justify-content: space-between;
    margin-bottom: 20px;
    width: calc(25% - 35px);
    height: max-content;
    gap: 15px;
}
@media (max-width: 991px) {
    .category .sidebar__title--desktop {
        display: none;
    }
}
.category .sidebar__title span {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    color: var(--PrimaryBlack);
}
.category .sidebar__title-button {
    background: none;
    border: none;
    display: flex;
    cursor: pointer;
}
.category .product-filter {
    padding-left: 14px;
}
.category .product-filter__title {
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    color: var(--PrimaryBlack);
    padding: 12px 24px 12px 0;
    position: relative;
    cursor: pointer;
    border-bottom: 0.5px solid var(--GraySecondary);
}
.category .product-filter__title::after {
    content: "";
    position: absolute;
    right: 6px;
    top: 50%;
    display: block;
    width: 12px;
    height: 6px;
    background: url('data:image/svg+xml,<svg width="14" height="9" viewBox="0 0 14 9" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12.707 0.707153L6.70703 6.70715L0.707031 0.707154" stroke="%231B1B1B" stroke-width="2"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: translateY(-50%);
}
.category .product-filter__title.active::after {
    transform: translateY(-50%) rotate(180deg);
}
.category .product-filter__title.active + .product-filter__content {
    display: block;
}
.category .product-filter__item {
    padding: 4px 0;
}
.category .product-filter__content {
    display: none;
    margin-top: 24px;
    max-height: 115px;
    overflow-y: auto;
}
.category .product-filter__list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.category .product-filter__group {
    margin-bottom: 24px;
}
.category .product-filter__clear-filters {
    align-items: center;
    gap: 10px;
    padding: 20px 24px;
    background-color: var(--PrimaryWhite);
    border-radius: 4px;
    justify-content: space-between;
}
.category .product-filter__clear-filters-list {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}
.category .product-filter__clear-filters-item {
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    color: var(--PrimaryBlack);
    padding-right: 23px;
    background-image: url('data:image/svg+xml,<svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M9.375 2.625L2.625 9.375" stroke="%238A8A8A" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M9.375 9.375L2.625 2.625" stroke="%238A8A8A" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-repeat: no-repeat;
    background-position: right 2px center;
    cursor: pointer;
}
.category .product-filter__clear-filters-button {
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: underline;
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    color: var(--PrimaryBlack);
}
.category .product-filter__values {
    display: flex;
    align-items: center;
    gap: 10px;
}
.category .product-filter__field .field__label {
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    color: #9F9F9F;
}
.category .product-filter__field .field__input {
    margin-top: 8px;
    width: 95px;
    border: 0.5px solid var(--GraySecondary);
    border-radius: 2px;
    padding: 8px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    color: var(--PrimaryBlack);
}
.category .product-filter__field .field__input:focus-visible {
    outline: none;
    border-color: var(--PrimaryGreen);
}
.category .product-filter__field .field__input.js-price-min {
    text-align: left;
}
.category .product-filter__field .field__input.js-price-max {
    text-align: right;
}
.category .product-filter__range {
    display: none;
}
.category__sort-and-count {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 20px 0 20px 24px;
}
.category__products-count {
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: #A4A4A4;
}
.category__products-count-number {
    color: var(--PrimaryBlack);
}
.category__products-sort-select {
    border: none;
}
.category__products-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 14px;
    row-gap: 32px;
}
.category__sort-icon--mobile {
    display: none;
}

@media (max-width: 991px) {
    .category__title {
        padding: 0;
    }
    .category__sidebar {
        display: none;
    }
    .category__content {
        width: 100%;
    }
    .category__sort-and-count {
        padding: 20px 0 20px 0;
    }
    .category__products-list {
        grid-template-columns: repeat(1, 1fr);
        row-gap: 20px;
    }
    .category__sort-and-count {
        gap: 15px;
        flex-wrap: wrap;
    }
    .category__products-count {
        order: 3;
        width: 100%;
    }
    .category__products-sort {
        width: calc(50% - 40px);
        display: flex;
        align-items: center;
        gap: 10px;
        order: 2;
        background-color: var(--PrimaryWhite);
        padding: 10px 16px;
        color: var(--PrimaryBlack);
        font-weight: 500;
        font-size: 16px;
    }
    .category__products-sort-select {
        background-color: var(--PrimaryWhite);
        color: var(--PrimaryBlack);
        font-weight: 500;
        font-size: 16px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        width: 100%;
    }
    .category__filter--mobile {
        display: flex;
        align-items: center;
        gap: 10px;
        width: calc(50% - 8px);
        order: 1;
        padding: 10px 16px;
        background-color: var(--PrimaryWhite);
        color: var(--PrimaryBlack);
        font-weight: 500;
        font-size: 16px;
        border: none;
    }
    .category .product-filter__clear-filters--desktop {
        display: none;
    }
    .category__sort-icon--mobile {
        min-width: 22px;
        display: block;
    }
}
.breadcrumbs {
    padding: 22px 0;
}
.breadcrumbs__list {
    display: flex;
    align-items: center;
    list-style: none;
    flex-wrap: wrap;
    row-gap: 10px;
}
.breadcrumbs__item {
    font: var(--s-reg);
}
.breadcrumbs__item-link {
    text-decoration: none;
    color: var(--Gray);
    transition: all 0.3s ease;
}
.breadcrumbs__item-link:hover {
    color: var(--PrimaryGreen);
}
.breadcrumbs__item-separator {
    margin: 0 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 991px) {
    .breadcrumbs__item-separator {
        margin: 0 15px;
    }
}
.product-card {
    display: flex;
    flex-direction: column;
    padding: 0;
    border: 1px solid #E8E8E8;
    background-color: var(--PrimaryWhite);
    border-radius: 4px;
}
.product-card__picture {
    padding: 25px 15px 15px 15px;
    height: auto;
    position: relative;
    background-color: #fff;
}
.product-card__picture:before {
    content: "";
    display: block;
    padding-bottom: 62%;
}
.product-card__image {
    position: absolute;
    left: 15px;
    top: 25px;
    width: calc(100% - 30px);
    height: calc(100% - 40px);
    object-fit: contain;
    object-position: center;
}
.product-card__content {
    display: flex;
    flex-direction: column;
    height: calc(100% - 30px);
    padding: 10px 15px 20px 15px;
}
.product-card__content a {
    text-decoration: none;
}
.product-card__title {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--PrimaryBlack);
}
.product-card__rating {
    margin-top: 6px;
}
.product-card__rating.rating {
    opacity: 1; 
}
.product-card__price {
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    color: var(--PrimaryBlack);
}
.product-card__price .price__currency {
    font-size: 18px;
    font-weight: 500;
    margin-left: 5px;
}
.product-card__actions {
    margin-top: 16px;
    display: flex;
    gap: 12px;
    justify-content: space-between;
}
.product-card__button {
    padding: 14px 10px;
    font-size: 13px;
    border-radius: 3px;
    cursor: pointer;
    min-width: fit-content;
    width: 100%;
    text-align: center;
}
.product-card__description {
    margin-top: 16px;
}
.product-card__desc-list {
    display: flex;
    flex-direction: column;
    padding-left: 15px;
}
.product-card__desc-item {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.3;
    color: var(--GrayTertiary);
}
.product-card__desc-item .product-card__spec-measure {
    display: none;
}
.product-card__price-compare-wrapper {
    margin-top: auto;
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}
.product-card__compare {
    font-size: 14px;
}

.featured-products {
    padding: 100px 0;
}
.featured-products__list {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1.57fr 1fr;
    grid-template-rows: 1fr 1fr;
    row-gap: 40px;
    column-gap: 50px;
}
.featured-products__item {
    display: flex;
    flex-direction: column;
    position: relative;
    gap: 20px;
    background-color: var(--PrimaryWhite);
    text-align: center;
    justify-content: center;
}
.featured-products__item .button {
    width: calc(100% - 82px);
    max-width: 178px;
}
.featured-products__item:before {
    content: "";
    display: block;
    background-image: url('data:image/svg+xml,<svg width="82" height="91" viewBox="0 0 82 91" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H82V58.3957L41 91L0 58.3957V0Z" fill="%23428E19"/><path d="M19.9466 46V31.8H22.5266L27.9066 40C28.0666 40.2533 28.2399 40.5667 28.4266 40.94C28.6266 41.3 28.7866 41.6 28.9066 41.84L29.0866 42.2H29.1266C29.0332 41.2933 28.9866 40.56 28.9866 40V31.8H31.5466V46H28.9866L23.6066 37.82C23.4466 37.5667 23.2666 37.26 23.0666 36.9C22.8799 36.5267 22.7266 36.22 22.6066 35.98L22.4266 35.62H22.3866C22.4799 36.5267 22.5266 37.26 22.5266 37.82V46H19.9466ZM35.0052 46V31.8H43.5052V34.02H37.5852V37.74H42.3652V39.96H37.5852V43.78H43.8252V46H35.0052ZM48.6523 46L45.1123 31.8H47.8123L50.0123 41.62L50.2523 43.12H50.2923C50.3457 42.6667 50.4457 42.1667 50.5923 41.62L53.1323 31.8H55.2923L57.8123 41.62L58.1123 43.12H58.1523C58.179 42.6533 58.2523 42.1533 58.3723 41.62L60.7323 31.8H63.3923L59.7123 46H56.8123L54.5923 37.6L54.2323 35.74H54.1723C54.079 36.3667 53.9523 36.9867 53.7923 37.6L51.5923 46H48.6523Z" fill="white"/></svg>');
    width: 82px;
    height: 91px;
    position: absolute;
    left: 21px;
    top: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
}
.featured-products__item:nth-child(1) {
    grid-row: 1/3;
    padding: 100px;
}
.featured-products__item:nth-child(1) .button {
    width: 100%;
    max-width: calc(100% - 82px);
}
.featured-products__item:nth-child(2):before {
    width: 61px;
    height: 68px;
}
.featured-products__item:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
    padding: 30px 24px;
}
.featured-products__item:nth-child(2) .button {
    padding: 13px 40px;
}
.featured-products__item:nth-child(2) .featured-products__item-picture:before {
    padding-bottom: 47%;
}
.featured-products__item:nth-child(3):before {
    width: 61px;
    height: 68px;
}
.featured-products__item:nth-child(3) .button {
    padding: 13px 40px;
}
.featured-products__item:nth-child(3) .featured-products__item-picture:before {
    padding-bottom: 47%;
}
.featured-products__item:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
    padding: 30px 24px;
}
.featured-products__item-picture {
    width: 100%;
    position: relative;
}
.featured-products__item-picture:before {
    content: "";
    display: block;
    padding-bottom: 62%;
}
.featured-products__item-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

@media (max-width: 1520px) and (min-width: 992px) {
    .featured-products {
        padding: 80px 0;
    }
    .featured-products__list {
        row-gap: 30px;
        column-gap: 40px;
    }
}
@media (max-width: 992px) {
    .featured-products {
        padding: 60px 0;
    }
    .featured-products__list {
        display: flex;
        flex-wrap: wrap;
        row-gap: 20px;
        column-gap: 15px;
    }
    .featured-products__item-title {
        font-size: 16px;
    }
    .featured-products__item {
        padding: 20px 10px;
    }
    .featured-products__item:nth-child(1) {
        padding: 30px 10px;
        width: 100%;
    }
    .featured-products__item:nth-child(1) .featured-products__item-title {
        font-size: 20px;
    }
    .featured-products__item:nth-child(1):before {
        width: 46px;
        height: 51px;
    }
    .featured-products__item:nth-child(2) {
        padding: 20px 10px;
        width: calc(50% - 28px);
    }
    .featured-products__item:nth-child(2) .featured-products__item-title {
        min-height: 60px;
    }
    .featured-products__item:nth-child(2) .button {
        padding: 14px 20px;
    }
    .featured-products__item:nth-child(2):before {
        width: 42px;
        height: 47px;
    }
    .featured-products__item:nth-child(3) {
        padding: 20px 10px;
        width: calc(50% - 28px);
    }
    .featured-products__item:nth-child(3) .featured-products__item-title {
        min-height: 60px;
    }
    .featured-products__item:nth-child(3) .button {
        padding: 14px 20px;
    }
    .featured-products__item:nth-child(3):before {
        width: 42px;
        height: 47px;
    }
    .featured-products__item {
        width: calc(50% - 28px);
    }
    .featured-products__item .button {
        padding: 14px 20px;
        width: calc(100% - 42px);
        max-width: 218px;
    }
}
@media (max-width: 380px) {
    .featured-products__item {
        width: 100%;
    }
    .featured-products__item:nth-child(2) {
        width: 100%;
    }
    .featured-products__item:nth-child(3) {
        width: 100%;
    }
}
.product__container {
    display: flex;
    gap: 5%;
    justify-content: space-between;
    padding: 40px 0;
}
.product__gallery {
    width: 42%;
}
.product__main-gallery .swiper-slide {
    cursor: pointer;
}
.product__gallery-nav {
    position: absolute;
    top: 50%;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transform: translateY(-50%);
}
.product__gallery-nav svg {
    width: 24px;
    height: 42px;
    opacity: 0.6;
 }
.product__gallery-next {
    right: 0;
}
.product__gallery-prev {
    left: 0;
}
.product__gallery-thumbs {
    margin-top: 20px;
}
.product__gallery-thumb-item {
    position: relative;
    border: 1px solid #C8C9C7;
    border-radius: 2px;
    box-sizing: border-box;
    opacity: 0.65;
}
.product__gallery-thumb-item.swiper-slide-thumb-active {
    border-color: #428E19;
    opacity: 1;
}
.product__gallery-thumb-item:before {
    content: "";
    display: block;
    padding-bottom: 100%;
}
.product__gallery-thumb-item img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.product__gallery-thumbs .swiper-scrollbar-drag {
    background: var(--PrimaryGreen);
}
.product__gallery-pagination {
    display: none;
}
.product__gallery-more {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #434343;
    font-size: 14px;
    cursor: pointer;
}
.product__gallery-more:hover {
    color: var(--SecondaryGreen);
}
.product__gallery-thumbs {
    display: flex;
    padding-bottom: 12px;
}
.product__gallery-thumbs  .swiper-scrollbar {
    bottom: 0;
}
.product__gallery-more {
    position: absolute;
    right: 0;
    box-sizing: border-box;
    height: calc(100% - 12px);
    background: #F1F1F1;
    border-radius: 4px;
    border: 1px solid #C8C9C7;
    z-index: 9;
    top: 0;
    margin-top: 0;
    padding: 10px;
}
.product__content {
    width: 52%;
}
.product__title {
    font-size: 32px;
}
.product__identifiers {
    margin-top: 20px;
    display: flex;
    column-gap: 60px;
    row-gap: 10px;
    flex-wrap: wrap;
}
.product__code {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--GrayQuaternary);
    font-size: 14px;
}
.product__code-icon {
    width: 24px;
    height: 24px;
}
.product__barcode-icon {
    width: 24px;
    height: 24px;
}
.product__barcode {
    color: var(--GrayQuaternary);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}
.product__wrapper-price-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #C8C9C7;
}
.product__compare {
    margin-left: auto;
    font-size: 14px;
}
.product__price {
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    color: var(--PrimaryBlack);
}
.product__price .price__currency {
    font-size: 18px;
    font-weight: 500;
    margin-left: 5px;
}
.product__short-details {
    margin-top: 16px;
}
.product__button {
    margin-top: 36px;
    max-width: 300px;
    width: 100%;
}
.product__navigation {
    margin-top: 40px;
    background-color: #F7F7F7;
    padding: 20px 0;
    top: 0;
    position: sticky;
    z-index: 2;
}
.product__navigation-list {
    display: flex;
    gap: 40px;
}
.product__navigation-item {
    font-size: 18px;
    font-weight: 500;
    color: var(--GraySecondary);
    text-decoration: none;
}
.product__navigation-item.active {
    color: var(--PrimaryBlack);
    border-bottom: 2px solid var(--PrimaryGreen);
}
.product__description {
    padding: 40px 0;
}
.product__description img {
    max-width: 100%;
    height: auto;
}
.product__description .description-block {
    display: flex;
    flex-direction: column;
    min-height: 200px;
    position: relative;
    width: 100%;
}
.product__description .background-image {
    order: 2;
    width: 100%;
}
.product__description .description-title {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--PrimaryBlack);
    text-align: center;
}
.product__description .description-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    color: var(--PrimaryBlack);
    margin-bottom: 20px;
}
.product__characteristics {
    padding: 40px 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.product__characteristics-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--PrimaryBlack);
    text-align: center;
}
.product__characteristics-list {
    display: flex;
    flex-direction: column;
}
.product__characteristics-item {
    display: flex;
    gap: 15px;
    align-items: start;
    justify-content: space-between;
    padding-bottom: 8px;
    border-bottom: 0.5px solid #C8C9C7;
    margin-bottom: 24px;
}
.product__characteristics-item.no-border {
    border-bottom: none;
    margin-bottom: 8px;
}
.product__characteristics-item-label {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    color: var(--PrimaryBlack);
}
.product__characteristics-item-value {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    color: var(--PrimaryBlack);
}
.product__characteristics-sub-title {
    margin-top: 40px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--PrimaryBlack);
}
.product .characteristics-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    margin: 0 auto;
    border-color: var(--PrimaryGreen);
}
.product .characteristics-toggle__text {
    color: var(--PrimaryGreen);
}
.product .characteristics-toggle  .characteristics-toggle__icon svg path {
    stroke: var(--PrimaryGreen);
}
.product .characteristics-toggle:hover {
    background-color: var(--PrimaryGreen);
    color: var(--PrimaryWhite);
}
.product .characteristics-toggle:hover .characteristics-toggle__text {
    color: var(--PrimaryWhite);
}
.product .characteristics-toggle:hover  .characteristics-toggle__icon svg path {
    stroke: var(--PrimaryWhite);
}
.product .characteristics-toggle.is-open .characteristics-toggle__icon {
    transform: rotate(180deg);
}
.product .characteristics-toggle__icon {
    display: inline-flex;
    transition: transform 0.3s ease;
}
.product__reviews {
    padding: 40px 0;
}
.product__reviews-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--PrimaryBlack);
    margin-bottom: 20px;
}
.product__reviews-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 16px 0;
}
.product__reviews-item {
    display: flex;
    gap: 20px;
    background-color: var(--PrimaryWhite);
    padding: 24px 28px 24px 16px;
    border-radius: 10px;
}
.product__reviews-item-header {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.product__reviews-item-date {
    font-size: 14px;
    opacity: 0.2;
}
.product__reviews-picture {
    width: 56px;
    height: 56px;
    min-width: 56px;
}
.product__reviews-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
}
.product__reviews-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}
.product__reviews-content .product__reviews-item-actions {
    display: none;
}
.product__reviews-item-name {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--PrimaryBlack);
}
.product__reviews-item-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    color: #434343;
}
.product__reviews-add .reviews__form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 100%;
    margin-top: 0;
}
.product__reviews-add .form__fields-wrapper {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}
.product__reviews-add .form__fields-wrapper .form__field {
    width: 50%;
}
.product__reviews-add .form__btn {
    margin: 0 auto;
    padding: 15px;
    font-size: 14px;
    min-width: 280px;
}
.product__reviews-add .field__label,
.product__reviews-add .field__small {
    display: none;
}
.product__reviews-add .field__input,
.product__reviews-add .field__textarea {
    border: 0.5px solid #CECECE;
    padding: 8px 16px;
    font-size: 14px;
    line-height: 1.2;
    width: calc(100% - 32px);
    background-color: transparent;
    border-radius: 2px;
}
.product__reviews-add .field__textarea {
    min-height: 50px;
}
.product__reviews-add .field__input:hover,
.product__reviews-add .field__textarea:hover,
.product__reviews-add .field__input:focus,
.product__reviews-add .field__textarea:focus {
    border-color: #434343;
}
.product__reviews-add .field__input::placeholder,
.product__reviews-add .field__textarea::placeholder {
    color: #979797;
}
.product__downloads {
    margin-top: 40px;
    padding: 30px;
    border: 1px solid #C8C9C7;
    background-color: #F7F7F7;
    border-radius: 2px;
}
.product__downloads .downloads__title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--PrimaryBlack);
    margin-bottom: 20px;
}
.downloads__item {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    gap: 20px;
}
.downloads__item-name {
    font-size: 16px;
    color: #1B1B1B;
    font-weight: 500;
}
.downloads__item-file {
    display: flex;
    gap: 10px;
    align-items: center;
    color: #1B1B1B;
    font-weight: 300;
}
.downloads__item-date {
    font-weight: 300;
}
.downloads__item-info a {
    padding: 15px;
    font-size: 14px;
    min-width: 185px;
    text-align: center;
}
@media (max-width: 991px) {
    .product__container {
        flex-direction: column;
        padding: 0 20px;
        gap: 30px;
    }
    .product__description {
        padding-top: 30px;
    }
    .product__description .description-title {
        margin-top: 0;
    }
    .product__gallery-pagination {
        display: block;
    }
    .product__gallery-thumbs {
        display: none;
    }
    .product__compare {
        margin-left: 0;
    }
    .product__gallery {
        width: 100%;
    }
    .product__content {
        width: 100%;
    }
    .product__title {
        font-size: 24px;
    }
    .product__button {
        max-width: 100%;
    }
    .product__main-gallery {
        padding-bottom: 25px;
    }
    .product__main-gallery .product__gallery-pagination {
        bottom: 0;
    }
    .downloads__item {
        flex-wrap: wrap;
        justify-content: flex-end;
    }
    .downloads__item-name {
        width: 100%;
    }
    .product__navigation {
        overflow: auto;
    }
    .product__description p {
        word-break: break-all;
    }
    .product__navigation-item:last-child {
        padding-right: 20px;
    }
}
@media (max-width: 576px) {
    .product__reviews-add .form__fields-wrapper {
        flex-direction: column;
        gap: 10px;
    }
    .product__reviews-add .form__fields-wrapper .form__field {
        width: 100%;
    }
    .downloads__item {
        justify-content: space-between;
    }

    .downloads__item-info {
        width: 100%;
        text-align: center;
    }
    .downloads__item-info a {
        min-width: unset;
        width: calc(100% - 30px);
        margin: 0 auto;
        max-width: 350px;
    }
}

@media (max-width: 340px) {
    .product__reviews-add .form__btn {
        min-width: 100%;
    }
}
.related-products {
    padding: 40px 0;
}
.related-products__list {
    padding-bottom: 60px;
}
.related-products__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--PrimaryBlack);
    margin-bottom: 40px;
}
.related-products .product-card {
    /*max-width: calc(25% - 50px);*/
    box-sizing: border-box;
    height: auto;
}

@media (max-width: 992px) {
    .related-products__list {
        padding-bottom: 40px;
    }
    .related-products .product-card {
        /*max-width: calc(33% - 38px);*/
    }
}
@media (max-width: 576px) {
    .related-products .product-card {
        /*max-width: calc(100% - 30px);*/
    }
}
.accessories {
    padding: 40px 0;
}
.accessories__list {
    padding-bottom: 60px;
}
.accessories__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--PrimaryBlack);
    margin-bottom: 40px;
}
.accessories .product-card {
   /* max-width: calc(25% - 50px);*/
   box-sizing: border-box;
   height: auto;
}

@media (max-width: 992px) {
    .accessories__list {
        padding-bottom: 40px;
    }
    .accessories .product-card {
        /*max-width: calc(33% - 38px);*/
    }
}
@media (max-width: 576px) {
    .accessories .product-card {
        /*max-width: calc(100% - 30px);*/
    }
}
.br-theme-css-stars .br-widget {
    height: 28px;
    white-space: nowrap;
}

.br-theme-css-stars .br-widget a {
    text-decoration: none;
    height: 20px;
    width: 20px;
    float: left;
    font-size: 16px;
    margin-right: 2px;
    text-align: center;
}

.br-theme-css-stars .br-widget a:after {
    content: "★";
    color: #d2d2d2;
}

.br-theme-css-stars .br-widget a.br-active:after {
    color: #EDB867;
}

.br-theme-css-stars .br-widget a.br-selected:after {
    color: #EDB867;
}

.br-theme-css-stars .br-widget .br-current-rating {
    display: none;
}

.br-theme-css-stars .br-readonly a {
    cursor: default;
}

@media print {
    .br-theme-css-stars .br-widget a:after {
        content: "☆";
        color: black;
    }
    .br-theme-css-stars .br-widget a.br-active:after,
    .br-theme-css-stars .br-widget a.br-selected:after {
        content: "★";
        color: black;
    }
}
.pagination {
    display: flex;
    margin-top: 40px;
    align-items: center;
    justify-content: center;
    list-style: none;
    flex-wrap: wrap;
    gap: 8px;
}
.pagination__link {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px 11px;
    border-radius: 2px;
    font-size: 16px;
    color: var(--PrimaryBlack);
    background-color: #F6F6F6;
    text-decoration: none;
    transition: all 0.3s ease;
}
.pagination__link:hover {
    background-color: var(--PrimaryBlack);
    color: var(--PrimaryWhite);
}
.pagination__link.is-active {
    background-color: var(--PrimaryBlack);
    color: var(--PrimaryWhite);
}
.pagination__link.next[data-page="+"] {
    padding: 0;
    background-color: transparent;
}
.pagination__link.next[data-page="+"]:before {
    margin-top: 22px;
    content: "";
    display: block;
    width: 24px;
    height: 6px;
    background-image: url('data:image/svg+xml,<svg width="24" height="6" viewBox="0 0 24 6" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="1.5" cy="1.5" r="1.5" fill="%23737373"/><circle cx="8.5" cy="1.5" r="1.5" fill="%23737373"/><circle cx="15.5" cy="1.5" r="1.5" fill="%23737373"/><circle cx="22.5" cy="1.5" r="1.5" fill="%23737373"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}


.irs--flat .irs-line {
    height: 4px;
    border-radius: 2px;
    background-color: #C8C9C7;
}
.irs--flat .irs-bar {
    height: 4px;
    background-color: #434343;
}
.irs--flat .irs-handle {
    top: 21px;
    width: 12px;
    height: 12px;
    background-color: #1B1B1B;
    border-radius: 50%;
}
.irs--flat .irs-handle > i:first-child {
    display: none;
}
.category__products-sort .select2.select2-container.select2-container--default {
    display: none;
}
.category__clear-filters--mobile {
    display: none;
}
.category__sidebar-close--mobile {
    display: none;
}
.category .product-filter__clear-filters {
    display: none;
}

.category .product-filter__clear-filters.active {
    display: flex;
}
.category  .product-filter__clear-filters--mobile.active {
    display: none;
}
@media (max-width: 991px) {
    .category__sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: calc(100% - 40px);
        height: calc(100% - 80px);
        background-color: #fff;
        z-index: 10;
        padding: 50px 20px;
        overflow-y: auto;
    }
    .category .product-filter {
        padding-left: 0;
    }
    .category__clear-filters--mobile {
        display: block;
    }
    .product-filter__clear-filters--mobile.active {
        display: flex;
    }
    .category .product-filter__clear-filters {
        flex-direction: column;
    }
    .category__sidebar-close--mobile {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        cursor: pointer;
    }
    .category .product-filter__clear-filters.active {
        display: none;
    }
    .category  .product-filter__clear-filters--mobile.active {
        display: flex;
    }
}

#compare-page {
    padding-bottom: 50px;
}

#compare-page .compare__product-card {
    border: 1px solid #C8C9C7;
    margin: 0 10px;
    padding: 15px 0 0 0;
}

#compare-page .product-card__remove {
    top: 0;
    right: 0px;
    width: 24px;
    height: 24px;
    background-image: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="24" height="24" rx="12" fill="%23F1F1F1"/><path d="M17 7L7 17" stroke="%238A8A8A" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M17 17L7 7" stroke="%238A8A8A" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 1;
    transform: none;
    cursor: pointer;
    transition: all 0.3s ease;
}
#compare-page .product-card__remove:hover {
    opacity: 0.8;
}

#compare-page  .product-card--compare .product-card__photo {
    max-height: max-content;
    width: unset;
}
#compare-page .product-card__picture {
    width: 100%;
}
#compare-page  .product-card--compare .product-card__title {
    text-align: center;
}
#compare-page .product-card__rating.rating {
    margin: 0 auto;
}
#compare-page .product-card__footer {
    text-align: center;
}
#compare-page .product-card__properties {
    padding-top: 0;
    padding-bottom: 0;
}

#compare-page  .product-card__properties {
    background-color: #FBFBFB;
}

#compare-page .properties__item {
    padding: 18px 30px;
    margin-bottom: 0;
    border-bottom: 1px solid #F1F1F1;
}
#compare-page .properties__item[data-diff="1"] .properties__value {
    color: #BD2A2D;
    font-weight: 700;
}
#compare-page .properties__item:last-child {
    margin-bottom: 10px;
}
#compare-page .compare__aside {
    border: none;
    padding-top: 15px;
}
#compare-page .compare__aside .compare__title {
    display: none;
}
#compare-page  .product-card__front.js-compare-header {
    padding: 0 15px;
}
#compare-page  .compare__select {
    opacity: 1;
    margin: 0 auto 0 0;
}

#compare-page .compare__select .select2-container--default .select2-selection--single .select2-selection__rendered {
    border: 1px solid #1A1A1A;
    font-size: 15px;
    line-height: 1;
    padding: 8px 16px;
    min-width: 216px;
}
#compare-page .compare__select .select2-container .select2-selection--single {
    height: auto;
}
#compare-page  .select2-container--default .select2-selection--single .select2-selection__arrow b {
    background-image: url('data:image/svg+xml,<svg width="14" height="9" viewBox="0 0 14 9" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12.707 0.707153L6.70703 6.70715L0.707031 0.707154" stroke="%231B1B1B" stroke-width="2"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: translateY(-50%);
    width: 14px;
    height: 9px;
    margin: 0;
    left: 30%;
}
#compare-page  .compare__select .select2-container--default .select2-selection--single .select2-selection__arrow {
    opacity: 1;
}
#compare-page .properties__label{
    color: #9F9F9F;
}
#compare-page .compare__header-wrap  {
    margin-bottom: 30px;
}
#compare-page .compare__header-wrap .compare__fixed {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}
#compare-page .compare__filter,
#compare-page .compare__links {
    padding: 0;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    border: none;
    min-width: calc(50% - 15px);
}
#compare-page .compare__links {
    justify-content: flex-end;
}
#compare-page .compare__radio {
    margin: 0;
}
#compare-page .compare__link  {
    margin: 0;
    color: #1A1A1A;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}
#compare-page .compare__link:hover {
    color: var(--PrimaryGreen);
}
#compare-page .compare__radio .radio__label {
    color: #1A1A1A;
    font-size: 16px;
}
#compare-page .compare__link--add::before {
    background-image: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12.0008 4.92893V19.0711" stroke="%23428E19" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M19.0718 12H4.92969" stroke="%23428E19" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 24px;
    height: 24px;
    margin-right: 4px;
}
#compare-page .compare__link--clear::before {
    background-image: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M17 7L7 17" stroke="%23428E19" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path d="M17 17L7 7" stroke="%23428E19" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 24px;
    height: 24px;
    margin-right: 4px;
}
#compare-page .compare__slider {
    overflow: auto;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    color: #428E19 !important;
    background-color: transparent !important;
}
.radio__toggle {
    border: 1px solid #428E19 !important;
}
.radio__toggle::before {
    background-color: #428E19 !important;
}


@media (max-width: 991px) {
    #compare-page .compare__header-wrap .compare__fixed {
        gap: 15px;
    }

    #compare-page  .compare__aside .compare__header.js-compare-header,
    #compare-page  .compare__aside {
        display: none;
    }
    #compare-page .product-card__front.js-compare-header {
        padding: 0 5px;
    }
    #compare-page .product-card__inner {
        padding: 10px;
    }
    #compare-page .product-card__properties {
        padding: 0 5px;
    }
    #compare-page .properties__item {
        padding: 10px 10px;
    }
    #compare-page .compare__slide.swiper-slide .product-card__properties .properties__label {
        opacity: 1;
    }
    #compare-page .compare__nav {
        margin-bottom: 15px;
    }
    #compare-page .compare__filter, #compare-page .compare__links {
        row-gap: 15px;
        column-gap: 15px;
    }
    #compare-page .compare__link {
        font-size: 14px;
    }
    #compare-page .compare__product-card {
        padding: 5px 0 0 0;
        margin: 0 6px;
    }
    #compare-page .compare__header-wrap {
        margin-bottom: 15px;
    }
    #compare-page .compare__radio {
        padding-left: 5px;
    }
    #compare-page .swiper-navigation-icon {
        display: none;
    }
}

.article {
    margin-top: 0 !important;
}
.article .article__body {
    margin-top: 0 !important;
}
.article .article__body {
    width: 100%;
    margin: 30px 0;
    max-width: 100%;
}
.article .page-title {
    text-align: center;
    padding-bottom: 20px;
}
.article .article-card__header {
    margin-bottom: 0;
}

.article .article-card__meta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.article  .article__panel {
    border: none;
}
.article .form__field {
    margin-bottom: 0;
}
.article .field--inline .br-theme-css-stars .br-widget a {
    height: 20px;
    width: 20px;
    float: left;
    font-size: 16px;
    margin-right: 2px;
}
.page--article .breadcrumbs__item-current {
    color: #1A1A1A;
}
.breadcrumbs__item:not(:last-child)::after {
    display: none !important;
}

@media only screen and (max-width: 767px) {
    .page--article  .breadcrumbs__item {
        width: auto;
    }
    .page--article  .breadcrumbs__item:not(:first-child) {
        display: block;
    }

    .page--article  .breadcrumbs__item:last-child {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .page--article .breadcrumbs__list {
        flex-wrap: nowrap;
    }
    .article .page-title {
        padding-top: 10px;
    }
}

.page--search .page-main__main-body {
    display: flex;
    gap: 30px;
}

.page--search .main-body__main-aside {
    max-width: 22%;
    width: 100%;
}

.page--search .product-filter {
    margin-top: 15px;
}
.page--search .product-filter__title {
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    color: var(--PrimaryBlack);
    padding: 12px 24px 12px 0;
    position: relative;
    cursor: pointer;
    border-bottom: 0.5px solid var(--GraySecondary);
}
.page--search .product-filter__title::after {
    content: "";
    position: absolute;
    right: 6px;
    top: 50%;
    display: block;
    width: 12px;
    height: 6px;
    background: url('data:image/svg+xml,<svg width="14" height="9" viewBox="0 0 14 9" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12.707 0.707153L6.70703 6.70715L0.707031 0.707154" stroke="%231B1B1B" stroke-width="2"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: translateY(-50%);
}
.page--search .product-filter__title.active::after {
    transform: translateY(-50%) rotate(180deg);
}
.page--search .product-filter__title.active + .product-filter__content {
    display: block;
}
.page--search .product-filter__item {
    padding: 4px 0;
}
.page--search .product-filter__content {
    display: none;
    margin-top: 24px;
    max-height: 115px;
    overflow-y: auto;
}
.page--search .product-filter__list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.page--search .product-filter__group {
    margin-bottom: 24px;
}


.page--search .radio {
    display: flex;
    gap: 8px;
    align-items: center;
    cursor: pointer;
    font: var(--s-reg);
}
.page--search .radio__input {
    display: none;
}
.page--search .radio__input:checked + .radio__toggle::before {
    background-color: var(--GrayTertiary) !important;
    background-image: url('data:image/svg+xml,<svg width="6" height="5" viewBox="0 0 6 5" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.499674 3.16667L1.83301 4.16667L4.83301 0.5" stroke="white" stroke-linecap="round"/></svg>');
    background-size: 10px 11px;
    background-repeat: no-repeat;
    background-position: center;
}
.page--search .radio__toggle::before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    border: 0.5px solid var(--GrayTertiary);
    border-radius: 2px;
    background-color: transparent !important;
}
.page--search  .radio__toggle {
    border: none !important;
}
.main-header__heading {
    padding-bottom: 30px;
}

.page--search .product-sorting__filter {
    display: none;
}

.page--search .main-aside-overlay {
    display: none;
}

.page--search .main-aside__close {
    display: none;
}
.page--search .select2-selection__arrow b {
    display: none;
}
.page--search .select2-container--default .select2-selection--single .select2-selection__arrow {
    content: "";
    position: absolute;
    right: 6px;
    top: 50%;
    display: block;
    width: 12px;
    height: 6px;
    background: url('data:image/svg+xml,<svg width="14" height="9" viewBox="0 0 14 9" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12.707 0.707153L6.70703 6.70715L0.707031 0.707154" stroke="%231B1B1B" stroke-width="2"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: translateY(-50%);
}

@media (max-width: 991px) {
    .page--search .product-sorting__filter {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 35px;
        height: 35px;
        padding: 0;
        background: var(--PrimaryWhite);
        border: 1px solid var(--GraySecondary);
        border-radius: 4px;
        cursor: pointer;
    }
    .page--search .main-content.main-body__main-content {
        width: 100%;
    }
    .page--search .select2-container {
        max-width: fit-content;
    }
    .page--search .select2-container--default .select2-selection--single {
        height: 35px;
    }
    .page--search  .select2-container--default .select2-selection--single .select2-selection__rendered {
        line-height: 35px;
    }
    .page--search .main-body__main-aside {
        position: fixed;
        top: 0;
        left: 0;
        width: calc(100% - 40px);
        max-width: 360px;
        height: 100%;
        background-color: #fff;
        z-index: 1001;
        padding: 60px 20px 20px;
        overflow-y: auto;
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        visibility: hidden;
        pointer-events: none;
    }
    .page--search .main-body__main-aside.is-open {
        transform: translateX(0);
        visibility: visible;
        pointer-events: auto;
    }
    .page--search .main-aside__close {
        display: flex;
        position: absolute;
        top: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
        padding: 0;
        background: none;
        border: none;
        cursor: pointer;
        align-items: center;
        justify-content: center;
    }
    .page--search .main-aside-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        z-index: 1000;
    }
    .page--search .main-aside-overlay.is-visible {
        display: block;
    }
}

.page--search  .js-search-limit + .select2 {
    min-width: 50px;
}
.page--search .page-main {
    padding-bottom: 100px;
}

.page--about .page-main{
    padding-top: 40px;
    padding-bottom: 50px;
}
.page--about .d-none {
    display: none;
}
.page--about  .article__map {
    padding-bottom: 0;
}
.page--about .article__sidebar-item .icon.phone {
    display: none;
}
.main-body .content a,
.main-body .article__sidebar-item a.phone:hover {
    color: var(--PrimaryGreen);
}

/* Product gallery modal */
.product-gallery-modal .remodal-close{
    right: 0;
    left: auto;
}
.product-gallery-modal.remodal--wide {
    max-width: 90vw;
    padding: 60px 20px 20px;
}
.modal__media {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    min-height: 400px;
    height: 80vh;
}
@media (min-width: 991px) {
    .modal__media {
        flex-direction: row;
        min-height: 500px;
    }
}
.modal__media .media__thumbs {
    display: none;
}
@media (min-width: 991px) {
    .modal__media .media__thumbs {
        display: block;
    }
}
.modal__media .media__thumbs {
    position: relative;
    flex: 0 0 120px;
    width: 120px !important;
    min-width: 120px;
    height: 360px;
}
@media (min-width: 1024px) {
    .modal__media .media__thumbs {
        height: 100%;
    }
}
.modal__media .media__thumbs .media__slider,
.modal__media .media__thumbs .js-thumbs-modal {
    height: 100% !important;
    width: 120px !important;
    min-width: 120px;
}
.modal__media .media__thumbs .media__slide {
    height: 92px !important;
    width: 100% !important;
    min-width: 120px;
    box-sizing: border-box;
    border: 1px solid var(--GraySecondary);
    border-radius: 4px;
    cursor: pointer;
    transition: border-color 0.2s, opacity 0.2s;
}
.modal__media .media__thumbs .media__slide:hover {
    border-color: var(--PrimaryGreen);
}
.modal__media .media__thumbs .media__slide.swiper-slide-thumb-active {
    border-color: var(--PrimaryGreen);
    opacity: 1;
}
.modal__media .media__thumbs .media__item {
    position: relative;
    padding: 4px;
    width: calc(100% - 8px);
    height: calc(100% - 8px);
}

.modal__media .media__thumbs .media__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.modal__media .media__large {
    flex: 1 1 auto;
    min-width: 0;
    position: relative;
}
.modal__media .media__large .media__slider {
    height: 100%;
    min-height: 350px;
}
.modal__media .media__large .media__slide {
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal__media .media__large .media__item {
    width: 100%;
    padding: 0 50px;
}
.modal__media .media__large .media__img {
    max-width: 100%;
    max-height: 450px;
    width: auto;
    height: auto;
    object-fit: contain;
}
.modal__media .media__large .swiper-button-prev,
.modal__media .media__large .swiper-button-next {
    width: 44px;
    height: 44px;
    margin-top: -22px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    color: #fff;
}
.modal__media .media__large .swiper-button-prev:hover,
.modal__media .media__large .swiper-button-next:hover {
    background: rgba(0, 0, 0, 0.8);
}
.media__slider .swiper-button-prev,
.media__slider .swiper-button-next {
    background-color: transparent !important;
}
.media__slider .swiper-button-prev svg path,
.media__slider .swiper-button-next svg path {
    fill: #000;
}
.modal__media .media__large .swiper-button-prev::after,
.modal__media .media__large .swiper-button-next::after {
    font-size: 20px;
}
.modal__media .media__large .swiper-button-prev {
    left: 0;
}
.modal__media .media__large .swiper-button-next {
    right: 0;
}
.modal__media-pagination {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    color: var(--Gray);
}
.modal__media .media__thumbs .swiper-button-prev,
.modal__media .media__thumbs .swiper-button-next {
    width: 32px;
    height: 32px;
    margin: 0;
    color: var(--PrimaryBlack);
}
.modal__media .media__thumbs .swiper-button-prev {
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
}
.modal__media .media__thumbs .swiper-button-next {
    top: auto;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
}
@media (min-width: 1024px) {
    .modal__media .media__thumbs .swiper-button-prev {
        top: 50%;
        left: -20px;
        transform: translateY(-50%);
    }
    .modal__media .media__thumbs .swiper-button-next {
        bottom: auto;
        top: 50%;
        right: -20px;
        left: auto;
        transform: translateY(-50%);
    }
}