
.catalogo-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 2rem auto;
  gap: 2rem;
}

.filtros {
  flex: 1;
  min-width: 250px;
  background: #e9f0f7;
  padding: 1rem;
  border-radius: 8px;
}

.filtros h3 {
  color: #044cac;
  margin-bottom: 1rem;
}

.filtros label {
  display: block;
  margin-bottom: 0.5rem;
}

.productos {
  flex: 3;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.producto {
  background: white;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
}

.producto img {
  max-width: 100%;
  height: auto;
}

.producto h4 {
  color: #044cac;
}

.producto p {
  margin: 0.5rem 0;
}

.ordenar {
  margin: 1rem auto;
  text-align: center;
}

.ordenar select {
  padding: 0.5rem;
  font-weight: bold;
  border-radius: 6px;
}
.tienda-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem;
  max-width: 100%;
  box-sizing: border-box;
}

.filtros {
  flex: 0 0 250px;
  background: #eaf1f8;
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

.productos {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .tienda-layout {
    flex-direction: column;
  }

  .filtros {
    flex: none;
    width: 100%;
  }

  .productos {
    width: 100%;
  }
}
