.catalogo {
  padding: 60px 20px;
  background: #f8f8f8;
}

.catalogo h2 {
  text-align: center;
  margin-bottom: 30px;
}

.filtros {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 30px;
}

.filtros input,
.filtros select {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  min-width: 150px;
}

.productos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.producto {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.producto:hover {
  transform: translateY(-5px);
}

.producto img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.producto .info {
  padding: 15px;
}

.producto h3 {
  font-size: 16px;
  margin-bottom: 5px;
}

.producto p {
  font-size: 14px;
  color: #666;
}

.precio {
  font-weight: bold;
  margin-top: 10px;
}

.img-container {
  position: relative;
}

.img-container a {
  display: block;
}

.img-container img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* BADGES */
.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 5px 10px;
  font-size: 12px;
  color: #fff;
  border-radius: 20px;
  font-weight: bold;
}

.badge.nuevo {
  background: #28a745;
}

.badge.oferta {
  background: #e63946;
}

/* LINKS */
.producto a {
  text-decoration: none;
  color: inherit;
}

.producto a:hover h3 {
  text-decoration: underline;
}

.carrito-icono {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #000;
  color: #fff;
  padding: 10px 15px;
  border-radius: 30px;
  cursor: pointer;
  z-index: 1000;
}

.carrito-panel {
  position: fixed;
  right: -350px;
  top: 0;
  width: 300px;
  height: 100%;
  background: #fff;
  box-shadow: -5px 0 15px rgba(0,0,0,0.1);
  padding: 20px;
  transition: 0.3s;
  overflow-y: auto;
  z-index: 999;
}

.carrito-panel.activo {
  right: 0;
}

.carrito-item {
  border-bottom: 1px solid #eee;
  padding: 10px 0;
}

.btn-carrito {
  margin-top: 10px;
  width: 100%;
  padding: 10px;
  background: #000;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 8px;
}

.btn-carrito:hover {
  background: #333;
}
