product-card .product-card-image{
    position: relative;
    padding-top:130%;
    overflow: hidden;
    border-radius:12px;
    display: flex;
    justify-content: center;
    margin-bottom:30px;
}
product-card .product-card-image img{
    position: absolute;
    top: 0;
    left: 0;
}
product-card .product-card-image .product-card_svg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
product-card .block-product-card__second-image{
    opacity: 0;
    transition: opacity 0.3s;
}

product-card:hover .block-product-card__second-image{
    opacity: 1;
}
product-card theme-product-form{
    position: absolute;
    bottom:30px;
    display:none;
}
product-card:hover theme-product-form{
    display:block;
}

product-card .product-card-title{
    margin-bottom:12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
product-card .block-product-card__price{
    margin-bottom:25px;
}
product-card .product-card_tags{
    display:flex;
    flex-wrap: wrap;
    gap: 5px;
}

product-card .product-card_tag{
    border-radius:30px;
    background-color: #E9F0CA;
    padding:5px 20px;
}
product-card form button{
    --button-border-width:0;
}
product-card form button.loading .button__content{
    color: transparent;
}
product-card form button.loading svg{
    color: rgb(var(--color-text));
}
@media(max-width:768px){
    product-card .product-card-image{
        margin-bottom:4vw;
    }
    product-card .product-card-title{
        margin-bottom:1.3333vw;
    }
    product-card .block-product-card__price{
        margin-bottom:4vw;
    }
    product-card .product-card_tag{
        padding:2px 14px; 
    }
    product-card theme-product-form{
        bottom:4vw;
    }
}