.catalogo {
  display: flex;
  flex-flow: row nowrap;
  gap: 40px;
  position: relative;
}

.category-name {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-size: 16px !important;
}

.category-filter ul li {
  position: relative;
}

.category-toggle {
  cursor: pointer;
  position: relative;
}

.category-filter {
  width: 260px;
}

.category-filter ul {
  margin-left: 0 !important;
}

.category-filter ul li ul {
  padding-left: 10px !important;
}

.category-filter ul li {
  list-style: none !important;
  padding-top: 10px !important;
}

.product-list {
  display: flex;
  flex-flow: row wrap;
  gap: 15px;
  flex: 1;
  /*justify-content: space-between;*/
  height: fit-content;
}

.product-container {
  flex: 0 1 calc(33.33% - 10px);
  box-sizing: border-box;
  text-align: center;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-height: auto;
}

.product-image {
  width: 225px !important;
  height: 225px !important;
  object-fit: contain !important;
  align-self: center;
}

.product-title {
  margin-bottom: 15px;
}

.product-button {
  padding: 10px 20px;
  background-color: #7BB899;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}

.product-button:hover {
	opacity: .9;
}

@media only screen and (max-width: 600px) {
  .catalogo {
    flex-direction: column;
  }

  .category-filter {
    max-width: 100%;
  }

  .product-list {
    flex-direction: column;
  }
}

.active-cat>.category-name {
  font-weight: bold;
}

.active-cat .category-toggle i {
  transform: rotate(180deg);
}