@charset "UTF-8";

.product-card {
  --v-product-card-img-indent: 0;
  --v-product-card-img-size-sq: 100%;
  --v-product-card-content-padding: 1.3333rem;
  --v-product-card-actions-gap: 0.6667rem;
  --v-product-card-scale-block-gap: 0.6667rem;
  --v-product-card-prices-gap: 0.6667rem;
  --v-product-card-action-icon-size-sq: 24px;
  --v-product-card-content-gap: 0.8667rem;
  --v-sticker-position-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: var(--v-product-card-flex-direction, column);
  flex-direction: var(--v-product-card-flex-direction, column);
  background-color: var(--v-black);
  height: 100%;
  position: relative;
  z-index: 0;
  border-radius: var(--v-border-radius-sm);
}

.product-card--horizontal {
  --v-product-card-flex-direction: row;
  --v-sticker-position-left: unset;
  --v-sticker-position-right: auto;
  --v-product-card-img-container-flex: 0 0 170px;
  --v-product-card-content-flex: 1 1 auto;
  --v-product-card-content-flex-direction: row;
  --v-product-card-scale-flex: 1;
  --v-product-card-prices-flex-direction: column;
  --v-product-card-prices-align-items: flex-end;
}

.product-card__img {
  width: var(--v-product-card-img-size-sq);
  height: var(--v-product-card-img-size-sq);
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}

.product-card__img-container {
  position: relative;
  -webkit-box-flex: var(--v-product-card-img-container-flex, auto);
  -ms-flex: var(--v-product-card-img-container-flex, auto);
  flex: var(--v-product-card-img-container-flex, auto);
}

.product-card__img-box {
  position: relative;
  z-index: -1;
  aspect-ratio: 1;
  background-color: var(--v-white);
  max-height: var(--v-product-card-img-box-mh, 270px);
  padding: 0.5rem;
  width: 100%;
}

.product-card__content {
  padding: var(--v-product-card-content-padding);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: var(--v-product-card-content-flex-direction, column);
  flex-direction: var(--v-product-card-content-flex-direction, column);
  gap: var(--v-product-card-content-gap);
  height: 100%;
  -webkit-box-flex: var(--v-product-card-content-flex, auto);
  -ms-flex: var(--v-product-card-content-flex, auto);
  flex: var(--v-product-card-content-flex, auto);
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.product-card__content-left {
  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-flex: var(--v-product-card-content, auto);
  -ms-flex: var(--v-product-card-content, auto);
  flex: var(--v-product-card-content, auto);
}

.product-card__content-bottom {
  width: 100%;
  margin-top: auto;
}

.product-card__title {
  line-height: 1.2;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-weight: lighter;
  color: var(--v-white);
}

.product-card__title a:hover {
  color: inherit;
}

.product-card__scale {
  font-size: 0.7333rem;
  color: var(--v-secondary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: var(--v-product-card-scale-block-gap);
  -moz-column-gap: var(--v-product-card-scale-block-gap);
  column-gap: var(--v-product-card-scale-block-gap);
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}

.product-card__instock {
  font-size: 0.7333rem;
}

.product-card__prices {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: var(--v-product-card-prices-gap);
  -webkit-box-align: var(--v-product-card-prices-align-items, center);
  -ms-flex-align: var(--v-product-card-prices-align-items, center);
  align-items: var(--v-product-card-prices-align-items, center);
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: var(--v-product-card-prices-flex-direction, row);
  flex-direction: var(--v-product-card-prices-flex-direction, row);
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.product-card__price {
  font-size: 1.6667rem;
  line-height: 1.2;
}

.product-card__price--inactive {
  font-size: 0.8667rem;
  color: var(--v-secondary);
  text-decoration: line-through;
}

.product-card__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.product-card__action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: var(--v-product-card-actions-gap);
}

.product-card__action > * {
  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;
  width: var(--v-product-card-action-icon-size-sq);
  height: var(--v-product-card-action-icon-size-sq);
  font-size: 1.3333rem;
}

.product-card__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: none;
  border: none;
  padding: 0;
  color: var(--v-white);
  cursor: pointer;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
  /* Для картинок */
}

.product-card__btn * {
  width: 20px;
  -o-object-fit: cover;
  object-fit: cover;
}

.product-card__btn:hover {
  color: var(--v-danger);
}

.product-card.horizontal-product {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: var(--v-border-radius-sm) !important;
  width: 100%;
  padding: 0;
}

.product-card.horizontal-product .product-card__img-box {
  max-height: 100%;
}

.product-card.horizontal-product .product-card__content {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  gap: var(--v-product-card-content-gap);
}

.product-card.horizontal-product .product-card__title_main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  gap: 1.6rem;
}

.product-card.horizontal-product .product-card__title_main .product-card__title {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.product-card.horizontal-product .product-card__title_main .product-card__prices {
  white-space: nowrap;
}

.product-card.horizontal-product .product-card__footer {
  gap: 1.2rem;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.product-card.horizontal-product .product-card__footer .horizontal-card__quantity {
  margin-left: 0;
  display: none;
}

@media screen and (min-width: 576px) {
  .product-card {
    --v-product-card-img-box-mh: none;
  }

  .product-card__img {
    -o-object-fit: cover;
    object-fit: cover;
  }
}

@media screen and (min-width: 768px) {
  .product-card.horizontal-product {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .product-card.horizontal-product .product-card__img-box {
    width: 170px;
  }

  .product-card.horizontal-product .product-card__footer {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }

  .product-card.horizontal-product .product-card__footer .horizontal-card__quantity {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: auto;
  }
}

.stickerOzon {
  display: inline-flex;
  border-radius: var(--v-border-radius-sm);
  background-color: #F91155;
  padding: .25rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  font-size: 11px;
  color: var(--v-white);
}
