.titulo-categoria{
max-width:1200px;
margin:40px auto;
padding:0 20px;
}

.titulo-categoria h1{
font-size:32px;
margin-bottom:10px;
}

.titulo-categoria p{
color:#666;
}

.contenedor-productos{
display:flex;
gap:30px;
max-width:1200px;
margin:auto;
padding:20px;
}

.filtros{
flex:0 0 250px;
background:#f7f7f7;
padding:20px;
border-radius:6px;
height:fit-content;
}

.listado{
flex:1;
display:grid;
grid-template-columns:repeat(auto-fill,minmax(220px,1fr));
gap:20px;
}

.producto{
border:1px solid #eee;
padding:15px;
border-radius:6px;
text-align:center;
background:white;
}

.producto img{
width:100%;
height:260px;
object-fit:cover;
}

.precio{
font-size:18px;
margin:10px 0;
}

.btn-ver{
display:inline-block;
padding:10px 15px;
background:black;
color:white;
text-decoration:none;
}

#loader{
text-align:center;
padding:30px;
display:none;
}


@media(max-width:700px){

.contenedor-productos{
flex-direction:column;
}

 

  

}








/* CONTENEDOR FILTROS */

.filtros{
flex:0 0 250px;
background:#f7f7f7;
padding:20px;
border-radius:6px;
height:fit-content;
}

/* TITULO */

.filtros h3{
margin-bottom:20px;
font-size:18px;
border-bottom:1px solid #ddd;
padding-bottom:10px;
}

/* FORMULARIO */

.filtros form{
display:flex;
flex-direction:column;
gap:15px;
}

/* LABELS */

.filtros label{
font-size:14px;
font-weight:600;
color:#333;
}

/* SELECT */

.filtros select{
width:100%;
padding:10px;
border:1px solid #ddd;
border-radius:4px;
background:white;
}

/* BOTON */

.filtros .btn{
margin-top:10px;
padding:12px;
background:black;
color:white;
border:none;
cursor:pointer;
border-radius:4px;
}

.filtros .btn:hover{
background:#333;
}