.product-grid__grid {
  display: flex;
  flex-wrap: wrap;
  row-gap: 30px;
}

.product-grid__item {
  width: 50%;
  padding: 0 10px;
}

.product-grid__item p {
  margin-bottom: 0;
  font-size: 14px;
}

.product-grid__item a {
  text-decoration: none;
  color: var(--color-blue);
}

.product-grid__item-title {
  margin-top: 10px;
  margin-bottom: 3px;
}

.product-grid img {
  aspect-ratio: 9 / 11;
  object-fit: cover;
  /* border-radius: 8px; */
  width: 100%;
}

.filters {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  max-width: 80%;
  margin: 0 auto;
}

.filter {
  border: 1px solid;
  border-radius: 8px;
  padding: 5px 15px;
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  font-size: 14px;
}

.filter:hover,
.filter.active {
  background: var(--color-pink);
  color: #fff;
}

.size.filter:hover,
.size.filter.active {
  background: var(--color-blue);
  color: #fff;
}

.hide {
  display: none;
}
.show {
  display: block;
}

@media only screen and (min-width: 768px) {
  .product-grid__item {
    width: calc(100% / 3);
  }
}

@media only screen and (min-width: 1024px) {
  .product-grid__item {
    width: 25%;
  }
}
