@font-face {
  font-family: 'Rodchenko';
  src: url("../Rodchenko Bold.otf") format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@keyframes rotating {
  from {
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
  }

  to {
    -o-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
}

@-webkit-keyframes rotating {
  from {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg)
  }

  to {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg)
  }
}

@keyframes rotating2 {
  from {
    transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg)
  }

  to {
    transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg)
  }
}

@-webkit-keyframes rotating2 {
  from {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg)
  }

  to {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg)
  }
}


body {
  display: flex;
  flex-direction: column;
}

body.hero-preload-active {
  overflow: hidden;
}

html {
  scrollbar-gutter: stable;
  --modal-scrollbar-compensation: 0px;
}

html.modal-scroll-locked {
  overflow: hidden;
  scrollbar-gutter: stable;
}

main {
  flex: 1 0 auto;
  min-height: calc(100svh - 70px);
}

.hero-preloader {
  position: fixed;
  inset: 0;
  z-index: 11000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background:
    radial-gradient(circle at 20% 20%, #55612d 0%, #252525 38%),
    linear-gradient(180deg, #252525 0%, #171717 100%);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.hero-preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.hero-preloader__inner {
  width: 270px !important;
  max-width: none !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
}

.hero-preloader__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 270px !important;
  max-width: none !important;
  color: #f7f4f0;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero-preloader__logo {
  display: block;
  width: 270px !important;
  min-width: 270px !important;
  max-width: none !important;
  height: auto !important;
  margin-bottom: 12px;
}

.hero-preloader__bar {
  position: relative;
  width: 100%;
  height: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.hero-preloader__bar-fill {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #bcd178 0%, #8fa34e 100%);
  transform: scaleX(var(--hero-preloader-progress, 0));
  transform-origin: left center;
  transition: transform 0.28s ease;
}

.hero-preloader__label {
  color: rgba(247, 244, 240, 0.86);
  font-size: 16px;
  line-height: 1.45;
  margin-top: 3px;
}

@keyframes heroPreloaderSweep {
  0% {
    transform: translateX(-68%);
  }
  50% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(68%);
  }
}

.icon-color { color: inherit; }
.icon-color *[fill] { fill: currentColor; }
.icon-color *[stroke] { stroke: currentColor; }

.title {
  font-size: 50px;
  font-weight: 600;
}

.breadcrumbs {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 5px;
  align-items: center;
}

.breadcrumbs-item a {
  text-decoration: none;
  cursor: pointer;

}

.breadcrumbs-item__name {
  font-size: 12px;
  color: #767676;
  position: relative;
  text-transform: none;
  font-weight: 400;
}

.breadcrumbs-item:last-child .breadcrumbs-item__name {
  color: black;
}

.navigation {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.navigation > .title {
  margin: 0;
  line-height: 1.2;
}

.separator {
  font-size: 12px;
  display: flex;
  padding: 2px 0 0 0;
}


.showreel {
  position: absolute;
  bottom: 42%;
  right: 22%;
  color: #f7f4f0!important;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out
}

.showreel_icon {
  pointer-events: none;
  transform: rotate(-15deg);
  width: 50px;
  opacity: 0.75;
  position: absolute;
  top: 120px;
  left: 100px;
  transition: transform 1s;
}

.showreel:hover .showreel_icon {
  opacity: 1;
  transform: translate(-30px, -30px) scale(1.1);
}

.showreel p {
  white-space: nowrap;
  font-size: 14px;
  color:#f7f4f0;
  text-transform: uppercase;
  line-height: 22px;
  font-style: italic;
  text-align: center;
  position: absolute;
  width: 100%;
  top: 40px;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out
}

.showreel:hover p {
  color: #f7f4f0;
  opacity: 0
}

.showreel p b {
  margin-top: 2px;
  font-weight: 700;
  font-size: 14px
}

.showreel .play {
  width: 150px;
  height: 150px;
  display: block;
  margin: 0 auto;
  position: relative
}

.showreel .play1 {
  position: absolute;
  top: 0;
  left: 0;
  height: 150px;
  width: 150px;
  background: url(../img/play1.png) no-repeat center center;
  -webkit-animation: rotating 2s linear infinite;
  -moz-animation: rotating 2s linear infinite;
  -ms-animation: rotating 2s linear infinite;
  -o-animation: rotating 2s linear infinite;
  animation: rotating 2s linear infinite;
}

.showreel .play2 {
  position: absolute;
  top: 0;
  left: 0;
  height: 150px;
  width: 150px;
  background: url(../img/play2.png) no-repeat center center;
  -webkit-animation: rotating2 2s linear infinite;
  -moz-animation: rotating2 2s linear infinite;
  -ms-animation: rotating2 2s linear infinite;
  -o-animation: rotating2 2s linear infinite;
  animation: rotating2 2s linear infinite
}

.showreel .play3 {
  position: absolute;
  top: 0;
  left: 0;
  height: 150px;
  width: 150px;
  background: url(../img/play3.png) no-repeat center center;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  opacity: 0
}

.showreel.showreel2:hover p {
  opacity: 1
}

.showreel:hover .play3 {
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -o-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
  opacity: 1
}

img {
  max-width: 100%;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: 5px 5px 5px -5px rgba(34, 60, 80, 0.2) inset;
  background-color: #f7f4f0;
}

::-webkit-scrollbar-thumb {
  background-color: #252525;
}

::-webkit-scrollbar {
  width: 7px;
  background-color: #f9f9fd;
}


@media (max-width: 1280px) {
  ::-webkit-scrollbar-track {
    -webkit-box-shadow: none !important ;
    background-color: #f7f4f0 !important;
  }

  ::-webkit-scrollbar-thumb {
    background-color: #f7f4f0!important ;
  }

  ::-webkit-scrollbar {
    width: 2px;
    height: 4px;
    background-color: #f9f9fd;
  }
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

:root {
  --dark-section-background:
    radial-gradient(circle at 14% 20%, rgba(230, 235, 218, 0.10) 0%, rgba(230, 235, 218, 0.05) 18%, rgba(230, 235, 218, 0) 42%),
    linear-gradient(rgba(37, 37, 37, 0.66), rgba(37, 37, 37, 0.66)),
    linear-gradient(180deg, #2a2a2a 0%, #252525 56%, #202320 100%);
  --dark-section-divider-image: none;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #f6f3ee;
  background-image: none;
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
  --site-container-width: 1400px;
  --site-container-gutter: 32px;
}

button {
  font-family: 'Montserrat', sans-serif;
}

.button {
  position: relative;
  width: 100%;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  box-sizing: border-box;
}

@media (min-width: 992px) {
  .container {
    width: min(calc(100% - (var(--site-container-gutter) * 2)), var(--site-container-width));
    max-width: none;
  }
}

@media (min-width: 992px) and (max-width: 1400px) {
  html {
    --site-container-width: 1120px;
    --site-container-gutter: 32px;
  }
}

p {
  font-size: 16px;
  color: #252525;
  line-height: 1.5;
}

h1 {
  color:#f7f4f0;
  font-size: 68px;
  font-weight: 700;
}

h2 {
  font-size: 50px;
  font-weight: 400;
}

.contact-form__error--white {
 color: #ffff !important;
}

.contact-form__error {
  margin-top: 10px;
}

.contact-form__error:empty {
  display: none;
}

.questions_text h2 {
  padding-bottom: 25px;
  color:#f7f4f0;
}

.questions_header {
  color:#252525!important;
  font-weight: 700;
  font-size: 40px;
}

.questions_text h2:not(.questions_header) {
  color: #252525;
}

.questions_text p {
  color:#f7f4f0
}


h3 {
  font-size: 24px;
  font-weight: 700;
  color: 252525;
}

h4 {
  font-size: 40px;
  font-weight: 700;
  color:#ca1d1d;
}

h5 {
  font-weight: 600;
  font-size: 22px;
  text-transform: none;
}

span  {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 600;
}

.heading span {
  font-size: 68px;
  font-weight: 300;
  text-transform: none;
}

.header_span {
  font-size: 50px;
  font-weight: 400;
  text-transform: none;
}

header {
  position: fixed;
  width: 100%;
  top: 0%;
  left: 0;
  z-index: 10;
  transition: .2s linear;
}

.header.shrink {
  z-index: 100;
  background-color: rgba(37, 37, 37,1);
  transition: 0.2s;
  -webkit-box-shadow: 0px 3px 10px 0px rgba(37, 37, 37, 0.55);
  -moz-box-shadow: 0px 3px 10px 0px rgba(37, 37, 37, 0.55);
  box-shadow: 0px 3px 10px 0px rgba(37, 37, 37, 0.55);
}


header.shrink .header__body {
  height:64px;
  transition: 0.2s;
}

.header__logo {
  z-index: 10;
  display: flex;
  align-items: center;
}

.header_logo_img {
  display: flex;
  flex: 0 0 100px;
  margin-top: 3px;
}

.header__logo p {
  white-space: nowrap;
  margin-top: 10px;
  color:#f7f4f0;
  font-size: 13px;
  line-height: 1.2;
}

.location_wrap {
  display: flex;
  flex: 1;
  justify-content: flex-end;
  margin-right: 55px;
}

.location {
  position: relative;
  padding-left: 38px;
}

.location:before {
  content:"";
  position: absolute;
  left: 0;
  top: 2px;
  background-image: url('../img/location_2.svg');
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  width: 30px;
  height: 30px;
}


.location p {
  font-size: 13px;
  line-height: 1.2;
  white-space: nowrap;
  color: #f7f4f0;
}

@media (min-width: 992px) {
  .location_wrap {
    position: static;
  }

  .location_wrap .location {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: max-content;
    padding-left: 38px;
    text-align: left;
    z-index: 12;
  }

  .location_wrap .location:before {
    left: 0;
    top: 2px;
    transform: none;
  }
}

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

.section-header__start {
  font-size: 50px;
  text-align: left;
  font-weight: 700;
  color: #252525;
}

.section-header__end {
  display: flex;
  align-items: center;
  justify-content: flex-end;

}

.section-header__end--mobile {
  display: none;
}

.arrow-link {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
}

.arrow-link__icon {
  transform: rotate(270deg);
  font-size: 25px;
  position: relative;
  left: 0;
  transition: left 0.25s ease, fill 0.3s ease;
}

.arrow-link:hover .arrow-link__icon {
  left: 4px;
}


.arrow-link__text {
  font-size: 18px;
  font-family: Montserrat, sans-serif;
  color: #252525;
  text-transform: none;
  font-weight: 600;
}


.basket {
  position: relative;
  color: white;
}

.basket_link {
  display: flex;
  position: relative;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.link-to-card {
  font-size: 16px;
  font-weight: 400;
  text-transform: none;
  position: relative;
  z-index: 12;
  padding: 15px 60px;
  background: #fff;
  color: #8FA34E;
  text-decoration: none;
  align-items: end;
  border-radius: var(--ui-radius-buttons);
  gap: 10px;
  justify-content: center;
  margin: 0 -5px;
}

.basket_wrap {
  display: flex;
  position: relative;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.basket_wrap:hover .basket,
.basket_wrap:hover .basket_text {
  color: #8FA34E;
  transition:color 0.3s ease;
}

.basket_wrap--mobile {
  display: none;
}

.basket_text {
  text-transform: uppercase;
  font-size: 13px;
  color: #f7f4f0;
  line-height: 1.5;
}

.line {
  width: 1px;
  position: relative;
  z-index: 20;
  background-color: #ffffff;
  height: 30px;
  opacity: .6;
  margin: 0 15px;
}

.total {
  background-color: #8FA34E;
  border-radius: 50%;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  right: 0;
  width: 20px;
  height: 20px;
  top: 0;
}

.total__value {
  color: white;
  font-size: 12px;
  font-family: Montserrat, sans-serif;
  font-weight: 100;
  position: relative;
  margin-top: 2px;
}

.header .basket {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header .basket svg {
  width: 28px;
  height: 28px;
  display: block;
}

.header .total {
  width: 16px;
  height: 16px;
  top: -2px;
  right: -2px;
}

.header .total__value {
  font-size: 10px;
  line-height: 1;
  margin-top: 1px;
}

.header__body {
  z-index: 10;
  padding-left: 3%;
  padding-right: 3%;
  position: relative;
  display: flex;
  justify-content: space-between;
  height: 100px;
  align-items: center;
  transition: .2s linear;
}

.header__info {
  z-index: 999;
  margin-right:25px;
  justify-content: flex-end;
  display: flex;
  align-items: center;
  transition: .2s linear;
  line-height: 1.3;
  text-align: start;
  white-space: nowrap;
}

.burger_wrap {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding-right: 50px;
}

.header__burger {
  display: flex;
  cursor: pointer;
  display: block;
  position: relative;
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 999;
}

.burger_wrap p {
  margin-left: 10px;
  text-transform: uppercase;
  font-size: 13px;
  color: #f7f4f0;
}

.burger_wrap:hover span {
  width: 20px;
}

.header__burger span {
  position: absolute;
  background-color: #f7f4f0;
  left: 0;
  width: 100%;
  height: 2px;
  top: 9px;
  transition: all 0.3s ease 0s;
}

.header__info p {
  font-size: 14px;
  color:#f7f4f0;
  padding-right: 50px;
  text-transform: uppercase;
}

.header__burger:before,
.header__burger:after {
  content:'';
  background-color: #f7f4f0;
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  transition: all 0.3s ease 0s;
}

.header__burger:before {
  top: 0;
}

.header__burger:after {
  bottom: 0;
}

.header__burger.active span {
  transform: scale(0);
}

.header__burger.active:before {
  transform: rotate(45deg);
  top: 9px;
}

.header__burger.active:after {
  transform: rotate(-45deg);
  bottom: 9px;
}

.header__burger,
.header__burger::before,
.header__burger::after,
.header__burger span {
  box-sizing: border-box;
}

.header__burger::before,
.header__burger::after,
.header__burger span {
  display: block;
  height: 1.5px;
  min-height: 1.5px;
  max-height: 1.5px;
  border-radius: 0;
  transform-origin: 50% 50%;
  backface-visibility: hidden;
}

.header__burger::before {
  top: 0;
}

.header__burger span {
  top: 9px;
}

.header__burger::after {
  top: 18px;
  bottom: auto;
}

.burger_wrap:hover .header__burger span {
  width: 100%;
}

.header__burger.active::after {
  top: 9px;
  bottom: auto;
}

.header__burger::before,
.header__burger::after {
  opacity: 0;
}

.header__burger span {
  top: 9px;
  height: 1.5px;
  min-height: 1.5px;
  max-height: 1.5px;
  background-color: #f7f4f0;
  box-shadow: 0 -9px 0 #f7f4f0, 0 9px 0 #f7f4f0;
  transform: none;
}

.burger_wrap:hover .header__burger span {
  width: 100% !important;
}

.header__burger.active span {
  box-shadow: none;
  transform: scale(0);
}

.header__burger.active::before,
.header__burger.active::after {
  top: 9px;
  bottom: auto;
  opacity: 1;
}

.header__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 30px;
  height: 30px;
  padding: 0;
  background: none;
  border: 0;
}

.header__burger::before,
.header__burger::after {
  content: none !important;
  display: none !important;
}

.header__burger span {
  position: static;
  display: block;
  width: 26px !important;
  height: 2px;
  min-height: 2px;
  max-height: 2px;
  background-color: #f7f4f0;
  border-radius: 2px;
  box-shadow: none;
  transform: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.burger_wrap:hover .header__burger span {
  width: 26px !important;
}

.header__burger.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.header__burger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.header__burger.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.header__menu {
  --header-menu-width: clamp(220px, 13vw, 260px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0px;
  left: calc(-1 * var(--header-menu-width));
  width: var(--header-menu-width);
  height: 100vh;
  overflow: hidden;
  background-color: rgba(37, 37, 37, 0.98);
  transition: all 0.5s ease 0s;
  z-index: 9;
}

.header__menu.active {
  left: 0;
}

.header__menu .header__list__phone {
  border-top: 0 !important;
}

.header__list-group--bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 25px;
  margin: 0;
  display: flex;
  justify-content: center;
}

.header__list-group--top {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-left: 0;
  box-sizing: border-box;
}

@media (min-width: 769px) {
  .header__list-group--top {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
}

.header__list--top {
  width: auto;
  align-items: flex-start;
}

.header__list--bottom {
  width: 100%;
  align-items: center;
  box-sizing: border-box;
  padding: 0 14px;
}


.header__list {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.header__list a {
  transition: all 700ms;
  font-size: 18px;
}

.header__list li {
  margin-bottom: 25px;
  transition: transform .7s;
  text-align: left;
}

.header__list--bottom li {
  width: 100%;
  margin: 0 0 12px !important;
  text-align: center;
}

.header__list__phone {
  line-height: 1.4;
  width: 100%;
  padding-top: 12px;
  margin-top: 8px!important;
  border-top: 2px solid #8FA34E;

}

.header__list__phone a {
  white-space: nowrap;
  font-size: 16px;
}

.header__list__email a {
  white-space: nowrap;
  font-size: 15px;
}

.header__list__phone a:hover, .header__list__email a:hover {
  color: #8FA34E;
}

.header__list__phone a:hover:before, .header__list__phone a.active:before {
  width: 0!important;
}


.header__list__email a:hover:before, .header__list__email a.active:before {
  width: 0!important;
}

.header__list__socials a:hover:before, .header__list__socials a.active:before {
  width: 0!important;
}

.header__list__socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.header__list__socials a,
.header__list__socials button {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.header__list__socials img {
  width: 36px;
  height: 36px;
  display: block;
  object-fit: contain;
  border-radius: 7px;
}

.header__list__socials .header__list__socials-img--vk {
  transform: none;
}

.header__list__adress p {
  font-size: 12px;
  line-height: 1.25;
  margin: 0;
  color: #f7f4f0;
}

@media (min-width: 769px) and (max-height: 820px) {
  .header__list li {
    margin-bottom: 18px;
  }

  .header__list-group--bottom {
    bottom: 14px;
  }

  .header__list--bottom li {
    margin-bottom: 9px !important;
  }
}

.header__list li a {
  color: #f7f4f0;
  border-bottom: none;
  text-decoration: none;
  position: relative;
  -webkit-transition: all .25s ease-in;
  -o-transition: all .25s ease-in;
  transition: all .25s ease-in;
}

.header__list li a:hover,
.header__list li a:focus-visible {
  color: #8FA34E;
}

.header__list li a:before {
  content: "";
  position: absolute;
  bottom: -0.4rem;
  left: 0;
  width: 0 !important;
  height: 2px;
  background-color: transparent;
  display: none;
}

.header__list li a:hover:before, .header__list li a.active:before {
  width: 0 !important;
}

.header__link {
  color: #f7f4f0;
  font-weight: 400;
  font-size: 22px;
  text-decoration: none;
}


.header__contacts {
  margin-top: 5px;
  margin-right: 55px;
  display: flex;
  flex-direction: column;
}

.header__contacts a:first-child {
  display: none;
}

#telephone {
  color:#f7f4f0;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  transition: color .4s;
}

#telephone:hover, #telephone-2:hover{
  color:#d8d1bf;
}

.header__list__phone #telephone:hover,
.header__list__phone #telephone:focus-visible {
  color: #8FA34E;
}

#telephone-2 {
  color:#f7f4f0;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  transition: color .4s;
}

#time {
  color:#f7f4f0;
  font-size: 10px;
  text-align: end;
  text-transform: none;
}

.video_body {
  --hero-video-expand: 0%;
  --hero-video-shift: 0%;
  --hero-side-shift: 0%;
  position: relative;
  width: 100%;
  height: 75vh;
  background: var(--dark-section-background);
  background-size: auto, auto, 100% 100%;
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-position: center top, center top, center top;
  top: 0;
  left: 0;
}

.video_body::after,
.gallery-showcase-section::after,
.home-about-section::after {
  content: none;
}


.video_menu {
  white-space: nowrap;
  position: absolute;
  overflow: hidden;
  display: flex;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  bottom: 24%;
  left: 15%;
  right: auto;
  background-color: #252525;
  border-radius: var(--ui-radius-buttons);
  z-index: 5;
  transform: none;
}

.vid_menu_link {
  display: flex;
  align-items: start;
  border-left: 1px solid #303030;
  padding: 15px 20px;
  background: #252525;
  position: relative;
}

.video_menu a{
  text-decoration: none;
}

.video_menu a:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #f7f4f0;
  background: linear-gradient(90deg, rgba(143,163,78,1) 0%, rgba(188,209,120,1) 100%);
  opacity: 0;
  transition: opacity 0.3s;
}

.video_menu a:hover:after{
  opacity: 1;
}

.vid_menu_link:first-child {
  border-left: none;
}

.vid_menu_link:last-child {

}

.video_menu p{
  font-weight: 700;
  font-size: 16px;
  color: #f7f4f0;
  position: relative;
  z-index: 1;
  background-color: transparent;
}


.video_menu span {
  position: absolute;
  z-index: 1;
  top: 0;
  margin-left: 15px;
  font-size: 70px;
  line-height: 20px;
  letter-spacing: -10px;
}

.video_menu i {
  position: relative;
  font-size: 24px;
  text-decoration: none;
  font-style: normal;
  margin-left: 15px;
  font-weight: normal;
  top: -14px;
}

.video_menu svg {
  position: absolute;
  z-index: 12;
  left: 15px;
}

.video_menu #low_price {
  background: rgb(143,163,78);
  background: linear-gradient(90deg, rgba(188,209,120,1) 0%,rgba(143,163,78,1) 100%);
}

.video_menu #low_price p {
  text-transform: none;
  font-size: 16px;
}

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

.video-side {
  display: none;
}

.smoke-layer {
  display: none;
}

.promo-countdown {
  display: none;
}

.hero-handwritten-note {
  display: none;
}

@keyframes smokeRiseA {
  0% {
    transform: translate3d(0, 0, 0) scale(0.55);
    opacity: 0;
  }
  14% {
    opacity: 0.5;
  }
  70% {
    opacity: 0.3;
  }
  100% {
    transform: translate3d(-44px, -240px, 0) scale(1.7);
    opacity: 0;
  }
}

@keyframes smokeRiseB {
  0% {
    transform: translate3d(0, 0, 0) scale(0.5);
    opacity: 0;
  }
  16% {
    opacity: 0.45;
  }
  72% {
    opacity: 0.28;
  }
  100% {
    transform: translate3d(-68px, -285px, 0) scale(1.9);
    opacity: 0;
  }
}

@keyframes smokeRiseC {
  0% {
    transform: translate3d(0, 0, 0) scale(0.58);
    opacity: 0;
  }
  12% {
    opacity: 0.52;
  }
  74% {
    opacity: 0.26;
  }
  100% {
    transform: translate3d(-24px, -225px, 0) scale(1.65);
    opacity: 0;
  }
}

@keyframes heroHandwrittenNotePop {
  0% {
    opacity: 0;
    transform: scale(0.82);
  }
  62% {
    opacity: 1;
    transform: scale(1.08);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes heroHandwrittenNotePulseOnly {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

@media (min-width: 992px) {
  .video_body.hero-intro-ready {
    overflow: hidden;
  }

  .video_body .videobaner {
    width: 100%;
    transform: none;
    will-change: width;
  }

  .video_body .video-side {
    display: none !important;
    transform: translate3d(var(--hero-side-shift, 0%), 0, 0);
    will-change: transform;
  }

  .video_body.hero-intro-ready .videobaner {
    width: 100%;
    transform: none;
    transition: none;
  }

  .video_body.hero-intro-ready .heading {
    left: 5vw;
    opacity: 0;
    transform: translate(-180px, -50%);
    transition: none;
    will-change: transform, opacity;
  }

  .video_body.hero-intro-ready .video_menu {
    opacity: 1;
    transform: translateX(-180px);
    transition: none;
    will-change: transform;
  }

  .video_body.hero-intro-ready .video-side {
    opacity: 1;
    transform: translate3d(calc(110px + var(--hero-side-shift, 0%)), 0, 0);
    transition: none;
    will-change: transform;
  }

  .video_body.hero-intro-ready .hero-handwritten-note {
    transform: translateX(-110px);
    transition: none;
    will-change: transform;
  }

  .video_body.hero-intro-ready .hero-handwritten-note__inner {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }

  .video_body.hero-intro-ready .hero-handwritten-note__segment {
    opacity: 0;
    transform: scale(0.82);
    transition: none;
    will-change: transform, opacity;
  }

  .video_body.hero-intro-ready.hero-note-pulse-ready .hero-handwritten-note__segment {
    opacity: 1;
    transform: scale(1);
  }

  .video_body.hero-intro-ready .video-side .smoke-layer {
    opacity: 0;
    transition: opacity 0.6s ease;
  }

  .video_body.hero-intro-ready .video-side .smoke-puff {
    animation-play-state: paused;
  }

  .video_body.hero-intro-ready.hero-intro-started .videobaner {
    width: 100%;
    transform: none;
    transition: none;
  }

  .video_body.hero-intro-ready.hero-intro-started .heading {
    opacity: 1;
    transform: translate(0, -50%);
    transition: transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.55s ease;
  }

  .video_body.hero-intro-ready.hero-intro-started .video_menu {
    transform: translateX(0);
    transition: transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
  }

  .video_body.hero-intro-ready.hero-intro-started .video-side {
    transform: translate3d(var(--hero-side-shift, 0%), 0, 0);
    transition: transform 0.95s cubic-bezier(0.22, 0.61, 0.36, 1);
  }

  .video_body.hero-intro-ready.hero-intro-started .hero-handwritten-note {
    transform: translateX(0);
    transition: transform 0.95s cubic-bezier(0.22, 0.61, 0.36, 1);
  }

  .video_body.hero-note-sequence-active .hero-handwritten-note__inner {
    animation: none;
  }

  .video_body.hero-note-sequence-active .hero-handwritten-note__segment--word:nth-child(1) {
    animation: heroHandwrittenNotePop 0.74s cubic-bezier(0.22, 0.61, 0.36, 1) 0.58s both;
  }

  .video_body.hero-note-sequence-active .hero-handwritten-note__segment--word:nth-child(2) {
    animation: heroHandwrittenNotePop 0.74s cubic-bezier(0.22, 0.61, 0.36, 1) 1.22s both;
  }

  .video_body.hero-note-sequence-active .hero-handwritten-note__segment--word:nth-child(3) {
    animation: heroHandwrittenNotePop 0.74s cubic-bezier(0.22, 0.61, 0.36, 1) 1.84s both;
  }

  .video_body.hero-note-sequence-active .hero-handwritten-note__segment--secondary {
    animation: heroHandwrittenNotePop 0.78s cubic-bezier(0.22, 0.61, 0.36, 1) 2.54s both;
  }

  .video_body.hero-note-sequence-active .hero-handwritten-note__segment--caption {
    animation: heroHandwrittenNotePop 0.64s cubic-bezier(0.22, 0.61, 0.36, 1) 3.02s both;
  }

  .video_body.hero-note-sequence-complete .hero-handwritten-note__segment {
    animation: none;
    opacity: 1;
    transform: scale(1);
  }

  .video_body.hero-note-pulse-loop .hero-handwritten-note__segment {
    opacity: 1;
    transform: scale(1);
    will-change: transform;
  }

  .video_body.hero-note-pulse-loop .hero-handwritten-note__segment--word:nth-child(1) {
    animation: heroHandwrittenNotePulseOnly 0.78s ease-in-out 0s both;
  }

  .video_body.hero-note-pulse-loop .hero-handwritten-note__segment--word:nth-child(2) {
    animation: heroHandwrittenNotePulseOnly 0.78s ease-in-out 0.92s both;
  }

  .video_body.hero-note-pulse-loop .hero-handwritten-note__segment--word:nth-child(3) {
    animation: heroHandwrittenNotePulseOnly 0.78s ease-in-out 1.84s both;
  }

  .video_body.hero-note-pulse-loop .hero-handwritten-note__segment--secondary {
    animation: heroHandwrittenNotePulseOnly 0.82s ease-in-out 2.86s both;
  }

  .video_body.hero-intro-ready.hero-intro-smoke-visible .video-side .smoke-layer {
    opacity: 1;
  }

  .video_body.hero-intro-ready.hero-intro-smoke-visible .video-side .smoke-puff {
    animation-play-state: running;
  }

  .header__contacts #telephone {
    font-size: 20px;
    color: #8FA34E;
    font-weight: 700;
  }

  .header__contacts #telephone:hover {
    color: #7f9445;
  }

  .video_menu {
    align-items: stretch;
  }

  .video_menu .vid_menu_link {
    display: flex;
    align-items: center;
    min-height: 56px;
    box-sizing: border-box;
  }

  .video_menu .vid_menu_link > a {
    display: flex;
    align-items: center;
    height: 100%;
  }

  .video_menu .vid_menu_link > a > p {
    margin: 0;
    line-height: 1;
  }

  .video_menu #low_price {
    padding: 15px 20px;
    background: transparent;
    display: flex;
    align-items: center;
    align-self: stretch;
    background: linear-gradient(90deg, rgba(188,209,120,1) 0%, rgba(143,163,78,1) 100%);
  }

  .video_menu #low_price > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0;
    background: transparent;
    position: relative;
  }

  .video_menu #low_price > a > p {
    margin: 0;
    position: relative;
    z-index: 1;
    transform: none;
    width: auto;
    text-align: center;
    line-height: 1;
  }

  .video_menu #low_price > a:after {
    display: block;
    pointer-events: none;
  }

  .video_menu {
    left: 5%;
    bottom: 20%;
  }

  .video-side {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background: url('../img/baner2.png') left top / cover no-repeat;
    z-index: 3;
    pointer-events: none;
    display: none !important;
    transition: transform 0.2s linear;
  }

  .hero-handwritten-note {
    position: absolute;
    top: clamp(92px, 15%, 150px);
    right: clamp(22px, 3.35vw, 64px);
    z-index: 6;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: clamp(10px, 0.95vw, 18px);
    max-width: min(38vw, 720px);
    color: #fffdf7;
    font-family: 'Rodchenko', sans-serif;
    font-weight: 700;
    line-height: 0.9;
    text-align: right;
    transform: none;
    filter: none;
  }

  .hero-handwritten-note__inner {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: inherit;
    transform-origin: right center;
    transform: none;
  }

  .hero-handwritten-note__footer {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: max-content;
    max-width: 100%;
  }

  .hero-handwritten-note__caption {
    display: block;
    margin-top: 0;
    color: rgba(255, 253, 247, 0.96);
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(12px, 0.85vw, 15px);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: 0;
    text-align: right;
    text-transform: none !important;
    font-variant: normal;
  }

  .hero-handwritten-note__caption-mobile {
    display: none;
  }

  .hero-handwritten-note__line {
    display: block;
    font-size: clamp(44px, 4.4vw, 68px);
    font-weight: 700;
    letter-spacing: 0.03em;
    white-space: nowrap;
    text-align: right;
    line-height: 0.96;
  }

  .hero-handwritten-note__line--headline {
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
    gap: 0.22em;
    flex-wrap: nowrap;
    font-size: clamp(40px, 3.55vw, 78px);
    line-height: 0.94;
    color: #d34b28;
  }

  .hero-handwritten-note__segment {
    display: inline-block;
  }

  .hero-handwritten-note__segment--word {
    font-size: inherit;
    line-height: inherit;
    color: inherit;
    text-shadow: none;
  }

  .hero-handwritten-note__line--secondary {
    margin-right: 0;
    font-size: clamp(24px, 2.05vw, 44px);
    text-shadow: none;
  }

  .videobaner {
    z-index: 2;
    transition: width 0.2s linear;
  }

  .video-side .smoke-layer {
    position: absolute;
    display: block;
    right: 6%;
    bottom: 15%;
    width: min(25vw, 360px);
    height: min(40vh, 290px);
    pointer-events: none;
    z-index: 4;
    overflow: visible;
  }

  .video-side .smoke-puff {
    position: absolute;
    bottom: 0;
    right: 8%;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 32%,
      rgba(255, 255, 255, 0.62) 0%,
      rgba(255, 255, 255, 0.34) 32%,
      rgba(255, 255, 255, 0.14) 55%,
      rgba(255, 255, 255, 0.02) 70%,
      rgba(255, 255, 255, 0) 76%);
    filter: blur(7px);
    will-change: transform, opacity;
    opacity: 0;
  }

  .video-side .smoke-puff.puff-1 {
    right: 2%;
    width: 138px;
    height: 138px;
    animation: smokeRiseA 8.4s ease-in-out infinite;
    animation-delay: 0s;
  }

  .video-side .smoke-puff.puff-2 {
    right: 10%;
    width: 116px;
    height: 116px;
    animation: smokeRiseB 9.3s ease-in-out infinite;
    animation-delay: 1.4s;
  }

  .video-side .smoke-puff.puff-3 {
    right: 6%;
    width: 128px;
    height: 128px;
    animation: smokeRiseC 7.9s ease-in-out infinite;
    animation-delay: 2.8s;
  }

  .video-side .smoke-puff.puff-4 {
    right: 15%;
    width: 104px;
    height: 104px;
    animation: smokeRiseA 8.8s ease-in-out infinite;
    animation-delay: 4.1s;
  }

  .video-side .smoke-puff.puff-5 {
    right: -2%;
    width: 146px;
    height: 146px;
    animation: smokeRiseB 10.2s ease-in-out infinite;
    animation-delay: 5.2s;
  }

  .video-side .promo-countdown {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 6px;
    right: 6%;
    bottom: calc(15% + min(40vh, 290px) + 14px);
    width: min(25vw, 360px);
    z-index: 5;
    pointer-events: none;
    padding: 10px 14px;
    border-radius: var(--ui-radius);
    background: rgba(37, 37, 37, 0.68);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(2px);
  }

  .video-side .promo-countdown__label {
    color: #f7f4f0;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
  }

  .video-side .promo-countdown__value {
    color: #f7f4f0;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .3px;
    white-space: nowrap;
  }
}

.video_menu #low_price {
  position: relative;
  overflow: hidden;
}

.video_menu #low_price > a {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 0;
}

.video_menu #low_price > a::after {
  top: -15px;
  right: -20px;
  bottom: -15px;
  left: -20px;
  width: auto;
  height: auto;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(143,163,78,1) 0%, rgba(188,209,120,1) 100%);
  opacity: 0;
  z-index: 0;
  transition: opacity 0.3s ease;
}

.video_menu #low_price > a > p {
  position: relative;
  z-index: 1;
}

.video_menu #low_price:hover > a::after,
.video_menu #low_price > a:hover::after,
.video_menu #low_price > a:focus-visible::after {
  opacity: 1;
}

.videobaner video {
  filter: brightness(85%);
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#my_video_1 {
  width: 100%;
  height: 100%;
}

.heading {
  position: absolute;
  text-align: start;
  color: #f7f4f0;
  position: absolute;
  top: 45%;
  left: 5%;
  z-index: 1;
  transform: translate(0%, -50%);
}

.video_body .heading .sale > h1 {
  margin: 0;
  font-size: clamp(52px, 3.55vw, 68px);
  font-weight: 800;
  line-height: 1.06;
}

.video_body .heading .sale > h1 > .header_span {
  font-size: inherit !important;
  line-height: inherit !important;
}

@media (min-width: 992px) and (max-width: 1920px) {
  .video_body .heading .sale > h1 {
    font-size: clamp(44px, 2.72vw, 52px);
  }
}

@media (min-width: 992px) and (max-width: 1366px) {
  .video_body .heading .sale > h1 {
    font-size: clamp(38px, 3vw, 44px);
  }
}

.our_advants {
  width: min(calc(100% - (var(--site-container-gutter) * 2)), var(--site-container-width));
  margin: 0 auto;
  margin-top: 90px;
  margin-bottom: 120px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.our_advants_item h3 {

}

.our_advants_item {
  position: relative;
  padding-left: 90px;
  flex-basis: calc(100% / 3);
}

.our_advants_item:last-child {
  margin-right: 0px;
}

.our_advants_item:before {
  content: "";
  position: absolute;
  width: 70px;
  height: 70px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100%;
}

.our_advants_item.delivery:before {
  background-image: url(../img/icons/delivery.svg);
}

.our_advants_item.keeping:before {
  background-image: url(../img/icons/keeping.svg);
}

.our_advants_item.discount:before {
  background-image: url(../img/icons/discount.svg);
}

.advant {
  width: min(calc(100% - (var(--site-container-gutter) * 2)), var(--site-container-width));
  margin: 0 auto;
  margin-bottom: 120px;
  box-sizing: border-box;
}

@media (min-width: 992px) {
  .advant {
    margin-top: 20px;
  }
}

.video_body + .advant {
  margin-top: 35px;
  margin-bottom: 20px;
}

.video_body + .advant .icons {
  margin-top: 24px;
}

@media (min-width: 1201px) {
  .video_body + .advant {
    min-height: calc(100vh - 75vh);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .video_body + .advant .icons {
    margin-top: 0;
  }
}

#advant_header, #product_header{
  font-size: 50px;
  font-weight: 700;
  text-align: center;
  color: #252525;
}

.icons {
  display: flex;
  margin-top: 100px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.icon {
  display: flex;
  flex-basis: 33%;
  margin-bottom: 50px;
  cursor: default;
}

.icon_text {
  margin-left: 25px;
}

.icon_img {
  flex-basis: 50px;
}

.icon_img img {
  display: block;
  transform: scale(1);
  transform-origin: center center;
  transition: transform 0.22s ease;
}

@media (prefers-reduced-motion: no-preference) {
  .scroll-reveal-block {
    opacity: 0;
    transform: translate3d(0, 62px, 0);
    transition:
      transform 1.04s cubic-bezier(0.22, 0.61, 0.36, 1),
      opacity 0.82s ease;
    will-change: transform, opacity;
  }

  .scroll-reveal-block.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (min-width: 992px) {
  .video_body + .advant .icon {
    opacity: 0;
    transform: translateY(34px) scale(0.96);
    animation: advantCardReveal 0.92s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
    will-change: transform, opacity, filter;
  }

  .video_body + .advant .icon_img {
    transform: translateY(16px) scale(0.84) rotate(-8deg);
    opacity: 0;
    animation: advantIconReveal 0.82s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
    will-change: transform, opacity;
  }

  .video_body + .advant .icon:nth-child(1) {
    animation-delay: 1.28s;
  }

  .video_body + .advant .icon:nth-child(2) {
    animation-delay: 1.44s;
  }

  .video_body + .advant .icon:nth-child(3) {
    animation-delay: 1.6s;
  }

  .video_body + .advant .icon:nth-child(4) {
    animation-delay: 1.76s;
  }

  .video_body + .advant .icon:nth-child(5) {
    animation-delay: 1.92s;
  }

  .video_body + .advant .icon:nth-child(6) {
    animation-delay: 2.08s;
  }

  .video_body + .advant .icon:nth-child(1) .icon_img {
    animation-delay: 1.42s;
  }

  .video_body + .advant .icon:nth-child(2) .icon_img {
    animation-delay: 1.58s;
  }

  .video_body + .advant .icon:nth-child(3) .icon_img {
    animation-delay: 1.74s;
  }

  .video_body + .advant .icon:nth-child(4) .icon_img {
    animation-delay: 1.9s;
  }

  .video_body + .advant .icon:nth-child(5) .icon_img {
    animation-delay: 2.06s;
  }

  .video_body + .advant .icon:nth-child(6) .icon_img {
    animation-delay: 2.22s;
  }
}

@keyframes advantCardReveal {
  0% {
    opacity: 0;
    transform: translateY(34px) scale(0.96);
  }
  60% {
    opacity: 1;
    transform: translateY(-4px) scale(1.01);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes advantIconReveal {
  0% {
    opacity: 0;
    transform: translateY(16px) scale(0.84) rotate(-8deg);
  }
  65% {
    opacity: 1;
    transform: translateY(-2px) scale(1.08) rotate(2deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0);
  }
}

@media (hover: hover) and (pointer: fine) {
  .icon:hover .icon_img img {
    transform: scale(1.14);
  }
}


.technology {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: min(calc(100% - (var(--site-container-gutter) * 2)), var(--site-container-width));
  max-width: none;
  margin: 0 auto;
  margin-bottom: 120px;
  background-image: none;
  text-align: left;
  cursor: zoom-in;
}

.technology::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('../img/shape.webp');
  background-repeat: no-repeat;
  background-size: auto auto;
  background-position: left top;
  pointer-events: none;
}

.technology > * {
  position: relative;
  z-index: 1;
}

.technology[data-magnifier-enabled="off"] {
  cursor: default;
}

.technology h2 {
  color: #f7f4f0;
  font-size: 50px;
  font-weight: 700;
  padding: 2.2rem 0 1rem 1rem;
}

.technology p {
  max-width: 50%;
  font-size: 17px;
  line-height: 1.65;
}

.technology__magnifier {
  --magnifier-size: 190px;
  position: absolute;
  left: 0;
  top: 0;
  width: var(--magnifier-size);
  height: var(--magnifier-size);
  border-radius: 50%;
  border: 3px solid #8FA34E;
  box-shadow: 0 10px 26px rgba(37, 37, 37, 0.26), 0 0 0 1px rgba(247, 244, 240, 0.25) inset;
  background-color: rgba(247, 244, 240, 0.15);
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.92);
  transform-origin: center center;
  transition: opacity .15s ease, transform .15s ease, visibility .15s ease;
  z-index: 5;
}

.technology[data-magnifier-enabled="off"] .technology__magnifier {
  opacity: 0;
  visibility: hidden;
}

.technology.is-magnifier-active .technology__magnifier {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

@media (prefers-reduced-motion: no-preference) {
  .technology.technology-reveal::before,
  .technology.technology-reveal .tech_text,
  .technology.technology-reveal > p {
    will-change: transform, opacity;
  }

  .technology.technology-reveal::before {
    opacity: 0;
    transform: translate3d(0, 68px, 0);
    transition:
      transform 1.04s cubic-bezier(0.22, 0.61, 0.36, 1),
      opacity 0.78s ease;
  }

  .technology.technology-reveal .tech_text {
    opacity: 0;
    transform: translate3d(0, 68px, 0);
    transition:
      transform 1.04s cubic-bezier(0.22, 0.61, 0.36, 1),
      opacity 0.78s ease;
    transition-delay: 0s;
  }

  .technology.technology-reveal > p {
    opacity: 1;
    transform: translate3d(0, 62px, 0);
    transition:
      transform 1.08s cubic-bezier(0.22, 0.61, 0.36, 1),
      filter 0.84s ease;
    transition-delay: 0.3s;
  }

  .technology.technology-reveal.is-technology-visible::before,
  .technology.technology-reveal.is-technology-visible .tech_text,
  .technology.technology-reveal.is-technology-visible > p {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: none;
  }
}

@media (max-width: 991px), (hover: none), (pointer: coarse) {
  .technology {
    cursor: default;
  }

  .technology__magnifier {
    display: none !important;
  }
}


.products {
  display: flex;
  justify-content: space-between;
  margin: 20px auto 20px;
  align-items: flex-end;
}
.section-header.container#product_header {
  margin-bottom: 0;
}

.section-header.container#product_header + .products.container {
  margin: 35px auto 50px !important;
  justify-content: flex-start;
  gap: 40px;
}

@media (min-width: 992px) {
  .section-header.container#product_header + .products.container {
    margin: 50px auto 120px !important;
  }
}



.product_img {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
}

.product_img img {
  max-width: 440px;
  max-height: 330px;
  object-fit: contain;
}

@media (max-width:1400px) {
  .product_img img  {
    max-width: 320px;
    height: 220px !important;
    min-height: 100%;
  }
}

.product_title {
  font-size: 22px;
  text-align: left;
  font-weight: 600;
  height: 44px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product_link {
  transition: .3s ease-in-out;
  text-decoration: none;
  color: black;
}

.product_link:hover{
  color:  #8fa34e;
}

.product_line {
  border-left: 1px solid #b9b9b9;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  max-width: 330px;
}

.product-card--main {
  border: none;
  box-sizing: border-box;
}

.product-card__inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  gap: 20px;
  margin-bottom: 30px;
  margin-top: 25px;
  padding: 0 20px;
}

.product-card__description {
  display: flex;
}

.product-card {
  align-items: stretch;
}

.stone {
  align-items: center;
}

.product_stats {
  white-space: nowrap;
  font-style: normal;
  line-height: 1.4;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product_stats li {
  padding-bottom: 5px;
}

.stats_group {
  box-sizing: border-box;
  flex: 0 0 25%;
  width: 25%;
  max-width: 25%;
  min-width: 0;
  text-align: center;
  list-style: none;
  padding-left: 20px;
  padding-right: 20px;
  border-left: 1px solid #b9b9b9;
}

.product_stats .stats_group ul {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
}

.product_stats .stats_group li {
  text-align: center;
}

.stats_group:first-child {
  border-left: none;
  padding-left: 0;
}

.stats_group:last-child {
  padding-right: 0;
}
.product-card--main {
  max-width: 100%;
  --product-card-hover-top-overhang: 0px;
  --product-card-image-scale: 1;
  --product-card-backdrop-always-active: 1;
  --product-card-backdrop-offset-x: 0px;
  --product-card-backdrop-offset-y: 0px;
  --product-card-backdrop-top-overhang: 14px;
  --product-card-backdrop-extra-top: 0px;
  --product-card-backdrop-extra-height: 0px;
  border: none;
  border-radius: var(--ui-radius);
  background: transparent;
  padding: 0 16px 10px;
  box-sizing: border-box;
  overflow: visible;
  position: relative;
  isolation: isolate;
  transition: box-shadow .22s ease, background-color .22s ease;
}

.section-header.container#product_header + .products.container > .product-card--main {
  flex: 0 0 calc((100% - 80px) / 3);
  max-width: calc((100% - 80px) / 3);
}

.product-card--main .product_img img {
  max-width: 330px;
  max-height: 248px;
}

.product-card--main.is-card-hovered {
  cursor: pointer;
}

.product-card--main::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: calc(-1 * var(--product-card-hover-top-overhang));
  bottom: 0;
  border-radius: var(--ui-radius);
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  transition: opacity .22s ease, top .22s ease;
}

@media (prefers-reduced-motion: no-preference) {
  .products.container.scroll-reveal-block .product-card--main {
    --product-reveal-delay: 0s;
    opacity: 0;
    transform: translate3d(0, 56px, 0) scale(0.985);
    transition:
      transform 0.94s cubic-bezier(0.22, 0.61, 0.36, 1),
      opacity 0.72s ease,
      box-shadow .22s ease,
      background-color .22s ease;
    transition-delay: var(--product-reveal-delay);
    will-change: transform, opacity;
  }

  .products.container.scroll-reveal-block .product-card--main:nth-child(3n + 1) {
    --product-reveal-delay: 0.12s;
  }

  .products.container.scroll-reveal-block .product-card--main:nth-child(3n + 2) {
    --product-reveal-delay: 0.24s;
  }

  .products.container.scroll-reveal-block .product-card--main:nth-child(3n) {
    --product-reveal-delay: 0.36s;
  }

  .products.container.scroll-reveal-block .product-card--main .product-card__visual,
  .products.container.scroll-reveal-block .product-card--main .product-card__inner,
  .products.container.scroll-reveal-block .product-card--main .product-card__actions,
  .products.container.scroll-reveal-block .product-card--main .product_img img {
    opacity: 0;
    will-change: transform, opacity, clip-path, filter;
  }

  .products.container.scroll-reveal-block .product-card--main .product-card__visual {
    transform: translate3d(0, 30px, 0) scale(0.97);
    transition:
      transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1),
      opacity 0.7s ease;
    transition-delay: calc(var(--product-reveal-delay) + 0.12s);
  }

.products.container.scroll-reveal-block .product-card--main .product_img img {
  transform: translate3d(0, 24px, 0) scale(calc(0.9 * var(--product-card-image-scale, 1)));
  filter: saturate(0.82) brightness(1.08);
  transition:
    transform 0.96s cubic-bezier(0.22, 0.61, 0.36, 1),
    opacity 0.76s ease,
    filter 0.76s ease;
  transition-delay: calc(var(--product-reveal-delay) + 0.22s);
}

  .products.container.scroll-reveal-block .product-card--main .product-card__inner {
    transform: translate3d(0, 34px, 0);
    transition:
      transform 0.84s cubic-bezier(0.22, 0.61, 0.36, 1),
      opacity 0.66s ease;
    transition-delay: calc(var(--product-reveal-delay) + 0.28s);
  }

  .products.container.scroll-reveal-block .product-card--main .product-card__actions {
    transform: translate3d(0, 38px, 0);
    transition:
      transform 0.88s cubic-bezier(0.22, 0.61, 0.36, 1),
      opacity 0.68s ease;
    transition-delay: calc(var(--product-reveal-delay) + 0.42s);
  }

  .products.container.scroll-reveal-block.is-visible .product-card--main {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }

  .products.container.scroll-reveal-block.is-visible .product-card--main .product-card__visual,
  .products.container.scroll-reveal-block.is-visible .product-card--main .product-card__inner,
  .products.container.scroll-reveal-block.is-visible .product-card--main .product-card__actions {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    transition-delay: 0s;
  }

.products.container.scroll-reveal-block.is-visible .product-card--main .product_img img {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(var(--product-card-image-scale, 1));
  filter: saturate(1) brightness(1);
  transition-delay: 0s;
}

  .products.container.scroll-reveal-block {
    filter: none;
    transition:
      transform 1.04s cubic-bezier(0.22, 0.61, 0.36, 1),
      opacity 0.82s ease;
    will-change: transform, opacity;
  }

  .products.container.scroll-reveal-block.is-visible {
    filter: none;
  }

  .reviews-section.scroll-reveal-block .review-card {
    --review-reveal-delay: 0s;
    opacity: 0;
    transform: translate3d(0, 52px, 0) scale(0.985);
    transition:
      transform 0.94s cubic-bezier(0.22, 0.61, 0.36, 1),
      opacity 0.72s ease,
      box-shadow 0.25s ease;
    transition-delay: var(--review-reveal-delay);
    will-change: transform, opacity;
  }

  .reviews-section.scroll-reveal-block .review-card:nth-child(3n + 1) {
    --review-reveal-delay: 0.12s;
  }

  .reviews-section.scroll-reveal-block .review-card:nth-child(3n + 2) {
    --review-reveal-delay: 0.24s;
  }

  .reviews-section.scroll-reveal-block .review-card:nth-child(3n) {
    --review-reveal-delay: 0.36s;
  }

  .reviews-section.scroll-reveal-block .review-card__meta,
  .reviews-section.scroll-reveal-block .review-card__text,
  .reviews-section.scroll-reveal-block .review-card__gallery,
  .reviews-section.scroll-reveal-block .review-card__title,
  .reviews-section.scroll-reveal-block .review-author__avatar,
  .reviews-section.scroll-reveal-block .review-card__stars {
    opacity: 0;
    will-change: transform, opacity;
  }

  .reviews-section.scroll-reveal-block .review-card__meta {
    transform: translate3d(0, 30px, 0);
    transition: transform 0.78s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.62s ease;
    transition-delay: calc(var(--review-reveal-delay) + 0.14s);
  }

  .reviews-section.scroll-reveal-block .review-card__title {
    transform: translate3d(0, 28px, 0) scale(0.96);
    transition: transform 0.74s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.58s ease;
    transition-delay: calc(var(--review-reveal-delay) + 0.24s);
  }

  .reviews-section.scroll-reveal-block .review-card__text {
    transform: translate3d(0, 36px, 0);
    transition: transform 0.82s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.66s ease;
    transition-delay: calc(var(--review-reveal-delay) + 0.32s);
  }

  .reviews-section.scroll-reveal-block .review-card__gallery {
    transform: translate3d(0, 38px, 0) scale(0.98);
    transition: transform 0.86s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.68s ease;
    transition-delay: calc(var(--review-reveal-delay) + 0.46s);
  }

  .reviews-section.scroll-reveal-block .review-author__avatar {
    transform: translate3d(0, 22px, 0) scale(0.88);
    transition: transform 0.74s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.58s ease;
    transition-delay: calc(var(--review-reveal-delay) + 0.2s);
  }

  .reviews-section.scroll-reveal-block .review-card__stars {
    transform: translate3d(0, 22px, 0);
    transition: transform 0.68s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.56s ease;
    transition-delay: calc(var(--review-reveal-delay) + 0.28s);
  }

  .reviews-section.scroll-reveal-block.is-visible .review-card {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }

  .reviews-section.scroll-reveal-block.is-visible .review-card__meta,
  .reviews-section.scroll-reveal-block.is-visible .review-card__text,
  .reviews-section.scroll-reveal-block.is-visible .review-card__gallery,
  .reviews-section.scroll-reveal-block.is-visible .review-card__title,
  .reviews-section.scroll-reveal-block.is-visible .review-author__avatar,
  .reviews-section.scroll-reveal-block.is-visible .review-card__stars {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .scroll-reveal-block,
  .products.container.scroll-reveal-block .product-card--main,
  .products.container.scroll-reveal-block .product-card--main .product-card__visual,
  .products.container.scroll-reveal-block .product-card--main .product-card__inner,
  .products.container.scroll-reveal-block .product-card--main .product-card__actions,
  .reviews-section.scroll-reveal-block .review-card,
  .reviews-section.scroll-reveal-block .review-card__meta,
  .reviews-section.scroll-reveal-block .review-card__text,
  .reviews-section.scroll-reveal-block .review-card__gallery,
  .reviews-section.scroll-reveal-block .review-card__title,
  .reviews-section.scroll-reveal-block .review-author__avatar,
  .reviews-section.scroll-reveal-block .review-card__stars,
  .technology.technology-reveal::before,
  .technology.technology-reveal .tech_text,
  .gallery-showcase-section.gallery-showcase-reveal::before,
  .gallery-showcase-section.gallery-showcase-reveal > #advant_header,
  .gallery-showcase-section.gallery-showcase-reveal .gallery.gallery-slider,
  .gallery-showcase-section.gallery-showcase-reveal .gallery-slider__actions,
  .contacts.contacts-reveal::before,
  .contacts.contacts-reveal .contacts_text,
  .contacts.contacts-reveal .yandex_map,
  .questions.questions-composition-reveal .questions_faq,
  .questions.questions-composition-reveal .questions_faq .faq-item,
  .questions.questions-composition-reveal #contact-form_1,
  .questions.questions-composition-reveal .questions_side-image {
    opacity: 1 !important;
  }

  .scroll-reveal-block {
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1.18);
  }

  .products.container.scroll-reveal-block .product-card--main {
    transition-property: transform, box-shadow, background-color;
    transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1.18);
  }

  .products.container.scroll-reveal-block .product-card--main .product-card__visual,
  .products.container.scroll-reveal-block .product-card--main .product-card__inner,
  .products.container.scroll-reveal-block .product-card--main .product-card__actions {
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1.18);
  }

  .products.container.scroll-reveal-block .product-card--main .product_img img {
    transition-property: transform, filter;
    transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1.18);
  }

  .reviews-section.scroll-reveal-block .review-card {
    transition-property: transform, box-shadow;
    transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1.18);
  }

  .reviews-section.scroll-reveal-block .review-card__meta,
  .reviews-section.scroll-reveal-block .review-card__text,
  .reviews-section.scroll-reveal-block .review-card__gallery,
  .reviews-section.scroll-reveal-block .review-card__title,
  .reviews-section.scroll-reveal-block .review-author__avatar,
  .reviews-section.scroll-reveal-block .review-card__stars,
  .technology.technology-reveal::before,
  .technology.technology-reveal .tech_text,
  .gallery-showcase-section.gallery-showcase-reveal::before,
  .gallery-showcase-section.gallery-showcase-reveal > #advant_header,
  .gallery-showcase-section.gallery-showcase-reveal .gallery.gallery-slider,
  .gallery-showcase-section.gallery-showcase-reveal .gallery-slider__actions,
  .contacts.contacts-reveal::before,
  .contacts.contacts-reveal .contacts_text,
  .contacts.contacts-reveal .yandex_map,
  .questions.questions-composition-reveal .questions_faq,
  .questions.questions-composition-reveal .questions_faq .faq-item,
  .questions.questions-composition-reveal #contact-form_1,
  .questions.questions-composition-reveal .questions_side-image {
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1.18);
  }

  .scroll-reveal-block.is-visible,
  .products.container.scroll-reveal-block.is-visible .product-card--main,
  .products.container.scroll-reveal-block.is-visible .product-card--main .product-card__visual,
  .products.container.scroll-reveal-block.is-visible .product-card--main .product-card__inner,
  .products.container.scroll-reveal-block.is-visible .product-card--main .product-card__actions,
  .reviews-section.scroll-reveal-block.is-visible .review-card,
  .reviews-section.scroll-reveal-block.is-visible .review-card__meta,
  .reviews-section.scroll-reveal-block.is-visible .review-card__text,
  .reviews-section.scroll-reveal-block.is-visible .review-card__gallery,
  .reviews-section.scroll-reveal-block.is-visible .review-card__title,
  .reviews-section.scroll-reveal-block.is-visible .review-author__avatar,
  .reviews-section.scroll-reveal-block.is-visible .review-card__stars,
  .technology.technology-reveal.is-technology-visible::before,
  .technology.technology-reveal.is-technology-visible .tech_text,
  .gallery-showcase-section.gallery-showcase-reveal.is-gallery-showcase-visible::before,
  .gallery-showcase-section.gallery-showcase-reveal.is-gallery-showcase-visible > #advant_header,
  .gallery-showcase-section.gallery-showcase-reveal.is-gallery-showcase-visible .gallery.gallery-slider,
  .gallery-showcase-section.gallery-showcase-reveal.is-gallery-showcase-visible .gallery-slider__actions,
  .contacts.contacts-reveal.is-contacts-visible::before,
  .contacts.contacts-reveal.is-contacts-visible .contacts_text,
  .contacts.contacts-reveal.is-contacts-visible .yandex_map,
  .questions.questions-composition-reveal.is-composition-visible .questions_faq,
  .questions.questions-composition-reveal.is-composition-visible .questions_faq .faq-item,
  .questions.questions-composition-reveal.is-composition-visible #contact-form_1,
  .questions.questions-composition-reveal.is-composition-visible .questions_side-image {
    filter: none;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .gallery-showcase-section.gallery-showcase-reveal::before,
  .gallery-showcase-section.gallery-showcase-reveal > #advant_header,
  .gallery-showcase-section.gallery-showcase-reveal .gallery.gallery-slider,
  .gallery-showcase-section.gallery-showcase-reveal .gallery-slider__actions {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
    will-change: auto;
  }

  .contacts.contacts-reveal::before,
  .contacts.contacts-reveal .contacts_text,
  .contacts.contacts-reveal .yandex_map {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
    will-change: auto;
  }
}

.product-card--main:hover,
.product-card--main.is-image-hovered,
.product-card--main.is-details-hovered,
.product-card--main.is-card-hovered {
  --product-card-hover-top-overhang: 28px;
}

.product-card--main:hover::before,
.product-card--main.is-image-hovered::before,
.product-card--main.is-details-hovered::before,
.product-card--main.is-card-hovered::before {
  opacity: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.product-card--main .product-card__visual {
  position: relative;
  padding-top: 0;
  z-index: 1;
}

.product-card--main .product-card__image-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  background: -webkit-linear-gradient(135deg, rgb(208, 203, 177), rgb(249, 248, 244));
  background: -moz-linear-gradient(135deg, rgb(208, 203, 177), rgb(249, 248, 244));
  background: linear-gradient(135deg, rgb(208, 203, 177), rgb(249, 248, 244));
  border-radius: var(--ui-radius);
  box-sizing: border-box;
  z-index: 0;
  pointer-events: none;
  transition: width .28s ease, height .28s ease, left .28s ease, top .28s ease, border-radius .28s ease;
  display: none !important;
}

.product-card--main .product-card__discount {
  position: static;
  background: #cf0000;
  color: #ffffff;
  font-size: clamp(12px, 0.8vw, 18px);
  line-height: 1;
  font-weight: 700;
  --discount-cut: 8px;
  border-radius: 0;
  border: none;
  padding: 4px 8px 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  flex: 0 0 auto;
  z-index: 1;
  box-shadow: 0 6px 16px rgba(37, 37, 37, 0.06);
  clip-path: polygon(var(--discount-cut) 0, 100% 0, 100% calc(100% - var(--discount-cut)), calc(100% - var(--discount-cut)) 100%, 0 100%, 0 var(--discount-cut));
}

.product-card--main .product-card__discount--hidden {
  display: none !important;
}

.product-card--main .product-card__image-link {
  position: relative;
  display: flex;
  justify-content: center;
  z-index: 2;
  color: inherit;
}

.product-card--main .product_img {
  position: relative;
  width: 100%;
  height: 330px;
  min-height: 330px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0 8px 12px;
  box-sizing: border-box;
  overflow: visible;
  perspective: 1200px;
}

.product-card--main .product-card__image-hover-zone {
  position: absolute;
  z-index: 2;
  background: transparent;
}

.product-card--main .product_img img {
  position: relative;
  z-index: 2;
  width: auto;
  max-width: 100%;
  max-height: 286px;
  height: auto;
  align-self: flex-end;
  object-fit: contain;
  object-position: center top;
  margin: 0 auto;
  display: block;
  transform-origin: center bottom;
  transform: scale(var(--product-card-image-scale, 1));
  transition: transform .28s ease;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.product-card--main[data-category-key="facade_panels"] .product_img {
  height: 240px;
  min-height: 240px;
}

.product-card--main .product_img.catalog-rollover-zone img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 286px;
  align-self: flex-end;
  object-fit: contain;
  object-position: center bottom;
  border-radius: var(--ui-radius);
}

.product-card--main .product_img img.is-preview-frame {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 286px;
  align-self: flex-end;
  object-fit: contain;
  object-position: center bottom;
  border-radius: 0;
}

.product-card--main .catalog-rollover-markers {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 2px;
  height: 6px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
  pointer-events: auto;
  z-index: 4;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.product-card--main .product_img.catalog-rollover-zone:hover .catalog-rollover-markers {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.product-card--main .catalog-rollover-markers__item {
  display: block;
  height: 100%;
  min-width: 34px;
  border-radius: 999px;
  background: rgba(37, 37, 37, 0.22);
  transition: background-color .14s linear;
}

.product-card--main .catalog-rollover-markers__item.is-active {
  background: #8FA34E;
}

.product-card--main .product-card__dims {
  display: block;
  position: absolute;
  top: 52px;
  left: 34px;
  right: 20px;
  bottom: 20px;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease;
}

.product-card--main .product-card__dim-line {
  position: absolute;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: none;
  filter: none;
  transition: transform .28s cubic-bezier(0.22, 0.61, 0.36, 1), opacity .2s ease;
}

.product-card--main .product-card__dim-line--x {
  left: 24px;
  right: 8px;
  top: 8px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left center;
}

.product-card--main .product-card__dim-line--y {
  left: 0;
  top: 14px;
  bottom: 12px;
  width: 2px;
  transform: scaleY(0);
  transform-origin: center top;
}

.product-card--main .product-card__dim-line--x::after,
.product-card--main .product-card__dim-line--y::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: none;
  filter: none;
}

.product-card--main .product-card__dim-line--x::after {
  left: 100%;
  top: 50%;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transform: translate(-1px, -50%);
}

.product-card--main .product-card__dim-line--y::after {
  left: 50%;
  top: 100%;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transform: translate(-50%, -1px);
}

.product-card--main .product-card__dim-label {
  position: absolute;
  color: #fff;
  font-weight: 500;
  font-style: italic;
  text-transform: lowercase !important;
  text-shadow: none;
  opacity: 0;
  transition: transform .28s cubic-bezier(0.22, 0.61, 0.36, 1), opacity .22s ease;
}

.product-card--main .product-card__dim-label--x {
  top: -10px;
  left: 50%;
  transform: translateX(-50%) translateX(-14px) translateY(8px);
  font-size: clamp(12px, 0.8vw, 21px);
}

.product-card--main .product-card__dim-label--y {
  left: -10px;
  top: 50%;
  transform: translateY(-50%) translateY(-14px) rotate(-90deg);
  font-size: clamp(12px, 0.8vw, 19px);
}

.product-card--main .product-card__rating {
  position: static;
  grid-area: rating;
  justify-self: end;
  align-self: end;
  z-index: 1;
  background: transparent;
  border: none;
  border-radius: 0;
  display: inline-flex;
  align-items: flex-end;
  gap: 5px;
  padding: 0;
  font-size: 16px;
  font-weight: 500;
  color: #242832;
  line-height: 1;
  margin-bottom: 0;
  transition: none;
  white-space: nowrap;
}

.product-card--main .product-card__rating-value {
  display: inline-flex;
  align-items: flex-end;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}

.product-card--main .product-card__rating-star {
  color: #f6c400;
  font-size: clamp(20px, 1.3vw, 26px);
  display: inline-flex;
  align-items: center;
  align-self: center;
  line-height: 1;
  transform: translateY(2px);
}

.product-card--main .product-card__reviews {
  display: inline-flex;
  align-items: flex-end;
  gap: 4px;
  margin-left: 8px;
  color: #242832;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  text-transform: none !important;
  transform: none;
}

.product-card--main .product-card__reviews-count {
  text-transform: none !important;
  display: inline-flex;
  align-items: flex-end;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  transform: none;
}

.product-card--main .product-card__reviews-icon {
  width: clamp(19px, 1.15vw, 23px);
  height: clamp(19px, 1.15vw, 23px);
  display: inline-block;
  align-self: center;
  line-height: 0;
  transform: translateY(2px);
}

.product-card--main .product-card__reviews-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-card--main .product-card__reviews-icon circle {
  fill: currentColor;
}

@media (hover: hover) and (pointer: fine) {
  .product-card--main.is-image-hovered,
  .product-card--main.is-details-hovered,
  .product-card--main.is-card-hovered {
    --product-card-image-scale: 1.05;
  }

  .product-card--main.is-image-ready.is-image-hovered .product-card__dims,
  .product-card--main.is-image-ready.is-details-hovered .product-card__dims,
  .product-card--main.is-image-ready.is-card-hovered .product-card__dims {
    opacity: 1;
    visibility: visible;
  }

  .product-card--main.is-image-ready.is-image-hovered .product-card__dim-line--x,
  .product-card--main.is-image-ready.is-details-hovered .product-card__dim-line--x,
  .product-card--main.is-image-ready.is-card-hovered .product-card__dim-line--x {
    transform: scaleX(1);
  }

  .product-card--main.is-image-ready.is-image-hovered .product-card__dim-line--y,
  .product-card--main.is-image-ready.is-details-hovered .product-card__dim-line--y,
  .product-card--main.is-image-ready.is-card-hovered .product-card__dim-line--y {
    transform: scaleY(1);
  }

  .product-card--main.is-image-ready.is-image-hovered .product-card__dim-label,
  .product-card--main.is-image-ready.is-details-hovered .product-card__dim-label,
  .product-card--main.is-image-ready.is-card-hovered .product-card__dim-label {
    opacity: 1;
  }

  .product-card--main.is-image-ready.is-image-hovered .product-card__dim-label--x,
  .product-card--main.is-image-ready.is-details-hovered .product-card__dim-label--x,
  .product-card--main.is-image-ready.is-card-hovered .product-card__dim-label--x {
    transform: translateX(-50%) translateX(0) translateY(0);
  }

  .product-card--main.is-image-ready.is-image-hovered .product-card__dim-label--y,
  .product-card--main.is-image-ready.is-details-hovered .product-card__dim-label--y,
  .product-card--main.is-image-ready.is-card-hovered .product-card__dim-label--y {
    transform: translateY(-50%) translateY(0) rotate(-90deg);
  }
}

.product-card--main .product-card__inner {
  margin: 0;
  padding: 0 6px 0;
  gap: 2px;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
  position: relative;
  z-index: 1;
}

.product-card--main .product_title {
  font-size: 20px;
  line-height: 1.12;
  font-weight: 600;
  min-height: 58px;
  height: auto;
  text-align: center;
  -webkit-line-clamp: 2;
  margin-bottom: 6px;
}

.product-card--main .product_link:hover {
  color: #1f232b;
}

.product-card--main .product_price {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  grid-template-areas:
    "discount old old swatches"
    "price unit . rating";
  align-items: end;
  column-gap: 8px;
  row-gap: 2px;
  width: min(calc(100% - 20px), var(--product-main-visible-width, 100%));
  margin-left: 10px;
  margin-right: 10px;
  margin-top: -2px;
  min-height: 64px;
}

.product-card--main .product_price h4 {
  grid-area: price;
  color: #1f232b;
  font-size: 1.8vw;
  line-height: 0.88;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0;
}

.product-card--main .product_price__unit {
  grid-area: unit;
  font-size: clamp(15px, 1vw, 20px);
  font-weight: 700;
  line-height: 1;
  color: #2e3034;
  text-decoration: none;
  text-transform: none;
  align-self: end;
  margin-bottom: 0;
}

.product-card--main .product_price__old {
  grid-area: old;
  font-size: clamp(12px, 0.8vw, 18px);
  font-weight: 500;
  line-height: 1;
  color: #1c1e22;
  text-decoration: line-through;
  text-decoration-color: #cf0000;
  text-decoration-thickness: 1.5px;
  align-self: center;
  margin-top: 0;
  margin-left: 5px;
  transform: translateY(1px);
}

.product-card--main .product_price:not(.product_price--discounted) h4 {
  color: #1f232b;
}

.product-card--main .product_price:not(.product_price--discounted) .product_price__unit {
  color: #2e3034;
}

.product-card--main .product_price.product_price--discounted h4,
.product-card--main .product_price.product_price--discounted .product_price__unit {
  color: #c20808;
}

.product-card--main .product_price__old--hidden {
  display: none !important;
}

.product-card--main .product_price > span:not(.product_price__unit):not(.product_price__old):not(.product-card__discount) {
  display: none;
}

.product-card--main .product-card__swatches {
  grid-area: swatches;
  position: static;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 5px;
  width: auto;
  min-width: max-content;
  align-self: center;
  justify-self: end;
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.product-card--main .product-card__swatches[data-layout="horizontal"] {
  flex-direction: row;
  gap: 6px;
}

.product-card--main .product-card__swatches[aria-hidden="true"] {
  display: none;
}

.product-card--main .product-card__swatches-label {
  display: inline-block;
  width: auto;
  height: auto;
  font-size: clamp(12px, 0.8vw, 16px);
  line-height: 1.1;
  font-weight: 500;
  color: #2e3034;
  text-transform: none;
  margin-right: 1px;
}

.product-card--main .product-card__swatch {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: none;
  background: var(--swatch-color, #8FA34E);
  padding: 0;
  display: block;
  cursor: pointer;
  position: relative;
  box-sizing: border-box;
}

.product-card--main .product-card__swatch::after {
  content: none;
}

.product-card--main .product-card__swatch.is-active {
  background: var(--swatch-color, #8FA34E) !important;
}

.product-card--main .product_stats {
  display: none;
}

.product-card--main .product-card__actions {
  margin-top: 18px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  width: min(100%, var(--product-main-visible-width, 100%));
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.product-card--main .product-card__actions .basket-actions {
  display: none !important;
}

.product-card--main .product-card__details-btn {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
  height: 56px;
  width: calc(100% - 20px);
  margin: 0 10px;
  border-radius: var(--ui-radius-buttons);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .2px;
  color: #3f4247;
  background: #dfd8cc;
  border: 0;
  transition: background .2s ease, box-shadow .2s ease;
  position: relative;
  z-index: 3;
  box-shadow: none;
}

.product-card--main .product-card__details-btn::after {
  content: "";
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  width: 25px;
  height: 25px;
  border: none;
  border-radius: 0;
  background: no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1024 1024'%3E%3Cpath fill='%233f4247' d='M831.872 340.864 512 652.672 192.128 340.864a30.592 30.592 0 0 0-42.752 0 29.12 29.12 0 0 0 0 41.6L489.664 714.24a32 32 0 0 0 44.672 0l340.288-331.712a29.12 29.12 0 0 0 0-41.728 30.592 30.592 0 0 0-42.752 0z'/%3E%3C/svg%3E");
  line-height: 1;
  transform: rotate(270deg);
  position: relative;
  left: 0;
  transition: none;
}

@keyframes productCardDetailsArrowShift {
  0% {
    left: 0;
  }
  50% {
    left: 4px;
  }
  100% {
    left: 0;
  }
}

.product-card--main .product-card__details-btn:hover::after,
.product-card--main .product-card__details-btn:focus-visible::after {
  animation: productCardDetailsArrowShift .75s ease-in-out infinite;
}

.product-card--main .product-card__details-btn:hover,
.product-card--main .product-card__details-btn:focus-visible {
  background: #d4ccbf;
  box-shadow: none;
}

.product-card--main .product-card__quick-btn {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 56px;
  width: calc(100% - 20px);
  margin: 0 10px;
  border-radius: var(--ui-radius-buttons);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .2px;
  color: #f7f4f0;
  background: #8FA34E;
  border: 0;
  cursor: pointer;
  transition: background .2s ease, box-shadow .2s ease;
  position: relative;
  z-index: 3;
  box-shadow: none;
}

.product-card--main .product-card__quick-btn:hover {
  background: #7f9445;
  box-shadow: none;
}

.product-card--main.js-catalog-product:not(.product-card--detail) .basket-actions__add {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .2px;
  color: #f7f4f0;
  background: #8FA34E;
  border-color: #8FA34E;
  box-shadow: none;
}

.product-card--main.js-catalog-product:not(.product-card--detail) .basket-actions__add:hover {
  background: #7f9445;
  border-color: #7f9445;
  box-shadow: none;
  transform: none;
}

.product-card--main.js-catalog-product:not(.product-card--detail) .basket-actions__add.is-in-cart {
  color: #f7f4f0;
  background: #8FA34E;
  border-color: #8FA34E;
}

.product-card--main.js-catalog-product:not(.product-card--detail) .basket-actions__add.is-in-cart:hover {
  background: #7f9445;
  border-color: #7f9445;
}

.product-card--main.js-catalog-product:not(.product-card--detail) .basket-actions {
  position: relative;
  left: 0;
  right: 0;
  top: auto;
  transform: none;
  opacity: 1;
  pointer-events: auto;
  border: 1px solid #bdbdbd;
  background: #f3f3f3;
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  height: auto;
  width: 100%;
  margin: 10px 0 0;
  border-radius: var(--ui-radius-buttons);
  align-items: stretch;
  overflow: visible;
}

.product-card--main.js-catalog-product:not(.product-card--detail) .basket-actions.is-summary-visible {
  border-radius: var(--ui-radius-buttons);
}

.product-card--main.js-catalog-product:not(.product-card--detail) .basket-actions__add {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  margin: 0;
  min-height: 56px;
  height: 56px;
  border-radius: 0 var(--ui-radius-buttons) var(--ui-radius-buttons) 0;
  border-width: 0;
  padding: 0 12px;
}

.product-card--main.js-catalog-product:not(.product-card--detail) .basket-actions.is-summary-visible .basket-actions__add {
  border-radius: 0 var(--ui-radius-buttons) var(--ui-radius-buttons) 0;
}

@media (min-width: 769px) {
  .product-card--main .product-card__details-btn,
  .product-card--main .product-card__quick-btn {
    align-items: center !important;
    font-family: inherit !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    letter-spacing: .2px !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
  }

  .product-card--main .product-card__details-btn::after {
    align-items: center !important;
  }

  .product-card--main .product-card__quick-btn {
    margin-bottom: 16px !important;
  }
}

.product-card--main.js-catalog-product:not(.product-card--detail) .basket-actions__counter {
  grid-column: 1;
  grid-row: 1;
  border: 0;
  border-right: 1px solid #bdbdbd;
  border-radius: var(--ui-radius-buttons) 0 0 var(--ui-radius-buttons);
  background: #fbfaf8;
  padding: 0 16px;
  min-height: 56px;
  height: 56px;
  display: flex;
  align-items: flex-end;
}

.product-card--main.js-catalog-product:not(.product-card--detail) .basket-actions.is-summary-visible .basket-actions__counter {
  border-radius: var(--ui-radius-buttons) 0 0 var(--ui-radius-buttons);
}

.product-card--main.js-catalog-product:not(.product-card--detail) .basket-actions__counter .product-counter__value {
  background: #fbfaf8;
}

.product-card--main.js-catalog-product:not(.product-card--detail) .basket-actions__summary {
  display: none !important;
}

.product-card--main.js-catalog-product:not(.product-card--detail) .basket-actions__summary.isVisible {
  display: none !important;
}

.feedback.container {
  position: relative;
  margin: 0 auto;
  max-width: none;
  margin-bottom: 120px;
  margin-top: 120px;
}

.swiper2 {
  margin: 0 auto;
  width: 90%;
  overflow: hidden;
  margin-top: 90px;
}


.swiper2 h3 {
  text-transform: none;
}


.swiper2 h3 {
  font-size: 18px;
  padding-bottom: 3px;
}

.rating-stars {
  display: flex;
  float: left;
  padding-right: 5px;
}

.rstar {
  width: 14.4px;
  min-width: 14.4px;
  padding-right: 5px;
}

.swiper2 .slider-item-header {
  padding-left: 60px;
  position: relative;
}

.item-rating {
  display: flex;
  margin-top: 15px;
  align-items: center;
}

.fb-photo {
  cursor: zoom-in;
  margin-top: 15px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: var(--photo);
  width: 110px;
  height: 70px;
  border-radius: var(--ui-radius);
}

.fb-photo-few {
  display: flex;
}

.fb-photo.vasily {
  margin-right: 3px;
}

.fb-photo.mihail {
  margin-right: 3px;
}

.fb-photo.andrey {
  margin-right: 3px;
}

.fb-photo.user {
  margin-right: 3px;
}

.fb-photo.olga {
  margin-right: 3px;
}


.fb-comment {
  margin-top: 15px;
}


.slider-item-header:before {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  left: 0;
  top: 0;
  border-radius: var(--ui-radius);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 110%;
  background-image: var(--avatar);
}

.swiper-slide img {
  object-fit: contain;
}

.swiper2 .swiper-slide {
  display: flex;
  justify-content: space-between;
  height: auto;
}

.swiper2 .slide-item {
  flex-basis: 100%;
  align-self: stretch;
  border-radius: var(--ui-radius);
  background-color: #ffffff;
  padding: 25px;
  margin: 15px;
  -webkit-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
  -moz-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
  box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
}

.swiper2 .swiper-wrapper {
  width: 100%;
  display: flex;
  align-items: stretch;
}


.swiper2 .swiper-pagination {
  margin-top: 20px;
  position: static;
}

.swiper-pagination-bullet {
  width: 25px;
  height: 25px;
}

.swiper-pagination-bullet-active {
  background-color: #8FA34E;
}


.swiper3 {
  margin: 0 auto;
  position: relative;
  width: 75%;
  overflow: hidden;
  padding-bottom: 80px;
  margin-bottom: 120px;
}

.swiper3 .swiper-wrapper {
  margin-top: 90px;
}

.swiper2 .swiper-pagination {
  position: static;

}

.swiper3 .swiper-button-prev, .swiper3 .swiper-button-next {
  background-color: transparent;
  color:#252525;
  border:none;
  position: absolute;
  bottom: 10px;
  width: auto;
  height: auto;
  top: auto;
}

.swiper3 .swiper-button-prev, .swiper3 .swiper-button-next:hover {
  background-color: transparent;
  border:none;
}

.swiper3 .swiper-button-prev {
  left: 45%;
}

.swiper3 .swiper-button-next {
  right: 45%;
}


.montage_item {
  width: 100%;
}

.decks_wrapper {
  position: relative;
  width: 100%;
}

.montage_decks_image.slide_6 {
  right: 5px;
  left: auto;
}


.montage_decks_image.slide_7 {
  right: 0px;
  left: auto;
}


.montage_item_decks {
  position: relative;
  background-image: url('../img/concrete_texture.webp');
  background-repeat: repeat;
  height: 210px;
  margin-top: 35px;
  margin-bottom: 35px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.montage_item_deck {
  background-color: #cbc2a2;
  background-image: url('../img/wood_texture.webp');
  background-repeat: repeat;
  width: 100%;
  height: 25px;
  -webkit-box-shadow: 0px 3px 3px 0px rgba(37, 37, 37, 0.4);
  -moz-box-shadow: 0px 3px 3px 0px rgba(37, 37, 37, 0.4);
  box-shadow: 0px 3px 3px 0px rgba(37, 37, 37, 0.4);
}

.montage_decks_text-wrapper {
  z-index: 10;
  position: absolute;
  background: linear-gradient(90deg, rgba(188,209,120,1) 0%, rgba(143,163,78,1) 100%);
  border-radius: var(--ui-radius);
  display: flex;
  justify-content: space-between;
  width: 40%;
  height: auto;
  top: 50%;
  transform: translateY(-50%);
  padding: 25px 25px;
}

.montage_decks_text-wrapper.slide_2 {
  right: 0;
}

.montage_decks_text-wrapper.slide_3 {
  right: 0;
}

.montage_decks_text-wrapper.slide_4 {
  right: 0;
}

.montage_decks_text-wrapper.slide_5 {
  right: 0;
}

.montage_decks_text-wrapper h1 {
  text-align: center;
  color: #3f3f3f;
  font-size: 250px;
  line-height: 0.82;
  flex-basis: 30%;
}

.montage_decks_text-wrapper p {

  color: #f7f4f0;
  flex-basis: 65%;
}

.montage_decks_image {
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(calc(-50% + 2px));
}


.product_price {
  font-style: normal;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.basket_button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #8fa34e;
  border-radius: var(--ui-radius-buttons);
  font-size: 18px;
  overflow: hidden;
}

.modal_content .button--center.basket_button {
  overflow: visible;
}

.basket_button button.tel {
  border-color: #8fa34e;
  padding: 15px 107px;
}

.basket_button  button.tel:before{
  background-color: #fff;
}

.basket_button.button .tel:hover{
  color: #8fa34e;
}

.basket_button.button .tel:hover span{
  color: black !important;
}


.to_cart {
  width: 100%;
  border: none;
  outline: none;
  background: inherit;
  color: #fff;
  cursor: pointer;
}

.to_cart a{
  text-decoration: none;
}

.to_cart.tel a{
  color: #fff;
}

.to_cart.tel a:hover{
  color:#374151;
}

.modal_content .button .tel{
  color: #f7f4f0;
  padding: 0 26px;
  min-height: 56px;
}

.modal_content .button.basket_button {
  border-radius: var(--ui-radius-buttons);
}


.button .tel {
  color: #f7f4f0;
  padding: 5px 30px;
  text-align: center;
  border: 2px solid #bdbdbd;
  background-color: transparent;
  border-radius: var(--ui-radius-buttons);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  position: relative;
  overflow: hidden
}

.button .tel span {
  font-size: 16px;
  font-weight: 400;
  text-transform: none;
  position: relative;
  z-index: 12
}

.button .tel:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  opacity: 0;
  border-radius: var(--ui-radius-buttons);
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
  background-color: #8FA34E;
  z-index: 10
}

.button .tel:hover {
  cursor: pointer;
  border-color: transparent;
  color: #f7f4f0;
}

.button .tel:hover:before {
  width: 100%;
  opacity: 1
}
.callback_button #open-modal-btn {
  height: 50px;
  min-height: 50px;
  border-radius: var(--ui-radius-buttons);
  border: 2px solid #8FA34E;
  background: #8FA34E;
  color: #fff;
  padding: 0 15px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  line-height: 1;
  box-shadow: none;
  position: relative;
  overflow: hidden;
  transition: background .25s ease, border-color .25s ease;
}

.callback_button #open-modal-btn:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  background: no-repeat center/contain url('../img/phone-call-icon.svg');
  transform: translate(-50%, -50%) scale(0.75);
  opacity: 0;
  z-index: 2;
  transition: opacity .18s ease, transform .22s ease;
}

.callback_button #open-modal-btn span {
  color: #fff !important;
  line-height: .95;
  position: relative;
  z-index: 2;
  transition: opacity .16s ease, transform .2s ease;
}

.callback_button #open-modal-btn #time {
  font-size: 10px;
  opacity: 1;
  margin-top: -4px;
  display: block;
}

.callback_button #open-modal-btn > span:first-child {
  margin-bottom: -3px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
}

.callback_button #open-modal-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -45%;
  width: 34%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, .28), rgba(255, 255, 255, 0));
  transform: skewX(-18deg);
  opacity: 0;
  transition: left .5s ease, opacity .2s ease;
  z-index: 1;
}

.callback_button #open-modal-btn:hover {
  background: #8FA34E;
  border-color: #8FA34E;
  color: #fff;
  box-shadow: none;
}

.callback_button #open-modal-btn:hover span,
.callback_button #open-modal-btn:focus-visible span {
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
}

.callback_button #open-modal-btn:hover:before,
.callback_button #open-modal-btn:focus-visible:before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.5);
}

.callback_button #open-modal-btn:hover::after {
  left: 115%;
  opacity: 1;
}

.modal_button {
  color:black;
}

.video_feedback {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 498px));
  justify-content: center;
  align-items: stretch;
  gap:15px;
  margin-top: 90px;
  margin-bottom: 120px;
}

.video_feedback__controls {
  grid-column: 1 / -1;
  display: none;
  justify-content: center;
  margin-top: 4px;
}

.video_feedback__show-more {
  width: 100%;
  max-width: 498px;
  height: 56px;
  margin: 0;
  padding: 0 30px;
  border: 0;
  border-radius: var(--ui-radius-buttons);
  background: #8FA34E;
  color: #f7f4f0;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .2px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, box-shadow .2s ease;
  position: relative;
  z-index: 3;
  box-shadow: none;
}

.video_feedback__show-more:hover {
  background: #7f9445;
  box-shadow: none;
}

.video-block {
  min-width: 0;
  width: 100%;
  max-width: 498px;
}

.video-block__inner {
  position: relative;
  overflow: hidden;
  border-radius: var(--ui-radius);
  background: #000;
}

.video-block__inner iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 330px;
  pointer-events: auto;
}

.video_feedback.video_feedback--single {
  grid-template-columns: minmax(0, 1fr);
}

.video_feedback.video_feedback--single .video-block {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.video_feedback.video_feedback--single .video-block__inner iframe {
  height: auto;
  aspect-ratio: 16 / 9;
}

.video-block__content {
  width: 100%;
  aspect-ratio: 16/9;
}

@media (max-width: 900px) {
  .video_feedback {
    grid-template-columns: minmax(0, 1fr);
    justify-content: center;
  }

  .video-block {
    margin-left: auto;
    margin-right: auto;
  }
}


.gallery {
  display: flex;
  flex-wrap: wrap;
  margin-top: 100px;
  gap:5px;
  margin-bottom: 120px;
}

.gallery_img {
  flex-basis: calc(25% - 4px);
  aspect-ratio: 16/12;
  overflow: hidden;
}

.gallery_img:hover img {
  transform: scale(1.25);
  filter: none;
  opacity: 1;
}

.gallery_img img {
  transition: 0.8s;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.gallery-showcase-section {
  position: relative;
  isolation: isolate;
  overflow: visible;
  margin-bottom: 120px;
  padding-top: 25px;
  padding-bottom: 25px;
  background: transparent;
}

.gallery-showcase-section::before {
  content: none;
}

.gallery-showcase-section > * {
  position: relative;
  z-index: 1;
}

.gallery-showcase-section #advant_header {
  color: #252525;
}

.gallery-showcase-section #advant_header .header_span {
  color: #252525;
}

.gallery-showcase__all-link {
  position: absolute !important;
  top: 25px;
  left: 50%;
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  box-sizing: border-box;
  transform: translateX(-50%);
  z-index: 4;
  pointer-events: none;
}

.gallery-showcase__all-link .gallery-slider__all-btn {
  pointer-events: auto;
}

.gallery.gallery-slider {
  position: relative;
  display: block;
  margin-top: 36px;
  margin-bottom: 0;
  padding: 0 36px;
}

.gallery-showcase-section > .container:not(.gallery-slider) {
  width: min(calc(100% - (var(--site-container-gutter) * 2)), var(--site-container-width));
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

@media (min-width: 992px) {
  .gallery-showcase-section {
    padding-bottom: 48px;
  }

  .gallery-showcase-section .gallery.gallery-slider.container {
    --gallery-slider-side-padding: 64px;
    --gallery-slider-nav-half: 40px;
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: var(--gallery-slider-side-padding);
    padding-right: var(--gallery-slider-side-padding);
    box-sizing: border-box;
  }

  .gallery-showcase-section .gallery-slider__nav--prev {
    left: calc(var(--gallery-slider-side-padding) - var(--gallery-slider-nav-half));
  }

  .gallery-showcase-section .gallery-slider__nav--next {
    right: calc(var(--gallery-slider-side-padding) - var(--gallery-slider-nav-half));
  }
}

@media (prefers-reduced-motion: no-preference) {
  .gallery-showcase-section.gallery-showcase-reveal::before,
  .gallery-showcase-section.gallery-showcase-reveal > #advant_header,
  .gallery-showcase-section.gallery-showcase-reveal .gallery.gallery-slider,
  .gallery-showcase-section.gallery-showcase-reveal .gallery-slider__actions {
    will-change: transform, opacity;
  }

  .gallery-showcase-section.gallery-showcase-reveal::before {
    opacity: 0;
    transform: translate3d(0, 68px, 0);
    transition:
      transform 1.04s cubic-bezier(0.22, 0.61, 0.36, 1),
      opacity 0.78s ease;
  }

  .gallery-showcase-section.gallery-showcase-reveal > #advant_header {
    opacity: 0;
    transform: translate3d(0, 54px, 0);
    transition:
      transform 1.02s cubic-bezier(0.22, 0.61, 0.36, 1),
      opacity 0.8s ease;
    transition-delay: 0.16s;
  }

  .gallery-showcase-section.gallery-showcase-reveal .gallery.gallery-slider {
    opacity: 0;
    transform: translate3d(0, 62px, 0);
    transition:
      transform 1.08s cubic-bezier(0.22, 0.61, 0.36, 1),
      opacity 0.84s ease;
    transition-delay: 0.3s;
  }

  .gallery-showcase-section.gallery-showcase-reveal .gallery-slider__actions {
    opacity: 0;
    transform: translate3d(0, 48px, 0);
    transition:
      transform 0.96s cubic-bezier(0.22, 0.61, 0.36, 1),
      opacity 0.76s ease;
    transition-delay: 0.46s;
  }

  .gallery-showcase-section.gallery-showcase-reveal.is-gallery-showcase-visible::before,
  .gallery-showcase-section.gallery-showcase-reveal.is-gallery-showcase-visible > #advant_header,
  .gallery-showcase-section.gallery-showcase-reveal.is-gallery-showcase-visible .gallery.gallery-slider,
  .gallery-showcase-section.gallery-showcase-reveal.is-gallery-showcase-visible .gallery-slider__actions {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.gallery-swiper {
  overflow: hidden;
  border-radius: var(--ui-radius);
}

.gallery-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

.gallery-swiper .swiper-slide {
  height: auto;
  border-radius: var(--ui-radius);
  overflow: hidden;
  clip-path: inset(0 round var(--ui-radius));
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  contain: paint;
}

.gallery-swiper .swiper-slide[data-gallery-marquee-clone="true"] {
  pointer-events: none;
}

.gallery-swiper.is-gallery-marquee .swiper-wrapper {
  animation: gallery-marquee var(--gallery-marquee-duration) linear infinite;
  transition: none !important;
  will-change: transform;
}

@keyframes gallery-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(var(--gallery-marquee-distance) * -1), 0, 0);
  }
}

@media (min-width: 1100px) {
  .gallery-swiper .swiper-slide {
    overflow: visible;
    clip-path: none;
    -webkit-mask-image: none;
    contain: layout paint style;
    transform: none;
    transition: none;
  }
}

.gallery-slider .gallery_img {
  flex-basis: auto;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  border-radius: var(--ui-radius);
  overflow: hidden;
  clip-path: inset(0 round var(--ui-radius));
}

.gallery-slider .gallery_img a {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  overflow: hidden;
}

.gallery-slider .gallery_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.55s ease;
  border-radius: inherit;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.gallery-slider .gallery_img:hover img {
  transform: scale(1.05);
  filter: none;
  opacity: 1;
}

.gallery-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
  height: 80px;
  box-sizing: border-box;
  border: 8px solid #252525;
  border-radius: 50%;
  background: #8FA34E;
  color: #f7f4f0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
  box-shadow: none;
  transition: background-color .2s ease, border-color .2s ease, opacity .2s ease;
}

.gallery-slider__arrow {
  display: block;
  width: 13px;
  height: 13px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
}

.gallery-slider__arrow--next {
  position: relative;
  left: -2px;
  transform: rotate(45deg);
}

.gallery-slider__arrow--prev {
  position: relative;
  left: 2px;
  transform: rotate(-135deg);
}

.gallery-slider__nav:hover {
  background: #809346;
  border-color: #252525;
}

.gallery-slider__nav:disabled {
  opacity: 1;
  cursor: default;
}

.gallery-slider__nav.swiper-button-disabled {
  opacity: 1 !important;
}

.gallery-slider__nav--prev {
  left: calc(36px - 40px);
}

.gallery-slider__nav--next {
  right: calc(36px - 40px);
}

.gallery-slider__actions {
  display: flex;
  justify-content: flex-end;
  position: relative;
  z-index: 4;
  margin-top: 32px;
  margin-bottom: 12px;
}

.gallery-slider__all-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 0;
  color: #252525;
  background: transparent;
}

.gallery-slider__all-btn .arrow-link__text,
.gallery-slider__all-btn .arrow-link__icon {
  color: #252525;
}

.gallery-slider__all-btn:hover .arrow-link__text,
.gallery-slider__all-btn:hover .arrow-link__icon,
.gallery-slider__all-btn:focus-visible .arrow-link__text,
.gallery-slider__all-btn:focus-visible .arrow-link__icon {
  color: #252525;
}

.home-delivery-showcase {
  position: relative;
  margin: 0 auto 120px;
  padding: 34px 0;
  background: linear-gradient(140deg, #1f2328 0%, #252525 45%, #2b3036 100%);
  overflow: hidden;
}

.home-delivery-showcase::before,
.home-delivery-showcase::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.home-delivery-showcase::before {
  width: 520px;
  height: 520px;
  right: -200px;
  top: -240px;
  background: radial-gradient(circle, rgba(143, 163, 78, 0.22) 0%, rgba(143, 163, 78, 0) 72%);
}

.home-delivery-showcase::after {
  width: 460px;
  height: 460px;
  left: -180px;
  bottom: -260px;
  background: radial-gradient(circle, rgba(247, 244, 240, 0.12) 0%, rgba(247, 244, 240, 0) 72%);
}

.home-delivery-showcase__inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - (var(--site-container-gutter) * 2)), var(--site-container-width));
  max-width: none;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 42fr) minmax(0, 58fr);
  gap: 26px;
  align-items: stretch;
}

.home-delivery-showcase__content {
  border-radius: var(--ui-radius);
  padding: 34px 32px;
  background: rgba(247, 244, 240, 0.06);
  border: 1px solid rgba(247, 244, 240, 0.14);
  color: #f7f4f0;
}

.home-delivery-showcase__eyebrow {
  display: inline-block;
  padding: 7px 12px;
  border-radius: var(--ui-radius);
  background: rgba(143, 163, 78, 0.24);
  color: #d0dd9f;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.home-delivery-showcase__title {
  margin: 16px 0 18px;
  color: #8FA34E;
  font-size: 44px;
  line-height: 1.06;
  font-weight: 700;
}

.home-delivery-showcase__text {
  margin: 0;
  color: #f7f4f0;
  font-size: 18px;
  line-height: 1.65;
}

.home-delivery-showcase__features {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.home-delivery-showcase__features li {
  position: relative;
  padding-left: 24px;
  color: rgba(247, 244, 240, 0.92);
  font-size: 18px;
  line-height: 1.5;
}

.home-delivery-showcase__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .48em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #8FA34E;
}

.home-delivery-showcase__hint {
  margin-top: 22px;
  padding: 12px 14px;
  border-radius: var(--ui-radius);
  background: rgba(247, 244, 240, 0.1);
  color: rgba(247, 244, 240, 0.88);
  font-size: 14px;
  line-height: 1.45;
}

.home-delivery-calc {
  background: #fdfbf8;
  border: 1px solid #ece6dc;
  border-radius: var(--ui-radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.home-delivery-calc,
.home-delivery-calc * {
  box-sizing: border-box;
}

.home-delivery-modal .home-delivery-calc {
  border: none;
  width: 100%;
  max-width: 100%;
  gap: 8px;
}

.home-delivery-calc__label {
  display: block;
  margin: 0;
  color: #252525;
  font-size: 15px;
  font-weight: 600;
}

.home-delivery-calc__controls {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: start;
}

.home-delivery-calc__input-wrap {
  position: relative;
  z-index: 4;
  min-width: 0;
  max-width: 100%;
}

.home-delivery-calc__input {
  width: 100%;
  max-width: 100%;
  height: 52px;
  border-radius: var(--ui-radius-inputs);
  border: 1px solid #d8d1c4;
  background: #fff;
  color: #252525;
  font-size: 15px;
  line-height: 1.2;
  padding: 0 14px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.home-delivery-calc__input:focus {
  border-color: #d8d1c4;
  box-shadow: none;
}

.home-delivery-calc__btn {
  height: 52px;
  min-width: 156px;
  border: none;
  border-radius: var(--ui-radius-buttons);
  background: #8FA34E;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.home-delivery-calc__btn:hover {
  background: #7f9445;
}

.home-delivery-calc__btn:disabled {
  opacity: .68;
  cursor: default;
}

.home-delivery-calc__status {
  min-height: 0;
  font-size: 13px;
  color: #5f5f5f;
  line-height: 1.4;
}

.home-delivery-calc__status.is-error {
  color: #b13a3a;
}

.home-delivery-calc__map-wrap {
  position: relative;
  border-radius: var(--ui-radius);
  overflow: hidden;
}

.home-delivery-calc__map {
  position: relative;
  z-index: 1;
  height: 330px;
  border-radius: var(--ui-radius);
  overflow: hidden;
  background: #e8e4dc;
}

.home-delivery-calc__map-wrap .home-delivery-calc__status {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(17, 17, 17, 0.48);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
}

.home-delivery-calc__map-wrap .home-delivery-calc__status:not(:empty) {
  display: flex;
}

.home-delivery-calc__map-wrap .home-delivery-calc__status.is-error {
  color: #fff;
}

.home-delivery-calc__summary {
  margin-top: 2px;
  border-radius: var(--ui-radius-inputs);
  border: 1px solid #e4ddd1;
  background: #fff;
  overflow: hidden;
}

.home-delivery-calc__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 11px 14px;
  border-bottom: 1px solid #efe9df;
  color: #4d4d4d;
  font-size: 14px;
}

.home-delivery-calc__row strong {
  color: #252525;
  font-size: 15px;
  font-weight: 700;
}

.home-delivery-calc__row--total {
  background: #f6f3ee;
  border-bottom: none;
}

.home-delivery-calc__row--total strong {
  color: #8FA34E;
  font-size: 18px;
}

.home-delivery-calc__suggestions {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  z-index: 8;
  max-width: 100%;
  border: 1px solid #ddd4c6;
  border-radius: var(--ui-radius);
  background: #fff;
  box-shadow: 0 10px 24px rgba(37, 37, 37, 0.12);
  max-height: 260px;
  overflow-y: auto;
  display: none;
}

.home-delivery-calc__suggestions.is-open {
  display: block;
}

.home-delivery-calc__suggestion-item {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 11px 12px;
  color: #2f2f2f;
  font-size: 14px;
  line-height: 1.4;
  cursor: pointer;
}

.home-delivery-calc__suggestion-item + .home-delivery-calc__suggestion-item {
  border-top: 1px solid #efe9df;
}

.home-delivery-calc__suggestion-item strong {
  color: #8FA34E;
  font-weight: 700;
}

.home-delivery-calc__suggestion-item:hover {
  background: #f7f4ef;
}

@media (max-width: 1200px) {
  .home-delivery-showcase__inner {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 991px) {
  .home-delivery-showcase {
    padding: 28px 0;
  }

  .home-delivery-showcase__title {
    font-size: 36px;
  }

  .home-delivery-calc__map {
    height: 280px;
  }
}

@media (max-width: 680px) {
  .home-delivery-showcase {
    margin-bottom: 90px;
  }

  .home-delivery-showcase__content,
  .home-delivery-calc {
    padding: 18px;
  }

  .home-delivery-showcase__title {
    font-size: 30px;
  }

  .home-delivery-calc__controls {
    grid-template-columns: 1fr;
  }

  .home-delivery-calc__btn {
    width: 100%;
    min-width: 0;
  }
}

.contacts {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: transparent;
  display: flex;
  flex-basis: 100%;
  justify-content: space-between;
}

.contacts::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: transparent;
}

.contacts > * {
  position: relative;
  z-index: 1;
}

.contacts_socials .socials_icons {
  margin-top: 50px;
  padding-left: 2.34rem;
  display: flex;
}
.contacts_socials .socials_icons a,
.contacts_socials .socials_icons button {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.contacts_socials .socials_icons a:not(:last-child),
.contacts_socials .socials_icons button:not(:last-child) {
  margin-right: 10px;
}
.contacts_socials .socials_icons img {
  width: 48px;
  height: 48px;
  display: block;
  object-fit: contain;
  border-radius: 10px;
}
.contacts_socials .socials_icons .socials_icons__img--vk {
  transform: none;
}

.contacts h2 {
  text-align: center;
  font-weight: 700;
  color: #252525;
}

.contacts_text {
  flex-basis: 50%;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: transparent;
}

.list_items {
  margin-top: 50px;
}

.list_item {
  margin-bottom: 30px;
  position: relative;
  padding-left: 2.34rem;
}

.list_item span {
  font-size: 13px;
  text-transform: none;
  color: #6b6b6b;
  font-weight: normal;
  line-height: 2;
}

.list_item p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
}

.list_item a {
  text-decoration: none;
  color: #252525;
}


.contacts_list {
  display: flex;
  width: 50%;
  margin: 0 auto;
  flex-direction: column;
  align-items: flex-start;
}

.list_item:before {
  content: "";
  position: absolute;
  width: 1.34rem;
  height: 1.34rem;
  left: 0;
  top: 0.4rem;
  -webkit-border-radius: var(--ui-radius);
  border-radius: var(--ui-radius);
  background-size: 65%;
  background-repeat: no-repeat;
  background-position: center center;
}

.list_item.contacts_address:before {
  background-image: url(../img/location.svg);
  background-size: 55%;
  width: 3.2rem;
  height: 3.2rem;
  top: 0.28rem;
}

.list_item.contacts_phone:before {
  background-image: url(../img/phone_2.svg);
  background-size: 55%;
  width: 3.2rem;
  height: 3.2rem;
  top: 0.28rem;
}

.list_item.contacts_e-mail:before {
  background-image: url(../img/email.svg);
  background-size: 55%;
  width: 3.2rem;
  height: 3.2rem;
  top: 0.28rem;
}

.list_item.contacts_address,
.list_item.contacts_phone,
.list_item.contacts_e-mail {
  padding-left: 3.8rem;
}

.yandex_map {
  display: flex;
  flex-basis: 80%;
  overflow: hidden;
}

@media (prefers-reduced-motion: no-preference) {
  .contacts.contacts-reveal::before,
  .contacts.contacts-reveal .contacts_text,
  .contacts.contacts-reveal .yandex_map {
    will-change: transform, opacity;
  }

  .contacts.contacts-reveal::before {
    opacity: 0;
    transform: translate3d(0, 68px, 0);
    transition:
      transform 1.04s cubic-bezier(0.22, 0.61, 0.36, 1),
      opacity 0.78s ease;
  }

  .contacts.contacts-reveal .contacts_text {
    opacity: 0;
    transform: translate3d(0, 56px, 0);
    transition:
      transform 1.08s cubic-bezier(0.22, 0.61, 0.36, 1),
      opacity 0.84s ease;
    transition-delay: 0.16s;
  }

  .contacts.contacts-reveal .yandex_map {
    opacity: 0;
    transform: translate3d(0, 68px, 0);
    transition:
      transform 1.08s cubic-bezier(0.22, 0.61, 0.36, 1),
      opacity 0.84s ease;
    transition-delay: 0.32s;
  }

  .contacts.contacts-reveal.is-contacts-visible::before,
  .contacts.contacts-reveal.is-contacts-visible .contacts_text,
  .contacts.contacts-reveal.is-contacts-visible .yandex_map {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.faq-section {
  background: #ffffff;
  padding: 36px 24px 0;
  margin-bottom: 120px;
}

.faq-section--standalone {
  display: none;
}

.faq-section__inner {
  width: min(800px, 100%);
  margin: 0 auto;
}

.faq-section__title {
  margin: 0 0 18px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: #8FA34E;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.faq-list {
  border-top: none;
}

.faq-item {
  --faq-content-pr: 106px;
  --faq-content-pb: 28px;
  --faq-content-pl: 36px;
  --faq-content-max: 420px;
  border-bottom: 1px solid rgba(143, 163, 78, 0.34);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item[open] {
  background: transparent;
}

.faq-item__summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 24px 24px 36px;
  cursor: pointer;
}

.faq-item__summary::-webkit-details-marker {
  display: none;
}

.faq-item__question {
  display: block;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.45;
  color: #252525;
  text-transform: none;
}

.faq-item__toggle {
  position: relative;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #8FA34E;
  transition: background-color .2s ease, transform .2s ease;
}

.faq-item__toggle::before,
.faq-item__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #ffffff;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  transition: opacity .2s ease, transform .2s ease;
}

.faq-item__toggle::before {
  width: 16px;
  height: 2px;
}

.faq-item__toggle::after {
  width: 2px;
  height: 16px;
}

.faq-item[open] .faq-item__toggle {
  background: #7f9445;
}

.faq-item[open] .faq-item__toggle::after {
  opacity: 0;
}

.faq-item__content {
  padding: 0 var(--faq-content-pr) 0 var(--faq-content-pl);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-8px);
  transition: max-height .42s ease, opacity .28s ease, transform .42s ease, padding .42s ease;
  will-change: max-height, opacity, transform;
}

.faq-item[open] .faq-item__content {
  padding-bottom: var(--faq-content-pb);
  max-height: var(--faq-content-max);
  opacity: 1;
  transform: translateY(0);
}

.faq-item__content p {
  margin: 0;
  max-width: 1040px;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(37, 37, 37, 0.82);
}

@media (min-width: 992px) {
  .contacts {
    width: 100%;
    max-width: none;
  }

  .contacts_text {
    flex: 0 0 50%;
    box-sizing: border-box;
    padding-left: max(15px, calc((100vw - 1400px) / 2));
    padding-right: 24px;
  }

  .contacts_list {
    width: 100%;
    max-width: 620px;
    margin: 0;
  }

  .yandex_map {
    flex: 1 1 50%;
  }
}

#contact-form_2 {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.questions {
  background-color: transparent;
  background-image: none;
  width: 100%;
  margin: 0;
  padding: 70px clamp(16px, 2vw, 32px);
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 1.88fr);
  gap: 44px;
  align-items: start;
  box-sizing: border-box;
}

.questions_scene {
  position: relative;
  min-width: 0;
  overflow: visible;
  isolation: isolate;
  background-image: none;
  display: flex;
  flex-direction: column;
  min-height: clamp(560px, 62vw, 920px);
}

.questions_scene::before {
  content: none;
}

.questions_scene > * {
  position: relative;
  z-index: 1;
}

.questions_scene > .questions_text {
  display: none;
}

.questions_content #contact-form_1 .questions_text {
  position: static;
  z-index: auto;
  width: 100%;
  max-width: none;
  margin: 0 0 18px;
}

.questions_content #contact-form_1 .questions_text h2 {
  margin: 0;
  padding-bottom: 10px;
}

.questions_content #contact-form_1 .questions_text h2:not(.questions_header) {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 500;
}

.questions_content #contact-form_1 .questions_text h2:last-child {
  padding-bottom: 0;
}

.contact-form__description.modal_1 {
  font-size: 40px;
  font-weight: bold;
  color: #8FA34E;
  position: absolute;
  left: 50%;
  top:-42px;
  transform: translateX(-50%);
}

.contact-form__description {
  font-size: 40px;
  font-weight: bold;
  color: #8FA34E;
  position: absolute;
  left: 50%;
  top: -20px;
  transform: translateX(-50%);
}
.questions_form .contact-form__description {
  position: static;
  transform: none;
  font-size: 14px;
  font-weight: 600;
  margin-top: 12px;
  text-align: center;
}

.questions_form .contact-form__description.is-loading {
  color: #8b8b8b;
}

.questions_form .contact-form__description.is-success {
  color: #8FA34E;
}

.questions_form .contact-form__description.is-error {
  color: #d65d41;
}
.questions_form .contact-form__error,
.questions_form .contact-form__error--white {
  display: block;
  min-height: 16px;
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.2;
  color: #d65d41 !important;
}

.questions_form .contact-form__error:empty {
  display: block;
  visibility: hidden;
}

.questions-form__consent {
  width: 100%;
  margin: 0;
}

.questions-form__consent .review-switch {
  width: 100%;
}

.questions-form__consent .review-switch__text {
  font-size: 14px;
  line-height: 1.35;
}

.questions_text {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.questions_content {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(360px, 1fr);
  align-items: end;
  justify-content: space-between;
  gap: 44px;
  width: 100%;
  max-width: none;
  margin: 12px 0 0;
}

.questions_faq {
  min-width: 0;
  width: 100%;
  align-self: start;
}

.questions_faq-title {
  margin: 0 0 28px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  color: #252525;
  font-family: 'Montserrat', sans-serif;
  text-transform: none;
  letter-spacing: 0;
}

.questions_faq .faq-list {
  border-top-color: rgba(143, 163, 78, 0.42);
}

.questions_faq .faq-item__summary {
  padding: 20px 0;
}

.questions_faq .faq-item__question {
  font-size: 18px;
  line-height: 1.45;
}

.questions_faq .faq-item__toggle {
  flex-basis: 42px;
  width: 42px;
  height: 42px;
}

.questions_faq .faq-item {
  --faq-content-pr: 72px;
  --faq-content-pb: 22px;
  --faq-content-pl: 0;
  --faq-content-max: 460px;
}

.questions_faq .faq-item__content p {
  font-size: 15px;
  line-height: 1.65;
}

.questions_content #contact-form_1 {
  width: 100%;
  max-width: 620px;
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  align-self: start;
  box-sizing: border-box;
  padding: 18px;
  border-radius: var(--ui-radius);
  border: 1px solid #efe7db;
  background: #fff;
  box-shadow: 0 6px 16px rgba(37, 37, 37, 0.06);
}

.questions_content .questions_form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: nowrap;
  width: 100%;
  margin: 0;
  max-width: none;
  max-height: none !important;
  overflow: visible;
  gap: 14px;
}

.questions_content .questions_input.person,
.questions_content .questions_input.phone,
.questions_content .questions_input.question {
  flex-basis: 100%;
}

.questions_content .questions_input input,
.questions_content .questions_input textarea {
  width: 100%;
}

.questions_content .questions_form .button {
  width: auto !important;
  display: flex;
  justify-content: center;
  margin: 6px auto 0;
}

.questions_content .questions_form .tel.question_button {
  width: 200px;
  min-width: 200px;
  max-width: 100%;
  margin-top: 0;
}

.questions_content .questions_input.question .input {
  min-height: 190px;
}

.questions_side-image {
  flex: none;
  width: clamp(320px, 30vw, 500px);
  grid-column: 1;
  grid-row: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  align-self: start;
  margin-left: 0;
  justify-self: center;
}

.questions_side-image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 760px;
  object-fit: contain;
  border-radius: var(--ui-radius);
  margin-top: 0;
}

@media (prefers-reduced-motion: no-preference) {
  .questions.questions-composition-reveal .questions_faq,
  .questions.questions-composition-reveal .questions_faq .faq-item,
  .questions.questions-composition-reveal #contact-form_1,
  .questions.questions-composition-reveal .questions_side-image {
    opacity: 0;
    will-change: transform, opacity;
  }

  .questions.questions-composition-reveal .questions_faq {
    transform: translate3d(-86px, 0, 0);
    transition:
      transform 1.14s cubic-bezier(0.22, 0.61, 0.36, 1),
      opacity 0.84s ease;
  }

  .questions.questions-composition-reveal .questions_faq .faq-item {
    transform: translate3d(-26px, 0, 0);
    transition:
      transform 0.78s cubic-bezier(0.22, 0.61, 0.36, 1),
      opacity 0.56s ease;
  }

  .questions.questions-composition-reveal .questions_faq .faq-item:nth-child(1) {
    transition-delay: 0.26s;
  }

  .questions.questions-composition-reveal .questions_faq .faq-item:nth-child(2) {
    transition-delay: 0.38s;
  }

  .questions.questions-composition-reveal .questions_faq .faq-item:nth-child(3) {
    transition-delay: 0.5s;
  }

  .questions.questions-composition-reveal .questions_faq .faq-item:nth-child(4) {
    transition-delay: 0.62s;
  }

  .questions.questions-composition-reveal .questions_faq .faq-item:nth-child(5) {
    transition-delay: 0.74s;
  }

  .questions.questions-composition-reveal .questions_faq .faq-item:nth-child(6) {
    transition-delay: 0.86s;
  }

  .questions.questions-composition-reveal #contact-form_1 {
    transform: translate3d(92px, 0, 0);
    box-shadow: 0 20px 42px rgba(37, 37, 37, 0.06);
    transition:
      transform 1.16s cubic-bezier(0.22, 0.61, 0.36, 1),
      opacity 0.86s ease,
      box-shadow 0.86s ease;
    transition-delay: 0.18s;
  }

  .questions.questions-composition-reveal .questions_side-image {
    transform: translate3d(0, 84px, 0) scale(0.9);
    transform-origin: center bottom;
    transition:
      transform 1.08s cubic-bezier(0.22, 0.61, 0.36, 1),
      opacity 0.78s ease;
    transition-delay: 0.34s;
  }

  .questions.questions-composition-reveal.is-composition-visible .questions_faq,
  .questions.questions-composition-reveal.is-composition-visible .questions_faq .faq-item,
  .questions.questions-composition-reveal.is-composition-visible #contact-form_1,
  .questions.questions-composition-reveal.is-composition-visible .questions_side-image {
    opacity: 1;
  }

  .questions.questions-composition-reveal.is-composition-visible .questions_faq {
    transform: translate3d(0, 0, 0);
  }

  .questions.questions-composition-reveal.is-composition-visible .questions_faq .faq-item,
  .questions.questions-composition-reveal.is-composition-visible #contact-form_1 {
    transform: translate3d(0, 0, 0);
  }

  .questions.questions-composition-reveal.is-composition-visible .questions_side-image {
    transform: translate3d(0, 0, 0) scale(1);
  }

}

@media (min-width: 992px) {
  .questions {
    padding-top: 48px;
    padding-right: clamp(16px, 2vw, 32px);
    padding-bottom: 0;
    padding-left: clamp(16px, 2vw, 32px);
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 1.88fr);
    position: relative;
overflow-x: hidden;
    overflow-x: clip;
    overflow-y: visible;
    isolation: isolate;
    background-image: none;
  }

  .questions::before {
    display: none;
  }

  .questions_scene {
    background-image: none;
    min-height: 0;
  }

  .questions_scene::before {
    content: none;
  }

  .questions_content #contact-form_1 .questions_text {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    align-items: center;
    text-align: center;
  }

  .questions_text h2:not(.questions_header) {
    font-size: 42px;
    line-height: 1.1;
  }

  .questions_faq,
  .questions_scene {
    position: relative;
    z-index: 1;
  }

  .questions_content {
    margin-top: 0;
  }

  .questions_faq {
    align-self: start;
    margin-top: 18px;
    margin-bottom: 0;
    height: clamp(520px, 62vh, 760px);
  }

  .questions_faq .faq-list {
    height: 100%;
    overflow-y: auto;
    padding-right: 8px;
    scrollbar-gutter: stable;
  }

  .questions_content #contact-form_1 {
    position: static;
    top: auto;
    margin-top: 0;
  }

  .questions_content .questions_form .button {
    margin: 0;
  }

  .questions_content .questions_form .tel.question_button {
    margin-top: 0;
  }

  .questions_side-image {
    align-self: stretch;
    height: 100%;
    align-items: flex-end;
    margin-bottom: 0;
  }

  .questions_side-image img {
    transform: none;
  }
}

/* TEMP FAQ: remove questions--faq-hidden from index.php to restore the FAQ column. */
.questions.questions--faq-hidden .questions_faq {
  display: none;
}

@media (min-width: 992px) {
  .questions.questions--faq-hidden {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    padding-left: clamp(24px, 4vw, 80px);
    padding-right: clamp(24px, 4vw, 80px);
  }

  .questions.questions--faq-hidden .questions_scene {
    width: min(100%, 1120px);
    max-width: 1120px;
  }

  .questions.questions--faq-hidden .questions_content {
    grid-template-columns: minmax(320px, 460px) minmax(360px, 520px);
    justify-content: center;
    gap: 44px;
  }

  .questions.questions--faq-hidden .questions_side-image {
    width: clamp(320px, 28vw, 460px);
    justify-self: start;
  }

  .questions.questions--faq-hidden .questions_content #contact-form_1 {
    max-width: 520px;
    justify-self: start;
  }
}

.questions_form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  overflow: hidden;
  transition: .5s ease;
  width: 80%;
  margin: 30px auto 0;
  gap:24px;
  max-width: 1160px;
}

.questions_form .tel {
  margin-top: auto !important;
  display: flex;
  justify-content: center;
}

.questions_input.person, .phone, .mail {
  display: flex;
  flex-direction: column;
  flex-basis: calc(50% - 12px);
}

.questions_input.question {
  flex-basis: 100%;
  display: flex;
  flex-direction: column;
}

.questions-field-label {
  margin: 0 0 8px 0;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 400;
  color: #7a7a7a;
  text-transform: none;
  letter-spacing: 0;
}

.questions_input input,
.questions_input textarea {
  font-size: 16px;
  width: calc(100% - (20px * 2));
}

.questions_content #contact-form_1 .questions_input input.input,
.questions_content #contact-form_1 .questions_input textarea.input {
  border-radius: var(--ui-radius-inputs);
  border: 1px solid #e6e6e6;
  background: #fafafa !important;
  box-sizing: border-box;
  color: #2b2b2b;
  line-height: 1.4;
  outline: none;
  transition: border-color .2s ease, background .2s ease;
}

.questions_content #contact-form_1 .questions_input input.input:focus,
.questions_content #contact-form_1 .questions_input textarea.input:focus {
  border-color: #d9d6cf;
  box-shadow: none;
  background: #fdfdfb !important;
}

.questions_content #contact-form_1 .questions_input input.input:-webkit-autofill,
.questions_content #contact-form_1 .questions_input input.input:-webkit-autofill:hover,
.questions_content #contact-form_1 .questions_input input.input:-webkit-autofill:focus,
.questions_content #contact-form_1 .questions_input textarea.input:-webkit-autofill,
.questions_content #contact-form_1 .questions_input textarea.input:-webkit-autofill:hover,
.questions_content #contact-form_1 .questions_input textarea.input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px #fafafa inset;
  box-shadow: 0 0 0 1000px #fafafa inset;
  -webkit-text-fill-color: #2b2b2b;
}

input:not([type="checkbox"]):not([type="radio"]):not([type="file"]):not([type="button"]):not([type="submit"]):not([type="reset"]):not(.product-counter__value):not(.js-counter-input),
textarea,
select {
  font-family: "Montserrat", Arial, sans-serif;
  background: #fafafa !important;
  border-radius: var(--ui-radius-inputs);
}

input.is-field-error,
textarea.is-field-error,
select.is-field-error,
.review-form__input.is-field-error,
.review-form__textarea.is-field-error {
  border-color: #d65d41 !important;
  color: #2b2b2b;
}

select.is-field-error {
  color: #d65d41;
}

input.is-field-error::placeholder,
textarea.is-field-error::placeholder,
.review-form__input.is-field-error::placeholder,
.review-form__textarea.is-field-error::placeholder {
  color: #d65d41 !important;
  opacity: 1;
}

.contact-form__error_name,
.contact-form__error_tel,
.contact-form__error_text {
  display: none !important;
  min-height: 0 !important;
  margin: 0 !important;
}

.questions_input textarea.input {
  overflow-y: hidden;
  overflow-x: hidden;
}

.questions_input textarea.input:not(:placeholder-shown) {
  overflow-y: auto;
}

.input {
  padding: 20px;
}

.questions_content #contact-form_1 .questions_input input.input,
.questions_content #contact-form_1 .questions_input textarea.input {
  padding-left: 12px;
  padding-right: 16px;
}

.questions_content #contact-form_1 .questions_input.person input.input,
.questions_content #contact-form_1 .questions_input.phone input.input {
  height: auto;
  min-height: 0;
  padding: 12px 14px;
}

textarea {
  overflow: auto;
}

.questions_input input::placeholder,
.questions_input textarea::placeholder {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  color: #8b8b8b;
}

.input {
  resize: none;
}

.questions_form .button{
  justify-content: center;
  display: flex;
  width: auto !important;
  margin: 0 auto;
}

.tel.question_button {
  margin-top: 30px;
  padding: 0 30px;
  height: 56px;
  line-height: 56px;
  text-transform: uppercase;
  border-radius: var(--ui-radius-buttons);
  background: #8FA34E;
  border: none;
  box-sizing: border-box;
  color: #fff;
  width: 200px;
  min-width: 200px;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(143, 163, 78, 0.2);
  transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.tel.question_button span {
  font-size: inherit;
  font-weight: inherit;
  color: #fff;
  text-transform: uppercase !important;
}

.tel.question_button:hover {
  background: #7f9445;
  box-shadow: 0 8px 16px rgba(143, 163, 78, 0.25);
  transform: none;
}
.tel.question_button:before {
  display: none !important;
}
.button .tel.question_button:hover {
  border-color: #8FA34E;
  color: #fff;
}
.button .tel.question_button:hover span {
  color: #fff !important;
}

.questions .shower {
  position: relative;
  margin: 0 auto;
  margin-top: 30px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: 1s;
}

.questions .shower:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-top: 1px solid #f7f4f0;
  border-left: 1px solid #f7f4f0;
  -webkit-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  transform: rotate(225deg);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -webkit-transition: all .25s ease-in;
  -o-transition: all .25s ease-in;
  transition: all .25s ease-in;
}

.questions .shower.active:before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 30%;
}


footer {
  background: #252525;
}
.footer {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
}

.footer_logo img {
  width: 150px;
  height: auto;
  display: block;
}

.to_start {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer_phone {
  text-align: right;
}

.to_start > a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #8FA34E;
  background: #8FA34E;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.to_start > a:hover {
  background: transparent;
  color: #8FA34E;
  transform: translateY(-1px);
}

.to_start > a svg {
  width: 22px;
  height: 22px;
}

.site-footer {
  position: relative;
  background: #252525;
  color: #f7f4f0;
  padding: 48px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr 1.2fr 1fr;
  gap: 24px;
}

.footer-logo img {
  width: 100px;
  height: auto;
  display: block;
}

.footer-desc {
  margin-top: 6px;
  font-size: 14px;
  color: #bdbdbd;
  line-height: 1.6;
  text-align: left;
}

.footer-col.footer-brand {
  display: block;
}

.footer-title {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  color: #f7f4f0;
}

.footer-link {
  display: block;
  color: #f7f4f0;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  opacity: 0.85;
  transition: color .25s ease, opacity .25s ease;
}

.footer-link--plain {
  font-weight: 400;
  text-transform: none !important;
}

.footer-link:hover {
  color: #8FA34E;
  opacity: 1;
}

.footer-text {
  margin-top: 6px;
  font-size: 14px;
  color: #bdbdbd;
  line-height: 1.6;
}

.footer-bottom {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 13px;
  color: #bdbdbd;
}

.footer-top {
  color: #f7f4f0;
  background: #8FA34E;
  text-decoration: none;
  font-size: 0;
  line-height: 0;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border: none;
  border-radius: 50%;
  transition: opacity .25s ease, visibility .25s ease, transform .25s ease, background-color .25s ease;
  position: fixed;
  right: 80px;
  bottom: 50px;
  z-index: 120;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  display: none !important;
}

.footer-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.footer-top:hover {
  color: #f7f4f0;
  background: #7f9445;
  transform: translateY(-2px);
}

.footer-top::before {
  content: "";
  width: 13px;
  height: 13px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform: rotate(-45deg);
  display: block;
  margin-top: 3px;
}

.manager-widget {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 80px;
  height: 80px;
  z-index: 130;
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  will-change: transform, opacity;
}

.manager-widget.is-intro-visible {
  animation: manager-widget-enter 0.82s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.manager-widget.is-intro-visible .manager-widget__trigger {
  animation: manager-widget-trigger-pop 0.86s cubic-bezier(0.2, 0.9, 0.28, 1.18) 0.16s both;
}

.manager-widget.is-intro-visible .manager-widget__trigger::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(188, 209, 120, 0.34) 0%, rgba(143, 163, 78, 0.16) 42%, rgba(143, 163, 78, 0) 72%);
  pointer-events: none;
  opacity: 0;
  transform: scale(0.7);
  animation: manager-widget-glow 0.95s ease-out 0.18s forwards;
}

.manager-widget__panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 8px);
  width: min(330px, calc(100vw - 44px));
  padding: 15px 15px 19px;
  border-radius: var(--ui-radius);
  background: #fbfaf8;
  border: 1px solid rgba(37, 37, 37, 0.12);
  box-shadow: none;
  color: #252525;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(14px);
  transform-origin: right bottom;
  transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
}

.manager-widget.is-open .manager-widget__panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  box-shadow: 0 16px 40px rgba(37, 37, 37, 0.16);
}

.manager-widget__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 0;
  background: transparent;
  padding: 6px;
  color: #8f8f8f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color .25s ease;
}

.manager-widget__close:hover {
  color: #252525;
}

.manager-widget__close svg {
  width: 16px;
  height: 16px;
}

.manager-widget__close path {
  fill: currentColor;
  transition: fill .25s ease;
}

.manager-widget__header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-right: 38px;
}

.manager-widget__avatar-wrap {
  position: relative;
  width: 65px;
  height: 65px;
  flex: 0 0 65px;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(180deg, rgba(188, 209, 120, 0.55), rgba(143, 163, 78, 0.92));
  box-sizing: border-box;
}

.manager-widget__avatar {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  object-fit: cover;
  background: #d9ddd9;
}

.manager-widget__status-dot {
  position: absolute;
  right: 3px;
  bottom: 4px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #8FA34E;
  border: 1px solid #fbfaf8;
  box-shadow: 0 0 0 2px rgba(143, 163, 78, 0.68);
}

.manager-widget__person {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.manager-widget__name {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.15;
}

.manager-widget__role {
  font-size: 13px;
  font-weight: 500;
  color: rgba(37, 37, 37, 0.62);
  line-height: 1.25;
}

.manager-widget__status {
  margin-top: 2px;
  font-size: 9px;
  font-weight: 700;
  color: #8FA34E;
  text-transform: uppercase;
  letter-spacing: .2px;
}

.manager-widget.is-offline .manager-widget__status {
  color: #7f878f;
}

.manager-widget.is-offline .manager-widget__status-dot {
  background: #8e96a0;
  box-shadow: 0 0 0 2px rgba(142, 150, 160, 0.42);
}

.manager-widget__message {
  margin-top: 15px;
  padding: 15px 15px 17px;
  border-radius: var(--ui-radius-inputs);
  border: 1px solid #8FA34E;
  background: #ffffff;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(37, 37, 37, 0.88);
}

.manager-widget__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 20px;
  margin-top: 15px;
}

.manager-widget__action {
  width: 45px;
  height: auto;
  border: none;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: transparent;
  color: #8FA34E;
  transition: opacity .2s ease, transform .2s ease;
}

.manager-widget__action:hover {
  opacity: 0.85;
  transform: scale(1.06);
}

.manager-widget__action svg {
  width: 45px;
  height: 45px;
  fill: currentColor;
}

.manager-widget__action img {
  display: block;
  max-width: 45px;
  max-height: 45px;
  width: auto;
  height: auto;
}

.manager-widget__action--whatsapp {
  background: transparent;
}

.manager-widget__action--telegram {
  background: transparent;
}

.manager-widget__action--max {
  background: transparent;
}

.manager-widget__action--call {
  background: transparent;
}

.manager-widget__trigger {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 76px;
  height: 76px;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  overflow: visible;
  transform: none;
  transform-origin: center center;
  will-change: transform;
  backface-visibility: hidden;
  transition: transform .2s ease;
}

.manager-widget__trigger::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(143, 163, 78, 0.82);
  box-sizing: border-box;
  pointer-events: none;
  animation: manager-widget-pulse 2.1s ease-out infinite;
  transition: border-width .2s ease;
}

.manager-widget__trigger:hover {
  transform: scale(1.06);
}

.manager-widget__trigger:hover::after {
  border-width: 3px;
}

.manager-widget__trigger-ring,
.manager-widget__trigger-avatar {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.manager-widget__trigger-ring {
  background: radial-gradient(circle at 30% 30%, rgba(188, 209, 120, 0.45), rgba(143, 163, 78, 0.98));
  transform: scale(1);
  transform-origin: center center;
  transition: transform .2s ease;
}

.manager-widget__trigger:hover .manager-widget__trigger-ring {
  transform: scale(1.025);
}

.manager-widget__trigger-avatar {
  inset: 2px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  display: block;
  filter: brightness(1);
  object-fit: cover;
  object-position: center 56%;
  overflow: hidden;
  transform: translateZ(0);
  transform-origin: center center;
  will-change: transform;
  backface-visibility: hidden;
  background: #d9ddd9;
  transition: filter .2s ease;
}

.manager-widget.is-open .manager-widget__trigger-avatar {
  filter: brightness(0.8);
}

@keyframes manager-widget-pulse {
  0% {
    opacity: 0;
    transform: scale(1);
  }

  18% {
    opacity: 0.78;
  }

  76% {
    opacity: 0;
    transform: scale(1.32);
  }

  100% {
    opacity: 0;
    transform: scale(1.32);
  }
}

@keyframes manager-widget-enter {
  0% {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
  }

  62% {
    opacity: 1;
    transform: translate3d(0, -5px, 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes manager-widget-trigger-pop {
  0% {
    transform: scale(0.82);
  }

  58% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes manager-widget-glow {
  0% {
    opacity: 0;
    transform: scale(0.7);
  }

  30% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: scale(1.22);
  }
}

@media (max-width: 991px) {
  .footer-top {
    display: none !important;
  }
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
    min-height: 0;
  }

  .to_start {
    width: 100%;
    justify-content: space-between;
  }

  .footer_phone {
    text-align: left;
  }
}


.modal {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100dvh;
  z-index: var(--modal-z-index);
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity .25s ease, visibility .25s ease;
  padding: 16px;
}

.modal_img {
  display: none;
}

body:has(.open),
body.modal-open,
body.home-delivery-modal-open {
  overflow: hidden;
}

.modal_box {
  width: min(640px, 100%);
  max-height: calc(100dvh - 32px);
  overflow-y: auto;
  display: block;
  position: relative;
  z-index: 1;
  background-color: #f7f4f0;
  border-radius: var(--ui-radius);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.2);
  transform: translateY(12px) scale(0.98);
  transition: transform .25s ease;
}

.modal_content {
  padding: 34px 30px 28px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}

.modal_text {
  text-align: left;
  width: 100%;
}

.modal_text h3 {
  margin: 0;
  font-size: 34px;
  line-height: 1.05;
  font-weight: 700;
  text-transform: uppercase;
  color: #252525;
}

.modal_text p {
  margin-top: 8px;
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 1.35;
  color: #707070;
}

.application_wrapper {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: stretch;
  gap: 14px;
}

.application_input {
  width: 100%;
  align-self: stretch;
  margin-bottom: 0;
  background: none;
}

.application_input.person {
  background-image: url('../img/person.svg');
}

.application_input.phone {
  background-image: url('../img/phone.svg');
}
.modal .application_input.person,
.modal .application_input.phone {
  background-image: none !important;
  background: none !important;
}

.application_wrapper input{
  font-size: 20px;
  line-height: 1.2;
  padding: 0 18px;
  width: 100%;
  height: 58px;
  border: 1px solid #dfdfdf;
  border-radius: var(--ui-radius-inputs);
  margin-left: 0;
  background-color: transparent;
  color: #1f1f1f;
}

.application_wrapper svg path {
  fill: #8FA34E;
}

.application_wrapper input::placeholder {
  font-family: 'Montserrat', sans-serif;
  color: #8b8b8b;
}

input:focus-visible, textarea:focus-visible {
  outline:none;
}

.modal.open {
  visibility: visible;
  opacity: 1;
}

.modal.open .modal_box {
  transform: translateY(0) scale(1);
}

.button--center {
  display: flex;
  justify-content: center;
  max-width: 156px !important;
}

.button--center span {
  color: white !important;
}

.order-button {

}

.product-card--detail .product-card__inner{
  margin-top:0 !important;
  justify-content: inherit !important;
  gap: 25px !important;
}

.button--center:hover {
  color: black !important;
}

.modal_close-btn {
  border:none;
  background: transparent;
  padding: 6px;
  position: absolute;
  top: 14px;
  right: 14px;
  cursor: pointer;
  color: #8f8f8f;
  font-size: 34px;
  line-height: 1;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.modal_close-btn svg {
  width: 24px;
  height: 24px;
}

.modal_close-btn svg path{
  fill: #8f8f8f;
  transition: fill .25s ease;
}

.modal_close-btn:hover svg path{
  fill: #8FA34E;
}
#my-modal {
  overflow-x: hidden;
}

#my-modal .modal_box {
  box-sizing: border-box;
  overflow-x: hidden;
  border-radius: var(--ui-radius);
  background: #fff;
  border: 1px solid #e7e7e7;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

#my-modal .modal_content {
  padding: 28px 30px 22px;
}

#my-modal .modal_text {
  text-align: center;
}

#my-modal .modal_text h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: none;
  color: #2b2b2b;
}

#my-modal .modal_text p {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.35;
  color: #7a7a7a;
}

#my-modal .application_wrapper {
  margin-top: 0;
  gap: 12px;
}

#my-modal .application_input {
  width: 100%;
}

#my-modal .application_wrapper input {
  height: 48px;
  padding: 12px 14px;
  border: 1px solid #e6e6e6;
  border-radius: var(--ui-radius-inputs);
  background: #fafafa;
  color: #2b2b2b;
  font-size: 16px;
  line-height: 1.4;
}

#my-modal .application_wrapper input::placeholder {
  color: #8b8b8b;
}

#my-modal .application_wrapper input:focus {
  border-color: #d9d6cf;
  box-shadow: none;
  background: #fdfdfb;
}

#my-modal .basket_button {
  border-radius: var(--ui-radius-buttons);
  background: #8FA34E;
}

#my-modal .button .tel {
  min-height: 56px;
  height: 56px;
  padding: 0 30px;
  border-radius: var(--ui-radius-buttons);
  border: 2px solid #8FA34E;
  color: #fff;
  font-size: 16px;
  line-height: 56px;
  min-width: 200px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  box-shadow: 0 4px 12px rgba(143, 163, 78, 0.2);
}

#my-modal .button .tel:before {
  display: none;
}

#my-modal .button .tel:hover {
  background: #7f9445;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(143, 163, 78, 0.25);
}


.basket-actions {
  width: 100%;
  height: 56px;
}

.container--footer {
  margin-top: 0 !important;
}

:root {
  --color-primary: #8FA34E;
  --ui-radius: 5px;
  --modal-z-index: 10100;
}

@media (min-width: 769px) {
  :root {
    --ui-radius: 7px;
  }
}

.basket-actions__add {
  background: var(--color-primary);
  border-radius: var(--ui-radius-buttons);
  padding: 16px 0;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  width: 100%;
  text-align: center;
  border: 2px solid var(--color-primary);
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(143, 163, 78, 0.2);
}

.basket-actions__add:hover {
  background: #7f9445;
  box-shadow: 0 8px 16px rgba(143, 163, 78, 0.25);
  transform: none;
}

.basket-actions__add:active {
  transform: translateY(0);
}

.basket-actions__add.is-in-cart:hover {
  transform: none;
}

.basket-actions__add.isHidden {
  display: none;
}

.product-counter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: var(--ui-radius-buttons);
  padding: 14px 20px;
  color: #fff;
  text-align: center;
  border: 2px solid var(--color-primary);
  font-size: 16px;
  background: #fff;
}

.product-counter.isHidden {
  display: none;
}

.product-counter__button {
  background: none;
  padding: 0;
  cursor: pointer;
  border: none;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--color-primary);
}

.js-catalog-product:not(.product-card--detail) .product-counter__button svg {
  width: 18px;
  height: 18px;
}

.js-catalog-product:not(.product-card--detail) .product-counter__value,
.js-catalog-product:not(.product-card--detail) .product-counter label:after {
  color: #8f8f8f !important;
}

.js-catalog-product:not(.product-card--detail) .product-counter__button svg rect {
  fill: #9b9b9b !important;
  transition: fill .2s ease !important;
}

.js-catalog-product:not(.product-card--detail) .product-counter__button:hover svg rect {
  fill: #8FA34E !important;
}

.product-counter__value {
  position: relative;
  font-size: 16px;
  color: var(--color-primary);
  width: 30px;
  background: transparent;
  border: none;
  text-align: center;
  user-select: none;
}

.product-counter__value::-webkit-outer-spin-button,
.product-counter__value::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.product-counter label:after {
  content: ' \0448\0442';
  font-size: inherit;
  color: var(--color-primary);
  text-transform: lowercase;
}
.js-catalog-product:not(.product-card--detail) {
  overflow: visible;
}

.js-catalog-product:not(.product-card--detail) .basket-actions {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% - 20px);
  bottom: auto;
  height: auto;
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  background: #f3f3f3;
  border-top: 1px solid #e4e4e4;
  transform: translateY(8px);
  opacity: 0;
  pointer-events: none;
  transition: transform .26s ease, opacity .26s ease;
  z-index: 4;
  align-items: stretch;
  overflow: visible;
}

.js-catalog-product:not(.product-card--detail):hover .basket-actions {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.js-catalog-product:not(.product-card--detail) .basket-actions__counter {
  grid-column: 1;
  grid-row: 1;
  border: 0;
  border-right: 1px solid #e4e4e4;
  border-radius: 0;
  background: transparent;
  padding: 0 16px;
  min-height: 56px;
  height: 56px;
  display: flex;
  align-items: center;
}

.js-catalog-product:not(.product-card--detail) .basket-actions__add {
  grid-column: 2;
  grid-row: 1;
  min-height: 56px;
  height: 56px;
  border-radius: 0;
  box-shadow: none;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
}

.js-catalog-product:not(.product-card--detail) .basket-actions__add:hover {
  transform: none;
  box-shadow: none;
}

.js-catalog-product:not(.product-card--detail).is-in-basket .basket-actions {
  grid-template-columns: 1fr;
}

.js-catalog-product:not(.product-card--detail).is-in-basket .basket-actions__add {
  grid-column: 1 / -1;
}

.js-catalog-product:not(.product-card--detail) .basket-actions__add.is-in-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  z-index: 2;
  position: relative;
}

.js-catalog-product:not(.product-card--detail) .basket-actions__add.is-in-cart ~ .basket-actions__counter {
  display: none !important;
}

.js-catalog-product:not(.product-card--detail) .basket-actions__add.is-in-cart::before {
  content: none;
  display: none;
}

.basket-actions__summary {
  display: none;
}

.js-catalog-product:not(.product-card--detail) .basket-actions__summary {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 52px;
  background: #fff;
  border-top: 1px solid #e8e8e8;
  color: #626262;
  font-size: 14px;
  font-weight: 400;
  box-shadow: 0 8px 16px rgba(37, 37, 37, 0.08);
}

.js-catalog-product:not(.product-card--detail) .basket-actions__summary strong {
  color: #2b2b2b;
  font-size: 14px;
  font-weight: 700;
}

.js-catalog-product:not(.product-card--detail) .basket-actions__summary.isVisible {
  display: flex;
}

@media (max-width: 768px) {
  .js-catalog-product:not(.product-card--detail) .basket-actions {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
}

.telephone {
  text-decoration: none;
  font-size: 16px;
  transition: color .4s;
}

.telephone:hover{
  color: #8FA34E;
}

.cart-added-toast-stack {
  --toast-tab-width: 54px;
  position: fixed;
  top: 95px;
  right: 30px;
  width: min(460px, calc(100vw - 40px));
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
  pointer-events: none;
  transition: transform .35s ease;
  will-change: transform;
  overflow: visible;
}

html.with-fancybox .cart-added-toast-stack {
  z-index: 1000;
}

.cart-added-toast-stack.is-collapsed {
  transform: translateX(calc(100% + var(--toast-collapse-shift, 0px)));
}

.cart-added-toast-stack.is-instant,
.cart-added-toast-stack.is-instant .cart-added-toast,
.cart-added-toast-stack.is-instant .cart-added-toast-tab {
  transition: none !important;
}

.cart-added-toast-stack.is-restoring {
  visibility: hidden;
}

.cart-added-toast-tab {
  position: absolute;
  top: 0;
  left: calc(-1 * var(--toast-tab-width));
  width: var(--toast-tab-width);
  height: 54px;
  border: 0;
  border: 0;
  border-radius: var(--ui-radius-buttons) 0 0 var(--ui-radius-buttons);
  background: #8FA34E;
  color: #fbfaf8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 22px rgba(37, 37, 37, 0.24);
  opacity: 0;
  transform: none;
  pointer-events: none;
  transition: filter .2s ease, background-color .2s ease;
  z-index: 10000;
  cursor: pointer;
}

.cart-added-toast-tab.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.cart-added-toast-tab:hover {
  filter: brightness(0.96);
}

.cart-added-toast-tab__icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
}

.cart-added-toast-tab__icon svg {
  width: 100%;
  height: 100%;
}

.cart-added-toast {
  position: relative;
  width: 100%;
  background: #fbfaf8;
  border-radius: 0 var(--ui-radius) var(--ui-radius) var(--ui-radius);
  border: 0;
  box-shadow: 0 12px 30px rgba(37, 37, 37, 0.16);
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 14px;
  padding: 14px 16px;
  cursor: pointer;
  opacity: 0;
  transform: translateX(112%);
  transition: transform .35s ease, opacity .35s ease;
  pointer-events: none;
}

.cart-added-toast.is-summary-live {
  display: block;
  padding: 14px 16px;
  transform: none;
  transition: opacity .2s ease;
}

.cart-added-toast-stack.is-collapsed .cart-added-toast {
  pointer-events: none;
}

.cart-added-toast.is-rendered {
  pointer-events: auto;
}

.cart-added-toast.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.cart-added-toast.is-hiding {
  opacity: 0;
  transform: translateX(0);
}

.cart-added-toast__close {
  position: absolute;
  top: 6px;
  right: 8px;
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  font-size: 32px;
  line-height: 1;
  color: #8f8f8f;
  cursor: pointer;
  padding: 0;
  display: none;
}

.cart-added-toast__media {
  width: 64px;
  height: 64px;
  border-radius: var(--ui-radius);
  overflow: hidden;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-added-toast__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cart-added-toast__content {
  min-width: 0;
  padding-right: 26px;
}

.cart-added-toast.is-summary-live .cart-added-toast__content {
  padding-right: 0;
}

.cart-added-toast__title {
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  color: #4a4a4a;
  margin-bottom: 8px;
}

.cart-added-toast__clear {
  position: absolute;
  top: 14px;
  right: 16px;
  border: 0;
  background: transparent;
  color: #b3b3b3;
  font-size: 14px;
  line-height: 1;
  font-weight: 400 !important;
  font-family: inherit;
  text-decoration: none;
  padding: 0;
  cursor: pointer;
  text-transform: none !important;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color .2s ease;
}

.cart-added-toast__clear:hover {
  color: #2f2f2f;
}

.cart-added-toast__name {
  font-size: 14px;
  line-height: 1.35;
  color: #4f4f4f;
  word-break: break-word;
}

.cart-added-toast__summary {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.3;
  color: #626262;
}

.cart-added-toast__items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cart-added-toast__item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 20px;
  gap: 10px;
  align-items: center;
  padding: 7px 0;
}

.cart-added-toast__item + .cart-added-toast__item {
  border-top: 1px solid #e5e5e5;
}

.cart-added-toast__item-media {
  width: 52px;
  height: 52px;
  border-radius: var(--ui-radius);
  overflow: hidden;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-added-toast__item-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cart-added-toast__item-content {
  min-width: 0;
}

.cart-added-toast__item-remove {
  width: 20px;
  height: 20px;
  border: 0;
  background: transparent;
  color: #bdbdbd;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  align-self: start;
  justify-self: end;
  transition: color .2s ease, opacity .2s ease;
}

.cart-added-toast__item-remove:hover {
  color: #2f2f2f;
}

.cart-added-toast__item-remove.is-removing {
  opacity: .5;
  pointer-events: none;
}

.cart-added-toast__item-name {
  font-size: 14px;
  line-height: 1.25;
  color: #4f4f4f;
  word-break: break-word;
}

.cart-added-toast__item-meta {
  margin-top: 3px;
  font-size: 13px;
  line-height: 1.3;
  color: #6a6a6a;
}

.cart-added-toast__item-meta strong {
  color: #2b2b2b;
  font-weight: 700;
}

.cart-added-toast__summary strong {
  color: #2b2b2b;
  font-weight: 700;
}

.cart-added-toast__total {
  margin-top: 8px;
  padding-top: 7px;
  border-top: 1px solid #e5e5e5;
  font-size: 14px;
  line-height: 1.3;
  color: #5a5a5a;
}

.cart-added-toast__total strong {
  color: #2b2b2b;
  font-weight: 700;
}

@media (max-width: 768px) {
  .cart-added-toast-stack {
    --toast-tab-width: 40px;
    top: 76px;
    right: 12px;
    width: calc(100vw - 56px);
  }

  .cart-added-toast-tab {
    top: 0;
    height: 40px;
    border-radius: var(--ui-radius-buttons) 0 0 var(--ui-radius-buttons);
  }

  .cart-added-toast-tab__icon {
    width: 20px;
    height: 20px;
  }

  .cart-added-toast {
    width: 100%;
    padding: 12px 24px 12px 14px;
    gap: 12px;
  }

  .cart-added-toast__title {
    font-size: 17px;
  }

  .cart-added-toast__clear {
    top: 12px;
    right: 36px;
    font-size: 14px;
  }

  .cart-added-toast__name {
    font-size: 13px;
  }

  .cart-added-toast__summary {
    font-size: 13px;
  }

  .cart-added-toast__item {
    grid-template-columns: 46px minmax(0, 1fr) 18px;
    gap: 9px;
    padding: 6px 12px 6px 0;
  }

  .cart-added-toast__item-media {
    width: 46px;
    height: 46px;
  }

  .cart-added-toast__item-name {
    font-size: 13px;
  }

  .cart-added-toast__item-meta {
    font-size: 12px;
  }

  .cart-added-toast__item-remove {
    width: 18px;
    height: 18px;
    font-size: 20px;
    margin-right: 4px;
  }

  .cart-added-toast__total {
    font-size: 13px;
  }
}

.loader-wrapper {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 11000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .7);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: visibility .3s ease, opacity .3s ease;
  width: 100%;
  height: 100%;
}

.loader-wrapper.active {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
}

.loader {
  width: 48px;
  height: 48px;
  border: 5px solid #FFF;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}


@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
.reviews-section {
  padding: 0;
  margin-bottom: 120px;
}

.reviews-container {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}

@media (min-width: 992px) {
  .reviews-container {
    width: min(calc(100% - (var(--site-container-gutter) * 2)), var(--site-container-width));
  }
}

.reviews-header {
  text-align: center;
  margin-bottom: 36px;
}

.reviews-header--left {
  text-align: left;
}

.reviews-header__subtitle {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #767676;
  margin-bottom: 12px;
}

.reviews-header h2 {
  margin: 0 0 14px;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.1;
  color: #252525;
}

.reviews-header p {
  margin: 0;
  font-size: 18px;
  color: #666;
}

.section-title--left {
  text-align: left !important;
}

.reviews-topbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  padding: 12px 22px;
  background: #fdfbf8;
  border-radius: var(--ui-radius);
  border: 1px solid #efe7db;
  box-shadow: 0 6px 16px rgba(37, 37, 37, 0.06);
}

.reviews-topbar::before {
  content: none;
}

.reviews-topbar.reviews-topbar--compact {
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 12px;
}

.reviews-topbar.reviews-topbar--compact .reviews-filters-wrap {
  display: none !important;
}

.reviews-rating {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.reviews-rating__value {
  font-size: 40px;
  font-weight: 700;
  color: #8FA34E;
  line-height: 1;
}

.reviews-rating__info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.reviews-section .stars {
  color: #f3b63f;
  font-size: 18px;
  letter-spacing: 2px;
}

.reviews-rating__count {
  font-size: 14px;
  color: #666;
}

.reviews-filters-wrap {
  position: relative;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.reviews-topbar-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex-wrap: wrap;
}

.reviews-topbar--home-actions .reviews-topbar-actions {
  margin-left: auto;
}

@media (min-width: 769px) {
  .reviews-topbar.reviews-topbar--home-actions {
    padding-right: 12px;
  }
}

.reviews-topbar--home-actions .reviews-filters-wrap {
  display: none !important;
}

.reviews-topbar-review-btn {
  border: none;
  border-radius: var(--ui-radius-buttons);
  padding: 0 30px;
  width: 260px;
  min-width: 260px;
  max-width: 260px;
  flex: 0 0 260px;
  height: 56px;
  line-height: 56px;
  background: #8FA34E;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .2px;
  white-space: nowrap;
  transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.reviews-topbar-review-btn:hover {
  background: #7f9445;
  box-shadow: 0 8px 16px rgba(143, 163, 78, 0.25);
  transform: translateY(-1px);
}

.reviews-filter-toggle {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  border: none;
  border-radius: var(--ui-radius-buttons);
  background: #dfd8cc;
  color: #3f4247;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s ease;
}

.reviews-filter-toggle:hover {
  background: #d4ccbf;
}

.reviews-filter-toggle svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reviews-filters {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 12;
  display: none;
  flex-direction: column;
  gap: 8px;
  min-width: 250px;
  max-width: min(92vw, 340px);
  padding: 10px;
  border-radius: var(--ui-radius);
  background: #fff;
  border: 1px solid #e6e1d7;
  box-shadow: 0 10px 24px rgba(37, 37, 37, 0.14);
}

.reviews-filters.is-open {
  display: flex;
}

.filter-btn {
  border: none;
  background: #dfd8cc;
  color: #3f4247;
  padding: 10px 16px;
  border-radius: var(--ui-radius-buttons);
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .2px;
  transition: 0.25s ease;
  width: 100%;
  text-align: left;
  justify-content: flex-start;
}

.filter-btn:hover {
  background: #d4ccbf;
}

.filter-btn.active {
  background: #d4ccbf;
  color: #3f4247;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
  touch-action: pan-y;
  cursor: grab;
  scroll-behavior: smooth;
}

.reviews-grid:active {
  cursor: grabbing;
}

.reviews-grid.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.reviews-grid.is-dragging,
.reviews-grid.is-dragging * {
  user-select: none;
  -webkit-user-select: none;
}

.reviews-grid img {
  -webkit-user-drag: none;
  user-select: none;
}

.review-card {
  position: relative;
  background: linear-gradient(180deg, #fdfbf8 0%, #f6efe5 100%);
  border-radius: var(--ui-radius);
  overflow: hidden;
  border: 1px solid #efe7db;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  transition: transform 0.28s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 6px 16px rgba(37, 37, 37, 0.06);
  transform-origin: center center;
  align-self: stretch;
  align-items: stretch;
  justify-content: space-between;
}

.review-card::before {
  content: none;
}

.review-card,
.review-card * {
  -webkit-user-select: none;
  user-select: none;
}

.review-card.hidden {
  display: none;
}

.review-card.reveal {
  animation: reviewFadeUp 0.35s ease both;
}

@keyframes reviewFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.review-card:hover {
  z-index: 2;
  transform: scale(1.06);
  box-shadow: 0 6px 16px rgba(37, 37, 37, 0.06);
}

.review-card__image {
  position: relative;
  height: 250px !important;
  overflow: hidden;
}

.review-card__hidden-photo {
  display: none;
}

.review-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.review-card__image a {
  display: block;
  height: 100%;
  cursor: zoom-in;
}

@media (min-width: 992px) {
  #reviewsGrid.reviews-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 22px 15px 44px;
    margin: -22px -15px -44px;
    scroll-snap-type: none;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
  }

  #reviewsGrid.reviews-grid::-webkit-scrollbar {
    display: none;
  }

  #reviewsGrid.reviews-grid > .review-card {
    flex: 0 0 calc((100% - 44px) / 3);
    min-width: calc((100% - 44px) / 3);
    max-width: calc((100% - 44px) / 3);
  }
}

.review-badge {
  position: absolute;
  left: 14px;
  top: 14px;
  background: rgba(143, 163, 78, 0.92);
  color: #fff;
  padding: 8px 12px;
  border-radius: var(--ui-radius);
  font-size: 11px;
  font-weight: 700;
}

.review-card__body {
  padding: 26px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 100%;
  position: relative;
}

.review-card__header {
  display: contents;
}

.review-card__body > .review-card__title {
  display: none;
}

.review-card__title {
  margin: 0;
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 7px 12px;
  border-radius: var(--ui-radius);
  background: #d8e0ad;
  color: #4d5830;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .2px;
  max-width: calc(100% - 180px);
  text-align: center;
}

.review-card__text {
  margin: 0;
  order: 3;
  color: #252525;
  line-height: 1.2;
  font-size: 17px;
  font-weight: 400;
  flex-grow: 1;
  display: block;
  overflow: visible;
  visibility: visible;
  opacity: 1;
  min-height: 0;
  max-height: none;
  height: auto;
}

.review-card__meta {
  order: 1;
  display: block;
  border-top: 0;
  padding-top: 0;
  margin-top: 0;
  padding-right: 180px;
}


.review-author {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.review-author strong {
  display: block;
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  color: #252525;
}

.review-author span {
  display: block;
  color: #8a8a8a;
  font-size: 15px;
  line-height: 1.1;
  font-weight: 400;
}

.review-author__avatar {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border-radius: 50%;
  background-size: cover;
  background-position: center center;
  background-color: #e9e4da;
  box-shadow: none;
}

.review-author__avatar.is-empty {
  background-image: none;
}

.review-author__info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 2px;
}

.review-card__stars {
  display: flex;
  gap: 4px;
  color: #ffca0b;
  font-size: 18px;
  line-height: 1;
}

.review-card__gallery {
  order: 4;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 4px;
}

.review-card__thumb {
  display: block;
  border-radius: var(--ui-radius);
  overflow: hidden;
  background: #ece7dd;
  aspect-ratio: 1.2 / 1;
  cursor: zoom-in;
}

.review-card__thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.35s ease;
  will-change: transform;
}

.review-card__thumb:hover img,
.review-card__thumb:focus-visible img {
  transform: scale(1.1);
}

.reviews-actions,
.reviews-topbar-actions {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.reviews-topbar-actions {
  margin-top: 0;
  justify-content: flex-end;
}

.reviews-actions--mobile {
  display: none;
}

.reviews-actions .btn,
.reviews-topbar-actions .btn {
  border: none;
  border-radius: var(--ui-radius-buttons);
  padding: 0 30px;
  height: 56px;
  line-height: 56px;
  width: 260px;
  min-width: 260px;
  max-width: 260px;
  flex: 0 0 260px;
  box-sizing: border-box;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .2px;
  transition: 0.25s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.reviews-actions .btn-primary,
.reviews-topbar-actions .btn-primary {
  background: linear-gradient(135deg, #98ad55 0%, #93a951 52%, #8FA34E 100%);
  color: #fff;
  box-shadow:
    0 10px 20px rgba(143, 163, 78, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.reviews-actions .btn-primary:hover,
.reviews-topbar-actions .btn-primary:hover {
  background: linear-gradient(135deg, #90a44f 0%, #8aa04c 52%, #849947 100%);
  box-shadow:
    0 12px 24px rgba(143, 163, 78, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.reviews-actions .btn-secondary,
.reviews-topbar-actions .btn-secondary {
  background: #dfd8cc;
  color: #3f4247;
  gap: 8px;
}

.reviews-actions .btn-secondary::after,
.reviews-topbar-actions .btn-secondary::after {
  content: "";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  background: no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1024 1024'%3E%3Cpath fill='%233f4247' d='M831.872 340.864 512 652.672 192.128 340.864a30.592 30.592 0 0 0-42.752 0 29.12 29.12 0 0 0 0 41.6L489.664 714.24a32 32 0 0 0 44.672 0l340.288-331.712a29.12 29.12 0 0 0 0-41.728 30.592 30.592 0 0 0-42.752 0z'/%3E%3C/svg%3E");
  transform: rotate(270deg);
  transition: transform .2s ease;
  flex: 0 0 25px;
}

.reviews-actions .btn-secondary:hover,
.reviews-topbar-actions .btn-secondary:hover {
  background: #d4ccbf;
}

.reviews-actions .btn-secondary:hover::after,
.reviews-topbar-actions .btn-secondary:hover::after,
.reviews-actions .btn-secondary:focus-visible::after,
.reviews-topbar-actions .btn-secondary:focus-visible::after {
  transform: translateX(3px) rotate(270deg);
}

.reviews-actions-review-btn-mobile {
  display: none;
}

.reviews-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 22px;
}

.reviews-slider-arrow {
  display: none;
}

.reviews-slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.reviews-slider-dot {
  width: 18px;
  height: 18px;
  border: 0;
  padding: 0;
  border-radius: 50%;
  background: #c7c7c7;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.reviews-slider-dot.is-active {
  background: #8FA34E;
  transform: scale(1.08);
}

.empty-state {
  display: none;
  text-align: center;
  padding: 26px 20px 10px;
  color: #666;
  font-size: 15px;
}

.review-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: var(--modal-z-index);
  padding: 24px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.review-modal.is-open {
  display: flex;
}

.review-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);
}

.review-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(760px, 94vw);
  max-height: calc(100vh - 48px);
  max-height: calc(100dvh - 48px);
  background: #f7f4f0;
  border-radius: var(--ui-radius);
  padding: 24px 26px 22px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(143, 163, 78, 0.25);
  overflow-y: auto;
  overflow-x: hidden;
}

.review-modal__dialog::before {
  content: "";
  position: absolute;
  inset: 0;
  background: none;
  pointer-events: none;
}

.review-modal__title {
  margin: 0 0 16px;
  padding-right: 56px;
  font-size: 24px;
  color: #252525;
  font-weight: 700;
  box-sizing: border-box;
}

.review-modal__close {
  position: absolute;
  right: 14px;
  top: 14px;
  background: transparent;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 0;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  color: #8f8f8f;
  box-shadow: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.review-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 16px;
}

.review-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  color: #2f2f2f;
  font-weight: 600;
}

.review-form__field span {
  font-size: 12px;
  letter-spacing: .3px;
  text-transform: uppercase;
  color: #6b6b6b;
  font-weight: 700;
}

.review-form__field input,
.review-form__field select,
.review-form__field textarea {
  border: 1px solid #d9d6cf;
  border-radius: var(--ui-radius-inputs);
  padding: 12px 14px;
  font-size: 14px;
  outline: none;
  background: #fafafa;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.review-form__field input:focus,
.review-form__field select:focus,
.review-form__field textarea:focus {
  border-color: #8FA34E;
  box-shadow: 0 0 0 3px rgba(143, 163, 78, 0.18);
  background: #fafafa;
}

.review-form__field--full {
  grid-column: 1 / -1;
}

.review-form__actions {
  margin-top: 16px;
  display: flex;
  justify-content: flex-end;
}

.review-form__message {
  display: none;
}

.review-form__error {
  display: none;
  min-height: 0;
  margin-top: 6px;
  color: #d65d41;
  font-size: 12px;
  line-height: 1.2;
  text-align: left;
  text-transform: none;
}

.review-form__error:empty {
  display: none;
  visibility: hidden;
}

.review-form__error:not(:empty) {
  display: block;
}

.review-form__error.js-review-error-rating,
.review-form__error.js-review-error-agreement {
  display: block !important;
  min-height: 18px;
  margin-top: 6px;
}

.review-form__error.js-review-error-rating:empty,
.review-form__error.js-review-error-agreement:empty {
  display: block !important;
  visibility: hidden;
}

.review-form__error.js-review-error-rating:not(:empty),
.review-form__error.js-review-error-agreement:not(:empty) {
  display: block !important;
  visibility: visible;
}
.review-modal__dialog {
  background: #fff;
  border-radius: var(--ui-radius);
  padding: 28px 30px 22px;
  border: 1px solid #e7e7e7;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  box-sizing: border-box;
}

.review-form {
  padding: 0;
  box-sizing: border-box;
}

.review-modal__dialog,
.review-modal__dialog * {
  font-family: inherit;
}

.review-modal__dialog {
  font-size: 16px;
  color: #2b2b2b;
}

.review-modal__title {
  margin: 0 0 18px;
  font-size: 24px;
  font-weight: 700;
  color: #2b2b2b;
  text-align: center;
}

.review-modal__close {
  color: #9a9a9a;
  background: transparent;
  box-shadow: none;
  width: 40px;
  height: 40px;
  font-size: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 14px;
  top: 14px;
}

.review-modal__close:hover {
  color: #8FA34E;
}

.review-form__group {
  margin-bottom: 16px;
  width: 100%;
  box-sizing: border-box;
}

.review-form__group:has(.js-review-error-rating) {
  margin-bottom: 0;
}

.review-form__label {
  display: block;
  font-size: 16px;
  color: #7a7a7a;
  margin-bottom: 8px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.review-form__input,
.review-form__textarea {
  width: 100%;
  border: 1px solid #e6e6e6;
  border-radius: var(--ui-radius-inputs);
  padding: 12px 14px;
  font-size: 16px;
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.4;
  outline: none;
  background: #fafafa;
  box-sizing: border-box;
  color: #2b2b2b;
  resize: vertical;
}

.review-form__input[name="product"] {
  padding-right: 48px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23333' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px 8px;
}

.review-form__input[name="product"]:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23333' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px 8px;
}

.review-form__input[name="product"].is-field-error {
  border-color: #d65d41 !important;
  color: #d65d41 !important;
}

.review-form__textarea[name="comment"] {
  min-height: calc(5 * 1.4em + 24px);
}

.review-form__input option {
  font-family: "Montserrat", Arial, sans-serif;
}

.review-form__input:focus,
.review-form__textarea:focus {
  border-color: #d9d6cf;
  box-shadow: none;
  background: #fdfdfb;
}
.review-form__input:-webkit-autofill,
.review-form__input:-webkit-autofill:hover,
.review-form__input:-webkit-autofill:focus,
.review-form__textarea:-webkit-autofill,
.review-form__textarea:-webkit-autofill:hover,
.review-form__textarea:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
  box-shadow: 0 0 0 1000px #fff inset;
  -webkit-text-fill-color: #2b2b2b;
  transition: background-color 9999s ease-in-out 0s;
}

.review-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.review-file {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  border: 1px solid #e6e6e6;
  border-radius: var(--ui-radius-inputs);
  padding: 12px 14px;
  background: #fafafa;
  cursor: pointer;
  justify-content: flex-start;
  transition: background .2s ease, border-color .2s ease;
  box-sizing: border-box;
  position: relative;
  min-height: 48px;
  height: 48px;
}

.review-file input {
  display: none;
}

.review-file__icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M16.5 6.5l-7.9 7.9a3 3 0 0 0 4.2 4.2l8.1-8.1a5 5 0 0 0-7.1-7.1l-8.2 8.2' stroke='black' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M16.5 6.5l-7.9 7.9a3 3 0 0 0 4.2 4.2l8.1-8.1a5 5 0 0 0-7.1-7.1l-8.2 8.2' stroke='black' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  -webkit-mask-size: 18px 18px;
  mask-size: 18px 18px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background-color: #5f5f5f;
}

.review-file__text {
  color: #5a5a5a;
  font-size: 16px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  flex: 1;
}

.review-file__name {
  font-size: 13px;
  color: #ffffff;
  background: rgba(0,0,0,0.18);
  padding: 4px 8px;
  border-radius: var(--ui-radius);
  display: none;
  margin-left: 0;
  line-height: 18px;
  max-width: 160px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  pointer-events: none;
}

.review-file.has-file .review-file__name {
  display: inline-block;
}

.review-file.has-file .review-file__text {
  display: none;
}

.review-file.has-file {
  background: #fafafa;
  border-color: #e6e6e6;
}

.review-file.has-file:hover {
  background: #fafafa;
  border-color: #e6e6e6;
}

.review-file.has-file:hover .review-file__icon {
  background-color: #5f5f5f;
}

.review-file.has-file:hover .review-file__text,
.review-file.has-file:hover .review-file__name {
  color: #5a5a5a;
}

.review-file.has-file:hover .review-file__remove {
  background: rgba(0,0,0,0.08);
  color: #2b2b2b;
}

.review-file.has-file .review-file__name {
  background: rgba(0,0,0,0.08);
  color: #2b2b2b;
}

.review-file.has-file:hover .review-file__name {
  background: rgba(0,0,0,0.08);
  color: #2b2b2b;
}

.review-file__remove {
  margin-left: auto;
  border: none;
  background: rgba(0,0,0,0.08);
  color: #2b2b2b;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
}

.review-file.has-file .review-file__remove {
  display: inline-flex;
}

.review-file:not(.has-file):hover .review-file__remove {
  background: rgba(255,255,255,0.35);
  color: #fff;
}

.review-file.has-file:hover .review-file__remove {
  background: rgba(0,0,0,0.08);
  color: #2b2b2b;
}

.review-file__remove:hover {
  background: #8FA34E;
  color: #fff;
}

.review-file.has-file .review-file__remove:hover {
  background: #8FA34E;
  color: #fff;
}

.review-file:not(.has-file):hover {
  background: #8FA34E;
  border-color: #8FA34E;
}

.review-file:not(.has-file):hover .review-file__icon {
  background-color: #fff;
}

.review-file:not(.has-file):hover .review-file__text {
  color: #fff;
}

.review-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-start;
}

.review-rating__stars {
  display: flex;
  flex-direction: row-reverse;
  gap: 6px;
  flex-shrink: 0;
}

.review-rating input {
  display: none;
}

.review-rating label {
  font-size: 30px;
  color: #d9d9d9;
  cursor: pointer;
  transition: color .2s ease;
}

.review-rating__stars label:hover,
.review-rating__stars label:hover ~ label,
.review-rating__stars input:checked ~ label {
  color: #f3b63f;
}

.review-rating.is-hovering .review-rating__stars label {
  color: #d9d9d9;
}

.review-rating.is-hovering .review-rating__stars label:hover,
.review-rating.is-hovering .review-rating__stars label:hover ~ label {
  color: #f3b63f;
}

.review-rating__text {
  margin-left: 2px;
  color: #8b8b8b;
  font-size: 16px;
  white-space: nowrap;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.review-form__consent {
  margin: 10px 0 0;
  font-size: 16px;
  color: #7a7a7a;
}

.review-switch {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  user-select: none;
  cursor: pointer;
}

.review-switch input {
  display: none;
}

.review-switch__slider {
  width: 38px;
  height: 22px;
  flex: 0 0 38px;
  min-width: 38px;
  background: #d9d9d9;
  border-radius: 999px;
  position: relative;
  transition: background .2s ease;
  cursor: pointer;
  margin-top: 2px;
}

.review-switch__slider::after {
  content: "";
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: transform .2s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.review-switch input:checked + .review-switch__slider {
  background: #8FA34E;
}

.review-switch input:checked + .review-switch__slider::after {
  transform: translateX(16px);
}

.review-switch__text {
  display: block;
  font-size: 16px;
  color: #7a7a7a;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.review-switch__policy-link {
  color: #8FA34E;
  text-decoration: none;
  font: inherit;
}

.review-switch__policy-link:hover {
  color: #7a7a7a;
  text-decoration: none;
}

.review-form__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
}

.review-form__note {
  font-size: 16px;
  color: #8b8b8b;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.req {
  color: #ff8b2a;
}

.review-form__actions .btn-primary {
  height: 56px;
  padding: 0 30px;
  border-radius: var(--ui-radius-buttons);
  background: #8FA34E;
  border: 2px solid #8FA34E;
  color: #fff;
  font-size: 16px;
  line-height: 56px;
  min-width: 200px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(143, 163, 78, 0.2);
  transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0;
  cursor: pointer;
}

.review-form__actions .btn-primary:hover {
  background: #7f9445;
  box-shadow: 0 8px 16px rgba(143, 163, 78, 0.25);
  transform: none;
}

@media (max-width: 720px) {
  .review-form__grid {
    grid-template-columns: 1fr;
  }
}
#my-modal,
#my-modal .modal_box,
#my-modal .modal_content {
  box-sizing: border-box !important;
  overflow-x: hidden !important;
}

#my-modal .modal_box {
  width: min(620px, calc(100vw - 32px)) !important;
  max-width: 620px !important;
  border-radius: var(--ui-radius) !important;
  background: #fff !important;
  border: 1px solid #e7e7e7 !important;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28) !important;
}

#my-modal .modal_content {
  padding: 28px 30px 22px !important;
}

#my-modal #contact-form_2 {
  width: 100% !important;
  align-items: stretch !important;
}

#my-modal .modal_text h3 {
  margin: 0 0 10px !important;
  padding-left: 56px !important;
  padding-right: 56px !important;
  font-size: 24px !important;
  line-height: 1.2 !important;
  font-weight: 700 !important;
  text-transform: none !important;
  color: #2b2b2b !important;
  box-sizing: border-box !important;
}

#my-modal .modal_text p {
  margin: 0 0 14px !important;
  font-size: 16px !important;
  line-height: 1.35 !important;
  color: #7a7a7a !important;
}

#my-modal .application_wrapper {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 16px !important;
  margin-top: 0 !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
}

#my-modal .application_input {
  width: 100% !important;
  margin-bottom: 0 !important;
  background: none !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  box-sizing: border-box !important;
}

#my-modal .callback-field-label {
  margin: 0 0 8px 0 !important;
  font-size: 16px !important;
  line-height: 1.2 !important;
  font-weight: 400 !important;
  color: #7a7a7a !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}

#my-modal .application_wrapper input {
  width: 100% !important;
  min-height: 0 !important;
  height: auto !important;
  padding: 12px 14px !important;
  border: 1px solid #e6e6e6 !important;
  border-radius: var(--ui-radius-inputs) !important;
  background: #fafafa !important;
  color: #2b2b2b !important;
  font-size: 16px !important;
  line-height: 1.4 !important;
  margin: 0 !important;
  box-shadow: none !important;
  box-sizing: border-box !important;
}

#my-modal .application_wrapper input.is-field-error {
  border-color: #d65d41 !important;
  color: #2b2b2b !important;
}

#my-modal .application_wrapper input.is-field-error::placeholder {
  color: #d65d41 !important;
  opacity: 1 !important;
}

#my-modal .button--center {
  max-width: none !important;
  width: 100% !important;
  background: transparent !important;
  overflow: visible !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 14px !important;
  flex-wrap: nowrap !important;
}

#my-modal .basket_button {
  background: transparent !important;
  border-radius: 0 !important;
  overflow: visible !important;
  justify-content: center !important;
  align-items: center !important;
  margin-top: 20px !important;
  padding: 0 !important;
}

#my-modal .button .tel {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 56px !important;
  height: 56px !important;
  padding: 0 30px !important;
  border-radius: var(--ui-radius-buttons) !important;
  border: 2px solid #8FA34E !important;
  background: #8FA34E !important;
  color: #fff !important;
  font-size: 16px !important;
  line-height: 1 !important;
  min-width: 200px !important;
  width: 200px !important;
  flex: 0 0 auto !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0 !important;
  box-shadow: 0 4px 12px rgba(143, 163, 78, 0.2) !important;
  transform: none !important;
  overflow: visible !important;
}

#my-modal .button .tel:before {
  display: none !important;
  content: none !important;
}

#my-modal .button .tel:hover {
  background: #7f9445 !important;
  box-shadow: 0 8px 16px rgba(143, 163, 78, 0.25) !important;
  transform: none !important;
  color: #fff !important;
}

#my-modal .button .tel:hover span {
  color: #fff !important;
}

#my-modal .button .tel span {
  font-size: inherit !important;
  font-weight: inherit !important;
  text-transform: uppercase !important;
}

#my-modal .callback-form__consent {
  width: 100% !important;
  margin: 18px 0 0 0 !important;
}

#my-modal .callback-form__consent .review-switch {
  width: 100% !important;
}

#my-modal .callback-form__consent .review-switch__text {
  max-width: 100% !important;
}

#my-modal .contact-form__error_name,
#my-modal .contact-form__error_tel,
#my-modal .contact-form__error_agreement {
  display: block;
  min-height: 18px;
  margin-top: 6px;
  color: #d65d41;
  font-size: 12px;
  line-height: 1.2;
  text-align: left;
}

#my-modal .contact-form__error_name:empty,
#my-modal .contact-form__error_tel:empty,
#my-modal .contact-form__error_agreement:empty {
  display: block;
  visibility: hidden;
}

#my-modal .contact-form__error_name,
#my-modal .contact-form__error_tel {
  display: none !important;
  min-height: 0 !important;
  margin: 0 !important;
}

#my-modal .callback-form__note {
  display: inline-block !important;
  width: auto !important;
  margin: 0 !important;
  text-align: left !important;
  font-size: 16px !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
  color: #8b8b8b !important;
}

#my-modal .callback-form__note .req {
  color: #ff8b2a !important;
}

#my-modal .button--center:hover {
  color: inherit !important;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 720px) {
  .review-modal {
    align-items: center;
    padding: 10px;
  }
  .review-modal__title {
    margin-bottom: 30px !important;
  }
  .review-modal__dialog {
    width: 100%;
    max-height: calc(100vh - 20px);
    max-height: calc(100dvh - 20px);
    padding: 24px 18px 16px;
  }
  .review-form__grid {
    grid-template-columns: 1fr;
  }
  .review-form__actions {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .review-form__actions .btn-primary {
    width: min(200px, 100%);
    min-width: 0;
  }
  .review-form__note {
    display: block;
    white-space: normal;
    font-size: 14px;
    line-height: 1.25;
  }
}
.review-success {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: calc(var(--modal-z-index) + 1);
  padding: 24px;
}

.review-success.is-open {
  display: flex;
}

.review-success__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.review-success__dialog {
  position: relative;
  z-index: 1;
  width: min(320px, 92vw);
  background: #f7f4f0;
  border-radius: var(--ui-radius);
  padding: 24px 22px 20px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(143, 163, 78, 0.25);
}

.review-success__icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: #8FA34E;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  box-shadow: 0 8px 18px rgba(143, 163, 78, 0.35);
}

.review-success__icon.is-done::before {
  content: "\2714";
}

.review-success__icon.is-done,
.contact-success__icon.is-done {
  display: none;
}

.review-success.is-sending .review-success__icon {
  background: transparent;
  color: transparent;
  box-shadow: none;
  border: 3px solid #d8e0c8;
  border-top-color: #8FA34E;
  animation: contactSpin 0.9s linear infinite;
}

.review-success__title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: #252525;
}

.review-success__text {
  margin: 0 0 16px;
  font-size: 14px;
  color: #5a5a5a;
}

.review-success__btn {
  width: 100%;
  height: 50px;
  border-radius: var(--ui-radius-buttons);
  border: 2px solid #8FA34E;
  background: #8FA34E;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transform: none;
  transition: background .2s ease;
}

.review-success.is-sending .review-success__btn {
  display: none;
}

.review-success__btn:hover {
  background: #7f9445;
  transform: none;
}
.contact-success {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: calc(var(--modal-z-index) + 2);
  padding: 24px;
}

.contact-success.is-open {
  display: flex;
}

.contact-success__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.contact-success__dialog {
  position: relative;
  z-index: 1;
  width: min(320px, 92vw);
  background: #f7f4f0;
  border-radius: var(--ui-radius);
  padding: 24px 22px 20px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(143, 163, 78, 0.25);
}

.contact-success__icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: #8FA34E;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  box-shadow: 0 8px 18px rgba(143, 163, 78, 0.35);
}

.contact-success__icon.is-done::before {
  content: "\2714";
}

.contact-success.is-sending .contact-success__icon {
  background: transparent;
  box-shadow: none;
  border: 3px solid #d8e0c8;
  border-top-color: #8FA34E;
  animation: contactSpin 0.9s linear infinite;
}

.contact-success__title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: #252525;
}

@media (min-width: 992px) {
  .review-success__title,
  .contact-success__title {
    font-size: 22px;
  }
}

.contact-success__text {
  margin: 0 0 16px;
  font-size: 14px;
  color: #5a5a5a;
}

.contact-success__btn {
  width: 100%;
  height: 50px;
  border-radius: var(--ui-radius-buttons);
  border: 2px solid #8FA34E;
  background: #8FA34E;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transform: none;
  transition: background .2s ease;
}

.contact-success__btn:hover {
  background: #7f9445;
  transform: none;
}

.contact-success.is-sending .contact-success__btn {
  display: none;
}
.modal_close-btn,
.review-modal__close {
  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
  min-height: 40px !important;
  top: 14px !important;
  right: 14px !important;
}

.review-modal__close {
  font-size: 34px !important;
  line-height: 1 !important;
  font-weight: 400 !important;
}

.modal_close-btn svg {
  width: 30px !important;
  height: 30px !important;
}

.fancybox__container .fancybox__content > .f-button.is-close-btn {
  position: fixed;
  top: 12px;
  right: 12px;
  left: auto;
  z-index: 1200;
}

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

.review-success__icon.is-done::before,
.contact-success__icon.is-done::before {
  content: none !important;
}

@media (max-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-header h2 {
    font-size: 34px;
  }
}

@media (max-width: 680px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .reviews-header h2 {
    font-size: 28px;
  }

  .reviews-topbar {
    padding: 18px;
  }

  .reviews-filters {
    left: 0;
    right: 0;
    min-width: 0;
    max-width: none;
  }

  .reviews-rating__value {
    font-size: 32px;
  }

  .review-card__image {
    height: 168px !important;
  }

  .reviews-actions .btn {
    width: auto;
    min-width: 220px;
  }

  .reviews-actions {
    flex-direction: row;
  }
}
.feedback.container {
  position: relative;
  padding: 80px 0 90px;
  margin-top: 120px;
  margin-bottom: 120px;
  max-width: none;
}

.feedback.container:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: min(1400px, 95vw);
  height: 100%;
  border-radius: var(--ui-radius);
  background: linear-gradient(135deg, #f4efe6 0%, #ffffff 45%, #eef3e6 100%);
  box-shadow: 0 20px 60px rgba(37, 37, 37, 0.08);
  z-index: 0;
}

.feedback.container > * {
  position: relative;
  z-index: 1;
}

.swiper2 {
  width: min(1200px, 92vw);
  margin-top: 50px;
}

.swiper2 .swiper-slide {
  height: auto;
}

.swiper2 .slide-item {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 26px;
  border-radius: var(--ui-radius);
  background: #fff;
  box-shadow: 0 8px 24px rgba(37, 37, 37, 0.08);
  border: 1px solid rgba(143, 163, 78, 0.15);
}

.swiper2 .slide-item::before {
  content: "";
  position: absolute;
  inset: 10px -10px -10px 10px;
  border-radius: var(--ui-radius);
  background: rgba(143, 163, 78, 0.16);
  border: 1px solid rgba(143, 163, 78, 0.22);
  z-index: -1;
}

.swiper2 .slider-item-header {
  padding-left: 64px;
  min-height: 40px;
}

.slider-item-header:before {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(37, 37, 37, 0.18);
  background-color: #e9e4da;
}

.swiper2 .slider-item-header h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.swiper2 .slider-item-header p {
  font-size: 13px;
  color: #6a6a6a;
}

.item-rating {
  align-items: center;
  gap: 10px;
}

.rating-stars {
  float: none;
  gap: 2px;
}

.rstar {
  width: 16px;
  min-width: 16px;
  padding-right: 0;
}

.fb-photo,
.fb-photo-few .fb-photo {
  width: 130px;
  height: 86px;
  border-radius: var(--ui-radius);
  border: 1px solid rgba(37, 37, 37, 0.08);
  box-shadow: 0 8px 18px rgba(37, 37, 37, 0.12);
  background-color: #f3f0ea;
}

.fb-photo-few {
  gap: 8px;
}

.fb-comment {
  margin-top: 6px;
  padding-top: 10px;
  border-top: 1px dashed rgba(37, 37, 37, 0.12);
}

.fb-comment h3 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #8FA34E;
  margin-bottom: 6px;
}

.fb-comment p {
  font-size: 15px;
  line-height: 1.6;
  color: #2c2c2c;
}

.swiper2 .swiper-pagination-bullet {
  background: #8FA34E;
  opacity: 0.35;
}

.swiper2 .swiper-pagination-bullet-active {
  opacity: 1;
}

@media (max-width: 900px) {
  .feedback.container {
    padding: 60px 0 70px;
  }

  .swiper2 {
    width: 92vw;
  }

  .fb-photo,
  .fb-photo-few .fb-photo {
    width: 110px;
    height: 72px;
  }
}

@media (max-width: 600px) {
  .feedback.container:before {
    border-radius: var(--ui-radius);
  }

  .swiper2 .slide-item {
    padding: 18px;
  }

  .swiper2 .slider-item-header {
    padding-left: 56px;
  }
}
.js-catalog-product:not(.product-card--detail) .product_stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.js-catalog-product:not(.product-card--detail) .product_stats .stats_group {
  width: auto;
  max-width: none;
  flex: none;
  padding: 0 12px;
  box-sizing: border-box;
}

.js-catalog-product:not(.product-card--detail) .product_stats .stats_group:first-child {
  padding-left: 0;
}

.js-catalog-product:not(.product-card--detail) .product_stats .stats_group:last-child {
  padding-right: 0;
}

.js-catalog-product:not(.product-card--detail) .product_stats .stats_group ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  padding: 0;
  width: 100%;
}
.product-card--main.js-catalog-product:not(.product-card--detail) .product_stats {
  display: none;
  margin-top: 0;
}
button,
.btn,
.tel,
.product-card__details-btn,
.product-card__quick-btn,
.basket-actions__add,
.reviews-filter-toggle,
.filter-btn,
.basket-summary-promo,
.basket-summary-oneclick,
.cart-added-toast-tab {
  font-weight: 600 !important;
}

button,
button:hover,
button:focus,
button:active,
.btn,
.btn:hover,
.btn:focus,
.btn:active,
.tel,
.tel:hover,
.tel:focus,
.tel:active,
.button .tel,
.button .tel:hover,
.button .tel:focus,
.button .tel:active,
.button--center,
.button--center:hover,
.button--center:focus,
.button--center:active,
.product-card__details-btn,
.product-card__details-btn:hover,
.product-card__details-btn:focus,
.product-card__details-btn:active,
.product-card__quick-btn,
.product-card__quick-btn:hover,
.product-card__quick-btn:focus,
.product-card__quick-btn:active,
.basket-actions__add,
.basket-actions__add:hover,
.basket-actions__add:focus,
.basket-actions__add:active,
.reviews-filter-toggle,
.reviews-filter-toggle:hover,
.reviews-filter-toggle:focus,
.reviews-filter-toggle:active,
.filter-btn,
.filter-btn:hover,
.filter-btn:focus,
.filter-btn:active,
.basket-summary-promo,
.basket-summary-promo:hover,
.basket-summary-promo:focus,
.basket-summary-promo:active,
.basket-summary-oneclick,
.basket-summary-oneclick:hover,
.basket-summary-oneclick:focus,
.basket-summary-oneclick:active,
.review-form__actions .btn-primary,
.review-form__actions .btn-primary:hover,
.review-form__actions .btn-primary:focus,
.review-form__actions .btn-primary:active,
.review-success__btn,
.review-success__btn:hover,
.review-success__btn:focus,
.review-success__btn:active,
.contact-success__btn,
.contact-success__btn:hover,
.contact-success__btn:focus,
.contact-success__btn:active,
.home-delivery-showcase__btn,
.home-delivery-showcase__btn:hover,
.home-delivery-showcase__btn:focus,
.home-delivery-showcase__btn:active,
.home-delivery-calc__btn,
.home-delivery-calc__btn:hover,
.home-delivery-calc__btn:focus,
.home-delivery-calc__btn:active,
.video_feedback__show-more,
.video_feedback__show-more:hover,
.video_feedback__show-more:focus,
.video_feedback__show-more:active,
.reviews-actions .btn,
.reviews-actions .btn:hover,
.reviews-actions .btn:focus,
.reviews-actions .btn:active,
.reviews-topbar-actions .btn,
.reviews-topbar-actions .btn:hover,
.reviews-topbar-actions .btn:focus,
.reviews-topbar-actions .btn:active,
.cart-added-toast-tab,
.cart-added-toast-tab:hover,
.cart-added-toast-tab:focus,
.cart-added-toast-tab:active {
  box-shadow: none !important;
}
.home-delivery-showcase {
  background: transparent;
  padding: 0;
}

.home-delivery-showcase::before,
.home-delivery-showcase::after {
  display: none;
}

.home-delivery-showcase__inner {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
}

.home-delivery-showcase__content {
  background: transparent;
  border: none;
  padding: 0;
  color: #2b2b2b;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.home-delivery-showcase__title {
  margin: 0;
  color: #252525;
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 18px;
  text-transform: none;
}

.home-delivery-showcase__title span {
  font-weight: 400;
  font-size: 50px;
  text-transform: none;
}

.home-delivery-showcase__card {
  background: #fdfbf8;
  border-radius: 16px 0 0 16px;
  padding: 26px 28px;
  box-shadow: none;
  color: #3a3a3a;
  line-height: 1.55;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.home-delivery-showcase__card p {
  margin: 0;
  font-size: 16px;
}

.home-delivery-showcase__card strong {
  font-weight: 700;
}

.home-delivery-showcase__btn {
  margin: 8px 0 0;
  padding: 0 30px;
  width: 260px;
  min-width: 260px;
  max-width: 260px;
  height: 56px;
  line-height: 56px;
  border: none;
  border-radius: var(--ui-radius-buttons);
  background: #8FA34E;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .2px;
  cursor: pointer;
}

.home-delivery-showcase__btn:hover {
  background: #7f9445;
}

.home-delivery-showcase__media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 0 16px 16px 0;
  box-shadow: none;
}

@media (max-width: 991px) {
  .home-delivery-showcase__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .home-delivery-showcase__content {
    gap: 14px;
  }

  .home-delivery-showcase__title {
    font-size: 36px;
  }

  .home-delivery-showcase__card {
    border-radius: 16px;
  }

  .home-delivery-showcase__media img {
    min-height: 240px;
    border-radius: 16px;
  }
}

.home-delivery-modal {
  position: fixed;
  inset: 0;
  z-index: var(--modal-z-index);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: transparent;
  background-image: none;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0.2s ease;
}

.home-delivery-modal.is-open {
  visibility: visible;
  pointer-events: auto;
}

.home-delivery-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.home-delivery-modal.is-open .home-delivery-modal__backdrop {
  opacity: 1;
}

.home-delivery-modal__panel {
  position: relative;
  z-index: 1;
  width: min(980px, 96vw);
  max-height: 90vh;
  overflow: auto;
  background: #fdfbf8;
  border-radius: var(--ui-radius);
  padding: 28px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.home-delivery-modal__title {
  padding-left: 56px;
  padding-right: 56px;
  font-size: 26px;
  font-weight: 700;
  color: #252525;
  margin-bottom: 16px;
  text-align: center;
  box-sizing: border-box;
}

.home-delivery-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 6px;
  color: #8f8f8f;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.home-delivery-modal__close:hover svg path {
  fill: #8FA34E;
}

html.home-delivery-modal-open,
body.home-delivery-modal-open {
  overflow: hidden;
  overscroll-behavior: none;
}

body.home-delivery-modal-open {
  left: 0;
  right: 0;
  width: 100%;
}

.home-about-section {
  position: relative;
  isolation: isolate;
  overflow: visible;
  margin: 0;
  padding: 32px 0;
  background: var(--dark-section-background);
  background-size: auto, auto, 100% 100%;
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-position: center top, center top, center top;
}

.home-about-section__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(280px, 3fr);
  gap: 0;
  align-items: stretch;
}

.home-about-section__content {
  display: flex;
}

.home-about-section__card {
  position: relative;
  width: 100%;
  padding: 34px 36px;
  border-radius: 0;
  background: transparent;
  color: #fff;
  line-height: 1.7;
  box-sizing: border-box;
}

.home-about-section__card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 36px;
  width: 4px;
  bottom: 34px;
  border-radius: 999px;
  background: linear-gradient(180deg, #8FA34E 0%, rgba(143, 163, 78, 0.18) 100%);
}

.home-about-section__intro {
  display: block;
  margin-bottom: 24px;
  padding-left: 0;
}

.home-about-section__intro-main {
  flex: 1;
  min-width: 0;
}

.home-about-section__year {
  position: absolute;
  left: 0;
  bottom: 34px;
  display: block;
  font-size: 88px;
  font-weight: 800;
  line-height: 0.84;
  letter-spacing: -0.05em;
  color: rgba(143, 163, 78, 0.24);
  text-transform: uppercase;
  white-space: nowrap;
  transform: translateX(calc(-100% - 24px));
  pointer-events: none;
}

.home-about-section__title {
  margin: 10px 0 18px;
  color: #8FA34E;
  font-size: 50px;
  font-weight: 400;
  text-transform: none;
}

.home-about-section__title strong {
  font-weight: 700;
}

.home-about-section__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.home-about-section__facts span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 14px;
  border: 1px solid rgba(143, 163, 78, 0.34);
  border-radius: 999px;
  background: rgba(143, 163, 78, 0.12);
  color: #f7f4f0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.home-about-section__card p {
  margin: 0;
  font-size: 18px;
  color: #fff;
}

.home-about-section__card p + p {
  margin-top: 18px;
}

.home-about-section__accent {
  color: #8FA34E;
}

.home-about-section__stats {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  margin-top: 34px;
}

.home-about-section__stat {
  min-width: 0;
}

.home-about-section__stat-value {
  color: rgba(143, 163, 78, 0.9);
  font-size: 92px;
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.05em;
  white-space: nowrap;
}

.home-about-section__stat-note {
  margin-top: 12px;
  color: rgba(247, 244, 240, 0.8);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.home-about-section__media {
  position: relative;
  min-width: 0;
  display: flex;
  align-items: stretch;
  padding: 0;
  aspect-ratio: 2390 / 1792;
  overflow: hidden;
  border-radius: var(--ui-radius);
  background: transparent;
}

.home-about-section--technology {
  margin-top: 0;
  margin-bottom: 80px;
}

.home-about-section--technology .home-about-section__inner {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.home-about-section--technology .home-about-section__title {
  max-width: 720px;
  line-height: 0.92;
}

.home-about-section:not(.home-about-section--technology):not(.home-about-section--delivery) .home-about-section__title {
  line-height: 0.92;
}

.home-about-section--technology .home-about-section__card p {
  max-width: 760px;
}

@media (min-width: 992px) {
  .home-about-section--technology .home-about-section__media {
    aspect-ratio: 2590 / 1664;
    align-self: center;
    overflow: hidden;
    isolation: isolate;
  }

  .home-about-section--technology .home-about-section__media::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: url("../img/tech.webp") center / contain no-repeat;
    transform: scale(1);
    transform-origin: center center;
    transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform;
  }

  .home-about-section--technology .home-about-section__media img {
    opacity: 0;
    pointer-events: none;
  }

  .home-about-section--technology .home-about-section__media:hover::before {
    transform: scale(1.08);
  }

  .home-about-section:not(.home-about-section--technology):not(.home-about-section--delivery) .home-about-section__media {
    aspect-ratio: 1792 / 2390;
    align-self: center;
    overflow: hidden;
    isolation: isolate;
  }

  .home-about-section:not(.home-about-section--technology):not(.home-about-section--delivery) .home-about-section__media::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: url("../img/pts.webp") center / contain no-repeat;
    transform: scale(1);
    transform-origin: center center;
    transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform;
  }

  .home-about-section:not(.home-about-section--technology):not(.home-about-section--delivery) .home-about-section__media img {
    opacity: 0;
    pointer-events: none;
  }

  .home-about-section:not(.home-about-section--technology):not(.home-about-section--delivery) .home-about-section__media:hover::before {
    transform: scale(1.08);
  }
}

@media (min-width: 992px) and (max-width: 1366px) {
  .home-about-section {
    overflow-x: hidden;
  }

  .home-about-section__inner {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .home-about-section--technology .home-about-section__inner {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  }

  .home-about-section__card {
    padding-left: 20px;
    padding-right: 24px;
  }

  .home-about-section--technology .home-about-section__title {
    font-size: 42px;
  }

  .home-about-section--technology .home-about-section__card p {
    font-size: 15px;
    line-height: 1.25;
  }

  .home-about-section--delivery .home-about-section__card p,
  .home-about-section:not(.home-about-section--technology):not(.home-about-section--delivery) .home-about-section__card p {
    font-size: 15px;
    line-height: 1.25;
  }
}
.home-about-section.home-about-section--technology.is-about-visible .home-about-section__media:hover img,
.home-about-section--technology .home-about-section__media:hover img {
  transform: scale(1);
}

.home-about-section.is-about-visible:not(.home-about-section--technology):not(.home-about-section--delivery) .home-about-section__media:hover img,
.home-about-section:not(.home-about-section--technology):not(.home-about-section--delivery) .home-about-section__media:hover img {
  transform: scale(1);
}

.home-about-section--delivery {
  margin-top: 0;
}

.home-about-section--delivery .home-about-section__inner {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.home-about-section--delivery .home-about-section__title {
  max-width: 720px;
  line-height: 0.92;
}

.home-about-section--delivery .home-about-section__card p {
  max-width: 760px;
}

@media (min-width: 992px) {
  .home-about-section--delivery .home-about-section__media {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: auto;
    min-height: 100%;
    aspect-ratio: auto;
    justify-self: stretch;
    align-self: stretch;
    overflow: hidden;
  }

  .home-about-section--delivery .home-about-section__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }
}

.home-about-section--delivery .home-delivery-showcase__btn {
  margin: 20px 0 20px;
}

.home-about-section.home-about-section--delivery.is-about-visible .home-about-section__media:hover img,
.home-about-section--delivery .home-about-section__media:hover img {
  transform: scale(1.08);
}


.home-about-section__media img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: scale(1.16);
  transform-origin: center center;
  transition: transform 1.2s cubic-bezier(0.22, 0.61, 0.36, 1);
  border-radius: inherit;
  background: transparent;
}

.home-about-section__media picture {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.home-about-section.is-about-visible .home-about-section__media img {
  transform: scale(1);
}

@media (max-width: 991px) {
  .home-about-section {
    margin-bottom: 0;
    padding: 0px 0;
  }

  .home-about-section__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .home-about-section__card {
    padding: 28px 22px;
    border-radius: 0;
  }

  .home-about-section__card::before {
    top: 28px;
    bottom: 28px;
  }

  .home-about-section__intro {
    margin-bottom: 22px;
    padding-left: 0;
  }

  .home-about-section__year {
    position: static;
    display: inline-flex;
    gap: 6px;
    margin-bottom: 12px;
    transform: none;
    font-size: 56px;
    line-height: 0.9;
  }

  .home-about-section__title {
    font-size: 36px;
    margin: 8px 0 18px;
  }

  .home-about-section__stats {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
    margin-top: 28px;
  }

  .home-about-section__stat-value {
    font-size: 68px;
  }

  .home-about-section__stat-note {
    margin-top: 10px;
    font-size: 14px;
  }

  .home-about-section__facts span {
    font-size: 12px;
    min-height: 34px;
    padding: 7px 12px;
  }

  .home-about-section__media img {
    position: static;
    min-height: 260px;
  }

  .home-about-section__media {
    aspect-ratio: auto;
    padding: 0;
    border-radius: var(--ui-radius);
  }
}
.product-card--main {
  background: linear-gradient(180deg, #fffdfa 0%, #f7f2ea 100%);
  border: 1px solid #efe7db;
  border-radius: var(--ui-radius);
  box-shadow: 0 6px 16px rgba(37, 37, 37, 0.06);
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    background-color .22s ease;
}

.product-card--main:hover,
.product-card--main.is-image-hovered,
.product-card--main.is-details-hovered,
.product-card--main.is-card-hovered {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(37, 37, 37, 0.06);
}

.product-card--main::before,
.product-card--main:hover::before,
.product-card--main.is-image-hovered::before,
.product-card--main.is-details-hovered::before,
.product-card--main.is-card-hovered::before {
  opacity: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}
.header__burger {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 5.5px !important;
  width: auto !important;
  height: auto !important;
  min-width: 38px !important;
  min-height: 30.5px !important;
  padding: 8px !important;
  position: relative !important;
  background: none !important;
  border: 0 !important;
  box-sizing: border-box !important;
}

.header__burger::before,
.header__burger::after {
  content: none !important;
  display: none !important;
}

.header__burger span {
  position: static !important;
  display: block !important;
  width: 30px !important;
  height: 2.5px !important;
  min-height: 2.5px !important;
  max-height: 2.5px !important;
  background-color: #f7f4f0 !important;
  border-radius: 2px !important;
  box-shadow: none !important;
  opacity: 1 !important;
  transform: none !important;
  transition: transform 0.3s ease, opacity 0.3s ease !important;
}

.burger_wrap:hover .header__burger span {
  width: 30px !important;
}

.header__burger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg) !important;
}

.header__burger.active span:nth-child(2) {
  opacity: 0 !important;
  transform: scaleX(0) !important;
}

.header__burger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg) !important;
}

.video_body .heading .sale > h1 > .header_span {
  font-size: 1em !important;
  line-height: inherit !important;
  font-weight: 400 !important;
}

@media (min-width: 1401px) and (max-width: 1536px) {
  html {
    --site-container-width: 1260px;
    --site-container-gutter: 28px;
  }
}

@media (min-width: 992px) and (max-width: 1536px) {
  .header__body {
    height: 82px;
    padding-left: 2.4%;
    padding-right: 2.4%;
  }

  .header_logo_img {
    flex-basis: 118px;
    max-width: 118px;
  }

  .header_logo_img img {
    max-width: 118px;
    height: auto;
  }

  .line {
    height: 26px;
    margin-left: 12px;
    margin-right: 12px;
  }

  .burger_wrap {
    padding-right: 28px;
    gap: 8px;
  }

  .burger_wrap p,
  .basket_text {
    font-size: 12px;
  }

  .header__burger {
    min-width: 34px !important;
    min-height: 28px !important;
    padding: 7px !important;
  }

  .header__burger span {
    width: 27px !important;
    height: 2px !important;
    min-height: 2px !important;
    max-height: 2px !important;
  }

  .burger_wrap:hover .header__burger span {
    width: 27px !important;
  }

  .header .basket,
  .header .basket svg {
    width: 25px;
    height: 25px;
  }

  .location_wrap .location {
    padding-left: 32px;
  }

  .location_wrap .location:before {
    width: 25px;
    height: 25px;
  }

  .location p {
    font-size: 12px;
    line-height: 1.18;
  }

  .header__info {
    margin-right: 12px;
  }

  .header__contacts {
    margin-right: 28px;
  }

  #telephone,
  #telephone-2,
  .header__contacts #telephone {
    font-size: 16px;
  }

  .header .callback_button #open-modal-btn {
    height: 44px !important;
    min-height: 44px !important;
    max-height: 44px !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .header .callback_button #open-modal-btn > span:first-child {
    font-size: 13px !important;
  }

  .header .callback_button #open-modal-btn #time {
    font-size: 9px !important;
  }

  .video_body {
    height: 70vh;
    min-height: 560px;
  }

  .heading {
    left: 4.6%;
    top: 48%;
  }

  .video_body .heading .sale > h1 {
    font-size: clamp(40px, 3.15vw, 48px);
    line-height: 1.04;
  }

  .video_menu {
    left: 7.5%;
    bottom: 18%;
  }

  .vid_menu_link {
    padding: 13px 18px;
  }

  .video_menu p,
  .video_menu #low_price p {
    font-size: 14px;
  }

  .video_body + .advant {
    min-height: auto;
    margin-top: 24px;
    margin-bottom: 18px;
  }

  .video_body + .advant .icons {
    margin-top: 0;
  }

  .icon {
    margin-bottom: 34px;
  }

  .icon_text {
    margin-left: 18px;
  }

  .icon_img {
    flex-basis: 42px;
  }

  .icon_img img {
    max-width: 42px;
    max-height: 42px;
  }

  .icon_text h3 {
    font-size: 22px;
    line-height: 1.08;
  }

  .icon_text p {
    font-size: 15px;
    line-height: 1.28;
  }

  #advant_header,
  #product_header,
  .section-header__start {
    font-size: 42px;
  }

  .section-header.container#product_header + .products.container {
    gap: 28px;
    margin-top: 38px !important;
    margin-bottom: 90px !important;
  }

  .section-header.container#product_header + .products.container > .product-card--main {
    flex-basis: calc((100% - 56px) / 3);
    max-width: calc((100% - 56px) / 3);
  }

  .product-card--main {
    padding-left: 12px;
    padding-right: 12px;
  }

  .product-card--main .product_img {
    min-height: 210px;
  }

  .product-card--main .product_img img {
    max-width: 290px;
    max-height: 218px;
  }

  .product-card--main .product_title {
    font-size: 18px;
    min-height: 44px;
    margin-bottom: 4px;
  }

  .product-card--main .product_price {
    width: min(calc(100% - 12px), var(--product-main-visible-width, 100%));
    margin-left: 6px;
    margin-right: 6px;
    min-height: 56px;
    column-gap: 6px;
  }

  .product-card--main .product_price h4 {
    font-size: clamp(24px, 2vw, 30px);
  }

  .product-card--main .product_price__unit {
    font-size: 15px;
  }

  .product-card--main .product_price__old,
  .product-card--main .product-card__swatches-label {
    font-size: 12px;
  }

  .product-card--main .product-card__swatch {
    width: 15px;
    height: 15px;
  }

  .product-card--main .product-card__actions {
    margin-top: 14px;
    gap: 8px;
  }

  .products.container .product-card--main .product-card__details-btn,
  .products.container .product-card--main .product-card__quick-btn,
  .products.container .product-card--main.js-catalog-product:not(.product-card--detail) .basket-actions__add {
    height: 48px !important;
    min-height: 48px !important;
    max-height: 48px !important;
    font-size: 14px !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
}

@media (min-width: 992px) and (max-width: 1366px) {
  html {
    --site-container-width: 1080px;
    --site-container-gutter: 60px;
  }

  .header__body {
    height: 76px;
    padding-left: 2%;
    padding-right: 2%;
  }

  .header_logo_img,
  .header_logo_img img {
    flex-basis: 76px;
    max-width: 76px;
  }

  .burger_wrap {
    padding-right: 20px;
  }

  .location_wrap .location {
    padding-left: 28px;
  }

  .location_wrap .location:before {
    width: 23px;
    height: 23px;
  }

  .header__contacts {
    margin-right: 20px;
  }

  #telephone,
  #telephone-2,
  .header__contacts #telephone {
    font-size: 18px;
  }

  .header .callback_button #open-modal-btn {
    height: 42px !important;
    min-height: 42px !important;
    max-height: 42px !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .video_body {
    height: 75vh;
    height: 75dvh;
    min-height: 0;
  }

  .video_body .heading .sale > h1 {
    font-size: clamp(36px, 3.35vw, 42px);
  }

  .video_body .container {
    width: calc(100% - 48px);
    max-width: none;
  }

  .home-about-section__inner.container,
  .gallery-showcase-section > .container:not(.gallery-slider),
  .reviews-container,
  .contacts.container,
  .section-header.container,
  .products.container {
    width: min(calc(100% - 120px), 1080px);
  }

  .video_body + .advant {
    width: calc(100% - 48px);
    max-width: none;
    height: 25vh;
    height: 25dvh;
    min-height: 25vh;
    min-height: 25dvh;
    margin-top: 0;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .video_body + .advant .icons {
    margin-top: 0;
    margin-bottom: 0;
    align-items: center;
    align-content: center;
    row-gap: 34px;
  }

  .video_body + .advant .icon {
    margin-bottom: 0;
  }

  .video_menu {
    left: 4.6%;
    bottom: 17%;
  }

  .video_menu .vid_menu_link {
    min-height: 46px;
    padding: 0 14px;
  }

  .vid_menu_link {
    padding: 0 14px;
  }

  .video_menu #low_price {
    padding: 0 18px;
  }

  .video_menu p,
  .video_menu #low_price p {
    font-size: 13px;
  }

  .manager-widget {
    width: 62px;
    height: 62px;
    right: 24px;
    bottom: 24px;
  }

  .manager-widget__trigger {
    width: 58px;
    height: 58px;
  }

  .manager-widget.is-intro-visible .manager-widget__trigger::before {
    inset: -6px;
  }

  :root {
    --site-section-title-font-size: 38px;
  }

  #advant_header,
  #product_header,
  .section-header__start,
  .section-header.container#product_header .section-header__title-default,
  .section-header.container#product_header .section-header__title-mobile-lines,
  .section-header.container#product_header .section-header__title-mobile-lines > span {
    font-size: 38px !important;
  }

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

  .icon_text p {
    font-size: 14px;
  }
}
