@charset "UTF-8";
.product-card {
  width: 100%;
  min-width: 162px;
  background-color: #fff; }
  @media (min-width: 1100px) {
    .product-card:hover {
      position: relative;
      z-index: 15; }
      .product-card:hover .product-card__img:first-child {
        opacity: 0;
        visibility: hidden; }
      .product-card:hover .product-card__img:last-child {
        opacity: 1;
        visibility: visible; }
      .product-card:hover .product-card__footer {
        opacity: 1;
        visibility: visible;
        pointer-events: auto; } }
  .product-card__inner {
    position: relative;
    transition: box-shadow .3s ease; }
    @media (max-width: 1099px) {
      .product-card__inner {
        display: flex;
        flex-direction: column; } }
  .product-card__header {
    position: absolute;
    z-index: 10;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem;
    pointer-events: none; }
    @media (max-width: 1099px) {
      .product-card__header {
        padding: 8px; } }
    @media (max-width: 767px) {
      .product-card__header {
        padding: 4px; } }
  .product-card__header-left, .product-card__header-right {
    pointer-events: auto; }
  .product-card__sticker {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #fff;
    overflow: hidden; }
    @media (max-width: 1099px) {
      .product-card__sticker {
        width: 32px;
        height: 32px; } }
    @media (max-width: 767px) {
      .product-card__sticker {
        width: 28px;
        height: 28px; } }
  .product-card__favourites {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center; }
    .product-card__favourites .icon {
      max-width: 2.4rem;
      max-height: 2.4rem;
      fill: #AEB6BE; }
      @media (max-width: 1099px) {
        .product-card__favourites .icon {
          max-width: 20px;
          max-height: 20px; } }
      @media (max-width: 767px) {
        .product-card__favourites .icon {
          max-width: 18px;
          max-height: 18px; } }
    @media (hover: hover) {
      .product-card__favourites {
        cursor: pointer; }
        .product-card__favourites:hover .icon {
          fill: var(--theme-base-color-light); } }
    .product-card__favourites:active .icon, .product-card__favourites.active .icon {
      fill: var(--theme-base-color); }
    @media (min-width: 1100px) {
      .product-card__favourites.active:hover .icon {
        fill: var(--theme-base-color-light); } }
  .product-card__favourites-remove {
    display: flex;
    align-items: center;
    justify-content: center;
    fill: var(--theme-base-color); }
    @media (hover: hover) {
      .product-card__favourites-remove {
        cursor: pointer; }
        .product-card__favourites-remove:hover {
          fill: var(--theme-base-color-light); } }
  .product-card__media {
    height: clamp(30rem, 23vw, 45.3rem);
    display: block;
    overflow: hidden;
    margin-bottom: 1.2rem;
    position: relative; }
    @media (max-width: 1099px) {
      .product-card__media {
        width: 100%;
        height: 374px;
        margin-bottom: 10px; } }
    @media (max-width: 767px) {
      .product-card__media {
        width: 100%;
        height: 262px;
        margin-bottom: 8px; } }
    @media (max-width: 575px) {
      .product-card__media {
        width: 100%;
        height: auto;
        min-height: 216px; } }
  .product-card__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: opacity .3s ease, visibility .3s ease;
    will-change: opacity, visibility; }
    .product-card__img:first-child {
      opacity: 1;
      visibility: visible; }
    .product-card__img:last-child {
      opacity: 0;
      visibility: hidden; }
  .product-card__media .lazy-img-wrap {
    width: 100%;
    height: 100%;
    display: block; }
  .product-card__media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover; }
  .product-card__status-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.2rem;
    gap: 1.2rem; }
    @media (max-width: 1099px) {
      .product-card__status-wrap {
        margin-top: 10px;
        gap: 10px; } }
    @media (max-width: 767px) {
      .product-card__status-wrap {
        align-items: flex-start;
        flex-direction: column-reverse;
        margin-top: 8px;
        gap: 4px; } }
  .product-card__status {
    display: flex;
    align-items: center;
    white-space: nowrap; }
  .product-card__code, .product-card__id {
    overflow: hidden;
    text-overflow: ellipsis;
    color: #9A9CA1;
    white-space: nowrap; }
    @media (max-width: 767px) {
      .product-card__code, .product-card__id {
        max-width: 100%; } }
  .product-card__title {
    height: clamp(2.4rem, 2.7vw, 4.4rem);
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    margin-top: .8rem;
    text-overflow: ellipsis;
    font-family: "Lora", Arial, Verdana, sans-serif;
    line-height: 1.22;
    -webkit-line-clamp: 2; }
    @media (max-width: 1099px) {
      .product-card__title {
        height: 39px;
        margin-top: 4px;
        font-size: 16px; } }
    @media (max-width: 767px) {
      .product-card__title {
        height: 34px;
        margin-top: 2px;
        font-size: 14px; } }
  .product-card__stock {
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: .8rem; }
    @media (max-width: 1099px) {
      .product-card__stock {
        height: 36px;
        margin-top: 8px;
        margin-bottom: 16px; } }
    @media (max-width: 767px) {
      .product-card__stock {
        position: relative;
        height: 30px; } }
  .product-card__prices {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    line-height: 1; }
  .product-card__price-current {
    display: block;
    font-size: 2rem; }
    @media (max-width: 1099px) {
      .product-card__price-current {
        font-size: 18px; } }
    @media (max-width: 767px) {
      .product-card__price-current {
        font-size: 16px; } }
  .product-card__price--empty {
    color: #9A9CA1; }
  .product-card__price-old {
    display: block;
    color: #9A9CA1;
    font-size: 1.6rem; }
    .product-card__price-old span:not(.byn) {
      text-decoration: line-through; }
    @media (max-width: 1099px) {
      .product-card__price-old {
        font-size: 14px; } }
    @media (max-width: 767px) {
      .product-card__price-old {
        font-size: 12px; } }
  .product-card__hover {
    display: none; }
    @media (max-width: 1099px) {
      .product-card__hover {
        display: block; } }
  .product-card__footer {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: .8rem; }
    @media (min-width: 1100px) {
      .product-card__footer {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity .3s ease, visibility .3s ease; } }
    @media (max-width: 767px) {
      .product-card__footer {
        align-items: center;
        flex-direction: row;
        justify-content: space-between;
        gap: 4px; } }
    .product-card__footer .btn.btn--primary,
    .product-card__footer .btn.btn--outline {
      width: 4rem;
      height: 4rem;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0;
      border-radius: 50%; }
      .product-card__footer .btn.btn--primary .icon,
      .product-card__footer .btn.btn--outline .icon {
        max-width: 2.4rem;
        max-height: 2.4rem; }
      @media (max-width: 1099px) {
        .product-card__footer .btn.btn--primary,
        .product-card__footer .btn.btn--outline {
          width: 36px;
          height: 36px; } }
  .product-card__one-click .icon {
    fill: #1A1A1A; }
  .product-card .btn--cart.active {
    position: relative; }
    .product-card .btn--cart.active:after {
      content: '';
      display: block;
      width: 1.4rem;
      height: 1.4rem;
      position: absolute;
      z-index: 1;
      top: .6rem;
      right: .4rem;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' viewBox='0 0 14 14'%3E%3Ccircle cx='6.6' cy='6.6' r='6.25' fill='%23fff' stroke='%237b2027' stroke-width='.7'/%3E%3Cpath fill='%237b2027' d='M9.18186 4.58412c.28118-.25563.73696-.25563 1.01814 0 .2812.25562.2812.66996 0 .92558L6.35994 9.00068c-.28118.25562-.73696.25562-1.01814 0L3.42177 7.25519c-.28118-.25562-.28118-.66996 0-.92558.28118-.25563.73696-.25563 1.01814 0L5.85087 7.6123z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: center;
      background-size: contain; }

.product-status {
  display: flex;
  align-items: center;
  gap: 4px; }
  .product-status__title {
    color: #9A9CA1; }
  .product-status span {
    width: .6rem;
    height: .6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    content: '●';
    border-radius: 50%;
    background-color: inherit; }
    @media (max-width: 1099px) {
      .product-status span {
        width: 4px;
        height: 4px; } }
