.products-section{

padding:100px 0;

background:#ffffff;

}


.products-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:30px;

}


.product-card{

background:#fff;

border-radius:18px;

overflow:hidden;

box-shadow:0 10px 35px rgba(0,0,0,.08);

transition:.4s;

}


.product-card:hover{

transform:translateY(-10px);

box-shadow:0 20px 45px rgba(0,0,0,.15);

}


.product-image{

height:230px;

display:flex;

align-items:center;

justify-content:center;

background:#f5f7fb;

overflow:hidden;

}


.product-image img{

height:100%;

width:100%;

object-fit:cover;

}


.product-content{

padding:25px;

}


.product-content h3{

color:#0A2A66;

font-size:22px;

margin-bottom:15px;

}


.product-content p{

color:#666;

margin-bottom:20px;

}


.product-link{

color:#FF6A00;

font-weight:600;

}
