* {
  box-sizing: border-box;
}

*::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

*::-webkit-scrollbar-thumb {
  background: #866945;
  border-radius: 5px;
}

*::-webkit-scrollbar-track {
  background: transparent;
}

html, body {
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "tnum" 0, "pnum" 0, normal;
  font-variant-numeric: normal;
  font-family: "Mulish", Arial, Helvetica, sans-serif;
  background: #FFFFFF;
  scroll-behavior: smooth;
}

.wrapper {
  overflow: hidden;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  max-width: 2560px;
  margin: 0 auto;
  padding-top: 111px;
}
@media (max-width: 992px) {
  .wrapper {
    padding-top: 65px;
  }
}
.wrapper main {
  flex: 1 0;
}

html:has(#wpadminbar) .header {
  top: 32px !important;
}
@media (max-width: 782px) {
  html:has(#wpadminbar) .header {
    top: 46px !important;
  }
}

@media (max-width: 600px) {
  #wpadminbar {
    position: fixed;
  }
}

.no-scroll {
  overflow: hidden;
}

.container {
  max-width: 1200px;
  width: 100%;
  padding: 0 40px;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .container {
    padding: 0 20px;
    max-width: 640px;
  }
}
.icon {
  --icon-height: 1em;
  --icon-fill: #000000;
  --icon-transition: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 1em;
  height: var(--icon-height);
  width: 1em;
  width: var(--icon-height);
}
.icon svg {
  height: var(--icon-height);
  width: var(--icon-height);
}
.icon svg path {
  transition: var(--icon-transition);
  fill: var(--icon-fill);
}

.icon-spinner {
  animation: icon_spinner 1s ease-out infinite;
}

.rel {
  position: relative;
}

.link {
  text-decoration: underline;
  -webkit-text-decoration: transparent underline;
          text-decoration: transparent underline;
  transition: 0.2s ease;
}
@media (any-hover: hover) {
  .link:hover {
    text-decoration-color: currentColor;
  }
}

.section-title {
  font-weight: 400;
  font-size: 24px;
  line-height: 120%;
  color: #2E2E2E;
}
@media (max-width: 992px) {
  .section-title {
    font-size: 18px;
    font-weight: 700;
  }
}

.pop-catalogs .pop-catalog:nth-last-child(2n) {
  background: #EDE9E3;
}

.notification {
  background: #b1c4c6;
  padding: 5px;
  position: fixed;
  bottom: 5px;
  left: 5px;
  font-size: 16px;
  line-height: 120%;
  border-radius: 5px;
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
  z-index: 2000;
  color: #000000;
  pointer-events: none;
  transition: 0.2s ease;
  transform: translateY(calc(100% + 5px));
  opacity: 0;
}
@media (max-width: 992px) {
  .notification {
    font-size: 12px;
  }
}
.notification.--show {
  transform: translateY(0);
  opacity: 1;
}
.notification .icon {
  vertical-align: middle;
  --icon-height: 1.2em;
  --icon-fill: #000000;
  margin-right: 5px;
}
.notification.--error {
  background: #f15050;
  color: #FFFFFF;
}
.notification.--error .icon {
  --icon-fill: #FFFFFF;
}

.my-ya-pay-widget:empty {
  display: none;
}
.my-ya-pay-widget:not(.--active) {
  display: none;
}

@keyframes icon_spinner {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.advantage-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  padding: 20px;
  border: 1px solid #866945;
  border-radius: 5px;
}
@media (max-width: 992px) {
  .advantage-item {
    gap: 10px;
    padding: 10px;
  }
}
.advantage-item__title {
  padding: 5px 10px;
  background: #EDE9E3;
  border-radius: 5px;
  font-weight: 400;
  font-size: 16px;
  line-height: 119%;
  color: #866945;
}
@media (max-width: 992px) {
  .advantage-item__title {
    font-size: 12px;
  }
}
.advantage-item__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 119%;
  color: #2E2E2E;
  margin-top: auto;
}
@media (max-width: 992px) {
  .advantage-item__text {
    font-size: 12px;
  }
}

.advantages {
  padding: 40px 0;
}
@media (max-width: 992px) {
  .advantages {
    padding: 20px 0;
  }
}
.advantages .section-title {
  margin-bottom: 20px;
}
.advantages__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 20px;
  gap: 20px;
}
.advantages__items.--4-colls {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
@media (max-width: 1024px) and (min-width: 993px) {
  .advantages__items.--4-colls {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 992px) {
  .advantages__items {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.basket-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: #866945;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: fixed;
  z-index: 1070;
  bottom: 40px;
  right: 60px;
  transition: 0.3s ease;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}
@media (max-width: 992px) {
  .basket-btn {
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 10px;
  }
}
.basket-btn .icon {
  --icon-fill: #fff;
  --icon-height: 40px;
}
@media (max-width: 992px) {
  .basket-btn .icon {
    --icon-height: 26px;
  }
}
.basket-btn__count {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  font-size: 14px;
  font-weight: 700;
  min-width: -moz-max-content;
  min-width: max-content;
  white-space: nowrap;
  line-height: 1;
  color: #866945;
  padding: 4px;
  background: #FFFFFF;
  border-radius: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  transform: translate(-15px, -15px);
}
@media (max-width: 992px) {
  .basket-btn__count {
    font-size: 13px;
    width: 18px;
    height: 18px;
    transform: translate(-12px, -12px);
  }
}
.basket-btn[data-count="0"] .basket-btn__count {
  display: none;
}
.basket-btn:hover {
  background-color: #444;
  transform: translateY(-2px);
}
.basket-btn:active {
  background-color: #1f1f1f;
  transform: translateY(0);
}
.basket-btn.--unshow {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

.basket-form {
  display: flex;
  flex-direction: column;
  background: #EDE9E3;
  padding: 20px;
}
@media (max-width: 992px) {
  .basket-form {
    padding: 10px;
  }
}
.basket-form__sum {
  font-weight: 400;
  font-size: 16px;
  line-height: 119%;
  color: #000000;
  margin-bottom: 20px;
}
.basket-form__sum b {
  font-weight: 700;
}
@media (max-width: 992px) {
  .basket-form__sum {
    font-size: 12px;
    margin-bottom: 10px;
    font-weight: 700;
  }
}
.basket-form__promo {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.basket-form__promo-label {
  font-weight: 400;
  font-size: 16px;
  line-height: 119%;
  color: #000000;
}
@media (max-width: 992px) {
  .basket-form__promo-label {
    font-size: 12px;
  }
}
.basket-form__promo-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 992px) {
  .basket-form__promo-wrapper {
    gap: 12px;
  }
}
.basket-form__promo-wrapper input {
  flex: 1 0;
  min-width: 0;
  width: auto;
  background: #FFFFFF;
  border-radius: 5px;
  padding: 5px 10px;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  border: none;
  transition: 0.2s ease;
  outline: none;
}
@media (max-width: 992px) {
  .basket-form__promo-wrapper input {
    flex: 0 0 auto;
    width: 80px;
    font-size: 12px;
  }
}
.basket-form__promo-wrapper input:focus {
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}
.basket-form__radios {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .basket-form__radios {
    gap: 5px;
    margin-bottom: 20px;
  }
}
.basket-form__total {
  font-weight: 700;
  font-size: 20px;
  line-height: 125%;
  color: #000000;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .basket-form__total {
    font-size: 12px;
  }
}
.basket-form__promo-message {
  font-weight: 400;
  font-size: 16px;
  line-height: 119%;
  color: #000000;
}
.basket-form__promo-message em {
  font-style: italic;
}
.basket-form__promo-message b {
  font-weight: bold;
}
.basket-form__promo-message ._success {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: flex-start;
}
.basket-form__promo-message ._success > span:nth-child(2) {
  flex-shrink: 0;
}
.basket-form__promo-message ._fail {
  color: #eb4f4f;
  font-weight: bold;
}

.basket-item {
  display: grid;
  grid-template-columns: 10px 40px 1fr 70px 140px 80px;
  grid-gap: 20px;
  gap: 20px;
  align-items: center;
}
@media (max-width: 992px) {
  .basket-item {
    grid-template-columns: 40px 1fr 10px;
    gap: 10px;
    align-items: flex-start;
  }
}
.basket-item > .icon {
  --icon-fill: #866945;
  --icon-height: 10px;
  cursor: pointer;
}
@media (max-width: 992px) {
  .basket-item > .icon {
    grid-column: 3;
    grid-row: 1;
    align-self: center;
  }
}
.basket-item img {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (max-width: 992px) {
  .basket-item img {
    grid-column: 1;
    grid-row: 1/5;
  }
}
.basket-item__title {
  font-weight: 400;
  font-size: 16px;
  line-height: 119%;
  color: #2E2E2E;
  -webkit-text-decoration: none;
  text-decoration: none;
  width: 0;
  min-width: 100%;
}
@media (max-width: 992px) {
  .basket-item__title {
    grid-column: 2;
    grid-row: 1;
    font-size: 12px;
  }
}
.basket-item__price {
  font-weight: 400;
  font-size: 16px;
  line-height: 119%;
  color: #2E2E2E;
}
@media (max-width: 992px) {
  .basket-item__price {
    grid-column: 2;
    grid-row: 2;
    font-size: 12px;
    color: #866945;
  }
}
@media (min-width: 993px) {
  .basket-item__price ._mobile {
    display: none;
  }
}
.basket-item__total {
  font-weight: 700;
  font-size: 16px;
  line-height: 125%;
  color: #2E2E2E;
}
@media (max-width: 992px) {
  .basket-item__total {
    grid-column: 2;
    grid-row: 4;
    font-size: 12px;
  }
}
@media (min-width: 993px) {
  .basket-item__total ._mobile {
    display: none;
  }
}
.basket-item__count {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 992px) {
  .basket-item__count {
    grid-column: 2;
    grid-row: 3;
  }
}
.basket-item__count span {
  font-weight: 400;
  font-size: 16px;
  line-height: 119%;
  color: #2E2E2E;
}
@media (max-width: 992px) {
  .basket-item__count span {
    font-size: 12px;
  }
}

.basket-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.basket-list__top {
  display: grid;
  grid-template-columns: 70px 1fr 70px 140px 80px;
  grid-gap: 20px;
  gap: 20px;
  grid-column: 1/-1;
}
@media (max-width: 992px) {
  .basket-list__top {
    display: none;
  }
}
.basket-list__label {
  font-weight: 400;
  font-size: 16px;
  line-height: 119%;
  color: #866945;
}
.basket-list__label:nth-child(1) {
  justify-self: flex-end;
}

.basket-modal-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-gap: 10px 20px;
  gap: 10px 20px;
  align-items: flex-start;
}
@media (max-width: 992px) {
  .basket-modal-item {
    gap: 5px 10px;
  }
}
.basket-modal-item > img {
  grid-column: 1;
  grid-row: 1/3;
  width: 40px;
  height: 40px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
  border-radius: 5px;
}
.basket-modal-item__title {
  grid-column: 2;
  grid-row: 1;
  font-weight: 400;
  font-size: 16px;
  line-height: 119%;
  color: #2E2E2E;
  -webkit-text-decoration: none;
  text-decoration: none;
}
@media (max-width: 992px) {
  .basket-modal-item__title {
    font-size: 12px;
  }
}
.basket-modal-item > .icon {
  grid-column: 3;
  grid-row: 1;
  --icon-height: 10px;
  --icon-fill: #866945;
  align-self: center;
  cursor: pointer;
}
.basket-modal-item__total {
  grid-column: 2;
  grid-row: 2/4;
  font-weight: 400;
  font-size: 16px;
  line-height: 119%;
  color: #866945;
}
@media (max-width: 992px) {
  .basket-modal-item__total {
    font-size: 12px;
  }
}

.basket-modal-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: auto;
}

.basket-modal {
  position: fixed;
  z-index: 1000;
  inset: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding-left: 40px;
  display: flex;
  justify-content: flex-end;
  background: rgba(46, 46, 46, 0.5);
  transition: 0.3s ease;
  pointer-events: none;
  opacity: 0;
}
.basket-modal.--show {
  pointer-events: all;
  opacity: 1;
}
.basket-modal__wrapper {
  width: 100%;
  max-width: 440px;
  height: 100%;
  min-height: -moz-max-content;
  min-height: max-content;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  padding: 40px 20px;
  transform: translateX(100%);
  transition: 0.3s ease;
}
@media (max-width: 992px) {
  .basket-modal__wrapper {
    padding: 20px;
  }
}
.basket-modal.--show .basket-modal__wrapper {
  transform: translateX(0);
}
.basket-modal__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .basket-modal__top {
    margin-bottom: 15px;
  }
}
.basket-modal__close {
  --icon-height: 20px;
  --icon-fill: #CF0000;
  flex-shrink: 0;
  cursor: pointer;
}
.basket-modal__items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: auto;
}
.basket-modal__total {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 16px;
  line-height: 119%;
  color: #000000;
}
@media (max-width: 992px) {
  .basket-modal__total {
    font-size: 12px;
  }
}
.basket-modal__total b {
  font-weight: 700;
  color: #866945;
}
.basket-modal__btns {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.basket-modal__empty {
  font-size: 22px;
  line-height: 125%;
  color: #2E2E2E;
  font-weight: 700;
  flex: 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media (max-width: 992px) {
  .basket-modal__empty {
    font-size: 16px;
  }
}
.basket-modal.--empty .basket-modal__items, .basket-modal.--empty .basket-modal__total, .basket-modal.--empty .basket-modal__btns {
  display: none;
}
.basket-modal:not(.--empty) .basket-modal__empty {
  display: none;
}

.basket .crumbs {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .basket .crumbs {
    margin-bottom: 20px;
  }
}
.basket .section-title {
  font-weight: 700;
  margin-bottom: 20px;
}
.basket__empty {
  padding-bottom: 40px;
  margin-top: 40px;
  font-size: 16x;
  line-height: 125%;
  color: #000000;
  font-weight: 400;
}
@media (max-width: 992px) {
  .basket__empty {
    font-size: 12px;
  }
}
.basket__wrapper {
  display: grid;
  grid-template-columns: 1fr 300px;
  grid-gap: 20px;
  gap: 20px;
}
@media (max-width: 992px) {
  .basket__wrapper {
    grid-template-columns: 1fr;
  }
}
.basket.--empty .basket__wrapper {
  display: none;
}
.basket:not(.--empty) .basket__empty {
  display: none;
}

.basket + .advantages {
  padding-top: 20px;
}
@media (max-width: 992px) {
  .basket + .advantages {
    padding-top: 20px;
  }
}

.btn {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
  border: 1px solid transparent;
  padding: 9px 33px;
  border-radius: 5px;
  background: #EDE9E3;
  display: inline-flex;
  align-items: center;
  text-align: center;
  gap: 10px;
  font-weight: 400;
  font-size: 16px;
  line-height: 119%;
  color: #866945;
  transition: 0.3s ease;
  -webkit-text-decoration: none;
  text-decoration: none;
  position: relative;
  outline: none;
  touch-action: none;
}
@media (max-width: 992px) {
  .btn {
    font-size: 14px;
    padding: 10px 13px;
  }
}
.btn[hidden] {
  display: none;
}
.btn .icon {
  --icon-fill: #866945;
  transition: 0.3s ease;
  font-size: 1em;
  margin-top: 0.095em;
  margin-bottom: 0.095em;
  transition: 0.3s ease;
}
.btn .icon-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.8em;
  animation-play-state: paused;
  opacity: 0;
}
.btn.--loading {
  pointer-events: none;
}
.btn.--loading span, .btn.--loading .icon:not(.icon-spinner) {
  opacity: 0;
}
.btn.--loading .icon-spinner {
  opacity: 1;
  animation-play-state: running;
}
.btn:not(:has(span)) {
  padding: 9px;
}
@media (max-width: 992px) {
  .btn:not(:has(span)) {
    padding: 10px;
  }
}
.btn span {
  flex: 1 0;
  transition: 0.3s ease;
}
.btn.--small:not(.--slider) {
  padding: 5px 10px;
}
.btn.--solid {
  background: #866945;
  color: #FFFFFF;
}
.btn.--solid .icon {
  --icon-fill: #FFFFFF;
}
.btn.--white {
  color: #000000;
  background: #FFFFFF;
  font-weight: 700;
}
.btn.--white .icon {
  --icon-fill: #866945;
}
.btn.--slider {
  width: 40px;
  height: 40px;
  padding: 0;
  justify-content: center;
  border-radius: 40px;
}
.btn.--slider .icon {
  --icon-height: 20px;
}
.btn.--rect {
  border-color: #866945;
  background: #FFFFFF;
}
.btn.--rect.--active {
  border-color: #000000;
  background: #EDE9E3;
  color: #000000;
}
.btn.--rect.--active .icon {
  --icon-color: #000000;
}
@media (any-hover: hover) {
  .btn:hover {
    border-color: #866945;
    background: #EDE9E3;
    color: #866945;
  }
  .btn:hover .icon {
    --icon-fill: #866945;
  }
}
.btn:focus {
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.burger-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 7px;
  width: 25px;
  height: 25px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  padding: 0;
  border: none;
  background: none;
}
.burger-btn span {
  border-radius: 10px;
  display: block;
  height: 2px;
  background: #866945;
  width: 100%;
  transition: 0.3s ease;
}
.burger-btn.--active span:nth-child(2) {
  transform: scaleX(0);
}
.burger-btn.--active span:nth-child(1) {
  transform-origin: left top;
  transform: translateY(0.5px) translateX(2px) rotate(45deg);
}
.burger-btn.--active span:nth-child(3) {
  transform-origin: left bottom;
  transform: translateY(-0.5px) translateX(2px) rotate(-45deg);
}

.card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
.card__image {
  height: 255px;
  width: 100%;
  overflow: hidden;
  border-radius: 5px;
  pointer-events: none;
}
@media (max-width: 992px) {
  .card__image {
    height: 150px;
  }
}
.card__image img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
  transition: 0.5s ease;
}
.card__title {
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 16px;
  line-height: 125%;
  color: #2E2E2E;
}
@media (max-width: 992px) {
  .card__title {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 12px;
  }
}
.card__title::before {
  position: absolute;
  inset: 0;
  content: "";
}
.card__price {
  font-weight: 400;
  font-size: 16px;
  line-height: 119%;
  color: #2E2E2E;
  pointer-events: none;
}
@media (max-width: 992px) {
  .card__price {
    font-size: 12px;
  }
}
@media (any-hover: hover) {
  .card:hover .card__image img {
    transform: scale(1.3);
  }
}

.catalog-list {
  display: flex;
  flex-direction: column;
}
.catalog-list__loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 0;
}
.catalog-list__loading .icon {
  --icon-height: 48px;
  --icon-fill: #866945;
}
.catalog-list:not(.--loading) .catalog-list__loading {
  display: none;
}
.catalog-list > ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 20px;
  gap: 20px;
}
@media (max-width: 992px) {
  .catalog-list > ul {
    grid-template-columns: 1fr 1fr;
  }
}
.catalog-list.--loading > ul {
  display: none;
}
.catalog-list > .btn {
  align-self: center;
  margin-top: 20px;
}

.catalog__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
  position: relative;
}
@media (max-width: 992px) {
  .catalog__top {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
@media (max-width: 992px) {
  .catalog__top .pagination {
    position: absolute;
    top: calc(100% + 23px);
    right: 0;
  }
}
.catalog__wrapper {
  display: grid;
  grid-template-columns: 256px 1fr;
  grid-gap: 20px;
  gap: 20px;
  align-items: flex-start;
}
@media (max-width: 992px) {
  .catalog__wrapper {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 255px;
  cursor: pointer;
  position: relative;
  border-radius: 5px;
  padding: 19px;
  border: 1px solid transparent;
  -webkit-text-decoration: none;
  text-decoration: none;
  background: #EDE9E3;
  overflow: hidden;
  transition: 0.3s ease;
}
@media (max-width: 992px) {
  .category-card {
    height: 150px;
  }
}
.category-card::before {
  z-index: 2;
  content: "";
  pointer-events: none;
  position: absolute;
  background: #000000;
  inset: 0;
  opacity: 0.3;
  transition: 0.3s ease;
}
.category-card img {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 1;
  transition: 0.5s ease;
}
.category-card span {
  z-index: 3;
  position: relative;
  display: block;
  padding: 9px 19px;
  background: #FFFFFF;
  border-radius: 5px;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  text-transform: lowercase;
  color: #000000;
  font-weight: 700;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  transition: 0.3s ease;
  border: 1px solid transparent;
}
@media (max-width: 992px) {
  .category-card span {
    font-size: 12px;
    padding: 7px 14px;
  }
}
@media (any-hover: hover) {
  .category-card:hover::before {
    opacity: 0.5;
  }
  .category-card:hover span {
    background: transparent;
    color: #FFFFFF;
    border-color: #FFFFFF;
  }
  .category-card:hover img {
    transform: scale(1.3);
  }
}

.category-hero {
  padding: 0 0 40px;
}
.category-hero .crumbs {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .category-hero .crumbs {
    margin-bottom: 20px;
  }
}
.category-hero__wrapper {
  display: grid;
  grid-template-columns: 1fr 500px;
  align-items: flex-start;
  grid-gap: 20px;
  gap: 20px;
}
@media (max-width: 992px) {
  .category-hero__wrapper {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
}
.category-hero .section-title {
  font-weight: 700;
  margin-bottom: 10px;
}
@media (min-width: 993px) {
  .category-hero .section-title {
    max-width: 357px;
  }
}
.category-hero__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 119%;
  color: #000000;
  margin-bottom: 20px;
}
@media (min-width: 993px) {
  .category-hero__text {
    max-width: 406px;
  }
}
@media (max-width: 992px) {
  .category-hero__text {
    font-size: 12px;
    margin-bottom: 10px;
  }
}
.category-hero__tags {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.category-hero__tag {
  padding: 5px 10px;
  background: #EDE9E3;
  border-radius: 5px;
  font-weight: 400;
  font-size: 16px;
  line-height: 119%;
  color: #866945;
}
@media (max-width: 992px) {
  .category-hero__tag {
    font-size: 12px;
    padding: 8px 10px;
  }
}
.category-hero__catalog-btn {
  grid-column: 1;
  grid-row: 2;
  align-self: flex-end;
  justify-self: flex-start;
}
@media (max-width: 992px) {
  .category-hero__catalog-btn {
    align-self: stretch;
    justify-self: flex-start;
  }
}
.category-hero__slider {
  width: 0;
  min-width: 100%;
  grid-row: 1/3;
  grid-column: 2;
  position: relative;
}
.category-hero__slider > .btn {
  position: absolute;
  top: 50%;
  left: 20px;
  translate: 0 -50%;
  z-index: 3;
}
.category-hero__slider > .btn._next {
  left: auto;
  right: 20px;
}
.category-hero__slider .swiper {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  cursor: grab;
}
.category-hero__slider .swiper-slide {
  position: relative;
}
.category-hero__slider .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.checkbox div {
  width: 23px;
  height: 23px;
  flex-shrink: 0;
  border-radius: 5px;
  border: 1px solid #866945;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.checkbox div input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: inherit;
}
.checkbox div .icon {
  cursor: inherit;
  position: relative;
  --icon-height: 11.5px;
  --icon-fill: #866945;
  transform: scale(0);
  transition: 0.3s ease;
}
.checkbox div:has(input:checked) .icon {
  transform: scale(1);
}
@media (max-width: 992px) {
  .checkbox div {
    gap: 8px;
    width: 20px;
    height: 20px;
  }
  .checkbox div .icon {
    font-size: 10px;
  }
}
.checkbox span {
  font-weight: 400;
  font-size: 16px;
  line-height: 119%;
  color: #2E2E2E;
}
@media (max-width: 992px) {
  .checkbox span {
    font-size: 12px;
  }
}

.cookie-modal {
  position: fixed;
  z-index: 1051;
  bottom: 0;
  left: 0;
  right: 0;
  background: #866945;
  padding: 20px 0;
  border-radius: 5px 5px 0 0;
  border-top: 1px solid #000000;
  box-shadow: -2px -2px 15px rgba(0, 0, 0, 0.5);
  pointer-events: none;
  opacity: 0;
  transition: 0.3s ease;
}
@media (max-width: 992px) {
  .cookie-modal {
    padding: 10px 0;
  }
}
.cookie-modal .container {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 992px) {
  .cookie-modal .container {
    gap: 10px;
  }
}
.cookie-modal__content {
  color: #FFFFFF;
  font-size: 16px;
  line-height: 140%;
  font-weight: 400;
}
@media (max-width: 992px) {
  .cookie-modal__content {
    font-size: 12px;
  }
}
.cookie-modal .btn {
  flex-shrink: 0;
}

body.--cookie-modal-visibled .cookie-modal {
  opacity: 1;
  pointer-events: all;
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.crumbs .link {
  font-weight: 400;
  font-size: 16px;
  line-height: 119%;
  color: #969696;
}
@media (max-width: 992px) {
  .crumbs .link {
    font-size: 12px;
  }
}
.crumbs .link._current {
  color: #2E2E2E;
}
.crumbs .icon {
  --icon-height: 24px;
  --icon-fill: #969696;
  pointer-events: none;
}
@media (max-width: 992px) {
  .crumbs .icon {
    --icon-height: 8px;
  }
}

.delivery-info-item__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  height: -moz-max-content;
  height: max-content;
  gap: 10px;
}
.delivery-info-item__label > span {
  font-weight: 400;
  font-size: 16px;
  line-height: 119%;
  color: #866945;
  padding: 5px 10px;
  background: #EDE9E3;
  border-radius: 5px;
}
@media (max-width: 992px) {
  .delivery-info-item__label > span {
    font-size: 12px;
    padding: 8px 10px;
  }
}
.delivery-info-item__label i {
  display: block;
  flex-shrink: 0;
  position: relative;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.delivery-info-item__label i span {
  position: absolute;
  background: #866945;
  height: 2px;
  left: 0;
  right: 0;
  top: calc(50% - 1px);
  border-radius: 4px;
  transition: 0.3s ease;
}
.delivery-info-item__label i span:nth-child(2) {
  rotate: 90deg;
}
.delivery-info-item.--active .delivery-info-item__label i span {
  background: #14142B;
}
.delivery-info-item.--active .delivery-info-item__label i span:nth-child(2) {
  transform: scaleY(0);
}
.delivery-info-item__wrapper {
  overflow: hidden;
  max-height: 0;
  transition: 0.3s ease;
}
.delivery-info-item__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 119%;
  color: #2E2E2E;
  padding-top: 10px;
  height: -moz-max-content;
  height: max-content;
  width: 100%;
}
@media (max-width: 992px) {
  .delivery-info-item__text {
    padding-top: 10px;
    font-size: 12px;
  }
}

.delivery-info {
  padding: 40px 0;
}
@media (max-width: 992px) {
  .delivery-info {
    padding: 20px 0;
  }
}
.delivery-info .container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 20px 40px;
  gap: 20px 40px;
}
@media (max-width: 992px) {
  .delivery-info .container {
    grid-template-columns: 1fr;
  }
}

.document {
  padding: 0 0 40px;
}
@media (max-width: 992px) {
  .document {
    padding: 0 0 20px;
  }
}
.document .crumbs {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .document .crumbs {
    margin-bottom: 20px;
  }
}
.document .section-title {
  margin-bottom: 40px;
  font-weight: 400;
}
@media (max-width: 992px) {
  .document .section-title {
    margin-bottom: 18px;
  }
}
.document__content {
  font-weight: 400;
  font-size: 14px;
  line-height: 121%;
  color: #2E2E2E;
}
@media (max-width: 992px) {
  .document__content {
    font-size: 10px;
  }
}
.document__content p:not(:first-child),
.document__content ul:not(:first-child),
.document__content ol:not(:first-child),
.document__content li:not(:first-child) {
  margin-top: 1.21em;
}

.error-404 {
  padding: 40px 0;
}
@media (max-width: 992px) {
  .error-404 {
    padding: 20px 0;
  }
}
.error-404__title {
  font-size: 48px;
  line-height: 125%;
  font-weight: 700;
  color: #3a2e2e;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .error-404__title {
    font-size: 24px;
  }
}
.error-404__subtitle {
  font-size: 18px;
  line-height: 125%;
  color: #7a6a6a;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .error-404__subtitle {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
.faq-item {
  border-radius: 5px;
  overflow: hidden;
  background: #EDE9E3;
}
.faq-item__label {
  padding: 20px 30px;
  display: flex;
  align-items: center;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  height: -moz-max-content;
  height: max-content;
  gap: 10px;
}
@media (max-width: 992px) {
  .faq-item__label {
    padding: 13px 10px 10px;
  }
}
.faq-item__label > span {
  flex: 1 0;
  font-weight: 700;
  font-size: 16px;
  line-height: 125%;
  color: #2E2E2E;
}
@media (max-width: 992px) {
  .faq-item__label > span {
    font-size: 12px;
  }
}
.faq-item__label i {
  display: block;
  flex-shrink: 0;
  position: relative;
  width: 24px;
  height: 24px;
  cursor: pointer;
}
.faq-item__label i span {
  position: absolute;
  background: #6E7191;
  height: 2px;
  left: 3px;
  right: 3px;
  top: calc(50% - 1px);
  border-radius: 4px;
  transition: 0.3s ease;
}
.faq-item__label i span:nth-child(2) {
  rotate: 90deg;
}
.faq-item.--active .faq-item__label i span {
  background: #14142B;
}
.faq-item.--active .faq-item__label i span:nth-child(2) {
  transform: scaleY(0);
}
.faq-item__wrapper {
  overflow: hidden;
  max-height: 0;
  transition: 0.3s ease;
}
.faq-item__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 119%;
  color: #2E2E2E;
  padding: 30px;
  padding-top: 10px;
  height: -moz-max-content;
  height: max-content;
  width: 100%;
}
@media (max-width: 992px) {
  .faq-item__text {
    padding: 0 10px 10px;
    padding-bottom: 10px;
    font-size: 12px;
  }
}

.faq {
  padding: 40px 0;
}
@media (max-width: 992px) {
  .faq {
    padding: 20px 0;
  }
}
.faq .section-title {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .faq .section-title {
    margin-bottom: 10px;
  }
}
.faq__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
  gap: 20px;
  align-items: flex-start;
}
@media (max-width: 992px) {
  .faq__items {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.faq__coll {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 992px) {
  .faq__coll {
    gap: 10px;
  }
}

.filters {
  display: flex;
  flex-direction: column;
}
.filters__title {
  font-weight: 700;
  font-size: 16px;
  line-height: 125%;
  color: #000000;
  display: flex;
  align-items: center;
  gap: 20px;
  align-self: flex-start;
}
@media (max-width: 992px) {
  .filters__title {
    font-size: 12px;
  }
}
.filters__title .icon {
  font-size: 20px;
  transition: 0.3s ease;
  position: relative;
}
@media (min-width: 993px) {
  .filters__title .icon {
    display: none;
  }
}
.filters.--opened .filters__title .icon {
  transform: scaleY(-1);
}
.filters__items {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 20px;
}
@media (max-width: 992px) {
  .filters__items {
    gap: 20px;
  }
}
@media (max-width: 992px) {
  .filters:not(.--opened) .filters__items {
    display: none;
  }
}
.filters__categories {
  display: flex;
  flex-direction: column;
}
.filters__categories > p {
  font-weight: 400;
  font-size: 16px;
  line-height: 119%;
  color: #000000;
  margin-bottom: 10px;
}
@media (max-width: 992px) {
  .filters__categories > p {
    font-size: 12px;
  }
}
.filters__categories > ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.filters__categories > ul > li > ul {
  margin-top: 10px;
  padding-left: 10px;
  border-left: 1px solid rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.filters__price {
  display: flex;
  flex-direction: column;
}
.filters__price > p {
  font-weight: 400;
  font-size: 16px;
  line-height: 119%;
  color: #000000;
  margin-bottom: 10px;
}
@media (max-width: 992px) {
  .filters__price > p {
    font-size: 12px;
  }
}
.filters__color {
  display: flex;
  flex-direction: column;
}
.filters__color > p {
  font-weight: 400;
  font-size: 16px;
  line-height: 119%;
  color: #000000;
  margin-bottom: 10px;
}
@media (max-width: 992px) {
  .filters__color > p {
    font-size: 12px;
  }
}
.filters__color > ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px 10px;
}
.filters__color > ul > li {
  width: 20px;
  height: 20px;
  border-radius: 40px;
  border: 1px solid #969696;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
  transition: 0.2s ease;
}
.filters__color > ul > li input {
  position: absolute;
  inset: -5px;
  opacity: 0;
  cursor: pointer;
}
.filters__color > ul > li:has(input:checked) {
  box-shadow: 0 0 0 3px rgba(134, 105, 69, 0.4);
  border-color: transparent;
  transform: scale(1.1);
}
.filters__btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-coll__title {
  font-weight: 500;
  font-size: 24px;
  line-height: 120%;
  text-transform: uppercase;
  color: #866945;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .footer-coll__title {
    margin-bottom: 10px;
    font-size: 12px;
  }
}
.footer-coll.--ur .footer-coll__title {
  margin-bottom: 26px;
}
@media (max-width: 992px) {
  .footer-coll.--ur .footer-coll__title {
    margin-bottom: 10px;
  }
}
.footer-coll__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}
@media (max-width: 992px) {
  .footer-coll__list {
    gap: 5px;
  }
}
.footer-coll.--ur .footer-coll__list {
  gap: 7px;
}
@media (max-width: 992px) {
  .footer-coll.--ur .footer-coll__list {
    gap: 5px;
  }
}
.footer-coll__item {
  font-weight: 400;
  font-size: 16px;
  line-height: 119%;
  color: #2E2E2E;
}
@media (max-width: 992px) {
  .footer-coll__item {
    font-size: 12px;
  }
}
.footer-coll__item a {
  color: inherit;
}
.footer-coll.--ur .footer-coll__item {
  color: #5c5c5c;
  font-size: 14px;
}
@media (max-width: 992px) {
  .footer-coll.--ur .footer-coll__item {
    font-size: 12px;
  }
}

.footer {
  padding: 40px 0;
}
@media (max-width: 992px) {
  .footer {
    padding: 20px 0;
  }
}
.footer .container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: flex-start;
  grid-gap: 20px;
  gap: 20px;
}
@media (max-width: 992px) {
  .footer .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 992px) {
  .footer .logo {
    display: none;
  }
}
.footer__info-coll {
  display: flex;
  flex-direction: column;
  gap: 35px;
  align-items: flex-start;
}
@media (max-width: 992px) {
  .footer__info-coll {
    order: 1;
  }
}
.footer__info-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
@media (max-width: 992px) {
  .footer__info-wrap {
    gap: 5px;
  }
}
.footer__info {
  font-weight: 400;
  font-size: 16px;
  line-height: 119%;
  color: #2E2E2E;
  opacity: 0.5;
}
@media (max-width: 992px) {
  .footer__info {
    font-size: 12px;
  }
}
.footer__info a {
  color: inherit;
}
.footer__colls {
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr;
  align-items: flex-start;
  grid-gap: 20px;
  gap: 20px;
}
@media (max-width: 992px) {
  .footer__colls {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 992px) {
  .footer__colls .footer-coll:nth-child(3) {
    grid-column: 1/3;
  }
}
.footer__developer-info {
  color: #a7a7a7;
  text-align: left;
  font-size: 12px;
  line-height: 120%;
  grid-column: 1/3;
  align-self: flex-start;
  order: 2;
}
@media (max-width: 992px) {
  .footer__developer-info {
    grid-column: 1;
    font-size: 10px;
  }
}
.footer__developer-info a {
  -webkit-text-decoration: underline;
  text-decoration: underline;
  color: #4b4b4b;
  font-weight: 700;
}

.header {
  padding: 30px 0;
  z-index: 950;
  position: relative;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.3s ease;
}
@media (max-width: 992px) {
  .header {
    padding: 20px 0;
  }
}
.header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #FFFFFF;
  z-index: 101;
}
.header__container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 102;
}
.header .nav {
  flex: 1 0;
}
@media (min-width: 993px) {
  .header .burger-btn {
    display: none;
  }
}
.header .logo {
  transition: 0.3s ease;
}
.header.--html-scrolled {
  padding: 10px 0;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}
@media (max-width: 992px) {
  .header.--html-scrolled {
    padding: 20px 0;
  }
}
.header.--html-scrolled .logo {
  transform: scale(0.7);
}
@media (max-width: 992px) {
  .header.--html-scrolled .logo {
    transform: scale(1);
  }
}

.hello-modal {
  position: fixed;
  z-index: 1040;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  pointer-events: none;
  opacity: 0;
  transition: 0.3s ease;
}
.hello-modal.--visible {
  opacity: 1;
  pointer-events: all;
}
.hello-modal__wrapper {
  background: #ffffff;
  border-radius: 5px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.5);
  max-width: 500px;
  width: 100%;
}
@media (max-width: 992px) {
  .hello-modal__wrapper {
    max-width: 380px;
    padding: 20px 20px 30px;
  }
}
.hello-modal__close {
  background: transparent;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  border: none;
}
.hello-modal__close .icon {
  --icon-fill: #555555;
  --icon-height: 14px;
}
.hello-modal__button {
  margin-top: 20px;
}
.hello-modal__text b, .hello-modal__text a {
  color: #866945;
}

.hero-hello {
  position: relative;
  border-radius: 5px;
  padding: 30px;
  background: #866945;
  background: url(../img/bg/hero.webp) no-repeat center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 320px;
}
@media (max-width: 992px) {
  .hero-hello {
    padding: 20px;
  }
}
.hero-hello::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.3);
}
.hero-hello > * {
  position: relative;
}
.hero-hello__title {
  font-weight: 700;
  font-size: 28px;
  line-height: 121%;
  color: #FFFFFF;
}
@media (max-width: 992px) {
  .hero-hello__title {
    font-size: 24px;
  }
}
@media (max-width: 720px) {
  .hero-hello__title {
    font-size: 18px;
  }
}
.hero-hello__text {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #FFFFFF;
  margin-bottom: 20px;
  margin-top: 20px;
}
@media (max-width: 992px) {
  .hero-hello__text {
    order: 1;
    margin-bottom: 0;
  }
}
.hero-hello .btn {
  margin-top: auto;
}
@media (max-width: 992px) {
  .hero-hello .btn {
    width: 100%;
  }
}

.hero {
  padding: 0 0 40px;
}
@media (max-width: 992px) {
  .hero {
    padding: 0 0 20px;
  }
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
  gap: 10px;
}
@media (max-width: 992px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.hero__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
  gap: 10px;
}
@media (max-width: 992px) {
  .hero__items {
    gap: 20px;
  }
}

.input {
  display: inline-flex;
  align-items: flex-start;
}
.input input {
  padding: 10px 20px;
  background: #FFFFFF;
  border: 1px solid #866945;
  border-radius: 5px;
  font-weight: 400;
  font-size: 16px;
  line-height: 119%;
  transition: 0.3s ease;
  width: 100%;
  min-width: 0;
  outline: none;
  color: #000000;
}
@media (max-width: 992px) {
  .input input {
    padding: 13px 10px;
    font-size: 12px;
  }
}
.input input::-moz-placeholder {
  color: #969696;
}
.input input::placeholder {
  color: #969696;
}
.input input:focus {
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.logo {
  display: inline-flex;
  position: relative;
}
.logo img {
  display: block;
  width: 129px;
  height: auto;
}
@media (max-width: 992px) {
  .logo img {
    width: 58px;
  }
}
.logo ._beta {
  position: absolute;
  bottom: -5px;
  left: -5px;
  font-size: 12px;
  color: #FFFFFF;
  background: #fc4b4b;
}

.main-actions {
  padding: 40px 0;
  background: url(../img/bg/main-actions.webp) no-repeat center;
  background-size: cover;
}
@media (max-width: 992px) {
  .main-actions {
    padding: 20px 0;
  }
}
.main-actions .container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 20px;
  gap: 20px;
}
@media (max-width: 992px) {
  .main-actions .container {
    gap: 10px;
    grid-template-columns: 1fr;
  }
}
.main-actions__item {
  padding: 20px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.5);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}
@media (max-width: 992px) {
  .main-actions__item {
    padding: 10px;
    gap: 10px;
  }
}
.main-actions__item-label {
  padding: 5px 10px;
  background: #FFFFFF;
  border-radius: 5px;
  font-weight: 400;
  font-size: 16px;
  line-height: 119%;
  color: #866945;
}
@media (max-width: 992px) {
  .main-actions__item-label {
    font-size: 12px;
    padding: 8px 10px;
    background: #866945;
    color: #FFFFFF;
  }
}
.main-actions__item-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 119%;
  color: #000000;
  margin-top: auto;
}
@media (max-width: 992px) {
  .main-actions__item-text {
    font-size: 12px;
  }
}

.menu {
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  right: 0;
  background: #FFFFFF;
  border-bottom: 1px solid #555555;
  padding-bottom: 30px;
  overflow-x: hidden;
  overflow-y: auto;
  max-height: 70vh;
  max-height: 70dvh;
  transition: 0.3s ease;
  padding-top: 21px;
  border-radius: 0 0 5px 5px;
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
}
@media (max-width: 992px) {
  .menu.--active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
  }
}
.menu__container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.menu .link {
  color: #000000;
  font-size: 18px;
  line-height: 120%;
}

.nav {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 992px) {
  .nav {
    gap: 20px;
  }
}
.nav > .logo {
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 992px) {
  .nav > .logo {
    margin-left: 0;
  }
}
.nav > .link {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #2E2E2E;
}
@media (max-width: 992px) {
  .nav > .link {
    display: none;
  }
}

.order-form {
  display: flex;
  flex-direction: column;
}
.order-form__inputs {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 20px;
  gap: 20px;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .order-form__inputs {
    grid-template-columns: 1fr;
    margin-bottom: 20px;
    gap: 10px;
  }
}
.order-form__products-label {
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  color: #2E2E2E;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .order-form__products-label {
    font-size: 12px;
    margin-bottom: 10px;
  }
}
.order-form .basket-list {
  margin-bottom: 40px;
  max-width: 800px;
}
@media (max-width: 992px) {
  .order-form .basket-list {
    margin-bottom: 20px;
  }
}
.order-form__promo {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  max-width: 360px;
  width: 100%;
}
.order-form__promo input {
  flex: 1 0;
  min-width: 0;
  width: auto;
  background: #FFFFFF;
  border-radius: 5px;
  padding: 5px 10px;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  border: 1px solid #866945;
  transition: 0.2s ease;
  outline: none;
  color: #000000;
}
.order-form__promo input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.order-form__promo input::placeholder {
  color: rgba(0, 0, 0, 0.5);
}
@media (max-width: 992px) {
  .order-form__promo input {
    font-size: 12px;
    padding: 4px 10px;
  }
}
.order-form__promo input:focus {
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}
.order-form__sum {
  font-weight: 400;
  font-size: 16px;
  line-height: 119%;
  color: #2E2E2E;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .order-form__sum {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 12px;
  }
}
.order-form__sum b {
  font-weight: 700;
}
.order-form__delivery-radios {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .order-form__delivery-radios {
    gap: 5px;
  }
}
.order-form__discount-info {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 119%;
  color: #2E2E2E;
}
.order-form__discount-info b {
  font-weight: 700;
}
@media (max-width: 992px) {
  .order-form__discount-info {
    font-size: 12px;
  }
}
.order-form__promo-discount {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 119%;
  color: #2E2E2E;
}
@media (max-width: 992px) {
  .order-form__promo-discount {
    font-size: 12px;
  }
}
.order-form__promo-discount em {
  font-style: italic;
}
.order-form__promo-discount b {
  font-weight: 700;
}
.order-form__promo-discount ._error {
  font-weight: 700;
  color: #d95151;
}
.order-form__promo-discount:empty {
  display: none;
}
.order-form__total {
  font-weight: 700;
  font-size: 20px;
  line-height: 125%;
  color: #2E2E2E;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .order-form__total {
    margin-bottom: 20px;
    font-size: 12px;
  }
}
.order-form__pay-radios {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px 20px;
  gap: 10px 20px;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .order-form__pay-radios {
    margin-bottom: 20px;
    gap: 10px;
    grid-template-columns: 1fr;
  }
}
.order-form__info {
  font-weight: 400;
  font-size: 16px;
  line-height: 119%;
  color: #2E2E2E;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .order-form__info {
    font-size: 12px;
  }
}
.order-form__info .link {
  color: #866945;
}
.order-form__error {
  margin-bottom: 5px;
  color: #d95151;
  font-weight: 700;
  font-size: 16px;
  line-height: 119%;
}
.order-form__error:empty {
  display: none;
}
.order-form__submit {
  min-width: 250px;
  align-self: flex-start;
}
@media (max-width: 992px) {
  .order-form__submit {
    align-self: stretch;
  }
}

.order {
  padding: 0 0 40px;
}
@media (max-width: 992px) {
  .order {
    padding: 0 0 20px;
  }
}
.order .crumbs {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .order .crumbs {
    margin-bottom: 20px;
  }
}
.order .section-title {
  margin-bottom: 20px;
  font-weight: 700;
}
.order__empty {
  font-size: 16px;
  color: #000000;
  line-height: 125%;
  font-weight: 400;
}
@media (max-width: 992px) {
  .order__empty {
    font-size: 12px;
  }
}
.order.--empty .order-form {
  display: none;
}
.order:not(.--empty) .order__empty {
  display: none;
}

.pagination {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 992px) {
  .pagination {
    gap: 10px;
  }
}
.pagination__label {
  font-weight: 700;
  font-size: 16px;
  line-height: 125%;
  color: #2E2E2E;
}
@media (max-width: 992px) {
  .pagination__label {
    display: none;
  }
}
.pagination__items {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 992px) {
  .pagination__items {
    gap: 10px;
  }
}
.pagination__items li {
  font-weight: 400;
  font-size: 16px;
  line-height: 119%;
  color: #969696;
  transition: 0.2s ease;
  cursor: pointer;
}
@media (max-width: 992px) {
  .pagination__items li {
    font-size: 12px;
  }
}
.pagination__items li.--active {
  color: #2E2E2E;
}
@media (any-hover: hover) {
  .pagination__items li:hover {
    color: #2E2E2E;
  }
}

.photos {
  padding: 40px 0;
}
@media (max-width: 992px) {
  .photos {
    padding: 20px 0;
  }
}
.photos .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
  gap: 20px;
}
@media (max-width: 992px) {
  .photos .container {
    grid-template-columns: 1fr;
  }
}
.photos .section-title {
  font-weight: 400;
}
.photos__content {
  display: flex;
  flex-direction: column;
}
.photos__title-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}
.photos__slider-btns {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 992px) {
  .photos__slider-btns {
    position: absolute;
    inset: 0;
    z-index: 2;
    justify-content: space-between;
    pointer-events: none;
    padding: 10px;
  }
  .photos__slider-btns .btn {
    pointer-events: all;
  }
}
.photos__see-all {
  margin-bottom: 20px;
  align-self: flex-start;
  min-width: 280px;
}
.photos__text {
  margin-top: auto;
  font-weight: 400;
  font-size: 16px;
  line-height: 119%;
  color: #2E2E2E;
}
@media (max-width: 992px) {
  .photos__text {
    font-size: 14px;
  }
}
.photos__text strong, .photos__text b {
  color: #866945;
}
.photos__slider {
  width: 0;
  min-width: 100%;
  position: relative;
}
.photos__slider .swiper {
  cursor: grab;
  width: 100%;
  position: relative;
  z-index: 1;
}
.photos__slider .swiper-slide {
  height: 360px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
  border-radius: 5px;
}
@media (max-width: 992px) {
  .photos__slider .swiper-slide {
    height: 200px;
  }
}
.photos__slider-scrollbar {
  height: 10px;
  margin-top: 20px;
  border-radius: 20px;
  background: #EDE9E3;
}
@media (max-width: 992px) {
  .photos__slider-scrollbar {
    margin-top: 10px;
    height: 8px;
  }
}
.photos__slider-scrollbar .swiper-scrollbar-drag {
  border-radius: 20px;
  background: #866945;
}

.pop-catalog {
  padding: 40px 0;
}
@media (max-width: 992px) {
  .pop-catalog {
    padding: 20px 0;
  }
}
.pop-catalog .container {
  display: flex;
  flex-direction: column;
}
.pop-catalog__title-wrap {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 992px) {
  .pop-catalog__title-wrap {
    margin-bottom: 10px;
  }
}
.pop-catalog__show-more {
  font-size: 16px;
  font-weight: 400;
  text-decoration: underline;
  -webkit-text-decoration: underline currentColor;
          text-decoration: underline currentColor;
  color: #000000;
}
@media (max-width: 992px) {
  .pop-catalog__show-more {
    font-size: 14px;
  }
}
.pop-catalog__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 20px;
  gap: 20px;
}
@media (max-width: 992px) {
  .pop-catalog__items {
    gap: 10px 20px;
    grid-template-columns: 1fr 1fr;
  }
}
.pop-catalog__btn {
  align-self: center;
  margin-top: 20px;
}
@media (max-width: 992px) {
  .pop-catalog__btn {
    align-self: stretch;
  }
}

.product-basket {
  display: flex;
  align-items: center;
  gap: 10px;
}
.product-basket__count {
  display: flex;
  align-items: center;
  gap: 10px;
}
.product-basket__count span {
  padding: 0;
  border: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  outline: none;
  width: auto;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  line-height: 1;
  width: 16px;
  text-align: center;
}

.product-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
@media (max-width: 992px) {
  .product-content {
    gap: 10px;
  }
}
.product-content__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 119%;
  color: #000000;
}
@media (max-width: 992px) {
  .product-content__text {
    font-size: 12px;
  }
}
.product-content__articul {
  font-weight: 400;
  font-size: 16px;
  line-height: 119%;
  color: #000000;
}
@media (max-width: 992px) {
  .product-content__articul {
    font-size: 12px;
  }
}
.product-content__articul b, .product-content__articul strong {
  font-weight: 700;
}
.product-content__variant {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px 20px;
}
@media (max-width: 992px) {
  .product-content__variant {
    gap: 5px 10px;
  }
}
.product-content__variant > span {
  font-weight: 400;
  font-size: 16px;
  line-height: 119%;
  color: #000000;
}
@media (max-width: 992px) {
  .product-content__variant > span {
    font-size: 12px;
  }
}
.product-content__variation-text {
  font-weight: 700;
  font-size: 14px;
  line-height: 119%;
  font-style: italic;
  color: #353535;
}
.product-content__variation-text:not(.--active) {
  display: none;
}
.product-content__price {
  font-weight: 400;
  font-size: 20px;
  line-height: 119%;
  color: #866945;
  font-weight: 700;
  margin-top: 10px;
}
.product-content__price del {
  font-size: 0.9em;
  vertical-align: baseline;
  color: #000000;
  margin-right: 5px;
  -webkit-text-decoration: line-through;
  text-decoration: line-through;
  font-weight: 400;
}
@media (max-width: 992px) {
  .product-content__price {
    font-size: 16px;
    margin-top: 10px;
  }
}
.product-content__not-available {
  color: #CF0000;
  font-weight: 400;
  font-size: 16px;
  line-height: 119%;
}
@media (max-width: 992px) {
  .product-content__not-available {
    font-size: 12px;
  }
}
.product-content.--empty .product-content__variant, .product-content.--empty .product-content__price, .product-content.--empty .product-basket {
  display: none;
}
.product-content:not(.--empty) .product-content__not-available {
  display: none;
}

.product-gallery {
  display: grid;
  grid-template-columns: 80px 1fr;
  grid-gap: 5px;
  gap: 5px;
}
@media (max-width: 992px) {
  .product-gallery {
    grid-template-columns: 1fr;
  }
}
.product-gallery .swiper-pagination {
  width: 0 !important;
  height: auto !important;
  top: auto !important;
  bottom: auto !important;
  left: auto !important;
  right: auto !important;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 100%;
  max-height: 350px;
  overflow: auto;
  padding-right: 5px;
}
.product-gallery .swiper-pagination::-webkit-scrollbar {
  width: 2px;
  height: 2px;
}
@media (max-width: 992px) {
  .product-gallery .swiper-pagination {
    width: auto !important;
    height: 75px !important;
    flex-direction: row;
    gap: 5px;
    order: 1;
    max-height: 320px;
    padding-right: 0;
    padding-top: 5px;
  }
}
.product-gallery .swiper-pagination-bullet {
  flex: 1 0;
  display: block;
  border-radius: 5px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
  width: 100%;
  height: auto;
  margin: 0 !important;
  min-height: 50px;
}
@media (max-width: 992px) {
  .product-gallery .swiper-pagination-bullet {
    width: auto;
    min-height: auto;
    min-width: 100px;
  }
}
.product-gallery .swiper {
  width: 350px;
  height: 350px;
  margin-left: 0;
  margin-right: 0;
  display: flex;
}
@media (max-width: 992px) {
  .product-gallery .swiper {
    height: 320px;
    width: 100%;
  }
}
.product-gallery .swiper-slide {
  position: relative;
}
.product-gallery .swiper-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 5px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.product-info-section {
  padding: 40px 0;
}
@media (max-width: 992px) {
  .product-info-section {
    padding: 20px 0;
  }
}
.product-info-section .container {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 20px 40px;
  gap: 20px 40px;
}
@media (max-width: 992px) {
  .product-info-section .container {
    grid-template-columns: 1fr;
  }
}

.product-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #EDE9E3;
  border-radius: 5px;
}
@media (max-width: 992px) {
  .product-info {
    padding: 10px;
    gap: 10px;
  }
}
.product-info__title {
  font-weight: 400;
  font-size: 16px;
  line-height: 119%;
  color: #866945;
  padding: 5px 10px;
  background: #FFFFFF;
  border-radius: 5px;
}
@media (max-width: 992px) {
  .product-info__title {
    font-size: 12px;
    padding: 8px 10px;
  }
}
.product-info__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  color: #2E2E2E;
}
@media (max-width: 992px) {
  .product-info__text {
    font-size: 12px;
  }
}
.product-info__text p:not(:first-child) {
  margin-top: 1.25em;
}
.product-info__text b {
  font-weight: 700;
}
.product-info__text i {
  font-style: italic;
}
.product-info__text a {
  color: inherit;
  text-decoration: underline;
  -webkit-text-decoration: underline currentColor;
          text-decoration: underline currentColor;
}

.product {
  padding: 30px 0;
}
@media (max-width: 992px) {
  .product {
    padding: 0 0 20px;
  }
}
.product .crumbs {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .product .crumbs {
    margin-bottom: 20px;
  }
}
.product__content {
  display: grid;
  grid-template-columns: 440px 1fr;
  grid-gap: 20px 40px;
  gap: 20px 40px;
  align-items: flex-start;
}
@media (max-width: 992px) {
  .product__content {
    grid-template-columns: 1fr;
  }
}
.product .product-gallery {
  width: 0;
  min-width: 100%;
}
.product .product-content {
  flex: 1 0;
}
@media (max-width: 992px) {
  .product .product-content {
    flex: initial;
  }
}

.radio {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.radio div {
  position: relative;
  width: 20px;
  height: 20px;
  border: 1px solid #866945;
  background: #FFFFFF;
  transition: 0.3s ease;
  border-radius: 40px;
  flex-shrink: 0;
  cursor: inherit;
}
@media (max-width: 992px) {
  .radio div {
    width: 16px;
    height: 16px;
  }
}
.radio div input {
  position: absolute;
  opacity: 0;
  inset: 0;
  cursor: inherit;
}
.radio div:has(input:checked) {
  background: #866945;
}
.radio div:has(input:focus) {
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}
.radio span {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #000000;
}
@media (max-width: 992px) {
  .radio span {
    font-size: 12px;
    line-height: 14px;
  }
}
.radio span span.--grey {
  color: #969696;
}

.range-filter {
  display: flex;
  flex-direction: column;
  gap: 10px;
  touch-action: none;
  padding-left: 10px;
}
.range-filter ._inputs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 220px;
  gap: 20px;
}
@media (max-width: 992px) {
  .range-filter ._inputs {
    width: 180px;
    gap: 10px;
  }
}
.range-filter ._input-min,
.range-filter ._input-max {
  width: 0;
  border: 1px solid #866945;
  border-radius: 5px;
  padding: 5px 10px;
  background: #FFFFFF;
  outline: none;
  font-weight: 400;
  font-size: 16px;
  line-height: 119%;
  color: #2E2E2E;
  flex: 1 0;
}
@media (max-width: 992px) {
  .range-filter ._input-min,
  .range-filter ._input-max {
    font-size: 12px;
    padding: 3px 10px;
  }
}
.range-filter ._slider {
  width: 220px;
  height: 1px;
  position: relative;
}
@media (max-width: 992px) {
  .range-filter ._slider {
    width: 180px;
  }
}
.range-filter ._place {
  position: absolute;
  height: 1px;
  background: #2E2E2E;
  top: 50%;
  translate: 0 -50%;
  left: 0;
  right: 0;
}
.range-filter ._point-min,
.range-filter ._point-max {
  position: absolute;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 20px;
  background: #2E2E2E;
  cursor: grab;
}
.range-filter ._point-min:active,
.range-filter ._point-max:active {
  cursor: grabbing;
}
.range-filter ._point-min {
  left: 0;
  translate: -50% -50%;
}
.range-filter ._point-max {
  right: 0;
  translate: 50% -50%;
}

.review-item {
  padding: 20px;
  border-radius: 5px;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
}
@media (max-width: 992px) {
  .review-item {
    padding: 15px 10px;
  }
}
.review-item__rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
}
@media (max-width: 992px) {
  .review-item__rating {
    gap: 3px;
  }
}
.review-item__rating .icon {
  --icon-height: 12px;
  --icon-fill: #866945;
}
@media (max-width: 992px) {
  .review-item__rating .icon {
    --icon-height: 10px ;
  }
}
.review-item__image {
  margin-bottom: 20px;
  border-radius: 5px;
  height: auto;
  width: 100%;
  align-self: flex-start;
  max-width: 255px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 992px) {
  .review-item__image {
    margin-bottom: 10px;
  }
}
.review-item__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 119%;
  color: #2E2E2E;
}
@media (max-width: 992px) {
  .review-item__text {
    font-size: 12px;
  }
}

.reviews {
  background: #EDE9E3;
  padding: 40px 0;
}
@media (max-width: 992px) {
  .reviews {
    padding: 20px 0;
  }
}
.reviews .section-title {
  margin-bottom: 29px;
}
@media (max-width: 992px) {
  .reviews .section-title {
    margin-bottom: 10px;
  }
}
.reviews__slider {
  cursor: grab;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.reviews__slider .swiper-slide {
  height: auto;
}
.reviews__slider .yandex-reviews-widget {
  background: #FFFFFF;
  position: relative;
}
.reviews__slider .yandex-reviews-widget > .btn {
  position: absolute;
  right: 5px;
  top: 50%;
  translate: 0 -50%;
}
@media (min-width: 993px) {
  .reviews__slider .yandex-reviews-widget > .btn {
    display: none;
  }
}
.reviews__slider-scrollbar {
  height: 10px;
  margin-top: 20px;
  border-radius: 20px;
  background: #FFFFFF;
}
@media (max-width: 992px) {
  .reviews__slider-scrollbar {
    margin-top: 10px;
    height: 8px;
  }
}
.reviews__slider-scrollbar .swiper-scrollbar-drag {
  border-radius: 20px;
  background: #866945;
}

.socials {
  position: fixed;
  z-index: 1010;
  right: 0;
  top: 50%;
  translate: 0 -50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 5px 0 0 5px;
  border: 1px solid #EDE9E3;
  background: #FFFFFF;
  border-right: none;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;
}
.socials a {
  display: block;
  position: relative;
  transition: 0.3s ease;
  padding: 10px;
}
@media (max-width: 992px) {
  .socials a {
    padding: 5px;
  }
}
@media (any-hover: hover) {
  .socials a:hover {
    transform: translateX(-50%);
  }
}
.socials a:active {
  transform: translateX(-50%) scale(0.8);
}
.socials img {
  width: 45px;
  height: auto;
}
@media (max-width: 992px) {
  .socials img {
    width: 20px;
    height: auto;
  }
}
@media (any-hover: hover) {
  .socials:has(a:hover) {
    transform: translateX(50%);
  }
}

.subcategories {
  padding: 30px 0;
}
@media (max-width: 992px) {
  .subcategories {
    padding: 0 0 20px;
  }
}
.subcategories .crumbs {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .subcategories .crumbs {
    margin-bottom: 20px;
  }
}
.subcategories__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 10px;
  gap: 10px;
}
@media (max-width: 992px) {
  .subcategories__items {
    gap: 20px;
    grid-template-columns: 1fr 1fr;
  }
}

.thanks-modal {
  position: fixed;
  z-index: 1050;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  pointer-events: none;
  opacity: 0;
  transition: 0.3s ease;
}
.thanks-modal.--visible {
  opacity: 1;
  pointer-events: all;
}
.thanks-modal__wrapper {
  background: #ffffff;
  border-radius: 5px;
  padding: 40px 30px 60px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.5);
  max-width: 650px;
}
@media (max-width: 992px) {
  .thanks-modal__wrapper {
    max-width: 380px;
    padding: 20px 20px 30px;
  }
}
.thanks-modal__close {
  background: transparent;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  border: none;
}
.thanks-modal__close .icon {
  --icon-fill: #555555;
  --icon-height: 14px;
}
.thanks-modal__title {
  font-size: 42px;
  line-height: 120%;
  color: #2C2C2C;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}
@media (max-width: 992px) {
  .thanks-modal__title {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
.thanks-modal__message {
  font-size: 24px;
  line-height: 140%;
  margin-bottom: 20px;
  color: #555555;
  text-align: center;
}
@media (max-width: 992px) {
  .thanks-modal__message {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
.thanks-modal__redirect-text {
  margin-bottom: 10px;
  text-align: center;
  font-size: 16px;
  line-height: 140%;
  margin-bottom: 10px;
  margin-top: -10px;
  color: #848484;
}
.thanks-modal__redirect-text:empty {
  display: none;
}
.thanks-modal__download-link {
  color: #555555;
  align-self: center;
  margin-bottom: 30px;
  text-align: center;
  font-size: 18px;
  line-height: 140%;
}
@media (max-width: 992px) {
  .thanks-modal__download-link {
    margin-bottom: 20px;
    font-size: 12px;
  }
}
.thanks-modal__button {
  align-self: center;
  width: 100%;
  max-width: 300px;
}

.why-us {
  padding: 40px 0;
}
@media (max-width: 992px) {
  .why-us {
    padding: 20px 0;
  }
}
.why-us .section-title {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .why-us .section-title {
    margin-bottom: 20px;
  }
}
.why-us__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 20px;
  gap: 20px;
}
@media (max-width: 992px) {
  .why-us__items {
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
  }
}
@media (max-width: 720px) {
  .why-us__items {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.why-us__item {
  padding: 20px;
  border-radius: 5px;
  background: #ede9e3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}
@media (max-width: 992px) {
  .why-us__item {
    padding: 10px;
    gap: 10px;
  }
}
.why-us__item-label {
  padding: 5px 10px;
  background: #FFFFFF;
  border-radius: 5px;
  font-weight: 400;
  font-size: 16px;
  line-height: 119%;
  color: #866945;
}
@media (max-width: 992px) {
  .why-us__item-label {
    color: #FFFFFF;
    background: #866945;
    font-size: 12px;
    padding: 8px 10px;
  }
}
.why-us__item-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 119%;
  color: #000000;
  margin-top: auto;
}
@media (max-width: 992px) {
  .why-us__item-text {
    font-size: 12px;
  }
}
/*# sourceMappingURL=../sourcemaps/css/style.bundle.css.map */
