/* ===== VARIABLES ===== */
:root {
  --color-light-bronze: rgba(180, 125, 50, 0.05);
  --color-green: #00583c;
  --color-bronze: #b27c2d;
  --color-dark-green: #05231b;
  --color-white: #ffffff;
  --color-black: #000000;
  --font-montserrat: Montserrat, Helvetica, Arial, sans-serif;

  --primary-color: var(--color-bronze);
  --text-color: var(--color-dark-green);
  --bg-color: var(--color-white);
  --min-width: 360px;
  --header-height: 120px;
}

@media (max-width: 1279.98px) {
  :root {
    --header-height: 76px;
  }
}
/* ===== /VARIABLES ===== */


/* ===== FONTS ===== */
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-ThinItalic.woff2") format("woff2");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Thin.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-ExtraLightItalic.woff2") format("woff2");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-ExtraLight.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-LightItalic.woff2") format("woff2");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-MediumItalic.woff2") format("woff2");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-SemiBoldItalic.woff2") format("woff2");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-BoldItalic.woff2") format("woff2");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-ExtraBoldItalic.woff2") format("woff2");
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-BlackItalic.woff2") format("woff2");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
/* ===== /FONTS ===== */


/* ===== PAGE ===== */
.page {
  min-width: var(--min-width);

  padding-top: var(--header-height);

  font-family: var(--font-montserrat), sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: var(--text-color);

  background-color: var(--color-white);
}

@media (max-width: 767.98px) {
  .page {
    font-size: 14px;
  }
}
/* ===== /PAGE ===== */


/* ===== CONTAINER ===== */
.container {
  max-width: 1230px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

@media (max-width: 1279.98px) {
  .container {
    max-width: 960px;
  }
}

@media (max-width: 991.98px) {
  .container {
    max-width: 720px;
  }
}

@media (max-width: 767.98px) {
  .container {
    max-width: 540px;
  }
}

@media (max-width: 575.98px) {
  .container {
    max-width: 100%;
  }
}
/* ===== /CONTAINER ===== */


/* ===== CONTAINER--HEADER ===== */
.container--header {
  max-width: 1440px;
}

@media (max-width: 1279.98px) {
  .container--header {
    max-width: 960px;
  }
}

@media (max-width: 991.98px) {
  .container--header {
    max-width: 720px;
  }
}

@media (max-width: 767.98px) {
  .container--header {
    max-width: 540px;
  }
}

@media (max-width: 575.98px) {
  .container--header {
    max-width: 100%;
  }
}
/* ===== /CONTAINER--HEADER ===== */


/* ===== SECTION ===== */
.section {
  padding-top: 120px;
  padding-bottom: 120px;
}

@media (max-width: 1279.98px) {
  .section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

@media (max-width: 991.98px) {
  .section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media (max-width: 767.98px) {
  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}


.section__heading {
  margin-bottom: 48px;
}

@media (max-width: 1279.98px) {
  .section__heading {
    margin-bottom: 24px;
  }
}

@media (max-width: 767.98px) {
  .section__heading {
    margin-bottom: 12px;
  }
}

.section__heading-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (max-width: 1279.98px) {
  .section__heading-row {
    grid-template-columns: 1fr;
  }
}

.section__heading-with-arrows {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  align-items: flex-end;
}

@media (max-width: 1279.98px) {
  .section__heading-with-arrows {
    flex-direction: column;
    align-items: flex-start;
  }
}

.section__heading-with-arrows--mobile {
  display: none;
}

@media (max-width: 1279.98px) {
  .section__heading-with-arrows--mobile {
    display: flex;
  }
}

.section__heading-title {
  margin: 0;
}

.section__heading-description {
  margin: 0;
}

.section__heading-description > p:first-child {
  margin-top: 0;
}

.section__heading-description > p:last-child {
  margin-bottom: 0;
}

.section__title {
  margin: 0 0 48px;
}

@media (max-width: 991.98px) {
  .section__title {
    margin-bottom: 24px;
  }
}

.section--bg-light-bronze {
  background-color: var(--color-light-bronze);
}

.section--no-offset-top {
  padding-top: 0;
}

.section--offset-top-48 {
  padding-top: 48px;
}

@media (max-width: 767.98px) {
  .section--offset-top-48 {
    padding-top: 24px;
  }
}

.section--no-offset-bottom {
  padding-bottom: 0;
}

.section--offset-bottom-48 {
  padding-bottom: 48px;
}

@media (max-width: 767.98px) {
  .section--offset-bottom-48 {
    padding-bottom: 24px;
  }
}
/* ===== /SECTION ===== */


/* ===== PAGE-TITLE ===== */
.page-title {
  margin: 0;

  font-family: var(--font-montserrat), sans-serif;
  font-weight: 400;
  font-size: 55px;
  line-height: 1.1;
  color: var(--color-dark-green);
}

@media (max-width: 1279.98px) {
  .page-title {
    font-size: 42px;
  }
}

@media (max-width: 767.98px) {
  .page-title {
    font-size: 32px;
  }
}

@media (max-width: 575.98px) {
  .page-title {
    font-size: 26px;
  }
}
/* ===== /PAGE-TITLE ===== */


/* ===== TITLE-H2 ===== */
.title-h2 {
  font-weight: 400;
  font-size: 40px;
  line-height: 1.1;
}

@media (max-width: 991.98px) {
  .title-h2 {
    font-size: 32px;
  }
}

@media (max-width: 767.98px) {
  .title-h2 {
    font-size: 24px;
    line-height: 1.2;
  }
}
/* ===== /TITLE-H2 ===== */


/* ===== TITLE-H3 ===== */
.title-h3 {
  font-weight: 400;
  font-size: 30px;
  line-height: 1.1;
}

@media (max-width: 991.98px) {
  .title-h3 {
    font-size: 26px;
  }
}

@media (max-width: 767.98px) {
  .title-h3 {
    font-size: 22px;
    line-height: 1.2;
  }
}
/* ===== /TITLE-H3 ===== */


/* ===== LOGO ===== */
.logo {
  display: block;
  max-width: 130px;
  width: fit-content;
}

.logo__img {
  display: block;
  max-width: 100%;
  height: auto;
}

.logo--footer {
  max-width: 164px;
}
/* ===== /LOGO ===== */


/* ===== BUTTON ===== */
.button {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  height: 48px;
  padding: 12px 24px;

  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  text-decoration: none;
  color: var(--text-color);

  background: linear-gradient(to top, #b9ac92, #ece9e8 50.481%, #f0e8dd);
  border-radius: 6px;
  border: none;

  cursor: pointer;

  transition: 0.32s color ease, 0.32s background ease;
}

.button::before {
  content: "";

  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  background: linear-gradient(to bottom, #b9ac92, #ece9e8 50.481%, #f0e8dd);
  border-radius: 6px;
  opacity: 0;

  transition: 0.32s opacity ease;
}

.button--outline {
  color: var(--color-dark-green);

  background:
      linear-gradient(#ffffff, #ffffff) padding-box,
      linear-gradient(to bottom, #ece9e8, #b9ac92) border-box;
  border: 1px solid transparent;
}

.button--outline::before {
  content: none;
}


.button--light-outline {
  background: transparent;
  border: 1px solid var(--color-white);
}

.button--light-outline::before {
  content: none;
}

.button--light-outline:hover {
  background: var(--color-white);
}

.button--light-solid {
  background: var(--color-white);
}

.button--light-solid::before {
  content: none;
}

.button--light-solid:hover {
  color: var(--color-white);

  background: var(--primary-color);
}

.button--wide {
  width: 100%;
}

.button__text {
  position: relative;
  z-index: 2;
}

.button:hover::before {
  opacity: 1;
}

.button--footer-callback {
  max-width: 290px;
  width: 100%;
  height: 60px;
}

@media (max-width: 767.98px) {
  .button--footer-callback {
    max-width: 100%;
  }
}
/* ===== /BUTTON ===== */


/* ===== BREADCRUMBS ===== */
.breadcrumbs {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  align-items: center;

  width: 100%;
  margin-bottom: 48px;
  overflow-x: auto;

  font-family: var(--font-montserrat), sans-serif;
  font-size: 16px;
  line-height: 1.4;
  white-space: nowrap;
  color: var(--color-dark-green);

  mask-image: linear-gradient(to right, #000000 calc(100% - 32px), transparent);

  scrollbar-width: none;
}

.breadcrumbs::-webkit-scrollbar {
  display: none;
}

@media (max-width: 1279.98px) {
  .breadcrumbs {
    margin-bottom: 24px;
  }
}

@media (max-width: 767.98px) {
  .breadcrumbs {
    font-size: 14px;
  }
}

.breadcrumbs > * {
  flex-shrink: 0;
}

.breadcrumbs__back {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0;

  color: inherit;

  background: none;
  border: none;

  cursor: pointer;

  transition: opacity 0.2s ease;
}

.breadcrumbs__back:hover {
  opacity: 0.6;
}

.breadcrumbs__link,
.breadcrumbs__current {
  color: inherit;
  text-decoration: none;
}

.breadcrumbs__link {
  opacity: 0.5;

  transition: opacity 0.2s ease;
}

.breadcrumbs__link:hover {
  opacity: 1;
}

.breadcrumbs__separator {
  flex-shrink: 0;
}
/* ===== /BREADCRUMBS ===== */


/* ===== PAGINATION ===== */
.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: center;

  font-family: var(--font-montserrat), sans-serif;
  font-size: 14px;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--color-dark-green);
}

@media (max-width: 767.98px) {
  .pagination {
    gap: 10px;

    font-size: 12px;
  }
}

.pagination__edge {
  text-decoration: none;
  color: inherit;

  transition: color 0.2s ease, opacity 0.2s ease;
}

.pagination__edge:hover {
  color: var(--primary-color);
}

.pagination__edge--disabled {
  opacity: 0.3;
  pointer-events: none;
}

.pagination__list {
  display: flex;
  gap: 12px;
  align-items: center;

  margin: 0;
  padding: 0;

  list-style: none;
}

@media (max-width: 767.98px) {
  .pagination__list {
    gap: 10px;
  }
}

.pagination__item {
  display: flex;
  align-items: center;
}

.pagination__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 16px;
  padding: 0 2px;

  text-decoration: none;
  color: inherit;

  transition: color 0.2s ease;
}

.pagination__link:hover {
  color: var(--primary-color);
}

.pagination__link--current {
  color: var(--primary-color);
  pointer-events: none;
}

.pagination__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 12px;
  height: 12px;

  text-decoration: none;
  color: inherit;

  transition: opacity 0.2s ease;
}

.pagination__arrow:hover {
  opacity: 0.6;
}

.pagination__arrow--disabled {
  opacity: 0.3;
  pointer-events: none;
}
/* ===== /PAGINATION ===== */


/* ===== FORM ===== */
.form {

}

.form__fields {
  display: flex;
  flex-direction: column;
  gap: 12px;

  margin-bottom: 24px;
}

.form__row {

}

.form__label {
  position: relative;

  display: block;
}

.form__input {
  display: block;
  width: 100%;
  height: 48px;
  padding: 12px;

  background: none;
  border: 1px solid var(--color-dark-green);
  border-radius: 6px;

  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  color: var(--color-dark-green);

  transition: border-color 0.2s ease;
}

.form__input::placeholder {
  color: var(--color-dark-green);
}

.form__input:focus {
  border-color: var(--primary-color);
  outline: none;
}

.form__agree {
  display: flex;
  gap: 8px;
}

.form__checkbox-checkbox-input {
  position: absolute;

  overflow: hidden;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;

  border: 0;

  white-space: nowrap;

  clip-path: inset(100%);
  clip: rect(0 0 0 0);
}

.form__checkbox-checkbox-input:checked + .form__agree-checkbox-box::before {
  opacity: 1;
}

.form__agree-checkbox-box {
  position: relative;

  flex-shrink: 0;

  display: block;
  width: 20px;
  height: 20px;

  background: none;
  border: 1px solid var(--color-dark-green);
  border-radius: 4px;

  cursor: pointer;
}

.form__agree-checkbox-box::before {
  content: "";

  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  width: 14px;
  height: 14px;
  margin: auto;

  background-color: var(--primary-color);
  border-radius: 4px;
  opacity: 0;

  transition: opacity 0.2s ease;
}

.form__agree-text {
  margin: 0;

  font-size: 12px;
  line-height: 1.35;
}

.form__agree-link {
  text-decoration: none;
  color: var(--color-dark-green);

  transition: color 0.2s ease;
}

.form__agree-link:hover {
  color: var(--primary-color);
}

.form--sending .form__submit {
  pointer-events: none;
}

.form--sending .form__submit .button__text {
  opacity: 0;
}

.form--sending .form__submit::after {
  content: "";

  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  width: 22px;
  height: 22px;
  margin: auto;

  border: 2px solid var(--color-dark-green);
  border-right-color: transparent;
  border-radius: 50%;

  animation: form-spinner 0.8s linear infinite;
}

@keyframes form-spinner {
  to {
    transform: rotate(360deg);
  }
}

.form__response {
  display: none;

  font-size: 14px;
  line-height: 1.4;
}

.form__response--success {
  display: block;

  font-size: 16px;
  text-align: center;
  color: var(--color-green);
}

.form__response--error {
  display: block;

  margin-top: 12px;

  text-align: center;
  color: #c0392b;
}

.form--success .form__fields,
.form--success .form__submit {
  display: none;
}

.form__honeypot {
  position: absolute;
  left: -9999px;

  width: 0;
  height: 0;

  opacity: 0;
}
/* ===== /FORM ===== */


/* ===== TOAST ===== */
.toast-container {
  position: fixed;
  z-index: 1000;
  top: 24px;
  right: 24px;

  display: flex;
  flex-direction: column;
  gap: 8px;

  max-width: calc(100% - 48px);

  pointer-events: none;
}

@media (max-width: 767.98px) {
  .toast-container {
    top: 16px;
    right: 16px;

    max-width: calc(100% - 32px);
  }
}

.toast {
  display: flex;
  align-items: center;
  gap: 12px;

  padding: 12px 16px;

  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-dark-green);

  background-color: #ffffff;
  border: 1px solid #ece9e8;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(5, 35, 27, .12);
  opacity: 0;

  transform: translateX(110%);
  transition: transform .3s ease, opacity .3s ease;

  pointer-events: auto;
}

.toast.is-visible {
  opacity: 1;

  transform: translateX(0);
}

.toast__icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;

  width: 20px;
  height: 20px;

  color: var(--color-bronze);
}

.toast__text {
  display: inline-block;
}
/* ===== /TOAST ===== */


/* ===== SWIPE-LABEL ===== */
.swipe-label {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 48px;
  height: 48px;

  background-color: var(--color-white);
  border: none;
  border-radius: 6px;
}

.swipe-label::before {
  content: "";

  position: absolute;
  z-index: -1;
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;

  background: linear-gradient(to bottom, #ece9e8, #b9ac92);
  border-radius: 7px;
}

.swipe-label__icon {
  display: block;

  width: 24px;
  height: 24px;

  opacity: 0.5;
}
/* ===== /SWIPE-LABEL ===== */


/* ===== SLIDER-ARROWS ===== */
.slider-arrows {
  display: flex;
  gap: 12px;
  align-items: center;
}

@media (max-width: 1279.98px) {
  .slider-arrows {
    width: 100%;
  }
}

@media (max-width: 991.98px) {
  .slider-arrows {
    gap: 6px;
  }
}

.slider-arrows__swipe {
  margin-left: auto;
}

@media (min-width: 1280px) {
  .slider-arrows__swipe {
    display: none;
  }
}
/* ===== /SLIDER-ARROWS ===== */


/* ===== SLIDER-ARROW ===== */
.slider-arrow {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 48px;
  height: 48px;

  /*background: rgba(180, 125, 50, 0.05);*/
  background: linear-gradient(109deg, #B47D32 0%, #C79E65 100%);
  border: 1px solid rgba(180, 125, 50, 0.5);
  border-radius: 50px;

  cursor: pointer;

  backdrop-filter: blur(5px);
  transition: background-color 0.3s linear, border-color 0.3s linear;

  -webkit-tap-highlight-color: transparent;
}

.slider-arrow svg path {
  fill: #ffffff;
}

.slider-arrow--glass {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.slider-arrow--light {
  background:
      linear-gradient(rgb(255 255 255 / .9), rgb(255 255 255 / .9)) padding-box,
      linear-gradient(to bottom, #ece9e8, #b9ac92) border-box;
  border: 1px solid transparent;
  backdrop-filter: blur(15px);
}

.slider-arrow--light svg path {
  fill: #05231b;
}

/*.slider-arrow:hover {
  background: rgba(180, 125, 50, 0.15);
  border-color: rgba(180, 125, 50, 0.8);
}*/
/* ===== /SLIDER-ARROW ===== */


/* ===== SLIDER-EDGE ===== */
.slider-edge {
  position: relative;
}

.slider-edge > .slider-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;

  transform: translateY(-50%);
}

@media (max-width: 1279.98px) {
  .slider-edge > .slider-arrow {
    display: none;
  }
}

.slider-edge > .slider-arrow--prev {
  left: -24px;
}

.slider-edge > .slider-arrow--next {
  right: -24px;
}
/* ===== /SLIDER-EDGE ===== */


/* ===== SLIDER-FRAME ===== */
.slider-frame {
  position: relative;
}

.slider-frame > .slider-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;

  transform: translateY(-50%);
}

@media (min-width: 1280px) {
  .slider-frame > .slider-arrow {
    background:
        linear-gradient(rgb(255 255 255 / .9), rgb(255 255 255 / .9)) padding-box,
        linear-gradient(to bottom, #ece9e8, #b9ac92) border-box;
    border: 1px solid transparent;
    backdrop-filter: blur(15px);
  }

  .slider-frame > .slider-arrow svg path {
    fill: #05231b;
  }

  .slider-frame > .slider-arrow--prev {
    left: -24px;
  }

  .slider-frame > .slider-arrow--next {
    right: -24px;
  }
}

@media (max-width: 1279.98px) {
  .slider-frame > .slider-arrow {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.5);
  }

  .slider-frame > .slider-arrow--prev {
    left: 16px;
  }

  .slider-frame > .slider-arrow--next {
    right: 16px;
  }
}
/* ===== /SLIDER-FRAME ===== */


/* ===== FANCYBOX ===== */
.fancybox__backdrop {
  background: linear-gradient(to top, rgba(185, 172, 146, 0.5), rgba(236, 233, 232, 0.5) 50.481%, rgba(240, 232, 221, 0.5));

  backdrop-filter: blur(5px);
}

.fancybox--callback .fancybox__content {
  padding: 0;

  background: transparent;
  border-radius: 0;
  box-shadow: none;

  cursor: default;
}

.fancybox--callback .fancybox__slide {
  padding: 16px;

  cursor: default;
}
/* ===== /FANCYBOX ===== */


/* ===== MODAL-CALLBACK ===== */
.modal-callback {
  position: relative;

  display: flex;
  flex-direction: column;
  gap: 48px;

  box-sizing: border-box;
  width: 594px;
  max-width: 100%;
  padding: 48px;

  background-color: var(--color-white);
  border-radius: 12px;
}

@media (max-width: 767.98px) {
  .modal-callback {
    gap: 32px;

    padding: 56px 20px 24px;
    border-radius: 8px;
  }
}

.modal-callback__close {
  position: absolute;
  top: 24px;
  right: 24px;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 36px;
  height: 36px;
  padding: 0;

  background: transparent;
  border: none;

  cursor: pointer;

  transition: opacity 0.2s ease;

  -webkit-tap-highlight-color: transparent;
}

.modal-callback__close:hover {
  opacity: 0.6;
}

@media (max-width: 767.98px) {
  .modal-callback__close {
    top: 12px;
    right: 12px;

    width: 32px;
    height: 32px;
  }
}

.modal-callback__header {
  display: flex;
  flex-direction: column;
  gap: 24px;

  color: var(--color-dark-green);
}

@media (max-width: 767.98px) {
  .modal-callback__header {
    gap: 16px;
  }
}

.modal-callback__title {
  margin: 0;
}

.modal-callback__text {
  margin: 0;

  font-size: 16px;
  line-height: 1.4;
}

@media (max-width: 767.98px) {
  .modal-callback__text {
    font-size: 14px;
  }
}
/* ===== /MODAL-CALLBACK ===== */


/* ===== HEADER ===== */
.header a,
.header button,
.mobile-menu a,
.mobile-menu button {
  -webkit-tap-highlight-color: transparent;
}

.header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;

  display: flex;
  align-items: center;

  height: var(--header-height);

  background-color: var(--color-white);
  border-bottom: 1px solid rgba(180, 125, 50, 0.1);
}

.header__inner {
  position: relative;

  display: flex;
  align-items: center;
  gap: 32px;

  min-height: var(--header-height);
  padding: 16px 0;
}

@media (max-width: 1279.98px) {
  .header__inner {
    gap: 16px;
    padding: 12px 0;
  }
}

.header__logo {
  position: absolute;
  top: 50%;
  left: 50%;

  margin: 0;

  transform: translate(-50%, -50%);
}

@media (max-width: 1279.98px) {
  .header__logo {
    position: static;

    margin-right: auto;

    transform: none;
  }
}

@media (max-width: 1365.98px) {
  .header__logo .logo__image {
    max-width: 100px;
  }
}

.header__nav {
  margin-right: auto;
}

@media (max-width: 1279.98px) {
  .header__nav {
    display: none;
  }
}

.header-nav {
  display: flex;
  gap: 24px;
  align-items: center;

  margin: 0;
  padding: 0;

  list-style: none;
}

.header-nav__item {
  display: flex;
  align-items: center;
}

.header-nav__item--has-dropdown:hover .header-nav__arrow {
  transform: rotate(180deg);
}

.header-nav__item--has-dropdown:hover .header-nav__dropdown {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.header-nav__dropdown {
  position: absolute;
  z-index: 10;
  top: var(--header-height);
  right: 0;
  left: 0;

  padding: 24px;

  background-color: var(--color-white);
  border-top: 1px solid rgba(180, 125, 50, 0.1);
  border-bottom: 1px solid rgba(180, 125, 50, 0.1);
  box-shadow: 0 8px 24px rgb(5 35 27 / .08);
  visibility: hidden;
  opacity: 0;

  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  pointer-events: none;
}

.header-nav__dropdown::before {
  content: "";

  position: absolute;
  top: -54px;
  right: 0;
  left: 0;

  height: 56px;
}

.header-nav__sublist {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 12px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.header-nav__subitem {
  display: flex;
}

.header-nav__link {
  display: flex;
  gap: 4px;
  align-items: center;

  font-size: 14px;
  line-height: 1.1;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-dark-green);

  transition: color 0.2s ease;
}

.header-nav__link:hover {
  color: var(--color-bronze);
}

.header-nav__arrow {
  flex-shrink: 0;

  transition: transform 0.2s ease;
}

.header__contacts {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;

  color: var(--color-dark-green);
}

@media (max-width: 1279.98px) {
  .header__contacts {
    display: none;
  }
}

.header__hours {
  margin: 0;

  font-size: 10px;
  line-height: 1;
}

.header__phone {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  text-decoration: none;
  color: var(--color-dark-green);

  transition: color 0.2s ease;
}

.header__phone:hover {
  color: var(--color-bronze);
}

.header__actions {
  display: flex;
  gap: 18px;
  align-items: center;
}

@media (max-width: 1279.98px) {
  .header__actions {
    gap: 14px;
  }
}

.header-action {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 24px;
  height: 24px;
  padding: 0;

  color: var(--color-dark-green);

  background: none;
  border: none;

  cursor: pointer;
}

.header-action__badge {
  position: absolute;
  top: -4px;
  right: -6px;

  display: flex;
  align-items: center;
  justify-content: center;

  min-width: 14px;
  height: 14px;
  padding: 0 4px;

  font-size: 10px;
  line-height: 1;
  color: var(--color-white);

  background: linear-gradient(108.94deg, #005a41 0%, #408371 100%);
  border-radius: 7px;
}

.header__callback {
  height: 48px;
  padding: 12px 24px;
}

@media (max-width: 1279.98px) {
  .header__callback {
    display: none;
  }
}

.header__burger {
  display: none;
  align-items: center;
  justify-content: center;

  width: 44px;
  height: 44px;
  padding: 0;

  background: none;
  border: none;

  cursor: pointer;
}

@media (max-width: 1279.98px) {
  .header__burger {
    display: flex;
  }
}
/* ===== /HEADER ===== */


/* ===== CATALOG-CARD ===== */
.catalog-card {
  display: flex;
  flex-direction: column;
  gap: 12px;

  width: 100%;

  text-decoration: none;
  color: var(--color-dark-green);
}

.catalog-card__image {
  display: block;
  overflow: hidden;

  width: 100%;
  height: 200px;

  border-radius: 4px;
}

.catalog-card__image img {
  display: block;

  width: 100%;
  height: 100%;
  object-fit: cover;

  transition: transform 0.3s ease;
}

.catalog-card:hover .catalog-card__image img {
  transform: scale(1.04);
}

.catalog-card__title {
  font-size: 14px;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--color-dark-green);

  transition: color 0.2s ease;
}

.catalog-card:hover .catalog-card__title {
  color: var(--color-bronze);
}
/* ===== /CATALOG-CARD ===== */


/* ===== SEARCH-DRAWER ===== */
.search-drawer {
  position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  display: flex;
  align-items: center;

  background-color: var(--color-white);
  visibility: hidden;
  opacity: 0;

  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.search-drawer.is-open {
  visibility: visible;
  opacity: 1;
}

.search-drawer__inner {
  display: flex;
  gap: 24px;
  align-items: center;

  width: 100%;
  min-height: var(--header-height);
  padding: 16px 0;
}

@media (max-width: 1279.98px) {
  .search-drawer__inner {
    gap: 12px;
    padding: 12px 0;
  }
}

.search-drawer__head {
  display: flex;
  gap: 12px;
  align-items: center;

  flex-shrink: 0;
}

@media (max-width: 1279.98px) {
  .search-drawer__head {
    display: none;
  }
}

.search-drawer__icon {
  display: flex;
  flex-shrink: 0;

  color: var(--color-dark-green);
}

.search-drawer__title {
  margin: 0;

  font-size: 16px;
  line-height: 1.2;
  color: var(--color-dark-green);
}

.search-drawer__control {
  flex: 1;
  min-width: 0;
}

.search-drawer__form {
  display: block;
  margin: 0;
}

.search-drawer__label {
  position: relative;

  display: block;
}

.search-drawer__input {
  box-sizing: border-box;
  width: 100%;
  height: 48px;
  padding: 0 56px 0 16px;

  font-family: inherit;
  font-size: 16px;
  line-height: 1.4;
  color: var(--color-dark-green);

  background: none;
  border: 1px solid var(--color-dark-green);
  border-radius: 6px;

  transition: border-color 0.2s ease;

  -webkit-tap-highlight-color: transparent;
}

.search-drawer__input::placeholder {
  color: rgb(5 35 27 / .5);
}

.search-drawer__input:focus {
  border-color: var(--primary-color);
  outline: none;
}

@media (max-width: 767.98px) {
  .search-drawer__input {
    height: 40px;
    padding-right: 44px;

    font-size: 14px;
  }
}

.search-drawer__submit {
  position: absolute;
  top: 50%;
  right: 8px;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 36px;
  height: 36px;
  padding: 0;

  color: var(--color-dark-green);

  background: none;
  border: none;

  transform: translateY(-50%);

  cursor: pointer;
}

.search-drawer__submit:hover {
  color: var(--color-bronze);
}

.search-drawer__input.ui-autocomplete-loading {
  background: none;
}

.search-drawer__label:has(.ui-autocomplete-loading) .search-drawer__submit svg {
  visibility: hidden;
}

.search-drawer__label:has(.ui-autocomplete-loading) .search-drawer__submit::before {
  content: "";

  position: absolute;
  top: 50%;
  left: 50%;

  width: 20px;
  height: 20px;

  border: 2px solid rgb(5 35 27 / .15);
  border-top-color: var(--color-dark-green);
  border-radius: 50%;

  transform: translate(-50%, -50%);
  animation: search-drawer-spin 0.7s linear infinite;
}

@keyframes search-drawer-spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.search-drawer__close {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;

  width: 44px;
  height: 44px;
  padding: 0;

  color: var(--color-dark-green);

  background: none;
  border: none;

  cursor: pointer;

  transition: color 0.2s ease;
}

.search-drawer__close:hover {
  color: var(--color-bronze);
}

@media (max-width: 767.98px) {
  .search-drawer__close {
    width: 36px;
    height: 36px;
  }
}

.search-backdrop {
  position: fixed;
  z-index: 90;
  top: var(--header-height);
  right: 0;
  bottom: 0;
  left: 0;

  background-color: rgb(255 255 255 / .6);
  visibility: hidden;
  opacity: 0;

  transition: opacity 0.2s ease, visibility 0.2s ease;

  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

body.is-search-open .search-backdrop {
  visibility: visible;
  opacity: 1;
}

body.is-search-open {
  overflow: hidden;
}

.ui-autocomplete,
.ui-autocomplete.ui-widget.ui-widget-content {
  position: absolute;
  z-index: 300;

  overflow-y: auto;

  max-height: 70vh;
  margin: 0;
  padding: 8px 0;

  font-family: var(--font-montserrat), sans-serif;
  font-size: 14px;
  line-height: 1.4;
  color: var(--color-dark-green);

  list-style: none;
  background-color: var(--color-white);
  border: 1px solid var(--primary-color);
  border-radius: 6px;
  box-shadow: 0 12px 32px rgb(5 35 27 / .12);
}

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

.ui-autocomplete .ui-menu-item {
  margin: 0 !important;
  padding: 0 !important;

  list-style: none !important;
}

.ui-autocomplete .ui-menu-item-wrapper,
.ui-autocomplete .ui-menu-item-wrapper:hover,
.ui-autocomplete .ui-menu-item-wrapper.ui-state-active,
.ui-autocomplete .ui-menu-item-wrapper.ui-state-focus,
.ui-autocomplete .ui-state-hover,
.ui-autocomplete .ui-state-active,
.ui-autocomplete .ui-state-focus {
  display: block;
  margin: 0 !important;
  padding: 0 !important;

  font-weight: inherit !important;
  color: inherit !important;

  background: none !important;
  background-image: none !important;
  border: 0 !important;
  outline: none !important;
  box-shadow: none !important;

  cursor: pointer;
  transition: background-color 0.2s ease;
}

.ui-autocomplete .ui-menu-item-wrapper:hover,
.ui-autocomplete .ui-menu-item-wrapper.ui-state-active,
.ui-autocomplete .ui-menu-item-wrapper.ui-state-focus {
  background: rgb(180 125 50 / .08) !important;
}

.search-result {
  display: flex;
  gap: 16px;
  align-items: center;

  padding: 8px 16px;
}

.search-result__image {
  flex-shrink: 0;
  overflow: hidden;

  width: 56px;
  height: 72px;

  border-radius: 4px;
}

.search-result__image img {
  display: block;

  width: 100%;
  height: 100%;
  object-fit: cover;
}

.search-result__body {
  min-width: 0;
}

.search-result__title {
  margin: 0 0 4px;

  font-weight: 500;
  font-size: 14px;
  line-height: 1.3;
  color: var(--color-dark-green);
}

.search-result__description {
  margin: 0;

  font-size: 13px;
  line-height: 1.4;
  color: rgb(5 35 27 / .6);
}
/* ===== /SEARCH-DRAWER ===== */


/* ===== MOBILE-MENU ===== */
.mobile-menu {
  position: fixed;
  z-index: 200;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  overflow-y: auto;

  background-color: var(--color-white);
  visibility: hidden;
  opacity: 0;

  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
}

.mobile-menu__inner {
  display: flex;
  flex-direction: column;
  gap: 12px;

  padding: 16px 0;
}

.mobile-menu__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.mobile-menu__logo {
  max-width: 165px;
}

.mobile-menu__close {
  display: flex;
  gap: 6px;
  align-items: center;

  padding: 0;

  font-size: 14px;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--color-dark-green);

  background: none;
  border: none;
  opacity: 0.5;

  cursor: pointer;
}

.mobile-menu__section {
  display: flex;
  flex-direction: column;
}

.mobile-menu__group-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 100%;
  padding: 0;

  font-size: 14px;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--color-dark-green);

  background: none;
  border: none;

  cursor: pointer;
}


.mobile-menu__group-toggle svg {
  transition: transform 0.2s ease;
}

.mobile-menu__section.is-open .mobile-menu__group-toggle svg {
  transform: rotate(180deg);
}

.mobile-menu__catalog-wrap {
  overflow: hidden;

  max-height: 0;

  transition: max-height 0.3s ease;
}

.mobile-menu__catalog-inner {
  margin-top: 12px;
  padding: 12px 0;

  border-top: 1px solid rgb(5 35 27 / .1);
  border-bottom: 1px solid rgb(5 35 27 / .1);
}

.mobile-menu__catalog {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.mobile-menu__catalog a {
  display: block;

  font-size: 14px;
  line-height: 1.1;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-dark-green);
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 12px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.mobile-menu__nav a {
  font-size: 14px;
  line-height: 1.1;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-dark-green);
}

.mobile-menu__contacts {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mobile-menu__contacts a {
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--color-dark-green);
}

.mobile-menu__buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-menu__callback {
  width: 100%;
  height: 48px;

  font-size: 14px;
}

.mobile-menu__messengers {
  display: flex;
  gap: 12px;
}

.mobile-menu__messenger {
  display: flex;
  flex: 1 1 0;
  gap: 6px;
  align-items: center;
  justify-content: center;

  box-sizing: border-box;
  min-width: 0;
  height: 48px;
  padding: 0 24px;

  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  text-decoration: none;
  color: var(--color-dark-green);

  border: 1px solid #b9ac92;
  border-radius: 6px;
}

.mobile-menu__messenger img {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.mobile-menu__address {
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--color-dark-green);
}

.mobile-menu__address p {
  margin: 0 0 12px;
}

.mobile-menu__address p:last-child {
  margin-bottom: 0;
}

@media (min-width: 1280px) {
  .mobile-menu {
    display: none;
  }
}

body.is-menu-open {
  overflow: hidden;
}
/* ===== /MOBILE-MENU ===== */


/* ===== CART-DRAWER ===== */
.cart-drawer {
  position: fixed;
  z-index: 200;
  top: 0;
  right: 0;
  bottom: 0;

  display: flex;
  flex-direction: column;

  width: 556px;
  max-width: 100%;

  background-color: var(--color-white);
  visibility: hidden;

  transform: translateX(100%);
  transition: transform 0.3s ease, visibility 0.3s ease;
}

@media (max-width: 991.98px) {
  .cart-drawer {
    width: 480px;
  }
}

@media (max-width: 767.98px) {
  .cart-drawer {
    width: 100%;
  }
}

.cart-drawer.is-open {
  visibility: visible;

  transform: translateX(0);
}

.cart-drawer__inner {
  display: flex;
  flex-direction: column;

  width: 100%;
  height: 100%;
  padding: 48px;
}

@media (max-width: 1279.98px) {
  .cart-drawer__inner {
    padding: 32px;
  }
}

@media (max-width: 767.98px) {
  .cart-drawer__inner {
    padding: 20px;
  }
}

.cart-drawer__close {
  align-self: flex-end;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 36px;
  height: 36px;
  padding: 0;

  color: var(--color-dark-green);

  background: none;
  border: none;

  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.cart-drawer__head {
  flex-shrink: 0;

  padding-top: 24px;
  padding-bottom: 24px;

  border-bottom: 1px solid rgb(5 35 27 / .1);
}

.cart-drawer__title {
  margin: 0;

  font-weight: 400;
  font-size: 30px;
  line-height: 1.1;
  color: var(--color-dark-green);
}

@media (max-width: 767.98px) {
  .cart-drawer__title {
    font-size: 24px;
  }
}

.cart-drawer__body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;

  padding-top: 24px;
  padding-right: 4px;
  padding-bottom: 24px;
  margin-right: -4px;
}

.cart-drawer__list {
  display: flex;
  flex-direction: column;
  gap: 12px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.cart-drawer__item {
  display: flex;
  gap: 12px;
  align-items: center;

  overflow: hidden;

  padding-right: 12px;

  background-color: var(--color-light-bronze);
  border-radius: 12px;
}

.cart-drawer__media {
  flex-shrink: 0;

  display: block;
  overflow: hidden;

  width: 100px;
  height: 140px;

  background-color: #d9d9d9;
  border-radius: 12px 0 0 12px;
}

.cart-drawer__media img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
}

.cart-drawer__content {
  display: flex;
  flex-direction: column;
  gap: 12px;

  flex: 1;
  min-width: 0;
  padding: 12px 0;
}

.cart-drawer__name {
  display: -webkit-box;
  overflow: hidden;

  margin: 0;

  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  text-decoration: none;
  color: var(--color-dark-green);

  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;

  transition: color 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .cart-drawer__name:hover {
    color: var(--color-bronze);
  }
}

.cart-drawer__row {
  display: flex;
  gap: 12px;
  align-items: center;

  padding-top: 12px;

  border-top: 1px solid rgb(5 35 27 / .1);
}

.cart-drawer__pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  flex: 1;
  min-width: 0;
  height: 48px;
  padding: 10px 12px;

  font-size: 16px;
  line-height: 1.4;
  text-decoration: none;
  white-space: nowrap;
  color: var(--color-dark-green);

  background-color: transparent;
  border: 1px solid #b9ac92;
  border-radius: 6px;

  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
}

@media (max-width: 767.98px) {
  .cart-drawer__pill {
    font-size: 14px;
  }
}

.cart-drawer__more-icon {
  display: none;
  flex-shrink: 0;
}

@media (max-width: 767.98px) {
  .cart-drawer__more {
    display: none;
  }

  .cart-drawer__more-icon {
    display: block;
  }
}

.cart-drawer__price {
  font-weight: 500;
}

.cart-drawer__more {
  font-weight: 400;
}

.cart-drawer__remove-form {
  flex-shrink: 0;

  margin: 0;
}

.cart-drawer__remove {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 48px;
  height: 48px;
  padding: 0;

  background: linear-gradient(108.94deg, #b47d32 0%, #c79e65 100%);
  border: 1px solid rgb(255 255 255 / .5);
  border-radius: 6px;

  cursor: pointer;
  transition: opacity 0.2s ease;

  -webkit-tap-highlight-color: transparent;
}

.cart-drawer__remove:hover {
  opacity: 0.85;
}

.cart-drawer__empty {
  margin: 0;
  padding: 32px 0;

  font-size: 16px;
  line-height: 1.4;
  text-align: center;
  color: rgb(5 35 27 / .6);
}

.cart-drawer__footer {
  flex-shrink: 0;

  padding-top: 16px;

  border-top: 1px solid rgb(5 35 27 / .1);
}

.cart-drawer__cta {
  width: 100%;
}

.cart-backdrop {
  position: fixed;
  z-index: 190;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  background-color: rgb(5 35 27 / .3);
  visibility: hidden;
  opacity: 0;

  transition: opacity 0.3s ease, visibility 0.3s ease;
}

body.is-cart-open .cart-backdrop {
  visibility: visible;
  opacity: 1;
}

body.is-cart-open {
  overflow: hidden;
}
/* ===== /CART-DRAWER ===== */


/* ===== FOOTER ===== */
.footer {
  position: relative;
  background-color: var(--color-light-bronze);
  padding-top: 62px;
  padding-bottom: 24px;
}

.footer__top {
  display: flex;
  align-items: flex-end;
  gap: 6px;

  margin-bottom: 48px;
}

.footer__logo-line {
  display: block;
  width: 100%;
  height: 1px;
  margin-bottom: 22px;

  background-color: var(--primary-color);
  opacity: 0.3;
}

.footer__nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 12px;

  margin-bottom: 48px;
}

@media (max-width: 991.98px) {
  .footer__nav {
    grid-template-columns: 1fr;
    gap: 48px 24px;
  }
}

@media (max-width: 767.98px) {
  .footer__nav {
    gap: 24px;
  }
}

.footer__nav-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (max-width: 991.98px) {
  .footer__nav-columns--to-one-column {
    grid-template-columns: 1fr;
  }
}

.footer__nav-title {
  margin: 0 0 12px;

  font-weight: 600;
  font-size: 14px;
  line-height: 1.1;
  text-transform: uppercase;
}

@media (max-width: 479.98px) {
  .footer__nav-title--sm-max-w {
    max-width: 140px;
  }
}

.footer__menu {
  display: flex;
  flex-direction: column;
  gap: 12px;

  margin: 0;
  padding: 0;

  list-style: none;
}

@media (max-width: 767.98px) {
  .footer__menu {
    gap: 6px;
  }
}

.footer__menu-item {
  margin: 0;
  padding: 0;
}

.footer__menu-link {
  font-size: 16px;
  line-height: 1.4;
  text-decoration: none;
  color: var(--text-color);

  transition: color 0.2s linear;
}

.footer__menu-link:hover {
  color: var(--primary-color);
}

@media (max-width: 767.98px) {
  .footer__menu-link {
    font-size: 14px;
  }
}

.footer__tags {
  display: flex;
  align-items: center;
  gap: 12px;

  margin-bottom: 48px;
}

@media (max-width: 1279.98px) {
  .footer__tags {
    flex-wrap: wrap;
    gap: 6px;
  }
}

.footer__tag {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;

  height: 48px;
  padding: 4px 16px;
  background-color: var(--color-white);
  border-radius: 4px;

  font-size: 14px;
  line-height: 1.4;
  text-decoration: none;
  color: var(--text-color);

  transition: 0.2s ease;
}

@media (max-width: 1279.98px) {
  .footer__tag {
    width: calc(50% - 6px);
    flex-grow: 0;
  }
}

@media (max-width: 1279.98px) {
  .footer__tag:nth-child(7) {
    order: 9;

    width: 100%;
  }
}

.footer__tag:hover {
  color: var(--color-white);

  background-color: var(--primary-color);
}

.footer__contacts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px 24px;
}

@media (max-width: 1279.98px) {
  .footer__contacts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }
}

@media (max-width: 991.98px) {
  .footer__contacts {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767.98px) {
  .footer__contacts {
    grid-template-columns: 1fr;
  }
}

.footer__contacts-column:has(.footer__scroll-up) {
  text-align: right;
}

@media (max-width: 1279.98px) {
  .footer__contacts-column:last-child {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .footer__contacts-column:nth-child(1) {
    order: 5;
  }
}

@media (max-width: 767.98px) {
  .footer__contacts-column:nth-child(2) {
    order: 1;
  }
}

@media (max-width: 767.98px) {
  .footer__contacts-column:nth-child(3) {
    order: 3;
  }
}

@media (max-width: 767.98px) {
  .footer__contacts-column:nth-child(4) {
    order: 4;
  }
}

@media (max-width: 1279.98px) {
  .footer__contacts-column:nth-child(5) {
    order: 8;
  }
}

@media (max-width: 767.98px) {
  .footer__contacts-column:nth-child(6) {
    order: 2;
  }
}

@media (max-width: 767.98px) {
  .footer__contacts-column:nth-child(7) {
    order: 0;
  }
}

.footer__yandex-rating {
  display: block;
  width: max-content;
}

.footer__yandex-rating-image {
  display: block;
  max-width: 100%;
  height: 60px;
}

.footer__contacts-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer__contact {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.4;
  text-decoration: none;
  color: var(--text-color);

  transition: color 0.2s linear;
}

@media (max-width: 767.98px) {
  .footer__contact {
    font-weight: 400;
    font-size: 18px;
  }
}

.footer__contact:hover {
  color: var(--primary-color);
}

.footer__socials {
  display: flex;
  gap: 8px;

  margin: 0 0 0 auto;
  padding: 0;

  list-style: none;
}

.footer__socials-item {
  margin: 0;
  padding: 0;
}

.footer__socials-link {
  display: flex;
  justify-content: center;
  align-items: center;

  width: 60px;
  height: 60px;

  background-color: var(--color-white);
  border-radius: 4px;
}

.footer__socials-link:hover .footer__socials-icon {
  transform: scale(1.2);
}

.footer__socials-icon {
  display: block;
  width: 24px;
  height: 24px;

  object-position: center;
  object-fit: contain;

  transition: 0.24s ease;
}

.footer__copyright {
  margin: 0;
}

.footer__link {
  text-decoration: none;
  color: var(--text-color);

  transition: color 0.2s linear;
}

.footer__link:hover {
  color: var(--primary-color);
}

.footer__legal {
  margin: 0;
}

.footer__address {
  font-style: normal;
}

.footer__address .footer__link {
  text-decoration: underline;
  text-decoration-skip-ink: none;
}
/* ===== /FOOTER ===== */


/* ===== MAIN-BANNER ===== */
.main-banner {
  position: relative;

  display: flex;
  align-items: center;

  height: 372px;

  background: url("../images/new-design/main-banner.webp") left bottom no-repeat;
  background-size: cover;
}

@media (max-width: 1279.98px) {
  .main-banner {
    height: 312px;
  }
}

@media (max-width: 991.98px) {
  .main-banner {
    height: 265px;

    background-position: center bottom;
  }
}

@media (max-width: 767.98px) {
  .main-banner {
    background-image: url("../images/new-design/main-banner-mobile.webp");
    background-position: center;
  }
}

.main-banner__title {
  max-width: 400px;
  margin: 0;


  font-size: 34px;
  color: var(--color-white);
}

@media (max-width: 1279.98px) {
  .main-banner__title {
    max-width: 320px;

    font-size: 28px;
  }
}

@media (max-width: 991.98px) {
  .main-banner__title {
    max-width: 240px;

    font-size: 20px;
  }
}

@media (max-width: 767.98px) {
  .main-banner__title {
    max-width: 140px;

    font-size: 18px;
  }
}

@media (max-width: 409.98px) {
  .main-banner__title {
    max-width: 110px;

    font-size: 15px;
  }
}

.main-banner__avatar {
  position: absolute;
  top: 20px;
  right: 20px;

  width: 100px;
  height: 100px;

  border-radius: 50%;
}

@media (max-width: 991.98px) {
  .main-banner__avatar {
    top: 16px;
    right: 16px;

    width: 80px;
    height: 80px;
  }
}

@media (max-width: 767.98px) {
  .main-banner__avatar {
    top: 12px;
    right: 12px;

    width: 64px;
    height: 64px;
  }
}

@media (max-width: 479.98px) {
  .main-banner__avatar {
    width: 56px;
    height: 56px;
  }
}
/* ===== /MAIN-BANNER ===== */


/* ===== HERO ===== */
.hero {
  position: relative;

  overflow: hidden;

  margin-bottom: 120px;
}

@media (max-width: 767.98px) {
  .hero {
    padding-bottom: 40px;
  }
}

.hero__bg {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  left: 0;

  height: 520px;

  background: url("../images/new-design/hero-bg-3.webp") center top no-repeat;
  background-size: cover;
}

.hero__inner {
  position: relative;
  z-index: 1;
}

.hero__heading {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 48px;

  text-align: center;
  color: #ffffff;
}

@media (max-width: 767.98px) {
  .hero__heading {
    padding-top: 32px;
  }
}

.hero__title {
  margin: 0;

  font-family: var(--font-montserrat), sans-serif;
  font-weight: 400;
  font-size: 55px;
  line-height: 1.1;
  letter-spacing: -1.1px;
}

@media (max-width: 1279.98px) {
  .hero__title {
    font-size: 42px;
    letter-spacing: -.8px;
  }
}

@media (max-width: 991.98px) {
  .hero__title {
    font-size: 34px;
  }
}

@media (max-width: 767.98px) {
  .hero__title {
    font-size: 26px;
    letter-spacing: -.5px;
  }
}

.hero__subtitle {
  margin: 24px 0 0;

  font-size: 16px;
  line-height: 1.4;
}

@media (max-width: 767.98px) {
  .hero__subtitle {
    margin-top: 16px;
    font-size: 14px;
  }
}
/* ===== /HERO ===== */


/* ===== HERO-SLIDER-WRAP ===== */
.hero-slider-wrap {
  position: relative;
  z-index: 1;

  width: 100%;
  height: 394px; /* COVERFLOW (старый вариант): 490px */
  margin-top: 48px;
}

@media (max-width: 1279.98px) {
  .hero-slider-wrap {
    height: 323px; /* COVERFLOW (старый вариант): 402px */
  }
}

@media (max-width: 991.98px) {
  .hero-slider-wrap {
    height: 394px;
  }
}

@media (max-width: 767.98px) {
  .hero-slider-wrap {
    height: 304px;
    margin-top: 32px;
  }
}
/* ===== /HERO-SLIDER-WRAP ===== */


/* ===== HERO-SLIDER ===== */
.hero-slider {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;
  overflow: visible;
}

.hero-slider .swiper-wrapper {
  align-items: center;

  height: 100%;
}
/* ===== /HERO-SLIDER ===== */


/* ===== HERO-SLIDE ===== */
.hero-slide {
  position: relative;
  z-index: 1;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 291px;
  height: 100%;
}

@media (max-width: 1279.98px) {
  .hero-slide {
    width: 238px;
  }
}

@media (max-width: 991.98px) {
  .hero-slide {
    width: 291px;
  }
}

@media (max-width: 767.98px) {
  .hero-slide {
    width: 225px;
  }
}

.hero-slide.is-center {
  z-index: 3;
}

.hero-slide.is-near {
  z-index: 2;
}
/* ===== /HERO-SLIDE ===== */


/* ===== HERO-CARD ===== */
.hero-card {
  position: relative;

  display: block;

  width: 291px;
  height: 394px;

  text-decoration: none;
  color: inherit;

  /* COVERFLOW (старый вариант): увеличение центральной карточки через JS-переменные
  transform: scale(var(--hero-card-scale-x, 1), var(--hero-card-scale-y, 1));

  transition: transform 0.35s ease;
  */
}

@media (max-width: 1279.98px) {
  .hero-card {
    width: 238px;
    height: 323px;
  }
}

@media (max-width: 991.98px) {
  .hero-card {
    width: 291px;
    height: 394px;
    /* COVERFLOW (старый вариант): transform: none; — отключал увеличение на мобильных */
  }
}

@media (max-width: 767.98px) {
  .hero-card {
    width: 225px;
    height: 304px;
  }
}

.hero-card__image {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;

  border-radius: 12px;
}

.hero-card__label {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  height: 48px;
  padding: 10px 24px;

  font-size: 14px;
  line-height: 1.1;
  text-transform: uppercase;
  color: #05231b;

  background: rgb(255 255 255 / .6);
  border: 1px solid rgb(255 255 255 / .5);
  border-radius: 6px;
  backdrop-filter: blur(15px);
}

@media (max-width: 767.98px) {
  .hero-card__label {
    height: 40px;
    padding: 8px 16px;

    font-size: 12px;
  }
}

.hero-card__label-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-card__label-arrow {
  flex-shrink: 0;
}
/* ===== /HERO-CARD ===== */


/* ===== HERO-SLIDER-NAV ===== */
.hero-slider-nav {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;

  display: flex;
  justify-content: space-between;

  width: calc(291px + 48px * 2 + 24px); /* COVERFLOW (старый вариант): calc(392px + 48px * 2 + 24px) */
  pointer-events: none;

  transform: translate(-50%, -50%);
}

@media (max-width: 991.98px) {
  .hero-slider-nav {
    width: calc(100% - 32px);
  }
}

.hero-slider-nav .slider-arrow {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 48px;
  height: 48px;
  padding: 0;

  background: rgb(255 255 255 / .6);
  border: 1px solid rgb(255 255 255 / .5);
  border-radius: 50%;
  backdrop-filter: blur(15px);

  cursor: pointer;
  pointer-events: auto;
}

.hero-slider-nav .slider-arrow svg path {
  fill: #05231b;
}
/* ===== /HERO-SLIDER-NAV ===== */


/* ===== FASONS ===== */
.fasons {
  margin: 0;
  padding: 0;

  list-style: none;
}

.fasons.swiper {
  overflow: hidden;
}

.fasons__wrapper {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px 12px;
}

@media (max-width: 1279.98px) {
  .fasons__wrapper {
    display: flex;
    grid-template-columns: none;
    gap: 0;
  }
}

.fasons .fasons__item.swiper-slide {
}

@media (max-width: 1279.98px) {
  .fasons .fasons__item.swiper-slide {
    height: auto;
  }
}

.fasons__card {
  position: relative;

  display: block;

  overflow: hidden;
  border-radius: 12px;

  text-decoration: none;
}

.fasons__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 392 / 490;

  object-fit: cover;
  object-position: center;
  transform: scale(1);
  transition: transform .45s ease;
}

@media (hover: hover) and (pointer: fine) {
  .fasons__card:hover .fasons__img,
  .fasons__card:focus-visible .fasons__img {
    transform: scale(1.06);
  }
}

@media (prefers-reduced-motion: reduce) {
  .fasons__img {
    transition: none;
  }
}

.fasons__label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 10px 24px;

  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 6px;
  backdrop-filter: blur(15px);
}

@media (max-width: 767.98px) {
  .fasons__label {
    padding: 8px 12px;
  }
}

.fasons__label-text {
  font-family: var(--font-montserrat);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.1;
  text-transform: uppercase;
  color: #05231b;
}

@media (max-width: 767.98px) {
  .fasons__label-text {
    font-size: 12px;
  }
}

.fasons__label-arrow {
  flex-shrink: 0;
}
/* ===== /FASONS ===== */


/* ===== FASONS-SLIDER ===== */
.fasons-slider {
  position: relative;
}

.fasons-slider .slider-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;

  transform: translateY(-50%);
}

@media (min-width: 1280px) {
  .fasons-slider .slider-arrow {
    display: none;
  }
}

.fasons-slider .slider-arrow--prev {
  left: 16px;
}

.fasons-slider .slider-arrow--next {
  right: 16px;
}
/* ===== /FASONS-SLIDER ===== */


/* ===== CATALOG ===== */
.catalog {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 100%;
}

@media (max-width: 1279.98px) {
  .catalog {
    gap: 32px;
  }
}

@media (max-width: 767.98px) {
  .catalog {
    gap: 24px;
  }
}

.catalog__slider {
  width: 100%;
  overflow: hidden;
}

.catalog__wrapper {
  display: flex;
  align-items: stretch;
}

.catalog__item {
  height: auto;
}

.catalog__footer {
  display: flex;
  justify-content: flex-start;
}

.catalog__all-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 24px;

  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  color: var(--color-dark-green);

  background: linear-gradient(0deg, rgb(185, 172, 146) 0%, rgba(236, 233, 232, .95) 50%, rgb(240, 232, 221) 100%);
  border: none;
  border-radius: 6px;

  transition: opacity .2s ease, transform .2s ease;

  cursor: pointer;
}

.catalog__all-btn:hover {
  opacity: .9;
  transform: translateY(-1px);
}

@media (max-width: 767.98px) {
  .catalog__all-btn {
    width: 100%;
  }
}
/* ===== /CATALOG ===== */


/* ===== PRODUCT-CARD ===== */
.product-card {
  position: relative;

  display: flex;
  flex-direction: column;

  width: 100%;
  height: 100%;
  overflow: hidden;

  background-color: #f9f9f9;
  border-radius: 12px;
}

.product-card__media {
  position: relative;

  display: block;

  width: 100%;
  aspect-ratio: 2000 / 2824;
  overflow: hidden;

  text-decoration: none;

  background-color: #eeeeee;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

@media (max-width: 1199.98px) and (hover: none) {
  .product-card__media {
    touch-action: pan-y;
  }
}

.product-card__track {
  display: contents;
}

@media (max-width: 1199.98px) and (hover: none) {
  .product-card__track {
    display: flex;

    height: 100%;

    transition: transform .3s ease;
  }
}

.product-card__shot {
  position: absolute;
  inset: 0;

  display: block;

  opacity: 0;

  transition: opacity .35s ease;
}

@media (max-width: 1199.98px) and (hover: none) {
  .product-card__shot {
    position: relative;
    inset: auto;

    flex: 0 0 100%;

    height: 100%;

    opacity: 1;

    transition: none;
  }
}

.product-card__shot.is-active {
  opacity: 1;

  z-index: 1;
}

.product-card__img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
}

.product-card__dots {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 2;

  display: flex;
  gap: 4px;

  margin: 0;
  padding: 0;

  list-style: none;

  pointer-events: none;

  opacity: 0;

  transition: opacity .25s ease;
}

@media (max-width: 1279.98px) {
  .product-card__dots {
    display: none;
  }
}

@media (max-width: 1199.98px) and (hover: none) {
  .product-card__dots {
    display: flex;

    opacity: 1;
  }

  .swiper .product-card__dots {
    display: none;
  }
}

.product-card:hover .product-card__dots {
  opacity: 1;
}

@media (hover: none) {
  .product-card__dots {
    opacity: 1;
  }
}

.product-card__dot {
  flex: 1 1 0;

  height: 2px;

  background-color: rgba(255, 255, 255, .5);
  border-radius: 1px;

  transition: background-color .2s ease;
}

.product-card__dot.is-active {
  background-color: #ffffff;
}

.product-card__label {
  position: absolute;
  z-index: 3;
  top: 12px;
  left: 12px;

  display: inline-flex;
  align-items: center;
  gap: 6px;

  height: 42px;
  padding: 8px 12px;

  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--color-white);

  background-color: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 50px;

  backdrop-filter: blur(5px);
}

.product-card__label-icon {
  flex-shrink: 0;

  width: 9px;
  height: 12px;

  color: var(--color-white);
}

.product-card__body {
  display: flex;
  flex: 1 0 auto;
  flex-direction: column;
  gap: 12px;

  padding: 12px;

  background-color: #f9f9f9;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.product-card__info {
  display: flex;
  flex: 1 0 auto;
  flex-direction: column;
  gap: 6px;
}

.product-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.product-card__price {
  margin: 0;

  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-dark-green);
}

.product-card__price-old {
  font-size: 16px;
  text-decoration: line-through;

  opacity: .5;
}

.product-card__art {
  margin: 0;
  padding-top: 5px;

  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.35;
  color: var(--color-dark-green);

  opacity: .5;
}

.product-card__description {
  display: block;

  margin: 0;

  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  text-decoration: none;
  color: var(--color-dark-green);

  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;

  transition: color 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .product-card__description:hover {
    color: var(--color-bronze);
  }
}

.product-card__actions {
  display: flex;
  align-items: stretch;
  gap: 6px;
}

.product-card__btn {
  display: inline-flex;
  flex: 1 0 0;
  align-items: center;
  justify-content: center;

  height: 48px;
  padding: 0 24px;

  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  color: var(--color-dark-green);

  background:
      linear-gradient(#f9f9f9, #f9f9f9) padding-box,
      linear-gradient(to bottom, #ece9e8, #b9ac92) border-box;
  border: 1px solid transparent;
  border-radius: 6px;

  cursor: pointer;
}

@media (max-width: 767.98px) {
  .product-card__btn {
    padding: 0 16px;

    font-size: 14px;
  }
}

.product-card__btn--cart.is-in-cart {
  color: var(--color-bronze);
}

.product-card__btn--cart.is-in-cart .product-card__btn-text::before {
  content: "";

  display: inline-block;

  width: 14px;
  height: 14px;
  margin-right: 8px;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M2 7l3.5 3.5L12 4' stroke='%23b27c2d' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;

  vertical-align: -2px;
}

.product-card__icon-btn {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;

  width: 48px;
  height: 48px;
  padding: 10px;

  background:
      linear-gradient(#f9f9f9, #f9f9f9) padding-box,
      linear-gradient(to bottom, #ece9e8, #b9ac92) border-box;
  border: 1px solid transparent;
  border-radius: 6px;

  cursor: pointer;
}

.product-card__icon-btn svg {
  display: block;

  width: 24px;
  height: 24px;
}

.product-card__icon-btn--fav {
  color: var(--color-dark-green);

  transition: color .2s ease;
}

.product-card__icon-btn--fav[aria-pressed="true"] {
  color: var(--color-bronze);
}

.product-card__icon-btn--fav[aria-pressed="true"] svg path {
  fill: currentColor;
  stroke: currentColor;
}

.product-card__share {
  position: relative;
}

.product-card__share-popover {
  position: absolute;
  z-index: 10;
  right: 0;
  bottom: calc(100% + 8px);

  display: flex;
  flex-direction: column;
  gap: 2px;

  min-width: 200px;
  padding: 8px;

  background-color: #ffffff;
  border: 1px solid #ece9e8;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(5, 35, 27, .12);
}

.product-card__share-popover[hidden] {
  display: none;
}

.product-card__share-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 8px 10px;

  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  text-align: left;
  text-decoration: none;
  color: var(--color-dark-green);

  background-color: transparent;
  border: none;
  border-radius: 6px;

  cursor: pointer;

  transition: background-color .15s ease;
}

.product-card__share-link:hover {
  background-color: rgba(178, 124, 45, .08);
}

.product-card__share-icon {
  display: block;
  flex-shrink: 0;

  width: 20px;
  height: 20px;
}

.product-card__share-text {
  display: inline-block;
}
/* ===== /PRODUCT-CARD ===== */


/* ===== ACTION-BANNER ===== */
.action-banner {
  display: flex;
  align-items: flex-end;

  width: 100%;
  min-height: 724px;
  padding: 0 0 48px;

  background: #f9f9f9 url("../images/new-design/banner-action.webp") center no-repeat;
  background-size: cover;
}

.action-banner--about {
  background-image: url("../images/new-design/about-cta-bg.webp");
}

@media (max-width: 767.98px) {
  .action-banner--about {
    margin-bottom: 48px;
  }
}

@media (max-width: 991.98px) {
  .action-banner {
    min-height: 620px;
  }
}

@media (max-width: 767.98px) {
  .action-banner {
    min-height: auto;
    padding: 0;

    background: none;
  }
}

.action-banner__block {
  width: 100%;
  padding: 48px;

  border-radius: 12px;
  background: linear-gradient(0deg, #b9ac92 0%, #ece9e8 50.48%, #f0e8dd 100%);
}

@media (max-width: 767.98px) {
  .action-banner__block {
    padding: 48px 12px 60px;
  }
}

.action-banner__title {
  margin: 0 0 24px;

  text-align: center;
}

@media (max-width: 767.98px) {
  .action-banner__title {
    margin-bottom: 12px;
  }
}

.action-banner__text {
  margin: 0 0 48px;

  text-align: center;
}

@media (max-width: 767.98px) {
  .action-banner__text {
    margin-bottom: 24px;
  }
}

.action-banner__buttons {
  display: flex;
  justify-content: center;
  align-content: center;
  gap: 12px 24px;
}

@media (max-width: 767.98px) {
  .action-banner__buttons {
    flex-direction: column-reverse;
  }
}
/* ===== /ACTION-BANNER ===== */


/* ===== BRIDES-SLIDER-WRAP ===== */
.brides-slider-wrap {
  margin-top: 32px;
}

@media (max-width: 767.98px) {
  .brides-slider-wrap {
    margin-top: 24px;
  }
}
/* ===== /BRIDES-SLIDER-WRAP ===== */


/* ===== BRIDES-SLIDER ===== */
.brides-slider {
  width: 100%;
  overflow: hidden;
}

.brides-slider .swiper-slide {
  height: auto;
}
/* ===== /BRIDES-SLIDER ===== */


/* ===== BRIDES-SLIDE ===== */
.brides-slide {
  position: relative;

  aspect-ratio: 222 / 296;

  overflow: hidden;
  border-radius: 12px;
}

.brides-slide__media {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* ===== /BRIDES-SLIDE ===== */


/* ===== ACTIONS-SLIDER-WRAP ===== */
.actions-slider-wrap {
  margin-top: 32px;
}

@media (max-width: 991.98px) {
  .actions-slider-wrap {
    margin-top: 24px;
  }
}
/* ===== /ACTIONS-SLIDER-WRAP ===== */


/* ===== ACTIONS-SLIDER ===== */
.actions-slider {
  width: 100%;
  overflow: hidden;
}

.actions-slider .swiper-slide {
  height: auto;
}
/* ===== /ACTIONS-SLIDER ===== */


/* ===== ACTION-CARD ===== */
.action-card {
  position: relative;

  display: flex;
  flex-direction: column;

  height: 100%;
}

@media (max-width: 991.98px) {
  .action-card {
    gap: 24px;

    padding: 12px;

    background: linear-gradient(to top, #b9ac92, #ece9e8 50.481%, #f0e8dd);
    border-radius: 12px;
  }
}

.action-card__media {
  position: relative;

  flex: 1 1 auto;

  aspect-ratio: 594 / 550;

  overflow: hidden;
  border-radius: 12px;
}

@media (max-width: 991.98px) {
  .action-card__media {
    flex: 0 0 auto;

    aspect-ratio: 319 / 250;

    border-radius: 8px;
  }
}

.action-card--wide .action-card__media {
  aspect-ratio: 1200 / 650;
}

@media (max-width: 991.98px) {
  .action-card--wide .action-card__media {
    aspect-ratio: 319 / 250;
  }
}

.action-card__image {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.action-card__label {
  position: absolute;
  top: 24px;
  left: 24px;

  display: inline-flex;
  align-items: center;
  gap: 6px;

  height: 48px;
  padding: 10px 16px;

  font-size: 14px;
  line-height: 1.1;
  text-transform: uppercase;
  color: #ffffff;

  background: rgb(255 255 255 / .15);
  border: 1px solid rgb(255 255 255 / .5);
  border-radius: 50px;
  backdrop-filter: blur(5px);
}

@media (max-width: 991.98px) {
  .action-card__label {
    top: 18px;
    left: 18px;
  }
}

.action-card__body {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;

  display: flex;
  flex-direction: column;
  gap: 24px;

  padding: 24px;

  background: linear-gradient(to top, #b9ac92, #ece9e8 50.481%, #f0e8dd);
  border-radius: 8px;
}

@media (max-width: 991.98px) {
  .action-card__body {
    position: static;

    padding: 0;

    background: none;
    border-radius: 0;
  }
}

.action-card__title {
  margin: 0;

  font-size: 24px;
  font-weight: 400;
  line-height: 1.1;
  text-align: center;
  color: #05231b;
}

@media (max-width: 991.98px) {
  .action-card__title {
    font-size: 20px;
  }
}

.action-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;

  height: 48px;
  padding: 12px 24px;

  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  color: #05231b;

  background: #ffffff;
  border-radius: 8px;

  transition: opacity 0.32s ease;
}

.action-card__btn:hover {
  opacity: 0.85;
}
/* ===== /ACTION-CARD ===== */


/* ===== ACTIONS-SLIDER-FOOTER ===== */
.actions-slider__footer {
  margin-top: 24px;
}

.actions-slider__footer .button {
  display: inline-flex;
  width: auto;
  padding: 12px 24px;
}

@media (max-width: 991.98px) {
  .actions-slider__footer .button {
    display: flex;
    width: 100%;
  }
}
/* ===== /ACTIONS-SLIDER-FOOTER ===== */


/* ===== ACTIONS ===== */
.actions .page-title {
  margin-bottom: 48px;
}

@media (max-width: 991.98px) {
  .actions .page-title {
    margin-bottom: 24px;
  }
}

.actions__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;

  margin: 0 0 48px;
  padding: 0;

  list-style: none;
}

@media (max-width: 1279.98px) {
  .actions__items {
    margin-bottom: 24px;
  }
}

@media (max-width: 991.98px) {
  .actions__items {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.actions__item {
  display: block;
}

.actions__item--wide {
  grid-column: 1 / -1;
}
/* ===== /ACTIONS ===== */


/* ===== ACTION-PAGE ===== */
.action-page__header {
  margin-bottom: 48px;
}

@media (max-width: 991.98px) {
  .action-page__header {
    margin-bottom: 24px;
  }
}

.action-page__title {
  margin: 0 0 16px;
}

@media (max-width: 991.98px) {
  .action-page__title {
    margin-bottom: 12px;
  }
}

.action-page__duration {
  margin: 0;

  font-size: 14px;
  line-height: 1.1;
  text-align: right;
  text-transform: uppercase;
  color: var(--color-dark-green);
}

.action-page__media {
  display: block;

  aspect-ratio: 1200 / 650;
  width: 100%;
  margin-bottom: 48px;

  overflow: hidden;
  border-radius: 12px;
}

@media (max-width: 991.98px) {
  .action-page__media {
    aspect-ratio: 343 / 200;
    margin-bottom: 24px;

    border-radius: 8px;
  }
}

.action-page__image {
  display: block;

  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.action-page__description {
  width: 100%;
}

.action-page__text-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  padding-top: 7px;
}

@media (max-width: 991.98px) {
  .action-page__text-wrap {
    padding-top: 0;
  }
}

.action-page__text {
  font-size: 16px;
  line-height: 1.4;
  color: var(--color-dark-green);
}

.action-page__btn {
  width: auto;
  margin-top: 24px;
  padding: 12px 24px;
}

@media (max-width: 991.98px) {
  .action-page__btn {
    width: 100%;
    margin-top: 16px;
  }
}
/* ===== /ACTION-PAGE ===== */


/* ===== BLOG-SLIDER ===== */
.blog-slider .swiper-slide {
  height: auto;
}

@media (max-width: 1279.98px) {
  .blog-slider-section .slider-arrows {
    display: none;
  }
}
/* ===== /BLOG-SLIDER ===== */


/* ===== BLOG-CARD ===== */
.blog-card {
  display: flex;
  flex-direction: column;

  height: 100%;

  text-decoration: none;
  color: inherit;
}

.blog-card__image {
  position: relative;

  aspect-ratio: 392 / 300;

  overflow: hidden;
  border-radius: 12px 12px 0 0;
}

.blog-card__image img {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;

  transition: transform 0.3s linear;
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.05);
}

.blog-card:hover .blog-card__title {
  color: var(--primary-color);
}

.blog-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 24px;

  height: 100%;
  padding: 24px;

  background-color: var(--color-light-bronze);
  border-radius: 0 0 12px 12px;
}

@media (max-width: 767.98px) {
  .blog-card__body {
    gap: 12px;

    padding: 16px;
  }
}

.blog-card__content {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 12px;
}

.blog-card__title {
  margin: 0;

  font-weight: 400;
  font-size: 30px;
  line-height: 1.1;

  transition: color 0.3s linear;
}

@media (max-width: 1279.98px) {
  .blog-card__title {
    font-size: 26px;
  }
}

@media (max-width: 991.98px) {
  .blog-card__title {
    font-size: 24px;
  }
}

@media (max-width: 767.98px) {
  .blog-card__title {
    font-size: 20px;
  }
}

.blog-card__text {
  margin: 0;
}

.blog-card__date {
  margin-top: auto;

  font-weight: 400;
  font-size: 14px;
  line-height: 1.1;
  text-transform: uppercase;

  opacity: 0.5;
}
/* ===== /BLOG-CARD ===== */


/* ===== BLOG-LIST ===== */
.blog-list .page-title {
  margin-bottom: 48px;
}

@media (max-width: 991.98px) {
  .blog-list .page-title {
    margin-bottom: 24px;
  }
}

.blog-list__items {
  display: flex;
  flex-direction: column;
  gap: 24px;

  margin: 0 0 48px;
  padding: 0;

  list-style: none;
}

@media (max-width: 1279.98px) {
  .blog-list__items {
    margin-bottom: 24px;
  }
}

@media (max-width: 767.98px) {
  .blog-list__items {
    gap: 12px;
  }
}

.blog-list__item {
  display: block;
}
/* ===== /BLOG-LIST ===== */


/* ===== BLOG-POST-CARD ===== */
.blog-post-card {
  position: relative;

  display: flex;
  flex-direction: column;

  aspect-ratio: 435 / 180;

  overflow: hidden;
  border-radius: 12px;
}

@media (max-width: 991.98px) {
  .blog-post-card {
    gap: 24px;

    aspect-ratio: auto;
    padding: 12px;

    overflow: visible;
    background: linear-gradient(to top, #b9ac92, #ece9e8 50.481%, #f0e8dd);
    border-radius: 12px;
  }
}

.blog-post-card__media {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  overflow: hidden;
  border-radius: 12px;
}

@media (max-width: 991.98px) {
  .blog-post-card__media {
    position: relative;

    aspect-ratio: 435 / 180;
    width: 100%;
    height: auto;

    border-radius: 8px;
  }
}

.blog-post-card__image {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.blog-post-card__date {
  position: absolute;
  z-index: 2;
  top: 24px;
  left: 24px;

  display: inline-flex;
  align-items: center;
  gap: 6px;

  height: 48px;
  padding: 10px 16px;

  font-size: 14px;
  line-height: 1.1;
  text-transform: uppercase;
  color: #ffffff;

  background: rgb(255 255 255 / .15);
  border: 1px solid rgb(255 255 255 / .5);
  border-radius: 50px;
  backdrop-filter: blur(5px);
}

@media (max-width: 991.98px) {
  .blog-post-card__date {
    top: 18px;
    left: 18px;

    height: 36px;

    font-size: 12px;
    line-height: 1.35;
  }
}

.blog-post-card__body {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;

  display: flex;
  flex-direction: column;
  gap: 24px;

  padding: 24px;

  text-align: left;

  background: linear-gradient(to top, #b9ac92, #ece9e8 50.481%, #f0e8dd);
  border-radius: 8px;
}

@media (max-width: 991.98px) {
  .blog-post-card__body {
    position: static;

    gap: 12px;

    padding: 0;

    background: none;
    border-radius: 0;
  }
}

.blog-post-card__title {
  margin: 0;

  font-weight: 400;
  font-size: 24px;
  line-height: 1.1;
  color: var(--color-dark-green);
}

@media (max-width: 991.98px) {
  .blog-post-card__title {
    font-size: 20px;
  }
}

@media (max-width: 575.98px) {
  .blog-post-card__title {
    font-size: 18px;
  }
}

.blog-post-card__excerpt {
  margin: 0;

  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: var(--color-dark-green);
}

@media (max-width: 991.98px) {
  .blog-post-card__excerpt {
    font-size: 14px;
  }
}

.blog-post-card__btn {
  align-self: stretch;
}
/* ===== /BLOG-POST-CARD ===== */


/* ===== ADVANTAGES ===== */
.advantages {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;

  margin: 0;
  padding: 0;

  list-style: none;
}

@media (max-width: 1279.98px) {
  .advantages {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.advantages__item {
  display: flex;
  flex-direction: column;
  gap: 12px;

  padding: 24px;

  background-color: var(--color-white);
  border-radius: 12px;
}

@media (max-width: 1279.98px) {
  .advantages__item {
    gap: 0;

    padding: 16px;
  }
}

.advantages__head {
  display: flex;
  align-items: center;
  gap: 12px;
}

@media (max-width: 1279.98px) {
  .advantages__head {
    user-select: none;

    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
}

.advantages__toggle {
  display: none;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;

  width: 24px;
  height: 24px;
  margin-left: auto;
  padding: 0;

  background: none;
  border: none;

  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

@media (max-width: 1279.98px) {
  .advantages__toggle {
    display: flex;
    pointer-events: none;
  }
}

.advantages__toggle svg {
  transition: transform 0.3s linear;
}

.advantages__item--open .advantages__toggle svg {
  transform: rotate(45deg);
}

.advantages__answer {
  display: contents;
}

@media (max-width: 1279.98px) {
  .advantages__answer {
    display: block;
    overflow: hidden;
    max-height: 0;

    transition: max-height 0.3s linear;
  }
}

.advantages__answer-inner {
  display: contents;
}

@media (max-width: 1279.98px) {
  .advantages__answer-inner {
    display: block;
    padding-top: 12px;
  }
}

.advantages__icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;

  width: 48px;
  height: 48px;

  background-color: var(--color-light-bronze);
  border-radius: 6px;
}

@media (max-width: 1279.98px) {
  .advantages__icon {
    width: 48px;
    height: 48px;
  }
}

.advantages__icon img {
  display: block;

  width: 24px;
  height: 24px;

  color: var(--color-bronze);
}

.advantages__title {
  margin: 0;

  font-family: var(--font-montserrat);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-dark-green);
}

@media (max-width: 1279.98px) {
  .advantages__title {
    font-size: 14px;
  }
}

.advantages__text {
  margin: 0;

  font-family: var(--font-montserrat);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-dark-green);
}

@media (max-width: 1279.98px) {
  .advantages__text {
    font-size: 14px;
  }
}

.advantages__item--cta {
  align-items: center;
  justify-content: center;
}

.advantages__item--button {
}

@media (max-width: 1279.98px) {
  .advantages__item--button {
    align-items: stretch;
    justify-content: center;

    padding: 0;

    background-color: transparent;
  }
}

.advantages__item--button .button {
}

@media (max-width: 1279.98px) {
  .advantages__item--button .button {
    width: 100%;
    height: 48px;

    font-size: 14px;
  }
}

.advantages__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 48px;
  padding: 0 24px;

  font-family: var(--font-montserrat);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  color: var(--color-dark-green);

  background: linear-gradient(to top, #b9ac92 0%, #ece9e8 50.48%, #f0e8dd 100%);
  border-radius: 6px;

  cursor: pointer;
  transition: opacity 0.2s ease;
}

.advantages__btn:hover {
  opacity: .85;
}
/* ===== /ADVANTAGES ===== */


/* ===== SALON-BOUTIQUE ===== */
.salon-boutique {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

@media (max-width: 991.98px) {
  .salon-boutique {
    flex-direction: column;
    gap: 12px;
  }
}

.salon-boutique__col {
  display: flex;
  flex-direction: column;
  flex: 1 1 0;
  gap: 12px;

  min-width: 0;
}

@media (max-width: 991.98px) {
  .salon-boutique__col {
    display: contents;
  }
}

.salon-boutique__col--left {
  padding-top: 48px;
}

@media (max-width: 991.98px) {
  .salon-boutique__col--left {
    padding-top: 0;
  }
}

.salon-boutique__title {
  margin: 0 0 calc(24px - 12px);
}

@media (max-width: 767.98px) {
  .salon-boutique__title {
    margin-bottom: 0;
  }
}

.salon-boutique__text {
  margin: 0 0 calc(48px - 12px);
}

@media (max-width: 767.98px) {
  .salon-boutique__text {
    margin-bottom: 12px;
  }
}

.salon-boutique__card {
  position: relative;

  display: block;

  width: 100%;
  aspect-ratio: 594 / 750;

  border-radius: 12px;

  overflow: hidden;

  -webkit-tap-highlight-color: transparent;
}

@media (max-width: 991.98px) {
  .salon-boutique__card {
    aspect-ratio: 343 / 450;
  }
}

@media (max-width: 991.98px) {
  .salon-boutique__card--1 {
    order: 1;
  }
}

@media (max-width: 991.98px) {
  .salon-boutique__card--2 {
    order: 2;
  }
}

@media (max-width: 991.98px) {
  .salon-boutique__card--3 {
    order: 3;
  }
}

@media (max-width: 991.98px) {
  .salon-boutique__card--4 {
    order: 4;
  }
}

.salon-boutique__card-media {
  position: absolute;
  inset: 0;

  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  background-color: #d9d9d9;

  transition: transform 0.6s ease;
}

.salon-boutique__card:hover .salon-boutique__card-media {
  transform: scale(1.03);
}

.salon-boutique__card-label {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  height: 48px;
  padding: 10px 24px;

  background-color: rgb(255 255 255 / .4);
  border: 1px solid rgb(255 255 255 / .5);
  border-radius: 6px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

@media (max-width: 991.98px) {
  .salon-boutique__card-label {
    right: 6px;
    bottom: 6px;
    left: 6px;

    padding: 10px 12px;

    background-color: rgb(255 255 255 / .6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
  }
}

.salon-boutique__card-label-text {
  text-transform: uppercase;
  color: var(--color-white);
}

@media (max-width: 991.98px) {
  .salon-boutique__card-label-text {
    color: var(--color-dark-green);
  }
}

.salon-boutique__card-arrow {
  flex-shrink: 0;

  width: 18px;
  height: 8px;

  color: var(--color-white);

  transition: transform 0.3s ease;
}

@media (max-width: 991.98px) {
  .salon-boutique__card-arrow {
    width: 12px;

    color: var(--color-dark-green);
  }
}

.salon-boutique__card:hover .salon-boutique__card-arrow {
  transform: translateX(4px);
}
/* ===== /SALON-BOUTIQUE ===== */


/* ===== FITTING ===== */
.fitting {
  display: flex;
  align-items: center;

  width: 100%;
  min-height: 764px;
  padding-top: 120px;
  padding-bottom: 120px;

  background: #f9f9f9 url("../images/new-design/fitting-bg.webp") center no-repeat;
  background-size: cover;
}

@media (max-width: 1279.98px) {
  .fitting {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

@media (max-width: 991.98px) {
  .fitting {
    min-height: auto;
    padding-top: 80px;
    padding-bottom: 80px;

    background: linear-gradient(0deg, #b9ac92 0%, #ece9e8 50.48%, #f0e8dd 100%);
  }
}

@media (max-width: 767.98px) {
  .fitting {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.fitting__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 991.98px) {
  .fitting__row {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

.fitting__block {
  padding: 48px;

  border-radius: 12px;
  background: linear-gradient(0deg, #b9ac92 0%, #ece9e8 50.48%, #f0e8dd 100%);
}

@media (max-width: 991.98px) {
  .fitting__block {
    padding: 0;

    background: none;
  }
}

.fitting__title {
  margin: 0 0 24px;
}

@media (max-width: 767.98px) {
  .fitting__title {
    margin-bottom: 12px;
  }
}

.fitting__text {
  margin: 0 0 48px;
}

@media (max-width: 767.98px) {
  .fitting__text {
    margin-bottom: 24px;
  }
}

.fitting__image {
  display: block;
  max-width: 100%;
  height: auto;

  border-radius: 12px;
}

@media (min-width: 992px) {
  .fitting__image {
    display: none;
  }
}
/* ===== /FITTING ===== */


/* ===== ABOUT-TEXT-BLOCK ===== */
.about-text-block {
  padding: 48px;

  background-color: var(--color-light-bronze);
  border-radius: 12px;
}

@media (max-width: 991.98px) {
  .about-text-block {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 767.98px) {
  .about-text-block {
    padding-left: 12px;
    padding-right: 12px;
  }
}

.about-text-block__title {
  margin: 0;
}

.about-text-block__heading {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 36px;

  margin-bottom: 24px;
}

@media (max-width: 1279.98px) {
  .about-text-block__heading {
    grid-template-columns: 1fr;
  }
}

.about-text-block__row {

}

@media (max-width: 991.98px) {
  .about-text-block__row {

  }
}

.about-text-block__row p {
  margin: 0;

  break-inside: avoid;
}

.about-text-block__row p + p {
  margin-top: 12px;
}
/* ===== /ABOUT-TEXT-BLOCK ===== */


/* ===== BRANDS ===== */
.brands {
  display: flex;
  gap: 12px;

  margin: 0;
  padding: 0;

  list-style: none;
}

@media (max-width: 991.98px) {
  .brands {
    flex-wrap: wrap;
  }
}

.brands__item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;

  height: 140px;
  margin: 0;
  padding: 24px;

  background-color: var(--color-light-bronze);
  border-radius: 12px;
}

@media (max-width: 1279.98px) {
  .brands__item {
    padding: 12px;
  }
}

@media (max-width: 991.98px) {
  .brands__item {
    height: 115px;
  }
}

.brands__image {
  display: block;
  width: 100%;
  max-width: 142px;
  height: auto;

  object-position: center;
  object-fit: contain;
}

@media (max-width: 991.98px) {
  .brands__image {
    max-width: 120px;
  }
}
/* ===== /BRANDS ===== */


/* ===== REVIEWS-SLIDER ===== */
.reviews-slider .swiper-slide {
  height: auto;
}

@media (max-width: 1279.98px) {
  .reviews-slider-section--main .slider-arrows {
    display: none;
  }
}
/* ===== /REVIEWS-SLIDER ===== */


/* ===== REVIEW-CARD ===== */
.review-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;

  height: 100%;
  padding: 24px;

  background-color: var(--color-light-bronze);
  border-radius: 12px;
}

@media (max-width: 767.98px) {
  .review-card {
    padding: 16px;
  }
}

.review-card__text {
  margin: 0;
}

.review-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.review-card__author {
  font-weight: 500;
}

.review-card__date {
  text-align: right;
}
/* ===== /REVIEW-CARD ===== */


/* ===== FAQ ===== */
.faq__columns {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

@media (max-width: 991.98px) {
  .faq__columns {
    flex-direction: column;
  }
}

.faq__column {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 12px;

  min-width: 0;
}

.faq__item {
  padding: 24px;

  background-color: var(--color-light-bronze);
  border-radius: 12px;
}

@media (max-width: 991.98px) {
  .faq__item {
    padding: 12px;
  }
}

.faq__question {
  display: flex;
  align-items: center;
  gap: 24px;

  user-select: none;

  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.faq__question-text {
  flex: 1;

  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;

  transition: color 0.3s linear;
}

@media (max-width: 991.98px) {
  .faq__question-text {
    font-size: 14px;
  }
}

.faq__question:hover .faq__question-text {
  color: var(--primary-color);
}

.faq__toggle {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;

  width: 24px;
  height: 24px;
  padding: 0;

  background: none;
  border: none;

  cursor: pointer;
}

.faq__toggle svg {
  transition: transform 0.3s linear;
}

.faq__item--open .faq__toggle svg {
  transform: rotate(45deg);
}

.faq__answer {
  overflow: hidden;
  max-height: 0;

  transition: max-height 0.3s linear;
}

.faq__answer-inner {
  padding-top: 12px;
}

.faq__answer p {
  margin: 0;

  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
}

@media (max-width: 991.98px) {
  .faq__answer p {
    font-size: 14px;
  }
}
/* ===== /FAQ ===== */


/* ===== SALON-INFO ===== */
.salon-info__address {
  display: flex;
  flex-direction: column;
  gap: 12px;

  font-style: normal;
}

@media (max-width: 1279.98px) {
  .salon-info__address {
    gap: 0;
  }
}

.salon-info__address p {
  margin: 0;
}

@media (max-width: 1279.98px) {
  .salon-info__address p:last-child {
    margin-top: 12px;
  }
}

.salon-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  align-items: center;
}

@media (max-width: 991.98px) {
  .salon-info {
    grid-template-columns: 1fr;
  }
}


.salon-info__media,
.salon-info__map {
  overflow: hidden;

  background-color: var(--color-light-bronze);
  border-radius: 12px;
}

@media (max-width: 767.98px) {
  .salon-info__media {
    display: none;
  }
}

.salon-info__media img {
  display: block;
  width: 100%;
  aspect-ratio: 594 / 420;
  object-position: center;
  object-fit: cover;
}
/* ===== /SALON-INFO ===== */


/* ===== SALON-MAP ===== */
.salon-map {
  display: block;
  width: 100%;
  aspect-ratio: 594 / 420;
}

@media (max-width: 767.98px) {
  .salon-map {
    height: 400px;
    aspect-ratio: auto;
  }
}
/* ===== /SALON-MAP ===== */


/* ===== CONTACTS ===== */
.contacts__head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: start;
}

@media (max-width: 1279.98px) {
  .contacts__head {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.contacts__head .page-title {
  max-width: 588px;
}

.contacts__info {
  display: grid;
  grid-template-columns: auto minmax(0, 375px);
  gap: 57px;
  align-items: start;
}

@media (max-width: 1279.98px) {
  .contacts__info {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 767.98px) {
  .contacts__info {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

.contacts__map-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 48px;
}

@media (max-width: 1279.98px) {
  .contacts__map-wrap {
    margin-top: 24px;
  }
}

@media (max-width: 767.98px) {
  .contacts__map-wrap {
    gap: 6px;
  }
}
/* ===== /CONTACTS ===== */


/* ===== CONTACTS-LIST ===== */
.contacts-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;

  list-style: none;
}

@media (max-width: 767.98px) {
  .contacts-list {
    gap: 6px;
  }
}

.contacts-list__item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.contacts-list__icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.contacts-list__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.contacts-list__text {
  margin: 0;
  padding: 0;

  font-family: var(--font-montserrat), sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: var(--color-dark-green);

  background: none;
  border: 0;
}

a.contacts-list__text {
  text-decoration: none;

  transition: color 0.2s ease;
}

a.contacts-list__text:hover,
.contacts-list__text--button:hover {
  color: var(--color-bronze);
}

.contacts-list__text--button {
  text-align: left;

  cursor: pointer;

  transition: color 0.2s ease;
}

.contacts-list__text--address {
  max-width: 321px;
}

@media (max-width: 767.98px) {
  .contacts-list__text--address {
    max-width: none;
  }
}
/* ===== /CONTACTS-LIST ===== */


/* ===== CONTACTS-METRO ===== */
.contacts__metro {
  display: flex;
  gap: 12px;
  align-items: center;
}

@media (max-width: 767.98px) {
  .contacts__metro {
    gap: 6px;
  }
}

.contacts__metro-badge {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}

@media (max-width: 767.98px) {
  .contacts__metro-badge {
    width: 44px;
    height: 44px;
  }
}

.contacts__metro-badge img,
.contacts__metro-badge svg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contacts__metro-text {
  font-family: var(--font-montserrat), sans-serif;
  font-size: 16px;
  line-height: 1.4;
  color: var(--color-dark-green);
}

@media (max-width: 767.98px) {
  .contacts__metro-text {
    font-size: 14px;
    letter-spacing: -0.14px;
  }
}
/* ===== /CONTACTS-METRO ===== */


/* ===== CONTACTS-MAP ===== */
.contacts__map {
  width: 100%;
  height: 620px;
  overflow: hidden;

  background-color: var(--color-light-bronze);
  border-radius: 12px;
}

@media (max-width: 767.98px) {
  .contacts__map {
    height: 450px;
  }
}
/* ===== /CONTACTS-MAP ===== */


/* ===== ABOUT-PAGE ===== */
.about-page__title {
  margin: 0 0 120px;
}

@media (max-width: 1279.98px) {
  .about-page__title {
    margin-bottom: 96px;
  }
}

@media (max-width: 991.98px) {
  .about-page__title {
    margin-bottom: 72px;
  }
}

@media (max-width: 767.98px) {
  .about-page__title {
    margin-bottom: 48px;
  }
}

.about-page__block {
  margin-bottom: 96px;
}

@media (max-width: 1279.98px) {
  .about-page__block {
    margin-bottom: 64px;
  }
}

@media (max-width: 991.98px) {
  .about-page__block {
    margin-bottom: 48px;
  }
}

.about-page__block .section__heading-row {
  margin-bottom: 48px;
}

@media (max-width: 1279.98px) {
  .about-page__block .section__heading-row {
    margin-bottom: 24px;
  }
}

@media (max-width: 767.98px) {
  .about-page__block .section__heading-row {
    margin-bottom: 16px;
  }
}

.about-page__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 36px;

  margin-bottom: 96px;
}

@media (max-width: 1279.98px) {
  .about-page__cols {
    gap: 12px 24px;

    margin-bottom: 64px;
  }
}

@media (max-width: 991.98px) {
  .about-page__cols {
    grid-template-columns: 1fr;
    gap: 16px;

    margin-bottom: 48px;
  }
}

.about-page__col-text p {
  margin: 0 0 12px;
}

.about-page__col-text p:last-child {
  margin-bottom: 0;
}

.about-page__media {
  display: block;

  width: 100%;
  margin: 0;

  overflow: hidden;
  border-radius: 12px;
}

@media (max-width: 767.98px) {
  .about-page__media {
    border-radius: 8px;
  }
}

.about-page__media-img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}

.about-page__media--portrait {
  aspect-ratio: 1200 / 650;
}

@media (max-width: 767.98px) {
  .about-page__media--portrait {
    aspect-ratio: 343 / 220;
  }
}

.about-page__media--landscape {
  aspect-ratio: 1200 / 600;
}

@media (max-width: 767.98px) {
  .about-page__media--landscape {
    aspect-ratio: 343 / 220;
  }
}

.about-page__media--hero {
  aspect-ratio: 1200 / 700;

  margin-bottom: 96px;
}

@media (max-width: 1279.98px) {
  .about-page__media--hero {
    margin-bottom: 64px;
  }
}

@media (max-width: 991.98px) {
  .about-page__media--hero {
    margin-bottom: 48px;
  }
}

@media (max-width: 767.98px) {
  .about-page__media--hero {
    aspect-ratio: 343 / 240;
  }
}

.about-page__media--feature {
  aspect-ratio: 594 / 621;
}

@media (max-width: 991.98px) {
  .about-page__media--feature {
    aspect-ratio: 343 / 360;
  }
}

.about-page__media--feature-short {
  aspect-ratio: 594 / 567;
}

@media (max-width: 991.98px) {
  .about-page__media--feature-short {
    aspect-ratio: 343 / 360;
  }
}

.about-page__video-wrap {
  position: relative;

  cursor: pointer;
}

.about-page__video {
  background-color: var(--color-bronze);
}

.about-page__video-play {
  position: absolute;
  top: 50%;
  left: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 48px;
  height: 48px;
  padding: 0;

  border: none;
  border-radius: 50%;
  background-color: var(--color-white);

  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;

  cursor: pointer;
}

@media (hover: hover) and (pointer: fine) {
  .about-page__video-play:hover {
    transform: translate(-50%, -50%) scale(1.08);
  }
}

.about-page__video-play--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.about-page__video-play-icon {
  display: block;

  transform: translateX(2px);
}

.about-page__quote {
  position: relative;
  z-index: 0;

  margin-bottom: 96px;
  padding-top: 350px;
  padding-bottom: 48px;
}

.about-page__quote::before {
  content: "";

  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 50%;

  width: 100vw;
  margin-left: -50vw;

  background: url("../images/new-design/about-quote-bg.webp") center no-repeat;
  background-size: cover;
}

@media (max-width: 1279.98px) {
  .about-page__quote {
    margin-bottom: 64px;
    padding-top: 240px;
    padding-bottom: 32px;
  }
}

@media (max-width: 991.98px) {
  .about-page__quote {
    margin-bottom: 48px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .about-page__quote::before {
    display: none;
  }
}

.about-page__quote-mark {
  position: absolute;
  top: 24px;
  left: 48px;

  display: block;

  width: 74px;
  height: auto;

  pointer-events: none;
  user-select: none;
}

@media (max-width: 991.98px) {
  .about-page__quote-mark {
    top: 16px;
    left: 16px;

    width: 48px;
  }
}

@media (max-width: 767.98px) {
  .about-page__quote-mark {
    top: 12px;
    left: 12px;

    width: 36px;
  }
}

.about-page__quote-card {
  position: relative;

  display: flex;
  flex-direction: column;
  gap: 24px;

  padding: 48px;

  text-align: center;

  background: linear-gradient(to top, #b9ac92, #ece9e8 50.481%, #f0e8dd);
  border-radius: 12px;
}

@media (max-width: 991.98px) {
  .about-page__quote-card {
    gap: 24px;

    padding: 50px 12px 60px;
  }
}

.about-page__quote-title {
  margin: 0;

  color: var(--color-dark-green);
}

.about-page__quote-text {
  display: flex;
  flex-direction: column;
  gap: 12px;

  color: var(--color-dark-green);
}

.about-page__quote-text p {
  margin: 0;
}

.about-page__quote-sign {
  display: block;

  width: 259px;
  height: auto;
  margin: 0 auto;
}

@media (max-width: 767.98px) {
  .about-page__quote-sign {
    width: 200px;
  }
}

.about-page__quote-img {
  display: none;
}

@media (max-width: 991.98px) {
  .about-page__quote-img {
    display: block;

    width: 100%;
    aspect-ratio: 319 / 220;

    object-fit: cover;
    border-radius: 12px;
  }
}

.about-page__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;

  margin-bottom: 96px;
}

@media (max-width: 1279.98px) {
  .about-page__features {
    margin-bottom: 64px;
  }
}

@media (max-width: 991.98px) {
  .about-page__features {
    grid-template-columns: 1fr;
    gap: 24px;

    margin-bottom: 48px;
  }
}

.about-page__features-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

@media (max-width: 991.98px) {
  .about-page__features-col:last-child .about-page__feature--text {
    order: -1;
  }
}

.about-page__feature--text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-page__feature-title {
  margin: 0;

  font-weight: 400;
  font-size: 30px;
  line-height: 1.1;
  color: var(--color-dark-green);
}

@media (max-width: 991.98px) {
  .about-page__feature-title {
    font-size: 26px;
  }
}

@media (max-width: 767.98px) {
  .about-page__feature-title {
    font-size: 22px;
    line-height: 1.2;
  }
}

.about-page__feature-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-page__feature-text p {
  margin: 0;
}

.about-page__feature-list {
  margin: 0;
  padding: 0;

  list-style: none;
}

.about-page__feature-list li {
  position: relative;

  margin-bottom: 6px;
  padding-left: 14px;
}

.about-page__feature-list li::before {
  content: "";

  position: absolute;
  top: 0.6em;
  left: 0;

  width: 2px;
  height: 2px;

  background-color: currentColor;
  border-radius: 50%;
}

.about-page__feature-list li:last-child {
  margin-bottom: 0;
}

.about-page__models {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

@media (max-width: 1279.98px) {
  .about-page__models {
    gap: 32px;
  }
}

@media (max-width: 991.98px) {
  .about-page__models {
    gap: 24px;
  }
}

@media (min-width: 1280px) {
  .about-page__models .section__heading {
    display: none;
  }
}

.about-page__models-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px 12px;
}

@media (max-width: 991.98px) {
  .about-page__models-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575.98px) {
  .about-page__models-grid {
    grid-template-columns: 1fr;
  }
}

.about-page__link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;

  transition: color .2s ease;
}

.about-page__link:hover {
  color: var(--color-bronze);
}

.about-page__list {
  margin: 0;
  padding: 0;

  list-style: none;
}

.about-page__list li {
  position: relative;

  margin-bottom: 6px;
  padding-left: 14px;
}

.about-page__list li::before {
  content: "";

  position: absolute;
  top: 0.6em;
  left: 0;

  width: 2px;
  height: 2px;

  background-color: currentColor;
  border-radius: 50%;
}

.about-page__list li:last-child {
  margin-bottom: 0;
}

/* ===== /ABOUT-PAGE ===== */


/* ===== CATALOG-PAGE ===== */
.catalog-page .section__heading-row {
  grid-template-columns: 1fr;
  gap: 24px;
}
/* ===== /CATALOG-PAGE ===== */


/* ===== CATALOG-TAGS ===== */
.catalog-tags {
  display: flex;
  align-items: flex-start;
  gap: 12px;

  margin-bottom: 24px;
}

@media (max-width: 767.98px) {
  .catalog-tags {
    display: block;

    margin-bottom: 16px;
    overflow-x: auto;
    overflow-y: hidden;

    scrollbar-width: none;

    -webkit-overflow-scrolling: touch;
  }

  .catalog-tags::-webkit-scrollbar {
    display: none;
  }
}


.catalog-tags__track {
  flex: 1;

  min-width: 0;
  max-height: 48px;
  overflow: hidden;
}

.catalog-tags.is-expanded .catalog-tags__track {
  max-height: none;
}

@media (max-width: 767.98px) {
  .catalog-tags__track {
    display: flex;
    gap: 12px;

    width: max-content;
    max-height: none;
    overflow: visible;
  }
}


.catalog-tags__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;

  margin: 0;
  padding: 0;

  list-style: none;
}

@media (max-width: 767.98px) {
  .catalog-tags__list {
    flex-wrap: nowrap;
    flex-shrink: 0;
  }
}


.catalog-tags__link {
  display: inline-flex;
  align-items: center;

  height: 48px;
  padding: 0 16px;

  font-family: var(--font-montserrat), sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-dark-green);
  text-decoration: none;
  white-space: nowrap;

  background-color: var(--color-light-bronze);
  border-radius: 6px;

  transition: background-color .2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .catalog-tags__link:hover {
    background-color: rgb(180 125 50 / .15);
  }
}


.catalog-tags__more {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 6px;

  height: 48px;
  padding: 0;

  font-family: var(--font-montserrat), sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-bronze);

  background: none;
  border: none;

  cursor: pointer;
}

.catalog-tags__more[hidden] {
  display: none;
}

@media (max-width: 767.98px) {
  .catalog-tags__more {
    display: none;
  }
}

.catalog-tags__more-icon {
  transition: transform .2s ease;
}

.catalog-tags.is-expanded .catalog-tags__more-icon {
  transform: rotate(180deg);
}
/* ===== /CATALOG-TAGS ===== */


/* ===== CATALOG-TOOLBAR ===== */
.catalog-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;

  margin: 0;
  padding: 0;

  border: none;
}

@media (max-width: 767.98px) {
  .catalog-toolbar {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0;

    max-height: 240px;
    overflow-y: auto;
    scrollbar-width: none;

    mask-image: linear-gradient(to bottom, #000000 calc(100% - 24px), transparent);
  }

  .catalog-toolbar::-webkit-scrollbar {
    display: none;
  }
}

.catalog-toolbar__filter {
  position: relative;
}

@media (max-width: 767.98px) {
  .catalog-toolbar__filter {
    border-top: 1px solid rgb(5 35 27 / .1);
  }

  .catalog-toolbar__filter:last-of-type {
    border-bottom: 1px solid rgb(5 35 27 / .1);
  }
}

.catalog-toolbar__trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 0;

  font-family: var(--font-montserrat), sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--color-dark-green);

  background-color: transparent;
  border: none;
  border-radius: 0;

  transition: color .2s ease;

  cursor: pointer;
}

@media (max-width: 767.98px) {
  .catalog-toolbar__trigger {
    display: flex;
    justify-content: space-between;
    width: 100%;

    padding: 14px 0;

    text-transform: none;
  }
}

@media (hover: hover) and (pointer: fine) {
  .catalog-toolbar__trigger:hover {
    color: var(--color-bronze);
  }
}

.catalog-toolbar__filter--open .catalog-toolbar__trigger {
  color: var(--color-bronze);
}

@media (max-width: 767.98px) {
  .catalog-toolbar__filter--open .catalog-toolbar__trigger {
    color: var(--color-dark-green);
  }
}

.catalog-toolbar__arrow {
  flex-shrink: 0;
  color: #5f5f5f;

  transition: transform .2s ease;
}

.catalog-toolbar__filter--open .catalog-toolbar__arrow {
  transform: rotate(180deg);
}

@media (max-width: 767.98px) {
  .catalog-toolbar__arrow {
    transform: rotate(-90deg);
  }

  .catalog-toolbar__filter--open .catalog-toolbar__arrow {
    transform: rotate(0);
  }
}

.catalog-toolbar__popover {
  position: absolute;
  z-index: 20;
  top: calc(100% + 8px);
  left: 0;

  min-width: 240px;
  max-width: 360px;
  padding: 16px;

  background-color: var(--color-white);
  border: 1px solid rgb(180 125 50 / .15);
  border-radius: 6px;
  box-shadow: 0 8px 24px rgb(5 35 27 / .08);
}

@media (max-width: 767.98px) {
  .catalog-toolbar__popover {
    position: static;
    z-index: auto;

    min-width: 0;
    max-width: none;
    padding: 0 0 16px;

    background-color: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
  }
}

.catalog-toolbar__options {
  display: flex;
  flex-direction: column;
  gap: 8px;

  max-height: 360px;
  overflow-y: auto;
}

@media (max-width: 767.98px) {
  .catalog-toolbar__options {
    max-height: none;
    overflow-y: visible;
  }
}

/* ===== /CATALOG-TOOLBAR ===== */


/* ===== CATALOG-FILTERS-FORM ===== */
.catalog-filters-form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
}

@media (max-width: 767.98px) {
  .catalog-filters-form {
    display: none;
  }

  .catalog-filters-form--open {
    display: flex;
  }
}

.catalog-filters-form__tags {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;

  min-width: 0;
  margin: 0;
  padding: 0;
}

.catalog-filters-form__tags#mse2_selected {
  background: none;
  padding: 0;
  border-radius: 0;
}

.catalog-filters-form__tags > strong {
  display: none;
}

.catalog-filters-form__tags .mse2_selected_link {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  height: 32px;
  padding: 0 8px 0 12px;

  font-family: var(--font-montserrat), sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.2;
  text-decoration: none;
  color: var(--color-dark-green);

  background-color: var(--color-light-bronze);
  border-radius: 16px;

  transition: background-color .2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .catalog-filters-form__tags .mse2_selected_link:hover {
    background-color: rgb(180 125 50 / .15);
  }
}

.catalog-filters-form__tags .mse2_selected_link em {
  font-style: normal;
}

.catalog-filters-form__tags .mse2_selected_link sup {
  position: relative;

  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;

  width: 14px;
  height: 14px;

  font-size: 0;
  color: transparent;

  background-color: transparent;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8' fill='none'><path d='M1 1L7 7M1 7L7 1' stroke='%2305231b' stroke-linecap='round' stroke-width='1.5'/></svg>");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 8px 8px;

  cursor: pointer;
}

.catalog-filters-form__reset {
  align-self: flex-start;

  display: none;
  flex-shrink: 0;
  width: auto;
}

.catalog-filters-form--has-reset .catalog-filters-form__reset {
  display: inline-flex;
}
/* ===== /CATALOG-FILTERS-FORM ===== */


/* ===== CATALOG-CHECKBOX ===== */
.catalog-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  font-family: var(--font-montserrat), sans-serif;
  font-size: 14px;
  line-height: 1.4;
  color: var(--color-dark-green);

  cursor: pointer;
}

.catalog-checkbox__input {
  position: absolute;

  overflow: hidden;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;

  border: 0;

  white-space: nowrap;

  clip-path: inset(100%);
  clip: rect(0 0 0 0);
}

.catalog-checkbox__box {
  position: relative;

  flex-shrink: 0;

  display: block;
  width: 20px;
  height: 20px;

  background-color: var(--color-white);
  border: 1px solid rgb(5 35 27 / .2);
  border-radius: 4px;

  transition: background-color .2s ease, border-color .2s ease;
}

.catalog-checkbox__box::before {
  content: "";

  position: absolute;
  top: 50%;
  left: 50%;

  width: 12px;
  height: 9px;

  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='9' viewBox='0 0 12 9' fill='none'><path d='M1 4.5L4.5 8L11 1' stroke='white' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0;

  transform: translate(-50%, -50%);
  transition: opacity .2s ease;
}

.catalog-checkbox__input:checked + .catalog-checkbox__box {
  background-color: var(--color-bronze);
  border-color: var(--color-bronze);
}

.catalog-checkbox__input:checked + .catalog-checkbox__box::before {
  opacity: 1;
}

.catalog-checkbox__input:focus-visible + .catalog-checkbox__box {
  outline: 2px solid var(--color-bronze);
  outline-offset: 2px;
}

.catalog-checkbox:has(.catalog-checkbox__input:disabled) {
  opacity: .35;

  cursor: not-allowed;
}

.catalog-checkbox:has(.catalog-checkbox__input:disabled) .catalog-checkbox__text {
  color: rgb(5 35 27 / .6);
}

.catalog-checkbox__text {
  user-select: none;
}
/* ===== /CATALOG-CHECKBOX ===== */


/* ===== COLORS ===== */
.Kapuchino { background-color: #b39f7a; }
.Molochnyy { background-color: #fffcf5; }
.Pudra { background-color: #ffb2d0; }
.Sero-goluboy { background-color: #77a1b5; }
.Sirenevyy { background-color: #7e1e9c; }
.Chernyy { background-color: #000000; }
.Alyy { background-color: #be0119; }
.Bordovyy { background-color: #b00000; }
.Lazurnyy { background-color: #007fff; }
.Myatnyy { background-color: #b6e9c8; }
.Rozovyy { background-color: #ffc0cb; }
.Krasnyy { background-color: #ff0000; }
.Vasilkovyy { background-color: #5170d7; }
.Persikovyy { background-color: #f47983; }
.Goluboy { background-color: #00bfff; }
.Shampan { background-color: #fcfcee; }
.Lilovyy { background-color: #f091a9; }
.Morskaya { background-color: #1c6b72; }
.Mokko { background-color: #6f372d; }
.Bezhevye { background-color: #e6daa6; }
.Nebesno-goluboy { background-color: #76d7ea; }
.Zolotistyy { background-color: #ffec8b; }
.Lavandovyy { background-color: #c79fef; }
.Serebro { background-color: #c5c9c7; }
.Ayvori { background-color: #fffddf; }
.Belyy { background-color: #ffffff; }
.Vanil { background-color: #fae7b5; }
.Zhemchug { background-color: #f5f5f0; }
.Cvetochnyy { background-color: #ffffff; }
/* ===== /COLORS ===== */


/* ===== CATALOG-COLOR ===== */
.catalog-color {
  position: relative;

  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;

  cursor: pointer;
}

.catalog-color__input {
  position: absolute;

  overflow: hidden;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;

  border: 0;

  white-space: nowrap;

  clip-path: inset(100%);
  clip: rect(0 0 0 0);
}

.catalog-color__swatch {
  display: block;
  width: 44px;
  height: 44px;

  border: 1px solid rgb(5 35 27 / .1);
  border-radius: 6px;
  box-shadow: 0 0 0 0 transparent;

  transition: box-shadow .2s ease, border-color .2s ease;
}

.catalog-color__input:checked ~ .catalog-color__swatch {
  border-color: var(--color-bronze);
  box-shadow: 0 0 0 2px var(--color-bronze);
}

.catalog-color__input:focus-visible ~ .catalog-color__swatch {
  outline: 2px solid var(--color-bronze);
  outline-offset: 2px;
}

.catalog-color:has(.catalog-color__input:disabled) {
  opacity: .35;

  cursor: not-allowed;
}

.catalog-color:has(.catalog-color__input:disabled) .catalog-color__text {
  color: rgb(5 35 27 / .6);
}

.catalog-color__text {
  font-family: var(--font-montserrat), sans-serif;
  font-size: 8px;
  line-height: 1.2;
  text-align: center;
  color: var(--color-dark-green);

  user-select: none;
}

.catalog-toolbar__options:has(.catalog-color) {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(50px, 1fr));
  gap: 12px;
}
/* ===== /CATALOG-COLOR ===== */


/* ===== CATALOG-PRICE-RANGE ===== */
.catalog-toolbar__options:has(.catalog-price-range__group) {
  gap: 12px;
}

.catalog-price-range__group {
  display: flex;
  flex-direction: column;
  gap: 6px;

  width: 100%;
  margin: 0;
  padding: 0;
}

.catalog-price-range__label {
  margin: 0;

  font-family: var(--font-montserrat), sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  color: rgb(5 35 27 / .6);
}

.catalog-price-range__input {
  width: 100%;
}

.catalog-toolbar__options .mse2_number_slider {
  display: none;
}
/* ===== /CATALOG-PRICE-RANGE ===== */


/* ===== CATALOG-CENY ===== */
.catalog-toolbar__filter[data-filter="msoption|ceny"] .catalog-checkbox:has(input[value="Недорогие"]) {
  display: none;
}

.catalog-toolbar__filter[data-filter="msoption|ceny"] .catalog-checkbox:has(input[value^="до 55"]) {
  order: 1;
}

.catalog-toolbar__filter[data-filter="msoption|ceny"] .catalog-checkbox:has(input[value^="до 75"]) {
  order: 2;
}

.catalog-toolbar__filter[data-filter="msoption|ceny"] .catalog-checkbox:has(input[value^="до 100"]) {
  order: 3;
}

.catalog-toolbar__filter[data-filter="msoption|ceny"] .catalog-checkbox:has(input[value^="Самые"]) {
  order: 4;
}
/* ===== /CATALOG-CENY ===== */


/* ===== CATALOG-META ===== */
.catalog-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

@media (max-width: 767.98px) {
  .catalog-meta {
    order: -1;

    flex-wrap: nowrap;
    gap: 24px;

    margin-top: 0;
    margin-bottom: 0;
  }
}

.catalog-meta__filters-trigger {
  display: none;
}

@media (max-width: 767.98px) {
  .catalog-meta__filters-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    margin-right: auto;
    padding: 0;

    font-family: var(--font-montserrat), sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.1;
    text-transform: uppercase;
    color: var(--color-dark-green);

    background: none;
    border: none;
    border-radius: 0;

    transition: color .2s ease;

    cursor: pointer;
  }

  .catalog-meta__filters-trigger--open {
    color: var(--color-bronze);
  }
}

.catalog-meta__filters-trigger-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.catalog-meta__count {
  font-family: var(--font-montserrat), sans-serif;
  font-size: 14px;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--color-dark-green);
}

.catalog-meta__sort {
  position: relative;

  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.catalog-meta__sort-label {
  font-family: var(--font-montserrat), sans-serif;
  font-size: 14px;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--color-dark-green);
}

@media (max-width: 767.98px) {
  .catalog-meta__sort-label {
    display: none;
  }
}

.catalog-meta__sort-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  padding: 0;

  font-family: var(--font-montserrat), sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--color-dark-green);

  background: none;
  border: none;
  border-radius: 0;

  transition: color .2s ease;

  cursor: pointer;
}

@media (hover: hover) and (pointer: fine) {
  .catalog-meta__sort-trigger:hover {
    color: var(--color-bronze);
  }
}

.catalog-meta__sort--open .catalog-meta__sort-trigger {
  color: var(--color-bronze);
}

.catalog-meta__sort-current {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 767.98px) {
  .catalog-meta__sort-current {
    display: none;
  }
}

.catalog-meta__sort-arrow {
  flex-shrink: 0;
  color: #5f5f5f;

  transition: transform .2s ease;
}

@media (max-width: 767.98px) {
  .catalog-meta__sort-arrow {
    display: none;
  }
}

.catalog-meta__sort--open .catalog-meta__sort-arrow {
  transform: rotate(180deg);
}

.catalog-meta__sort-icon {
  display: none;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

@media (max-width: 767.98px) {
  .catalog-meta__sort-icon {
    display: block;
  }
}

.catalog-meta__sort-options {
  position: absolute;
  z-index: 20;
  top: calc(100% + 8px);
  right: 0;

  display: flex;
  flex-direction: column;
  gap: 4px;

  min-width: 220px;
  padding: 12px;

  background-color: var(--color-white);
  border: 1px solid rgb(180 125 50 / .15);
  border-radius: 6px;
  box-shadow: 0 8px 24px rgb(5 35 27 / .08);
}

.catalog-meta__sort-options[hidden] {
  display: none;
}

.catalog-meta__sort-link {
  display: block;

  padding: 6px 8px;

  font-family: var(--font-montserrat), sans-serif;
  font-size: 14px;
  line-height: 1.4;
  text-decoration: none;
  color: var(--color-dark-green);

  border-radius: 4px;

  transition: background-color .2s ease, color .2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .catalog-meta__sort-link:hover {
    background-color: var(--color-light-bronze);
    color: var(--color-bronze);
  }
}
/* ===== /CATALOG-META ===== */


/* ===== CATALOG-GRID ===== */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;

  margin-top: 0;
}

.catalog-grid#mse2_results {
  margin-bottom: 0;
}

@media (max-width: 1279.98px) {
  .catalog-grid {
    gap: 20px;
  }
}

@media (max-width: 991.98px) {
  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}

@media (max-width: 767.98px) {
  .catalog-grid {
    grid-template-columns: minmax(0, 1fr);

    margin-top: 24px;
  }
}
/* ===== /CATALOG-GRID ===== */


/* ===== CATALOG-PAGINATION ===== */
.catalog-pagination {
  display: flex;
  justify-content: center;

  margin-top: 0;
}

@media (max-width: 991.98px) {
  .catalog-pagination {
    margin-top: 48px;
  }
}

@media (max-width: 575.98px) {
  .catalog-pagination {
    margin-top: 32px;
  }
}
/* ===== /CATALOG-PAGINATION ===== */


/* ===== FAVORITES ===== */
.favorites__content {
  margin-top: 32px;
}

@media (max-width: 767.98px) {
  .favorites__content {
    margin-top: 24px;
  }
}

.favorites-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;

  margin-top: 32px;
  padding: 64px 16px;

  font-family: "Montserrat", sans-serif;
  text-align: center;
  color: var(--color-dark-green);

  background-color: #f9f9f9;
  border-radius: 12px;
}

@media (max-width: 767.98px) {
  .favorites-empty {
    padding: 40px 16px;
  }
}

.favorites-empty__icon {
  display: block;

  width: 56px;
  height: 56px;

  color: var(--color-bronze);
}

.favorites-empty__title {
  margin: 0;

  font-size: 22px;
  font-weight: 500;
  line-height: 1.3;
}

@media (max-width: 767.98px) {
  .favorites-empty__title {
    font-size: 18px;
  }
}

.favorites-empty__text {
  max-width: 480px;
  margin: 0;

  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;

  opacity: .7;
}

@media (max-width: 767.98px) {
  .favorites-empty__text {
    font-size: 14px;
  }
}
/* ===== /FAVORITES ===== */


/* ===== PRODUCT-DETAIL ===== */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 991.98px) {
  .product-detail {
    position: relative;

    grid-template-columns: 1fr;
  }
}


.product-detail__gallery {
  min-width: 0;
}


.product-detail__info {
  display: flex;
  flex-direction: column;
  gap: 24px;

  min-width: 0;
}


.product-detail__head {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (max-width: 767.98px) {
  .product-detail__head {
    gap: 12px;
  }
}


.product-detail__title {
  margin: 0;

  font-family: var(--font-montserrat), sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--color-dark-green);
}

@media (max-width: 767.98px) {
  .product-detail__title {
    font-size: 20px;
  }
}


.product-detail__sku-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;

  font-family: var(--font-montserrat), sans-serif;
  font-size: 16px;
  line-height: 1.4;
  color: var(--color-dark-green);
}

@media (max-width: 767.98px) {
  .product-detail__sku-row {
    order: -1;

    font-size: 14px;
    letter-spacing: -0.01em;
  }
}


.product-detail__stock {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  color: var(--color-green);
}

.product-detail__stock::before {
  content: "";

  display: block;

  width: 6px;
  height: 6px;

  background-color: var(--color-green);
  border-radius: 50%;
}

.product-detail__stock--out {
  color: var(--color-bronze);
}

.product-detail__stock--out::before {
  background-color: var(--color-bronze);
}


.product-detail__offer {
  display: flex;
  align-items: flex-end;
  gap: 24px;
}

@media (max-width: 767.98px) {
  .product-detail__offer {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}


.product-detail__price-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}


.product-detail__price-old {
  font-family: var(--font-montserrat), sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-dark-green);

  opacity: 0.5;
}


.product-detail__price {
  margin: 0;

  font-family: var(--font-montserrat), sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--color-dark-green);
}


.product-detail__price-note {
  max-width: 251px;
  margin: 0;

  font-family: var(--font-montserrat), sans-serif;
  font-size: 12px;
  line-height: 1.35;
  color: var(--color-dark-green);

  opacity: 0.5;
}

@media (max-width: 767.98px) {
  .product-detail__price-note {
    max-width: none;
  }
}


.product-detail__form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}


.product-detail__options {
  display: flex;
  align-items: flex-start;
  gap: 48px;
}

@media (max-width: 767.98px) {
  .product-detail__options {
    flex-direction: column;
    gap: 24px;
  }
}


.product-detail__option {
  display: flex;
  flex-direction: column;
  gap: 12px;
}


.product-detail__option-label {
  font-family: var(--font-montserrat), sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--color-dark-green);
}


.product-detail__option-values {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}


.product-detail__color-swatch {
  display: block;

  width: 36px;
  height: 36px;

  border: 1px solid rgba(5, 35, 27, 0.1);
  border-radius: 6px;
}


.product-detail__size-text {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 36px;
  height: 36px;

  font-family: var(--font-montserrat), sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.35;
  text-align: center;
  color: var(--color-dark-green);

  border: 1px solid var(--color-bronze);
  border-radius: 6px;
}


.product-detail__promo {
  padding: 24px;

  background-color: var(--color-light-bronze);
  border-radius: 12px;
}

@media (max-width: 767.98px) {
  .product-detail__promo {
    padding: 16px;
  }
}


.product-detail__promo-list {
  margin: 0;
  padding-left: 24px;

  font-family: var(--font-montserrat), sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-dark-green);

  list-style: disc;
}

@media (max-width: 767.98px) {
  .product-detail__promo-list {
    font-size: 14px;
  }
}


.product-detail__cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

@media (max-width: 767.98px) {
  .product-detail__cta {
    gap: 6px;
  }
}


.product-detail__cta .button {
  flex-shrink: 0;
}

@media (max-width: 991.98px) {
  .product-detail__cta .button {
    flex: 1 1 0;

    min-width: 0;
  }
}

@media (max-width: 767.98px) {
  .product-detail__cta .button {
    padding: 12px 8px;

    font-size: 14px;
  }
}


.product-detail__icon-btn {
  position: relative;

  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;

  width: 48px;
  height: 48px;
  padding: 10px;

  color: var(--color-dark-green);

  background:
      linear-gradient(#ffffff, #ffffff) padding-box,
      linear-gradient(to bottom, #ece9e8, #b9ac92) border-box;
  border: 1px solid transparent;
  border-radius: 6px;

  transition: color 0.2s ease;

  cursor: pointer;
}

.product-detail__icon-btn svg {
  display: block;

  width: 24px;
  height: 24px;
}

.product-detail__icon-btn.product-card__icon-btn--fav[aria-pressed="true"] {
  color: var(--color-bronze);
}


.product-detail__gallery-back {
  display: none;
}

/* На планшетах и мобильных кнопка «Назад» уходит в левый верхний угол фото,
   а иконки «избранное» и «поделиться» — в правый (галерея тут идёт сверху). */
@media (max-width: 991.98px) {
  .product-detail__icon-btn {
    color: #ffffff;

    background: none;
    border: none;
  }

  .product-detail__icon-btn svg {
    width: 28px;
    height: 28px;
  }

  .product-detail__icon-btn svg path {
    stroke: currentColor;
  }

  .product-detail__gallery-back {
    position: absolute;
    z-index: 3;
    top: 16px;
    left: 16px;

    display: flex;
  }

  .product-detail__cta .product-card__share,
  .product-detail__cta .product-card__icon-btn--fav {
    position: absolute;
    z-index: 3;
    top: 16px;
  }

  .product-detail__cta .product-card__share {
    right: 16px;
  }

  .product-detail__cta .product-card__icon-btn--fav {
    right: 72px;
  }

  .product-detail__cta .product-card__share-popover {
    top: calc(100% + 8px);
    bottom: auto;
  }
}
/* ===== /PRODUCT-DETAIL ===== */


/* ===== PRODUCT-GALLERY ===== */
.product-gallery {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
}

@media (max-width: 1279.98px) {
  .product-gallery {
    grid-template-columns: 1fr;
  }
}


.product-gallery__thumbs {
  aspect-ratio: 120 / 638;
}

@media (max-width: 1279.98px) {
  .product-gallery__thumbs {
    display: none;
  }
}


.product-gallery__thumb {
  overflow: hidden;

  aspect-ratio: 120 / 150;

  border: 2px solid transparent;
  border-radius: 12px;
  opacity: 1;

  transition: border-color 0.2s ease;

  cursor: pointer;
}

.product-gallery__thumb.swiper-slide-thumb-active {
  border-color: var(--color-bronze);
}


.product-gallery__thumb-image {
  display: block;

  width: 100%;
  height: 100%;
  opacity: 1;

  object-fit: cover;
}


.product-gallery__main {
  position: relative;

  aspect-ratio: 456 / 638;
  width: 100%;
  overflow: hidden;

  border-radius: 12px;
}

@media (max-width: 991.98px) {
  .product-gallery__main {
    aspect-ratio: 343 / 450;
  }
}


.product-gallery__slide-link {
  display: block;

  width: 100%;
  height: 100%;

  cursor: zoom-in;
}


.product-gallery__slide-image {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
}


.product-gallery__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;

  transform: translateY(-50%);
}

@media (max-width: 991.98px) {
  .product-gallery__arrow {
    display: none;
  }
}

.product-gallery__arrow--prev {
  left: 16px;
}

.product-gallery__arrow--next {
  right: 16px;
}

.product-gallery__arrow.swiper-button-disabled {
  opacity: 0.4;

  pointer-events: none;
}


.product-gallery__pagination.swiper-pagination {
  position: absolute;
  bottom: 16px;
  left: 50%;
  z-index: 2;

  display: flex;
  gap: 4px;

  width: auto;
  transform: translateX(-50%);
}

.product-gallery__pagination.swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0;

  background-color: var(--color-white);
  border-radius: 50%;
  opacity: 0.5;

  transition: opacity 0.2s ease;
}

.product-gallery__pagination.swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}
/* ===== /PRODUCT-GALLERY ===== */


/* ===== PRODUCT-TABS ===== */
.product-tabs {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

@media (max-width: 991.98px) {
  .product-tabs {
    gap: 24px;
  }
}

@media (max-width: 767.98px) {
  .product-tabs {
    gap: 12px;
  }
}


.product-tabs__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

@media (max-width: 1279.98px) {
  .product-tabs__nav {
    flex-wrap: nowrap;

    overflow-x: auto;

    scrollbar-width: none;
  }

  .product-tabs__nav::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .product-tabs__nav {
    display: none;
  }
}


.product-tabs__nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 10px 26px;

  font-family: var(--font-montserrat), sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  white-space: nowrap;
  color: var(--color-dark-green);

  background: none;
  border: none;
  border-bottom: 1px solid var(--color-dark-green);
  opacity: 0.5;

  transition: opacity 0.2s ease;

  cursor: pointer;
}

.product-tabs__nav-btn.is-active {
  opacity: 1;
}


.product-tabs__items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 768px) {
  .product-tabs__items {
    display: block;
  }
}


.product-tabs__item-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  width: 100%;
  height: 48px;
  padding: 15px 24px;

  font-family: var(--font-montserrat), sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  text-align: left;
  color: var(--color-dark-green);

  background: none;
  border: 1px solid var(--color-bronze);
  border-radius: 6px;

  cursor: pointer;
}

@media (min-width: 768px) {
  .product-tabs__item-toggle {
    display: none;
  }
}


.product-tabs__item-chevron {
  flex-shrink: 0;

  transition: transform 0.3s ease;
}

.product-tabs__item-toggle[aria-expanded="true"] .product-tabs__item-chevron {
  transform: rotate(180deg);
}


.product-tabs__item-body {
  overflow: hidden;

  max-height: 0;

  transition: max-height 0.3s ease;
}

.product-tabs__item.is-active .product-tabs__item-body {
  max-height: 2400px;
}

@media (min-width: 768px) {
  .product-tabs__item-body {
    overflow: visible;

    display: none;

    max-height: none;
  }

  .product-tabs__item.is-active .product-tabs__item-body {
    display: block;
  }
}


.product-tabs__item-content {
  display: flex;
  flex-direction: column;
  gap: 24px;

  padding-top: 24px;
}

@media (max-width: 767.98px) {
  .product-tabs__item-content {
    gap: 12px;

    padding-top: 12px;
  }
}


.product-tabs__heading {
  margin: 0;

  font-family: var(--font-montserrat), sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--color-dark-green);
}

@media (max-width: 767.98px) {
  .product-tabs__heading {
    font-size: 20px;
  }
}


.product-tabs__subheading {
  margin: 0;

  font-family: var(--font-montserrat), sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-dark-green);
}

@media (max-width: 767.98px) {
  .product-tabs__subheading {
    font-size: 16px;
  }
}


.product-tabs__text {
  margin: 0;

  font-family: var(--font-montserrat), sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-dark-green);
}

@media (max-width: 767.98px) {
  .product-tabs__text {
    font-size: 14px;
    letter-spacing: -0.01em;
  }
}


.product-tabs__list {
  margin: 0;
  padding-left: 24px;

  font-family: var(--font-montserrat), sans-serif;
  font-size: 16px;
  line-height: 1.4;
  color: var(--color-dark-green);

  list-style: disc;
}

ol.product-tabs__list {
  list-style: decimal;
}

@media (max-width: 767.98px) {
  .product-tabs__list {
    font-size: 14px;
  }
}


.product-tabs__specs {
  margin: 0;
  padding-left: 24px;

  font-family: var(--font-montserrat), sans-serif;
  font-size: 16px;
  line-height: 1.4;
  color: var(--color-dark-green);

  list-style: disc;
}

@media (max-width: 767.98px) {
  .product-tabs__specs {
    font-size: 14px;
  }
}


.product-tabs__table-wrap {
  overflow-x: auto;
}


.product-tabs__table {
  width: 100%;

  font-family: var(--font-montserrat), sans-serif;
  font-size: 14px;
  line-height: 1.4;
  color: var(--color-dark-green);

  border-collapse: collapse;
}

.product-tabs__table th,
.product-tabs__table td {
  padding: 12px 16px;

  text-align: left;

  border-bottom: 1px solid rgba(5, 35, 27, 0.1);
}

.product-tabs__table th {
  font-weight: 500;
}
/* ===== /PRODUCT-TABS ===== */


/* ===== RELATED-PRODUCTS ===== */
.related-products__slider {
  overflow: hidden;

  width: 100%;
}


.related-products__slider .swiper-slide {
  height: auto;
}


.related-products__slider .product-card {
  height: 100%;
}
/* ===== /RELATED-PRODUCTS ===== */


/* ===== TEXT-CONTENT ===== */
.text-content a {
  color: var(--primary-color);
}

.text-content h2 {
  font-size: 24px;
}

/* ===== /TEXT-CONTENT ===== */


/* ===== ARTICLE-META ===== */
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;

  margin-top: 16px;
}

.article-meta__item {
  margin: 0;

  font-family: var(--font-montserrat), sans-serif;
  font-size: 14px;
  line-height: 1.4;
  color: rgb(5 35 27 / .5);
}

.article-meta__value {
  color: var(--color-dark-green);
}
/* ===== /ARTICLE-META ===== */


/* ===== ARTICLE-IMAGE ===== */
.article-image {
  display: block;

  width: 100%;
  height: auto;
  margin: 48px auto;

  border-radius: 12px;
}
/* ===== /ARTICLE-IMAGE ===== */


/* ===== VACANCIES ===== */
.vacancies {
  display: flex;
  flex-direction: column;
  gap: 24px;

  margin-top: 48px;
}

@media (max-width: 991.98px) {
  .vacancies {
    margin-top: 24px;
  }
}

@media (max-width: 767.98px) {
  .vacancies {
    gap: 12px;
  }
}

.vacancy-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

@media (max-width: 767.98px) {
  .vacancy-card {
    gap: 12px;
  }
}

.vacancy-card__title {
  margin: 0;
}

.vacancy-card__title a {
  text-decoration: none;
  color: var(--color-dark-green);

  transition: 0.32s color ease;
}

@media (hover: hover) and (pointer: fine) {
  .vacancy-card__title a:hover {
    color: var(--primary-color);
  }
}

.vacancy-card__date {
  margin: 0;

  font-size: 14px;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--primary-color);
}

.vacancy-card__excerpt {
  margin: 0;

  font-size: 16px;
  line-height: 1.4;
  color: var(--color-dark-green);
}

@media (max-width: 767.98px) {
  .vacancy-card__excerpt {
    font-size: 14px;
  }
}

.vacancy-card__btn {
  width: auto;
  padding: 12px 24px;
}

@media (max-width: 575.98px) {
  .vacancy-card__btn {
    width: 100%;
  }
}
/* ===== /VACANCIES ===== */


/* ===== BRANDS-LIST ===== */
.brands-list {
  display: flex;
  flex-direction: column;
  gap: 80px;

  margin-top: 48px;
}

@media (max-width: 991.98px) {
  .brands-list {
    gap: 60px;
  }
}

@media (max-width: 767.98px) {
  .brands-list {
    gap: 40px;

    margin-top: 24px;
  }
}

.brands-list__item {
  display: flex;
  align-items: center;
  gap: 48px;
}

@media (max-width: 991.98px) {
  .brands-list__item {
    gap: 32px;
  }
}

@media (max-width: 767.98px) {
  .brands-list__item {
    flex-direction: column;
    gap: 24px;
  }
}

.brands-list__item--reverse {
  flex-direction: row-reverse;
}

@media (max-width: 767.98px) {
  .brands-list__item--reverse {
    flex-direction: column;
  }
}

.brands-list__image-wrap {
  flex: 0 0 32%;

  border-radius: 12px;

  overflow: hidden;
}

@media (max-width: 767.98px) {
  .brands-list__image-wrap {
    flex: 0 0 auto;

    width: 100%;
    max-width: 320px;
  }
}

.brands-list__image {
  display: block;
  width: 100%;
  height: auto;

  object-fit: cover;
}

.brands-list__content {
  flex: 1 1 0;

  min-width: 0;
}

.brands-list__title {
  margin: 0 0 24px;
}

@media (max-width: 767.98px) {
  .brands-list__title {
    margin-bottom: 12px;
  }
}

.brands-list__text {
  margin: 0 0 32px;
}

.brands-list__text p {
  margin: 0;
}

.brands-list__text p + p {
  margin-top: 12px;
}

@media (max-width: 767.98px) {
  .brands-list__text {
    margin-bottom: 24px;
  }
}

.brands-list__button {
  width: fit-content;
}

@media (max-width: 767.98px) {
  .brands-list__button {
    width: 100%;
  }
}
/* ===== /BRANDS-LIST ===== */


/* ===== PRINT ===== */
@media print {
  body > *:not(.contacts) {
    display: none !important;
  }

  .page {
    padding-top: 0;
  }

  .contacts {
    padding-top: 0;
    padding-bottom: 0;
  }

  .breadcrumbs,
  .contacts__map,
  .contacts__metro,
  .contacts-list__item--no-print {
    display: none;
  }

  .contacts__head {
    display: block;
  }

  .page-title {
    margin-bottom: 24px;

    font-size: 32px;
  }

  .contacts__info {
    display: block;
  }

  .contacts-list--primary {
    margin-bottom: 16px;
  }

  a.contacts-list__text {
    color: var(--color-dark-green);
  }
}
/* ===== /PRINT ===== */
