.product-card {
  display: flex;
  flex-direction: column;
}

.product-card__images {
  position: relative;
  flex-shrink: 0;
  height: 388px;
  margin-bottom: 8px;
  border-radius: 4px;
  overflow: hidden;
}

.product-card__images-wrapper,
.product-card__image-container {
  height: 100%;
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__colors {
  position: absolute;
  bottom: -56px;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 56px;
  background-color: var(--white);
  opacity: 80%;
  z-index: 2;
  transition: transform 0.3s;
}

.product-card__color {
  border-radius: 4px;
  width: 24px;
  height: 24px;
  background-color: var(--secondary);
  border: 1px solid var(--white);
  outline: 2px solid var(--grey-400);
  transition: outline-color var(--transition-base-timer);
  cursor: pointer;
}

.product-card__color:hover,
.product-card__color:focus,
.product-card__color:active {
  outline-color: var(--primary);
}

.product-card__color--pink {
  background-color: #FFDDE9;
}

.product-card__color--blue {
  background-color: #BCCAFC;
}

.product-card__color--red {
  background-color: #E3A193;
}

.product-card__color--yellow {
  background-color: #FBFFD1;
}

.product-card__color--green {
  background-color: #97BE64;
}

.product-card__color:not(:last-child) {
  margin-right: 8px;
}

.product-card__labels {
  display: flex;
  margin-bottom: 4px;
}

.product-card__label {
  padding: 4px 8px;
  border-radius: 4px;
  background-color: var(--secondary);
  color: var(--primary);
  font-size: 10px;
  line-height: 140%;
  user-select: none;
  cursor: auto;
  font-style: italic;
}

.product-card__label:not(:last-child) {
  margin-right: 8px;
}

.product-card__label--sale {
  color: #D93557;
  background: rgba(212, 135, 152, 0.32);
}

.product-card__label--new {
  color: #598D24;
  background: #DEF1CB;
}

.product-card__label--hit {
  color: #c24b55;
  background:  #ffc7de;
}

.product-card__label--exclusive {
  color: #3652B1;
  background: rgba(115, 135, 212, 0.32);
}

.product-card__label--new{
  text-transform: uppercase;
}

.product-card__label--promo{
  text-transform: uppercase;
  color: #a349a4;
  background: #c8bfe7;
}

.product-card__label--key{
  text-transform: uppercase;
  color: #000000;
  background: #ffc39e;
}

.product-card__label--mb{
  text-transform: uppercase;
  color: #ff8000;
  background: #ffffc4;
}

.product-card__label--special{
  text-transform: uppercase;
  color: #A54F3C;
  background: #FCE385;
}

.product-card__title {
  margin-bottom: 4px;
  color: var(--black-100);
  font-size: 16px;
  line-height: 18.75px;
}

.product-card__article {
  display: inline-block;
  margin-bottom: 4px;
  color: var(--grey-600);
  font-size: 12px;
  line-height: 14.06px;
}

.product-card__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-card__price-caption {
  color: var(--grey-text);
  font-size: 12px;
  line-height: 14.06px;
}

.product-card__price-container {
  display: flex;
  align-items: flex-end;
  /*flex-direction: column;*/
}

.product-card__price-old {
  text-decoration: line-through;
  color: var(--grey-text);
  margin-top: 4px;
}

.product-card__price-container .product-card__price-new {
  color: red;
  margin-right: 10px;
}

.product-card__price-container .product-card__sale-percent {
  color: red;
  margin-left: 10px;
}

.product-card__price {
  color: var(--black-100);
  font-size: 20px;
  font-weight: 500;
  line-height: 23.44px;
}

@media (max-width: 1440px) {
  .product-card__images {
    height: 369px;
  }
}

@media (min-width: 1024px) {
  .product-card__images:hover .product-card__colors {
    transform: translateY(-100%);
  }
}

@media (max-width: 1024px) {
  .product-card__images {
    height: 413px;
  }
}

@media (max-width: 768px) {
  .product-card__images {
    height: 478px;
  }
}

@media (max-width: 576px) {
  .product-card__images {
    height: 429px;
  }
}

.product-card__price-container .product-card__sale-percent {
  color: red;
  margin-left: 10px;
}

.auth-block {
  font-size: 0.8rem;
}