@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
  border: 0;
}
html {
  height: 100%;
  scrollbar-gutter: stable;
}
*, *:before, *:after {
  box-sizing: border-box;
}

:focus, :active {
  outline: none;
}

a:focus, a:active {
  outline: none;
}

nav, footer, header, aside {
  display: block;
}

html, body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;

}

input, button, textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}
h2, h3{font-size: 22px;margin: 10px 0;
}
html {
  overflow-x: hidden;
  background: #fff;
}
html.lock {
  overflow-y: hidden;
}
p::selection {
  background: #5aa14d;
  color: #fff;
}
h1::selection, h2::selection, h3::selection, h4::selection, h5::selection, h6::selection {
  background: #5aa14d;
}
a::selection {
  background: #5aa14d;
  color: #fff;
}
.black-friday-promo {
  background-color: #fa9f8f;
  color: #fff;
  text-align: center;
  padding: .5rem 0;

}
.fs-7{
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight:500;
  margin:5px;
}
.img-logo{width:130px;}
.logo-mobile{width: 110px;}
.title,
.desc,
.btn {
  position: relative;
  z-index: 5;
}
.form-btn{margin: 30px auto 0;}
.ui-widget.ui-autocomplete {
  z-index: 10000;
  width: min(615px, calc(100vw - 20px)) !important;
  max-height: min(70vh, 420px);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: 8px;
  margin-top: 8px;
  background: #fff;
  border: 1px solid rgba(90, 161, 77, 0.2);
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(32, 46, 53, 0.18);
  font-family: Circe, Arial, sans-serif;
}

.ui-widget.ui-autocomplete .ui-menu-item {
  list-style: none;
  margin: 0;
}

.ui-widget.ui-autocomplete .ui-menu-item + .ui-menu-item {
  margin-top: 4px;
}

.ui-widget.ui-autocomplete .ui-menu-item-wrapper {
  display: block;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid transparent;
  border-radius: 12px;
  color: #202e35;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.25;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.ui-widget.ui-autocomplete .ui-menu-item-wrapper:hover,
.ui-widget.ui-autocomplete .ui-menu-item-wrapper.ui-state-active {
  background: #f0faee;
  border-color: rgba(90, 161, 77, 0.28);
  color: #2f7f25;
  transform: translateX(2px);
}

.ui-widget.ui-autocomplete .ui-menu-item-wrapper.ui-state-active {
  margin: 0;
}

@media (max-width: 769px) {
  .ui-widget.ui-autocomplete {
    left: 10px !important;
    right: 10px;
    width: calc(100vw - 20px) !important;
    max-height: var(--search-suggest-height, 52vh);
    padding: 6px;
    border-radius: 14px;
    touch-action: pan-y;
  }

  .ui-widget.ui-autocomplete .ui-menu-item-wrapper {
    min-height: 52px;
    padding: 14px 12px;
    font-size: 16px;
  }
}
.main-large-desc {
  color:#5AA14D;
  font-family: Circe;
  font-size: 19px;
  font-style: normal;
  font-weight: 700;
  line-height: 23px; /* 153.333% */
  margin: 14px 0 0 0;
  background: #f5f5f5ca;
  display: inline-block;
  padding: 10px 15px;
  border-radius: 10px;
}

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

main {
  flex: 1 1 auto;
}


.suggestions-box {
    position: absolute;
    background-color: white;
 
    max-height: 200px;
    width: 100%;
    overflow-y: auto;
    z-index: 1000;
}

.suggestion-item {
    padding: 10px;
    cursor: pointer;
}

.suggestion-item:hover {
    background-color: #f0f0f0;
}

#popular-queries {
    display: none;
}

.header-form-body input:focus ~ #popular-queries {
    display: block;
}

.popular-queries-box {
    display: none; /* Скрыт по умолчанию */
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: white;
    border: 1px solid #ccc;
    z-index: 1000;
    max-height: auto; /* Убираем максимальную высоту */
    padding: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.popular-queries-box .title {
    padding: 5px;
    font-weight: bold;
    margin-bottom: 5px;
}

.popular-queries-box .prepare_result {
    display: inline-block; /* Выводим элементы в одну строку */
    margin-right: 10px;
    margin-bottom: 5px;
    padding: 5px 10px;
    background-color: #f0f0f0;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px; /* Уменьшаем шрифт для компактности */
}

.popular-queries-box .prepare_result:hover {
    background-color: #e0e0e0; /* Изменяем цвет при наведении */
}




.container {
  max-width: 1280px;
  margin: 0 auto;
}

.header {
  display: block;
  width: 100%;
  background: #fff;
}

.header-up {
  padding: 10px 0;
  background: #ecffcc;
}

.header-body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 10px;
}

.header-info {
  color: #202e35;
  font-family: Circe;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 90%;
}
.group_options {
    display: flex;
    gap: 8px;
    margin-top: 15px;
    flex-wrap: wrap;
}
.product_options_color span {
    overflow: hidden;
    width: 20px;
    height: 20px;
    border-radius: 6px;
    display: inline-flex;
}
.header-media {
  display: flex;
  align-items: center;
  gap: 34px;
}

.header-link {
  color: #202e35;
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.m-link{
  font-size: 15px;
  text-transform: uppercase;
}

.header-mail {
  color: #5e6370;
  
  
  font-family: Circe;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 90%;
}

.header-telegram {
  display: flex;
  gap: 8px;
  align-items: center;
  color: #202e35;
  
  
  font-family: Circe;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 90%;
}

.header-mid {
  padding: 15px 0;
  color: #202e35;
  
  
  font-family: Circe;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 90%;
}

.header-mid-body {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo {
  display: block;
}

.header-form {
  width: 55%;
}

.header-form.msearch2 .query_result {
    margin-top: 16px;
}
.header-form.msearch2 .title {
    font-family: Circe;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 0.5rem;
    margin-top: 16px;
}
.query_result {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}
.prepare_result {
    width: max-content !important;
    display: block;
    padding: 13px;
    border-radius: 8px;
    background: #f6f6f6;
    color: var(--2, #5c647a);
    text-align: right;

    
    font-family: Circe;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 90%;
    text-align: center;
}
.header-form-body {
  display: block;
  position: relative;
  width: 100%;
}

.header-input {
  display: block;
  width: 100%;
  border-radius: 8px;
border: 2px solid #9ed494;
  padding: 19px 22px;
  color: #202e35;
  font-family: Circe;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 90%;
}

.header-search-btn {
  background: transparent;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  width: 18px;
  height: 18px;
  margin: auto 0;
}
.header-search-btn img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}

.header-list {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.header-list .header-widget-slot {
  display: block;
  min-width: 4.5rem;
}

.header-enter img,
.header-fav img,
.header-cart img,
.header-enter svg,
.header-fav svg,
.header-cart svg {
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  min-height: 18px;
}
.header-link span,
.header-fav span,
.header-cart span {
  display: block;
  align-items: center;
  margin: 7px 0 0 0;
  color: #202e35;
  text-align: center;
  font-family: Circe;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 90%;
}

.header-cart {
  position: relative;
}

.quantity {
  top: -7px;
  right: 7px;
  display: block;
  position: absolute;
  border-radius: 50%;
  width: 17px;
  height: 17px;
  background: var(--3, #5aa14d);
}
.quantity span {
  position: absolute;
  top: 1px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  text-align: center;
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.header-down {
  padding: 11px 0;
  background: #fff;
  border-top: 1px solid rgba(227, 231, 239, 0.7);
  box-shadow: 0px 1px 0px 0px rgba(227, 231, 239, 0.7);
  box-sizing: border-box;
}

.header-menu ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-catalog-btn {
  cursor: pointer;
  padding: 16px 20px !important;
  border-radius: 6px;
  background: var(--3, #5aa14d);
  display: flex !important;
  align-items: center;
  gap: 18px;
}
.header-catalog-btn.active .burger:after {
  transform: rotate(45deg);
  top: 0;
  bottom: 0;
  margin: auto;
}
.header-catalog-btn.active .burger:before {
  transform: rotate(-45deg);
  top: 0;
  bottom: 0;
  margin: auto;
}
.header-catalog-btn.active .burger span {
  width: 0;
}

.burger {
  width: 15px;
  height: 12px;
  position: relative;
}
.burger:before, .burger:after,
.burger span {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease 0s;
}
.burger:before {
  top: 0;
}
.burger:after {
  top: 10px;
}
.burger span {
  top: 5px;
}
.burger.active span {
  width: 0;
}
.burger.active:before {
  top: 5px;
  transform: rotate(45deg);
}
.burger.active:after {
  top: 5px;
  transform: rotate(-45deg);
}

.header-catalog-span {
  color: #fff;
  text-align: right;
  
  
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-style: normal;
  line-height: 90%;
}

.main {
  padding: 15px 0;
}
.swiper-backface-hidden .swiper-slide {
    height: auto;
}
.large-swiper .swiper-slide {
  width: 100%;
  min-height: 400px;
  height: 400px;
  padding: 70px 60px;
}
.large-swiper img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  top: 0;
  left: 0;
}

.swiper {
  width: 100%;

  overflow: hidden;
}

.swiper-wrapper {
  display: flex;

}

.main-large-title {
  color: var(--1, #202e35);
  
  
  /* H1 */
  font-family: Circe;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px; /* 120% */
}

.main-large-btn {
  margin: 40px 0 0 0;
  max-width: 172px;
}

.btn {
  display: block;
  padding: 19px 23px;
  text-align: center;
  background: #5aa14d;
  color: #fff;
font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
border-radius:5px;
  width: -moz-max-content;
  width: max-content;
  cursor: pointer;
}

.buy-item-image {
  aspect-ratio: 1/1;
}

img {
  pointer-events: none;
}

.main-large-arrows {
  position: absolute;
  bottom: 10px;
  left: 60px;
  width: 90px;
  min-height: 31px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}
.main-large-arrows .swiper-button-prev {
  position: relative;
  display: block;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
}
.main-large-arrows .swiper-button-next {
  position: relative;
  display: block;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}

.swiper-button-prev {
  width: 37px;
  height: 37px;
  background: #fff;
  border-radius: 50%;
  border: 1px solid var(--1, #e3e7ef);
}
.swiper-button-prev img {
  width: 10px;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.swiper-button-prev:after {
  display: none;
}

.swiper-button-next {
  border: 1px solid var(--1, #e3e7ef);
  width: 37px;
  height: 37px;
  border-radius: 50%;
  background: #fff;
}
.swiper-button-next:after {
  display: none;
}
.swiper-button-next img {
  width: 10px;
  -o-object-fit: contain;
     object-fit: contain;
  transform: rotate(180deg);
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.main-small-swiper {
    margin: 15px 0 0 0;
    height: 250px;
}
.main-small-swiper:not(.swiper-initialized) .swiper-wrapper {
    gap: 15px
}
.main-small-swiper:not(.swiper-initialized) .swiper-slide {
        width: 375.33px;
}
.main-small-swiper .swiper-slide {
    display: block;
    border-radius: 10px;
    overflow: hidden;
}
.main-small-swiper .swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.main-small-swiper .swiper-button-next {
  z-index: 10;
  position: absolute;
}

.pros {
  padding: 40px 0 40px;
  border-bottom: 1px solid rgba(227, 231, 239, 0.7);
}

.pros-body {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  justify-content: space-between;
}

.pros-item-image {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #e3e7ef;
  background: #fff;
  width: -moz-max-content;
  width: max-content;
}
.pros-item-image img {
  display: block;
  width: 28px;
  height: 28px;
  -o-object-fit: contain;
     object-fit: contain;
}

.pros-item-title {
  margin: 24px 0 0 0;
  color: var(--1, #202e35);
  /* H4 */
  font-family: Circe;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 133.333% */
}

.pros-item-desc {
  margin: 20px 0 0 0;
  color: var(--2, #5c647a);
  
  
  /* Наборный текст */
  font-family: Circe;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px; /* 153.333% */
}

.showblock {
  padding: 30px 0 20px;
}

.showblock-title {
  color: var(--1, #202e35);
  
  
  /* H2 */
  font-family: Circe;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px; /* 125% */
}

.showblock-swiper {
  margin: 32px 0 0 0;
}

.swiper-slide {
  width: auto;
}

.showblock-item {
  display: block;
  padding: 1px;
  box-shadow: rgba(209, 208, 214, 0.45) 1px 1px 5px;
  background: #fff;
  border-radius: 10px;
}

.heat .special {
  background: #ff6d6d;
}

.action .special {
  background: #a56ffd;
}

.new .special {
  background: #5bc1e8;
}

.special {
  width: -moz-max-content;
  width: max-content;
  border-radius: 20px;
  min-width: 43px;
  padding: 5px 10px;
  color: #fff;
  text-align: right;
  
  
  font-family: Circe;
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
  line-height: 90%;
  text-align: center;
}

.showblock-item-image {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
  height: 208px;
  background: #f5f5f5;  transition: opacity 0.3s ease;
  border-radius: 10px 10px 0 0;
  position: relative; /* Для позиционирования иконки play и видео */
  overflow: hidden; /* Чтобы видео не вылезало за границы */
}
.showblock-item-image img {
    width: 100%;
    height: 100%;
    border-radius: 10px 10px 0 0;
    object-fit: cover;
    display: block;
  
  
}
.showblock-item-name {
  margin: 5px 0 0 0;
  color: var(--1, #202e35);
  
  
  /* H4 */
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 133.333% */
}

.showblock-item-body {
  margin: 0 0 5px 0;
  display: flex;
  align-items: center;
  gap: 23px;
}

.showblock-item-heightblock {
  display: flex;
  align-items: center;
  gap: 10px;
}

.showblock-item-height,
.showblock-item-width {
  color: var(--2, #5c647a);
  
  
  /* Наборный текст */
  font-family: Circe;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px; /* 153.333% */
}

.showblock-item-widthblock {
  display: flex;
  align-items: center;
  gap: 10px;
}
.showblock-item-widthblock img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 16px;
}
.modal-open {
    overflow: visible!important;
}
.showblock-item-container a {
    width: 100%;
    display: block;
    height: 100%;
}
.showblock-item-price {
  margin: 10px 0 0 0;
  display: flex;
  gap: 14px;
  align-items: end;
}
.showblock-item-price .price:after,
.showblock-item-price .price-old:after {
  content: " ₽";
}

.price {
  color: var(--1, #202e35);
  
  
  /* H3 */
  font-family: Circe;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 80%;
}

.price-old {
  color: var(--2, #5c647a);
  
  
  font-family: Circe;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 90%; /* 19.5px */
  text-decoration-line: strikethrough;
}

.price-discount {
  margin: -5px 0 0 0;
  padding: 8px 9px;
  border-radius: 6px;
  background: #ffeb81;
  color: var(--1, #202e35);
  
  
  font-family: Circe;
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
  height: 25px;
  line-height: 100%; /* 16.9px */
}

.showblock-item-btnblock {
  margin: 15px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.showblock-item-cart {
  padding: 10px 25px;
  height: 100%;
  flex: 0 0 100%;
  line-height: normal;
}

.showlbock-item-fav {
  flex: 0 0 20%;
  padding: 5px 6px;
  border-radius: 25px;
  background: #ffffff00;
  position: absolute;
  right: 0;
  top: 0;
  box-shadow: rgba(209, 214, 208, 0.45) 1px 1px 5px;
  margin: 15px;
}
.showlbock-item-fav svg {
    position: relative;
    z-index: -1;
}
.card-btn-like span {
    gap: 10px;
    display: flex;
    align-items: center;
}
.card-btn-like.added svg * {
    fill: #5aa14d;
}
.card-btn-like.added {
    border-color: #5aa14d;
}
.header-fav {
    position: relative;
}
.header-fav .quantity {
    right: 14px;
}
.showlbock-item-fav.added svg *{
    fill: #5aa14d;
}
.showlbock-item-fav.added {
    border-color: #5aa14d;
}
.showlbock-item-fav img {
  position: relative;
  z-index: 10;
  display: block;
  width: 18px;
  height: 18px;
  -o-object-fit: contain;
     object-fit: contain;
}

.showblock-item-click {
  display: block;
  margin: 20px 0 0 0;
  color: var(--1, #202e35);
  font-family: Circe;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 90%;
  text-align: center;
}

.showblock .container {
  position: relative;
}

.showblock .swiper-button-next {
  right: -50px;
  border: 1px solid #e3e7ef;
}

.showblock .swiper-button-prev {
  left: -50px;
  border: 1px solid #e3e7ef;
}
.price-old {
    text-decoration: line-through
}
.price-old,
.price-discount {
  display: none;
}

.action .price-old,
.action .price-discount {
  display: inline-block;
}

.special {
  position: absolute;
  width: -moz-max-content;
  width: max-content;
  height: -moz-max-content;
  height: max-content;
  top: 16px;
  left: 16px;
}
.image-404{
    width:260px;
    margin: 45px auto 0px;
}
.text-404{
    font-family: 'Montserrat', sans-serif;
    text-align:center;
    margin-bottom:40px;
    font-size: 17px;
}
.error404{
        font-size: 70px;
    color: #c17e51;
    text-shadow: 3px 2px 2px #000;
}
.about {
  padding: 82px 0 30px;
}

.about-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.about-textblock {
  flex: 0 0 740px;
  font-family: Circe;
    font-size: 15px;line-height: 23px;
}
.about-textblock ul li {
  list-style: inside;
  position: relative;
  display: block;
  margin: 10px 0 0 20px;
}
.about-textblock ul li:before {
  content: "";
  width: 8px;
  height: 8px;
  display: block;
  position: absolute;
  top: 7px;
  left: -15px;
  background: radial-gradient(70.71% 70.71% at 60% 30%, #7de77d 0%, #5aa14d 100%);
  border-radius: 50%;
}
.custom_blog_title{font-size:23px;margin-bottom:20px;}
.about-title {
  color: var(--1, #202e35);
  
  
  /* H2 */
  font-family: Circe;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px; /* 125% */
}
.about-title a {
  color: #5aa14d;
}

.about-desc {
  margin: 32px 0 0 0;
  color: var(--2, #5c647a);
  
  
  /* Наборный текст */
  font-family: Circe;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px; /* 153.333% */
}

.about-btn {
  margin: 60px 0 0 0;
  width: -moz-max-content;
  width: max-content;
}

.reviews {
  padding: 70px 0;
  background: #f9f9f9;
  margin-bottom: 50px;

}

.reviews-body {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.reviews-info {
  flex: 0 0 25%;
  min-width: 303px;
}

.reviews-title {
  color: var(--1, #202e35);
  
  
  /* H2 */
  font-family: Circe;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px; /* 125% */
}

.reviews-desc {
  margin-top: 35px;
  color: var(--2, #5c647a);
  
  
  /* Наборный текст */
  font-family: Circe;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px; /* 153.333% */
}

.reviews-btn {
  margin: 30px 0 20px 0;
}

.reviews-swiper,
.buy-wrapper {
  flex: 0 0 72%;
}

.reviews-item {
  border-radius: 9px;
  background: #fff;
  padding: 30px;
}
.reviews-item img {
    width: fit-content;
}
.reviews-item-rate {
  display: flex;
  gap: 2px;
  height: 25px;
  justify-content: flex-start;
}

.reviews-item-name {
  margin-top: 20px;
  color: #202e35;
  
  
  /* H4 */
  font-family: Circe;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 133.333% */
}

.reviews-item-comment {
  margin-top: 20px;
  color: var(--2, #5c647a);
  
  
  /* Наборный текст */
  font-family: Circe;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px; /* 153.333% */
  height: 140px;
}

.reviews-item-date {
  display: block;
  margin-top: 30px;
  color: var(--2, #5c647a);
  /* Наборный текст */
  font-family: Circe;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px; /* 153.333% */
}

#blog .reviews-body {
  align-items: start;
}

.blog-item {
  width: 100%;
  border-radius: 9px;
  background: #f9f9f9;
  padding: 15px 15px 20px !important;
}
.blog-item .blog-item-desc {
  max-height: 70px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: wrap;
}

.blog-item-image {
  width: 100%;
  height: 200px;
  border-radius: 9px;
  overflow: hidden;
}
.blog-item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.blog-item-name {
    margin-top: 20px;
    color: var(--1, #202e35);

    
    font-family: Circe;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    height: 48px;
    overflow: hidden;
}

.blog-item-desc {
  margin-top: 22px;
  overflow: hidden;
  color: var(--2, #5c647a);
  
  
  text-overflow: ellipsis;
  white-space: nowrap;
  /* Наборный текст */
  font-family: Circe;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px; /* 153.333% */
}

#blog {
  background: #fff;
  padding: 10px 0;
}

.fixed-modal.mobile {
  display: none;
}
.cont{width: 100%;}

@media (max-width: 768px) {
  .fixed-modal.mobile {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 10px 5px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    height: auto;
    min-height: 70px;
    box-sizing: border-box;
  }

  .fixed-modal.mobile .cont,
  .fixed-modal.mobile .nav-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
}

.footer {
  background: #f9f9f9;
}

.footer-up-body {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-uo-infoblock {
  display: flex;
  align-items: center;
}

.footer-logo {
  padding: 18px 38px 18px 0;
  border-right: 1px solid #e3e7ef;
  width:210px;
}

.footer-up-desc {
  margin: 0 0 0 39px;
  color: var(--2, #5c647a);
  
  
  /* Наборный текст */
  font-family: Circe;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px; /* 153.333% */
}

.footer .mobile {
  display: none;
}

.footer-up-mediablock {
  display: flex;
  gap: 25px;
  align-items: start;
}

.footer-up-phone {
  color: var(--1, #202e35);
  text-align: right;
  
  
  /* H2 */
  font-family: Circe;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 125% */
  text-align: right;
}

.footer-up-time {
  text-align: right;
  color: var(--2, #5c647a);
  text-align: right;
  
  
  /* Наборный текст */
  font-family: Circe;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 153.333% */
}

.footer-up-media {
  display: flex;
  align-items: center;
  gap: 5px;
}

.footer-mid {
  border-top: 1px solid #e3e7ef;
  border-bottom: 1px solid #e3e7ef;
  padding: 50px 0 30px;
}

.footer-mid-menu {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-content: space-between;
}

.footer-item-title {
  color: var(--1, #202e35);

  /* H4 */
  font-family: Circe;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 133.333% */
}

.footer-list {
  margin-top: 17px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.footer-list li {
  margin-top: 15px;
}

.footer-link {
  color: var(--2, #5c647a);

  /* Наборный текст */
  font-family: Circe;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 153.333% */
}

.footer-down {
  padding: 30px 0;
}

.footer-copuright {
  color: var(--2, #5c647a);
  text-align: right;

  /* Наборный текст */
  font-family: Circe;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px; /* 153.333% */
}

.footer-down-body {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-down-link {
  color: var(--3, #5aa14d);
  text-align: right;
  
  
  /* Наборный текст */
  font-family: Circe;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px; /* 153.333% */
}
footer .pays i {
    display: inline-block;
    vertical-align: middle;
    margin: 0 7px;
    background: url(/assets/templates/assets/svg/payment.svg) 0 0 no-repeat;
    opacity: .5;
}
.pays {
    text-align: center;
    margin: 0 0 20px 0;
}
.pays i.cash {
    width: 26px;
    height: 26px;
    background-position: 0px -66px
}

.pays i.cash:hover {
    background-position: 0px 0px
}

.pays i.mastercard {
    width: 41px;
    height: 28px;
    background-position: -352px -64px
}

.pays i.mastercard:hover {
    background-position: -427px 2px
}

.pays i.visa {
    width: 52px;
    height: 20px;
    background-position: -57px -68px
}

.pays i.visa:hover {
    background-position: -57px -2px
}

.pays i.sbrf {
    width: 28px;
    height: 28px;
    background-position: -422px -64px
}

.pays i.sbrf:hover {
    background-position: -567px 2px
}

.pays i.alfa {
    width: 20px;
    height: 28px;
    background-position: -478px -64px
}

.pays i.alfa:hover {
    background-position: -623px 2px
}

.pays i.mir {
    width: 67px;
    height: 28px;
    background-position: -528px -64px
}

.pays i.mir:hover {
    background-position: -673px 2px
}

.pays i:hover {
    opacity: 1
}
.catalog-menu {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  padding: 0;
  z-index: 100;
  left: -100%;
  top: 210px;
}

.catalog-menu.active {
    left: 0;
    height: calc(100vh - 225px);
}

.catalog-body {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.catalog-item-f,
.catalog-item-s,
.catalog-item-t {
  flex: 0 0 30%;
  overflow-y: scroll;
  height: -moz-max-content;
  height: max-content;
  height: 100%;
}

.catalog-menu-f-item.active .catalog-titleblock-f {
  color: #5aa14d;
  border-radius: 6px;
  background: rgba(240, 243, 250, 0.63);
}
.catalog-menu-f-item.active .catalog-titleblock-f:after {
    display: block;
}
.catalog-menu-f-item.children .catalog-titleblock-f:after {
    display: block;
}
.catalog-titleblock-f {
  cursor: pointer;
  position: relative;
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 10px 20px;
  color: var(--3, #202e35);
  
  
  /* H4 */
  font-family: Circe;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 133.333% */
}
.catalog-titleblock-f:after {
  content: "";
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto 0;
  width: 6px;
  height: 10px;
  background: url("../img/catalog-menu/arrow.svg");
}
.catalog-item-s .children {
    position: relative;
}
.catalog-item-s .children:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto 0;
  width: 6px;
  height: 10px;
  background: url("../img/catalog-menu/arrow.svg");
}
.catalog-item-f-s {
  display: none;
  opacity: 0;
}

.catalog-item-s-t {
  cursor: pointer;
  color: #202e35;
  
  
  font-family: Circe;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 31px;
  transition: all 0.3s;
}
.catalog-item-s-t:hover {
    color: #5aa14d;
    transition: all 0.3s;
}
.catalog-item-t a {
    color: #202e35;
    transition: all 0.3s;
}
.catalog-item-t a:hover {
    color: #5aa14d;
    transition: all 0.3s;
}
.catalog-item-f,
.catalog-item-s,
.catalog-item-t {
    padding: 15px;
    border-right: 1px solid var(--1, #e3e7ef);
    overflow-y: auto;
    height: calc(100vh - 258px);
}
.catalog-item-f::-webkit-scrollbar,
.catalog-item-s::-webkit-scrollbar,
.catalog-item-t::-webkit-scrollbar {
  width: 9px;
  border-radius: 35px;
  background: #f3f3f3;
}
.catalog-item-f::-webkit-scrollbar-thumb,
.catalog-item-s::-webkit-scrollbar-thumb,
.catalog-item-t::-webkit-scrollbar-thumb {
  width: 5px;
  max-height: 58px;
  border-radius: 35px;
  background: #838a9d;
}

.catalog-item-s {
  border-right: 1px solid var(--1, #e3e7ef);
}
.catalog-item-s li {
    padding: 0 30px;
}
.catalog-item-s li.active {
    color: #5aa14d;
    border-radius: 6px;
    background: rgba(240, 243, 250, 0.63);
}

.catalog-item-t {
  padding: 10px 15px;
}
.catalog-item-t li {
  cursor: pointer;
  color: #6e768c;
  
  
  font-family: Circe;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 31px; /* 206.667% */
}

.catalog-item-f-t {
  display: none;
}
.catalog-item-f-t.active {
  display: block;
}

/* для элемента input c type="checkbox" */
.custom-checkbox > input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.custom-checkbox {
  display: flex;
  gap: 10px;
  align-items: center;
}
.custom-checkbox span {
  color: var(--1, #202e35);
  font-family: Circe;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px; /* 153.333% */
}

/* для элемента label, связанного с .custom-checkbox */
.custom-checkbox > span {
  display: inline-flex;
  align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

/* для элемента label, связанного с .custom-checkbox */
.custom-checkbox > span {
  display: inline-flex;
  align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

/* создание в label псевдоэлемента before со следующими стилями */
.custom-checkbox > span::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  flex-grow: 0;
  margin: 0 10px 0 0;
  border-radius: 5px;
  background: var(--3, #5aa14d);
}

/* стили для чекбокса, находящегося в состоянии checked */
.custom-checkbox > input:checked + span::before {
  background: url("../img/checkbox-active.svg") no-repeat;
}

.mask {
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.5;
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  z-index: 120;
}

.modal {
  position: fixed;
  z-index: 150;
  width: 400px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  height: -moz-max-content;
  height: max-content;
  opacity: 1;
  transition: all 0.3s ease 0s;
  border-radius: 10px;
  border: 1px solid #e3e7ef;
  background: #fff;
  overflow: hidden;
}

.hidden {
  display: none;
  opacity: 0;
}
.waranty{font-size: 15px;
    margin: 10px auto;
    text-align: center;}
.modal.is-open {
    display: block;
    opacity: 1;
}
.exit {
  cursor: pointer;
}
#oneClick_modal {
    width: 700px;
}
#oneClick_modal .modal-dialog {
    margin: 0;
    width: 100%;
    max-width: 100%;
}
#oneClick_modal .modal-dialog .modal-content {
    padding: 40px 25px 30px;
    box-shadow: none;
    background-color: transparent;
    border: none;
}
.modal-exit {
  right: 15px !important;
  top: 15px;
  position: absolute !important;
  background-color: transparent;
}

.modal-wrapper {
  padding: 40px 25px 30px;
  background: #fff;
}

.modal-title {
  color: var(--1, #202e35);
  text-align: center;
  
  
  /* H2 */
  font-family: Circe;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px; /* 125% */
}

.modal-form {
  margin-top: 5px;
}

.modal-form-item {
  margin-top: 20px;
}

.modal-input-name {
  color: var(--2, #5c647a);
  
  
  font-family: Circe;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px; /* 164.286% */
}

.modal-input {
  width: 100%;
  border-radius: 6px;
  border: 1px solid var(--1, #e3e7ef);
  background: #fff;
  display: block;
  margin-top: 13px;
  padding: 18px 20px;
  color: var(--1, #202e35);
  
  
  /* Наборный текст */
  font-family: Circe;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px; /* 153.333% */
}

.enter-body {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.enter-body .forgot-link {
  color: #2e7cf6;
  
  
  font-family: Circe;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px; /* 164.286% */
}

.modal-btn {
  margin: 31px auto 0;
}

.modal-policy {
  margin-top: 23px;
  color: var(--2, #5c647a);
  text-align: center;
  font-family: Circe;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px; /* 153.333% */
}

.modal-link {
  color: #2e7cf6;
  font-family: Circe;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px;
}

.modal-add-text {
  margin-top: 20px;
  color: var(--2, #5c647a);
  text-align: center;
  font-family: Circe;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px; /* 153.333% */
}

.header-drop {
  display: flex;
  gap: 5px;
  align-items: center;
}
.header-drop img, .header-drop svg {
  transform: rotate(90deg);
}

.breadcrumps {
  padding: 20px 0 0px;
  /* исключаем горизонтальный скролл страницы из-за ширины внутреннего контейнера */
  overflow: hidden;
  width: 100%;
}

.breadcrumps-body {
    display: flex;
    flex-wrap: nowrap;           /* элементы в одну линию */
    gap: 8px;
    align-items: center;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    white-space: nowrap;
    padding: 0;
    width: 100%;
    /* Разрешаем горизонтальные жесты и блокируем вертикальные внутри контейнера */
    touch-action: pan-x;
    overscroll-behavior-x: contain;
}

/* Контейнер внутри хлебных крошек: на десктопе используем общий .container, на мобилке растягиваем на всю ширину */
@media (max-width: 850px) {
  .breadcrumps .container { width: 100%; max-width: 100%; }
}
.breadcrumps-body .breadcrmps-item,
.breadcrumps-body span {
    flex: 0 0 auto;              /* не сжимать и не переносить */
}

.breadcrumps-body::-webkit-scrollbar {
    display: none;
}

.breadcrmps-item {
    color: #5c647a;
    font-family: Circe;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 23px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrmps-item:hover {
    color: #5aa14d;
}

.breadcrmps-item:first-child {
    color: #5aa14d;
}

/* Стиль для разделителя */
.breadcrumps-body span {
    color: #5c647a;
    font-family: Circe;
    font-size: 15px;
    line-height: 23px;
}

/* Разделители между пунктами выводятся корректно через outputSeparator, ничего не скрываем */

/* Стиль для последнего элемента (текущая страница) */
.breadcrmps-item:last-of-type {
    color: #202e35;
    pointer-events: none;
}


.message {
    color: #ff4040;
    font-family: Circe;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 15px;
    margin-top: 8px;
}

@media (max-width: 769px) {
  .breadcrumps {
    padding: 25px 0 0;
  }
  footer{
      margin-bottom:60px;
  }
}
@media (max-width: 501px) {
  .breadcrumps {
    padding: 25px 0 0;
    margin: 0 auto;
  }
  .container {
    margin: 0 auto;
  }
}
.blog-articleblock #pdopage .pagination {
  margin: 35px auto 0;
}
.pagination {
  margin: 35px auto 0;
  width: -moz-max-content;
  width: max-content;
  display: flex;
  gap: 6px;
  align-items: center;
}
.pagination li {
  cursor: pointer;
  border-radius: 6px;
  border: 1px solid #a3df74;
  background: #fff;
  color: #5aa14d;
  width: 37px;
  height: 37px;
  border-radius: 6px;
  background: #fff;
  text-align: center;
  color: var(--2, #5c647a);
  text-align: center;
  font-family: Circe;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 90%;
}
.pagination li a {
    padding: 8px 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pagination li.active {
  background: var(--3, #5aa14d);
  color: #fff;
  text-align: center;
  font-family: Circe;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 90%;
  cursor: auto;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination .arrow {
  position: relative;
}
.pagination .arrow img {
  display: block;
  position: absolute;
  -o-object-fit: contain;
     object-fit: contain;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: -moz-max-content;
  width: max-content;
  margin: auto;
}
.pagination .arrow-next img {
  transform: rotate(180deg);
}

@media (max-width: 709px) {
  .footer .mobile {
    display: block;
  }
}
@media (max-width: 551px) {
  .container {

    margin: 0 auto;
  }
  .pros-item {
    border-radius: 10px;
    border: 1px solid var(--1, #e3e7ef);
    padding: 21px 21px;
    background: #fff;
  }
  .main-large-arrows {
    display: none;
  }
}
.header-up {
  padding: 9px 0;
}

.header-input {
  padding: 12px 22px;
}

@media (max-width: 800px) {
  .about {
    padding: 23px 0 60px;
  }
  .about-textblock {
    flex: 0 0 auto;
  }
  .reviews {
    padding: 40px 0;
  }
  .review-photo {
    padding: 34px 0 56px;
  }
  .review-photo-item:nth-child(even) {
    margin-top: 0 !important;
  }
  
}
section.blog {
  padding: 10px 0 70px !important;
}

@media (max-width: 800px) {
  section,
  .blog {
    padding: 10px 0 30px !important;
  }
}
.fixed-modal {
    display: none;
}



.fixed-modal.mobile .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #202e35;
    font-size: 12px;
    gap: 4px;
    width: auto;
    min-width: 50px;
    text-align: center;
}

.fixed-modal.mobile .nav-item-image {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fixed-modal.mobile .nav-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.fixed-modal {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 500;
  display: block;
  width: 100%;
  height: 70px;
  padding: 14px 0 21px;
  background: #fff;
  border-top: 1px solid var(--1, #e3e7ef);
  background: #fff;
  z-index: 500;
}

.fixed-modal .header-burger {
  cursor: pointer;
  z-index: 250;
}

.nav-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-item-image {
  margin: 0 auto;
  display: block;
  width: 20px;
  height: 20px;
}
.nav-item-image img {
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}

.nav-item-span {
  display: block;
  margin-top: 7px;
  align-items: center;
  color:#4d636e;
  text-align: center;
  font-family: Circe;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 90%;
}

.fixed-modal.mobile .header-widget-slot {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fixed-modal.mobile .header-widget-slot > a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  line-height: inherit;
}

.fixed-modal.mobile .header-widget-slot .header-link,
.fixed-modal.mobile .header-widget-slot .header-cart,
.fixed-modal.mobile .header-widget-slot .header-fav,
.fixed-modal.mobile .header-widget-slot .myfavorites-counter {
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  line-height: inherit;
}

.fixed-modal.mobile .nav-item-image {
  position: relative;
}

.fixed-modal.mobile .nav-item-image .quantity {
  top: -4px;
  right: -4px;
}

.fixed-modal.mobile .header-widget-slot .nav-item-span {
  display: block;
  margin-top: 7px;
}

.header-menu .header-list li a {
  line-height: 90%;
}
.cart-delete-btn button {
    background-color: transparent;
}
.header-use-list li {
  margin-top: 10px;
}
.header-use-list li:first-child {
  margin-top: 0;
}

.service-link-image {
  transition: all 0.3s ease 0s;
}
.service-link-image.active {
  transform: rotate(90deg);
}

.service-menu {
  display: none;
}
.service-menu.active {
  display: block;
}
.service-menu a {
  display: block;
  margin-top: 5px;
}

.header-down {
  padding: 0;
}
.header-down .btn {
  height: 50px;
}
.header-down li {
  height: 72px;
  display: flex;
  align-items: center;
}

.header-drop {
  position: relative;
  cursor: pointer;
}
.header-drop-menu {
  left: -20px;
  position: absolute;
  display: block;
  width: -moz-max-content;
  width: max-content;
  height: -moz-max-content;
  height: max-content;
  z-index: -1;
  border-radius: 0px 0px 8px 8px;
  border: 1px solid #e3e7ef;
  border-top: none;
  background: #fff;
  opacity: 0;
  padding: 0 24px;
  bottom: -128px;
  transition: all 0.3s ease 0s;
}
.header-drop-menu a {
  display: block;
  margin-top: 13px;
}
.header-drop-menu a:first-child {
  margin: 0;
}
.header-drop-menu.active {
  z-index: 50;
  height: -moz-max-content;
  height: max-content;
  padding: 30px 24px;
  bottom: -128px;
  left: -20px;
  opacity: 1;
}

.header-link {
  transition: all 0.3s ease 0s;
}
.header-link:hover {
  color: #4b933e;
}

.cat-sort {
  display: flex;
  gap: 24px;
  align-items: center;
  border-radius: 6px;
  border: 1px solid var(--1, #e3e7ef);
  background: #fff;
  padding: 20px;
}
.cat-sort span:first-child {
  color: var(--1, #202e35);
  
  
  /* Наборный текст */
  font-family: Circe;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px; /* 153.333% */
  line-height: 90%;
}

.cat-sort-item {
  color: var(--2, #5c647a);
  text-align: right;
  
  
  /* Наборный текст */
  font-family: Circe;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px; /* 153.333% */
  line-height: 90%;
}
.cat-sort-item.active {
  color: #4b933e;
}
.cat-sort-items {
    display: flex;
    gap: 24px;
    align-items: center;
}
.cat-sort-items a {
    display: flex;
    align-items: center;
    gap: 4px;
}
.cat-sort .cat-sort-items [data-dir="asc"] span svg{
    transform: rotate(180deg);
}
.cat-sort .cat-sort-items .active span svg path{
    fill: #4b933e;
}

.header-menu-title {
  color: var(--1, #202e35);
  
  
  font-family: Circe;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.swal2-popup.swal2-toast .swal2-title{
  font-family: 'Montserrat', sans-serif;
}
.swal2-popup.swal2-toast {
  box-shadow: 0 0 1px hsla(0deg, 0%, 0%, .075), 0 1px 2px hsla(0deg, 0%, 0%, .075), 1px 2px 4px hsla(0deg, 0%, 0%, .075), 1px 3px 8px hsla(120, 99%, 28%, 0.151), 2px 4px 16px #5aa14d4d !important;
}
.header-menu-services .header-link {
  margin-top: 16px;
  display: block;
}
.header-menu-services .header-link:first-child {
  margin-top: 34px;
}

.header-menu-services-btn {
  position: absolute;
  bottom: 100px;
  width: 280px;
  border-radius: 8px;
  background: #d7e5de;
  color: #5aa14d;
}
.header-form:not(.msearch2) input {
    cursor: pointer;
}
.showblock-item-name .showblock-item-name-hidden {
    color: #202e35;
}
.header-use-list a.myfavorites-counter {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}
.form-formblock-body.callback {
    flex-direction: column;
}
.form-formblock-body {
    margin-top: 32px;
    display: flex;
    gap: 16px;
    justify-content: space-between;
}
.input-name {
    margin-top: 13px;
    font-family: Circe;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 23px;
}
.form-input {
    display: block;
    width: 100%;
    padding: 18px 21px;
    border-radius: 6px;
    border: 1px solid var(--1, #e3e7ef);
    background: #fff;
    color: var(--1, #202e35);

    
    font-family: Circe;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 23px;
}
@media (min-width: 1200px) {
    .showblock-item-name {
        position: relative;
        height: 50px;
    }
    .showblock-item-name .showblock-item-name-hidden {
        position: absolute;
        height: 40px;
        background-color: #fff;
        overflow: hidden;
        text-overflow: ellipsis;
        /*white-space: nowrap;*/
        width: 100%;
    }
    /* удалён пустой блок :hover */
}
@media (max-width: 1156px) {
    .main-small-swiper:not(.swiper-initialized) .swiper-wrapper {
        gap: 15px;
        height: 200px;
    }
    .main-small-swiper:not(.swiper-initialized) .swiper-slide {
        width: 320px;
    }
    .main-small-swiper {
        height: 200px;
    }
    .main-small-swiper .swiper-slide {
        width: 320px;
    }
}
@media (max-width: 850px) {
  .container {
    margin: 0 auto;
  }
    .breadcrumps-body {
        gap: 8px;
        overflow-x: auto;      /* только горизонтальный скролл */
        overflow-y: hidden;    /* запрет вертикального */
        padding: 0 16px;
        background-color: transparent;
        display: flex;
        flex-wrap: nowrap;
        font-size: 13px;
        white-space: nowrap;
        max-height: none;      /* не ограничиваем по высоте, чтобы не обрезать */
        padding-left: 0;
        padding-right: 0;
        position: relative;
        touch-action: pan-x;   /* фикс вертикальных сдвигов на тачах */
        overscroll-behavior-x: contain;
    }
    .main-small-swiper {
        overflow: visible;
    }
    html #chatra {
        bottom: 80px!important;
    }
    .swiper {
    overflow: visible;
}
}
@media (max-width: 768px) {
    #oneClick_modal {
        width: 100%;
    }
}
#scritta .container {
    position: relative;
}
#scritta .avatar-list {
    list-style: none;
    padding: 0;
    margin: 32px 0 0 0;
    display: flex;
    align-items: center;
}
#scritta .avatar-item {
    position: relative;
    margin-left: -18px;
    transition: translate 200ms ease, z-index 150ms ease;
    z-index: 1;
}
#scritta .avatar-item:first-child {
    margin-left: 0;
}
#scritta .avatar-item img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #5aa14d;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.08) 0 4px 12px;
    display: block;
}
#scritta .avatar-item.has-video::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url(../img/play32.png) center/28px no-repeat;
    pointer-events: none;
}
#scritta .avatar-item:hover {
    z-index: 2;
}
#scritta .avatar-item:hover ~ .avatar-item {
    translate: 2rem;
}
#scritta .avatar-link {
    display: block;
}
#scritta .avatar-more {
    margin-left: -18px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #f1f3f5;
    border: 2px solid #5aa14d;
    color: #202e35;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(0, 0, 0, 0.08) 0 4px 12px;
}
#scritta .avatar-more a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: inherit;
}
#scritta .avatar-hidden {
    display: none;
}
@media (max-width: 768px) {
    #scritta .avatar-item,
    #scritta .avatar-more {
        margin-left: -14px;
    }
    #scritta .avatar-item img,
    #scritta .avatar-more {
        width: 72px;
        height: 72px;
    }
    #scritta .avatar-item.has-video::after {
        background-size: 22px;
    }
}
.fancybox__caption {
    color: #000;
    background: #fff;
    padding: 1rem;
    margin: 1rem;
    font-family: Montserrat;
}
/*# sourceMappingURL=style.css.map */

/* Стили для кнопки "Показать товары" */
.filter-actions {
    margin-top: 20px;
    width: 100%;
}

.filter .show-btn {
    display: none; /* По умолчанию скрыта */
    width: 100%;
    text-align: center;
}

.filter .show-btn.active {
    display: block; /* Показываем при активации */
}

/* На мобильных устройствах всегда показываем кнопку в активном фильтре */
@media (max-width: 850px) {
    .cat-aside.active .filter .show-btn {
        display: block;
    }
}

/* Cookies Notice Styles */
.cookies-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #ffffff;
    padding: 15px 0;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    font-family: inherit;
}

.cookies-notice.show {
    transform: translateY(0);
}

.cookies-notice-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookies-notice-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookies-notice-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.4;
    color: #ffffff;
}

.cookies-notice-btn {
    background: #4B933E;
    color: #ffffff;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    flex-shrink: 0;
    white-space: nowrap;
}

.cookies-notice-btn:hover {
    background: #3d7a32;
}

.cookies-notice-btn:active {
    transform: translateY(1px);
}

/* Mobile styles for cookies notice */
@media (max-width: 768px) {
    .cookies-notice {
        padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
    }
    
    .cookies-notice-container {
        padding: 0 12px;
    }

    .cookies-notice-content {
        flex-direction: row;
        align-items: center;
        gap: 10px;
        text-align: left;
    }
    
    .cookies-notice-text {
        font-size: 12px;
        line-height: 1.25;
        max-height: 46px;
        overflow: hidden;
    }
    
    .cookies-notice-btn {
        padding: 10px 16px;
        width: auto;
        min-width: 96px;
        max-width: 120px;
    }
}
