/* products page */

#cpt-product-filter {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}

@media screen and (max-width: 767px) {
  #cpt-product-filter {
    flex-direction: column;
  }
}

#cpt-product-filter select {
  height: 50px;
  width: fit-content;
  border-radius: 25px;
  padding: 0.5rem 2rem;
}

#cpt-product-filter select:hover {
  cursor: pointer;
}

#cpt-product-filter button {
  height: 50px;
  width: fit-content;
  border-radius: 25px;
  padding: 0.5rem 2rem;
  background-color: var(--clr-mint);
  border: none;
}

#cpt-product-filter button:hover {
  cursor: pointer;
}

.cpt-product-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.cpt-product-container .cpt-product-item {
  margin-bottom: 10px;
  width: calc(33.333% - 10px);
}

@media screen and (max-width: 767px) {
  .cpt-product-container .cpt-product-item {
    width: calc(50% - 10px);
  }
}

.cpt-product-container .cpt-product-item .cpt-product-title {
  color: black;
}

.cpt-product-title {
  padding-bottom: 5px;
}

.cpt-product-title::after {
  content: "→";
  margin-left: 5px;
}

.cpt-product-subtitle {
  font-size: 0.9rem;
  color: var(--clr-black);
  line-height: 1.2rem;
}

@media screen and (max-width: 767px) {
  .cpt-product-subtitle {
    display: none;
  }
}
