
.xbd-featured-products{
 display:grid;
 grid-template-columns:repeat(4,minmax(0,1fr));
 gap:32px;
 align-items:stretch;
}
.xbd-product-card{
 display:flex;
 flex-direction:column;
 background:#fff;
 text-align:center;
 height:100%;
 transition:transform .25s ease, box-shadow .25s ease;
 padding-bottom:10px;
}
.xbd-product-card:hover{
 transform:translateY(-3px);
 box-shadow:0 10px 24px rgba(0,0,0,.08);
}
.xbd-product-card img{
 width:100%;
 aspect-ratio:1/1;
 object-fit:cover;
 display:block;
}
.xbd-product-card h3{
 font-size:1.55rem;
 line-height:1.25;
 margin:18px 12px 10px;
 min-height:3.2em;
}
.xbd-product-card .price{
 margin:0 0 18px;
 font-size:1.05rem;
}
.xbd-product-card .button{
 display:inline-flex;
 align-items:center;
 justify-content:center;
 min-width:220px;
 max-width:220px;
 margin:0 auto;
}
@media(max-width:991px){
 .xbd-featured-products{grid-template-columns:repeat(2,1fr);}
}
@media(max-width:640px){
 .xbd-featured-products{grid-template-columns:1fr;}
 .xbd-product-card .button{min-width:100%;max-width:100%;}
}
