.product-box-horizontal{
    padding: 8px;
    background: var(--white-color);
    border-radius: 24px;
    display: flex;
    position: relative;
    transition: all .3s ease-in-out;
}

.product-box-horizontal .product-img{
    width: 33%;

}
.product-box-horizontal .product-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}
.product-box-horizontal .name-price-wrapper{
    width: calc(67% - 8px);
    margin-right: 8px;
    padding: 14px 16px 0 0;
    border-radius: 16px;
    background: linear-gradient(var(--white-color), var(--white-color)) padding-box, linear-gradient(270deg, var(--black-color-10) 0%, transparent 100%) border-box;
    border-top: 1px solid transparent;
    border-right: 1px solid transparent;
    border-bottom: 1px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
}
.product-box-horizontal .name-price-wrapper .product-name{
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--black-color);
    display: block;
    margin-bottom: 4px;
}
.product-box-horizontal .name-price-wrapper .info{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.product-box-horizontal .name-price-wrapper .btn{
    border: 0;
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 0 16px;
}
.product-box-horizontal .name-price-wrapper .btn path{
    fill: var(--sec-color);
}
.product-box-horizontal .name-price-wrapper .btn:hover path{
    fill: var(--white-color);
}


.product-box-horizontal .info .price{
    max-width: calc(100% - 50px);
    display: flex;
    flex-direction: column;
    color: var(--black-color);
    gap: 0;
    justify-content: center;
    align-items: end;
}
.product-box-horizontal .info .price bdi{
    font-size: 20px;
    font-weight: bold;
    line-height: 28px;
}
.product-box-horizontal .info .price ins{
    text-decoration: none;
    line-height: 28px;
}
.product-box-horizontal .info .price del{
    text-decoration: none;
    line-height: 21px;
}
.product-box-horizontal .info .price del bdi{
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    opacity: 0.3;
    text-decoration: line-through;
}
.product-box-horizontal .info .price del .woocommerce-Price-currencySymbol,
.product-box-horizontal .info .price .woocommerce-Price-currencySymbol{
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    margin-right: 8px;
    text-decoration: none;
}
.product-box-horizontal:hover:after{
    content: "";
    width: 80px;
    height: 80px;
    border-radius: 100%;
    background: var(--black-color);
    opacity: 0.4;
    filter: blur(22px);
    position: absolute;
    left: 21px;
    bottom: -5px;
    z-index: -1;
}