.wcac-categorias {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.wcac-categoria {
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.wcac-categoria img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.wcac-categoria:hover img {
  transform: scale(1.05);
}

.wcac-categoria span {
  display: block;
  margin-top: 10px;
  font-weight: 600;
  font-size: 14px;
  color: #333;
}

/* GRID de productos */
.wcac-productos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  justify-items: center;
}

/* Producto individual */
.wcac-producto {
  text-align: center;
  width: 180px;
}

/* Imagen con tamaño fijo y sin estirarse */
.wcac-producto img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
}

.wcac-producto h4 {
  font-size: 8px;
  margin-top: 10px;
}
.wcac-producto a img {
  cursor: pointer;
  transition: transform 0.2s ease;
}

.wcac-producto a:hover img {
  transform: scale(1.05);
}