.product-card-adaptive {
  background: var(--bg-highlight);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  -webkit-transition: -webkit-box-shadow 0.3s;
  transition: -webkit-box-shadow 0.3s;
  transition: box-shadow 0.3s;
  transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
}
.product-card-adaptive__img-wrap {
  position: relative;
}
.product-card-adaptive__img {
  position: relative;
  display: block;
  width: 100%;
  padding-top: 100%;
}
.product-card-adaptive__img img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.not-available .product-card-adaptive__img {
  opacity: 0.5;
}
.product-card-adaptive__tags {
  cursor: pointer;
  position: absolute;
  left: 4px;
  bottom: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
}
.product-card-adaptive__tags span {
  font-size: 9px;
  color: var(--white);
  display: inline-block;
  height: 16px;
  line-height: 9px;
  padding: 4px 4px;
  text-transform: uppercase;
}
.product-card-adaptive__tags span.red {
  background-color: var(--status-negative);
}
.product-card-adaptive__tags span.green {
  background-color: var(--status-positive);
}
.product-card-adaptive__tags span.orange {
  background-color: var(--status-alert);
}
@media (min-width: 1024px) {
  .product-card-adaptive__tags span {
    padding: 4px 13px;
    font-size: 11px;
    line-height: 17px;
    height: 23px;
    border-radius: 11px;
  }
}
@media (min-width: 1024px) {
  .product-card-adaptive__tags {
    gap: 5px;
    left: 20px;
    bottom: 10px;
  }
}
.product-card-adaptive__rating {
  display: none;
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  background-color: var(--action-primary);
  color: var(--white);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 23px;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  padding: 5px 10px 5px 5px;
}
@media (min-width: 1024px) {
  .product-card-adaptive__rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.product-card-adaptive__info {
  padding: 8px 4px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 1024px) {
  .product-card-adaptive__info {
    padding: 5px 20px 11px;
  }
}
.product-card-adaptive__category {
  font-size: 14px;
  line-height: 1;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
}
@media (min-width: 1024px) {
  .product-card-adaptive__category {
    font-size: 12px;
    line-height: 1.2;
    margin-bottom: 9px;
    color: var(--text-disabled);
    text-align: left;
  }
}
.product-card-adaptive__title {
  font-size: 14px;
  line-height: 1.2;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  margin-bottom: 13px;
}
@media (min-width: 1024px) {
  .product-card-adaptive__title {
    text-align: left;
    margin-bottom: 61px;
  }
}
.product-card-adaptive__code {
  display: none;
  font-size: 12px;
  line-height: 1.2;
  margin-bottom: 8px;
}
@media (min-width: 1024px) {
  .product-card-adaptive__code {
    display: block;
  }
}
.product-card-adaptive__price-wrap {
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: auto;
}
.product-card-adaptive__price {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.product-card-adaptive__price span {
  font-size: 15px;
  color: var(--text-disabled-two);
}
.product-card-adaptive__price .current {
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
}
@media (min-width: 1024px) {
  .product-card-adaptive__price .current {
    line-height: 1.2;
    font-size: 22px;
  }
}
.product-card-adaptive__price .old {
  margin-left: 6px;
  color: var(--text-disabled);
  text-decoration: line-through;
  font-size: 12px;
  line-height: 1;
}
.added-to-cart .product-card-adaptive__price {
  display: none;
}
@media (min-width: 1024px) {
  .added-to-cart .product-card-adaptive__price {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}
.product-card-adaptive__count {
  display: none;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  width: 100%;
  padding: 0 10px;
}
.product-card-adaptive__count-btn {
  background: var(--bg-highlight);
  position: relative;
  cursor: pointer;
  width: 34px;
  height: 34px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.product-card-adaptive__count-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 1px;
  background-color: var(--action-primary);
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (min-width: 1024px) {
  .product-card-adaptive__count-btn {
    width: 24px;
    height: 24px;
  }
}
@media (min-width: 1024px) and (hover: hover) {
  .product-card-adaptive__count-btn:hover {
    background-color: var(--bg-border);
  }
}
.product-card-adaptive__count-btn--plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 16px;
  background-color: var(--action-primary);
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.product-card-adaptive__count-value {
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}
.product-card-adaptive__count-value span {
  display: none;
}
@media (min-width: 1024px) {
  .product-card-adaptive__count-value span {
    display: inline;
  }
}
@media (min-width: 1024px) {
  .product-card-adaptive__count-value {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-disabled-two);
  }
}
@media (min-width: 1024px) {
  .product-card-adaptive__count {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100px;
    padding: 0;
  }
}
.added-to-cart .product-card-adaptive__count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.product-card-adaptive__add-basket {
  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;
  width: 34px;
  height: 34px;
  cursor: pointer;
  background-color: var(--action-primary);
}
.product-card-adaptive__add-basket img {
  display: block;
  width: 17px;
  height: 17px;
}
.added-to-cart .product-card-adaptive__add-basket {
  display: none;
}
.product-card-adaptive__add-basket .checked-img {
  display: none;
}
@media (min-width: 1024px) {
  .product-card-adaptive__add-basket {
    display: none;
  }
}
.checked .product-card-adaptive__add-basket {
  background-color: transparent;
}
.checked .product-card-adaptive__add-basket img {
  display: none;
}
.checked .product-card-adaptive__add-basket .checked-img {
  display: block;
}
.product-card-adaptive__add-basket-desk {
  height: 100%;
  display: none;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 14px 22px;
  font-size: 14px;
  cursor: pointer;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
.product-card-adaptive__add-basket-desk svg {
  -webkit-transition: fill 0.3s;
  transition: fill 0.3s;
  fill: var(--action-primary);
}
.product-card-adaptive__add-basket-desk .checked-img {
  display: none;
}
.product-card-adaptive__add-basket-desk .checked-text {
  display: none;
}
.product-card-adaptive__add-basket-desk .added-text {
  display: none;
}
@media (min-width: 1024px) {
  .product-card-adaptive__add-basket-desk {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.checked .product-card-adaptive__add-basket-desk {
  position: relative;
  background-color: var(--action-primary);
  color: var(--white);
}
.checked .product-card-adaptive__add-basket-desk svg {
  fill: var(--white);
}
.checked .product-card-adaptive__add-basket-desk svg {
  display: none;
}
.checked .product-card-adaptive__add-basket-desk span {
  display: none;
}
.checked .product-card-adaptive__add-basket-desk .checked-img {
  display: block;
}
.checked .product-card-adaptive__add-basket-desk .checked-text {
  display: block;
}
.checked .product-card-adaptive__add-basket-desk::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.checked .product-card-adaptive__add-basket-desk:hover::before {
  opacity: 1;
}
.added-to-cart .product-card-adaptive__add-basket-desk {
  position: relative;
  background-color: var(--action-primary);
  color: var(--white);
}
.added-to-cart .product-card-adaptive__add-basket-desk::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.added-to-cart .product-card-adaptive__add-basket-desk:hover::before {
  opacity: 1;
}
.added-to-cart .product-card-adaptive__add-basket-desk svg {
  fill: var(--white);
}
.added-to-cart .product-card-adaptive__add-basket-desk span {
  display: none;
}
.added-to-cart .product-card-adaptive__add-basket-desk .added-text {
  display: block;
}
@media (min-width: 1024px) and (hover: hover) {
  .product-card-adaptive__add-basket-desk:hover {
    background-color: var(--action-primary);
    color: var(--white);
  }
}
@media (min-width: 1024px) and (hover: hover) {
  .product-card-adaptive__add-basket-desk:hover svg {
    fill: var(--white);
  }
}
.product-card-adaptive__add-favorite {
  cursor: pointer;
  position: absolute;
  top: 0px;
  right: 0px;
  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;
  height: 32px;
  width: 32px;
}
.product-card-adaptive__add-favorite svg {
  width: 16px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  stroke: var(--white);
}
@media (min-width: 1024px) {
  .product-card-adaptive__add-favorite svg {
    width: 22px;
    stroke: var(--action-primary);
    fill: var(--white);
  }
}
.added-to-favorite .product-card-adaptive__add-favorite svg {
  fill: var(--status-active);
}
@media (min-width: 1024px) {
  .added-to-favorite .product-card-adaptive__add-favorite svg {
    fill: var(--action-primary);
  }
}
@media (min-width: 1024px) {
  .product-card-adaptive__add-favorite {
    height: 100%;
    width: 57px;
    position: relative;
    border-left: 1px solid var(--bg-border);
  }
}
@media (min-width: 1024px) and (hover: hover) {
  .product-card-adaptive__add-favorite:hover svg {
    fill: var(--action-primary);
  }
}
@media (min-width: 1024px) and (hover: hover) {
  .added-to-favorite .product-card-adaptive__add-favorite:hover svg {
    fill: var(--white);
  }
}
@media (min-width: 1024px) {
  .product-card-adaptive__actions {
    border-top: 1px solid var(--bg-border);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 51px;
  }
}
@media (min-width: 1024px) {
  .product-card-adaptive {
    background: var(--white);
    border: 1px solid var(--bg-border);
  }
}
@media (min-width: 1024px) and (hover: hover) {
  .product-card-adaptive:hover {
    -webkit-box-shadow: 0 4px 8px rgba(0, 59, 69, 0.1490196078);
            box-shadow: 0 4px 8px rgba(0, 59, 69, 0.1490196078);
  }
}