@font-face {
  font-family: "BlinkMacSystemFont-Regular";
  src: url("../assets/fonts/fonts/blinkmacsystemfont-regular.woff2");
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li {
  list-style: none;
}

body {
  font-family: "Inter", system-ui, -apple-system, "BlinkMacSystemFont-Regular", "Segoe UI", Roboto, sans-serif;
  color: #111;
  background: #ffffff;
  overflow-x: hidden;
}

.rating {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  height: 20px;
  gap: 4px;
}
.rating-stars {
  display: flex;
  gap: 2px;
}
.rating-count {
  letter-spacing: 0.02em;
  font-weight: 500;
  font-size: 12px;
  color: #435450;
}

.overlay {
  display: none;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.2078431373);
  z-index: 10;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

img {
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.profile {
  display: none;
}
@media screen and (max-width: 1023px) {
  .profile {
    display: block;
  }
}

.basket {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
}

.centered__container {
  width: 100%;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}

.container {
  padding: 0 45px;
  max-width: 1920px;
  margin: 0 auto;
}
@media screen and (max-width: 1920px) {
  .container {
    max-width: unset;
  }
}
@media screen and (max-width: 1023px) {
  .container {
    padding: 0 20px;
  }
}

button, input {
  font: inherit;
}

.section {
  margin-top: 70px;
}
.section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.section__title {
  font-size: 28px;
  margin-right: 15px;
  margin-bottom: 5px;
}
.section__action {
  margin-bottom: 5px;
}
.section__action::after {
  content: "";
  background-color: #000;
  margin-top: 3px;
  display: block;
  height: 2px;
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .section__title {
    font-size: 24px;
  }
}
@media screen and (max-width: 426px) {
  .section__action {
    font-size: 14px;
  }
}

.topbar-slider {
  position: relative;
  width: 100%;
  background: #4c5c57;
  overflow: hidden;
}
.topbar-slider * {
  cursor: default !important;
}
.topbar-slider__wrapper {
  display: flex;
}

.topbar-block__slider-stop .stop-slider {
  cursor: pointer !important;
  background: transparent;
  border: none;
  outline: none;
  position: absolute;
  top: 5px;
  right: 35px;
}

.topbar-card {
  width: 100%;
  min-width: 0;
  flex-shrink: 0;
}
.topbar-card__block {
  position: relative;
  width: 100%;
  cursor: pointer;
  display: inline-block;
}
.topbar-card__text {
  text-align: center;
  color: #fff;
  font-size: 13px;
  padding: 8px 0;
}

.cart {
  width: 100%;
  max-width: 605px;
  height: 100vh;
  background: #fff;
  display: flex;
  flex-direction: column;
  border-left: 1px solid #e5e5e5;
  position: fixed;
  top: 0;
  right: -650px;
  transition: 0.2s;
  z-index: 15;
}
.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px;
  border-bottom: 1px solid #eee;
}
.cart-header__title {
  font-size: 16px;
  font-weight: 500;
}
.cart-header__close {
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
}
.cart-progress {
  text-align: center;
  margin-top: 20px;
  padding: 0 30px;
}
.cart-progress__text {
  margin-bottom: 15px;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.cart-progress__bar {
  height: 4px;
  background: #eee;
  border-radius: 2px;
  overflow: hidden;
  max-width: 395px;
  margin: auto;
}
.cart-progress__fill {
  display: block;
  height: 100%;
  width: 100%;
  background: #2f4f3e;
}
.cart-list {
  padding: 0px 30px;
}
.cart-lists {
  flex: 1;
  overflow-y: auto;
  margin-top: 30px;
}
.cart-item {
  padding: 16px 0;
  border-bottom: 1px solid #eee;
}
.cart-item__bottom {
  text-align: right;
}
.cart-item__remove {
  background: none;
  border: none;
  font-size: 12px;
  color: #777;
  cursor: pointer;
  letter-spacing: 0.1em;
}
.cart-item__remove::after {
  content: "";
  background-color: #000;
  margin-top: 3px;
  display: block;
  height: 2px;
  width: 100%;
}
.cart-item__top {
  display: flex;
  gap: 12px;
}
.cart-item__image {
  width: 120px;
  height: 120px;
}
.cart-item__image img {
  width: 100%;
  height: 100%;
}
.cart-item__content {
  flex: 1;
}
.cart-item__articul {
  font-size: 14px;
  display: block;
}
.cart-item__title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.cart-item__volume {
  font-size: 12px;
  color: #777;
  letter-spacing: 0.1em;
  margin-top: 5px;
  margin-bottom: 5px;
  display: inline-block;
}
.cart-item__controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}
.cart-item__pricing {
  text-align: right;
}
.cart-item__price {
  font-size: 14px;
  font-weight: 500;
}
.cart .quantity {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cart .quantity__btn {
  width: 24px;
  height: 24px;
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
}
.cart .quantity__value {
  font-size: 14px;
}
.cart-samples {
  margin: 16px;
  padding: 12px;
  width: calc(100% - 32px);
  background: #f6f6f6;
  border: none;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}
.cart-summary {
  padding: 16px;
  border-top: 1px solid #eee;
}
.cart-summary__row {
  display: flex;
  justify-content: space-between;
  font-weight: 500;
}
.cart-summary__note {
  margin-top: 6px;
  font-size: 14px;
  color: #777;
  letter-spacing: 0.02em;
}
.cart .cart-footer {
  padding: 16px;
}
.cart .cart-footer__checkout {
  width: 100%;
  display: inline-block;
  text-align: center;
  padding: 14px;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: 14px;
  cursor: pointer;
  letter-spacing: 0.02em;
}

.search {
  width: 100%;
  max-width: 560px;
}
.search__wrap {
  position: relative;
}
.search__input {
  width: 100%;
  font-size: 17px;
  border-radius: 10px;
  background-color: #f5f4f4;
  border: 2px solid rgba(0, 0, 0, 0);
  padding: 7px 30px 7px 12px;
  letter-spacing: 0.04em;
}
.search__input:focus {
  border: 2px solid #000;
  opacity: 1 !important;
}
.search__svg {
  position: absolute;
  top: 11px;
  right: 7px;
}
@media screen and (max-width: 700px) {
  .search {
    display: none;
  }
}

.search-burger {
  height: 0;
  width: 100%;
  padding: 0 20px;
  overflow: hidden;
  transition: 0.5s;
  position: absolute;
  background-color: #fff;
}
.search-burger.active {
  height: 63px;
  padding: 12px 20px;
}
.search-burger__svg {
  display: none;
  justify-content: flex-end;
  width: 100%;
}
@media screen and (max-width: 700px) {
  .search-burger__svg {
    display: flex;
  }
}

.header {
  position: sticky;
  top: 0;
  z-index: 7;
  width: 100%;
  background-color: #fff;
  padding-top: 15px;
  border-bottom: 1px solid #eee;
}
.header hr {
  height: 1px;
  background-color: #eee;
  border: none;
  margin-top: 15px;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.header__actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  font-size: 12px;
}
.header__actions span {
  cursor: pointer;
  letter-spacing: 0.1em;
  font-size: 13px;
  height: 20px;
}
@media screen and (max-width: 1023px) {
  .header {
    padding-bottom: 15px;
  }
  .header hr {
    display: none;
  }
}
@media screen and (max-width: 350px) {
  .header__logo-svg {
    width: 130px;
  }
}

.submenu__blocks {
  padding: 45px 50px;
  display: none;
  justify-content: space-between;
  gap: 2px;
  width: 100%;
  position: fixed;
  left: 0px;
  background-color: #ffffff;
  border: 1px solid #ccc;
}
.submenu__block {
  display: flex;
  gap: 40px;
  width: 50%;
}
.submenu__block--img {
  justify-content: flex-end;
}
.submenu__item {
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  font-size: 14px;
}
.submenu__item--title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 40px;
  letter-spacing: 0.1em;
}
.submenu__img {
  width: 100%;
  max-width: 430px;
  height: 390px;
}
.submenu__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.submenu__imgtitle {
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 25px;
}
@media screen and (max-width: 1850px) {
  .submenu__card {
    max-width: 360px;
  }
  .submenu__img {
    height: 325px;
  }
}
@media screen and (max-width: 1620px) {
  .submenu__card {
    max-width: 305px;
  }
  .submenu__img {
    max-width: 305px;
    height: 275px;
  }
}
@media screen and (max-width: 1440px) {
  .submenu__card {
    max-width: 430px;
  }
  .submenu__img {
    max-width: 430px;
    height: 390px;
  }
  .submenu__block--ul {
    width: 100%;
  }
  .submenu__card--2 {
    display: none;
  }
}
@media screen and (max-width: 1336px) {
  .submenu__card {
    max-width: 350px;
  }
  .submenu__img {
    max-width: 350px;
    height: 300px;
  }
}
@media screen and (max-width: 1232px) {
  .submenu__card {
    max-width: 275px;
  }
  .submenu__img {
    max-width: 275px;
    height: 248px;
  }
}

.nav {
  position: relative;
  border-bottom: 1px solid #eee;
}
.nav__list {
  display: flex;
  justify-content: center;
}
.nav__item {
  border-bottom: 2px solid rgba(0, 0, 0, 0);
}
.nav__item:hover {
  border-bottom: 2px solid #000000;
}
.nav__item:hover .submenu__blocks {
  display: flex;
}
.nav__link {
  padding: 24px 16px;
  display: inline-block;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero .swiper {
  position: relative;
}
.hero .swiper-slide {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  max-width: 1920px;
  max-height: 810px;
  aspect-ratio: 4/2;
  background-size: cover;
}
.hero .swiper-card__block {
  width: 100%;
  height: 100%;
}
.hero .swiper__img-block {
  width: 100%;
  height: 100%;
}
.hero .swiper__img-block img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero .swiper__img-block video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero .swiper__textBlock {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 48px;
  max-width: 400px;
}
.hero .swiper__textBlock_kicker {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}
.hero .swiper__textBlock_title {
  font-size: 36px;
  margin-bottom: 16px;
  line-height: 36px;
  letter-spacing: 0.72px;
}
.hero .swiper__textBlock_desc {
  line-height: 1.5;
  margin-bottom: 24px;
  color: #333;
  letter-spacing: 0.16px;
}
.hero .swiper__textBlock_btn {
  display: inline-block;
  padding: 14px 24px;
  background: #111;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.05rem;
  border-radius: 30px;
}
.hero .swiper .hero-slider__control-btns {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  z-index: 2;
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: calc(100% - 20px);
}
.hero .swiper__buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.hero .swiper__button, .hero .swiper-video__btn {
  cursor: pointer;
  width: 55px;
  height: 55px;
  background-color: #8E8E8E;
  border: 1px solid #ccc;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero .swiper__button.swiper-button-disabled {
  display: none;
}
.hero .swiper-video__btn {
  display: none;
}
@media screen and (max-width: 1440px) {
  .hero .swiper-slide {
    max-height: 640px;
  }
}
@media screen and (max-width: 1200px) {
  .hero .swiper-slide {
    max-height: 530px;
  }
}
@media screen and (max-width: 1023px) {
  .hero .swiper-slide {
    aspect-ratio: 1/1;
    max-height: 450px;
  }
  .hero .swiper__textBlock {
    display: none;
  }
}

.text-swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: none;
}
.text-swiper__wrapper {
  display: flex;
}
@media screen and (max-width: 1023px) {
  .text-swiper {
    display: block;
  }
}

.text-swiper-card {
  width: 100%;
  min-width: 0;
  flex-shrink: 0;
}
.text-swiper-card .text-swiper-card__block {
  width: 100%;
  padding: 40px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.text-swiper-card .text-swiper__textBlock {
  max-width: 100%;
}
.text-swiper-card .text-swiper__textBlock_kicker {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.text-swiper-card .text-swiper__textBlock_title {
  font-size: 26px;
  margin-bottom: 16px;
  font-weight: 400;
}
.text-swiper-card .text-swiper__textBlock_desc {
  font-size: 14px;
  line-height: 21.008px;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
  color: #181a1b;
}
.text-swiper-card .text-swiper__textBlock_btn {
  display: inline-block;
  padding: 14px 24px;
  background: #181a1b;
  color: #fff;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.1225px;
  border-radius: 30px;
}

.split, .findSpa {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background-color: #f7f7f7;
}
.split__image, .findSpa__image {
  width: 100%;
  max-width: 950px;
}
.split__image img, .findSpa__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.split__image--right, .findSpa__image--right {
  margin-left: auto;
}
.split__content, .findSpa__content {
  max-width: 672px;
  padding: 48px;
}
.split__kicker, .findSpa__kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  font-weight: 700;
  color: #444;
}
.split__title, .findSpa__title {
  font-size: 36px;
  margin-bottom: 25px;
  letter-spacing: 0.05em;
}
.split__text, .findSpa__text {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 35px;
  letter-spacing: 0.04em;
}
.split__btn, .findSpa__btn {
  display: inline-block;
  padding: 14px 24px;
  background: #111;
  color: #fff;
  border-radius: 25px;
  font-size: 14px;
}
.split__btn:hover, .findSpa__btn:hover {
  background-color: #435450;
}
@media screen and (max-width: 1500px) {
  .split__image img, .findSpa__image img {
    max-height: 550px;
  }
}
@media screen and (max-width: 1023px) {
  .split, .findSpa {
    display: flex;
    flex-wrap: wrap;
  }
  .split__content, .findSpa__content {
    order: 2;
    padding: 64px 20px;
  }
  .split__title, .findSpa__title {
    font-size: 22px;
    margin-bottom: 16px;
  }
  .split__text, .findSpa__text {
    font-size: 15px;
    margin-bottom: 16px;
  }
  .split__image, .findSpa__image {
    aspect-ratio: 1/1;
    max-width: 100%;
    order: 1;
  }
  .split__image img, .findSpa__image img {
    max-height: unset;
  }
}

.promo {
  margin-top: 60px;
}
.promo-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.promo-slider__wrapper {
  display: flex;
}
.promo__control-btn {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: #000;
  width: 48px;
  height: 48px;
  display: none;
}
.promo__control-btn.swiper-button-disabled {
  display: none;
}
.promo-prev {
  left: 5px;
}
.promo-next {
  right: 5px;
}

.promo-card {
  width: 100%;
  min-width: 0;
  flex-shrink: 0;
}
.promo-card .promo__block {
  overflow: hidden;
  width: 100%;
  max-width: 587px;
  border-radius: 10px;
  height: 250px;
  background-color: #f7f7f7;
  display: grid;
  grid-template-columns: 1fr 1.56fr;
  align-items: center;
  gap: 15px;
}
.promo-card .promo__img {
  width: 100%;
  max-width: 250px;
  border-radius: 10px 0 0 10px;
  overflow: hidden;
}
.promo-card .promo__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.promo-card .promo__text {
  max-width: 320px;
  padding: 16px 0;
  padding-right: 10px;
}
.promo-card .promo__label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #444;
}
.promo-card .promo__title {
  margin-top: 15px;
  margin-bottom: 30px;
  letter-spacing: 0.1em;
}
.promo-card .promo__btn {
  display: inline-block;
  padding: 14px 24px;
  background: #111;
  color: #fff;
  font-size: 14px;
  border-radius: 25px;
  letter-spacing: 0.00875em;
}
@media screen and (max-width: 1800px) {
  .promo-card .promo__block {
    grid-template-columns: 1fr 1.1fr;
  }
}
@media screen and (max-width: 1439px) {
  .promo-card .promo__block {
    height: unset;
    grid-template-columns: 1fr;
    gap: 1px;
    aspect-ratio: 1/2;
    max-height: 645px;
  }
  .promo-card .promo__img {
    max-width: unset;
  }
  .promo-card .promo__text {
    max-width: unset;
    text-align: center;
    padding: 24px !important;
    font-size: 14px;
  }
  .promo-card .promo__title {
    margin-bottom: 24px;
  }
  .promo-card .promo__btn {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .promo-card .promo__block {
    max-width: unset;
    aspect-ratio: 2/3;
    max-height: unset;
  }
}
@media screen and (max-width: 420px) {
  .promo-card .promo__block {
    aspect-ratio: 2/4;
  }
}

.newsletter__inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.newsletter__form-block {
  width: 100%;
  max-width: 520px;
  height: 200px;
  overflow: hidden;
  transition: 0.5s;
}
.newsletter__title {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.04rem;
}
.newsletter__description {
  margin-top: 30px;
  margin-bottom: 35px;
  font-size: 15px;
  letter-spacing: 0.04rem;
  line-height: 24px;
}
.newsletter__form {
  display: flex;
  flex-direction: column;
}
.newsletter__input {
  position: relative;
  width: 100%;
}
.newsletter__input input {
  font-size: 17px;
  width: 100%;
  border: 1px solid #ccc;
  padding: 14px 12px;
  border-radius: 10px;
  letter-spacing: 0.04rem;
}
.newsletter__input.input__name {
  margin-top: 30px;
}
.newsletter__input .input__required {
  display: none;
  position: absolute;
  color: red;
  font-size: 12px;
  bottom: -17px;
  left: 0;
}
.newsletter__agree-block {
  color: #888;
  font-size: 13px;
  margin-top: 30px;
}
.newsletter__agree-block .agree-checkbox {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}
.newsletter__submit {
  margin-top: 20px;
  padding: 14px 24px;
  border: 0;
  background: #181a1b;
  color: #fff;
  border-radius: 30px;
  font-weight: 400;
  letter-spacing: 0.00875em;
  font-size: 15px;
  cursor: pointer;
}
@media screen and (max-width: 1000px) {
  .newsletter__inner {
    flex-wrap: wrap;
    gap: 55px;
  }
  .newsletter__form-block {
    max-width: 100%;
    height: 185px;
  }
  .newsletter__title {
    font-size: 20px;
  }
}
@media screen and (max-width: 670px) {
  .newsletter__title {
    font-size: 20px;
  }
  .newsletter__description {
    font-size: 14px;
    margin-top: 16px;
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 435px) {
  .newsletter__form-block {
    height: 180px;
  }
}
@media screen and (max-width: 400px) {
  .newsletter__form-block {
    height: 190px;
  }
}
@media screen and (max-width: 320px) {
  .newsletter__form-block {
    height: 220px;
  }
}

.products-slider, .tranquillity-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.products-slider__wrapper, .tranquillity-slider__wrapper {
  display: flex;
}
.products-prev, .tranquillity-prev {
  cursor: pointer;
  position: absolute;
  top: 34%;
  transform: translateY(-50%);
  left: 10px;
  display: flex;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: #000;
  width: 48px;
  height: 48px;
}
.products-prev .swiper-button-disabled, .tranquillity-prev .swiper-button-disabled {
  display: none;
}
.products-prev.swiper-button-disabled, .tranquillity-prev.swiper-button-disabled {
  display: none;
}
.products-next, .tranquillity-next {
  cursor: pointer;
  position: absolute;
  top: 34%;
  transform: translateY(-50%);
  right: 10px;
  display: flex;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: #000;
  width: 48px;
  height: 48px;
}
.products-next.swiper-button-disabled, .tranquillity-next.swiper-button-disabled {
  display: none;
}

.product-card, .tranquillity-card {
  width: 100%;
  min-width: 0;
  flex-shrink: 0;
}
.product-card__block, .tranquillity-card__block {
  width: 100%;
  max-width: 405px;
  cursor: pointer;
  display: inline-block;
}
.product-card__block:hover .inFavorite, .tranquillity-card__block:hover .inFavorite {
  display: block;
}
.product-card__image, .tranquillity-card__image {
  background-color: #f7f7f7;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1/1;
}
.product-card__image .lineWithImg, .tranquillity-card__image .lineWithImg {
  display: flex;
  position: absolute;
  left: 0;
  transition: 0.3s linear;
  aspect-ratio: 1/1;
  width: 100%;
}
.product-card__image .lineWithImg img, .tranquillity-card__image .lineWithImg img {
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 405px;
}
.product-card__image .inFavorite, .tranquillity-card__image .inFavorite {
  display: none;
  top: 15px;
  right: 15px;
  position: absolute;
  z-index: 1;
}
@media screen and (max-width: 800px) {
  .product-card__image:hover .lineWithImg, .tranquillity-card__image:hover .lineWithImg {
    left: 0px;
  }
}
.product-card__meta, .tranquillity-card__meta {
  margin-top: 15px;
}
.product-card__name, .tranquillity-card__name {
  letter-spacing: 0.16px;
  font-weight: 700;
  margin-bottom: 6px;
  height: 32px;
}
.product-card__name:hover, .tranquillity-card__name:hover {
  color: #435450;
}
.product-card__desc, .product-card__price, .tranquillity-card__desc, .tranquillity-card__price {
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 1.35;
  letter-spacing: 0.01em;
  height: 38px;
}
.product-card__desc, .tranquillity-card__desc {
  color: #888;
}
.product-card__price, .tranquillity-card__price {
  font-size: 16px;
  font-weight: 600;
  height: 17px !important;
}
.product-card__pill, .tranquillity-card__pill {
  width: 100%;
  text-align: center;
  border: 1px solid #111;
  border-radius: 16px;
  padding: 12px;
  font-size: 14px;
  min-width: 120px;
  letter-spacing: 0.00875em;
}
@media screen and (max-width: 1443px) {
  .product-card__pill, .tranquillity-card__pill {
    font-size: 12px;
  }
}
@media screen and (max-width: 1023px) {
  .product-card__image .inFavorite, .tranquillity-card__image .inFavorite {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .product-card__block, .tranquillity-card__block {
    max-width: unset;
  }
}

.carousel {
  position: relative;
}
.carousel__track {
  display: flex;
  gap: 18px;
  overflow: auto;
  scroll-behavior: smooth;
  padding-bottom: 8px;
}

.findSolution__concerns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}
@media screen and (max-width: 1439px) {
  .findSolution__concerns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
}
@media screen and (max-width: 1025px) {
  .findSolution__concerns {
    grid-template-columns: repeat(2, 1fr);
  }
}

.concern {
  width: 100%;
  max-width: 280px;
  height: 380px;
  border-radius: 15px;
  position: relative;
}
.concern__title {
  position: absolute;
  font-weight: 400;
  font-size: 21px;
  color: #000;
  top: 24px;
  left: 24px;
}
.concern__btn {
  position: absolute;
  bottom: 24px;
  left: 24px;
  font-size: 14px;
  letter-spacing: 0.00875em;
  padding: 14px 24px;
  background-color: #fff;
  border-radius: 27px;
}
.concern__img {
  width: 100%;
  height: 100%;
  border-radius: 9px;
  overflow: hidden;
}
.concern__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.concern__label {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: #fff;
  padding: 6px 10px;
  border-radius: 16px;
  font-size: 11px;
}
@media screen and (max-width: 1870px) {
  .concern {
    max-width: 260px;
    height: 360px;
  }
}
@media screen and (max-width: 1770px) {
  .concern {
    max-width: 240px;
    height: 340px;
  }
}
@media screen and (max-width: 1670px) {
  .concern {
    max-width: 215px;
    height: 315px;
  }
}
@media screen and (max-width: 1570px) {
  .concern {
    max-width: 200px;
    height: 300px;
  }
}
@media screen and (max-width: 1439px) {
  .concern {
    max-width: 432px;
    height: unset;
  }
}
@media screen and (max-width: 1025px) {
  .concern {
    max-width: 485px;
    height: unset;
  }
  .concern__title {
    top: 8px;
    left: 8px;
    font-size: 16px;
  }
  .concern__btn {
    bottom: 8px;
    left: 8px;
    padding: 10px 20px;
  }
}
@media screen and (max-width: 330px) {
  .concern__btn {
    font-size: 12px;
    padding: 5px 10px;
  }
}

.big-promo {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 950px;
  height: 600px;
}
.big-promos {
  display: flex;
}
.big-promo__img {
  width: 100%;
  height: 100%;
}
.big-promo__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.big-promo__overlay {
  position: absolute;
  inset: 0;
}
.big-promo__content {
  position: absolute;
  left: 48px;
  bottom: 48px;
  color: #fff;
  max-width: 320px;
}
.big-promo__kicker {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.big-promo__title {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 40px;
  line-height: 36px;
}
.big-promo__btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 25px;
  background: #fff;
  color: #111;
  font-size: 14px;
  letter-spacing: 0.00875em;
  font-weight: 400;
}
@media screen and (max-width: 1023px) {
  .big-promo {
    height: 677px;
    max-width: 100%;
  }
  .big-promos {
    flex-wrap: wrap;
  }
  .big-promo__content {
    left: 20px;
    bottom: 20px;
  }
  .big-promo__kicker {
    margin-bottom: 8px;
  }
  .big-promo__title {
    font-size: 24px;
    margin-bottom: 32px;
  }
}

.advantages__blocks {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.advantages__block {
  padding: 32px 24px;
  width: 100%;
  max-width: 405px;
  background-color: #f7f7f7;
  display: grid;
  grid-template-columns: 1fr 6fr;
  align-items: center;
  gap: 15px;
  border-radius: 10px;
}
.advantages__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #435450;
}
.advantages__title {
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 12px;
  letter-spacing: 0.1em;
}
.advantages__text {
  color: #666;
  font-size: 12px;
  line-height: 1.35;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1439px) {
  .advantages__blocks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .advantages__block {
    max-width: unset;
  }
}
@media screen and (max-width: 1820px) {
  .advantages__blocks {
    grid-template-columns: 1fr;
  }
}

.magazineComfortZone-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.magazineComfortZone-slider__wrapper {
  display: flex;
}
.magazineComfortZone-prev {
  cursor: pointer;
  position: absolute;
  top: 30%;
  transform: translateY(-50%);
  left: 5px;
  display: flex;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: #000;
  width: 48px;
  height: 48px;
}
.magazineComfortZone-prev .swiper-button-disabled {
  display: none;
}
.magazineComfortZone-prev.swiper-button-disabled {
  display: none;
}
.magazineComfortZone-next {
  cursor: pointer;
  position: absolute;
  top: 30%;
  transform: translateY(-50%);
  right: 5px;
  display: flex;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: #000;
  width: 48px;
  height: 48px;
}
.magazineComfortZone-next.swiper-button-disabled {
  display: none;
}

.magazineComfortZone-card {
  width: 100%;
  min-width: 0;
  flex-shrink: 0;
}
.magazineComfortZone-card__block {
  max-width: 405px;
  cursor: pointer;
  position: relative;
}
.magazineComfortZone-card__block:hover .magazineComfortZone-card__meta {
  color: #666;
}
.magazineComfortZone-card__block::after {
  content: "";
  height: 100%;
  position: absolute;
  width: 1px;
  background-color: #e6e7e4;
  display: block;
  right: -35px;
  top: 0;
}
.magazineComfortZone-card__image {
  overflow: hidden;
  position: relative;
  aspect-ratio: 1/1;
}
.magazineComfortZone-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.magazineComfortZone-card__meta {
  margin-top: 25px;
}
.magazineComfortZone-card__chapter {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.magazineComfortZone-card__date {
  font-size: 12px;
  color: #666;
  letter-spacing: 0.12px;
  font-weight: 400;
}
.magazineComfortZone-card__name {
  font-size: 20px;
  font-weight: 400;
  margin-top: 20px;
  margin-bottom: 20px;
}
.magazineComfortZone-card__desc {
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}
.magazineComfortZone-card__watchTime {
  display: flex;
  align-items: center;
  gap: 5px;
}
@media screen and (max-width: 767px) {
  .magazineComfortZone-card__block {
    max-width: unset;
  }
  .magazineComfortZone-card__block::after {
    right: -20px;
  }
}

.fromExperts-slider {
  position: relative;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
}
.fromExperts-slider__wrapper {
  display: flex;
}
.fromExperts-card {
  cursor: pointer;
  flex-shrink: 0;
  width: 350px;
  border-radius: 16px;
  overflow: hidden;
  transform: scale(0.9);
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 0.5;
}
.fromExperts-card video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.fromExperts-card.swiper-slide-active {
  transform: scale(1);
  opacity: 1;
}
.fromExperts-card__block {
  height: 100%;
  position: relative;
}
.fromExperts-card__block .sound__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  border-radius: 50%;
  border: none;
  position: absolute;
  width: 28px;
  height: 28px;
  top: 10px;
  right: 10px;
  background-color: #fff;
  transition: 0.1s;
  cursor: pointer;
  z-index: 5;
}
.fromExperts-card__block .sound__btn:hover {
  background-color: #fff;
}
.fromExperts-card__desc {
  display: flex;
  border-radius: 8px;
  gap: 4px;
  position: absolute;
  bottom: 15px;
  background-color: #fff;
  width: calc(100% - 20px);
  left: 10px;
  padding: 8px;
}
.fromExperts-card__desc:hover {
  color: #666;
}
.fromExperts-card__desc .desc__image {
  width: 58px;
  height: 58px;
  border-radius: 8px 0 0 8px;
  overflow: hidden;
}
.fromExperts-card__desc .desc__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.fromExperts-card__desc .desc__text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  transition: 0.1s;
  letter-spacing: 0.07em;
  font-weight: 900;
  width: calc(100% - 58px);
}
.fromExperts-card__desc .desc__text .text__title {
  text-transform: uppercase;
  margin-bottom: 4px;
  font-size: 11px;
  letter-spacing: 0.07em;
  max-width: 220px;
}
.fromExperts-card__desc .desc__text .text__price {
  font-size: 15px;
}

.navbtns__fromExperts {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: #000;
  width: 48px;
  height: 48px;
}
.navbtns__fromExperts.fromExperts-prev {
  left: 50px;
}
.navbtns__fromExperts.fromExperts-next {
  right: 50px;
}
@media screen and (max-width: 1023px) {
  .navbtns__fromExperts {
    display: none;
  }
}

.footer {
  margin-top: 60px;
  background: #4c5c57;
  color: #fff;
  padding-top: 60px;
  padding-bottom: 24px;
}
.footer__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.footer__title {
  background: none;
  border: none;
  color: #fff;
  font-size: 14px;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
  font-weight: 700;
}
.footer__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer__link {
  font-size: 15px;
  letter-spacing: 0.01em;
}
.footer__link:hover {
  color: #999;
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 24px;
  font-size: 13px;
  letter-spacing: 0.01em;
  text-align: center;
}
.footer .payment-method {
  padding-top: 55px;
  padding-bottom: 30px;
}
.footer .payment-method__icons {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .footer__col {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }
  .footer__title {
    width: 100%;
    background: none;
    border: 0;
    color: #fff;
    font-size: 13px;
    padding: 16px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    margin-bottom: 15px;
  }
  .footer__title::after {
    content: "";
    width: 10px;
    height: 10px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
    transition: 0.3s;
  }
  .footer__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-bottom: 0;
  }
  .footer__col.active .footer__content {
    max-height: 500px;
    padding-bottom: 16px;
  }
  .footer__col.active .footer__title::after {
    transform: rotate(-135deg);
  }
  .footer .payment-method {
    padding-top: 24px;
  }
  .footer .payment-method__icons {
    justify-content: center;
    flex-wrap: wrap;
  }
  .footer__bottom {
    font-size: 10px;
    padding-top: 16px;
  }
}
@media (max-width: 1023px) {
  .footer {
    margin-top: 0;
  }
}

.burger {
  display: none;
  width: 44px;
  height: 24px;
  border: 0;
  background: transparent;
  padding: 0 10px;
  cursor: pointer;
}
.burger span {
  display: block;
  height: 2px;
  background: #111;
  margin: 6px 0;
}
.burger span:first-child {
  margin-top: 3px;
}

.mnav {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
}
.mnav.is-open {
  display: block;
}
.mnav__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}
.mnav__panel {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.mnav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-bottom: 1px solid #eee;
}
.mnav__title {
  font-weight: 700;
  letter-spacing: 0.08em;
}
.mnav__close {
  border: 0;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.mnav__screen {
  display: none;
  overflow: auto;
  height: 100%;
}
.mnav__screen.is-active {
  display: block;
}
.mnav__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mnav__item {
  width: 100%;
  padding: 18px 16px;
  border: 0;
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  cursor: pointer;
  border-bottom: 1px solid #eee;
  text-align: left;
}
.mnav__subhead {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-bottom: 1px solid #eee;
}
.mnav__back {
  border: 0;
  background: transparent;
  font-size: 22px;
  cursor: pointer;
}
.mnav__subtitle {
  font-weight: 600;
}
.mnav__subcontent {
  padding: 0;
}

.macc {
  padding-left: 10px;
}
.macc__section {
  border-bottom: 1px solid #eee;
}
.macc__section.is-open .macc__btn span:last-child {
  transform: rotate(90deg);
}
.macc__btn {
  width: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 18px 16px;
  text-align: left;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.macc__btn span:last-child {
  transition: transform 200ms ease;
}
.macc__panel {
  max-height: 0;
  overflow: hidden;
  padding: 0 16px;
  transition: max-height 280ms ease, padding 280ms ease;
}
.macc__section.is-open .macc__panel {
  padding: 0 16px 14px 16px;
}
.macc__link {
  display: block;
  padding: 10px 0;
  font-size: 16px;
  color: #111;
  text-decoration: none;
}
.macc__link:hover {
  text-decoration: underline;
}

@media (max-width: 1023px) {
  .nav {
    display: none;
  }
  .burger {
    display: inline-block;
  }
  .header__actions-span {
    display: none;
  }
}/*# sourceMappingURL=main.css.map */