.root {
    
    --product_card_title_height: calc(var(--productcard_height) * 0.10);
    --product_card_price_height:calc(var(--productcard_height) * 0.1);
}


.productcard {
    
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(var(--productcard_height) * 0.75);
    height: var(--productcard_height);
    background-color: var(--white);
    border-radius: 5px;
    
}
.productcard:hover > img {
    height:calc(var(--product_card_price_height) + 0.8em );
    left: 0;
    bottom: 0;
    
    transition: 0.4s;
    transition-delay: 0.5s;
    
}
.productcard > img {
    position: absolute;
    margin-top: 3em;
    width:calc(var(--productcard_height) * 0.75); 
    height:calc(var(--productcard_height) - var(--product_card_title_height));
    object-fit: cover;
    border-radius: 5px;
    
}
.productcard_title {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 1.1em;
    overflow-x:unset;
    
    padding-top: 0.2em;
    padding-bottom: 0.2em;
    border-radius: 5px 5px 0 0;
   height: 3em;
    padding-right: 0.2em;
   color: var(--white);
    top: 0;
    box-sizing: border-box;
    width: 100%;
    background-color: var(--brand);
    
    font-weight: bold;
    
    
}

.productcard_title > img {
    height: 1.5em;
   margin-left: 0.5em;
   margin-right: 0.5em;
   border-radius: 5px;
    

} 
.productcard_price {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50%;
    padding:0.2em;
    height: var(--product_card_price_height);
    bottom: 0;
    right: 0;
    
    background-color: var(--brand);
    color: var(--white);
    font-size: 1em;
    font-weight: bold;
    border-radius: 0 0 5px 0;
}
.productcard_description {
    padding: 1em;
}
@media (max-width: 600px) {
   
    
}                      