
.product-card {
    display: flex;
    overflow: hidden;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem;
    border-radius: 12px;
    border: 1px solid #6D6D71;
    transition: background-color .3s;
    cursor: pointer
}

.badge {
    display: inline-block;
    font-size: .875rem;
    font-weight: 700;
    line-height: 1.5;
    color: #f2b440;
    border-radius: 6px;
    padding: .125rem .375rem;
    cursor: default;
    background-color: #e09b3733
}

.product-card:hover {
    background-color: #ffffff0d
}

.product-card:hover .product-card__image {
    transform: scale(1.12)
}

.product-card__image {
    position: relative;
    margin-bottom: 1.75rem;
    width: 100%;
    transform-origin: bottom center;
    transition: transform .3s
}

.product-card__image:after {
    content: "";
    display: block;
    padding-bottom: 56%
}

.product-card__image > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    object-fit: cover;
    object-position: center
}

.product-card__price {
    color: #88ea6f;
    font-weight: 700;
    margin-top: auto
}

.product-card__price s {
    display: inline-block;
    vertical-align: top;
    font-size: .875rem;
    color: #6dbb59;
    font-weight: 400
}

.product-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: .125rem
}

.product-card p {
    font-size: .875rem;
    margin-bottom: 1.125rem
}
