.product-box-2{
    position: relative;
    padding: 8px;
    background: var(--white-color);
    border-radius: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 25px 0 35px;
    transition: all .3s ease-in-out;
}
.product-box-2 .product-cat{
    background: var(--black-color-10);
    color: var(--black-color);
    font-size: 14px;
    font-weight: 300;
    line-height: 21px;
    padding: 10px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    position: absolute;
    top: 16px;
    left: 16px;
}
.product-box-2 .product-img{
    display: block;
}
.product-box-2 .product-img img{
    width: auto;
    height: 237px;
    object-fit: contain;
    object-position: top;
    text-align: center;
    display: block;
    border-radius: 16px;
    margin: 0 auto 18px;
    mix-blend-mode: multiply;
}
.product-box-2 .name-price-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 7px;
}
.product-box-2 .product-name{
    margin-bottom: 0;
}
.product-box-2 .product-name a{
    display: block;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--black-color);
}

.product-box-2 .info{
    display: flex;
    align-items: end;
    justify-content: space-between;
}
.product-box-2 .price{
    max-width: 50%;
    display: flex;
    flex-direction: column;
    color: var(--black-color);
    gap: 0;
    justify-content: center;
    align-items: end;
}
.product-box-2 .price bdi{
    font-size: 20px;
    font-weight: bold;
    line-height: 28px;
}
.product-box-2 .price ins{
    text-decoration: none;
    line-height: 28px;
}
.product-box-2 .price del{
    text-decoration: none;
    line-height: 21px;
}
.product-box-2 .price del bdi{
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    opacity: 0.3;
    text-decoration: line-through;
}
.product-box-2 .price del .woocommerce-Price-currencySymbol,
.product-box-2 .price .woocommerce-Price-currencySymbol{
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    margin-right: 8px;
    text-decoration: none;
}
.product-box-2 .info{
    width: max-content;
    height: max-content;
    padding: 8px;
    border-radius: 24px;
    background: var(--bg-color);
    margin: 0 auto;
    transform: translateY(34px);
}
.product-box-2 .info .btn{
    font-size: 16px;
    padding: 15px 10px;
    height: 48px;
    letter-spacing: -4px;
    border-radius: 16px;
    transition: all .3s ease-in-out;
}
.product-box-2 .off-box{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 57px;
    height: 40px;
    border-radius: 8px;
    background: var(--main-color);
    color: var(--white-color);
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 9;
}
.product-box-2 .off-box b,
.product-box-2 .off-box span{
    font-size: 14px;
    font-weight: bold;
    line-height: 14px;
    color: var(--white-color);
}
.product-box-2:hover{
    transform: translateY(-25px);
}
.product-box-2:hover .info .btn{
    color: var(--bs-btn-hover-color);
    background-color: var(--bs-btn-hover-bg);
    border-color: var(--bs-btn-hover-border-color);
   position: relative;
}
.product-box-2:hover .info .btn:before{
    content: "";
    width: 113px;
    height: 39px;
    border-radius: 100%;
    background: var(--black-color-30);
    filter: blur(14px);
    position: absolute;
    left: 50%;
    bottom: -14px;
    transform: translateX(-50%);
    z-index: -1;
}