.product-card {
    font-family: Montserrat;
  }
  
  .product-card {
    overflow: hidden;
    display: flex;
    min-width: 250px;
    max-width: 350px;
    flex-direction: column;
    border-radius: 5px;
    background: #ffffff;
    border: 1px solid #e8e8e8;
  }

  .product-card-full {
    overflow: hidden;
    display: flex;
    gap: 50px;
    width: fit-content;
    align-items: center;
    flex-direction: row;
    box-shadow: 0 0 0 1px rgba(210, 210, 210, 0.5);
    border-radius: 5px;
  }
  .product-card-full:hover{
    box-shadow: 0 0 0 1px rgb(210, 210, 210);
  }
  .product-card-full .product-card__body{
    padding: 0;
    flex-direction: column;
  
  }

  .product-card-full.folded .product-card__body{
    display: none;
  }

  .product-card-full.folded .product-card__image img{
    max-width: 220px;
  }

  .product-card-full .product-card-full__desc{
    display: flex;
    flex-direction: column;
    align-items: start;
    padding-bottom: 25px;
  }
  .product-card-full .product-card__price{
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 12pt;
    width: 155px;
    background: #ff5e12d9;
    height: 40px;
    border-radius: 10px 0px 0px 0px;
    display: flex;
    color: white;
    align-items: center;
    justify-content: center;
  }
  .product-card-full .product-card__image img{
    max-width: 350px;
    max-height: 350px;
  }
  .product-card-full__desc{
    margin-top: 20px;
  }
   .product-card-full__desc .procontainer{
          width: 100%;
          margin-top: 15px;
  }
  .product-card-full__desc .procontainer li{
        list-style: none;
  }
  .product-card-full__desc .procontainer .fa-minus{
    color: red;
  }
  .product-card-full__desc .procontainer .fa-plus{
    color: green;
  }
  .product-card-full__desc .procontainer ul{
    padding-left: 15px;
  }
  .product-card-full__desc .card-subeader{
    font-weight: bold;
  }


  .product-card, .product-card *::before, .product-card *:not(.btn) {
    /* transition: all 0.2s ease-in-out; */
  }   
  .product-card a {
    text-decoration: none;
  }
  .product-card:hover {
    /* box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1); */
    border: 1px solid orange;
  }

  .product-card__image {
    position: relative;
    display: flex;
    min-width: 350px;
    justify-content: center;
    align-items: center;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    /* width: 250px; */
  }
  .product-card-full .product-card__image{
    height: -webkit-fill-available;
  }
  .product-card__image::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
        opacity: 0;
  }
  .product-card:hover .product-card__image::before {
    opacity: 1;
  }
  .product-card__image img {
    max-width: 200px;
    max-height: 200px;
    transition: max-width .3s;
  }
  .product-card__body {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 10px 10px 15px 10px;
    overflow: hidden;
    flex-grow: 1;
    height: fit-content;
    min-height: 130px;
    max-height: 500px;
  }
  .product-card__title {
    color: #000000;
    font-size: 18px;
    line-height: 100%;
    text-align: center;
    padding: 5px 5px 5px 5px;
    /* border-bottom: 1px solid #e8e8e8; */
    overflow: hidden;
    height: 42px;
    margin-bottom: 25px;
  }
  .product-card__title:hover {
    color: black; 
    text-decoration: none;
  }
  /*
  .product-card__title::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
    */
  .product-card__desc {
    --lines-count: 5;
    /* position: relative; */
    margin-bottom: 11px;
    color: #6d6d6d;
    font-size: 12px;
    font-weight: 400;
    line-height: 120%;
    display: -webkit-box;
    -webkit-line-clamp: var(--lines-count);
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: calc(12px * 1.2 * var(--lines-count));
  }
  .product-card__stock {
    display: flex;
    align-items: center;
    color: var(--02, #68bb79);
    font-size: 14px;
    font-weight: 500;
    line-height: 125%;
    margin-top: auto;
    margin-bottom: 10px;
  }
  .product-card__stock::before {
    content: "";
    flex: 0 0 6px;
    height: 6px;
    width: 6px;
    border-radius: 50%;
    background: var(--02, #68bb79);
    margin-right: 8px;
  }
  .product-card__price {
    /* margin-bottom: 12px; */
  }
  .product-card__labels {
    position: absolute;
    top: 0;
    transform: translate(0, -10px);
    left: 0;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    padding: 0 25px;
  }
  .product-card__labels .label {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--03, #fff);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    border-radius: 10px;
    padding: 0 12px;
    height: 2em;
  }
  .product-card__labels .label_hit {
    background: var(--02, #68bb79);
    text-transform: uppercase;
  }
  .product-card__labels .label_sale {
    background: #e86b6b;
  }
  .product-card .price {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 5px;
  }
  .product-card .price__current {
    color: var(--01, #161616);
    font-size: 19px;
    /* font-weight: 700; */
    line-height: 125%;
  }
  .product-card .price__old {
    margin-left: 7px;
    color: var(--05, #b7b7b7);
    font-size: 14px;
    font-weight: 500;
    line-height: 125%;
    text-decoration-line: line-through;
  }
  
  
  .product-card .btn {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    box-shadow: none;
    border: none;
    outline: none;
    cursor: pointer;
    text-transform: none;
    text-shadow: none;
    text-decoration: none;
    white-space: nowrap;
    user-select: none;
    color: var(--btn-start-color);
    background: var(--btn-start-background);
    border: var(--btn-start-border);
    padding: var(--btn-start-padding);
    height: var(--btn-height);
    border-radius: 9999px;
    font-family: Montserrat;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    transition-property: color, background-color, border-color, opacity, box-shadow;
    transition-duration: var(--duration-normal);
    transition-timing-function: ease-in-out;
  }
  .product-card .btn:focus {
    outline: none;
  }
  .product-card .btn:hover {
    color: var(--btn-hover-color);
    border: var(--btn-hover-border);
    padding: var(--btn-hover-padding);
    background: var(--btn-hover-background);
  }
  .product-card .btn:active, .btn:focus {
    color: var(--btn-focus-color);
    border: var(--btn-focus-border);
    padding: var(--btn-focus-padding);
    background: var(--btn-focus-background);
  }
  .amazon_svg {
    height: 20px;
}

.proudct-card__footer{
      display: flex;
      justify-content: center;
      align-items: center;
      height: 35px;
      background: #ffffff1c;
      border-top: 1px solid #e9e9e9;
      font-weight: 100;
}