.main-content {
  flex: 1;
  width: 100%;
  max-width: 1230px;
  margin: 0 auto 100px;
  padding: 0 15px;
}

.breadcrumbs {
  width: 100%;
  font-family: "Montserrat", sans-serif;
  margin-top: 8px;
}

@media (min-width: 501px) {
  .breadcrumbs {
    margin-top: 20px;
  }
}

.breadcrumbs__list {
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 501px) {
  .breadcrumbs__list {
    gap: 16px;
  }
}

.breadcrumbs__item {
  display: inline-flex;
  align-items: center;
  min-height: 18px;
}

@media (min-width: 501px) {
  .breadcrumbs__item {
    min-height: 24px;
  }
}

.breadcrumbs__link,
.breadcrumbs__current {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  color: #0e0e0e;
  letter-spacing: 0;
  text-decoration: none;
  white-space: nowrap;
}

@media (min-width: 501px) {
  .breadcrumbs__link,
  .breadcrumbs__current {
    font-size: 16px;
    line-height: 24px;
  }
}

.breadcrumbs__link:focus-visible {
  outline: 2px solid #42a1ae;
  outline-offset: 3px;
}

.breadcrumbs__separator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5px;
  height: 11px;
  color: #0e0e0e;
}

.breadcrumbs__separator svg {
  display: block;
  width: 5px;
  height: 11px;
}

.extra-meet-hero {
  position: relative;
  width: 100%;
  min-height: 723px;
  margin: 20px auto 0;
  overflow: hidden;
  font-family: "Montserrat", sans-serif;
  color: #12113b;
  /* background: #fdebf5; */
  background: linear-gradient(172deg, #fff0f7 0%, #ffebf4 100%);
  border-radius: 20px;
}

@media (min-width: 501px) {
  .extra-meet-hero {
    min-height: 551px;
    margin-top: 40px;
    border-radius: 28px;
    background: linear-gradient(90deg, #fff0f7 0%, #ffd5e8 100%);
  }
}

.extra-meet-hero__head {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 259px;
  margin: 16px auto 0;
}

@media (min-width: 501px) {
  .extra-meet-hero__head {
    display: grid;
    grid-template-columns: 255px minmax(0, 1fr);
    gap: 12.1%;
    align-items: center;
    width: calc(100% - 160px);
    margin-top: 40px;
  }
}

.extra-meet-hero__brand {
  display: block;
  width: 124px;
}

@media (min-width: 501px) {
  .extra-meet-hero__brand {
    width: 255px;
  }
}

.extra-meet-hero__logo {
  display: block;
  width: 100%;
  height: auto;
}

.extra-meet-hero__title {
  margin: 20px 0 0;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
  color: #12113b;
  text-align: center;
}

@media (min-width: 501px) {
  .extra-meet-hero__title {
    margin: 0;
    font-size: 32px;
    line-height: 1.3;
  }
}

.extra-meet-hero__title-desktop {
  display: none;
}

@media (min-width: 501px) {
  .extra-meet-hero__title-desktop {
    display: block;
  }
}

.extra-meet-hero__title-mobile {
  display: block;
}

@media (min-width: 501px) {
  .extra-meet-hero__title-mobile {
    display: none;
  }
}

.extra-meet-hero__products,
.extra-meet-hero__pets {
  position: absolute;
  display: block;
  pointer-events: none;
  user-select: none;
}

.extra-meet-hero__products {
  z-index: 2;
  top: 202px;
  left: 50%;
  width: 326px;
  transform: translateX(-50%);
}

@media (min-width: 501px) {
  .extra-meet-hero__products {
    top: auto;
    bottom: 6px;
    left: 3.99%;
    width: 49.7%;
    transform: none;
  }
}

.extra-meet-hero__pets {
  z-index: 1;
  right: auto;
  bottom: -6px;
  left: 48%;
  width: 540px;
  transform: translateX(-50%);
}

@media (max-width: 399.98px) {
  .extra-meet-hero__pets {
    width: 100%;
  }
}

@media (min-width: 501px) {
  .extra-meet-hero__pets {
    top: auto;
    right: -35px;
    bottom: -6px;
    left: auto;
    width: 60.92%;
    transform: none;
  }
}

@media (min-width: 501px) and (max-width: 767.98px) {
  .extra-meet-hero {
    min-height: clamp(274px, 52vw, 400px);
  }

  .extra-meet-hero__head {
    grid-template-columns: clamp(62px, 12vw, 92px) minmax(0, 1fr);
    gap: clamp(18px, 4vw, 28px);
    align-items: start;
    width: calc(100% - 56px);
    margin-top: clamp(20px, 4vw, 32px);
  }

  .extra-meet-hero__brand {
    width: clamp(62px, 12vw, 92px);
    margin-top: 4px;
  }

  .extra-meet-hero__title {
    font-size: clamp(26px, 4.1vw, 32px);
    line-height: 1.18;
    text-align: center;
  }

  .extra-meet-hero__title-desktop {
    display: none;
  }

  .extra-meet-hero__title-mobile {
    display: block;
  }

  .extra-meet-hero__products {
    bottom: clamp(18px, 3.8vw, 30px);
    left: clamp(28px, 6vw, 52px);
    width: clamp(205px, 42vw, 300px);
  }

  .extra-meet-hero__pets {
    right: clamp(12px, 3.5vw, 32px);
    bottom: clamp(14px, 3vw, 24px);
    width: clamp(235px, 44vw, 335px);
  }
}

.extra-meet-hero__products img,
.extra-meet-hero__pets img {
  display: block;
  width: 100%;
  height: auto;
}

.meet-catalog {
  width: 100%;
  margin: 100px 0 0;
  font-family: "Montserrat", sans-serif;
  color: #0e0e0e;
}

@media (min-width: 768px) {
  .meet-catalog {
    margin-top: 150px;
  }
}

.meet-catalog__title {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  clip: rect(0 0 0 0);
}

.meet-catalog__tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

@media (min-width: 768px) {
  .meet-catalog__tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }
}

.meet-catalog__tab {
  position: relative;
  display: block;
  min-height: 160px;
  padding: 0;
  overflow: visible;
  font: inherit;
  color: #0e0e0e;
  text-align: left;
  background-color: #f4f4f4;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

@media (min-width: 768px) {
  .meet-catalog__tab {
    min-height: 191px;
  }
}

.meet-catalog__tab.is-active {
  background-color: #bbe4e9;
}

.meet-catalog__tab-picture,
.meet-catalog__tab-image {
  display: block;
}

.meet-catalog__tab-image {
  position: absolute;
  left: 4px;
  bottom: 0;
  width: auto;
  height: auto;
  max-width: none;
  pointer-events: none;
  user-select: none;
}

.meet-catalog__tab-image--wet-cats {
  width: 118px;
  height: 165px;
}

.meet-catalog__tab-image--treats-cats {
  left: 0;
  width: 139px;
  height: 174px;
}

.meet-catalog__tab-image--treats-dogs {
  left: 3px;
  width: 115px;
  height: 167px;
}

@media (min-width: 768px) {
  .meet-catalog__tab-image--wet-cats {
    left: 7px;
    width: 170px;
    height: 210px;
  }

  .meet-catalog__tab-image--treats-cats {
    left: 0;
    width: 165px;
    height: 229px;
  }

  .meet-catalog__tab-image--treats-dogs {
    left: 2px;
    width: 146px;
    height: 212px;
  }
}

.meet-catalog__tab-label {
  position: absolute;
  left: 4px;
  right: 5px;
  bottom: 5px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  max-width: none;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  color: #0e0e0e;
  text-align: center;
  white-space: nowrap;
  background-color: #ffffff;
  border: 1px solid #d8d8d8;
  border-radius: 50px;
}
@media (max-width: 399.98px) {
  .meet-catalog__tab-label {
    white-space: normal;
  }
}
@media (min-width: 768px) {
  .meet-catalog__tab-label {
    right: auto;
    bottom: 12px;
    left: 50%;
    width: auto;
    max-width: calc(100% - 24px);
    min-height: 32px;
    padding: 4px 12px;
    font-size: 16px;
    line-height: 1.5;
    transform: translateX(-50%);
  }
}

.meet-catalog__tab-arrow {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #0e0e0e;
  background-color: transparent;
  border: 1.2px solid #0e0e0e;
  border-radius: 50%;
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease;
}

@media (min-width: 768px) {
  .meet-catalog__tab-arrow {
    top: 16px;
    right: 16px;
  }
}

.meet-catalog__tab.is-active .meet-catalog__tab-arrow {
  background-color: #ffffff;
  border-color: #ffffff;
}

.meet-catalog__content {
  margin-top: 10px;
  padding: 20px 10px;
  background-color: #f4f4f4;
  border-radius: 12px;
}

@media (min-width: 768px) {
  .meet-catalog__content {
    margin-top: 20px;
    padding: 40px 20px;
  }
}

.meet-catalog__panel {
  min-width: 0;
}

.meet-catalog__panel[hidden] {
  display: none;
}

.meet-catalog__slider {
  width: 100%;
  min-width: 0;
}

.meet-catalog__wrapper {
  align-items: stretch;
}

.meet-catalog__slide {
  height: auto;
}

.meet-catalog__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 176px;
  height: 3px;
  margin: 18px auto 0;
  gap: 8px;
}

@media (min-width: 768px) {
  .meet-catalog__pagination {
    margin-top: 20px;
  }
}

.meet-catalog .meet-catalog__pagination .swiper-pagination-bullet {
  flex: 0 0 20px;
  width: 20px;
  height: 3px;
  margin: 0;
  background-color: #d8d8d8;
  border-radius: 50px;
  opacity: 1;
}

.meet-catalog .meet-catalog__pagination .swiper-pagination-bullet-active {
  flex-basis: 92px;
  background-color: #d7eff2;
}

.meet-catalog .product-line__panel.is-active:not(.product-line__placeholder) {
  width: 100%;
}

.meet-catalog .meet-product-card {
  min-height: 1088px;
}

@media (max-width: 992px) {
  .meet-catalog .meet-product-card {
    min-height: 940px;
  }
}

@media (min-width: 992px) {
  .meet-catalog .meet-product-card {
    /* grid-template-rows: auto auto 1fr auto;
    min-height: 993px; */
  }
}

.meet-catalog .meet-product-card .product-line__media {
  grid-column: 1;
}

@media (min-width: 992px) {
  .meet-catalog .meet-product-card .product-line__media {
    grid-row: 1 / -1;
  }
}

.meet-catalog .meet-product-card .product-line__title--desktop,
.meet-catalog .meet-product-card .product-line__head,
.meet-catalog .meet-product-card .product-line__description,
.meet-catalog .meet-product-card .product-line__link {
  grid-column: 2;
}

.meet-catalog .meet-product-card .product-line__title--desktop {
  grid-row: 1;
}

.meet-catalog .meet-product-card .product-line__head {
  grid-row: 2;
}

.meet-catalog .meet-product-card .product-line__description {
  grid-row: 3;
}

.meet-catalog .meet-product-card .product-line__link {
  grid-row: 4;
  margin-top: auto;
}

.meet-catalog .product-line__image-slider {
  overflow: visible;
}

.meet-catalog .product-line__image-slide {
  width: 320px;
  height: 320px;
  min-height: 294px;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .meet-catalog .product-line__image-slide {
    width: 320px;
    height: 320px;
    min-height: 299px;
  }
}

.meet-catalog .product-line__image-slide img {
  object-fit: contain;
}

.meet-product-card__video {
  display: block;
  width: 320px;
  height: 320px;
  object-fit: contain;
}

.meet-catalog .product-line__features {
  margin-top: 18px;
}

@media (min-width: 992px) {
  .meet-catalog .product-line__features {
    margin-top: 36px;
  }
}

.meet-catalog .product-line__feature-list {
  gap: 15px;
}

@media (max-width: 374.98px) {
  .meet-catalog .product-line__feature-list {
    gap: 10px;
  }
}

.meet-catalog .product-line__feature.is-active {
  color: #f8bbdf;
}

.meet-catalog .product-line__feature-label {
  background-color: #f8bbdf;
}

.meet-product-card__taste .meet-product-card__label-dot,
.meet-product-card__taste .meet-product-card__label-icon {
  flex: 0 0 auto;
}

.meet-product-card__label-dot {
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.meet-catalog .meet-product-card__label-dot--card-01-label-01 {
  background-color: #a0bce3;
}

.meet-catalog .meet-product-card__label-dot--card-02-label-01 {
  background-color: #9b7bb6;
}

.meet-catalog .meet-product-card__label-dot--card-03-label-01 {
  background-color: #f29323;
}

.meet-catalog .meet-product-card__label-dot--card-04-label-01 {
  background-color: #f6a09f;
}

.meet-catalog .meet-product-card__label-dot--card-05-label-01 {
  background-color: #9b7bb6;
}

.meet-product-card__label-icon {
  display: block;
  width: 24px;
  height: 24px;
}

.meet-product-card__labels {
  display: flex;
  flex-wrap: wrap;
  order: 3;
  gap: 12px 24px;
  width: 100%;
  margin: 18px 0 0;
}

@media (min-width: 992px) {
  .meet-product-card__labels {
    order: initial;
    margin: 0;
  }
}

.meet-product-card__label-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #0e0e0e;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.meet-product-card__label-link:focus-visible {
  outline: 2px solid #42a1ae;
  outline-offset: 3px;
}

@media (max-width: 767.98px) {
  .meet-product-card__label-link {
    width: 100%;
  }
}

.meet-catalog .product-line__description {
  margin-top: 22px;
}

@media (min-width: 992px) {
  .meet-catalog .product-line__description {
    margin-top: 16px;
  }
}

.meet-catalog .product-line__link {
  max-width: none;
}

@media (min-width: 992px) {
  .meet-catalog .product-line__link {
    width: 237px;
    margin-top: 42px;
  }
}

@media (min-width: 768px) {
}

.choice {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 100px 0 0;
}

@media (min-width: 768px) {
  .choice {
    margin-top: 150px;
  }
}

.choice__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 760px;
}

@media (min-width: 768px) {
  .choice__inner {
    height: 192px;
  }
}

.choice__title {
  width: 100%;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
  color: #0e0e0e;
}

@media (min-width: 768px) {
  .choice__title {
    font-size: 32px;
    line-height: 1.3;
    text-align: center;
  }
}

.choice__text {
  width: 100%;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #0e0e0e;
}

@media (min-width: 768px) {
  .choice__text {
    text-align: center;
  }
}

.healthy-ration {
  width: 100%;
  margin: 100px auto 0;
  font-family: "Montserrat", sans-serif;
  color: #0e0e0e;
}

@media (min-width: 768px) {
  .healthy-ration {
    margin-top: 150px;
  }
}

.healthy-ration__title {
  width: 100%;
  margin: 0 0 12px;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
  color: #0e0e0e;
}

@media (min-width: 768px) {
  .healthy-ration__title {
    margin-bottom: 12px;
    font-size: 32px;
    line-height: 1.3;
    text-align: center;
  }
}

.healthy-ration__slider {
  width: 100%;
  overflow: hidden;
}

@media (min-width: 768px) {
  .healthy-ration__slider {
    overflow: visible;
  }
}

.healthy-ration__list {
  display: flex;
  align-items: stretch;
}

@media (min-width: 768px) {
  .healthy-ration__list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    transform: none;
  }
}

.healthy-ration__card {
  display: flex;
  flex: 0 0 100%;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-width: 0;
  min-height: 290px;
  padding: 12px;
  box-sizing: border-box;
  text-align: center;
}

@media (min-width: 768px) {
  .healthy-ration__card {
    min-height: 316px;
    padding: 16px;
  }
}

.healthy-ration__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  margin: 0 0 12px;
  padding: 0;
  overflow: hidden;
  background-color: #d8d8d8;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.25s ease;
}

.healthy-ration__icon:hover {
  background-color: #d7eff2;
}

.healthy-ration__icon svg {
  display: block;
  width: 120px;
  height: 120px;
}

.healthy-ration__card-title {
  margin: 0 0 12px;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: #0e0e0e;
}

@media (min-width: 768px) {
  .healthy-ration__card-title {
    font-size: 24px;
    font-weight: 500;
  }
}

.healthy-ration__text {
  width: 100%;
  max-width: 355px;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #0e0e0e;
}

.healthy-ration__navigation {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 20px;
}

@media (min-width: 768px) {
  .healthy-ration__navigation {
    display: none;
  }
}

.healthy-ration__arrow {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 32px;
  padding: 0;
  color: #bbe4e9;
  cursor: pointer;
  background: transparent;
  border: 0;
  transition: color 0.3s ease;
}

.healthy-ration__arrow.swiper-button-disabled {
  color: #d8d8d8;
  cursor: default;
}

.healthy-ration__arrow:focus-visible {
  outline: 2px solid #42a1ae;
  outline-offset: 2px;
}

.healthy-ration__pagination {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.healthy-ration .healthy-ration__pagination .swiper-pagination-bullet {
  flex: 1 1 20px;
  width: auto;
  min-width: 20px;
  height: 3px;
  margin: 0;
  background-color: #d8d8d8;
  border-radius: 2px;
  opacity: 1;
  transition:
          flex-grow 0.3s ease,
          background-color 0.3s ease;
}

.healthy-ration .healthy-ration__pagination .swiper-pagination-bullet-active {
  flex-grow: 5;
  min-width: 92px;
  background-color: #d7eff2;
}

.product-line {
  width: 100%;
  margin: 100px 0 0;
  font-family: "Montserrat", sans-serif;
  color: #0e0e0e;
}

@media (min-width: 768px) {
  .product-line {
    margin-top: 150px;
  }
}

.product-line__pet-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  height: 80px;
  padding: 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #0e0e0e;
  cursor: pointer;
  background-color: #f4f4f4;
  border: 0;
  border-radius: 12px;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

.product-line__pet-tab.is-active {
  background-color: #bbe4e9;
}

.product-line__pet-tab:focus-visible {
  outline: 2px solid #42a1ae;
  outline-offset: 2px;
}

.product-line__body {
  width: 100%;
  padding: 10px;
  background-color: #f4f4f4;
  border-radius: 12px;
  box-sizing: border-box;
  /* min-height: 998px; */
}

@media (min-width: 768px) {
  .product-line__body {
    padding: 40px 20px;
    /* min-height: 579px; */
  }
}

@media (min-width: 1100px) {
  .product-line__body {
    /* height: 624px; */
  }
}

.product-line__tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 52px;
  padding: 14px 18px;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #12113b;
  text-align: center;
  cursor: pointer;
  background-color: #ffffff;
  border: 0;
  border-radius: 100px;
  box-sizing: border-box;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

.product-line__tab:focus-visible {
  outline: 2px solid #42a1ae;
  outline-offset: 2px;
}

@media (max-width: 374.98px) {
  .product-line__tab {
    padding-right: 12px;
    padding-left: 12px;
    font-size: 14px;
  }
}

.product-line__panel {
  width: 100%;
}

.product-line__panel[hidden] {
  display: none;
}

.product-line__panel.is-active:not(.product-line__placeholder) {
  display: flex;
  flex-direction: column;
}

@media (min-width: 992px) {
  .product-line__panel.is-active:not(.product-line__placeholder) {
    display: grid;
    grid-template-columns: minmax(340px, 437px) minmax(0, 1fr);
    align-items: start;
    gap: 40px;
    min-height: 452px;
  }
}

.product-line__media {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 991.98px) {
  .product-line__media {
    display: contents;
  }
}

.product-line__image-slider {
  order: 4;
  width: 100%;
  max-width: 348px;
  margin: 18px auto 0;
  overflow: hidden;
}

@media (min-width: 992px) {
  .product-line__image-slider {
    order: initial;
    max-width: 357px;
    margin-top: 0;
  }
}

.product-line__image-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 294px;
}

@media (min-width: 768px) {
  .product-line__image-slide {
    min-height: 299px;
  }
}

.product-line__image-slide img {
  display: block;
  width: 100%;
  max-width: 348px;
  height: auto;
  object-fit: contain;
}

@media (min-width: 768px) {
  .product-line__image-slide img {
    max-width: 357px;
    height: 299px;
  }
}

.product-line__image-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  min-height: 12px;
  margin-top: 12px;
}
@media (min-width: 992px) {
  .product-line__image-pagination {
    margin-top: 23px;
  }
}

.product-line__features {
  order: 5;
  width: 100%;
  max-width: 348px;
  margin: 18px auto 0;
}

@media (min-width: 992px) {
  .product-line__features {
    order: initial;
    max-width: 336px;
    margin-top: 16px;
  }
}

.product-line__feature-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 100%;
}

.product-line__feature {
  display: inline-flex;
  flex: 0 0 54px;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  padding: 0;
  color: #d8d8eb;
  cursor: pointer;
  background: transparent;
  border: 0;
  border-radius: 50%;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.product-line__feature.is-active {
  color: #f8bbdf;
}

.product-line__feature:hover {
  transform: translateY(-2px);
}

.product-line__feature:focus-visible {
  outline: 2px solid #42a1ae;
  outline-offset: 3px;
}

.product-line__feature svg {
  display: block;
  width: 54px;
  height: 54px;
}

.product-line__feature-label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-height: 32px;
  max-width: 100%;
  margin: 10px auto 0;
  padding: 4px 12px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #12113b;
  text-align: center;
  background-color: #f8bbdf;
  border-radius: 50px;
  box-sizing: border-box;
}

@media (max-width: 767.98px) {
  .product-line__feature-label {
    width: 100%;
    min-height: 44px;
    margin-top: 18px;
    padding: 10px;
  }
}

.product-line__content {
  display: contents;
}

@media (min-width: 992px) {
  .product-line__content {
    display: flex;
    flex-direction: column;
    min-height: 452px;
    justify-content: flex-start;
  }
}

.product-line__head {
  display: contents;
}

@media (min-width: 992px) {
  .product-line__head {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
}

.product-line__title {
  order: 1;
  max-width: 348px;
  margin: 0 auto;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
  color: #0e0e0e;
  text-align: center;
}

.product-line__title--desktop {
  display: none;
}

.product-line__title--mobile {
  display: block;
}

@media (min-width: 992px) {
  .product-line__title {
    max-width: none;
    margin: 0;
    font-size: 32px;
    line-height: 1.3;
    text-align: left;
  }

  .product-line__title--desktop {
    display: block;
    order: initial;
    margin-bottom: 16px;
  }

  .product-line__title--mobile {
    display: none;
  }
}

.product-line__taste {
  display: flex;
  order: 3;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin: 18px 0 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #0e0e0e;
}

@media (min-width: 992px) {
  .product-line__taste {
    order: initial;
    margin: 0;
  }
}

.product-line__taste span {
  display: block;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  background-color: #f9d429;
  border-radius: 50%;
}

.product-line__subtitle {
  order: 2;
  max-width: 348px;
  margin: 12px auto 0;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #0e0e0e;
  text-align: center;
}

@media (min-width: 992px) {
  .product-line__subtitle {
    order: initial;
    max-width: 620px;
    margin: 0;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.4;
    text-align: left;
  }
}

.product-line__description {
  order: 6;
  margin: 22px 0 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #0e0e0e;
}

@media (min-width: 992px) {
  .product-line__description {
    order: initial;
    margin-top: 16px;
  }
}

.product-line__description p {
  margin: 0 0 24px;
}

@media (min-width: 992px) {
  .product-line__description p {
    margin-bottom: 24px;
  }
}

.product-line__description ul {
  list-style-type: disc;
  margin: 0;
  padding-left: 22px;
}
.product-line__description ul + p {
  margin-top: 24px;
}
.product-line__description li {
  padding-left: 2px;
}

.product-line__link {
  order: 7;
  width: 100%;
  max-width: none;
  margin: 22px 0 0;
}

@media (min-width: 992px) {
  .product-line__link {
    order: initial;
    width: 237px;
    margin-top: 60px;
  }
}

.product-picker__tooltip-wrap {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
}

.product-picker__tooltip-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0;

  line-height: 1;

  background-color: transparent;
  border: none;

  cursor: pointer;
}

.product-picker__tooltip {
  position: absolute;
  right: 2px;
  top: 34px;
  display: block;
  width: 291px;
  padding: 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
  background-color: #353535;
  border-radius: 6px;
  box-sizing: border-box;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.product-picker__tooltip::before {
  position: absolute;
  top: -10px;
  right: var(--product-picker-tooltip-arrow-right, 9px);
  width: 0;
  height: 0;
  border-right: 6px solid transparent;
  border-bottom: 10px solid #353535;
  border-left: 6px solid transparent;
  content: "";
}

.product-picker__tooltip-wrap.is-open .product-picker__tooltip {
  opacity: 1;
  visibility: visible;
}

.product-picker__tooltip.is-floating {
  position: fixed;
  right: auto;
  z-index: 100000;
  opacity: 1;
  visibility: visible;
}

@media (min-width: 768px) {
  .main-content {
    margin: 0 auto 160px;
  }
}

.category-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  gap: 16px;
  border: 1px solid #d8d8d8;
  border-radius: 20px;
  padding-block: 4px;
  padding-inline: 20px 4px;
  max-width: 400px;
  width: 100% - 20px;

  height: 40px;
  background: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  color: #0e0e0e;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .category-link {
  }
}

.category-link__icon {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #bbe4e9;
  border-radius: 50%;
}

@media (min-width: 768px) {
  .category-link__icon {
  }
}

.benefits {
  width: 100%;

  margin: 100px auto 0;
  font-family: "Montserrat", sans-serif;
  color: #0e0e0e;
}

@media (min-width: 768px) {
  .benefits {
    margin: 150px auto 0;
  }
}

.benefits__slider {
  width: 100%;
  overflow: hidden;
}

@media (min-width: 768px) {
  .benefits__slider {
    overflow: visible;
  }
}

.benefits__pagination {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.brand-video {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  margin: 100px auto 0;
  font-family: "Montserrat", sans-serif;
  color: #0e0e0e;
}

@media (min-width: 992px) {
  .brand-video {
    grid-template-columns: 590px minmax(0, 1fr);
    align-items: flex-start;
    gap: 16px;
    margin-top: 150px;
  }
}

.brand-video__video {
  display: block;
  width: 100%;
  aspect-ratio: 590 / 332;
  object-fit: cover;
}

.brand-video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  background-color: rgba(14, 14, 14, 0.88);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition:
    background-color 0.3s ease,
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.brand-video__play:hover {
  background-color: #0e0e0e;
}

.brand-video__play:focus-visible {
  outline: 2px solid #42a1ae;
  outline-offset: 3px;
}

.brand-video.is-playing .brand-video__play {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

/* .ration__inner::before,
.ration__inner::after {
  content: "";
  position: absolute;
  display: none;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}

.ration__inner::before {
  top: 0;
  left: 0;
  width: 63px;
  height: 47px;
  background-image: url("data:image/svg+xml,%3Csvg width='63' height='47' viewBox='0 0 63 47' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cellipse opacity='0.34' cx='-1.9594' cy='-18.0514' rx='64.599' ry='64.0625' transform='rotate(-11.4614 -1.9594 -18.0514)' fill='url(%23paint0_linear_6673_17321)' fill-opacity='0.17'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_6673_17321' x1='-3.821' y1='-95.4225' x2='-8.28444' y2='-12.4223' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%2398DEFF' stop-opacity='0'/%3E%3Cstop offset='1' stop-color='%2398DEFF'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
}

.ration__inner::after {
  right: 0;
  bottom: 0;
  width: 108px;
  height: 59px;
  background-image: url("data:image/svg+xml,%3Csvg width='108' height='59' viewBox='0 0 108 59' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cellipse cx='93.8527' cy='93.1351' rx='93.8651' ry='93.0855' transform='rotate(-11.4614 93.8527 93.1351)' fill='url(%23paint0_linear_6673_17322)' fill-opacity='0.17'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_6673_17322' x1='91.1477' y1='-19.2884' x2='84.6622' y2='101.314' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%2398DEFF' stop-opacity='0'/%3E%3Cstop offset='1' stop-color='%2398DEFF'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
} */

.feed-lines {
  width: 100%;
  margin: 100px auto 0;
  font-family: "Montserrat", sans-serif;
  color: #0e0e0e;
}

@media (min-width: 768px) {
  .feed-lines {
    margin-top: 150px;
  }
}

.feed-lines__slider {
  width: 100%;
  overflow: hidden;
}

@media (min-width: 1230px) {
  .feed-lines__slider {
    overflow: visible;
  }
}

.feed-line-card {
  flex: 0 0 280px;
  width: 280px;
  height: auto;
  box-sizing: border-box;
}

@media (min-width: 1230px) {
  .feed-line-card {
    width: auto;
  }
}

.feed-line-card__face--front {
  align-items: stretch;
  background: #f4f4f4;
  color: #ffffff;
  cursor: pointer;
  opacity: 1;
  text-align: left;
  visibility: visible;
}

.feed-line-card__face--back {
  background-color: #f4f4f4;
  color: #0e0e0e;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.feed-line-card.is-flipped .feed-line-card__face--front {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.feed-line-card.is-flipped .feed-line-card__face--back {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.reviews {
  width: 100%;
  margin: 100px auto 0;
  font-family: "Montserrat", sans-serif;
  color: #0e0e0e;
}

@media (min-width: 768px) {
  .reviews {
    margin-top: 150px;
  }
}

.reviews__slider {
  width: 100%;
  overflow: hidden;
}

.reviews__pagination {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.actions {
  width: 100vw;
  margin: 100px calc(50% - 50vw) 0;
  padding: 22px 0 18px;
  background-color: #f4f4f4;
  font-family: "Montserrat", sans-serif;
  color: #0e0e0e;
}

@media (min-width: 768px) {
  .actions {
    margin-top: 150px;
    padding: 60px 0 54px;
  }
}

.actions__tab {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-block: 4px;
  padding-inline: 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  color: #0e0e0e;
  background: transparent;
  border: 0;
  cursor: pointer;
  min-height: 34px;
}
.actions__tab.is-active {
  font-size: 20px;
}

@media (min-width: 768px) {
  .actions__tab {
    padding-inline: 20px;
    font-size: 24px;
    line-height: 1.3;
    min-height: 52px;
  }
  .actions__tab.is-active {
    font-size: 32px;
  }
}

.actions__tab::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background-color: #42a1ae;
  content: "";
  opacity: 0;
  transition: opacity 0.3s ease;
}

.actions__tab.is-active::after {
  opacity: 1;
}

.actions__tab:focus-visible {
  /* outline: 2px solid #42a1ae;
  outline-offset: 3px; */
}

.actions__slider {
  width: 100%;
  overflow: hidden;
}

.actions__pagination {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
