.product-page {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  background: #ffffff;
}
@media (max-width: 1079px) {
  .product-page {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .product-page {
    padding: 1.6rem;
  }
}
.product-page__layout {
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 2rem;
  align-items: flex-start;
  font-size: 1.6rem;
}
.product-page__layout p {
  font-family: var(--primary-font)!important;
}
@media (max-width: 1079px) {
  .product-page__layout {
    grid-template-columns: 1fr;
  }
}
.product-page__gallery-col {
  flex: 1;
  position: sticky;
  top: 2rem;
  align-self: flex-start;
}
@media (max-width: 1079px) {
  .product-page__gallery-col {
    position: static;
    width: 100%;
  }
}
.product-page__gallery {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.product-page__gallery-main {
  aspect-ratio: 1;
  background: #C4C4C4;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: auto;
  overflow-y: hidden;
}
.product-page__gallery-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.product-page__gallery-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: #C4C4C4;
}
.product-page__thumbs {
  display: flex;
  gap: 0;
  overflow-x: auto;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.product-page__thumb {
  flex-shrink: 0;
  width: 5.6rem;
  height: 5.6rem;
  padding: 0;
  border: 2px solid transparent;
  background: #C4C4C4;
  cursor: pointer;
  overflow: hidden;
  transition: border 200ms;
}
.product-page__thumb:nth-child(n+2) {
  background: #D6D6D6;
}
.product-page__thumb:nth-child(n+3) {
  background: #C4C4C4;
}
.product-page__thumb:nth-child(n+4) {
  background: #AEAEAE;
}
.product-page__thumb:nth-child(n+5) {
  background: #D6D6D6;
}
.product-page__thumb--active, .product-page__thumb:hover, .product-page__thumb:focus, .product-page__thumb:active {
  border: 2px solid #222222;
}
.product-page__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-page__info {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  flex: 1;
  max-width: 67rem;
}
@media (max-width: 1089px) {
  .product-page__info {
    max-width: 100%;
  }
}
.product-page__header {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.product-page__brand {
  margin: 0;
  font-family: var(--primary-font);
  font-size: 2.4rem;
}
@media (max-width: 1089px) {
  .product-page__brand {
    font-size: 1.8rem;
  }
}
.product-page__brand {
  line-height: 120%;
  letter-spacing: -0.03em;
  color: #222222;
}
.product-page__title {
  margin: 0;
  font-family: var(--secondary-font);
  font-size: 3.6rem;
}
@media (max-width: 1089px) {
  .product-page__title {
    font-size: 2.4rem;
  }
}
.product-page__title {
  line-height: 120%;
  letter-spacing: -0.02em;
  font-weight: 400;
  color: #222222;
}
.product-page__subtitle {
  margin: 0;
  font-family: var(--primary-font);
  font-size: 1.6rem;
}
@media (max-width: 1089px) {
  .product-page__subtitle {
    font-size: 1.4rem;
  }
}
.product-page__subtitle {
  line-height: 130%;
  letter-spacing: -0.03em;
  color: rgba(34, 34, 34, 0.3);
}
.product-page__attributes {
  padding-top: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.product-page__attr-group {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}
.product-page__attr-label {
  font-family: var(--primary-font);
  font-size: 1.6rem;
}
@media (max-width: 1089px) {
  .product-page__attr-label {
    font-size: 1.4rem;
  }
}
.product-page__attr-label {
  line-height: 130%;
  letter-spacing: -0.03em;
  color: rgba(34, 34, 34, 0.3);
}
.product-page__color-swatches {
  display: flex;
  gap: 0.8rem;
}
.product-page__color-swatch {
  display: block;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: 0.1rem solid rgba(34, 34, 34, 0.1);
  text-decoration: none;
  transition: box-shadow 200ms;
}
.product-page__color-swatch--active {
  box-shadow: 0 0 0 0.2rem #222222;
}
.product-page__color-swatch:hover {
  box-shadow: 0 0 0 0.2rem rgba(34, 34, 34, 0.5);
}
.product-page__volume-options {
  display: flex;
  gap: 0.8rem;
}
.product-page__volume-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.4rem;
  border: 0.1rem solid rgba(34, 34, 34, 0.3);
  font-family: var(--primary-font);
  font-size: 1.6rem;
}
@media (max-width: 1089px) {
  .product-page__volume-item {
    font-size: 1.4rem;
  }
}
.product-page__volume-item {
  line-height: 130%;
  color: #222222;
  text-decoration: none;
  transition: border-color 200ms;
}
.product-page__volume-item--active {
  border-color: #222222;
  font-weight: 600;
}
.product-page__meta {
  display: flex;
  flex-direction: column;
  padding-top: 0.8rem;
}
.product-page__stock-info {
  display: flex;
  flex-direction: column;
  padding-bottom: 0.8rem;
}
.product-page__meta-row {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  padding: 0.4rem 0;
}
.product-page__meta-label {
  font-family: var(--primary-font);
  font-size: 1.6rem;
}
@media (max-width: 1089px) {
  .product-page__meta-label {
    font-size: 1.4rem;
  }
}
.product-page__meta-label {
  line-height: 130%;
  letter-spacing: -0.03em;
  color: rgba(34, 34, 34, 0.3);
}
.product-page__meta-value {
  font-family: var(--primary-font);
  font-size: 1.6rem;
}
@media (max-width: 1089px) {
  .product-page__meta-value {
    font-size: 1.4rem;
  }
}
.product-page__meta-value {
  line-height: 130%;
  letter-spacing: -0.03em;
  color: #222222;
}
.product-page__meta-value--danger {
  color: #d32f2f;
}
.product-page__delivery-notice {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.2rem 0;
  background: #f7eba6;
  width: fit-content;
}
.product-page__delivery-text {
  font-family: var(--primary-font);
  font-size: 1.6rem;
}
@media (max-width: 1089px) {
  .product-page__delivery-text {
    font-size: 1.4rem;
  }
}
.product-page__delivery-text {
  line-height: 150%;
  color: #222222;
}
.product-page__delivery-info {
  opacity: 0.5;
  flex-shrink: 0;
  width: 1.8rem;
  height: 1.8rem;
  color: #222222;
}
.product-page__extra-info {
  padding-top: 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 2.8rem;
}
.product-page__section-title {
  margin: 0;
  font-family: var(--primary-font);
  font-size: 2.4rem;
}
@media (max-width: 1089px) {
  .product-page__section-title {
    font-size: 1.8rem;
  }
}
.product-page__section-title {
  line-height: 120%;
  font-weight: 400;
  color: #222222;
}
.product-page__extra-dropdowns {
  display: flex;
  flex-direction: column;
}
.product-page__sticky-panel {
  position: sticky;
  bottom: 0;
  z-index: 50;
  display: flex;
  gap: 0.8rem;
  padding: 2rem 0;
  background: #ffffff;
  max-width: 67rem;
}
@media (max-width: 1089px) {
  .product-page__sticky-panel {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 100%;
    padding: 1.6rem;
    box-shadow: 0 -0.2rem 1rem rgba(0, 0, 0, 0.08);
  }
}
.product-page__sticky-panel--static {
  position: relative;
  box-shadow: none;
}
.product-page__sticky-cta {
  flex: 1;
}
.product-page__sticky-cart {
  max-width: none;
  width: 100%;
}
.product-page__add-to-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  width: 100%;
  height: 5.3rem;
  padding: 0 2.4rem;
  border: 0;
  border-radius: 0;
  background: #80ced7;
  cursor: pointer;
  font-family: var(--primary-font);
  font-size: 1.6rem;
  transition: background-color 300ms, color 300ms;
}
@media (max-width: 1089px) {
  .product-page__add-to-cart {
    font-size: 1.4rem;
  }
}
.product-page__add-to-cart {
  line-height: 130%;
  color: #0e363c;
}
.product-page__add-to-cart:hover {
  background-color: #B3E2E7;
}
.product-page__add-to-cart--disabled,
.product-page__add-to-cart--disabled:hover {
  flex-direction: column;
  gap: 0;
  background: #bdbdbd;
  color: #ffffff;
  cursor: default;
}
.product-page__add-to-cart-price {
  display: flex;
  flex-direction: row-reverse;
  gap: .5rem;
}
.product-page__add-to-cart-state {
  font-family: var(--primary-font);
  font-size: 1.2rem;
  line-height: 130%;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.75);
}
.product-page__sticky-cart .count-switch {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-width: 0;
  height: 5.3rem;
  padding: 0;
  border-radius: 0;
  background: #99d16e;
  color: #1c2f0f;
  overflow: hidden;
}
.product-page__sticky-cart .count-switch-action {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 5.4rem;
  height: 5.3rem;
  padding: 0;
  cursor: pointer;
  color: #1c2f0f;
  transition: background-color 200ms, opacity 200ms;
}
.product-page__sticky-cart .count-switch-action svg {
  opacity: 1;
  transition: opacity 200ms;
}
.product-page__sticky-cart .count-switch-action:hover svg {
  opacity: 0.5;
}
.product-page__sticky-cart .count-switch-action--disabled {
  opacity: 0.35;
  pointer-events: none;
}
.product-page__sticky-cart .minus,
.product-page__sticky-cart .plus {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
}
.product-page__sticky-cart .minus svg,
.product-page__sticky-cart .plus svg {
  width: 2rem;
  height: 2rem;
}
.product-page__cart-count {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0;
  color: #1c2f0f;
  text-align: center;
  text-decoration: none;
}
.product-page__cart-count:hover {
  color: #1c2f0f;
  text-decoration: none;
}
.product-page__cart-count .count-swith_number-value {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.product-page__cart-count-main {
  font-family: var(--primary-font);
  font-size: 1.6rem;
  line-height: 130%;
  letter-spacing: -0.03em;
  font-weight: 400;
}
.product-page__cart-count-subtitle {
  font-family: var(--primary-font);
  font-size: 1.2rem;
  line-height: 130%;
  letter-spacing: -0.02em;
  color: rgba(28, 47, 15, 0.5);
}
.product-page__sticky-favorite {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 5.3rem;
  height: 5.3rem;
  border: 0;
  background: #ededed;
  cursor: pointer;
  color: #222222;
  transition: opacity 200ms;
}
.product-page__sticky-favorite span,
.product-page__sticky-favorite svg {
  width: 2.4rem;
  width: 2.4rem;
  opacity: 1;
  transition: opacity .3s ease-in-out;
}
.product-page__sticky-favorite .like--active {
  display: none;
}
.product-page__sticky-favorite:hover svg {
  opacity: 0.5;
}
.product-page__sticky-favorite .active .like--active  {
  display: block;
}
.product-page__sticky-favorite .active .like--default  {
  display: none;
}


.breadcrumbs {
  padding-top: 0!important;
  padding-bottom: 2.4rem!important;
  display: flex;
  gap: 0;
  align-items: center;
  overflow-x: auto;
}
.breadcrumbs__list {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.breadcrumbs__item {
  font-family: var(--primary-font);
  font-size: 1.6rem;
}
@media (max-width: 1089px) {
  .breadcrumbs__item {
    font-size: 1.4rem;
  }
}
.breadcrumbs__item {
  line-height: 130%;
  color: #222222;
  white-space: nowrap;
}
.breadcrumbs__item a {
  color: inherit;
  text-decoration: none;
}
.breadcrumbs__item a:hover {
  text-decoration: underline;
}
.breadcrumbs__item:last-child {
  color: rgba(34, 34, 34, 0.3);
  pointer-events: none;
}
.breadcrumbs__separator {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  list-style: none;
  color: rgba(34, 34, 34, 0.3);
}

.product-tags {
  display: flex;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
.product-tags__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  padding: 1rem 0.2rem 1.2rem;
  font-family: var(--primary-font);
  font-size: 1.4rem;
  line-height: 130%;
  text-align: center;
}
.product-tags__item--sale {
  background: #ffa3af;
  color: #3d0008;
}
.product-tags__item--new {
  background: #99d16e;
  color: #1c2f0f;
}
.product-tags__item--hit {
  background: #80ced7;
  color: #0e363c;
}
.product-tags__item--attention {
  display: flex!important;
  align-items: center;
  justify-content: center;
  background: #F2DD6B;
}

.product-tags__item--attention svg {
  width: 2.2rem;
  height: 2.2rem;
}

.product-dropdown {
  border-top: 0.1rem solid rgba(34, 34, 34, 0.1);
}
.product-dropdown--recommended {
  display: block;
}
.product-dropdown__trigger {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: 100%;
  padding: 2.8rem 0;
  border: 0;
  background: none;
  cursor: pointer;
  text-align: left;
}
@media (max-width: 767px) {
  .product-dropdown__trigger {
    gap: 1.2rem;
    padding: 2rem 0;
  }
}
.product-dropdown__trigger:hover {
  opacity: 0.7;
}
.product-dropdown__trigger[aria-expanded=true] .product-dropdown__arrow {
  transform: rotate(180deg);
}
.product-dropdown__title {
  flex: 1;
  font-family: var(--primary-font);
  font-size: 2rem;
}
@media (max-width: 1089px) {
  .product-dropdown__title {
    font-size: 1.8rem;
  }
}
.product-dropdown__title {
  line-height: 140%;
  font-weight: 400;
  color: #222222;
}
.product-dropdown__arrow {
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  color: #222222;
  transition: transform 300ms;
}
.product-dropdown__content {
  padding-bottom: 4rem;
}
@media (max-width: 767px) {
  .product-dropdown__content {
    padding-bottom: 2.4rem;
  }
}
.product-dropdown__content[hidden] {
  display: none;
}

.product-description {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  max-width: 60rem;
}
@media (max-width: 1089px) {
  .product-description {
    max-width: 100%;
  }
}
.product-description p {
  margin: 0;
  font-family: var(--primary-font);
  font-size: 1.6rem;
}
@media (max-width: 1089px) {
  .product-description p {
    font-size: 1.4rem;
  }
}
.product-description p {
  line-height: 130%;
  color: #222222;
}
.product-description a {
  color: inherit;
  text-decoration: underline;
}
.product-description a:hover {
  text-decoration: none;
}

.product-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  max-width: 60rem;
}
@media (max-width: 1089px) {
  .product-benefits {
    max-width: 100%;
  }
}
.product-benefits__item {
  margin: 0;
  padding: 0;
  font-family: var(--primary-font);
  font-size: 1.6rem;
}
@media (max-width: 1089px) {
  .product-benefits__item {
    font-size: 1.4rem;
  }
}
.product-benefits__item {
  line-height: 130%;
  color: #222222;
  list-style-position: inside;
  list-style-type: disc;
}

.product-specs {
  display: flex;
  flex-direction: column;
}
.product-specs__row {
  display: flex;
  gap: 2.4rem;
  align-items: flex-start;
  padding: 1.2rem 0 1.6rem;
  border-top: 0.1rem solid rgba(34, 34, 34, 0.1);
}
@media (max-width: 767px) {
  .product-specs__row {
    gap: 1.2rem;
  }
}
.product-specs__row:last-child {
  border-bottom: 0.1rem solid rgba(34, 34, 34, 0.1);
}
.product-specs__key {
  flex: 1;
  font-family: var(--primary-font);
  font-size: 1.6rem;
}
@media (max-width: 1089px) {
  .product-specs__key {
    font-size: 1.4rem;
  }
}
.product-specs__key {
  line-height: 130%;
  color: rgba(34, 34, 34, 0.5);
}
.product-specs__value {
  flex: 1;
  font-family: var(--primary-font);
  font-size: 1.6rem;
}
@media (max-width: 1089px) {
  .product-specs__value {
    font-size: 1.4rem;
  }
}
.product-specs__value {
  line-height: 130%;
  color: #222222;
  text-align: right;
}

.effect-cards {
  display: flex;
  flex-direction: column;
}
.effect-cards__item {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: center;
  padding: 2rem 6rem 2.8rem;
}
@media (max-width: 767px) {
  .effect-cards__item {
    padding: 1.6rem 2rem 2.4rem;
  }
}
.effect-cards__item:not(:first-child) {
  border-top: 0.1rem solid rgba(34, 34, 34, 0.1);
}
.effect-cards__heading {
  margin: 0;
  font-family: var(--primary-font);
  font-size: 3.6rem;
}
@media (max-width: 1089px) {
  .effect-cards__heading {
    font-size: 2.4rem;
  }
}
.effect-cards__heading {
  line-height: 120%;
  font-weight: 400;
  color: #222222;
  text-align: center;
  width: 100%;
}
.effect-cards__text {
  margin: 0;
  font-family: var(--primary-font);
  font-size: 1.6rem;
}
@media (max-width: 1089px) {
  .effect-cards__text {
    font-size: 1.4rem;
  }
}
.effect-cards__text {
  line-height: 130%;
  color: #222222;
  opacity: 0.5;
  text-align: center;
  max-width: 42rem;
}
.effect-cards__disclaimers {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding-top: 0.8rem;
  max-width: 60rem;
}
.effect-cards__disclaimer {
  margin: 0;
  font-family: var(--primary-font);
  font-size: 1.4rem;
  line-height: 130%;
  color: rgba(34, 34, 34, 0.5);
}

.ingredient-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.ingredient-list__item {
  display: flex;
  gap: 2.8rem;
  align-items: center;
  padding: 2.8rem;
  background: #f8f8f8;
}
@media (max-width: 767px) {
  .ingredient-list__item {
    gap: 1.6rem;
    padding: 2rem;
  }
}
.ingredient-list__image {
  flex-shrink: 0;
  width: 7.2rem;
  height: 7.2rem;
  border-radius: 10rem;
  background: #c4c4c4;
  overflow: hidden;
  object-fit: cover;
}
.ingredient-list__image--placeholder {
  display: block;
}
@media (max-width: 767px) {
  .ingredient-list__image {
    width: 5.6rem;
    height: 5.6rem;
  }
}
.ingredient-list__body {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}
.ingredient-list__name {
  margin: 0;
  font-family: var(--primary-font);
  font-size: 2rem;
}
@media (max-width: 1089px) {
  .ingredient-list__name {
    font-size: 1.8rem;
  }
}
.ingredient-list__name {
  line-height: 140%!important;
  font-weight: 400;
  color: #222222;
}
.ingredient-list__description {
  margin: 0;
  font-family: var(--primary-font);
  font-size: 1.6rem;
}
@media (max-width: 1089px) {
  .ingredient-list__description {
    font-size: 1.4rem;
  }
}
.ingredient-list__description {
  line-height: 130%;
  color: rgba(34, 34, 34, 0.5);
}

.innovation-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.innovation-cards__item {
  display: flex;
  gap: 2.8rem;
  align-items: center;
  padding: 2.8rem;
  background: #f8f8f8;
  width: 67rem;
}
@media (max-width: 1089px) {
  .innovation-cards__item {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .innovation-cards__item {
    flex-direction: column;
    gap: 1.6rem;
    padding: 2rem;
  }
}
.innovation-cards__image-wrap {
  flex-shrink: 0;
  width: 16rem;
  height: 16rem;
}
@media (max-width: 767px) {
  .innovation-cards__image-wrap {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }
}
.innovation-cards__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #c4c4c4;
}
.innovation-cards__body {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}
.innovation-cards__title {
  margin: 0;
  font-family: var(--primary-font);
  font-size: 2rem;
}
@media (max-width: 1089px) {
  .innovation-cards__title {
    font-size: 1.8rem;
  }
}
.innovation-cards__title {
  line-height: 140%!important;
  font-weight: 400;
  color: #222222;
}
.innovation-cards__description {
  margin: 0;
  font-family: var(--primary-font);
  font-size: 1.6rem;
}
@media (max-width: 1089px) {
  .innovation-cards__description {
    font-size: 1.4rem;
  }
}
.innovation-cards__description {
  line-height: 130%;
  color: rgba(34, 34, 34, 0.5);
}

.cert-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 4rem;
  width: 67rem;
}
@media (max-width: 1089px) {
  .cert-grid {
    width: 100%;
  }
}
.cert-grid__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 32.5rem;
  height: 32.5rem;
  padding: 4rem;
  background: #f8f8f8;
}
@media (max-width: 767px) {
  .cert-grid__card {
    width: 100%;
    height: auto;
    padding: 2.4rem;
  }
}
.cert-grid__logo {
  width: 10rem;
  height: 10rem;
  object-fit: contain;
}
@media (max-width: 767px) {
  .cert-grid__logo {
    width: 7.2rem;
    height: 7.2rem;
  }
}
.cert-grid__text {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  width: 100%;
}
.cert-grid__title {
  margin: 0;
  font-family: var(--primary-font);
  font-size: 2rem;
}
@media (max-width: 1089px) {
  .cert-grid__title {
    font-size: 1.8rem;
  }
}
.cert-grid__title {
  line-height: 140%;
  font-weight: 400;
  color: #222222;
  text-align: center;
}
.cert-grid__description {
  margin: 0;
  font-family: var(--primary-font);
  font-size: 1.6rem;
}
@media (max-width: 1089px) {
  .cert-grid__description {
    font-size: 1.4rem;
  }
}
.cert-grid__description {
  line-height: 130%;
  color: #222222;
  opacity: 0.3;
  text-align: center;
}

.composition-highlights {
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.composition-highlights__card {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 2.8rem;
  background: #ededed;
}
@media (max-width: 767px) {
  .composition-highlights__card {
    gap: 1.2rem;
    padding: 2rem;
  }
}
.composition-highlights__card--safe {
  background: #E0F1D4;
  color: #1C2F0F;
}
.composition-highlights__card--non-inside {
  background: #D9F0F3;
  color: #0E363C;
}
.composition-highlights__icon-wrap {
  width: 4.4rem;
  height: 4.4rem;
}
.composition-highlights__icon-wrap svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.composition-highlights__body {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}
.composition-highlights__title {
  margin: 0;
  font-family: var(--primary-font);
  font-size: 2rem;
}
@media (max-width: 1089px) {
  .composition-highlights__title {
    font-size: 1.8rem;
  }
}
.composition-highlights__title {
  line-height: 140%!important;
  font-weight: 400;
  color: #222222;
}
.composition-highlights__text {
  margin: 0;
  font-family: var(--primary-font);
  font-size: 1.6rem;
}
@media (max-width: 1089px) {
  .composition-highlights__text {
    font-size: 1.4rem;
  }
}
.composition-highlights__text {
  line-height: 130%;
}

.product-text-block {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 60rem;
  padding-bottom: 0;
}
@media (max-width: 1089px) {
  .product-text-block {
    max-width: 100%;
  }
}
.product-text-block p {
  margin: 0;
  font-family: var(--primary-font);
  font-size: 1.6rem;
}
@media (max-width: 1089px) {
  .product-text-block p {
    font-size: 1.4rem;
  }
}
.product-text-block p {
  line-height: 130%;
  color: #222222;
}
.product-text-block a {
  color: #222222;
  text-decoration: underline;
}
.product-text-block a:hover {
  text-decoration: none;
}

.product-faq {
  padding-top: 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 2.8rem;
}
.product-faq__title {
  margin: 0;
  font-family: var(--primary-font);
  font-size: 2.4rem;
}
@media (max-width: 1089px) {
  .product-faq__title {
    font-size: 1.8rem;
  }
}
.product-faq__title {
  line-height: 120%;
  font-weight: 400;
  color: #222222;
}
.product-faq__list {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.product-slider {
  display: flex;
  flex-direction: column;
  gap: 2.8rem;
}
.product-slider__track {
  display: flex;
  flex-wrap: nowrap!important;
  gap: 1.6rem;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0;
  margin: 0;
  list-style: none;
}
.product-slider__track::-webkit-scrollbar {
  display: none;
}
.product-slider__card {
  flex-shrink: 0;
  width: calc((100% - 1.6rem) / 2);
  display: flex;
  scroll-snap-align: start;
}
.product-slider:not(.product-slider--active) .product-slider__track {
  overflow: visible;
  scroll-snap-type: none;
}
.product-slider:not(.product-slider--active) .product-slider__card {
  width: calc((100% - 1.6rem) / 2);
}
.product-slider__pagination {
  display: flex;
  flex-direction: row;
  gap: 1.2rem;
  align-items: center;
  justify-content: center;
}
.product-slider__pagination--hidden {
  display: none;
}
.product-slider__dot {
  width: 0.1rem;
  height: 1.8rem;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: rgba(34, 34, 34, 0.25);
  cursor: pointer;
  transition: background-color 250ms;
}
.product-slider__dot--active {
  background: #222222;
}
.nd-product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 0!important;
  background: transparent;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
}
.nd-product-card__image-link {
  display: block;
  width: 100%;
  padding: 2rem;
  margin: 0 0 8rem;
  background: #d9d9d9;
}
.nd-product-card__image {
  width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 1 / 1;
}
.nd-product-card__body {
  display: grid;
  flex: 1;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0 1.2rem;
  padding: 1.2rem 0 0;
  background: #ffffff;
  position: absolute;
  left: 0;
  bottom: -5.3rem;
  width: 100%;
  transition: bottom 300ms ease-in-out;
}
.nd-product-card:hover .nd-product-card__body {
  bottom: 0;
}
.nd-product-card__brand {
  grid-column: 1;
  grid-row: 1;
  font-family: var(--primary-font);
  font-size: 1.6rem;
  line-height: 130%;
  letter-spacing: -0.048rem;
  color: #222222;
}
.nd-product-card__title-link {
  grid-column: 1;
  grid-row: 2;
  color: inherit;
}
.nd-product-card__title {
  margin: 0;
  font-family: var(--primary-font);
  font-size: 1.6rem;
  line-height: 130%;
  font-weight: 400;
  letter-spacing: -0.048rem;
  color: #222222;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
.nd-product-card__price {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: start;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-family: var(--primary-font);
  font-size: 1.6rem;
  line-height: 130%;
  letter-spacing: -0.04rem;
  color: #222222;
  text-align: right;
  white-space: nowrap;
}
.nd-product-card__price del {
  margin-left: 0;
  color: rgba(34, 34, 34, 0.45);
  font-size: 1.4rem;
}
.nd-product-card__price ins {
  text-decoration: none;
}
.nd-product-card__cart {
  grid-column: 1 / -1;
  margin-top: 1.2rem;
  max-width: 100%;
  width: 100%;
  overflow: hidden;
}
.nd-product-card__add-to-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 5.3rem;
  border-radius: 0;
  background: #222222;
  color: #ffffff;
  font-family: var(--primary-font);
  font-size: 1.6rem;
  line-height: 130%;
  font-weight: 400;
  letter-spacing: -0.048rem;
  text-decoration: none;
}
.nd-product-card__add-to-cart--disabled {
  background: rgba(34, 34, 34, 0.2);
  cursor: default;
}
.nd-product-card__cart .count-switch {
  min-height: 5.3rem;
  width: 100%;
  border-radius: 0;
  background: #222222;
  color: #ffffff;
  display: flex;
  align-items: center;
}
.nd-product-card__cart .count-switch-action {
  width: auto;
  padding: 1.65rem 1.7rem;
  cursor: pointer;
}
.nd-product-card__cart .count-swith_number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  font-family: var(--primary-font);
  font-size: 1.6rem;
  line-height: 120%;
  font-weight: 400;
  color: #ffffff;
  text-decoration: none;
}
.nd-product-card__wishlist {
  position: absolute;
  top: 0;
  right: .4rem;
  z-index: 3;
  cursor: pointer;
}

.nd-product-card__wishlist > span {
  display: block;
  padding: 0.8rem;
  height: 4rem;
  width: 4rem;
  opacity: 0.3;
  transition: opacity 0.3s ease;
}

.nd-product-card__wishlist:hover > span,
.nd-product-card__wishlist > span.active {
  opacity: 1;
}

.nd-product-card__wishlist svg {
  height: 100%;
  width: 100%;
}

.nd-product-card__wishlist svg .like--default {
  display: block;
}

.nd-product-card__wishlist svg .like--active {
  display: none;
}

.nd-product-card__wishlist .active svg .like--active {
  display: block;
}

.nd-product-card__wishlist .active svg .like--default {
  display: none;
}
.nd-product-card__tags {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}
.nd-product-card__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.2rem;
  min-height: 3.2rem;
  padding: 0.7rem 1rem;
  border-radius: 0;
  font-family: var(--primary-font);
  font-size: 1.2rem;
  line-height: 130%;
  font-weight: 350;
  letter-spacing: -0.036rem;
}
.nd-product-card__tag--sale {
  background: #ffa3af;
  color: #3d0008;
}
.nd-product-card__tag--hit {
  background: #80ced7;
  color: #0e363c;
}
.nd-product-card__tag--new {
  background: #99d16e;
  color: #1c2f0f;
}
.nd-product-card__tag--attention {
  width: 3.2rem;
  padding: 0;
  background: #F2DD6B;
}
.nd-product-card__tag--attention svg {
  width: 2rem;
  height: 2rem;
}

.recommended-goods {
  margin-top: 6rem;
}
.recommended-goods__header {
  margin-bottom: 2.4rem;
}
.recommended-goods__title {
  margin: 0;
  font-family: var(--primary-font);
  font-size: 3.6rem;
  line-height: 120%;
  font-weight: 400;
  color: #222222;
}
.recommended-goods__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(32.5rem, 1fr));
  gap: 2rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
.recommended-goods__item {
  min-width: 0;
}
.recommended-goods__actions {
  display: flex;
  justify-content: center;
  margin-top: 8rem;
  transition: opacity 0.3s ease;
}
.recommended-goods__actions:hover {
  opacity: 0.6;
}
.recommended-goods__more {
  border: 0;
  background: transparent;
  cursor: pointer;
}
.button-icon-down {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  padding: 0;
}
.button-icon-down__button {
  color: #222222;
  text-align: left;
  font-family: var(--primary-font);
  font-size: 2rem;
  line-height: 140%;
  letter-spacing: -0.02em;
  font-weight: 400;
  position: relative;
}
.button-icon-down___24-px-arrow-down {
  display: flex;
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  position: relative;
  top: 0;
  overflow: visible;
  transition: top 0.3s ease;
}
.recommended-goods__actions:hover .button-icon-down___24-px-arrow-down {
  top: -0.4rem;
}
.button-icon-down___24-px-arrow-down svg {
  width: 100%;
  height: 100%;
}
.recommended-goods__more[hidden],
.recommended-goods__more.is-loading {
  opacity: 0.6;
}
@media (max-width: 1200px) {
  .recommended-goods__list {
    grid-template-columns: repeat(3, minmax(22.9rem, 1fr));
  }
}
@media (max-width: 1079px) and (min-width: 768px) {
  .product-slider__card,
  .product-slider:not(.product-slider--active) .product-slider__card {
    width: calc((100% - 3.2rem) / 3);
  }
  .nd-product-card__brand,
  .nd-product-card__title,
  .nd-product-card__price,
  .nd-product-card__add-to-cart,
  .nd-product-card__cart .count-swith_number {
    font-size: 1.4rem;
    letter-spacing: -0.042rem;
  }
  .nd-product-card__add-to-cart,
  .nd-product-card__cart .count-switch {
    min-height: 4.2rem;
  }
  .nd-product-card {
    overflow: visible;
  }
  .nd-product-card__image-link {
    margin-bottom: 0;
  }
  .nd-product-card__body {
    position: relative;
    left: auto;
    bottom: auto;
  }
  .recommended-goods__title {
    font-size: 2.8rem;
  }
}
@media (max-width: 767px) {
  .product-slider__card,
  .product-slider:not(.product-slider--active) .product-slider__card {
    width: calc((100% - 1.2rem) / 2);
  }
  .product-slider__track {
    gap: 1.2rem;
  }
  .product-slider {
    gap: 2rem;
  }
  .recommended-goods {
    margin-top: 4rem;
  }
  .recommended-goods__title {
    font-size: 2.4rem;
  }
  .recommended-goods__list {
    grid-template-columns: repeat(2, minmax(13.8rem, 1fr));
    gap: 2.4rem 1.2rem;
  }
  .nd-product-card__body {
    position: relative;
    left: auto;
    bottom: auto;
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 0.8rem;
  }
  .nd-product-card {
    overflow: visible;
  }
  .nd-product-card__image-link {
    margin-bottom: 0;
  }
  .nd-product-card__brand,
  .nd-product-card__title-link,
  .nd-product-card__price,
  .nd-product-card__cart {
    grid-column: 1;
    grid-row: auto;
  }
  .nd-product-card__price {
    align-items: flex-start;
    text-align: left;
    white-space: normal;
  }
  .nd-product-card__brand,
  .nd-product-card__title,
  .nd-product-card__price,
  .nd-product-card__add-to-cart,
  .nd-product-card__cart .count-swith_number {
    font-size: 1.4rem;
    letter-spacing: -0.042rem;
  }
  .nd-product-card__cart {
    margin-top: 1.2rem;
  }
  .nd-product-card__add-to-cart,
  .nd-product-card__cart .count-switch {
    min-height: 4.2rem;
  }
  .nd-product-card__tag {
    min-width: 2.8rem;
    min-height: 2.8rem;
    padding: 0.5rem 0.8rem;
    font-size: 1.1rem;
  }
  .nd-product-card__tag--attention {
    width: 2.8rem;
  }
}
