.ltsf-wrapper{

width:100%;

}



.ltsf-search input,
#ltsf-search{

width:100%;

padding:15px;

border:1px solid #ddd;

border-radius:8px;

font-size:16px;

margin-bottom:25px;

}




.ltsf-filter-title{

font-size:20px;

font-weight:600;

margin:20px 0 10px;

}




.ltsf-categories button,
.ltsf-alpha button{


background:#111;

color:white;

border:none;

padding:10px 15px;

margin:4px;

border-radius:5px;

cursor:pointer;


}




.ltsf-categories button.active,
.ltsf-alpha button.active{


background:#d4af37;

color:#000;


}





.ltsf-grid{


display:grid;

grid-template-columns:
repeat(4,1fr);

gap:25px;

}




.ltsf-product{


background:#fff;

border:1px solid #eee;

padding:20px;

text-align:center;

border-radius:12px;

transition:.3s;


}



.ltsf-product:hover{

box-shadow:0 10px 30px rgba(0,0,0,.1);

transform:translateY(-5px);

}



.ltsf-product img{


width:100%;

height:auto;


}




.ltsf-product h3{


font-size:18px;

margin:15px 0;


}



.ltsf-price{


font-size:20px;

font-weight:bold;

color:#d4af37;


}




.ltsf-cart a{


display:inline-block;

margin-top:15px;

background:#111;

color:white;

padding:12px 20px;

border-radius:5px;

text-decoration:none;


}




.ltsf-cart a:hover{


background:#d4af37;

color:#000;


}






@media(max-width:1024px){


.ltsf-grid{

grid-template-columns:
repeat(3,1fr);

}

}




@media(max-width:768px){


.ltsf-grid{

grid-template-columns:
repeat(2,1fr);

}

}




@media(max-width:480px){


.ltsf-grid{

grid-template-columns:
1fr;

}

}