@charset "UTF-8";
.wrap {
  font-family: var(--creamR), sans-serif;
  max-width: 100vw;
  min-height: 100vh;
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  color: var(--color-olive-900);
  background: var(--color-secondary-skin);
}
.wrap__main {
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 1;
      flex: 1;
  -ms-flex-direction: column;
      flex-direction: column;
  position: relative;
  z-index: 1;
}
.wrap__main.alcohol {
  background-color: #ECF0E7;
}
.wrap__main.freeze {
  background-color: #DBD2BB;
}
.wrap__main.catering {
  background-color: #DCE4D2;
}
.wrap.hidden {
  height: 100vh;
}

.container {
  width: 100%;
  max-width: 144rem;
  margin: 0 auto;
  padding: 0 6.4rem;
}

.section__checkbox {
  position: relative;
}
.section__top {
  display: -ms-flexbox;
  display: flex;
  gap: 1.6rem;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.section__top > * {
  width: 50%;
}
.section__top-title {
  font: 400 3.6rem/100% var(--creamM);
}
.section__top-subtitle {
  font: 400 2rem/3rem var(--creamM);
}
.section__flex {
  display: -ms-flexbox;
  display: flex;
}
.section__form {
  background: var(--color-secondary-natural);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 1.2rem;
  border-radius: 2rem;
  padding: 3.2rem;
}
.section__form-btn {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  gap: 1.2rem;
  margin-top: 2.8rem;
}
.section__form-btn > * {
  max-width: 19.2rem;
  width: 100%;
}
.section__form-title {
  font: 500 2.4rem/100% var(--norms);
}
.section__form-subtitle {
  font: 400 2rem/3rem var(--creamR);
  margin-bottom: 1.6rem;
}
.section__form-block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.6rem;
}
.section__input {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 0.8rem;
  width: 100%;
}
.section__input.half {
  width: calc(50% - 0.8rem);
}
.section__input label {
  color: #1E1E1E;
  font: 400 1.4rem/2rem var(--creamR);
}
.section__input input, .section__input textarea {
  width: 100%;
  padding: 0.6rem 1.6rem;
  border-radius: 1rem;
  border: 1px solid var(--color-olive-600);
  font: 400 1.6rem/2.8rem var(--creamR);
  background: #FFFFFF;
}
.section__input input:-ms-input-placeholder, .section__input textarea:-ms-input-placeholder {
  color: #B3C49E;
}
.section__input input::placeholder, .section__input textarea::placeholder {
  color: #B3C49E;
}
.section__input textarea {
  resize: none;
  height: 9.3rem;
}
.section__block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 4rem;
}
.section__block .breadcrumbs {
  margin: 0;
}
.section__nav {
  display: -ms-flexbox;
  display: flex;
  gap: 3.2rem;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.section__nav > * {
  width: 7.4rem;
  height: 4rem;
  border-radius: 1.2rem;
  background: var(--color-olive-600);
  position: relative;
  transition: all 0.2s ease;
  cursor: pointer;
}
.section__nav > *:hover {
  background: var(--color-btn-hover);
}
.section__nav > *:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2.8rem;
  height: 2.8rem;
  transition: 0.2s ease;
  background: url(../img/arr-little.svg) center/2.8rem 2.8rem no-repeat;
}
.section__nav > *.swiper-button-disabled {
  background: var(--color-olive-200);
}
.section__nav > *.swiper-button-disabled:after {
  filter: brightness(0) invert(1);
}
.section__nav-prev:after {
  transform: translate(-50%, -50%) rotate(180deg);
}
.section__title {
  font: 400 2.8rem/100% var(--creamM);
}
.section__title.center {
  text-align: center;
  margin: 0 auto;
}
.section__title.big {
  font-size: 3.6rem;
}
.section__text {
  font: 400 1.8rem/3rem var(--creamR);
}
.section__text.center {
  text-align: center;
}
.section__btn {
  white-space: nowrap;
  text-align: center;
  border-radius: 1.2rem;
  padding: 0.85rem 4.8rem;
  color: var(--color-olive-900);
  background: var(--color-olive-600);
  font: 400 1.6rem/2.3rem var(--creamM);
  transition: 0.4s ease;
  display: block;
  width: 100%;
}
.section__btn.disabled {
  color: white;
  background: #CBD7BC;
  pointer-events: none;
}
.section__btn:hover {
  transition: 0.2s ease;
  background: var(--color-btn-hover);
}
.section__btn.border {
  background: white;
  color: var(--color-olive-900);
  position: relative;
}
.section__btn.border:after {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  height: 100%;
  border-radius: 1.2rem;
  border: 0.2rem solid var(--color-olive-600);
  pointer-events: none;
}
.section__btn.border:hover {
  transition: 0.2s ease;
  background: var(--color-olive-50);
}
.section__btn.border:hover:after {
  border: 0.2rem solid #3D620E;
}

strong {
  font-family: var(--creamM);
}

.content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 1.6rem;
}
.content p, .content p > *, .content span, .content li {
  font: 400 1.8rem/3rem var(--creamR);
}
.content ol, .content ul {
  padding-left: 2rem;
}
.content ul {
  padding-left: 2.8rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 1.6rem;
}
.content ul li {
  position: relative;
}
.content ul li:after {
  content: "";
  position: absolute;
  top: 1.5rem;
  left: -1.5rem;
  width: 0.5rem;
  height: 0.5rem;
  background-color: #1C2D06;
  border-radius: 50%;
}
.content strong {
  font-weight: 700;
}
.content h2, .content h3, .content h4, .content h5, .content h6 {
  font: 400 2.8rem/100% var(--creamM);
}
.content a {
  text-decoration: underline;
}

.modal {
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
}
.modal__close {
  position: absolute;
  top: 3.2rem;
  right: 4rem;
  width: 2.4rem;
  height: 2.4rem;
  cursor: pointer;
  z-index: 5;
}
.modal__wrap {
  position: relative;
  width: 100%;
  height: 100%;
}
.modal__wrap:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(40, 38, 31, 0.6);
  top: 0;
  left: 0;
}
.modal__content {
  max-width: 78.2rem;
  width: 100%;
  overflow: hidden;
  border-radius: 2.8rem;
  background-color: white;
  position: absolute;
  margin: 0 auto;
  top: 50%;
  left: 50%;
  max-height: 95vh;
  transform: translate(-50%, -50%);
  z-index: 6;
}
.modal__content.small {
  max-width: 57.6rem;
}
.modal__content.big {
  max-width: 85.1rem;
}
.modal__content-delete {
  display: none;
}
.modal__overflow {
  padding: 5.6rem 4rem 3.2rem;
  width: 100%;
  max-height: 95vh;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 3.2rem;
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}
.modal__overflow::-webkit-scrollbar {
  background-color: transparent;
  width: 0.4rem;
}
.modal__overflow::-webkit-scrollbar-thumb {
  background-color: #8EA76E;
}
.modal__btn {
  display: -ms-flexbox;
  display: flex;
  gap: 1.2rem;
  align-items: center;
  justify-content: center;
}
.modal__btn > * {
  width: max-content;
}


.modal__title {
  font: 400 2.8rem/100% var(--creamM);
  text-align: center;
}
.modal__text {
  font: 400 1.6rem/2.8rem var(--creamR);
  text-align: center;
}
.modal__favourite .section__text {
  margin: 0 auto 0.8rem;
  max-width: 37.5rem;
}
.modal__favourite .section__btn {
  max-width: 24rem;
  margin: 0 auto -1.6rem;
}
.modal__cart-content {
  display: none;
}
.modal__cart-content .modal__title {
  margin-bottom: 3.2rem;
}
.modal__cart-content .order__btn {
  margin-top: 4rem;
}

.about {
  background: var(--color-secondary-skin);
}
.about .container {
  padding: 6.4rem;
}
.about__img {
  overflow: hidden;
  aspect-ratio: 1312/560;
  border-radius: 3.2rem;
  margin: 6.4rem 0 4rem;
}
.about__btn {
  max-width: 38.5rem;
  margin: 4rem auto 0;
}
.about__stats {
  display: -ms-flexbox;
  display: flex;
  gap: 3.2rem;
}
.about__stats > * {
  display: -ms-flexbox;
  display: flex;
  width: calc((100% - 6.4rem) / 3);
}
.about__stats .stat {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 0.8rem;
}
.about__stats .count {
  color: var(--color-olive-600);
  font: 400 6rem/100% var(--creamM);
  margin-bottom: 0.4rem;
}
.about__stats h4 {
  font: 400 1.8rem/3rem var(--creamB);
}
.about__stats p {
  font: 400 1.6rem/2.8rem var(--creamR);
}
.about__desc {
  background: var(--color-olive-100);
}
.about__desc .container {
  padding: 6.4rem;
}
.about__desc-list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}
.about__desc-item {
  display: -ms-flexbox;
  display: flex;
  padding: 4rem 0;
  gap: 8.6rem;
  position: relative;
}
.about__desc-item .section__text {
  width: 51%;
}
.about__desc-item:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--color-olive-900);
}
.about__desc-item:first-child:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--color-olive-900);
}
.about__desc-title {
  width: 15.5%;
  font: 500 2.6rem/100% var(--norms);
}
.about__desc-img {
  width: 24.5%;
  aspect-ratio: 307/152;
  border-radius: 2rem;
  overflow: hidden;
}
.about__info {
  background: var(--color-olive-600);
}
.about__info .container {
  padding: 6.4rem;
}
.about__info-flex {
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
}
.about__info .section__block {
  gap: 6.4rem;
}
.about__info-text {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 4rem;
  width: calc(50% - 2rem);
}
.about__info-img {
  aspect-ratio: 64/56;
  overflow: hidden;
  width: calc(50% - 2rem);
  border-radius: 2.4rem;
}
.about__info-title {
  font: 400 2.8rem/100% var(--creamM);
}
.about__bottom {
  background: var(--color-secondary-skin);
}
.about__bottom .container {
  padding: 6.4rem 6.4rem 8rem;
}
.about__bottom-img {
  aspect-ratio: 1312/560;
  overflow: hidden;
  border-radius: 3.2rem;
}

.delivery {
  background: var(--color-secondary-skin);
}
.delivery .container {
  padding: 6.4rem;
}
.delivery__block {
  display: -ms-flexbox;
  display: flex;
  gap: 3.2rem;
  -ms-flex-align: start;
      align-items: flex-start;
}
.delivery__list {
  width: calc(50% - 1.6rem);
}
.delivery__img {
  width: calc(50% - 1.6rem);
  aspect-ratio: 1/1;
  border-radius: 3.2rem;
}
.delivery__item {
  display: -ms-flexbox;
  display: flex;
  padding: 3.2rem 0 2rem;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 2rem;
  position: relative;
}
.delivery__item-title {
  color: #436C0F;
  font: 500 2.4rem/100% var(--norms);
}
.delivery__item:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--color-olive-900);
}
.delivery__item:first-child:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--color-olive-900);
}

[type=checkbox] + label {
  font: 400 1.4rem/2rem var(--creamR);
  padding-left: 2.6rem;
  cursor: pointer;
  position: relative;
  display: inline-block;
}

[type=checkbox] + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 0.4rem;
  border: 0.1rem solid var(--color-olive-600);
  background: transparent;
  background: white;

}

[type=checkbox]:checked + label:after {
  content: "";
  position: absolute;
  top: 0.3rem;
  left: 0.3rem;
  width: 1.4rem;
  height: 1.4rem;
  background: url(../img/check.svg) center/1.4rem 1.4rem no-repeat;
}

.header {
  position: absolute;
  width: 100%;
  height: 100%;
}
.header__fixed {
  width: 100%;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 5;
  background: var(--color-olive-600);
}
.header .container {
  padding: 1.6rem 6.4rem;
}
.header__top {
  padding: 0.65rem 1.6rem;
  background: #F4F6F1;
  position: relative;
  z-index: 2;
}
.header__top > * {
  text-align: center;
  font: 400 1.6rem/2.3rem var(--creamM);
}
.header__block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  gap: 1rem;
}
.header__block-left {
  display: -ms-flexbox;
  display: flex;
  gap: 5.9rem;
  -ms-flex-align: center;
      align-items: center;
}
.header__logo {
  width: 6.7rem;
  min-width: 6.7rem;
}
.header__submenu {
  position: absolute;
  padding: 2rem;
  width: 22.8rem;
  left: 0;
  box-shadow: 0px 0px 31.9px 0px #8EA76E80;
  top: calc(100% - 0.2rem);
  opacity: 0;
  visibility: hidden;
  display: -ms-flexbox;
  display: flex;
  transition: 0.2s ease;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 3.2rem;
  z-index: 10;
  border-radius: 2rem;
  font: 400 1.8rem/2rem var(--creamM);
  background: #C5D1B5;
}
.header__submenu a {
  transition: 0.2s ease;
  font: 400 1.8rem/2rem var(--creamM);
}
.header__submenu a:hover {
  color: var(--color-primary);
}
.header__menu {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 2.6rem;
  color: var(--color-black);
}
.header__menu-btn {
  display: none;
}
.header__menu-item {
  position: relative;
  cursor: pointer;
}
.header__menu-item > a {
  white-space: nowrap;
  padding: 1.8rem 1.1rem;
  position: relative;
  display: block;
  transition: 0.2s ease;
  font: 400 1.8rem/2rem var(--creamM);
}
.header__menu-item.active:after {
  content: "";
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  height: 5px;
  background: #B3C49E;
  width: calc(100% - 2.2rem);
}
.header__menu-sub > a {
  position: relative;
  padding-right: 2.6rem;
}
.header__menu-sub > a:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 2rem;
  height: 2rem;
  transition: 0.2s ease;
  background: url(../img/down.svg) center/2rem 2rem no-repeat;
}
.header__menu-sub.active:after {
  left: 1.1rem;
  transform: unset;
  width: calc(100% - 3.7rem);
}
.header__info {
  display: -ms-flexbox;
  display: flex;
  gap: 1.6rem;
  -ms-flex-align: center;
      align-items: center;
}
.header__info > * {
  width: 4rem;
}
.header__burger {
  display: none;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  z-index: 1;
  width: 3.2rem;
  height: 3.2rem;
  transition: 0.2s ease;
}
.header__burger-block {
  width: 2.3rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 0.6rem;
}
.header__burger span {
  transition: 0.2s ease;
  background-color: var(--color-olive-900);
  width: 1.7rem;
  height: 0.25rem;
  border-radius: 50px;
}
.header__burger span:nth-child(2) {
  width: 2.2rem;
}

.main {
  background: var(--color-secondary-skin);
}
.main .container {
  padding: 6.4rem 6.4rem 0;
}
.main .section__nav {
  bottom: 4rem;
  right: 4rem;
  position: absolute;
  z-index: 2;
}
.main__block {
  position: relative;
}
.main__info {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  gap: 2rem;
  margin-bottom: 6.4rem;
}
.main__title {
  font: 400 4.4rem/100% var(--creamM);
  width: 55%;
}
.main__text {
  font: 500 2.4rem/100% var(--norms);
  width: 40%;
}
.main__img {
  border-radius: 3.2rem;
  aspect-ratio: 1313/553;
  overflow: hidden;
}

.breadcrumbs {
  display: -ms-flexbox;
  display: flex;
  gap: 1.3rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  row-gap: 0rem;
  margin-bottom: 4rem;
}
.breadcrumbs a {
  cursor: pointer;
  font: 400 1.8rem/2rem var(--creamM);
  position: relative;
}
.breadcrumbs a:last-child {
  color: #A9BB91;
}
.breadcrumbs a:not(:last-child):before {
  content: "/";
  font: 400 1.8rem/2rem var(--creamM);
  color: var(--color-olive-900);
  position: absolute;
  top: 50%;
  right: -1.2rem;
  transform: translateY(-50%);
}

.touch {
  background: #DBD2BB;
}
.touch .container {
  padding: 6.4rem 6.4rem 8rem;
}
.touch .section__flex {
  gap: 3.2rem;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.touch__info {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 4rem;
  width: 40%;
}
.touch__item {
  display: -ms-flexbox;
  display: flex;
  gap: 1.2rem;
}
.touch__item-icon {
  width: 2.8rem;
  height: 2.8rem;
}
.touch__item-text {
  display: -ms-flexbox;
  display: flex;
  gap: 1.2rem;
  -ms-flex-direction: column;
      flex-direction: column;
}
.touch__item-text h4 {
  font: 400 2rem/3rem var(--creamM);
}
.touch__form {
  width: 57.3%;
}
.touch__form .section__btn {
  max-width: 38.5rem;
  margin-top: 0.8rem;
}
.touch__center {
  background: var(--color-olive-100);
}
.touch__center .container {
  padding: 6.4rem;
}
.touch__center .section__form {
  padding: 3.2rem 4.8rem;
  margin: 0 auto;
}
.touch__center .section__form-subtitle, .touch__center .section__form-title {
  text-align: center;
}
.touch__center .section__btn {
  max-width: 100%;
}
.touch__terms {
  background: #C5D1B5;
}
.touch__terms .container {
  padding: 6.4rem;
}
.touch__terms .touch__form {
  width: 51%;
}

.top {
  background: var(--color-secondary-skin);
}
.top .container {
  padding: 6.4rem;
}
.top__block {
  margin-bottom: 6.4rem;
}
.top__shop-list {
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}
.top__shop-item {
  width: calc((100% - 4rem) / 3);
  border-radius: 1.6rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  gap: 1.2rem;
  padding: 1rem;
}
.top__shop-item span {
  text-transform: uppercase;
  padding-left: 0.8rem;
  font: 400 1.8rem/2rem var(--creamM);
}
.top__shop-item:after {
  border-radius: 1.6rem;
}
.top__shop-icon {
  width: 4.8rem;
}
.top__shop-arr {
  width: 3.2rem;
}

.step {
  background: var(--color-secondary-skin);
}
.step .container {
  padding: 7.6rem 6.4rem;
}
.step__list {
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
}
.step__item {
  width: calc((100% - 4rem) / 3);
  display: -ms-flexbox;
  display: flex;
  padding: 3.2rem;
  border-radius: 2.4rem;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 1.6rem;
  background-color: white;
  position: relative;
}
.step__item:not(:last-child):after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -2rem;
  width: 5.1rem;
  height: 4.6rem;
  transition: 0.2s ease;
  background: url(../img/step.svg) center/5.1rem 4.6rem no-repeat;
}
.step__img {
  width: 5.4rem;
  height: 5.4rem;
}
.step__title {
  width: -moz-max-content;
  width: max-content;
  position: relative;
}
.step__title > * {
  position: relative;
  z-index: 1;
  font: 400 2rem/2.3rem var(--creamL);
}
.step__title:before {
  z-index: 0;
  content: "";
  position: absolute;
  bottom:0;
  left: 50%;
  transform: translateX(-50%);
  width: 110%;
  height: 1.2rem;
  background: #ECF0E7;
}
.step__item:nth-child(2) .step__title:before {
  background: #C5D1B5;
}
.step__item:nth-child(3) .step__title:before {
  background: #A9BB91;
}
.step__text {
  font: 400 1.8rem/3rem var(--creamR);
}
.step__satisfaction {
  margin-top: 4rem;
  display: -ms-flexbox;
  display: flex;
  gap: 3.2rem;
  -ms-flex-direction: column;
      flex-direction: column;
}
.step__satisfaction-text {
  max-width: 1174px;
  margin: 0 auto 0.8rem;
  text-align: center;
  font: 400 2.2rem/3.6rem var(--norms);
}
.step__satisfaction-img {
  width: 100%;
  overflow: hidden;
  border-radius: 3.2rem;
  aspect-ratio: 1313/400;
  margin-bottom: -28rem;
  z-index: 1;
}

.product__item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  position: relative;
  border-radius: 2.4rem;
  padding: 1.6rem;
  background: white;
  gap: 2.4rem;
  max-width: 31.3rem;
  width: 100%;
}
.product__img {
  aspect-ratio: 281/230;
  border-radius: 2rem;
  overflow: hidden;
}
.product__info {
  -ms-flex-positive: 1;
      flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  gap: 0.7rem;
  -ms-flex-direction: column;
      flex-direction: column;
}
.product__info-top {
  display: -ms-flexbox;
  display: flex;
  gap: 1.6rem;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.product__like {
  position: absolute;
  width: 2.8rem;
  height: 2.4rem;
  top: 2.4rem;
  right: 2.2rem;
  cursor: pointer;
  z-index: 3;
}
.product__like:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  width: 2.4rem;
  height: 2.4rem;
  background: url(../img/like-empty.svg) center/2.4rem 2.4rem no-repeat;
}
.product__like-full:after {
  background: url(../img/heart-full.svg) center/2.4rem 2.4rem no-repeat;
}
.product__title {
  font: 400 1.8rem/2rem var(--creamM);
}
.product__price {
  font: 400 1.8rem/2.3rem var(--creamH);
}
.product__weight {
  font: 400 1.4rem/2rem var(--creamR);
}
.product__add {
  width: 100%;
}
.product__list .swiper-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
}
.product__list .swiper-slide {
  width: calc((100% - 6rem) / 4);
  height: unset;
  display: -ms-flexbox;
  display: flex;
}
.product .container {
  padding: 4rem 6.4rem 6.4rem;
  position: relative;
}
.product__slider {
  width: 40%;
  padding: 0;
  background: transparent;
  max-width: unset;
}
.product__block {
  display: -ms-flexbox;
  display: flex;
  gap: 3.2rem;
  -ms-flex-align: start;
      align-items: flex-start;
}
.product__block-description {
  width: 60%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 2rem;
}
.product__block-info {
  padding: 2rem;
  border-radius: 2.4rem;
  background: white;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 1.2rem;
}
.product__block-info:not(:first-child):last-child {
  padding: 0 2rem;
}
.product__block-price {
  color: #436C0F;
}
.product__block-content {
  gap: 1.2rem;
  margin: 0.4rem 0 2rem;
}
.product__block-content ul {
  gap: 1.2rem;
}
.product__block-article {
  font: 400 1.6rem/2.3rem var(--creamR);
  color: white;
  padding: 0 1.55rem;
  border-radius: 0.4rem;
  background: #436C0F;
  width: -moz-max-content;
  width: max-content;
  display: block;
}
.product__block-bottom {
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -ms-flex-align: center;
      align-items: center;
}
.product__block-bottom .section__btn {
  max-width: 27.1rem;
}
.product__scroll {
  display: none;
  position: fixed;
  box-shadow: 0 0 3.2rem 0 rgba(142, 167, 110, 0.5019607843);
  width: 100%;
  background: white;
  padding: 2rem;
  border-radius: 2.4rem;
  max-width: 131.2rem;
  top: 11.6rem;
  left: 50%;
  z-index: 5;
  transform: translateX(-50%);
}
.product__scroll-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  gap: 2.4rem;
  -ms-flex-align: center;
      align-items: center;
}
.product__scroll-img {
  width: 8rem;
  height: 8rem;
  border-radius: 1.2rem;
  overflow: hidden;
}
.product__scroll-left {
  display: -ms-flexbox;
  display: flex;
  gap: 2.4rem;
  -ms-flex-align: center;
      align-items: center;
}
.product__scroll-title {
  font: 500 2.4rem/100% var(--norms);
}
.product__scroll-price {
  color: #436C0F;
  font: 500 2.4rem/100% var(--norms);
}
.product__desc .container {
  padding: 6.4rem;
}
.product__gallery {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 1.6rem;
}
.product__slider-main {
  aspect-ratio: 1/1;
  overflow: hidden;
  width: 100%;
  img{
    border-radius: 2rem;
  }
}
.product__slider-thumbnail {
  width: 100%;
  overflow: hidden;
}
.product__slider-thumbnail .swiper-slide {
  cursor: pointer;
  overflow: hidden;
  aspect-ratio: 1/1;

  img{
    border-radius: 1.2rem;
  }
}
.product__slider-thumbnail .swiper-slide-thumb-active {
  position: relative;
}
.product__slider-thumbnail .swiper-slide-thumb-active:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 1.2rem;
  pointer-events: none;
  border: 0.1rem solid #8EA76E;
}

.box {
  background: #C5D1B5;
}
.box .container {
  padding: 6.4rem;
}
.box .section__title {
  margin-bottom: 3.2rem;
}
.box__list {
  display: -ms-flexbox;
  display: flex;
  gap: 0 3.2rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.box__item {
  width: calc((100% - 3.2rem) / 2);
  padding: 3.2rem 0;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -ms-flex-direction: column;
      flex-direction: column;
  border-bottom: 0.1rem solid #8EA76E;
}
.box__item:nth-child(1), .box__item:nth-child(2) {
  border-top: 0.1rem solid #8EA76E;
}
.box__img {
  width: 8rem;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 1.6rem;
  margin-bottom: 0.6rem;
}
.box__title {
  font: 400 2rem/3rem var(--creamM);
}
.box__text {
  font: 400 1.6rem/2.8rem var(--creamR);
}

.faq {
  background: white;
}
.faq .container {
  padding: 6.4rem 6.4rem 8rem;
}
.faq__flex {
  display: -ms-flexbox;
  display: flex;
  gap: 3.2rem;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.faq  .section__text{
  color:#3D620E;
}
.faq  .faq__content{
  color:#304D0B;
}
.faq__info {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 2rem;
  max-width: 48.8rem;
}
.faq__item {
  transition: 0.2s ease;
  position: relative;
}
.faq__item:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-bottom: 0.1rem solid var(--color-olive-600);
  pointer-events: none;
}
.faq__item:first-child:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-top: 0.1rem solid var(--color-olive-600);
  pointer-events: none;
}
.faq__header {
  padding: 2rem 3rem 2rem 0;
  position: relative;
  cursor: pointer;
  -ms-flex-direction: column;
      flex-direction: column;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  transition: all 0.2s ease;
}
.faq__header > * {
  padding-right: 2.6rem;
  font: 400 1.8rem/3rem var(--creamB);
}
.faq__header:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 2.4rem;
  height: 2.4rem;
  background: url(../img/plus-circle.svg) center/2.4rem 2.4rem no-repeat;
}
.faq__content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.2rem;
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: height 0.4s ease, opacity 0.3s ease;
}
.faq__content p, .faq__content p > *, .faq__content span, .faq__content li {
  font: 400 1.6rem / 2.8rem var(--creamR);
}
.faq__open {
  position: relative;
}
.faq__open .faq__content {
  padding: 0.4rem 0 2rem;
  opacity: 1;
  transition: height 0.4s ease, opacity 0.3s ease;
}
.faq__open .faq__header:after {
  transition: all 0.3s ease;
  background: url(../img/minus-circle.svg) center/2.4rem 2.4rem no-repeat;
}
.faq__list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 48.7%;
}
.faq__list-product {
  width: 100%;
}
.faq__list-product .faq__header > * {
  font: 400 2rem/3rem var(--creamM);
}
.faq__list-product .faq__header:after {
  background: url(../img/faq-arr.svg) center/2.4rem 2.4rem no-repeat;
}
.faq__list-product .faq__content {
  padding-top: 0;
}
.faq__list-product .faq__open .faq__header:after {
  transform: translateY(-50%) rotate(-180deg);
  background: url(../img/faq-arr.svg) center/2.4rem 2.4rem no-repeat;
}
.faq__list-product .faq__item:first-child:before {
  display: none;
}
.faq__list-product .faq__item:last-child:after {
  display: none;
}

.review {
  background: white;
}
.review .container {
  padding: 27.4rem 0 8rem 6.4rem;
}
.review__img {
  width: 9.6rem;
  height: 9.6rem;
}
.review__item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 1.6rem;
  padding: 3.2rem;
  border-radius: 2.4rem;
  background: var(--color-olive-50);
  max-width: 41.6rem;
  width: 100%;
  height: 100%;

}
.review .section__nav {
  margin-right: 6.4rem;
}
.review__top {
  display: -ms-flexbox;
  display: flex;
  gap: 2.4rem;
}
.review__top-info {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 0.8rem;
}
.review__star {
  width: -moz-max-content;
  width: max-content;
  height: 2rem;
}
.review__author {
  font: 400 2rem/3rem var(--creamM);
}
.review__city {
  font: 400 1.4rem/2.3rem var(--creamL);
}
.review__content {
  font: 400 1.8rem / 3rem var(--creamR);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 8;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 24rem;
  transition: max-height 0.3s ease;
}
.review__content.expanded {
  -webkit-line-clamp: unset;
  display: block;
  overflow: visible;
  max-height: 100rem;
}
.review__link {
  display: none;
  cursor: pointer;
  font: 400 1.8rem/2rem var(--creamM);
}
.review__list {
  width: 100%;
}
.review__list .swiper-wrapper {
  display: -ms-flexbox;
  display: flex;
}
.review__list .swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: auto;
  box-sizing: border-box;
  display: flex;
  height: auto !important;
}



.review .swiper-wrapper {
  align-items: stretch;
  display: flex;
  align-items: stretch;
}

.catalog__apply {
  display: none;
}
.catalog__list {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.catalog__list > * {
  width: calc((100% - 4rem) / 3);
}
.catalog__form-wrapper {
  max-width: 31.3rem;
  width: 100%;
}
.catalog .container {
  padding: 4rem 6.4rem 8rem;
}
.catalog__banner {
  aspect-ratio: 1313/400;
  border-radius: 3.2rem;
  overflow: hidden;
}
.catalog__mob {
  max-width: 31.3rem;
  width: 100%;
}
.catalog__category {
  display: -ms-flexbox;
  display: flex;
  gap: 1.6rem;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  max-width: 95.7rem;
  width: 100%;
  margin: 0 auto;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.catalog__category-item {
  padding: 1.4rem 3.6rem;
  border-radius: 2.4rem;
  background: white;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  gap: 0.8rem;
}
.catalog__category-item:after {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  height: 100%;
  border-radius: 2.4rem;
  border: 0.2rem solid var(--color-olive-100);
  pointer-events: none;
}
.catalog__category-item.active {
  background: #B3C49E;
}
.catalog__category-item img {
  width: 1.8rem;
}
.catalog__category-item > * {
  white-space: nowrap;
  font: 400 1.8rem/2rem var(--creamM);
}
.catalog__flex {
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -ms-flex-align: start;
      align-items: flex-start;
}
.catalog__reset {
  font: 400 1.8rem/2rem var(--creamM);
  padding-right: 2rem;
  position: relative;
  white-space: nowrap;
}
.catalog__reset:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 1.6rem;
  height: 1.6rem;
  background: url(../img/clear-filter.svg) center/1.6rem 1.6rem no-repeat;
}
.catalog__found {
  padding: 2rem 0;
  position: relative;
}
.catalog__found:after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 0.1rem;
  background: var(--color-olive-600);
}
.catalog__found:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 0.1rem;
  background: var(--color-olive-600);
}
.catalog__found-count {
  font: 400 2rem/3rem var(--creamM);
}
.catalog__found-bottom {
  margin-top: 2rem;
  display: none;
  gap: 2.4rem;
  -ms-flex-align: center;
      align-items: center;
}
.catalog__found-bottom.active {
  display: -ms-flexbox;
  display: flex;
}
.catalog__found-bottom > * {
  white-space: nowrap;
}
.catalog__found-top {
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
}
.catalog__found-item {
  padding: 0.7rem 1.3rem 0.7rem 1.9rem;
  border-radius: 1.2rem;
  border: 0.1rem solid #CBD7BC;
  white-space: nowrap;
  display: -ms-flexbox;
  display: flex;
  gap: 0.4rem;
  -ms-flex-align: center;
      align-items: center;
  background: white;
  font: 400 1.6rem/2.8rem var(--creamR);
}
.catalog__found-delete {
  position: relative;
  width: 1.6rem;
  height: 1.6rem;
  background: url(../img/clear-filter.svg) center/1.6rem 1.6rem no-repeat;
}
.catalog__found-applied {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.2rem;
  white-space: nowrap;
}
.catalog__sort {
  position: relative;
}
.catalog__sort-title {
  white-space: nowrap;
  text-align: right;
  font: 400 1.8rem/2rem var(--creamM);
  padding-right: 2.8rem;
  position: relative;
}
.catalog__sort-title:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 2rem;
  height: 2rem;
  background: url(../img/sort.svg) center/2rem 2rem no-repeat;
}
.catalog__sort-block {
  -ms-flex-direction: column;
      flex-direction: column;
  display: none;
  position: absolute;
  padding: 0.4rem 2rem;
  border-radius: 1.2rem;
  border: 0.2rem solid #8EA76E;
  right: 0;
  top: 3.8rem;
  background: white;
  z-index: 4;
}
.catalog__sort-block > * {
  padding: 1.2rem 0;
  font: 400 1.4rem/2rem var(--creamR);
  text-align: center;
  white-space: nowrap;
}
.catalog__sort-block > *:not(:last-child) {
  border-bottom: 0.1rem solid #DCE4D2;
}
.catalog__sort-block.active {
  display: -ms-flexbox;
  display: flex;
}

.filter__mob {
  display: none;
  gap: 1rem;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  font: 400 1.6rem/2.3rem var(--creamM);
  padding: 0.8rem 1.2rem;
  border-radius: 1.2rem;
  background: #8EA76E;
  max-width: 34.3rem;
  width: 100%;
  margin: 0 auto;
}
.filter__block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 2rem;
  padding-bottom: 3.2rem;
  border-bottom: 0.1rem solid var(--color-olive-600);
}
.filter__block:not(:first-of-type) {
  padding-top: 3.2rem;
}
.filter__title {
  font: 400 2rem/3rem var(--creamM);
}
.filter__list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.2rem;
}
.filter__item {
  cursor: pointer;
  padding: 0.8rem 2rem;
  font: 400 1.6rem/2.8rem var(--creamR);
  border-radius: 1.2rem;
  position: relative;
  background: white;
}
.filter__item:after {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  height: 100%;
  border-radius: 1.2rem;
  border: 0.1rem solid var(--color-olive-200);
  pointer-events: none;
}
.filter__item.active {
  background: #B3C49E;
}

.info {
  background: var(--color-olive-600);
}
.info .container {
  padding: 6.4rem;
}
.info__block {
  gap: 3.2rem;
  display: -ms-flexbox;
  display: flex;
}
.info__block > * {
  width: calc(50% - 1.6rem);
}
.info__block.reverse {
  -ms-flex-direction: row-reverse;
      flex-direction: row-reverse;
}
.info__block-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 9.6rem;
}
.info__block-img {
  aspect-ratio: 640/361;
  overflow: hidden;
  border-radius: 2.8rem;
}
.info__block-text {
  position: relative;
  padding-bottom: 1.6rem;
}
.info__block-text:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--color-olive-900);
}
.info__delivery {
  background: var(--color-olive-100);
}
.info__delivery .info__block-img {
  aspect-ratio: 640/618;
}

.terms .container {
  padding: 4rem 6.4rem 6.4rem;
}
.terms__content {
  margin-top: 10.4rem;
  max-width: 86.2rem;
  width: 100%;

}


.terms__content > h2, .terms__content > h3, .terms__content > h4, .terms__content > h5, .terms__content > h6 {
  margin-top: 2.4rem;
}
.terms__content .section__text {
  text-decoration: none;
}
.terms__content .touch__item {
  margin-bottom: 1.6rem;
}
.terms__content > p, .terms__content p > *, .terms__content span, .terms__content li {
  color:#304D0B!important;
}

.footer {
  z-index: 1;
  background: var(--color-olive-600);
}
.footer .container {
  padding: 8rem 6.4rem 0;
}
.footer__block {
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -ms-flex-pack: justify;
      justify-content: space-between;
  margin-bottom: 8rem;
  -ms-flex-align: start;
      align-items: flex-start;
}
.footer__menu {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 1.6rem;
}
.footer__menu-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 1.6rem;
}
.footer__menu-title {
  font: 400 1.4rem/2.3rem var(--creamL);
  color: var(--color-secondary-lightbeige);
}
.footer__menu > * {
  color: var(--color-white);
  font: 400 1.6rem/2.3rem var(--creamM);
  transition: 0.2s ease;
  white-space: nowrap;
}
.footer__menu > *:hover {
  color: var(--color-olive-900);
}
.footer__menu-wrap {
  display: -ms-flexbox;
  display: flex;
  gap: 7%;
  justify-content: flex-end;
  width: calc(100% - 21.2rem);
}
.footer__logo {
  width: 19.2rem;
  min-width: 19.2rem;
}
.footer__bottom {
  padding: 1.6rem;
  text-align: center;
  color: var(--color-white);
  border-top: 0.1rem solid var(--color-white);
  font: 400 1.4rem/2.3rem var(--creamL);
}
.footer__icon {
  position: relative;
}
.footer__icon{
  display:flex;
  gap:0.8rem;
}
.footer__icon img{
  width: 2rem;
  height: 2rem;
  margin-top: 0.3rem;
}
label.error {
  color: #B00000;
  position: absolute;
  bottom: -1.5rem;
  left: 0;
  font: 400 1.2rem/1.2rem var(--creamR);
}

.tab__header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.2rem;
  gap: 1.2rem;
  border-radius: 1.2rem;
  background: var(--color-white);
  width: 100%;
  margin-bottom: 1.6rem;
}
.tab__header-item {
  font: 400 1.6rem/2.3rem var(--creamM);
  position: relative;
  padding: 0.85rem 2rem;
  text-align: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 1.3rem;
  border-radius: 1.1rem;
}
.tab__header-item img {
  width: 1.2rem;
  height: auto;
}
.tab__header-item.active {
  background-color: #B3C49E;
}
.tab__content-item {
  display: none;
}
.tab__content-item:first-child {
  display: block;
}

.contact__block {
  display: -ms-flexbox;
  display: flex;
  gap: 3.2rem;
  margin-top: 6.4rem;
}
.contact__block > * {
  width: calc(50% - 1.6rem);
}
.contact__block .touch__info {
  background: var(--color-secondary-natural);
  padding: 3.2rem;
  border-radius: 3.2rem;
}

.account .container {
  padding: 4rem 6.4rem 8rem;
}
.account__block {
  margin-top: 3.2rem;
}
.account__content {
  padding: 2rem;
  border-radius: 2rem;
  display: -ms-flexbox;
  display: flex;
  gap: 3.2rem;
  background: white;
}
.account__content-left {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 1.2rem;
  width: 33%;
}
.account__content-right {
  width: 67%;
}
.account__content-title {
  font: 400 2rem/3rem var(--creamM);
}
.account__content-subtitle {
  font: 400 1.6rem/2.8rem var(--creamR);
}

.history__scroll {
  overflow-y: hidden;
  overflow-x: auto;
  width: 100%;
  border-radius: 2rem;
  position: relative;
}
.history__scroll:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 0.1rem solid #F4F6F1;
  top: 0;
  left: 0;
  pointer-events: none;
  border-radius: 2rem;
}
.history__desc {
  display: none;
}
.history__desc.active {
  display: -ms-flexbox;
  display: flex;
  gap: 0.8rem;
  -ms-flex-direction: column;
      flex-direction: column;
}
.history__desc-item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 3% 7% 66% 18% 6%;
      grid-template-columns: 3% 7% 66% 18% 6%;
  font: 400 1.4rem/normal var(--creamR);
  padding: 0.4rem 0;
  -ms-flex-align: center;
      align-items: center;
}
.history__desc-img {
  border-radius: 1rem;
  width: 8.3rem;
  height: 5rem;
}
.history__desc-info {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 0.5rem;
}
.history__desc-info > * {
  text-align: left;
}
.history__desc > * {
  text-align: center;
}
.history__desc .section__button {
  padding: 1rem 2rem;
  height: -moz-max-content;
  height: max-content;
  width: -moz-max-content;
  width: max-content;
}
.history__desc-subtitle {
  color: var(--color-grey);
  position: relative;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}
.history__desc-link {
  color: var(--color-primary);
}
.history__row {
  display: -ms-grid;
  display: grid;
  -ms-flex-align: center;
      align-items: center;
  -ms-grid-columns: 23% 31% 25% 21%;
      grid-template-columns: 23% 31% 25% 21%;
  background: #ecf0e7;
  border-bottom: 0.1rem solid #F4F6F1;
}
.history__row > * {
  white-space: nowrap;
  padding: 0.8rem 2.4rem;
  font: 400 1.6rem/2.8rem var(--creamR);
}
.history__row > *:first-child {
  padding-left: 3.2rem;
}
.history__row > *:not(:last-child) {
  border-right: 0.1rem solid #F4F6F1;
}
.history__header {
  background: #F4F6F1;
}
.history__header > * {
  padding: 1.2rem 2.4rem;
  font: 400 1.4rem/2rem var(--creamR);
}
.history__header > *:first-child {
  padding-left: 3.2rem;
}
.history__status {
  display: block;
  border-radius: 2rem;
  padding: 0.8rem 1rem;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
}
.history__status.completed {
  color: #007739;
  background-color: #E5F6ED;
}
.history__show {
  font-family: var(--creamM);
  white-space: nowrap;
  text-decoration: underline;
}
.history__empty {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 2rem;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  margin-top: 4.2rem;
}
.history__empty-icon {
  width: 4rem;
  height: 4rem;
}
.history__empty-title {
  font: 400 1.4rem/normal var(--creamM);
  color: var(--color-olive-900);
}
.history .pagination {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  gap: 1.2rem;
  margin-top: 2rem;
}
.history .pagination__page {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  gap: 0.2rem;
}
.history .pagination__page button {
  padding: 0.8rem 1.5rem;
}
.history .pagination * {
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  color: #2b2b2b;
  text-align: center;
  border-radius: 1.2rem;
  font: 400 1.6rem/2.3rem var(--creamM);
  z-index: 1;
}
.history .pagination *:hover:not(.active) {
  text-decoration: underline;
}
.history .pagination *.active:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 4rem;
  border-radius: 1.2rem;
  height: 4rem;
  z-index: -1;
  background-color: #8EA76E;
}
.history .pagination *:disabled {
  filter: brightness(0) saturate(100%) invert(83%) sepia(8%) saturate(999%) hue-rotate(44deg) brightness(88%) contrast(85%);
}
.history .pagination__icon {
  position: relative;
  padding-left: 2.4rem;
}
.history .pagination__icon:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1.6rem;
  height: 1.6rem;
  background: url("../img/left-pag.svg") center/1.6rem 1.6rem no-repeat;
}
.history .pagination__icon.next {
  padding-left: 0;
  padding-right: 2.4rem;
}
.history .pagination__icon.next:after {
  left: unset;
  right: 0;
  transform: translateY(-50%) rotate(-180deg);
}

.order__item {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-flex-align: center;
      align-items: center;
  padding: 2rem 0;
  grid-gap: 1.2rem;
  -ms-grid-columns: 6% 52% 22% 14%;
      grid-template-columns: 6% 52% 22% 14%;
  border-bottom: 0.1rem solid #8EA76E;
}
.order__item:first-child {
  border-top: 0.1rem solid #8EA76E;
}
.order__item-title {
  font: 400 2rem/3rem var(--creamM);
}
.order__item-price {
  text-align: right;
  color: #436C0F;
}
.order__img {
  width: 4rem;
  min-width: 4rem;
  border-radius: 1.2rem;
  overflow: hidden;
  aspect-ratio: 1/1;
}
.order__header {
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.order__header > * {
  font: 400 1.6rem/2.8rem var(--creamR);
}
.order__header > * span {
  font-family: var(--creamM);
}
.order__form {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 4rem;
}
.order__btn {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  gap: 2rem;
  -ms-flex-align: center;
      align-items: center;
}
.order__btn > * {
  max-width: 24.7rem;
}
.order__btn-mob {
  display: none;
}
.order__list {
  overflow-y: auto;
  max-height: 31.5rem;
  overflow-x: hidden;
}
.order__list::-webkit-scrollbar {
  background-color: #CBD7BC;
  width: 0.4rem;
  border-radius: 0.2rem;
}
.order__list::-webkit-scrollbar-thumb {
  background-color: #8EA76E;
  border-radius: 0.2rem;
}
.order__delete {
  font: 400 1.8rem/2rem var(--creamM);
  position: absolute;
  padding-right: 2.2rem;
  bottom: 2rem;
  right: 0;
  transition: 0.2s ease;
}
.order__delete:after {
  transition: 0.2s ease;
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1.8rem;
  height: 1.8rem;
  background: url("../img/delete.svg") center/1.8rem 1.8rem no-repeat;
}
.order__delete:hover {
  transition: 0.2s ease;
}
.order__delete:hover:after {
  background: url("../img/delete-full.svg") center/1.8rem 1.8rem no-repeat;
}
.order__cart {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 2rem;
}
.order__cart .order__img {
  width: 7.6rem;
  height: 7.6rem;
  min-width: 7.6rem;
}
.order__cart .order__item {
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-grid-columns: 11% 49% 20% 14%;
      grid-template-columns: 11% 49% 20% 14%;
}
.order__cart .order__item-title {
  margin-top: 0.5rem;
}
.order__cart .order__btn {
  margin-top: 2rem;
}
.order__total {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 2rem;
}
.order__total-list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 1.6rem;
  padding: 0 0 2rem;
  border-bottom: 0.1rem solid #8EA76E;
}
.order__total-item {
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.order__total-item > * {
  white-space: nowrap;
  font: 400 1.6rem/2.8rem var(--creamR);
}
.order__total-bottom > * {
  font: 600 1.8rem/100% var(--norms);
}
.order__time {
  font: 400 1.6rem/2.8rem var(--creamR);
  padding: 0.4rem 2.35rem;
  background: #DBD2BB;
  border-radius: 0.4rem;
  width: -moz-max-content;
  width: max-content;
}

.calendar__flex {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 2rem;
}
.calendar__step {
  position: relative;
  width: 20rem;
  height: 0.4rem;
  display: -ms-flexbox;
  display: none;
  background: #F4F6F1;
  margin: 0 auto;
}
.calendar__step-item {
  width: 50%;
  height: 100%;
}
.calendar__step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: #8EA76E;
  transition: left 0.4s ease;
  border-radius: inherit;
}
.calendar__step.right::before {
  left: 50%;
}
.calendar__content {
  display: -ms-flexbox;
  display: flex;
  gap: 1.2rem;
  margin: 1.2rem auto 2rem;
  width: 100%;
}
.calendar__content > * {
  width: calc(50% - 0.6rem);
}
.calendar__slots {
  padding: 2rem 0.8rem 2rem 2rem;
  border-radius: 2.4rem;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #F4F6F1;
}
.calendar__slots-list {
  overflow-y: auto;
  padding-right: 0.8rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 1.2rem;
  text-align: center;
  height: 100%;
  width: 100%;
}
.calendar__slots-list::-webkit-scrollbar {
  background-color: #CBD7BC;
  width: 0.4rem;
  border-radius: 0.2rem;
}
.calendar__slots-list::-webkit-scrollbar-thumb {
  background-color: #8EA76E;
  border-radius: 0.2rem;
}
.calendar__slots-list .slot {
  padding: 1rem 1.2rem;
  border-radius: 1.2rem;
  text-align: center;
  border: 0.2rem solid #DCE4D2;
  background: white;
  cursor: pointer;
  font: 400 1.8rem/2rem var(--creamM);
}
.calendar__slots-list .slot.active {
  border: 0.2rem solid #436C0F;
  background: #ECF0E7;
}

.ui-widget.ui-widget-content {
  width: 100%;
  aspect-ratio: 1/1;
  border: none;
  background: transparent;
  padding: 0;
}

.calendar__datepicker {
  aspect-ratio: 1/1;
  padding: 2rem;
  border-radius: 2.4rem;
  border: none;
  background: #F4F6F1;
}

.ui-datepicker .ui-datepicker-header {
  background: none;
  border: none;
}

.ui-datepicker .ui-datepicker-title {
  font: 400 1.6rem/2.3rem var(--creamM);
  margin: 0 3.4rem;
}

.ui-datepicker table {
  margin: 1.2rem 0 0;
}

.ui-state-highlight, .ui-widget-content .ui-state-highlight {
  background: none;
}

.ui-datepicker a.ui-corner-all span {
  position: relative;
  width: 5.8rem;
  height: 3.2rem;
  border-radius: 1rem;
  background-image: none !important;
  background: #8EA76E;
  margin: 0 !important;
  left: 0;
  transform: translateY(-50%);
}
.ui-datepicker a.ui-corner-all span:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2.4rem;
  height: 2.4rem;
  transition: 0.2s ease;
  background: url(../img/arr-little.svg) center/2.4rem 2.4rem no-repeat;
}
.ui-datepicker a.ui-corner-all.ui-datepicker-prev span:after {
  transform: translate(-50%, -50%) rotate(180deg);
}

.ui-datepicker .ui-datepicker-next span {
  left: unset;
  right: 0;
}

.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next {
  width: 5.8rem;
  height: 3.2rem;
  top: 50%;
  transform: translateY(-50%);
}

.ui-datepicker .ui-datepicker-prev {
  left: 0;
}

.ui-datepicker .ui-datepicker-next {
  right: 0;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
  border: none;
  max-width: 4rem;
  text-align: center;
  max-height: 4rem;
  height: 100%;
  display: block;
  font: 400 1.8rem/2.2rem var(--creamM);
  padding: 0.9rem 0.3rem;
}

.ui-datepicker th {
  font: 400 1.4rem/2rem var(--creamR);
  text-align: center;
  padding: 1rem 0.5rem;
}

.ui-state-default {
  color: #1C2D06;
}

.ui-state-active, .ui-widget-content .ui-state-active {
  background: none;
  position: relative;
  color: #1C2D06;
  z-index: 1;
}
.ui-state-active:after, .ui-widget-content .ui-state-active:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border: 0.2rem solid #436C0F;
  background: #ECF0E7;
  pointer-events: none;
  z-index: -1;
  border-radius: 1rem;
}

.promocode__title {
  display: -ms-flexbox;
  display: flex;
  gap: 0.4rem;
  -ms-flex-align: center;
      align-items: center;
}
.promocode__title > * {
  font: 400 1.6rem/2.8rem var(--creamR);
}
.promocode__button {
  text-decoration: underline;
  font: 400 1.6rem/2.8rem var(--creamM);
}
.promocode__form-content {
  display: none;
  max-width: 46.4rem;
  gap: 1.2rem;
  -ms-flex-align: center;
      align-items: center;
  position: relative;
  margin-bottom: 2rem;
}
.promocode__form-content .section__btn {
  width: -moz-max-content;
  width: max-content;
}

.promocode__error{
  color: #B00000;
  position: absolute;
  bottom: -1.7rem;
  left: 0;
  font: 400 1.4rem/1.2rem var(--creamM);
}
.promocode__form-content.active {
  display: -ms-flexbox;
  display: flex;
}

.notfound {
  padding: 10rem 6.4rem;
}
.notfound__block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  text-align: center;
}
.notfound__top {
  font: 400 2rem/100% var(--creamM);
  color: #436C0F;
}
.notfound__title {
  font: 400 9.6rem/100% var(--creamH);
  color: #436C0F;
  margin-bottom: 4rem;
}
.notfound__subtitle {
  font: 400 4.4rem/100% var(--creamM);
  margin-bottom: 2rem;
}
.notfound__text {
  font: 600 1.8rem/100% var(--norms);
  color: #304D0B;
  margin-bottom: 4rem;
}
.notfound .section__btn {
  max-width: 29.9rem;
  margin: 0 auto;
}

.login {
  -ms-flex: 1;
      flex: 1;
  display: -ms-flexbox;
  display: flex;
  gap: 8.6rem;
  -ms-flex-align: center;
      align-items: center;
}
.login .section__btn {
  margin-top: 2.4rem;
}
.login__code-block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 1.2rem;
}
.login__code-block span {
  font: 400 1.6rem/2.8rem var(--creamR);
}
.login__code-block .section__input {
  max-width: 6.65rem;
}
.login__code-block .section__input input {
  text-align: center;
  padding: 1.825rem 1rem;
}
.login__text {
  display: -ms-flexbox;
  display: flex;
  gap: 0.4rem;
  -ms-flex-align: center;
      align-items: center;
  font: 400 1.6rem/2.8rem var(--creamR);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.login__text.center {
  margin: 0 auto;
  -ms-flex-pack: center;
      justify-content: center;
}
.login__text-link {
  cursor: pointer;
  text-decoration: underline;
  font: 400 1.6rem/2.3rem var(--creamM);
}
.login__eye {
  cursor: pointer;
  position: absolute;
  bottom: 0.9rem;
  right: 1.6rem;
  width: 2.4rem;
  height: 2.4rem;
  background: url("../img/eye.svg") center/2.4rem 2.4rem no-repeat;
}
.login__eye.active {
  background: url("../img/eye-off.svg") center/2.4rem 2.4rem no-repeat;
}
.login__img {
  width: 49%;
  height: -webkit-fill-available;
  min-height: calc(100vh - 12.4rem);
  border-bottom-right-radius: 3.2rem;
  border-top-right-radius: 3.2rem;
  overflow: hidden;
  /*max-height: 78.5rem;*/
}
.login__title {
  font: 400 3.6rem/normal var(--creamM);
  text-align: center;
  width: 100%;
}
.login__title + .section__input {
  margin-top: 2.4rem;
}
.login__subtitle {
  margin-bottom: 2.4rem;
  text-align: center;
}
.login__block {
  padding: 4.9rem 0;
  max-width: 56.4rem;
}
.login__block > *.active {
  display: -ms-flexbox;
  display: flex;
}
.login__form {
  position: relative;
  display: none;
  -ms-flex-direction: column;
      flex-direction: column;
  background: transparent;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
.login__form-flex {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 3rem;
}
.login__form-forget {
  display: none;
}
.login__form-success {
  display: none;
  gap: 2rem;
}
.login__form-code {
  display: none;
}
.login__form-recovery {
  display: none;
}

.select2-container {
  width: 7.2rem !important;
}

.select2-container--default .select2-selection--single {
  height: 4rem;
  border: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  text-overflow: unset !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 4rem;
  padding: 1rem 3.8rem 1rem 2rem;
  font: 400 1.6rem/100% var(--creamM);
  border: 0.2rem solid #8EA76E;
  border-radius: 1.2rem;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 4rem;
  width: 3.4rem;
}
.select2-container--default .select2-selection--single .select2-selection__arrow:after {
  content: "";
  position: absolute;
  top: 1.1rem;
  left: 0;
  width: 1.8rem;
  height: 1.8rem;
  transition: 0.2s ease;
  background: url(../img/arr-down.svg) center/1.8rem 1.8rem no-repeat;
}

.select2-search--dropdown {
  display: none;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single {
  border-radius: 1.2rem;
}

.select2-dropdown, .select2-container--open .select2-dropdown--below {
  border: 0.2rem solid #8EA76E;
  border-radius: 1.2rem;
  padding: 0.2rem 0;
}

.select2-results__option {
  padding: 1.2rem;
  text-align: center;
  font: 400 1.6rem/2.3rem var(--creamM);
  position: relative;
}
.select2-results__option:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2.7rem;
  height: 0.1rem;
  background: #DCE4D2;
}

.select2-container--default .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-results__option[aria-selected=true] {
  text-decoration: underline;
  color: var(--color-olive-900);
  background-color: transparent;
}

.select2-container--default .select2-results > .select2-results__options {
  scrollbar-width: none; /* для Firefox */
}

.select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar {
  display: none; /* для Chrome, Safari */
}

.price-inputs {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  margin-bottom: 2rem;
}
.price-box {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  border: 0.1rem solid #8EA76E;
  border-radius: 1rem;
  padding: 0.5rem 1.2rem;
  background: #fff;
}
.price-box span {
  font: 400 1.6rem/2.8rem var(--creamR);
  color: #1E1E1E;
}
.price-box input {
  width: 4.4rem;
  border: none;
  text-align: center;
  font: 400 1.6rem/2.8rem var(--creamR);
  color: #1E1E1E;
  background: transparent;
  outline: none;
}
.price-filter-all {
  width: 100%;
}
.price-filter-all .slider {
  position: relative;
  height: 1.6rem;
  background: white;
  border-radius: 0.4rem;
}
.price-filter-all .slider .progress {
  position: absolute;
  height: 1.6rem;
  background: #436C0F;
  border-radius: 0.4rem;
}
.price-filter-all .slider input[type=range] {
  position: absolute;
  width: 100%;
  height: 1.6rem;
  -moz-appearance: none;
       appearance: none;
  background: none;
  pointer-events: none;
}
.price-filter-all .slider input[type=range]::-webkit-slider-thumb {
  appearance: none;
  height: 2.4rem;
  width: 2.4rem;
  background: #8EA76E;
  border-radius: 0.8rem;
  cursor: pointer;
  pointer-events: all;
  transition: background 0.2s;
}
.price-filter-all .slider input[type=range]::-webkit-slider-thumb:hover {
  background: #819864;
}

.favourite .container {
  padding: 4rem 6.4rem 8rem;
}
.favourite__list {
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.favourite__list > * {
  width: calc((100% - 6rem) / 4);
}
.favourite .section__top {
  -ms-flex-align: center;
      align-items: center;
}
.favourite__empty-info {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 4rem;
  -ms-flex-align: center;
      align-items: center;
  margin: 7.2rem 0;
}
.favourite__empty-info .section__btn {
  max-width: 24rem;
  margin: 0 auto;
}
.favourite__empty-img {
  width: 8rem;
  height: 8rem;
}
.favourite__empty-title {
  font: 500 2.6rem/100% var(--norms);
  text-align: center;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

@media (hover: hover) and (pointer: fine) {
  .header__menu-item:hover > a {
    color: var(--color-primary);
  }
  .header__menu-item:hover .header__submenu {
    visibility: visible;
    opacity: 1;
    left: 0;
    z-index: 3;
  }
  .header__menu-sub:hover > a:after {
    transform: translateY(-50%) rotate(180deg);
  }
  .header__drop:hover .header__drop-menu {
    opacity: 1;
    visibility: visible;
    display: -ms-flexbox;
    display: flex;
  }
  .header__drop:hover .header__drop-btn:after {
    transform: translateY(-50%) rotate(180deg);
  }
}
@media only screen and (max-width: 1440px) {
  .product__scroll {
    max-width: calc(100vw - 12.8rem);
  }
}
@media only screen and (max-width: 1320px) {
  .footer__block{
    flex-direction: column;
  }
  .footer__menu-wrap{
    width: 100%;
    justify-content: flex-start;
  }
  .top__shop-item span{
    font-size: 1.6rem ;
    letter-spacing: -0.05em;
  }
}


@media only screen and (max-width: 666px) {
  .wrap__main .container {
    padding: 3.2rem 1.6rem;
  }
  .section__title {
    font-size: 2.2rem;
  }
  .section__title.big {
    font-size: 2.8rem;
  }
  .section__btn {
    padding: 0.85rem;
  }
  .section__text {
    font-size: 1.6rem;
    line-height: 2.8rem;
  }
  .section__nav {
    gap: 2rem;
  }
  .section__nav > * {
    height: 3.2rem;
  }
  .section__block {
    gap: 2rem;
  }
  .section__nav > *:after {
    width: 2.4rem;
    height: 2.4rem;
    background: url(../img/arr-little.svg) center/2.4rem 2.4rem no-repeat;
  }
  .section__top {
    -ms-flex-direction: column;
        flex-direction: column;
  }
  .section__top-title {
    font-size: 3rem;
    width: 100%;
  }
  .section__top-subtitle {
    font-size: 1.8rem;
    width: 100%;
  }
  .section__flex {
    -ms-flex-direction: column;
        flex-direction: column;
  }
  .section__flex > * {
    width: 100%;
  }
  .header .container {
    padding: 1.6rem;
  }
  .header__top > * {
    font-size: 1.4rem;
  }
  .header__logo {
    width: 5rem;
    min-width: 5rem;
  }
  .header__menu-wrap {
    display: none;
  }
  .header__menu-wrap.active {
    display: block;
    left: 50%;
    transform: translateX(-50%);
    top: 8.4rem;
    position: absolute;
    border-radius: 2rem;
    width: calc(100% - 0.8rem);
    background: #C5D1B5;
    padding: 2rem;
  }
  .header__menu-wrap.active .header__menu {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: start;
        align-items: flex-start;
  }
  .header__burger {
    display: -ms-flexbox;
    display: flex;
  }
  .header__block-left .header__logo {
    display: none;
  }
  .header__block-left, .header__info {
    gap: 1.2rem;
  }
  .header__info > .header__like {
    display: none;
  }
  .header__menu-item > a {
    padding: 1rem 0;
  }
  .header__menu-wrap.active .header__menu {
    gap: 0.4rem;
  }
  .header__menu-btn {
    display: block;
    margin-top: 3rem;
  }
  .header__menu-sub > a:after {
    display: none;
  }
  .header__menu-close {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    width: 4rem;
    height: 4rem;
    margin: 0;
  }
  .header__submenu {
    position: relative;
    top: unset;
    left: unset;
    visibility: visible;
    opacity: 1;
    transform: none;
    box-shadow: none;
    backdrop-filter: none;
    -ms-flex-align: start;
        align-items: flex-start;
    padding: 1rem 0 1rem 2rem;
    gap: 2.4rem;
  }
  .tab__header {
    gap: 0.8rem;
    width: -moz-max-content;
    width: max-content;
  }
  .tab__header-item {
    font-size: 1.4rem;
    padding: 0.85rem 1.2rem;
  }
  .account__content {
    padding: 1.6rem;
    -ms-flex-direction: column;
        flex-direction: column;
    gap: 1.6rem;
  }
  .account__content > * {
    width: 100%;
  }
  .section__form {
    padding: 2rem;
  }
  .section__form-btn {
    margin-top: 0.4rem;
  }
  .section__form-btn > * {
    max-width: calc(50% - 0.6rem);
    width: 100%;
  }
  .section__form-title {
    font-size: 1.8rem;
  }
  .section__form-subtitle {
    font-size: 1.6rem;
  }
  .section__input.half {
    width: 100%;
  }
  .modal__content {
    max-width: calc(100% - 3.2rem) !important;
    max-height: calc(100% - 3.2rem);
  }
  .calendar__flex{
    padding-bottom: 2rem;
  }
  .modal__overflow {
    padding: 4.8rem 1.6rem 1.6rem;
    gap: 1.6rem;
    max-height: calc(100vh - 8rem);
  }
  .modal__title {
    font-size: 2.2rem;
  }
  .modal__close {
    width: 2rem;
    height: 2rem;
    top: 1.6rem;
    right: 1.6rem;
  }
  .order__header {
    -ms-flex-direction: column;
        flex-direction: column;
    gap: 1.6rem;
    -ms-flex-align: start;
        align-items: flex-start;
  }
  .order__item {
    padding: 1.6rem 0;
    display: -ms-flexbox;
    display: flex;
    gap: 1.2rem;
    -ms-flex-align: start;
        align-items: flex-start;
  }
  .order__img {
    width: 6.4rem;
    min-width: 6.4rem;
  }
  .order__item-mob {
    display: -ms-flexbox;
    display: flex;
    gap: 1.2rem;
    -ms-flex-direction: column;
        flex-direction: column;
  }
  .order__item-price {
    text-align: left;
  }
  .order__item-title {
    font-size: 1.8rem;
    line-height: 100%;
  }
  .order__form {
    gap: 2rem;
  }
  .footer .container {
    padding: 3.2rem 1.6rem 0;
  }
  .footer__block {
    -ms-flex-direction: column;
        flex-direction: column;
    gap: 3.2rem;
    margin-bottom: 4rem;
  }
  .footer__menu-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 4rem;
  }
  .footer__menu-wrap > * {
    /*width: calc(50% - 2rem);*/
    width: 100%;
  }
  .footer__menu > * {
    white-space: wrap;
  }
  .footer__logo {
    width: 10.4rem;
    min-width: 10.4rem;
  }
  .notfound__title {
    font-size: 7.2rem;
  }
  .notfound__subtitle {
    font-size: 3rem;
  }
  .notfound {
    padding: 10rem 1.6rem;
  }
  .notfound__text {
    font-size: 1.6rem;
  }
  .login {
    padding: 8rem 1.8rem 16rem;
  }
  .login__img {
    display: none;
  }
  .login__block {
    padding: 0;
  }
  .login__form {
    padding: 0;
  }
  .login__title {
    font-size: 2.8rem;
    line-height: 100%;
  }
  .login__title + .section__input, .login__subtitle {
    margin: 0;
  }
  .login__code-block {
    gap: 0.4rem;
    width: 100%;
    -ms-flex-pack: center;
        justify-content: center;
  }
  .login__code-block .section__input {
    max-width: 4rem;
  }
  .login__code-block .section__input input {
    padding: 0.5rem;
  }
  .main .container {
    padding-bottom: 0.4rem;
  }
  .main__info {
    gap: 1.6rem;
    -ms-flex-direction: column;
        flex-direction: column;
    margin-bottom: 2rem;
  }
  .main__info > * {
    width: 100%;
  }
  .main__img {
    aspect-ratio: 1/1;
  }
  .main__title {
    font-size: 3rem;
  }
  .main__text {
    font-size: 1.8rem;
  }
  .main .section__nav {
    position: relative;
    bottom: unset;
    right: unset;
    -ms-flex-pack: center;
        justify-content: center;
  }
  .product__list .swiper-wrapper {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 0;
  }
  .product__list .swiper-slide {
    width: 31.3rem;
  }
  .top__shop-list {
    gap: 1.2rem;
    -ms-flex-direction: column;
        flex-direction: column;
  }
  .top__shop-item {
    width: 100%;
    padding: 1rem;
  }
  .top__shop-item span {
    font-size: 1.4rem;
    padding: 0;
    letter-spacing: unset;
  }
  .top__shop-icon {
    width: 3.2rem;
  }
  .top__shop-arr {
    width: 2rem;
  }
  .info__block {
    -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    gap: 1.6rem;
  }
  .info__block > * {
    width: 100%;
  }
  .info__block-img {
    aspect-ratio: 345/361;
  }
  .content p, .content p > *, .content span, .content li {
    font-size: 1.6rem;
    line-height: 2.8rem;
  }

  .info__block-text {
    padding-bottom: 3.2rem;
  }
  .info__block-wrapper {
    gap: 4.8rem;
  }
  .step__list {
    -ms-flex-direction: column;
        flex-direction: column;
    gap: 1.6rem;
  }
  .step__item {
    padding: 2rem;
    width: 100%;
  }
  .step__item .section__text {
    font: 400 1.8rem/3rem var(--creamR);
  }
  .step__item:not(:last-child):after {
    transform: rotate(145deg);
    right: 5rem;
    bottom: -4rem;
    z-index: 1;
  }
  .step__satisfaction-text {
    font-size: 2rem;
  }
  .step__satisfaction-img {
    margin-bottom: -16rem;
    aspect-ratio: 343/268;
    border-radius: 2rem;
  }
  .step {
    margin-bottom: 7rem;
  }
  .review .container {
    padding-top: 16rem;
  }
  .review__top {
    gap: 2.4rem;
    -ms-flex-direction: column;
        flex-direction: column;
  }
  .review__author {
    font-size: 1.6rem;
  }
  .review__content {
    font-size: 1.4rem;
    line-height: 2.4rem;
  }
  .review__item {
    padding: 2rem 1.6rem;
    border-radius: 2.4rem;
  }
  .review .section__nav {
    margin: 1rem auto 0;
  }
  .about__img {
    aspect-ratio: 1/1;
    margin: 2rem 0 3rem;
  }
  .about__stats {
    -ms-flex-direction: column;
        flex-direction: column;
  }
  .about__stats > * {
    width: 100%;
  }
  .about__stats .count {
    font-size: 5rem;
  }
  .about__stats h4 {
    font-size: 1.6rem;
  }
  .about__btn {
    margin-top: 3.2rem;
  }
  .about__desc-item {
    gap: 1.6rem;
    -ms-flex-direction: column;
        flex-direction: column;
    padding: 2rem 0;
  }
  .about__desc-item > * {
    width: 100%;
  }
  .about__desc-img {
    aspect-ratio: 343/176;
  }
  .about__desc-item .section__text {
    width: 100%;
  }
  .about__desc-title {
    font-size: 2.2rem;
  }
  .touch__info {
    gap: 2rem;
  }
  .touch__info .section__title {
    margin-bottom: 1.2rem;
  }
  .touch__item-text h4, .touch__item-text .section__text {
    font-size: 1.8rem;
    line-height: 3rem;
  }
  .about__info-img {
    aspect-ratio: 1/1;
  }
  .about__info-text {
    gap: 2rem;
  }
  .about__info-flex {
    gap: 4rem;
    -ms-flex-direction: column;
        flex-direction: column;
  }
  .about__info-flex > * {
    width: 100%;
  }
  .about__info .section__block {
    gap: 3.2rem;
  }
  .about__bottom-img {
    aspect-ratio: 1/1;
  }
  .about__info-title {
    font-size: 2.2rem;
  }
  .delivery__block {
    -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
  }
  .delivery__block > * {
    width: 100%;
  }
  .delivery__block {
    gap: 2rem;
  }
  .delivery__item {
    padding: 2rem 0;
  }
  .delivery__item-title {
    font-size: 1.8rem;
  }
  .contact__block .touch__info {
    width: 100%;
    padding: 2rem;
  }
  .contact__block {
    gap: 2rem;
    -ms-flex-direction: column;
        flex-direction: column;
  }
  .touch__center .section__form {
    padding: 2rem;
  }
  .faq__flex {
    -ms-flex-direction: column;
        flex-direction: column;
    gap: 2rem;
  }
  .faq__list {
    width: 100%;
  }
  .faq__header:after {
    width: 2rem;
    height: 2rem;
    background: url(../img/plus-circle.svg) center/2rem 2rem no-repeat;
  }
  .faq__open .faq__header:after {
    background: url(../img/minus-circle.svg) center/2rem 2rem no-repeat;
  }
  .faq__header > * {
    font-size: 1.6rem;
  }
  .faq__open .faq__content {
    padding: 0 0 2rem;
  }
  .faq__content > * {
    font-size: 1.4rem !important;
    line-height: 2.4rem !important;
  }
  section:last-of-type .container {
    padding-bottom: 8rem;
  }
  .terms__content {
    margin-top: 3.2rem;
  }
  .breadcrumbs {
    margin-bottom: 2rem;
  }
  .breadcrumbs a {
    font-size: 1.6rem;
    line-height: 2.3rem;
  }
  .touch__terms .touch__form {
    width: 100%;
  }
  .favourite__list > * {
    width: calc((100% - 2rem) / 2);
  }
  .favourite .section__top {
    -ms-flex-pack: justify;
        justify-content: space-between;
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-align: center;
        align-items: center;
  }
  .product__block {
    -ms-flex-direction: column;
        flex-direction: column;
    gap: 2rem;
  }
  .product__block > * {
    width: 100%;
  }
  .product__block-info {
    padding: 1.6rem;
  }
  .product__block-info:not(:first-child):last-child {
    padding: 0 1.6rem;
  }
  .faq__list-product .faq__header > * {
    font-size: 1.8rem;
  }
  .faq__list-product .faq__header {
    padding: 1.6rem 0;
  }
  .product__block-content {
    margin-bottom: 0.4rem;
  }
  .box__list {
    -ms-flex-direction: column;
        flex-direction: column;
  }
  .box__list > * {
    width: 100%;
    padding: 1.6rem 0;
  }
  .box__title {
    font-size: 1.8rem;
  }
  .box__text {
    font-size: 1.4rem;
  }
  .product__scroll {
    max-width: calc(100vw - 3.2rem);
    top: unset;
    bottom: 1.6rem;
    padding: 1.6rem;
  }
  .product__scroll-content {
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: start;
        align-items: flex-start;
  }
  .product__scroll-left {
    gap: 1.6rem;
    -ms-flex-align: start;
        align-items: flex-start;
  }
  .product__scroll-info {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    gap: 1.2rem;
  }
  .product__scroll-img {
    width: 5.8rem;
    height: 5.8rem;
    border-radius: 0.4rem;
    min-width: 5.8rem;
  }
  .product__scroll-price, .product__scroll-title {
    font-size: 1.8rem;
  }
  .order__delete span {
    display: none;
  }
  .order__cart .order__img {
    width: 6.4rem;
    min-width: 6.4rem;
    height: 6.4rem;
    border-radius: 0.4rem;
  }
  .cart__item {
    -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
    -ms-flex-pack: end;
        justify-content: flex-end;
  }
  .order__cart .order__item-title {
    margin: 0;
  }
  .order__total-item > * {
    font-size: 1.4rem;
    line-height: 2.4rem;
  }
  .order__delete {
    width: 2.4rem;
    height: 2.4rem;
    top: 1.6rem;
    right: 0.6rem;
    padding: 0;
  }
  .order__delete:after {
    left: 50%;
    right: unset;
    transform: translate(-50%, -50%);
  }
  .modal__cart .order__item-mob {
    padding-right: 3rem;
  }
  .order__total-list {
    gap: 1.2rem;
  }
  .order__total, .order__cart {
    gap: 1.6rem;
  }
  .order__cart .order__btn {
    margin-top: 0.4rem;
    gap: 1.2rem;
  }
  .order__total-bottom > * {
    font-size: 1.6rem;
    line-height: 100%;
  }
  .order__btn > * {
    width: calc(50% - 0.6rem);
  }
  .order__total-list {
    padding-bottom: 1.6rem;
  }
  .order__time {
    margin: 0 auto;
  }
  .modal__cart-content .modal__title {
    margin-bottom: 1.6rem;
  }
  .modal__cart-content .order__btn {
    margin-top: 2rem;
  }
  .header__menu-item.active:after {
    background: var(--color-olive-600);
    bottom: 0.2rem;
    width: 100%;
  }
  .calendar__slots {
    display: none;
  }
  .calendar__slots.active {
    display: block;
  }
  .calendar__content > * {
    width: 100%;
    aspect-ratio: 343/388;
  }
  .calendar__content > *.hide {
    display: none;
  }
  .calendar__content > *.active {
    display: -ms-flexbox;
    display: flex;
  }
  .order__btn-desk {
    display: none;
  }
  .order__btn-desk.active {
    display: -ms-flexbox;
    display: flex;
  }
  .order__btn-mob {
    display: -ms-flexbox;
    display: flex;
  }
  .order__btn.hide {
    display: none;
  }
  .order__btn.active {
    display: -ms-flexbox;
    display: flex;
  }
  .calendar__content {
    margin: 0 0 0.4rem;
  }
  .calendar__flex {
    gap: 1.6rem;
  }
  .ui-datepicker-prev span {
    left: -1.05rem !important;
  }
  .ui-datepicker-next span {
    right: -1.05rem !important;
    left: unset !important;
  }
  .catalog__banner {
    border-radius: 2rem;
    aspect-ratio: 343/400;
  }
  .catalog__category {
    gap: 1.2rem;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    overflow-x: auto;
    -ms-flex-pack: start;
        justify-content: flex-start;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .catalog__category::-webkit-scrollbar {
    display: none;
  }
  .catalog__category-wrap {
    margin: 1.2rem -1.6rem;
  }
  .catalog__found-applied-wrap {
    margin: 0 -1.6rem;
    width: 100vw;
  }
  .catalog__category-item:first-child, .catalog__found-item:first-child {
    margin-left: 1.6rem;
  }
  .catalog__category-item:last-child, .catalog__found-item:last-child {
    margin-right: 1.6rem;
  }
  .catalog__category-item > * {
    font-size: 1.6rem;
    line-height: 3rem;
  }
  .catalog__category-item {
    padding: 0.4rem 1.7rem;
  }
  .filter__mob {
    display: -ms-flexbox;
    display: flex;
  }
  .catalog__found {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
  }
  .catalog__found-bottom .section__text {
    display: none;
  }
  .catalog__found-applied {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    width: 100%;
  }
  .catalog__found-applied::-webkit-scrollbar {
    display: none;
  }
  .catalog__found-item {
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
    font-size: 1.4rem;
    line-height: 2.4rem;
  }
  .catalog__found-bottom {
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: start;
        align-items: flex-start;
    gap: 1.6rem;
  }
  .catalog__reset {
    display: none;
  }
  .catalog__found-top {
    padding-top: 2rem;
    margin-top: 2rem;
    position: relative;
  }
  .catalog__found-top:after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 0.1rem;
    background: var(--color-olive-600);
  }
  .catalog__found:after, .catalog__found:before {
    width: 100vw;
  }
  .catalog__found-count {
    font: 600 1.6rem/100% var(--norms);
    white-space: nowrap;
  }
  .catalog__sort-title {
    font-size: 1.6rem;
    line-height: 2.3rem;
  }
  .catalog__flex {
    margin-top: 1.2rem;
  }
  .catalog__mob {
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    left: -300%;
    z-index: 12;
    transition: 1s ease;
    top: 0;
  }
  .catalog__mob.active {
    left: 0;
  }
  .catalog__apply {
    display: block;
    margin: 2rem auto 4rem;
    max-width: 31.5rem;
  }
  .catalog__mob-close {
    position: absolute;
    top: 0.8rem;
    right: 4rem;
    width: 4rem;
    height: 4rem;
    z-index: 12;
    background: url(../img/close-menu.svg) center/4rem 4rem no-repeat;
  }
  .catalog__form-wrapper {
    padding: 2rem 0.7rem 2rem 1.4rem;
    position: relative;
    width: calc(100% - 3.2rem);
    background: white;
    z-index: 11;
    height: 100vh;
    max-width: 100%;
    border-top-right-radius: 2rem;
    border-bottom-right-radius: 2rem;
    overflow: hidden;
  }
  .catalog__form {
    padding-right: 0.7rem;
    height: 100%;
    overflow-y: auto;
  }
  .catalog__form::-webkit-scrollbar {
    background-color: #CBD7BC;
    width: 0.4rem;
    border-radius: 0.2rem;
  }
  .catalog__form::-webkit-scrollbar-thumb {
    background-color: #8EA76E;
    border-radius: 0.2rem;
  }
  .catalog__back {
    position: absolute;
    width: 6rem;
    height: 100vh;
    background: rgba(40, 38, 31, 0.6);
    right: 0;
    top: 0;
    z-index: 10;
  }
  .catalog__list > * {
    width: calc(50% - 1rem);
  }
  .filter__title {
    font-size: 1.8rem;
  }
  .filter__block {
    padding-bottom: 1.6rem;
  }
  .filter__block:not(:first-of-type) {
    padding-top: 1.6rem;
  }
  .filter__item {
    font-size: 1.4rem;
    line-height: 2.4rem;
    padding: 0.4rem 2rem;
  }
  .catalog__mob {
    max-width: 100%;
  }
  .product__list .swiper-slide {
    display: block;
    height: 100%;
  }
  .history__row {
    display: -ms-flexbox;
    display: flex;
  }
  .history__row > * {
    font-size: 1.4rem;
    line-height: 2.4rem;
    z-index: 1;
  }
  .history__row > *:first-child {
    width: 10.8rem;
    min-width: 10.8rem;
  }
  .history__row > *:nth-child(2) {
    width: 18.5rem;
    min-width: 18.5rem;
  }
  .history__row > *:nth-child(3) {
    width: 12.8rem;
    min-width: 12.8rem;
  }
  .history__row > *:nth-child(4) {
    width: 15.4rem;
    min-width: 15.4rem;
  }
  .history__scroll {
    padding-bottom: 1rem;
  }
  .history__scroll::-webkit-scrollbar {
    background-color: transparent;
    height: 0.4rem;
  }
  .history__scroll::-webkit-scrollbar-thumb {
    background-color: #8EA76E;
  }
  .history__scroll, .history__header {
    background: #ecf0e7;
  }
  .history__scroll:after {
    border: none;
  }
  .history__row {
    border-bottom: 0;
  }
  .history__row > * {
    border-top: 0.1rem solid #F4F6F1;
  }
  .history__header > * {
    border: none;
  }
  .history__header span {
    background: #F4F6F1;
  }
  .order__btn{
    gap:1.2rem;
  }
}
@media only screen and (max-width: 480px) {
  .favourite__list > *, .catalog__list > * {
    width: 100%;
    max-width: 100%;
  }
}
@media only screen and (max-width: 425px) {
  .footer__menu-wrap {
    -ms-flex-direction: column;
        flex-direction: column;
  }
  .footer__menu-wrap > * {
    width: 100%;
  }
  .footer__menu > * {
    white-space: nowrap;
  }
  .catalog__sort-title {
    width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .calendar__step{
    display: flex;
  }

}
@media only screen and (max-width: 374px) {
  .header__top > * {
    font-size: 1.2rem;
  }
}