.product-card{   box-shadow: 0px 0px 10px 0px #0002;
border-radius: 2.5rem;
border: 1px solid var(--border-color);
overflow: hidden;
cursor: pointer;
}
.product-card:hover .image-block img{
transform: scale(1.1);
}
.product-card .image-block img{
width:100%;
transition:all .3s linear;
transform: scale(1);
}
.product-card .image-block{
border-radius: 0 0 2.5rem 2.5rem;
overflow: hidden;
}
.product-card .product-title {
font-size: 1.625rem;
font-weight: 900;
text-align: center;
}
.product-card .highlight-text {
font-size: 1rem;
font-weight: 600;
text-align: center;
}
.product-card  .content-block{
padding:  1rem;
display: flex;
flex-direction: column;
gap:1rem;
color:#000;
}
.product-card .price-block span{
font-size: .875rem;
font-weight: 700;
}
.product-card .price-block{
font-size: 1.5rem;
font-weight: 700;
text-align: center;
}