/* font-weights */
.product-detailed .container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (min-width: 1024px) {
  .product-detailed .container {
    width: 688px;
  }
}
@media screen and (min-width: 1600px) {
  .product-detailed .container {
    width: 1600px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(5, auto) 1fr auto;
    column-gap: 72px;
    row-gap: 32px;
    align-items: start;
    grid-template-areas: "image title" "image advantages" "image mainprops" "image conditions" "image awards" "image wheretobuy" "sostav nutrition";
  }
  .product-detailed .container .product-title-and-descrition {
    grid-area: title;
  }
  .product-detailed .container .conditions {
    grid-area: conditions;
  }
  .product-detailed .container .sostav {
    grid-area: sostav;
  }
  .product-detailed .container .awards {
    grid-area: awards;
  }
  .product-detailed .container .where-to-buy {
    grid-area: wheretobuy;
    justify-self: start;
  }
  .product-detailed .container .nutrition {
    grid-area: nutrition;
  }
}
.product-title-and-description {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.product-short-description {
  font-size: 18px;
  font-family: 'Franklin', sans-serif;;
}
@media screen and (min-width: 1024px) {
  .product-short-description {
    font-size: 24px;
  }
}
@media screen and (min-width: 1600px) {
  .product-short-description {
    padding-bottom: 24px;
    border-bottom: 1px solid var(--BG-Gray);
  }
}
@media screen and (min-width: 1600px) {
  .product-images {
    grid-area: image;
  }
}
.product-images .big-image {
  position: relative;
  border-radius: 13.634px;
  background: var(--BG-White-gray, #EDEDED);
  padding: 32px 27px;
  aspect-ratio: 1/1;
}
.product-images .big-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-images .small-images {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 12px;
}
.product-images .small-image {
  cursor: pointer;
  display: flex;
  width: 90px;
  height: 90px;
  padding: 17px 18px 17px 17px;
  justify-content: center;
  align-items: center;
  border-radius: 28px;
  border: 2px solid var(--BG-White-gray, #EDEDED);
}
.product-images .small-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-images .small-image.active {
  background: var(--BG-White-gray, #EDEDED);
}
.product-advantages {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .product-advantages {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 32px;
  }
}
@media screen and (min-width: 1600px) {
  .product-advantages {
    grid-area: advantages;
  }
}
.product-advantage {
  display: flex;
  align-items: center;
  gap: 10px;
}
.product-prop {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.product-prop-title {
  font-family: 'Franklin', sans-serif;;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 106%; /* 25.44px */
}
.product-prop-value {
  color: var(--BG-Gray, #7D7D7D);
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.48px;
  display: flex;
  gap: 12px;
}
.product-prop-value .active {
  color: var(--bg-black);
}
.product-prop-value .item {
  white-space: nowrap;
}
.product-prop-value .item * {
  white-space: normal;
}
.product-prop-value .item > img {
  cursor: pointer;
}
.award-modal-date {
  margin-top: 44px;
  margin-bottom: 8px;
}
.award-modal-text {
  color: var(--bg-black);
  font-family: 'Franklin', sans-serif;;
  font-size: 24px;
  line-height: 106%;
}
.product-props.main-props {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .product-props.main-props {
    column-gap: 48px;
    flex-direction: row;
  }
}
@media screen and (min-width: 1600px) {
  .product-props.main-props {
    grid-area: mainprops;
  }
}
.nutrition-item {
  display: flex;
  padding: 12px 0px;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid var(--BG-Gray, #7D7D7D);
}
.nutrition-name {
  color: var(--BG-Gray, #7D7D7D);
}
.nutrition-value {
  white-space: nowrap;
}
.related-products {
  margin: 64px 0;
}
.product {
  color: var(--bg-black);
  text-decoration: none;
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 28px;
  border: 1px solid var(--BG-Gray, #7D7D7D);
  padding: 48px 16px 16px;
  transition: 0.25s all;
}
.product-image {
  text-align: center;
  margin: 0 auto 36px;
  width: 256px;
  height: 218px;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media screen and (min-width: 1024px) {
  .product-image {
    width: 100%;
    height: auto;
    display: flex;
    flex-grow: 1;
    align-items: center;
  }
}
.product-label {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  padding: 6px 12px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: var(--BG-White, #FFF);
  /* BG/Tag */
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 16.8px */
  letter-spacing: -0.42px;
  text-transform: uppercase;
}
.product-label.label-hit {
  border-radius: 100px;
  background: #DF2320;
}
.product-label.label-new {
  border-radius: 100px;
  background: #00C74F;
}
.product-label.label-gost {
  border-radius: 100px;
  border: 1px solid #DF2320;
  color: #DF2320;
}
.product-labels {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  gap: 8px;
}
.product-labels .product-label {
  position: static;
}
.product-title {
  font-family: 'Franklin', sans-serif;;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 106%; /* 19.08px */
}
.product-weight {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 20.8px */
  letter-spacing: -0.48px;
}
.swiper-wrapper {
  margin: 24px 0;
}
.swiper-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .swiper-buttons {
    position: absolute;
    top: 0;
    right: 0;
  }
}
.swiper-button-next,
.swiper-button-prev {
  cursor: pointer;
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  cursor: default;
}
.swiper-button-next.swiper-button-disabled svg *,
.swiper-button-prev.swiper-button-disabled svg * {
  stroke: #A8A8A8;
}
.swiper-button-next.swiper-button-disabled:hover svg *,
.swiper-button-prev.swiper-button-disabled:hover svg * {
  stroke: #A8A8A8;
  fill: transparent;
}