

<style>


.eft-product-section{

max-width:1400px;

margin:70px auto;

padding:0 15px;

font-family:Arial,Helvetica,sans-serif;

position:relative;

}



.eft-product-section h2{

text-align:center;

font-size:36px;

font-weight:700;

color:#222;

margin-bottom:45px;

}




.eft-product-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:28px;

}




.eft-card{

background:#fff;

border:1px solid #eee;

overflow:hidden;

position:relative;

transition:.35s;

}



.eft-card:hover{

transform:translateY(-8px);

box-shadow:0 12px 30px rgba(0,0,0,.15);

}




/* SEO clickable layer */

.eft-link{

position:absolute;

left:0;

top:0;

width:100%;

height:100%;

z-index:10;

}





.eft-image{

height:300px;

display:flex;

align-items:center;

justify-content:center;

padding:20px;

}




.eft-image img{

max-width:100%;

max-height:100%;

object-fit:contain;

transition:.35s;

}



.eft-card:hover img{

transform:scale(1.06);

}





.eft-title{

padding:12px 18px 0;

font-size:15px;

line-height:22px;

height:48px;

overflow:hidden;

color:#333;

}




.eft-price{

padding:15px 18px 22px;

font-size:24px;

font-weight:400;

color:#CC0000;

line-height:30px;

}





@media(max-width:768px){


.eft-product-grid{

grid-template-columns:repeat(2,1fr);

gap:15px;

}


.eft-image{

height:180px;

padding:10px;

}


.eft-title{

font-size:14px;

height:42px;

}


.eft-price{

font-size:18px;
color:#CC0000;
line-height:24px;

}


.eft-product-section h2{

font-size:26px;

}


}

