.product-card {
    border-radius: 20px;
    border: 1px solid #D9D9D9;
    background: #FFF;
    text-decoration: none !important;
    width: 260px;
    position: relative;
    display: block;
    filter: drop-shadow(2px 2px 10px rgba(0, 0, 0, 0.10));

}

.product-card .housing-label {
    position: absolute;
    top: 25px;
    left: 0;
    background-color: #222221;
    padding: 5px 20px;
    z-index: 1;
    font-size: 14px;
    color: #F8AC00;
    font-weight: bold;
}

.product-card .housing-img {
    position: absolute;
    top: 15px;
    left: calc(50% - 22.5px);
    z-index: 1;
}

.product-card .housing-img img {
    width: 45px;
}

.product-card .img-wrapper {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    background: #FFF;
    width: 100%;
    padding: 35px;
    padding-bottom: 17.5px;
    position: relative;
    overflow: hidden;
}

.product-card .img-wrapper .overlay {
    background-color: rgba(0, 0, 0, 0.10);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    /* visibility: hidden; */
    opacity: 0;
    z-index: 3;
    transition: opacity 0.2s ease;
}


.product-card .img-wrapper .btn-buy {
    width: 155px;
    padding: 10px 0;
    text-align: center;
    border-radius: 8px;
    background: #F8AC00;
    text-decoration: none !important;
    /* visibility: hidden; */
    opacity: 0;
    position: absolute;
    left: calc(50% - 77.5px);
    top: calc(50% - 23px);
    font-size: 16px;
    color: #FFF;
    z-index: 5;
    font-weight: bold;
    transition: opacity 0.2s ease;
}



.product-card:hover>.img-wrapper .overlay {
    /* visibility: visible; */
    opacity: 1;
}

.product-card:hover>.img-wrapper .btn-buy {
    /* visibility: visible; */
    opacity: 1;
}

.product-card .info .name {
    color: #222221;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    margin-top: 17.5px;
}

.product-card .info .short-desc {
    color: #616160;
    text-align: center;
    font-family: "Plus Jakarta Sans";
    font-size: 12px;
    font-style: normal;
    line-height: 150%;
    letter-spacing: 0.24px;
    font-weight: 500;
    margin-bottom: 7px;
}

.product-card .info .price {
    color: #FF9B00;
    text-align: center;
    font-family: "Plus Jakarta Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0.36px;
}
