 .card {
    display: flex;
    flex-flow: column;
    height: auto;
    overflow: hidden;
    border: 1px solid #E6E6E6;
    border-radius: 4px;
    transition: all linear 150ms;
    position: relative;
    user-select: none;
    margin: 0;
 }
 
 .card.card--sale .card__sale,
 .card.card--nostock .card__outofstock {
    display: flex;
 }
 
 .card.card--sale.card--nostock .card__sale {
    display: none;
 }
 
 .card.card--nostock .card__image {
    opacity: 0.5;
 }
 
 .card .card__tags {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    left: 0;
    top: 0;
    min-height: 40px;
    padding: 8px;
    z-index: 5;
 }
 
 .card__tags .card__sale {
    display: none;
    align-items: center;
    gap: 8px;
    background-color: #28B95E;
    color: #fff;
    font-family: inherit;
    font-weight: 500;
    font-size: 14px;
    line-height: 19.6px;
    padding: 6px 8px;
    border-radius: 4px;
    cursor: default;
    pointer-events: all;
 }
 
 .card__tags .card__outofstock {
    display: none;
    align-items: center;
    gap: 8px;
    background-color: #FFBBBB;
    color: #D60000;
    font-family: inherit;
    font-weight: 500;
    font-size: 14px;
    line-height: 19.6px;
    padding: 6px 8px;
    border-radius: 4px;
    cursor: default;
    pointer-events: all;
 }
 
 .card__tags .card__favorite {
    width: max-content;
    padding: 8px;
    border-radius: 4px;
    margin-left: auto;
    background-color: #fff;
    border: 1px solid #E6E6E6;
    cursor: pointer;
    height: auto;
    max-height: 32px;
 }
 
 .card .card__image {
   display: flex;
    width: 100%;
    overflow: hidden;
    height: auto;
    background-color: #F5F5F5;
 }
 
 .card .card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
 }
 
 .card .card__details {
   border-top: 1px solid #E6E6E6;
   padding: 12px 16px 16px 16px;
 }
 
 .card .card__description {
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    line-height: 22.4px;
    color: #000000;
    margin-bottom: 12px;
 }
 
 .card .card__placement {
    font-family: inherit;
    font-size: 14px;
    font-weight: 400;
    line-height: 19.6px;
    color: #757575;
 }
 
 .card .card__rating {
    margin-bottom: 12px;
 }
 
 .card .card__pricing {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 4px;
    width: 100%;
 }
 
 .card__pricing .pricing__current {
    font-family: inherit;
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
    color: #2c2c2c;
    overflow: hidden;
 }
 
 .card.card--sale .pricing__current {
    color: #28B95E;
 }
 
 .card__pricing .pricing__old {
    font-family: inherit;
    font-size: 12px;
    font-weight: 400;
    line-height: 16.8px;
    color: #8E8E8E;
    text-decoration: line-through;
    display: none;
 }
 
 .card.card--sale .pricing__old {
    display: block;
 }
 
 @media (max-width: 1024px){
    .card .card__description {
       font-size: 14px;
       font-weight: 500;
       line-height: 19.6px;
       color: #434343;
    }
 }