.menu-catalogue {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.menu-catalogue__open-btn {
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  background-color: var(--brand-color);
  padding: 16px;
  color: #fff;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.menu-catalogue__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: white;
  padding-bottom: 40px;
}
.menu-catalogue__item {
  position: relative;
  padding: 16px 24px;
  color: black;
  cursor: pointer;
}
.menu-catalogue__link {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.menu-catalogue__link img {
  width: 18px;
  height: 18px;
}
.menu-catalogue__link * {
  color: var(--black-general);
}
.menu-catalogue__item.hovered {
  background-color: #F5F7FA;
}
.menu-catalogue__item.hovered .menu-catalogue__link * {
  color: var(--secondary);
}
.menu-catalogue__item.hovered::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background: linear-gradient(45deg, rgba(255,255,255,0) 50%, var(--brand-color) 50%);
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  top: calc(50% - 6px);
  right: 24px;
}
.menu-catalogue__subcategories-popup {
  padding: 16px 24px;
}
.menu-catalogue__subcategories-popup > * {
  display: block;
  width: 100%;
  padding: 16px 0;
  border-bottom: 1px solid var(--grey);
  color: var(--black-general);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}
.menu-catalogue__bottom-part {
  padding: 32px 20px 16px 52px;
  border-top: 1px solid var(--grey);
}
.menu-catalogue__bottom-part > * {
  color: var(--grey-hard);
}
@media screen and (min-width: 1200px) {
  .menu-catalogue__subcategories-popup {
    position: absolute;
    top: 0;
    left: 100%;
    background-color: #fff;
    z-index: 2;
    -webkit-box-shadow: 0 0 12px 0 rgba(17, 28, 41, 0.15);
            box-shadow: 0 0 12px 0 rgba(17, 28, 41, 0.15);
  }
  .menu-catalogue__subcategories-popup > * {
    min-width: 310px;
  }
  .menu-catalogue__subcategories-popup > *:hover {
    color: var(--secondary);
    border-color: var(--secondary);
  }
  .menu-catalogue__open-btn {
    padding: 20px 24px;
  }

}

.characteristic-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  overflow-x: auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.characteristic-field__left-col {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.characteristic-field__left-col, .characteristic-field__right-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.characteristic-field__left-col > *, .characteristic-field__right-col > * {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
  border: none;
  padding: 8px;
}
.characteristic-field__left-col > * {
  padding-right: 60px;
}
.characteristic-field__left-col > *:nth-of-type(odd), .characteristic-field__right-col > *:nth-of-type(odd) {
  background-color: var(--grey-light);
}

@media screen and (min-width: 1200px) {
  .characteristic-field__left-col > * {
    padding-left: 16px;
  }
  .characteristic-field__right-col > * {
    padding-right: 16px;
  }
  .characteristic-field__right-col > * {
    min-width: 130px;
  }
}

.tags-wrapper {
  gap: 12px;
}

.tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}

/*.tags__item:nth-child(n + 4) {
  display: none;
}

.tags.opened .tags__item:nth-child(n + 4) {
  display: inline-flex;
}*/

.tags__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 8px 12px;
  border: 2px solid var(--grey);
  border-radius: 4px;
  background: var(--grey-ultra-light);
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  font-weight: 300;
  color: var(--black-general)
}

.tags__link.active {
  background: white;
  color: var(--secondary);
  border-color: var(--secondary)
}
@media not all and (hover: none) {
  .tags__link:hover {
    background: var(--grey);
  }

  .tags__link:active {
    border-color: var(--secondary);
    color: var(--secondary);
    background: var(--primary-light);
  }
}


@media (min-width: 768px) {
  .tags {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (min-width: 1200px) {
  .tags {
    gap: 12px;
  }

  .tags__link {
    padding: 12px 16px;
  }
}

.product-card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}

.product-card__chevrons {
  position: absolute;
  top: 10px;
  left: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  z-index: 1;
}

.product-card__content {
  position: relative;
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 16px;
  background-color: white;
  height: 100%;
}

.product-card__delete-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 24px;
  height: 24px;
}

.product-card__img-wrap {
  width: 177px;
  min-height: 167px;
  -o-object-fit: cover;
     object-fit: cover;
  -ms-flex-item-align: center;
      align-self: center;
}
.product-card__img {
  -o-object-fit: contain;
     object-fit: contain;
}
.product-card__name {
  color: var(--black-second);
}
.product-card .product-card__detail-btn {
  width: 100%;
}
.product-card .old-price + .new-price {
  color: var(--red);
  margin-bottom: 4px;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}
.product-card .old-price {
  color: var(--grey-medium);
  text-decoration: line-through;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}

.product-card_simple .product-card__price-value {
  position: relative;
}

@media screen and (min-width: 1200px) {
  .product-card .old-price + .new-price {
    font-size: 18px;
    line-height: 24px;
  }
  .product-card .old-price {
    font-size: 16px;
    line-height: 22px;
  }
}

/* catalog card when mobile */
.product-card_catalog .product-card__content {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  padding: 16px 12px;
}
.product-card_catalog .product-card__img {
  width: 100%;
  height: auto;
  aspect-ratio: 33 / 25;
}
.product-card_catalog .product-card__detail-btn.button-small {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.product-card_catalog:not(.product-card_horizontal, .product-card_simple) .product-card__title-wrap {
  height: 60px;
}

.product-card_catalog .product-card__title {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-card_catalog .product-card__img-wrap {
  max-width: 99px;
}

.product-card__price-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}

.product-card__content-inner-wrap {
  gap: 16px;
}

.product-card_simple .product-card__price-group {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}

@media screen and (min-width: 768px) {
  .product-card_catalog .product-card__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 24px;
  }

  .product-card_horizontal .product-card__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .product-card_simple .product-card__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 12px;
  }

  .product-card_catalog .product-card__img-wrap {
    max-width: 100%;
  }

  .product-card_horizontal .product-card__img-wrap {
    max-width: 143px;
  }

  .product-card_simple .product-card__img-wrap {
    max-width: 65px;
  }

  .product-card_simple .product-card__detail-btn-wrapper {
    gap: 16px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .product-card_simple  .product-card__img {
    aspect-ratio: 65 / 37;
  }

  .product-card_simple .product-card__info-wrap {
    max-width: 226px;
  }

  .product-card_simple .product-card__content-inner-wrap {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .product-card_catalog .product-card__chevrons {
    top: 18px;
    left: 18px;
  }

  .product-card_simple .product-card__action-buttons {
    gap: 8px;
    min-width: 104px;
  }

  .product-card__feature-list {
    gap: 12px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .product-card__feature-list-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 12px;
  }

  .product-card__feature-list span {
    width: 50%;
    font-family: var(--font-secondary);
  }

  .product-card__price-group {
    min-width: 230px;
  }

  .product-card__action-buttons {
    gap: 12px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .product-card__info-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
    width: 100%;
  }
}

@media screen and (min-width: 992px) {
  .product-card_horizontal .product-card__content {
    gap: 24px;
  }

  .product-card__content-inner-wrap {
    gap: 24px;
  }

  .product-card_simple .product-card__img-wrap {
    max-width: 102px;
  }

  .product-card_simple .product-card__info-wrap {
    max-width: 306px;
  }

  .product-card_simple .product-card__detail-btn-wrapper {
    gap: 40px;
  }

  .product-card_simple .product-card__price-value {
    min-width: 202px;
  }

  .product-card__feature-list {
    max-width: 453px;
  }
}
@media screen and (min-width: 1200px) {
  .product-card__content {
    padding-top: 32px;
    row-gap: 24px;
  }
  .product-card__img {
    width: 100%;
    height: 180px;
  }
  @-webkit-keyframes offers_slide {
    0%   {top: calc(100% - 160px); opacity: 0;}
    50% {opacity: .8}
    100% {top: 100%; opacity: 1}
  }
  @keyframes offers_slide {
    0%   {top: calc(100% - 160px); opacity: 0;}
    50% {opacity: .8}
    100% {top: 100%; opacity: 1}
  }
  .product-card__detail-btn-wrapper:not(.product-card_horizontal .product-card__detail-btn-wrapper, .product-card_simple .product-card__detail-btn-wrapper) {
    padding: 0 12px 24px 12px;
    width: 100%;
    background-color: white;
    border-radius: 4px;
    position: absolute;
    /* высота скрывающегося блока .product-card__detail-btn-wrapper */
    top: calc(100% - 160px);
    left: 0;
    z-index: -1;
    overflow: hidden;
    -webkit-box-shadow: 0 1px 0 0 rgba(18, 0, 2, 0.1);
            box-shadow: 0 1px 0 0 rgba(18, 0, 2, 0.1);
  }
  .product-card__content:not(.product-card_horizontal .product-card__content, .product-card_simple .product-card__content):hover .product-card__detail-btn-wrapper {
    -webkit-animation-name: offers_slide;
            animation-name: offers_slide;
    -webkit-animation-duration: 0s;
            animation-duration: 0s;
    top: 100%;
    z-index: 2;
  }

  .product-card__feature-list {
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .product-card_horizontal .product-card__content {
    gap: 16px;
  }

  .product-card__content-inner-wrap {
    gap: 16px;
  }

  .product-card__price-group {
    min-width: 260px;
  }

  .product-card__action-buttons {
    gap: 24px;
  }

  .product-card_horizontal .product-card__img {
    aspect-ratio: 4 / 3;
  }

  .product-card_horizontal .product-card__img-wrap {
    max-width: 130px;
  }

  .product-card_simple .product-card__info-wrap {
    max-width: 265px;
  }

  .product-card_simple .product-card__detail-btn-wrapper {
    gap: 16px;
  }

  .product-card_simple .product-card__price-value {
    min-width: auto;
  }

  .product-card_simple .product-card__detail-btn-wrapper {
    gap: 24px;
  }

  .product-card_simple .product-card__action-buttons {
    min-width: 121px;
  }
}

@media screen and (min-width: 1440px) {
  .product-card__feature-list {
    width: 100%;
    max-width: 508px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }


  .product-card_horizontal .product-card__content {
    gap: 24px;
  }

  .product-card__content-inner-wrap {
    gap: 24px;
  }

  .product-card_simple .product-card__price-value {
    min-width: 240px;
  }

  .product-card_simple .product-card__detail-btn-wrapper {
    gap: 40px;
  }

  .product-card__detail-btn-wrapper:not(.product-card_horizontal .product-card__detail-btn-wrapper, .product-card_simple .product-card__detail-btn-wrapper) {
    padding: 0 24px 24px 24px;
  }
}

@media screen and (min-width: 1920px) {
  .product-card_horizontal .product-card__img-wrap {
    max-width: 240px;
  }

  .product-card_simple .product-card__price-value {
    min-width: 258px;
  }

  .product-card__feature-list-item {
    gap: 8px;
  }
}

.upload-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
}

.upload-block_column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.upload-block_row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.upload-block input {
  opacity: 0;
  position: absolute;
  z-index: 2;
  cursor: pointer;
}

.upload-block label {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  padding: 0;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: var(--secondary);
  -webkit-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
  cursor: pointer;
}


.upload-block_column .uploaded-file.changed {
  margin-top: 5px;
}

.upload-block .uploaded-file.changed button {
  position: relative;
  top: -2px;
  border: 0;
  padding: 0;
  outline: 0;
  width: 20px;
  height: 20px;
  margin-left: 10px;
  background: transparent;
}

.upload-block .uploaded-file.changed button::before {
  position: absolute;
  content: '';
  width: 2px;
  height: 15px;
  top: 0;
  left: 6px;
  background: red;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.upload-block .uploaded-file.changed button::after {
  position: absolute;
  content: '';
  width: 2px;
  height: 15px;
  top: 0;
  left: 6px;
  background: red;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.product-card-page_row-gap {
  row-gap: 24px;
}

.product-card-page__anchors {
  margin-left: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background-color: var(--grey-ultra-light);
}
.product-card-page__anchors.product-card-page__anchors_absolute {
  position: absolute !important;
  left: unset !important;
  top: unset !important;
  right: calc(var(--bs-gutter-x) * .5) !important;
  bottom: 0 !important;
}

.product-card-page__anchor {
  color: var(--black-second);
  text-transform: uppercase;
}

.product-card-page__anchor.active {
  color: var(--secondary);
}

/*.product-card-page__navigation-strip > * {*/
/*  position: relative;*/
/*  display: block;*/
/*  color: var(--grey-medium);*/
/*}*/
/*.product-card-page__navigation-strip > *:not(:first-of-type) {*/
/*  margin-left: 18px;*/
/*}*/
/*.product-card-page__navigation-strip > *:not(:first-of-type)::after {*/
/*  content: '';*/
/*  position: absolute;*/
/*  border-radius: 50%;*/
/*  width: 4px;*/
/*  height: 4px;*/
/*  top: calc(50% - 2px);*/
/*  left: -8px;*/
/*  background-color: var(--grey-medium);*/
/*}*/
/*.product-card-page__navigation-strip > *:last-of-type {*/
/*  color: var(--grey-hard);*/
/*}*/
.product-card-page__slider {
  --svgIconArrowWidth: 24px;
  margin-bottom: 15px;
  -webkit-box-shadow: 0 0 12px 0 rgba(17, 28, 41, 0.15);
          box-shadow: 0 0 12px 0 rgba(17, 28, 41, 0.15);
}
.product-card-page__compare-button {
  position: absolute;
  top: 12px;
  right: 8px;
  padding: 4px;
  border-radius: 4px;
  border: 1px solid var(--grey-medium);
  z-index: 3;
  background-color: #fff;
}
.product-card-page__slider .main-slider__next svg,
.product-card-page__slider .main-slider__prev svg {
  width: var(--svgIconArrowWidth);
  height: var(--svgIconArrowWidth);
}

.product-card-page__slider .main-slider__next,
.product-card-page__slider .main-slider__prev {
  position: absolute;
  top: calc(50% - (var(--svgIconArrowWidth) / 2));
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 4px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: var(--grey-light);
  border: none;
}

.product-card-page__slider .main-slider__next svg path,
.product-card-page__slider .main-slider__prev svg path {
  stroke: var(--black-general);
}

.product-card-page__slider .main-slider__next:disabled svg path,
.product-card-page__slider .main-slider__prev:disabled svg path {
  stroke: var(--grey-medium);
}

.product-card-page__slider .main-slider__prev {
  left: 8px;
}

.product-card-page__slider .main-slider__next {
  right: 8px;
}
.product-card-page__main-preview-slider {
  padding-bottom: 3px;
}
.product-card-page__main-preview-slider .swiper-slide {
  opacity: 0.4;
  -webkit-box-shadow: 0 0 12px 0 rgba(17, 28, 41, 0.15);
          box-shadow: 0 0 12px 0 rgba(17, 28, 41, 0.15);
}

.product-card-page__description ul {
  margin-left: 1rem;
}

.product-card-page__main-preview-slider .swiper-slide-thumb-active {
  opacity: 1;
}

.product-card-page__video-block .product-card-page__video {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.product-card-page__video-wrapper {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
.product-card-page__video-wrapper .video__youtube-icon {
  opacity: .95;
  z-index: 3;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  border: none;
  position: absolute;
  background-color: transparent;
  height: 50%;
}
.product-card-page__video-wrapper .video__youtube-icon svg {
  width: 100%;
  height: 100%;
}



@media screen and (min-width: 1200px) {
  .product-card-page__anchor {
    text-transform: unset;
  }
  .product-card-page_row-gap {
    row-gap: 40px;
  }
  .product-card-page__video-wrapper .video__youtube-icon {
    opacity: 0;
  }
  .product-card-page__video-wrapper:hover .video__youtube-icon {
    opacity: .95;
  }
  .product-card-page__video-wrapper::after {
    opacity: 0;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    background-color: #000;
    z-index: 1;
  }
  .product-card-page__video-wrapper:hover::after {
    opacity: .5;
  }
  .product-card-page__anchor {
    color: var(--grey-hard);
    text-transform: unset;
  }

  .product-card-page__anchor.active {
    color: var(--black-general);
  }
}

