body {
  margin: 0 !important;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: black;
  background-color: white;
  z-index: 1;
  position: relative;
}
body * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body a {
  transition: all 0.25s ease !important;
  color: black;
  text-decoration: none;
}
body a:hover {
  color: black;
}
body h1 {
  font-size: 38px;
  margin: 0;
  line-height: 120%;
  font-weight: normal;
}
body h2 {
  font-size: 32px;
  line-height: 100%;
  margin: 0;
  font-weight: normal;
}
body h3 {
  font-size: 26px;
  line-height: 120%;
  font-weight: 400;
  margin: 0;
}
body h4 {
  font-size: 24px;
  line-height: 32px;
  font-weight: normal;
  margin: 0;
}
body p {
  margin: 0;
  font-size: 18px;
}

.html,
body {
  overflow-x: hidden;
}

.container {
  max-width: 1300px !important;
  margin: 0 auto !important;
  width: calc(100% - 128px) !important;
}

.header {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  width: 100%;
  background: #ffffff;
}

#wpadminbar {
  display: none !important;
}

.header__container {
  position: relative;
  width: 100%;
  max-width: 1440px;
  min-height: 100px;
  margin: 0 auto;
  padding: 0 55px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.header__logo img {
  display: block;
  width: 105px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.header__nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 64px;
}

.header__nav a {
  display: inline-flex;
  align-items: center;
  color: #292929;
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  text-decoration: none;
  transition: color 0.2s ease;
}

.header__nav a:hover {
  color: #a8755f;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
  flex-shrink: 0;
}

.header__language,
.header__cart {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.header__language img,
.header__cart img {
  display: block;
  width: 22px;
  height: 22px;
  -o-object-fit: contain;
     object-fit: contain;
}

.header__phone {
  min-width: 164px;
  height: 42px;
  padding: 0 20px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  background: #a8755f;
  color: #ffffff;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 4px 7px rgba(0, 0, 0, 0.18);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.header__phone:hover {
  background: #98664f;
  color: #ffffff;
  transform: translateY(-1px);
}

.header__language-switcher {
  position: relative;
  display: flex;
  align-items: center;
}

.header__language {
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.header__language img {
  display: block;
  width: 22px;
  height: 22px;
  -o-object-fit: contain;
     object-fit: contain;
}

.header__language-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 145px;
  padding: 7px;
  box-sizing: border-box;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 1000;
}

.header__language-switcher.is-open .header__language-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header__language-option {
  display: block;
  width: 100%;
  padding: 10px 12px;
  box-sizing: border-box;
  border-radius: 8px;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  line-height: 1.2;
  color: #292929;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.header__language-option:hover {
  background: #f3f3f3;
  color: #789b45;
}

.header__language-option.is-current {
  color: #789b45;
  font-weight: 600;
}

.header-mobile {
  display: none;
}

.mobile-menu {
  display: none;
}

@media (max-width: 700px) {
  .header__container {
    display: none;
  }
  .header {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    background: #ffffff;
  }
  .header-mobile {
    width: 100%;
    height: 44px;
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    align-items: center;
  }
  .header-mobile__burger {
    width: 36px;
    height: 36px;
    padding: 8px;
    box-sizing: border-box;
    border: 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
  }
  .header-mobile__burger span {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: #292929;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .header-mobile__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 44px;
    text-decoration: none;
  }
  .header-mobile__logo img {
    display: block;
    width: 105px;
    height: auto;
    max-height: 38px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .header-mobile__cart {
    position: relative;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
  }
  .header-mobile__cart img {
    display: block;
    width: 22px;
    height: 22px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .header-mobile__cart-count {
    position: absolute;
    top: 0;
    right: -1px;
    min-width: 15px;
    height: 15px;
    padding: 0 3px;
    box-sizing: border-box;
    border-radius: 50%;
    background: #a8755f;
    color: #ffffff;
    font-family: "Manrope", sans-serif;
    font-size: 8px;
    line-height: 15px;
    text-align: center;
  }
  .mobile-menu {
    position: fixed;
    inset: 0;
    display: block;
    visibility: hidden;
    z-index: 9999;
  }
  .mobile-menu__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .mobile-menu__panel {
    position: absolute;
    top: 0;
    left: 0;
    width: min(84%, 340px);
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
    background: #ffffff;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .mobile-menu.is-open {
    visibility: visible;
  }
  .mobile-menu.is-open .mobile-menu__overlay {
    opacity: 1;
  }
  .mobile-menu.is-open .mobile-menu__panel {
    transform: translateX(0);
  }
  .mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid #e8e8e8;
  }
  .mobile-menu__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
  }
  .mobile-menu__logo img {
    display: block;
    width: 105px;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .mobile-menu__close {
    width: 36px;
    height: 36px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #292929;
    font-family: Arial, sans-serif;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
  }
  .mobile-menu__section {
    padding: 22px 0;
    border-bottom: 1px solid #e8e8e8;
  }
  .mobile-menu__section-title {
    display: block;
    margin-bottom: 12px;
    font-family: "Manrope", sans-serif;
    font-size: 13px;
    line-height: 1.2;
    color: #777777;
  }
  .mobile-menu__languages {
    display: flex;
    gap: 8px;
  }
  .mobile-menu__language {
    min-width: 54px;
    padding: 9px 12px;
    box-sizing: border-box;
    border: 1px solid #a8755f;
    border-radius: 20px;
    background: transparent;
    color: #a8755f;
    font-family: "Manrope", sans-serif;
    font-size: 13px;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
  }
  .mobile-menu__language.is-current,
  .mobile-menu__language:hover {
    background: #a8755f;
    color: #ffffff;
  }
  .mobile-menu__nav {
    display: flex;
    flex-direction: column;
    padding: 22px 0;
  }
  .mobile-menu__nav a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid #eeeeee;
    color: #292929;
    font-family: "Cormorant Garamond", serif;
    font-size: 27px;
    font-weight: 500;
    line-height: 1.1;
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
  }
  .mobile-menu__nav a:hover {
    color: #789b45;
    padding-left: 5px;
  }
  .mobile-menu__contact {
    padding-top: 5px;
  }
  .mobile-menu__contact a {
    display: inline-block;
    color: #a8755f;
    font-family: "Manrope", sans-serif;
    font-size: 15px;
    line-height: 1.3;
    text-decoration: none;
  }
  .mobile-menu__contact a:hover {
    color: #789b45;
  }
  body.mobile-menu-open {
    overflow: hidden;
  }
}
@media (max-width: 380px) {
  .header {
    padding: 8px;
  }
  .header-mobile {
    height: 42px;
    grid-template-columns: 40px 1fr 40px;
  }
  .header-mobile__logo img {
    width: 95px;
  }
  .mobile-menu__panel {
    width: 88%;
    padding: 18px;
  }
  .mobile-menu__nav a {
    font-size: 25px;
  }
}
.footer {
  width: 100%;
  padding: 45px 0 30px;
  background: #a8755f;
  border-radius: 24px 24px 0 0;
  color: #ffffff;
  flex-shrink: 0;
}
.footer__container {
  width: calc(100% - 116px);
  max-width: 1330px;
  margin: 0 auto;
  padding: 55px 0 35px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
  min-height: 260px;
}
.footer__contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer__heading {
  margin: 0 0 28px;
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 1;
}
.footer__contact {
  display: block;
  margin-bottom: 18px;
  color: #ffffff;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  text-decoration: none;
}
.footer__contact:last-child {
  margin-bottom: 0;
}
.footer__contact--email {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.footer__contact:hover {
  color: #ffffff;
}
.footer__logo {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.footer__logo img {
  display: block;
  width: 310px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer__logo-image {
  display: block;
  width: 310px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer__menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: auto;
}
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer__nav a {
  color: #ffffff;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.footer__nav a:hover {
  color: #ffffff;
  opacity: 0.7;
}
.footer__legal {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 55px;
  margin-top: 35px;
}
.footer__legal a {
  color: #ffffff;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.3;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.footer__legal a:hover {
  color: #ffffff;
  opacity: 0.7;
}
.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 25px;
}
.footer__copyright {
  margin: 0;
  color: #ffffff;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}
.footer__developer {
  display: inline-block !important;
  margin: 3px 0 0 !important;
  padding: 0 !important;
  color: #ffffff !important;
  font-family: "Manrope", sans-serif !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
  text-align: center;
  text-decoration: none !important;
  background: transparent !important;
  border: 0 !important;
  transition: opacity 0.2s ease;
}
.footer__developer:hover {
  color: #ffffff !important;
  text-decoration: none !important;
  opacity: 0.7;
}

@media (max-width: 700px) {
  .footer {
    width: calc(100% - 38px);
    margin: 0 19px;
    padding: 0;
    background: transparent;
    color: #ffffff;
    border-radius: 0;
  }
  .footer__container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 28px 20px 24px;
    box-sizing: border-box;
    background: #a8755f;
    border-radius: 22px;
  }
  .footer__top {
    display: flex;
    flex-direction: column;
    min-height: 0;
    gap: 28px;
  }
  .footer__contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .footer__heading {
    margin: 0 0 16px;
    font-family: "Cormorant Garamond", serif;
    font-size: 30px;
    font-weight: 500;
    line-height: 1;
    color: #ffffff;
  }
  .footer__contact {
    display: block;
    margin: 0 0 10px;
    color: #ffffff;
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.35;
    text-decoration: none;
  }
  .footer__contact:last-child {
    margin-bottom: 0;
  }
  .footer__contact--email {
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  .footer__logo {
    display: none;
  }
  .footer__menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 0;
  }
  .footer__nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .footer__nav a {
    color: #ffffff;
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    text-decoration: none;
    transition: opacity 0.2s ease;
  }
  .footer__nav a:hover {
    color: #ffffff;
    opacity: 0.7;
  }
  .footer__legal {
    display: none;
  }
  .footer__bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 28px;
  }
  .footer__copyright {
    margin: 0;
    color: #ffffff;
    font-family: "Manrope", sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;
    text-align: left;
  }
  .footer__developer {
    display: inline-block !important;
    margin: 7px 0 0 !important;
    padding: 0 !important;
    color: #ffffff !important;
    font-family: "Manrope", sans-serif !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    line-height: 1.4 !important;
    text-align: left;
    text-decoration: none !important;
    background: transparent !important;
    border: 0 !important;
  }
  .footer__developer:hover {
    color: #ffffff !important;
    opacity: 0.7;
  }
}
body {
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
          user-select: none !important;
}

a,
button {
  cursor: pointer;
}

.hero {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  padding-top: 40px;
  width: 100%;
}
.hero__banner {
  position: relative;
  width: 100%;
  min-height: 490px;
  overflow: hidden;
  border-radius: 24px;
}
.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 600px;
  padding: 70px 76px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero__title {
  max-width: 600px;
  margin: 0;
  color: #FCFBF8;
  font-family: "Cormorant Garamond", bold;
  font-size: 68px;
  font-weight: 400;
  line-height: 0.9;
}
.hero__description {
  max-width: 480px;
  margin: 12px 0 0;
  color: #FCFBF8;
  font-family: "Manrope", regular;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.35;
}
.hero__button {
  margin-top: auto;
  min-width: 164px;
  height: 42px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  background: #a8755f;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  transition: background-color 0.25s ease;
}
.hero__button:hover {
  background: #98664f;
  color: #fff;
}

.why {
  width: 100%;
  padding: 80px 0;
}
.why__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.why__left {
  padding: 0 48px;
}
.why__title {
  max-width: 400px;
  margin: 0 0 55px;
  font-family: "Cormorant Garamond", bold;
  font-size: 42px;
  line-height: 1.1;
  font-weight: 400;
  color: #2b2b2b;
}
.why__title span {
  display: block;
  color: #718f45;
}
.why__statistics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 505px;
}
.why__stat {
  min-height: 140px;
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  background: #d9d9d9;
  text-align: center;
  transition: all 0.25s ease;
}
.why__stat:hover {
  background: #8B4E34;
  color: #fff;
}
.why__stat-number {
  font-family: "Manrope", bold;
  font-size: 44px;
  line-height: 1;
  font-weight: 300;
}
.why__stat-text {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.2;
}
.why__right {
  padding: 145px 30px 0 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.why__description {
  width: 100%;
  max-width: 560px;
  margin: 0;
  font-family: "Manrope", regular;
  font-size: 22px;
  line-height: 1.45;
  color: #333;
}
.why__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  margin-bottom: auto;
  min-width: 165px;
  min-height: 42px;
  padding: 10px 24px;
  border-radius: 30px;
  background: #ad755b;
  color: #fff;
  font-family: "Manrope", Bold;
  font-size: 24px;
  line-height: 1;
  text-decoration: none;
  transition: all 0.25s ease;
}
.why__button:hover {
  background: #956047;
  color: #fff;
  transform: translateY(-2px);
}

.advantages {
  width: 100%;
  padding: 100px 0;
}
.advantages__container {
  max-width: 1300px;
  width: calc(100% - 128px);
  margin: 0 auto;
}
.advantages__title {
  margin: 0 0 30px;
  text-align: center;
  font-family: "Cormorant Garamond", Bold;
  font-size: 56px;
  font-weight: 400;
  line-height: 1.2;
  color: #292929;
}
.advantages__title span {
  color: #78954d;
}
.advantages__description {
  max-width: 850px;
  margin: 0 auto 55px;
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  color: #292929;
}
.advantages__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.advantages__item {
  min-height: 140px;
  display: flex;
  align-items: center;
  padding: 30px;
  border-radius: 22px;
  background: #d9d9d9;
  transition: background-color 0.25s ease, transform 0.25s ease;
}
.advantages__item:hover {
  background: #a8755f;
  transform: translateY(-3px);
}
.advantages__item:hover .advantages__icon {
  filter: brightness(0) invert(1);
}
.advantages__item:hover .advantages__title,
.advantages__item:hover .advantages__text {
  color: #ffffff;
}
.advantages__icon {
  width: 80px;
  height: auto;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
}
.advantages__icon img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.advantages__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.advantages__item-title {
  margin: 0 0 8px;
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  color: #292929;
  transition: color 0.25s ease;
}
.advantages__text {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #292929;
  transition: color 0.25s ease;
}

.products {
  width: 100%;
  padding: 100px 0;
}
.products__container {
  width: calc(100% - 128px);
  max-width: 1300px;
  margin: 0 auto;
  padding: 70px 88px;
  background: #d9d9d9;
  border-radius: 24px;
  overflow: hidden;
}
.products__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 50px;
}
.products__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 40px;
}
.products__title-wrap {
  width: 50%;
}
.products__title {
  margin-top: 0;
  font-size: 48px;
  line-height: 1.1;
  font-weight: 400;
}
.products__title--accent {
  color: #718f4b;
}
.products__description {
  width: 40%;
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.45;
}
.products__slider {
  width: 100%;
  overflow: hidden;
}
.products__track {
  display: flex;
  gap: 14px;
  width: -moz-max-content;
  width: max-content;
}
.products__item {
  width: 245px;
  flex-shrink: 0;
}
.products__card {
  display: block;
  color: #292929;
  text-decoration: none;
}
.products__card:hover {
  color: #292929;
}
.products__image {
  display: block;
  width: 245px;
  height: 280px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 22px;
  transition: transform 0.25s ease;
}
.products__card:hover .products__image {
  transform: translateY(-4px);
}
.products__item-title {
  display: block;
  margin-top: 18px;
  font-family: "Manrope", sans-serif;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.2;
}
.products__arrow {
  font-size: 22px;
  font-weight: 400;
}
.products__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 35px;
}
.products__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  height: 42px;
  padding: 0 20px;
  border-radius: 24px;
  background: #a8755f;
  color: #ffffff;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 4px 7px rgba(0, 0, 0, 0.18);
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.products__button:hover {
  background: #98664f;
  color: #ffffff;
  transform: translateY(-2px);
}
.products__navigation {
  display: flex;
  gap: 30px;
}
.products__prev, .products__next {
  width: 66px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #a8755f;
  border-radius: 50%;
  background: transparent;
  color: #a8755f;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.products__prev:hover, .products__next:hover {
  background: #a8755f;
  color: #ffffff;
}
.products__prev, .products__next {
  padding: 1px;
  font-family: Arial, sans-serif;
  line-height: 1;
}
.products__slider {
  width: 100%;
  overflow: hidden;
}
.products__list {
  display: flex;
  gap: 15px;
  width: -moz-max-content;
  width: max-content;
  transition: transform 0.4s ease;
  will-change: transform;
}
.products__item {
  width: 245px;
  flex: 0 0 245px;
}
.products__image {
  display: block;
  width: 245px;
  height: 280px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 22px;
  transition: transform 0.25s ease;
}

.about {
  width: 100%;
  padding: 100px 0;
}
.about__container {
  width: calc(100% - 128px);
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 80px;
       column-gap: 80px;
}
.about__left {
  display: flex;
  flex-direction: column;
}
.about__title {
  margin: 0 0 45px;
  font-size: 48px;
  line-height: 1.1;
  font-weight: 400;
  color: #292929;
}
.about__title span {
  color: #718f4b;
}
.about__text {
  max-width: 520px;
  margin: 0 0 28px;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.35;
  color: #292929;
}
.about__right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.about__subtitle {
  margin: 15px 65px 40px;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  color: #292929;
}
.about__image {
  display: block;
  width: 100%;
  height: auto;
}

.recommendations {
  width: 100%;
  padding: 100px 0;
}
.recommendations__container {
  width: calc(100% - 128px);
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 50px;
  align-items: center;
}
.recommendations__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.recommendations__label {
  margin-bottom: 2px;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.2;
  color: #292929;
}
.recommendations__title {
  margin: 0;
  font-size: 48px;
  line-height: 1.1;
  font-weight: 400;
  color: #292929;
}
.recommendations__title span {
  color: #718f4b;
}
.recommendations__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 176px;
  height: 42px;
  margin-top: 75px;
  padding: 0 20px;
  border-radius: 24px;
  background: #a8755f;
  color: #ffffff;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  box-shadow: 0 4px 7px rgba(0, 0, 0, 0.18);
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.recommendations__button:hover {
  background: #98664f;
  color: #ffffff;
  transform: translateY(-2px);
}
.recommendations__slider {
  display: flex;
  align-items: center;
  width: 100%;
  min-width: 0;
  gap: 30px;
}
.recommendations__viewport {
  width: 100%;
  overflow: hidden;
}
.recommendations__list {
  display: flex;
  gap: 12px;
  width: -moz-max-content;
  width: max-content;
  transition: transform 0.4s ease;
}
.recommendations__item {
  width: 160px;
  flex: 0 0 160px;
}
.recommendations__card {
  display: block;
  color: #292929;
  text-decoration: none;
}
.recommendations__card:hover {
  color: #292929;
}
.recommendations__image {
  display: block;
  width: 160px;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 22px;
}
.recommendations__card:hover .recommendations__image {
  transform: translateY(-4px);
}
.recommendations__prev, .recommendations__next {
  flex: 0 0 66px;
  width: 66px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 3px solid #a8755f;
  border-radius: 50%;
  background: transparent;
  color: #a8755f;
  font-family: Arial, sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.recommendations__prev:hover, .recommendations__next:hover {
  background: #a8755f;
  color: #ffffff;
}
.recommendations__container {
  grid-template-columns: 330px 1fr;
  gap: 25px;
}
.recommendations__slider {
  gap: 18px;
  margin-left: 110px;
}
.recommendations__viewport {
  max-width: 680px;
}
.recommendations__list {
  gap: 12px;
}
.recommendations__item {
  flex: 0 0 160px;
}
.recommendations__image {
  width: 160px;
  height: 180px;
}
.recommendations__prev, .recommendations__next {
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
}

.reviews {
  width: 100%;
  padding: 150px 0;
}
.reviews__container {
  width: calc(100% - 128px);
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.reviews__header {
  text-align: center;
  margin-bottom: 55px;
}
.reviews__title {
  margin: 0;
  font-size: 52px;
  line-height: 1.1;
  font-weight: 400;
  color: #292929;
}
.reviews__title span {
  color: #718f4b;
}
.reviews__slider {
  width: 100%;
  display: flex;
  justify-content: center;
}
.reviews__viewport {
  width: 400px;
  overflow: hidden;
}
.reviews__list {
  display: flex;
  gap: 18px;
  width: -moz-max-content;
  width: max-content;
  transition: transform 0.4s ease;
  will-change: transform;
}
.reviews__item {
  width: 612px;
  height: 262px;
  flex: 0 0 400px;
  padding: 35px 40px;
  box-sizing: border-box;
  border-radius: 18px;
  background: linear-gradient(135deg, #a8755f, #3a261e);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.reviews__text {
  margin: 0 0 15px;
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  color: #ffffff;
}
.reviews__author {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  text-align: right;
  color: rgba(255, 255, 255, 0.8);
}
.reviews__navigation {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  gap: 18px;
}
.reviews__prev, .reviews__next {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 2px solid #a8755f;
  border-radius: 50%;
  background: transparent;
  color: #a8755f;
  font-family: Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.reviews__prev:hover, .reviews__next:hover {
  background: #a8755f;
  color: #ffffff;
}
.reviews__prev:disabled, .reviews__next:disabled {
  opacity: 0.5;
  cursor: default;
}

.contacts {
  width: 100%;
  padding: 120px 0;
}
.contacts__container {
  width: calc(100% - 128px);
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contacts__left {
  padding-top: 70px;
}
.contacts__title {
  margin: 0 0 45px;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.1;
  color: #292929;
}
.contacts__title span {
  color: #718f4b;
}
.contacts__description {
  max-width: 520px;
  margin: 0 0 30px;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  color: #292929;
}
.contacts__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-top: 65px;
}
.contacts__info-item {
  width: 180px;
  height: 42px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border: 1px solid #a8755f;
  border-radius: 24px;
  color: #292929;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.contacts__info-item:hover {
  background: #a8755f;
  color: #ffffff;
}
.contacts__form-wrapper {
  width: 100%;
  padding: 55px 45px;
  box-sizing: border-box;
  background: #d9d9d9;
  border-radius: 24px;
}
.contacts__form {
  width: 100%;
}
.contacts__field {
  width: 100%;
  margin-bottom: 38px;
}
.contacts__field label {
  display: block;
  margin-bottom: 25px;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #292929;
}
.contacts__field input,
.contacts__field select {
  width: 100%;
  height: 48px;
  padding: 0;
  box-sizing: border-box;
  border: none;
  border-bottom: 1px solid #777;
  border-radius: 0;
  outline: none;
  background: transparent;
  color: #292929;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
}
.contacts__field input::-moz-placeholder, .contacts__field select::-moz-placeholder {
  color: #292929;
  opacity: 1;
}
.contacts__field input::placeholder,
.contacts__field select::placeholder {
  color: #292929;
  opacity: 1;
}
.contacts__field select {
  height: 52px;
  padding: 0 14px;
  border: 1px solid #292929;
  border-radius: 26px;
  cursor: pointer;
}
.contacts__submit {
  min-width: 130px;
  height: 42px;
  padding: 0 22px;
  border: none;
  border-radius: 24px;
  background: #a8755f;
  color: #ffffff;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 4px 7px rgba(0, 0, 0, 0.18);
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.contacts__submit:hover {
  background: #98664f;
  transform: translateY(-2px);
}
.contacts__privacy {
  max-width: 500px;
  margin: 15px 0 0;
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  line-height: 1.35;
  color: #555;
}

.hero-mobile {
  display: none;
}

@media (max-width: 700px) {
  .hero {
    display: none;
  }
  .hero-mobile {
    display: block;
    width: 100%;
  }
  .hero-mobile__container {
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
  }
  .hero-mobile__image {
    display: block;
    width: 100%;
    height: 225px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 14px;
  }
  .hero-mobile__content {
    padding-top: 14px;
  }
  .hero-mobile__title {
    margin: 0 0 12px;
    font-family: Georgia, serif;
    font-size: 25px;
    line-height: 1.05;
    font-weight: 400;
    color: #292929;
  }
  .hero-mobile__title span {
    color: #789b45;
  }
  .hero-mobile__description {
    margin: 0 0 12px;
    font-size: 19px;
    line-height: 1.45;
    font-weight: 400;
    font-family: "Manrope", Regular;
    color: #444;
  }
  .hero-mobile__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 20px;
    border-radius: 28px;
    background: #ad765e;
    color: #fff;
    font-size: 18px;
    line-height: 1;
    text-decoration: none;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
  }
  .hero-mobile__button:hover {
    color: #fff;
    background: #98644f;
  }
  .hero-mobile__button span {
    font-size: 22px;
    line-height: 1;
  }
}
.why-mobile {
  display: none;
}

@media (max-width: 700px) {
  .why {
    display: none;
  }
  .why-mobile {
    display: block;
    width: 100%;
  }
  .why-mobile__container {
    width: 100%;
    padding: 65px 19px 55px;
    box-sizing: border-box;
  }
  .why-mobile__title {
    margin: 0 0 14px;
    font-family: Georgia, serif;
    font-size: 34px;
    line-height: 1.05;
    font-weight: 400;
    color: #292929;
  }
  .why-mobile__description {
    margin: 0 0 18px;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 400;
    color: #292929;
  }
  .why-mobile__statistics {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 15px;
  }
  .why-mobile__stat {
    width: 100%;
    min-height: 145px;
    padding: 28px 20px;
    box-sizing: border-box;
    border-radius: 22px;
    background: #d9d9d9;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .why-mobile__stat:nth-child(2) {
    background: #ad765e;
    color: #fff;
  }
  .why-mobile__stat-number {
    font-size: 52px;
    line-height: 1;
    font-weight: 600;
    color: #292929;
  }
  .why-mobile__stat:nth-child(2) .why-mobile__stat-number {
    color: #fff;
  }
  .why-mobile__stat-text {
    font-size: 18px;
    line-height: 1.2;
    color: #292929;
  }
  .why-mobile__stat:nth-child(2) .why-mobile__stat-text {
    color: #fff;
  }
  .why-mobile__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 20px;
    border-radius: 28px;
    background: #ad765e;
    color: #fff;
    font-size: 18px;
    line-height: 1;
    text-decoration: none;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
  }
  .why-mobile__button:hover {
    color: #fff;
    background: #98644f;
  }
  .why-mobile__button span {
    font-size: 22px;
    line-height: 1;
  }
}
.advantages-mobile {
  display: none;
}

@media (max-width: 700px) {
  .advantages {
    display: none;
  }
  .advantages-mobile {
    display: block;
    width: 100%;
  }
  .advantages-mobile__container {
    width: 100%;
    padding: 55px 20px 60px;
    box-sizing: border-box;
  }
  .advantages-mobile__title {
    margin: 0 0 18px;
    font-family: Georgia, serif;
    font-size: 34px;
    line-height: 1.05;
    font-weight: 400;
    color: #292929;
  }
  .advantages-mobile__title span {
    color: #789b45;
  }
  .advantages-mobile__description {
    margin: 0 0 16px;
    font-size: 18px;
    line-height: 1.42;
    color: #292929;
  }
  .advantages-mobile__list {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .advantages-mobile__item {
    width: 100%;
    min-height: 118px;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 22px;
    background: #d9d9d9;
    display: flex;
    align-items: center;
    gap: 15px;
  }
  .advantages-mobile__item--active {
    background: #ad765e;
  }
  .advantages-mobile__icon-wrap {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .advantages-mobile__item--active .advantages-mobile__icon-wrap {
    background: #fff;
  }
  .advantages-mobile__icon {
    display: block;
    width: 30px;
    height: 30px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .advantages-mobile__content {
    min-width: 0;
    flex: 1;
  }
  .advantages-mobile__item-title {
    margin: 0 0 7px;
    font-size: 20px;
    line-height: 1.15;
    font-weight: 600;
    color: #292929;
  }
  .advantages-mobile__item--active .advantages-mobile__item-title {
    color: #fff;
  }
  .advantages-mobile__item-description {
    margin: 0;
    font-size: 16px;
    line-height: 1.3;
    color: #292929;
  }
  .advantages-mobile__item--active .advantages-mobile__item-description {
    color: #fff;
  }
}
.products-mobile {
  display: none;
}

@media (max-width: 700px) {
  .products {
    display: none;
  }
  .products-mobile {
    display: block;
    width: 100%;
  }
  .products-mobile__container {
    width: 100%;
    padding: 55px 19px 60px;
    box-sizing: border-box;
  }
  .products-mobile__title {
    margin: 0 0 14px;
    font-family: Georgia, serif;
    font-size: 30px;
    line-height: 1.05;
    font-weight: 400;
    color: #292929;
  }
  .products-mobile__title span {
    color: #789b45;
  }
  .products-mobile__description {
    margin: 0 0 18px;
    font-size: 18px;
    line-height: 1.4;
    color: #292929;
  }
  .products-mobile__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .products-mobile__item {
    display: block;
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 20px;
    text-decoration: none;
  }
  .products-mobile__image {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 20px;
    transition: transform 0.3s ease;
  }
  .products-mobile__item:hover .products-mobile__image {
    transform: scale(1.03);
  }
  .products-mobile__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 54px;
    margin-top: 18px;
    padding: 0 20px;
    border-radius: 28px;
    background: #ad765e;
    color: #fff;
    font-size: 18px;
    line-height: 1;
    text-decoration: none;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
    transition: background-color 0.2s ease, transform 0.2s ease;
  }
  .products-mobile__button:hover {
    background: #98644f;
    color: #fff;
    transform: translateY(-1px);
  }
  .products-mobile__button span {
    font-size: 22px;
  }
}
.about-mobile {
  display: none;
}

@media (max-width: 700px) {
  .about {
    display: none;
  }
  .about-mobile {
    display: block;
    width: 100%;
  }
  .about-mobile__container {
    width: 100%;
    padding: 55px 20px 50px;
    box-sizing: border-box;
  }
  .about-mobile__title {
    margin: 0 0 18px;
    font-family: Georgia, serif;
    font-size: 34px;
    line-height: 1.05;
    font-weight: 400;
    color: #292929;
  }
  .about-mobile__title span {
    color: #789b45;
  }
  .about-mobile__image {
    display: block;
    width: 100%;
    height: 310px;
    margin-bottom: 22px;
    border-radius: 20px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .about-mobile__text {
    margin: 0 0 20px;
    font-size: 18px;
    line-height: 1.45;
    color: #292929;
  }
  .about-mobile__text:last-child {
    margin-bottom: 0;
  }
}
.recommendations-mobile {
  display: none;
}

@media (max-width: 700px) {
  .recommendations {
    display: none;
  }
  .recommendations-mobile {
    display: block;
    width: 100%;
  }
  .recommendations-mobile__container {
    width: 100%;
    padding: 50px 20px 60px;
    box-sizing: border-box;
  }
  .recommendations-mobile__title {
    margin: 0 0 10px;
    font-family: Georgia, serif;
    font-size: 34px;
    line-height: 1.05;
    font-weight: 400;
    color: #292929;
  }
  .recommendations-mobile__title span {
    color: #789b45;
  }
  .recommendations-mobile__description {
    margin: 0 0 18px;
    font-size: 18px;
    line-height: 1.4;
    color: #292929;
  }
  .recommendations-mobile__list {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .recommendations-mobile__item {
    width: 100%;
    min-height: 145px;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 20px;
    background: #f3f3f3;
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: inherit;
  }
  .recommendations-mobile__item:hover {
    color: inherit;
  }
  .recommendations-mobile__image-wrap {
    width: 145px;
    height: 145px;
    flex: 0 0 145px;
    overflow: hidden;
    border-radius: 16px;
  }
  .recommendations-mobile__image {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    transition: transform 0.3s ease;
  }
  .recommendations-mobile__item:hover .recommendations-mobile__image {
    transform: scale(1.03);
  }
  .recommendations-mobile__content {
    min-width: 0;
    flex: 1;
  }
  .recommendations-mobile__item-title {
    margin: 0 0 6px;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 600;
    color: #292929;
  }
  .recommendations-mobile__item-description {
    margin: 0;
    font-size: 15px;
    line-height: 1.35;
    color: #292929;
  }
  .recommendations-mobile__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    margin-top: 18px;
    padding: 0 20px;
    border-radius: 28px;
    background: #ad765e;
    color: #fff;
    font-size: 18px;
    line-height: 1;
    text-decoration: none;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
  }
  .recommendations-mobile__button:hover {
    background: #98644f;
    color: #fff;
  }
  .recommendations-mobile__button span {
    font-size: 22px;
  }
}
.reviews-mobile {
  display: none;
}

@media (max-width: 700px) {
  .reviews {
    display: none;
  }
  .reviews-mobile {
    display: block;
    width: 100%;
    overflow: hidden;
  }
  .reviews-mobile__container {
    width: 100%;
    padding: 55px 20px 60px;
    box-sizing: border-box;
  }
  .reviews-mobile__title {
    margin: 0 0 22px;
    font-family: Georgia, serif;
    font-size: 34px;
    line-height: 1.15;
    font-weight: 400;
    color: #789b45;
  }
  .reviews-mobile__slider {
    width: 100%;
  }
  .reviews-mobile__viewport {
    width: 100%;
    overflow: hidden;
  }
  .reviews-mobile__list {
    display: flex;
    gap: 0;
    transition: transform 0.4s ease;
    will-change: transform;
  }
  .reviews-mobile__item {
    flex: 0 0 100%;
    width: 100%;
    min-height: 135px;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 22px;
    background: linear-gradient(135deg, #ad765e 0%, #51433e 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .reviews-mobile__text {
    margin: 0 0 15px;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 600;
    color: #fff;
  }
  .reviews-mobile__author {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: 15px;
    line-height: 1.3;
    color: #fff;
    white-space: pre-line;
  }
  .reviews-mobile__navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 18px;
  }
  .reviews-mobile__prev,
  .reviews-mobile__next {
    width: 68px;
    height: 68px;
    padding: 0;
    border: 3px solid #ad765e;
    border-radius: 50%;
    background: transparent;
    color: #ad765e;
    font-size: 26px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
  }
  .reviews-mobile__prev:hover:not(:disabled),
  .reviews-mobile__next:hover:not(:disabled) {
    background: #ad765e;
    color: #fff;
    transform: scale(1.04);
  }
  .reviews-mobile__prev:disabled,
  .reviews-mobile__next:disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
  }
}
.contacts-mobile {
  display: none;
}

@media (max-width: 700px) {
  .contacts {
    display: none;
  }
  .contacts-mobile {
    display: block;
    width: 100%;
    background: #fff;
  }
  .contacts-mobile__container {
    width: 100%;
    padding: 55px 10px 60px;
    box-sizing: border-box;
  }
  .contacts-mobile__title {
    margin: 0 0 10px;
    font-family: Georgia, serif;
    font-size: 24px;
    line-height: 1.1;
    font-weight: 400;
    color: #292929;
  }
  .contacts-mobile__info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 12px;
    padding: 11px 12px;
    border: 2px solid #ad765e;
    border-radius: 22px;
    background: #fff;
  }
  .contacts-mobile__info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 26px;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 400;
    color: #292929;
    text-decoration: none;
  }
  .contacts-mobile__info-item:hover {
    color: #789b45;
  }
  .contacts-mobile__info-icon {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .contacts-mobile__description {
    margin: 0 0 10px;
    font-size: 11px;
    line-height: 1.4;
    font-weight: 400;
    color: #444;
  }
  .contacts-mobile__form {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .contacts-mobile__field {
    margin-bottom: 9px;
  }
  .contacts-mobile__field label {
    display: block;
    margin: 0 0 4px;
    font-size: 10px;
    line-height: 1.2;
    font-weight: 600;
    color: #292929;
  }
  .contacts-mobile__field input,
  .contacts-mobile__field select {
    display: block;
    width: 100%;
    height: 32px;
    padding: 0 10px;
    box-sizing: border-box;
    border: 1px solid #888;
    border-radius: 10px;
    background: #fff;
    font-family: inherit;
    font-size: 14px;
    line-height: 1;
    color: #292929;
    outline: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }
  .contacts-mobile__field input::-moz-placeholder {
    color: #999;
    opacity: 1;
  }
  .contacts-mobile__field input::placeholder {
    color: #999;
    opacity: 1;
  }
  .contacts-mobile__field input:focus,
  .contacts-mobile__field select:focus {
    border-color: #ad765e;
  }
  .contacts-mobile__field select {
    padding-right: 30px;
    background-image: linear-gradient(45deg, transparent 50%, #292929 50%), linear-gradient(135deg, #292929 50%, transparent 50%);
    background-position: calc(100% - 12px) 13px, calc(100% - 8px) 13px;
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
  }
  .contacts-mobile__submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 32px;
    margin: 1px 0 0;
    padding: 0;
    border: 0;
    border-radius: 10px;
    background: #ad765e;
    color: #fff;
    font-family: inherit;
    font-size: 16px;
    line-height: 1;
    font-weight: 400;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
  }
  .contacts-mobile__submit:hover {
    background: #98644f;
    color: #fff;
    transform: translateY(-1px);
  }
  .contacts-mobile__submit:active {
    transform: translateY(0);
  }
  .contacts-mobile__privacy {
    margin: 7px 0 0;
    font-size: 12px;
    line-height: 1.3;
    color: #666;
  }
}
@media (max-width: 380px) {
  .contacts-mobile__container {
    padding-left: 9px;
    padding-right: 9px;
  }
  .contacts-mobile__title {
    font-size: 23px;
  }
  .contacts-mobile__info-item {
    font-size: 13px;
  }
  .contacts-mobile__description {
    font-size: 10px;
  }
}
@media (max-width: 700px) {
  section.reviews {
    display: none !important;
  }
  section.reviews-mobile {
    display: block !important;
  }
}
.catalog {
  width: 100%;
  padding: 35px 0 100px;
  padding-bottom: 600px;
  font-family: "Manrope", sans-serif;
}
.catalog__container {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 35px;
  width: calc(100% - 160px);
  max-width: 1320px;
  margin: 0 auto;
}
.catalog__sidebar {
  width: 220px;
  min-width: 0;
}
.catalog__filter {
  padding: 18px 16px;
  border: 1px solid #eeeeee;
  border-radius: 18px;
  background: #ffffff;
}
.catalog__filter-title {
  margin: 0 0 22px;
  color: #292929;
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
}
.catalog__categories {
  margin: 0;
  padding: 0;
  list-style: none;
}
.catalog__categories > li {
  margin: 0;
  padding: 0;
}
.catalog__category-item {
  margin: 0;
}
.catalog__category-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
}
.catalog__category-row > a, .catalog__categories > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  color: #333333;
  font-size: 12px;
  line-height: 1.3;
  text-decoration: none;
  transition: color 0.2s ease;
}
.catalog__category-row > a:hover, .catalog__categories > li > a:hover {
  color: #718f4b;
}
.catalog__category-row > a .catalog__category-count, .catalog__categories > li > a .catalog__category-count {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  padding: 0;
  border-radius: 50%;
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
}
.catalog__categories > li {
  margin-bottom: 14px;
}
.catalog__category-toggle {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #718f4b;
  font-size: 10px;
  cursor: pointer;
}
.catalog__subcategories {
  display: none;
  margin: 10px 0 5px;
  padding: 0 0 0 10px;
  list-style: none;
  border-left: 1px solid #eeeeee;
}
.catalog__subcategories.is-open {
  display: block;
}
.catalog__subcategories li {
  margin-bottom: 9px;
}
.catalog__subcategories a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #777777;
  font-size: 9px;
  text-decoration: none;
}
.catalog__subcategories a:hover {
  color: #718f4b;
}
.catalog__filter-section {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid #eeeeee;
}
.catalog__filter-subtitle {
  margin: 0 0 14px;
  color: #292929;
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 600;
}
.catalog__price-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.catalog__price-form input {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  padding: 7px 8px;
  border: 1px solid #eeeeee;
  border-radius: 7px;
  background: #ffffff;
  color: #333333;
  font-family: "Manrope", sans-serif;
  font-size: 9px;
  outline: none;
}
.catalog__price-form input::-moz-placeholder {
  color: #aaaaaa;
}
.catalog__price-form input::placeholder {
  color: #aaaaaa;
}
.catalog__price-form input:focus {
  border-color: #a8755f;
}
.catalog__price-form button {
  grid-column: 1/-1;
  width: 100%;
  padding: 7px;
  border: 0;
  border-radius: 15px;
  background: #718f4b;
  color: #ffffff;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.catalog__price-form button:hover {
  background: #5f7b3f;
}
.catalog__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.catalog__tags a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 7px;
  border: 1px solid #eeeeee;
  border-radius: 12px;
  color: #666666;
  font-size: 12px;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.catalog__tags a:hover {
  background: #a8755f;
  border-color: #a8755f;
  color: #ffffff;
}
.catalog__content {
  min-width: 0;
  width: 100%;
}
.catalog__top {
  width: 100%;
  min-height: 75px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}
.catalog__count {
  font-size: 18px;
  line-height: 1.4;
  color: #555555;
}
.catalog__sort {
  width: 170px;
  margin: 0;
}
.catalog__sort select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 170px;
  height: 36px;
  padding: 0 38px 0 16px;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  background-color: #ffffff;
  color: #292929;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 400;
  cursor: pointer;
  outline: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M3 4.5L6 7.5L9 4.5' fill='none' stroke='%23292929' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 11px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.catalog__sort select:hover {
  border-color: #c9c9c9;
}
.catalog__sort select:focus {
  border-color: #a8755f;
  box-shadow: none;
}
.catalog__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
.catalog__grid .product,
.catalog__grid .product-card {
  display: flex !important;
  flex-direction: column;
  min-width: 0;
  margin: 0 !important;
  padding: 0 !important;
  border: 1px solid #e5e5e5 !important;
  border-radius: 18px !important;
  background: #ffffff;
  overflow: hidden;
  list-style: none;
  box-shadow: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.catalog__grid .product:hover,
.catalog__grid .product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
.catalog__grid .product .woocommerce-loop-product__link,
.catalog__grid .product-card__image,
.catalog__grid .product-card__image-link {
  display: block;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden;
  text-decoration: none;
}
.catalog__grid .product .woocommerce-loop-product__link img,
.catalog__grid .product-card__image img,
.catalog__grid .product-card__image-link img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 !important;
  padding: 0 !important;
  border: 0;
  transition: transform 0.3s ease;
}
.catalog__grid .product:hover .woocommerce-loop-product__link img,
.catalog__grid .product-card:hover .product-card__image img,
.catalog__grid .product-card:hover .product-card__image-link img {
  transform: scale(1.02);
}
.catalog__grid .product-card__info,
.catalog__grid .product-card__card-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 16px 14px 14px;
}
.catalog__grid .product-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}
.catalog__grid .product-card__category {
  color: #718f4b;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
}
.catalog__grid .product-card__weight {
  flex-shrink: 0;
  color: #999999;
  font-size: 11px;
}
.catalog__grid .product .woocommerce-loop-product__title {
  margin: 12px 14px 8px !important;
  padding: 0 !important;
  color: #292929 !important;
  font-family: "Cormorant Garamond", serif;
  font-size: 22px !important;
  font-weight: 500 !important;
  line-height: 1.15;
  text-align: left;
}
.catalog__grid .product-card__product-title {
  margin: 0 0 18px;
  color: #292929;
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.15;
}
.catalog__grid .product-card__title-link {
  color: inherit;
  text-decoration: none;
}
.catalog__grid .product-card__title-link:hover {
  color: #718f4b;
}
.catalog__grid .product .price,
.catalog__grid .product-card__price {
  display: block;
  margin: 0 14px 12px !important;
  padding: 0 !important;
  color: #a8755f !important;
  font-family: "Manrope", sans-serif;
  font-size: 17px !important;
  font-weight: 600;
  line-height: 1;
  text-align: left;
}
.catalog__grid .product .price .amount,
.catalog__grid .product-card__price .amount {
  color: inherit !important;
}
.catalog__grid .product-card__product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-top: auto;
}
.catalog__grid .product .add_to_cart_button,
.catalog__grid .product .button,
.catalog__grid .product-card__add-to-cart,
.catalog__grid .product-card__cart {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content !important;
  width: fit-content !important;
  min-width: 90px;
  height: 34px;
  margin: 0 14px 14px !important;
  padding: 0 14px !important;
  border: 0 !important;
  border-radius: 17px !important;
  background: #718f4b !important;
  color: #ffffff !important;
  font-family: "Manrope", sans-serif;
  font-size: 11px !important;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  box-shadow: none !important;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.catalog__grid .product .add_to_cart_button:hover,
.catalog__grid .product .button:hover,
.catalog__grid .product-card__add-to-cart:hover,
.catalog__grid .product-card__cart:hover {
  background: #617b40 !important;
  color: #ffffff !important;
  transform: translateY(-1px);
}
.catalog__grid .product .onsale,
.catalog__grid .product .star-rating {
  display: none !important;
}
.catalog__grid .product-card__title-link {
  text-decoration: none;
}
.catalog__pagination {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
.catalog__pagination .page-numbers {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.catalog__pagination .page-numbers a,
.catalog__pagination .page-numbers span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: #555555;
  font-size: 9px;
  text-decoration: none;
}
.catalog__pagination .page-numbers .current {
  background: #718f4b;
  color: #ffffff;
}
.catalog__pagination .page-numbers a:hover {
  background: #eeeeee;
}
.catalog__empty {
  padding: 80px 20px;
  text-align: center;
}
.catalog__empty h2 {
  margin: 0;
  color: #292929;
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 500;
}

.catalog__categories a {
  color: #171717;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.catalog__categories a.is-active {
  color: #718f4b !important;
  font-weight: 600;
}
.catalog__categories a:hover {
  color: #718f4b;
}
.catalog__categories .catalog__category-count {
  background: #f1f1f1;
  color: #999;
}
.catalog__categories a.is-active .catalog__category-count {
  background: #f1f1f1;
  color: #999;
}
.catalog__categories > li:first-child a.is-active {
  color: #718f4b !important;
}
.catalog__categories > li:first-child a.is-active .catalog__category-count {
  background: #718f4b;
  color: #fff;
}

.catalog__categories a {
  color: #171717;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.catalog__categories a .catalog__category-count {
  background: #f1f1f1;
  color: #999;
}
.catalog__categories a.is-active {
  color: #718f4b !important;
  font-weight: 600;
}
.catalog__categories a.is-active .catalog__category-count {
  background: #718f4b;
  color: #fff;
}
.catalog__categories a:hover {
  color: #718f4b;
}
.catalog__categories a:hover .catalog__category-count {
  background: #f1f1f1;
  color: #999;
}

@media (max-width: 1100px) {
  .catalog {
    padding: 30px 0 80px;
  }
  .catalog__container {
    width: calc(100% - 50px);
    max-width: none;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 25px;
  }
  .catalog__sidebar {
    width: 190px;
  }
  .catalog__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
  .product-card__info {
    padding: 14px 12px 12px;
  }
}
@media (max-width: 800px) {
  .catalog {
    padding: 25px 0 70px;
  }
  .catalog__container {
    width: calc(100% - 30px);
    display: flex;
    flex-direction: column;
    gap: 25px;
  }
  .catalog__sidebar {
    width: 100%;
    order: 1;
  }
  .catalog__filter {
    width: 100%;
    padding: 16px;
    box-sizing: border-box;
    border-radius: 18px;
  }
  .catalog__filter-title {
    margin-bottom: 16px;
    font-size: 25px;
  }
  .catalog__categories > li {
    margin-bottom: 11px;
  }
  .catalog__category-row > a,
  .catalog__categories > li > a {
    font-size: 14px;
  }
  .catalog__category-count {
    width: 24px !important;
    height: 24px !important;
    font-size: 10px !important;
  }
  .catalog__category-toggle {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }
  .catalog__subcategories {
    margin-top: 8px;
    padding-left: 12px;
  }
  .catalog__subcategories a {
    font-size: 12px;
  }
  .catalog__filter-section {
    margin-top: 20px;
    padding-top: 18px;
  }
  .catalog__filter-subtitle {
    margin-bottom: 12px;
    font-size: 21px;
  }
  .catalog__price-form {
    gap: 8px;
  }
  .catalog__price-form input {
    min-height: 38px;
    padding: 0 10px;
    font-size: 12px;
  }
  .catalog__price-form button {
    min-height: 38px;
    padding: 0;
    border-radius: 19px;
    font-size: 13px;
  }
  .catalog__tags {
    gap: 7px;
  }
  .catalog__tags a {
    padding: 7px 10px;
    border-radius: 16px;
    font-size: 12px;
  }
  .catalog__content {
    order: 2;
  }
  .catalog__top {
    min-height: auto;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
  }
  .catalog__count {
    font-size: 15px;
  }
  .catalog__sort {
    width: 160px;
    flex-shrink: 0;
  }
  .catalog__sort select {
    width: 160px;
    height: 38px;
    padding-left: 12px;
    padding-right: 34px;
    font-size: 12px;
    background-position: right 11px center;
  }
  .catalog__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .catalog__grid .product,
  .catalog__grid .product-card {
    border-radius: 16px !important;
  }
  .catalog__grid .product-card__image,
  .catalog__grid .product-card__image-link {
    width: 100%;
  }
  .catalog__grid .product-card__image img,
  .catalog__grid .product-card__image-link img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1/1;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .catalog__grid .product-card__info,
  .catalog__grid .product-card__card-info {
    padding: 11px 10px 10px;
  }
  .catalog__grid .product-card__meta {
    margin-bottom: 6px;
    gap: 6px;
  }
  .catalog__grid .product-card__category {
    font-size: 9px;
  }
  .catalog__grid .product-card__weight {
    font-size: 9px;
  }
  .catalog__grid .product-card__title,
  .catalog__grid .product-card__product-title {
    margin-bottom: 10px;
    font-size: 18px !important;
    line-height: 1.1;
  }
  .catalog__grid .product-card__title a {
    color: inherit;
    text-decoration: none;
  }
  .catalog__grid .product-card__price {
    margin: 0 0 9px !important;
    font-size: 15px !important;
  }
  .catalog__grid .product-card__cart,
  .catalog__grid .product-card__add-to-cart {
    width: 100% !important;
    min-width: 0;
    height: 32px;
    margin: 0 !important;
    padding: 0 8px !important;
    border-radius: 16px !important;
    font-size: 10px !important;
  }
  .catalog__grid .product .button,
  .catalog__grid .product .add_to_cart_button {
    width: calc(100% - 20px) !important;
    min-width: 0;
    height: 32px;
    margin: 0 10px 10px !important;
    padding: 0 8px !important;
    border-radius: 16px !important;
    font-size: 10px !important;
  }
  .catalog__pagination {
    margin-top: 35px;
  }
}
@media (max-width: 550px) {
  .catalog {
    padding: 20px 0 60px;
  }
  .catalog__container {
    width: calc(100% - 20px);
    gap: 18px;
  }
  .catalog__filter {
    padding: 14px;
    border-radius: 16px;
  }
  .catalog__filter-title {
    font-size: 23px;
  }
  .catalog__category-row > a,
  .catalog__categories > li > a {
    font-size: 13px;
  }
  .catalog__top {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-bottom: 14px;
  }
  .catalog__count {
    font-size: 14px;
  }
  .catalog__sort {
    width: 100%;
  }
  .catalog__sort select {
    width: 100%;
    height: 40px;
    font-size: 12px;
  }
  .catalog__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .catalog__grid .product,
  .catalog__grid .product-card {
    border-radius: 14px !important;
  }
  .catalog__grid .product-card__info {
    padding: 9px 8px 8px;
  }
  .catalog__grid .product-card__meta {
    margin-bottom: 5px;
  }
  .catalog__grid .product-card__category,
  .catalog__grid .product-card__weight {
    font-size: 8px;
  }
  .catalog__grid .product-card__title,
  .catalog__grid .product-card__product-title {
    margin-bottom: 8px;
    font-size: 16px !important;
    line-height: 1.05;
  }
  .catalog__grid .product-card__price {
    margin-bottom: 8px !important;
    font-size: 14px !important;
  }
  .catalog__grid .product-card__cart,
  .catalog__grid .product-card__add-to-cart {
    height: 30px;
    border-radius: 15px !important;
    font-size: 9px !important;
  }
  .catalog__tags {
    gap: 5px;
  }
  .catalog__tags a {
    padding: 6px 9px;
    font-size: 11px;
  }
}
@media (max-width: 380px) {
  .catalog__grid {
    gap: 8px;
  }
  .catalog__grid .product-card__title,
  .catalog__grid .product-card__product-title {
    font-size: 15px !important;
  }
  .catalog__grid .product-card__price {
    font-size: 13px !important;
  }
  .catalog__grid .product-card__cart,
  .catalog__grid .product-card__add-to-cart {
    font-size: 8px !important;
  }
}
.product-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: auto;
  padding-top: 10px;
}

.product-card__price {
  margin: 0;
  color: #a8755f;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 32px;
}

.product-card__cart {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 32px;
  padding: 0 13px;
  margin: 0;
  border: none;
  border-radius: 16px;
  background: #718f4b;
  color: #ffffff !important;
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none !important;
  box-sizing: border-box;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.product-card__cart:hover {
  background: #5f7b3f;
  color: #ffffff !important;
}

.product-card__title {
  margin: 0 !important;
  padding: 0 !important;
  font-family: "Cormorant Garamond", serif !important;
  font-size: 18px !important;
  font-weight: 500 !important;
  line-height: 1.2 !important;
  color: #171717 !important;
}
.product-card__title a {
  display: block;
  margin: 0 !important;
  padding: 0 !important;
  color: #171717 !important;
  font-family: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
  text-decoration: none !important;
}

.product-card__image {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}
.product-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.pre-cart {
  position: fixed;
  inset: 0;
  z-index: 9999;
  visibility: hidden;
  pointer-events: none;
}
.pre-cart.is-open {
  visibility: visible;
  pointer-events: auto;
}
.pre-cart.is-open .pre-cart__overlay {
  opacity: 1;
}
.pre-cart.is-open .pre-cart__panel {
  transform: translateX(0);
}

.pre-cart__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pre-cart__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(430px, 100vw);
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.12);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-sizing: border-box;
}

.pre-cart__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 28px;
  border-bottom: 1px solid #eeeeee;
  box-sizing: border-box;
}

.pre-cart__title {
  margin: 0;
  color: #171717;
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
}

.pre-cart__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #171717;
  font-family: Arial, sans-serif;
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.pre-cart__close:hover {
  background: #f3f3f3;
}

.pre-cart__content {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 24px 28px;
  box-sizing: border-box;
}

.pre-cart__products {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pre-cart__empty {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
}

.pre-cart__empty-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: #eeeeee;
  font-size: 30px;
}

.pre-cart__empty h3 {
  margin: 0 0 10px;
  color: #171717;
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 600;
}

.pre-cart__empty p {
  max-width: 300px;
  margin: 0 0 22px;
  color: #888888;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  line-height: 1.6;
}

.pre-cart__browse {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  height: 38px;
  padding: 0 18px;
  border-radius: 20px;
  background: #718f4b;
  color: #ffffff !important;
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-decoration: none !important;
  transition: background-color 0.2s ease;
}
.pre-cart__browse:hover {
  background: #5f7b3f;
  color: #ffffff !important;
}

.pre-cart__footer {
  flex-shrink: 0;
  padding: 20px 28px 24px;
  border-top: 1px solid #eeeeee;
  background: #ffffff;
  box-sizing: border-box;
}

.pre-cart__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  color: #777777;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
}

.pre-cart__total strong {
  color: #171717;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.pre-cart__checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 22px;
  background: #718f4b;
  color: #ffffff;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}
.pre-cart__checkout:hover:not(:disabled) {
  background: #5f7b3f;
}
.pre-cart__checkout:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

body.pre-cart-open {
  overflow: hidden;
}

.pre-cart__item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border-radius: 14px;
  background: #eeeeee;
  box-sizing: border-box;
}

.pre-cart__item-image {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  overflow: hidden;
  border-radius: 10px;
  background: #ffffff;
}

.pre-cart__item-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.pre-cart__item-info {
  min-width: 0;
  flex: 1;
}

.pre-cart__item-name {
  margin: 0 24px 6px 0;
  color: #171717;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
}

.pre-cart__item-price {
  margin-bottom: 8px;
  color: #a8755f;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 600;
}

.pre-cart__item-controls {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 28px;
  padding: 0 8px;
  border-radius: 14px;
  background: #ffffff;
}

.pre-cart__quantity-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #171717;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
}

.pre-cart__quantity {
  min-width: 12px;
  color: #171717;
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-align: center;
}

.pre-cart__remove {
  position: absolute;
  top: 8px;
  right: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #888888;
  font-family: Arial, sans-serif;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease;
}

.pre-cart__remove:hover {
  color: #171717;
}

.header__cart {
  position: relative;
}

.header__cart-count {
  position: absolute;
  top: -7px;
  right: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 50%;
  background: #718f4b;
  color: #ffffff;
  font-family: "Manrope", sans-serif;
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
  box-sizing: border-box;
}

.cart-page {
  width: 100%;
  padding: 70px 0 120px;
}
.cart-page__container {
  width: min(1200px, 100% - 80px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 40px;
  align-items: start;
}
.cart-page__content {
  min-width: 0;
}
.cart-page__heading {
  margin-bottom: 30px;
}
.cart-page__title {
  margin: 0;
  font-size: 32px;
  font-weight: 400;
}
.cart-page__count {
  color: #769b4a;
  font-size: 16px;
  font-style: italic;
}
.cart-page__items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cart-page__item {
  display: grid;
  grid-template-columns: 70px minmax(180px, 1fr) 80px 90px 90px 25px;
  align-items: center;
  gap: 18px;
  min-height: 72px;
  padding: 10px 14px;
  background: #dedede;
  border-radius: 16px;
}
.cart-page__item-image {
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 10px;
}
.cart-page__item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.cart-page__item-info {
  min-width: 0;
}
.cart-page__item-name {
  margin: 0 0 5px;
  font-size: 15px;
  font-weight: 400;
}
.cart-page__item-description {
  font-size: 9px;
  color: #777;
  line-height: 1.4;
}
.cart-page__item-price {
  font-size: 12px;
  white-space: nowrap;
}
.cart-page__item-quantity {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 28px;
  background: #fff;
  border-radius: 20px;
}
.cart-page__quantity-button {
  width: 24px;
  height: 24px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
}
.cart-page__quantity-value {
  min-width: 20px;
  text-align: center;
  font-size: 12px;
}
.cart-page__item-subtotal {
  color: #769b4a;
  font-size: 13px;
  white-space: nowrap;
}
.cart-page__remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: #777;
  text-decoration: none;
  font-size: 18px;
}
.cart-page__remove:hover {
  color: #b07860;
}
.cart-page__coupon {
  margin-top: 15px;
}
.cart-page__coupon-form {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  background: #dedede;
  border-radius: 16px;
}
.cart-page__coupon-input {
  flex: 1;
  height: 34px;
  padding: 0 14px;
  border: 0;
  border-radius: 20px;
  outline: none;
}
.cart-page__coupon-button {
  height: 34px;
  padding: 0 22px;
  border: 0;
  border-radius: 20px;
  background: #292929;
  color: #fff;
  cursor: pointer;
}
.cart-page__summary {
  padding: 24px;
  background: #dedede;
  border-radius: 18px;
}
.cart-page__summary-title {
  margin: 0 0 25px;
  font-size: 20px;
  font-weight: 400;
}
.cart-page__summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 11px;
  color: #777;
}
.cart-page__shipping {
  color: #769b4a;
}
.cart-page__summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 14px;
}
.cart-page__summary-total strong {
  font-size: 20px;
}
.cart-page__checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 42px;
  margin-top: 20px;
  border-radius: 22px;
  background: #769b4a;
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  transition: 0.2s ease;
}
.cart-page__checkout:hover {
  background: #66883f;
  color: #fff;
}

.checkout-page {
  width: 100%;
  padding: 35px 0 80px;
  font-family: inherit;
}

.checkout-page__container {
  width: min(1160px, 100% - 40px);
  margin: 0 auto;
}

.checkout-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: start;
  margin: 0 auto 45px;
  max-width: 760px;
}

.checkout-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  text-align: center;
}
.checkout-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 13px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: #e7dccf;
  z-index: 0;
}
.checkout-step--completed:not(:last-child)::after {
  background: #759943;
}

.checkout-step__icon {
  position: relative;
  z-index: 1;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #e7dccf;
  border-radius: 50%;
  background: #faf9f6;
  color: #759943;
  font-size: 14px;
  line-height: 1;
}

.checkout-step--completed .checkout-step__icon {
  border-color: #759943;
  background: #759943;
  color: #fff;
}

.checkout-step__text {
  font-size: 12px;
  color: #777;
}
.checkout-step--active .checkout-step__text {
  color: #222;
  font-weight: 600;
}

.checkout-page__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 35px;
  align-items: start;
}

.checkout-page__form {
  min-width: 0;
}

.checkout-section {
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid #e9dfd3;
}

.checkout-section__title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  font-size: 18px;
  font-weight: 500;
}

.checkout-section__number {
  width: 23px;
  height: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #351d12;
  color: #fff;
  font-size: 11px;
}

.checkout-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 18px;
}

.checkout-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.checkout-field--full {
  grid-column: 1/-1;
}
.checkout-field label {
  font-size: 11px;
  color: #777;
}
.checkout-field input {
  width: 100%;
  height: 43px;
  padding: 0 14px;
  border: 1px solid #dfd3c6;
  border-radius: 13px;
  background: #fff;
  font-family: inherit;
  font-size: 12px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.checkout-field input::-moz-placeholder {
  color: #999;
}
.checkout-field input::placeholder {
  color: #999;
}
.checkout-field input:focus {
  border-color: #759943;
  box-shadow: 0 0 0 2px rgba(117, 153, 67, 0.1);
}

.checkout-payment-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.checkout-payment-method {
  height: 55px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 17px;
  border: 1px solid #dfd3c6;
  border-radius: 13px;
  background: #fff;
  font-family: inherit;
  font-size: 12px;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.checkout-payment-method--active {
  border-color: #759943;
}

.checkout-payment-method__indicator {
  width: 26px;
  height: 17px;
  border-radius: 4px;
  background: #e5ddcf;
}
.checkout-payment-method--active .checkout-payment-method__indicator {
  background: #759943;
}

.checkout-page__summary {
  padding: 28px;
  border-radius: 24px;
  background: #dcdcdc;
}

.checkout-page__summary-title {
  margin: 0 0 24px;
  font-size: 18px;
  font-weight: 500;
}

.checkout-order-items {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-bottom: 25px;
}

.checkout-order-item {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 12px;
}

.checkout-order-item__image {
  width: 48px;
  height: 48px;
  overflow: hidden;
  border-radius: 10px;
  background: #eee;
}
.checkout-order-item__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.checkout-order-item__info {
  min-width: 0;
}
.checkout-order-item__info h3 {
  margin: 0 0 4px;
  font-size: 12px;
  font-weight: 500;
}
.checkout-order-item__info span {
  font-size: 10px;
  color: #777;
}

.checkout-order-item > strong {
  font-size: 12px;
  white-space: nowrap;
}

.checkout-coupon {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-bottom: 28px;
}
.checkout-coupon input {
  width: 100%;
  height: 40px;
  padding: 0 14px;
  border: 0;
  border-radius: 12px;
  background: #fff;
  font-family: inherit;
  font-size: 12px;
  outline: none;
}
.checkout-coupon button {
  height: 40px;
  padding: 0 25px;
  border: 0;
  border-radius: 12px;
  background: #351d12;
  color: #fff;
  font-family: inherit;
  font-size: 11px;
  cursor: pointer;
}

.checkout-totals {
  padding-top: 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.checkout-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 11px;
  color: #777;
}
.checkout-total-row strong {
  font-size: 16px;
  color: #222;
}
.checkout-total-row--final {
  margin-top: 18px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #222;
}

.checkout-page__pay {
  width: 100%;
  height: 44px;
  border: 0;
  border-radius: 22px;
  background: #759943;
  color: #fff;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.checkout-page__pay:hover {
  background: #668735;
}
.checkout-page__pay:active {
  transform: scale(0.99);
}

.checkout-benefits {
  width: min(1160px, 100% - 40px);
  margin: 25px auto 0;
  display: flex;
  justify-content: flex-end;
  gap: 45px;
}

.checkout-benefit {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  color: #777;
}
.checkout-benefit img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}

.checkout-page {
  font-size: 16px;
}

.checkout-section__title {
  font-size: 22px;
}

.checkout-field label {
  font-size: 14px;
}

.checkout-field input {
  font-size: 16px;
  min-height: 52px;
}

.checkout-section.is-valid .checkout-section__number {
  background-color: #789b43;
  color: #fff;
}

.checkout-section.is-valid .checkout-section__title {
  color: #789b43;
}

.checkout-section.is-valid .checkout-field input {
  border-color: #789b43;
}

.checkout-step__icon {
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.checkout-step.checkout-step--completed .checkout-step__icon {
  background-color: #789b43;
  border-color: #789b43;
  color: #fff;
}

.checkout-step__text {
  font-size: 14px;
}

.checkout-field {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.checkout-field--hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  pointer-events: none;
}

.checkout-field {
  position: relative;
}
.checkout-field__error {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.3;
  color: #e53935;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.checkout-field__error.is-visible {
  opacity: 1;
  visibility: visible;
}

#cvc {
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
#cvc.is-invalid {
  border-color: #e53935;
  box-shadow: 0 0 0 1px rgba(229, 57, 53, 0.15);
}
#cvc.is-valid {
  border-color: #78a442;
  box-shadow: 0 0 0 1px rgba(120, 164, 66, 0.12);
}

@media (max-width: 900px) {
  .checkout-page__layout {
    grid-template-columns: 1fr;
  }
  .checkout-page__summary {
    order: -1;
  }
  .checkout-benefits {
    justify-content: center;
    flex-wrap: wrap;
  }
}
@media (max-width: 600px) {
  .checkout-page {
    padding-top: 20px;
  }
  .checkout-page__container {
    width: calc(100% - 24px);
  }
  .checkout-steps {
    margin-bottom: 30px;
  }
  .checkout-step__text {
    font-size: 9px;
  }
  .checkout-fields {
    grid-template-columns: 1fr;
  }
  .checkout-field--full {
    grid-column: auto;
  }
  .checkout-payment-methods {
    grid-template-columns: 1fr;
  }
  .checkout-page__summary {
    padding: 20px;
    border-radius: 18px;
  }
  .checkout-coupon {
    grid-template-columns: 1fr;
  }
  .checkout-coupon button {
    width: 100%;
  }
  .checkout-benefits {
    width: calc(100% - 24px);
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}
.checkout-confirmation {
  width: 100%;
  padding: 40px 0 80px;
}
.checkout-confirmation__container {
  width: min(100% - 40px, 840px);
  margin: 0 auto;
}
.checkout-confirmation .checkout-steps {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 45px;
}
.checkout-confirmation .checkout-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}
.checkout-confirmation .checkout-step::after {
  content: "";
  position: absolute;
  top: 12px;
  left: calc(50% + 14px);
  width: calc(100% - 28px);
  height: 1px;
  background: #d8d8d8;
}
.checkout-confirmation .checkout-step:last-child::after {
  display: none;
}
.checkout-confirmation .checkout-step--completed::after {
  background: #7b9f43;
}
.checkout-confirmation .checkout-step__icon {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #eee;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}
.checkout-confirmation .checkout-step--completed .checkout-step__icon {
  background: #7b9f43;
}
.checkout-confirmation .checkout-step__text {
  margin-top: 8px;
  font-size: 11px;
  color: #777;
  text-align: center;
}
.checkout-confirmation .checkout-step--completed .checkout-step__text {
  color: #777;
}
.checkout-confirmation__success {
  text-align: center;
  margin-bottom: 30px;
}
.checkout-confirmation__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: #42621f;
  color: #fff;
  font-size: 38px;
  font-weight: 300;
}
.checkout-confirmation img.checkout-confirmation__icon {
  -o-object-fit: contain;
     object-fit: contain;
}
.checkout-confirmation h1 {
  margin: 0 0 8px;
  font-size: 26px;
  font-weight: 400;
  color: #111;
}
.checkout-confirmation__success p {
  margin: 0 0 10px;
  font-size: 12px;
  color: #999;
}
.checkout-confirmation__success p strong {
  font-weight: 400;
}
.checkout-confirmation__number {
  display: block;
  font-size: 11px;
  color: #888;
}
.checkout-confirmation__order {
  padding: 25px 20px;
  background: #ddd;
  border-radius: 20px;
}
.checkout-confirmation__order h2 {
  margin: 0 0 22px;
  font-size: 15px;
  font-weight: 400;
  color: #222;
}
.checkout-confirmation__item {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.checkout-confirmation__item:last-of-type {
  margin-bottom: 25px;
}
.checkout-confirmation__item-image {
  width: 42px;
  height: 42px;
  overflow: hidden;
  border-radius: 10px;
  background: #eee;
}
.checkout-confirmation__item-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.checkout-confirmation__item-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.checkout-confirmation__item-info strong {
  font-size: 11px;
  font-weight: 400;
  color: #222;
}
.checkout-confirmation__item-info span {
  font-size: 9px;
  color: #888;
}
.checkout-confirmation__item > strong {
  font-size: 11px;
  font-weight: 600;
  color: #222;
}
.checkout-confirmation__totals {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 15px;
}
.checkout-confirmation__totals > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 9px;
  font-size: 10px;
  color: #777;
}
.checkout-confirmation__total {
  margin-top: 10px !important;
  margin-bottom: 0 !important;
}
.checkout-confirmation__total span {
  font-size: 12px;
  color: #222;
}
.checkout-confirmation__total strong {
  font-size: 15px;
  font-weight: 500;
  color: #d96c45;
}
.checkout-confirmation__details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 25px;
  padding: 18px 20px;
  border: 1px solid #dfd3c8;
  border-radius: 20px;
  background: #fff;
}
.checkout-confirmation__details > div {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.checkout-confirmation__details span {
  font-size: 9px;
  color: #8aa45d;
  text-transform: uppercase;
}
.checkout-confirmation__details strong {
  font-size: 10px;
  font-weight: 400;
  color: #444;
}
.checkout-confirmation__actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}
.checkout-confirmation__button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  min-height: 38px;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 10px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.checkout-confirmation__button--primary {
  background: #7b9f43;
  color: #fff;
}
.checkout-confirmation__button--primary:hover {
  background: #668733;
  color: #fff;
}
.checkout-confirmation__button--secondary {
  border: 1px solid #3d2418;
  background: #fff;
  color: #3d2418;
}
.checkout-confirmation__button--secondary:hover {
  background: #3d2418;
  color: #fff;
}

@media (max-width: 700px) {
  .checkout-confirmation {
    padding: 25px 0 50px;
  }
  .checkout-confirmation__container {
    width: min(100% - 30px, 840px);
  }
  .checkout-confirmation .checkout-steps {
    margin-bottom: 35px;
  }
  .checkout-confirmation .checkout-step__text {
    font-size: 9px;
  }
  .checkout-confirmation__order {
    padding: 20px 15px;
    border-radius: 15px;
  }
  .checkout-confirmation__details {
    grid-template-columns: 1fr;
    gap: 18px;
    border-radius: 15px;
  }
  .checkout-confirmation__actions {
    flex-direction: column;
  }
  .checkout-confirmation__button {
    width: 100%;
  }
}
.contact-confirmation {
  min-height: 520px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 60px 20px 100px;
}

.contact-confirmation__container {
  width: 100%;
  display: flex;
  justify-content: center;
}

.contact-confirmation__card {
  width: 100%;
  max-width: 520px;
  background: #dedede;
  border-radius: 22px;
  padding: 45px 40px 40px;
  text-align: center;
  box-sizing: border-box;
}

.contact-confirmation__icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #4f6828;
  color: #fff;
  font-size: 38px;
  line-height: 1;
  font-family: Arial, sans-serif;
}

.contact-confirmation__title {
  margin: 0 0 18px;
  font-family: inherit;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.2;
  color: #222;
}

.contact-confirmation__description {
  max-width: 400px;
  margin: 0 auto 28px;
  font-size: 19px;
  line-height: 1.5;
  color: #222;
}
.contact-confirmation__description span {
  font-family: inherit, bold;
  color: #6F8A46;
}

.contact-confirmation__button {
  display: block;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  padding: 13px 24px;
  box-sizing: border-box;
  border-radius: 30px;
  background: #759d3f;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.contact-confirmation__button:hover {
  background: #628832;
  color: #fff;
  transform: translateY(-1px);
}

@media (max-width: 600px) {
  .contact-confirmation {
    min-height: 450px;
    padding: 40px 16px 70px;
  }
  .contact-confirmation__card {
    padding: 35px 24px 30px;
    border-radius: 18px;
  }
  .contact-confirmation__icon {
    width: 54px;
    height: 54px;
    font-size: 32px;
  }
  .contact-confirmation__title {
    font-size: 26px;
  }
  .contact-confirmation__description {
    font-size: 14px;
  }
  .contact-confirmation__button {
    max-width: 240px;
  }
}
.terms-page {
  width: 100%;
}
.terms-page__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 30px 100px;
}
.terms-page__title {
  margin: 0 0 18px;
  font-size: 42px;
  line-height: 1.15;
  font-weight: 600;
}
.terms-page__date {
  margin-bottom: 60px;
  font-size: 14px;
  line-height: 1.5;
  color: #858585;
}
.terms-page__section {
  margin-bottom: 42px;
}
.terms-page__section:last-child {
  margin-bottom: 0;
}
.terms-page__section-title {
  margin: 0 0 16px;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 600;
}
.terms-page__text {
  max-width: 100%;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  color: #333;
}

@media (max-width: 1024px) {
  .terms-page__container {
    padding: 55px 30px 80px;
  }
  .terms-page__title {
    font-size: 36px;
  }
  .terms-page__section-title {
    font-size: 22px;
  }
}
@media (max-width: 600px) {
  .terms-page__container {
    padding: 40px 20px 60px;
  }
  .terms-page__title {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 14px;
  }
  .terms-page__date {
    margin-bottom: 40px;
    font-size: 13px;
  }
  .terms-page__section {
    margin-bottom: 32px;
  }
  .terms-page__section-title {
    margin-bottom: 12px;
    font-size: 20px;
  }
  .terms-page__text {
    font-size: 15px;
    line-height: 1.6;
  }
}
.privacy-page {
  width: 100%;
}
.privacy-page__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 30px 100px;
}
.privacy-page__title {
  margin: 0 0 18px;
  font-size: 42px;
  line-height: 1.15;
  font-weight: 600;
}
.privacy-page__date {
  margin-bottom: 60px;
  font-size: 14px;
  line-height: 1.5;
  color: #858585;
}
.privacy-page__section {
  margin-bottom: 42px;
}
.privacy-page__section:last-child {
  margin-bottom: 0;
}
.privacy-page__section-title {
  margin: 0 0 16px;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 600;
}
.privacy-page__text {
  max-width: 100%;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  color: #333;
}

@media (max-width: 1024px) {
  .privacy-page__container {
    padding: 55px 30px 80px;
  }
  .privacy-page__title {
    font-size: 36px;
  }
  .privacy-page__section-title {
    font-size: 22px;
  }
}
@media (max-width: 600px) {
  .privacy-page__container {
    padding: 40px 20px 60px;
  }
  .privacy-page__title {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 14px;
  }
  .privacy-page__date {
    margin-bottom: 40px;
    font-size: 13px;
  }
  .privacy-page__section {
    margin-bottom: 32px;
  }
  .privacy-page__section-title {
    margin-bottom: 12px;
    font-size: 20px;
  }
  .privacy-page__text {
    font-size: 15px;
    line-height: 1.6;
  }
}
.cookie-page {
  width: 100%;
}
.cookie-page__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 30px 100px;
}
.cookie-page__title {
  margin: 0 0 50px;
  font-size: 42px;
  line-height: 1.15;
  font-weight: 600;
}
.cookie-page__section {
  margin-bottom: 42px;
}
.cookie-page__section:last-child {
  margin-bottom: 0;
}
.cookie-page__section-title {
  margin: 0 0 16px;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 600;
}
.cookie-page__text {
  max-width: 100%;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  color: #333;
}

@media (max-width: 1024px) {
  .cookie-page__container {
    padding: 55px 30px 80px;
  }
  .cookie-page__title {
    font-size: 36px;
  }
  .cookie-page__section-title {
    font-size: 22px;
  }
}
@media (max-width: 600px) {
  .cookie-page__container {
    padding: 40px 20px 60px;
  }
  .cookie-page__title {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 40px;
  }
  .cookie-page__section {
    margin-bottom: 32px;
  }
  .cookie-page__section-title {
    margin-bottom: 12px;
    font-size: 20px;
  }
  .cookie-page__text {
    font-size: 15px;
    line-height: 1.6;
  }
}
.return-page {
  width: 100%;
}
.return-page__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 30px 100px;
}
.return-page__title {
  margin: 0 0 50px;
  font-size: 42px;
  line-height: 1.15;
  font-weight: 600;
}
.return-page__section {
  margin-bottom: 42px;
}
.return-page__section:last-child {
  margin-bottom: 0;
}
.return-page__section-title {
  margin: 0 0 16px;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 600;
}
.return-page__text {
  max-width: 100%;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  color: #333;
}

@media (max-width: 1024px) {
  .return-page__container {
    padding: 55px 30px 80px;
  }
  .return-page__title {
    font-size: 36px;
  }
  .return-page__section-title {
    font-size: 22px;
  }
}
@media (max-width: 600px) {
  .return-page__container {
    padding: 40px 20px 60px;
  }
  .return-page__title {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 40px;
  }
  .return-page__section {
    margin-bottom: 32px;
  }
  .return-page__section-title {
    margin-bottom: 12px;
    font-size: 20px;
  }
  .return-page__text {
    font-size: 15px;
    line-height: 1.6;
  }
}
.contactinfo-page {
  width: 100%;
}
.contactinfo-page__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 30px 100px;
}
.contactinfo-page__title {
  margin: 0 0 50px;
  font-size: 42px;
  line-height: 1.15;
  font-weight: 600;
}
.contactinfo-page__section {
  margin-bottom: 42px;
}
.contactinfo-page__section:last-child {
  margin-bottom: 0;
}
.contactinfo-page__section-title {
  margin: 0 0 16px;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 600;
}
.contactinfo-page__text {
  max-width: 100%;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  color: #333;
}

@media (max-width: 1024px) {
  .contactinfo-page__container {
    padding: 55px 30px 80px;
  }
  .contactinfo-page__title {
    font-size: 36px;
  }
  .contactinfo-page__section-title {
    font-size: 22px;
  }
}
@media (max-width: 600px) {
  .contactinfo-page__container {
    padding: 40px 20px 60px;
  }
  .contactinfo-page__title {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 40px;
  }
  .contactinfo-page__section {
    margin-bottom: 32px;
  }
  .contactinfo-page__section-title {
    margin-bottom: 12px;
    font-size: 20px;
  }
  .contactinfo-page__text {
    font-size: 15px;
    line-height: 1.6;
  }
}
.product-page {
  width: 100%;
}
.product-page__container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 30px 80px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 25px;
  align-items: start;
  box-sizing: border-box;
}
.product-page__image {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 16px;
  background: #f5f5f5;
}
.product-page__image img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-page__info {
  width: 100%;
  padding-top: 5px;
  box-sizing: border-box;
}
.product-page__brand {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1;
  color: #789b45;
}
.product-page__title {
  margin: 0 0 25px;
  font-family: Georgia, serif;
  font-size: 42px;
  line-height: 1.1;
  font-weight: 400;
  color: #222;
}
.product-page__price-row {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 25px;
  border-bottom: 1px solid #aaa;
}
.product-page__price {
  font-size: 25px;
  line-height: 1.2;
  font-weight: 600;
  color: #222;
}
.product-page__price .amount {
  font-size: inherit;
}
.product-page__price .woocommerce-Price-currencySymbol {
  font-size: inherit;
}
.product-page__stock {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  padding: 4px 10px;
  border-radius: 3px;
  font-size: 9px;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
}
.product-page__stock--in {
  background: #eef2e8;
  color: #789b45;
}
.product-page__stock--out {
  background: #f5e5e5;
  color: #a33a2a;
}
.product-page__description {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.5;
  color: #555;
}
.product-page__description p {
  margin: 0 0 10px;
}
.product-page__description p:last-child {
  margin-bottom: 0;
}
.product-page__description ul,
.product-page__description ol {
  margin: 10px 0;
  padding-left: 20px;
}
.product-page__cart {
  --quantity-width: 20%;
  --add-to-cart-width: 100%;
  --buy-now-width: 100%;
  --quantity-height: 46px;
  --button-height: 44px;
  --element-gap: 12px;
  width: 100%;
  margin-top: 25px;
  box-sizing: border-box;
}
.product-page__woocommerce-form {
  width: 100%;
}
.product-page__woocommerce-form form.cart {
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
}
.product-page__woocommerce-form .single_variation_wrap {
  width: 100%;
  margin: 0;
  padding: 0;
}
.product-page__woocommerce-form .woocommerce-variation-add-to-cart,
.product-page__woocommerce-form .woocommerce-variation-add-to-cart-enabled {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: var(--element-gap) !important;
  box-sizing: border-box;
}
.product-page__woocommerce-form .variations {
  width: 100%;
  margin: 0 0 5px !important;
  padding: 0 !important;
  border: 0 !important;
  border-collapse: collapse;
}
.product-page__woocommerce-form .variations tbody,
.product-page__woocommerce-form .variations tr,
.product-page__woocommerce-form .variations th,
.product-page__woocommerce-form .variations td {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}
.product-page__woocommerce-form .variations .label {
  display: block;
  margin: 0 0 10px !important;
  padding: 0 !important;
}
.product-page__woocommerce-form .variations .label label {
  margin: 0;
  font-size: 11px;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  color: #222;
}
.product-page__woocommerce-form .variations .value {
  display: block;
  margin: 0 !important;
  padding: 0 !important;
}
.product-page__woocommerce-form .variable-items-wrapper {
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px !important;
  list-style: none !important;
}
.product-page__woocommerce-form .variable-item {
  width: 70px !important;
  min-width: 70px !important;
  height: 38px !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border: 1px solid #222 !important;
  border-radius: 5px !important;
  background: #fff !important;
  color: #222 !important;
  box-shadow: none !important;
  font-family: inherit;
  font-size: 13px !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  cursor: pointer;
  box-sizing: border-box;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.product-page__woocommerce-form .variable-item:hover {
  border-color: #789b45 !important;
  background: #f4f7ef !important;
  color: #789b45 !important;
  box-shadow: none !important;
}
.product-page__woocommerce-form .variable-item.selected,
.product-page__woocommerce-form .variable-item[aria-checked=true] {
  border-color: #789b45 !important;
  background: #789b45 !important;
  color: #fff !important;
  box-shadow: none !important;
}
.product-page__woocommerce-form .variable-item-contents,
.product-page__woocommerce-form .variable-item-span,
.product-page__woocommerce-form .variable-item-span-button {
  margin: 0 !important;
  padding: 0 !important;
  color: inherit !important;
  font-family: inherit;
  font-size: 13px !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  box-shadow: none !important;
}
.product-page__woocommerce-form .variable-item.disabled {
  opacity: 0.35 !important;
  cursor: not-allowed;
}
.product-page__woocommerce-form .variable-item.disabled:hover {
  border-color: #222 !important;
  background: #fff !important;
  color: #222 !important;
}
.product-page__woocommerce-form .reset_variations {
  display: none !important;
}
.product-page__woocommerce-form .quantity {
  width: var(--quantity-width) !important;
  height: var(--quantity-height) !important;
  margin: 12px 0 12px !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  float: none !important;
  flex: none !important;
  border: 1px solid #789b45 !important;
  border-radius: 999px !important;
  background: #fff !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}
.product-page__woocommerce-form .quantity .minus,
.product-page__woocommerce-form .quantity .plus {
  width: 52px !important;
  min-width: 52px !important;
  height: calc(var(--quantity-height) - 2px) !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border: 0 !important;
  background: transparent !important;
  color: #789b45 !important;
  font-family: inherit;
  font-size: 17px !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  cursor: pointer;
  box-shadow: none !important;
  transition: background 0.2s ease, color 0.2s ease;
}
.product-page__woocommerce-form .quantity .minus:hover,
.product-page__woocommerce-form .quantity .plus:hover {
  background: #f3f6ed !important;
  color: #67883a !important;
}
.product-page__woocommerce-form .quantity .minus:focus,
.product-page__woocommerce-form .quantity .plus:focus {
  outline: none !important;
  box-shadow: none !important;
}
.product-page__woocommerce-form .quantity .qty {
  flex: 1 !important;
  width: 100% !important;
  height: calc(var(--quantity-height) - 2px) !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: #222 !important;
  text-align: center !important;
  font-family: inherit;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield;
  box-shadow: none !important;
  box-sizing: border-box !important;
}
.product-page__woocommerce-form .quantity .qty::-webkit-inner-spin-button,
.product-page__woocommerce-form .quantity .qty::-webkit-outer-spin-button {
  margin: 0;
  -webkit-appearance: none;
          appearance: none;
}
.product-page__woocommerce-form .quantity .qty:focus {
  outline: none !important;
  box-shadow: none !important;
}
.product-page__actions {
  width: 90%;
  margin-top: var(--element-gap);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--element-gap);
  box-sizing: border-box;
}
.product-page__action {
  margin: 0;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border-radius: 999px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  outline: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.product-page__action--cart {
  width: var(--add-to-cart-width);
  height: var(--button-height);
  border: 0;
  background: #789b45;
  color: #fff;
}
.product-page__action--cart:hover {
  background: #67883a;
  color: #fff;
  transform: translateY(-1px);
}
.product-page__action--buy {
  width: var(--buy-now-width);
  height: var(--button-height);
  border: 1px solid #222;
  background: #fff;
  color: #222;
}
.product-page__action--buy:hover {
  background: #222;
  color: #fff;
  transform: translateY(-1px);
}
.product-page__action:active {
  transform: translateY(0);
}
.product-page__action:focus {
  outline: none;
  box-shadow: none;
}

.product-page__woocommerce-form .single_variation .price {
  display: none !important;
}

.product-page__benefits {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
  gap: 2px;
  margin-top: 26px;
  margin-right: 65px;
}

.product-page__benefit {
  display: flex;
  align-items: center;
  gap: 7px;
}

.product-page__benefit-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 14px;
  -o-object-fit: contain;
     object-fit: contain;
}

.product-page__benefit-text {
  font-size: 9px;
  line-height: 1.3;
  color: #777;
}

.about-intro {
  width: 100%;
  background: #d9d9d9;
}

.about-intro__container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 55px 0;
  display: grid;
  grid-template-columns: 1fr 2fr;
  -moz-column-gap: 80px;
       column-gap: 80px;
}

.about-intro__label {
  max-width: 180px;
  padding-top: 5px;
  font-size: 14px;
  line-height: 1.35;
  color: #789b45;
}

.about-intro__content {
  max-width: 600px;
}

.about-intro__title {
  margin: 0 0 45px;
  font-family: Georgia, serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 1.1;
  color: #222;
}

.about-intro__title span {
  color: #789b45;
}

.about-intro__description {
  max-width: 600px;
  font-size: 18px;
  line-height: 1.45;
  color: #333;
}

.quality-section {
  width: 100%;
  background: #ffffff;
}

.quality-section__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 48px 90px;
  box-sizing: border-box;
}

.quality-section__title {
  max-width: 650px;
  margin: 0 auto 65px;
  text-align: center;
  font-family: Georgia, serif;
  font-size: 42px;
  line-height: 1.15;
  font-weight: 0;
  color: #2b2b2b;
}
.quality-section__title span {
  color: #789b45;
}

.quality-section__image {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
}

.quality-section__image img {
  display: block;
  width: 430px;
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.quality-section__cards {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.quality-section__card {
  min-height: 140px;
  padding: 25px 28px;
  box-sizing: border-box;
  border-radius: 22px;
  background: #d9d9d9;
  display: flex;
  align-items: center;
  gap: 22px;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.quality-section__icon {
  width: 55px;
  height: 55px;
  flex: 0 0 55px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: filter 0.25s ease;
}

.quality-section__text {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 500;
  color: #292929;
  transition: color 0.25s ease;
}

.quality-section__card:hover {
  background: #ad765e;
}

.quality-section__card:hover .quality-section__text {
  color: #ffffff;
}

.quality-section__card:hover .quality-section__icon {
  filter: brightness(0) invert(1);
}

.quality-banner {
  width: 100%;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.quality-banner__image {
  width: 1200px;
  max-width: 100%;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  overflow: hidden;
}

.quality-banner__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.recommendations {
  width: 100%;
  background: #fff;
}

.recommendations__container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 90px 0;
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 55px;
  align-items: center;
}

.recommendations__intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.recommendations__label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 1.3;
  color: #292929;
}

.recommendations__title {
  margin: 0 0 70px;
  font-family: Georgia, serif;
  font-size: 42px;
  line-height: 1.05;
  font-weight: 400;
  color: #292929;
}

.recommendations__title span {
  color: #789b45;
}

.recommendations__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 20px;
  border-radius: 22px;
  background: #ad765e;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.recommendations__button:hover {
  background: #98644f;
  color: #fff;
  transform: translateY(-1px);
}

.recommendations__products {
  min-width: 0;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  align-items: center;
  -moz-column-gap: 15px;
       column-gap: 15px;
}

.recommendations__list {
  min-width: 0;
  width: 100%;
  overflow: hidden;
  display: flex;
  gap: 25px;
  transition: transform 0.4s ease;
  will-change: transform;
}

.recommendations__product {
  flex: 0 0 245px;
  width: 245px;
  min-width: 245px;
  display: block;
  color: inherit;
  text-decoration: none;
}

.recommendations__product:hover {
  color: inherit;
  text-decoration: none;
}

.recommendations__product-image {
  width: 245px;
  height: 245px;
  overflow: hidden;
  border-radius: 20px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.recommendations__product-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}

.recommendations__product:hover .recommendations__product-image img {
  transform: scale(1.04);
}

.recommendations__product-info {
  padding-top: 12px;
}

.recommendations__product-title {
  margin: 0 0 4px;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 500;
  color: #292929;
}

.recommendations__product-price {
  font-size: 14px;
  line-height: 1.3;
  color: #292929;
}

.recommendations__arrow {
  width: 44px;
  height: 44px;
  padding: 0;
  border: 2px solid #ad765e;
  border-radius: 50%;
  background: transparent;
  color: #ad765e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.recommendations__arrow:hover:not(:disabled) {
  background: #ad765e;
  color: #fff;
  transform: scale(1.05);
}

.recommendations__arrow:active:not(:disabled) {
  transform: scale(0.95);
}

.recommendations__arrow:disabled,
.recommendations__arrow.is-disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

@media (max-width: 900px) {
  .product-page__container {
    width: 100%;
    max-width: 680px;
    padding: 30px 25px 70px;
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .product-page__image {
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
  }
  .product-page__info {
    padding-top: 0;
  }
  .product-page__title {
    font-size: 38px;
  }
  .product-page__description {
    max-width: 620px;
  }
  .product-page__benefits {
    margin-right: 0;
  }
}
@media (max-width: 600px) {
  .product-page {
    width: 100%;
  }
  .product-page__container {
    width: 100%;
    max-width: none;
    padding: 18px 15px 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-sizing: border-box;
  }
  .product-page__image {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 18px;
    overflow: hidden;
    order: 1;
  }
  .product-page__image img {
    width: 100%;
    height: 100%;
    display: block;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .product-page__info {
    width: 100%;
    padding: 0;
    order: 2;
  }
  .product-page__brand {
    display: block;
    margin-bottom: 7px;
    font-size: 12px;
    line-height: 1;
    color: #789b45;
  }
  .product-page__title {
    margin: 0 0 16px;
    font-family: Georgia, serif;
    font-size: 30px;
    line-height: 1.05;
    font-weight: 400;
    color: #222;
  }
  .product-page__price-row {
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    padding-bottom: 17px;
    border-bottom: 1px solid #d0d0d0;
  }
  .product-page__price {
    font-size: 22px;
    line-height: 1.2;
  }
  .product-page__stock {
    min-height: 20px;
    padding: 4px 8px;
    font-size: 8px;
    border-radius: 3px;
  }
  .product-page__description {
    margin-top: 15px;
    font-size: 14px;
    line-height: 1.5;
    color: #555;
  }
  .product-page__cart {
    --quantity-width: 100%;
    --add-to-cart-width: 100%;
    --buy-now-width: 100%;
    --quantity-height: 44px;
    --button-height: 46px;
    --element-gap: 10px;
    width: 100%;
    margin-top: 20px;
  }
  .product-page__woocommerce-form .variations {
    margin-bottom: 8px !important;
  }
  .product-page__woocommerce-form .variations .label {
    margin-bottom: 9px !important;
  }
  .product-page__woocommerce-form .variations .label label {
    font-size: 10px;
  }
  .product-page__woocommerce-form .variable-items-wrapper {
    width: 100% !important;
    gap: 7px !important;
  }
  .product-page__woocommerce-form .variable-item {
    width: 62px !important;
    min-width: 62px !important;
    height: 36px !important;
    border-radius: 7px !important;
    font-size: 12px !important;
  }
  .product-page__woocommerce-form .variable-item-contents,
  .product-page__woocommerce-form .variable-item-span,
  .product-page__woocommerce-form .variable-item-span-button {
    font-size: 12px !important;
  }
  .product-page__woocommerce-form .quantity {
    width: 100% !important;
    height: var(--quantity-height) !important;
    margin: 12px 0 8px !important;
  }
  .product-page__woocommerce-form .quantity .minus,
  .product-page__woocommerce-form .quantity .plus {
    width: 48px !important;
    min-width: 48px !important;
    height: calc(var(--quantity-height) - 2px) !important;
    font-size: 16px !important;
  }
  .product-page__woocommerce-form .quantity .qty {
    height: calc(var(--quantity-height) - 2px) !important;
    font-size: 14px !important;
  }
  .product-page__actions {
    width: 100%;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .product-page__action {
    width: 100% !important;
    height: 46px;
    padding: 0 18px;
    font-size: 14px;
    border-radius: 999px;
  }
  .product-page__benefits {
    width: 100%;
    margin-top: 20px;
    margin-right: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .product-page__benefit {
    display: flex;
    align-items: center;
    gap: 7px;
    min-width: 0;
  }
  .product-page__benefit-icon {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
  }
  .product-page__benefit-text {
    font-size: 10px;
    line-height: 1.3;
    color: #777;
  }
}
@media (max-width: 400px) {
  .product-page__container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .product-page__title {
    font-size: 27px;
  }
  .product-page__price {
    font-size: 20px;
  }
  .product-page__description {
    font-size: 13px;
  }
  .product-page__woocommerce-form .variable-item {
    width: 58px !important;
    min-width: 58px !important;
    height: 35px !important;
  }
  .product-page__woocommerce-form .quantity .minus,
  .product-page__woocommerce-form .quantity .plus {
    width: 44px !important;
    min-width: 44px !important;
  }
  .product-page__benefits {
    gap: 8px;
  }
  .product-page__benefit-text {
    font-size: 9px;
  }
}
@media (max-width: 700px) {
  .product-page__benefits {
    margin-top: 22px;
    margin-right: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    align-items: stretch;
  }
  .product-page__benefit {
    gap: 8px;
    align-items: flex-start;
  }
  .product-page__benefit-icon {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
  }
  .product-page__benefit-text {
    font-size: 10px;
    line-height: 1.35;
  }
  .about-intro__container {
    width: 100%;
    max-width: none;
    padding: 45px 20px;
    display: block;
  }
  .about-intro__label {
    max-width: none;
    padding-top: 0;
    margin-bottom: 18px;
    font-size: 12px;
    line-height: 1.4;
  }
  .about-intro__content {
    max-width: none;
  }
  .about-intro__title {
    margin: 0 0 24px;
    font-size: 32px;
    line-height: 1.1;
  }
  .about-intro__description {
    max-width: none;
    font-size: 15px;
    line-height: 1.55;
  }
  .quality-section__container {
    padding: 50px 20px 55px;
  }
  .quality-section__title {
    max-width: none;
    margin: 0 auto 35px;
    font-size: 30px;
    line-height: 1.15;
  }
  .quality-section__image {
    margin-bottom: 35px;
  }
  .quality-section__image img {
    width: 100%;
    max-width: 360px;
    height: auto;
  }
  .quality-section__cards {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .quality-section__card {
    min-height: 110px;
    padding: 18px 14px;
    border-radius: 17px;
    gap: 12px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  .quality-section__icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
  }
  .quality-section__text {
    font-size: 13px;
    line-height: 1.25;
  }
  .quality-banner {
    height: auto;
  }
  .quality-banner__image {
    width: 100%;
    max-width: none;
    height: 260px;
  }
  .quality-banner__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  .recommendations__container {
    width: 100%;
    max-width: none;
    padding: 55px 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .recommendations__intro {
    align-items: flex-start;
  }
  .recommendations__label {
    margin-bottom: 5px;
    font-size: 13px;
  }
  .recommendations__title {
    margin-bottom: 25px;
    font-size: 32px;
    line-height: 1.1;
  }
  .recommendations__button {
    min-height: 42px;
    padding: 0 19px;
    font-size: 13px;
  }
  .recommendations__products {
    width: 100%;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    gap: 8px;
    align-items: center;
  }
  .recommendations__list {
    display: flex;
    gap: 0;
    width: -moz-max-content;
    width: max-content;
  }
  .recommendations__product {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
  }
  .recommendations__product-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    border-radius: 18px;
  }
  .recommendations__product-title {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.3;
  }
  .recommendations__product-price {
    font-size: 14px;
  }
  .recommendations__arrow {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }
  .reviews {
    width: 100%;
  }
  .reviews__container {
    width: 100%;
    max-width: none;
    padding: 55px 20px;
  }
  .reviews__header {
    margin-bottom: 30px;
  }
  .reviews__title {
    margin: 0;
    font-size: 32px;
    line-height: 1.1;
  }
  .reviews__slider {
    width: 100%;
    overflow: hidden;
  }
  .reviews__viewport {
    width: 100%;
    overflow: hidden;
  }
  .reviews__list {
    display: flex;
    width: -moz-max-content;
    width: max-content;
    gap: 12px;
    transition: transform 0.4s ease;
  }
  .reviews__item {
    width: calc(100vw - 40px);
    max-width: none;
    min-height: 210px;
    padding: 22px 20px;
    box-sizing: border-box;
    border-radius: 20px;
  }
  .reviews__text {
    margin: 0 0 25px;
    font-size: 15px;
    line-height: 1.5;
  }
  .reviews__author {
    font-size: 12px;
    line-height: 1.4;
  }
  .reviews__navigation {
    margin-top: 18px;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
  }
  .reviews__prev,
  .reviews__next {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
  .contacts {
    width: 100%;
  }
  .contacts__container {
    width: 100%;
    max-width: none;
    padding: 55px 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .contacts__left {
    width: 100%;
  }
  .contacts__title {
    margin: 0 0 20px;
    font-size: 32px;
    line-height: 1.1;
  }
  .contacts__description {
    margin: 0 0 14px;
    font-size: 14px;
    line-height: 1.5;
  }
  .contacts__info {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .contacts__info-item {
    font-size: 14px;
    line-height: 1.4;
    word-break: break-word;
  }
  .contacts__form-wrapper {
    width: 100%;
  }
  .contacts__form {
    width: 100%;
  }
  .contacts__field {
    width: 100%;
    margin-bottom: 16px;
  }
  .contacts__field label {
    display: block;
    margin-bottom: 7px;
    font-size: 12px;
    line-height: 1.3;
  }
  .contacts__field input,
  .contacts__field select {
    width: 100%;
    min-height: 46px;
    padding: 0 14px;
    box-sizing: border-box;
    border-radius: 12px;
    font-size: 13px;
  }
  .contacts__submit {
    width: 100%;
    min-height: 46px;
    margin-top: 5px;
    border-radius: 23px;
    font-size: 13px;
  }
  .contacts__privacy {
    margin-top: 12px;
    font-size: 10px;
    line-height: 1.4;
  }
}
@media (max-width: 400px) {
  .about-intro__container,
  .quality-section__container,
  .recommendations__container,
  .reviews__container,
  .contacts__container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .about-intro__title,
  .quality-section__title,
  .recommendations__title,
  .reviews__title,
  .contacts__title {
    font-size: 28px;
  }
  .quality-section__cards {
    gap: 8px;
  }
  .quality-section__card {
    min-height: 105px;
    padding: 15px 12px;
  }
  .quality-section__text {
    font-size: 12px;
  }
  .quality-banner__image {
    height: 220px;
  }
  .reviews__item {
    width: calc(100vw - 30px);
  }
}
@media (max-width: 700px) {
  .reviews {
    display: block !important;
    width: 100%;
    padding: 55px 0 !important;
    background: #fff;
    box-sizing: border-box;
  }
  .reviews__container {
    display: block;
    width: 100%;
    max-width: none;
    padding: 0 20px !important;
    box-sizing: border-box;
  }
  .reviews__header {
    display: block;
    width: 100%;
    margin-bottom: 28px;
  }
  .reviews__title {
    display: block;
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: 32px;
    line-height: 1.1;
    font-weight: 500;
    color: #292929;
  }
  .reviews__slider {
    display: block;
    width: 100%;
  }
  .reviews__viewport {
    display: block;
    width: 100%;
    overflow: hidden;
  }
  .reviews__list {
    display: flex;
    width: -moz-max-content;
    width: max-content;
    gap: 12px;
    transition: transform 0.35s ease;
  }
  .reviews__item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 0 0 calc(100vw - 60px);
    width: 215px;
    min-height: 210px;
    padding: 24px 20px;
    box-sizing: border-box;
    border-radius: 20px;
    background: rgba(139, 78, 52, 0.6980392157);
  }
  .reviews__text {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    color: #292929;
  }
  .reviews__author {
    margin-top: 25px;
    font-size: 12px;
    line-height: 1.4;
    color: #000000;
  }
  .reviews__navigation {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 18px;
  }
  .reviews__prev,
  .reviews__next {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 1px solid #ad765e;
    border-radius: 50%;
    background: transparent;
    color: #ad765e;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
  }
}
@media (max-width: 700px) {
  .reviews__slider {
    display: flex !important;
    flex-direction: column !important;
    width: 100%;
  }
  .reviews__viewport {
    position: relative !important;
    width: 100%;
    overflow: hidden;
  }
  .reviews__navigation {
    position: static !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    height: 36px;
    margin-top: 16px !important;
    gap: 8px;
    transform: none !important;
    inset: auto !important;
  }
  .reviews__prev,
  .reviews__next {
    position: static !important;
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    margin: 0 !important;
    transform: none !important;
  }
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

::-moz-selection {
  color: white;
  background: black;
}

::selection {
  color: white;
  background: black;
}

::-webkit-scrollbar {
  width: 3px;
}

::-webkit-scrollbar-track {
  background: black;
}

::-webkit-scrollbar-thumb {
  background: white;
}

::-moz-placeholder {
  color: rgb(95, 95, 95);
  font-size: 16px;
  line-height: 100%;
}

::placeholder {
  color: rgb(95, 95, 95);
  font-size: 16px;
  line-height: 100%;
}

html,
body {
  min-height: 100%;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

footer {
  flex-shrink: 0;
}

#wpadminbar {
  display: none !important;
}/*# sourceMappingURL=theme.css.map */