#product-filters-wrapper {
  background-color: var(--background-light);
}

.product-filter {
  background-color: var(--secondary);
  border-radius: 1rem;
  cursor: pointer;
  transition-duration: 0.3s;
}

.product-filter img {
  transition-duration: 0.3s;
}

.product-filter:hover img {
  transform: rotate(-90deg);
}

.product-filter:hover {
  background-color: var(--primary);
}

.product-filter img {
  width: 30px;
}

.product-cards {
  background-color: var(--background-light);
  max-width: 500px;
  min-width: 200px;
  max-height: 400px;
  border-radius: 1rem;
  transition-duration: 0.3s;
}

.product-cards img {
  height: 100%;
  width: 100%;
  aspect-ratio: 1 / 1;
}

.product-cards:hover {
  transform: scale(105%);
}

.product-cards * {
  color: var(--text);
}

.product-cards .row:nth-child(2) {
  border-top: 2px solid rgba(var(--text-custom), 0.6);
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
}

.product-cards img {
  max-width: 300px;
  aspect-ratio: 19 / 19;
}

#category-popup,
#category-popup #options {
  opacity: 0;
  visibility: hidden;
  color: var(--text);
  z-index: 2;
  backdrop-filter: blur(10px);
}

#category-popup {
  width: 100vw;
  height: 100vh;
}

#category-popup #options {
  transform: translateY(100%);
}

#category-popup #options {
  background-color: var(--background-light);
  position: absolute;
  width: 100%;
  bottom: 0;
}

#category-popup p {
  background-color: var(--secondary);
  border-radius: 1rem;
  text-align: center;
  cursor: pointer;
  transition-duration: 0.3s;
}

#category-popup p:hover {
  transform: scale(103%);
}
