header {
  position: sticky !important;
}

.filterContainer {
  gap: 1.25rem;
  border-top: 2px solid rgba(238, 238, 238, 1);
  border-bottom: 2px solid rgba(238, 238, 238, 1);
  padding: 1.25rem 0;
}

.filterButton {
  background-color: transparent;
  border: none;
  font-size: 0.75rem;
  font-family: 'Gotham Pro', sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  color: #757070;
  cursor: pointer;
}

.filterButton.active {
  color: rgba(26, 26, 26, 1);
}

.productList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 1.8rem;
  row-gap: 2.5rem;
  padding: 1.25rem 1rem 2.5rem 1rem;
}

.productItem {
  width: 45%;
  gap: 1.813rem;
  text-decoration: none;
  transition: opacity 0.5s ease;
}

.productItem.faded:not(:hover) {
  opacity: 0.3;
}

.productItem img {
  width: 8.125rem;
  height: auto;
}

.productDescription {
  gap: 0.625rem;
}

.productDescription p:first-of-type {
  font-size: 1rem;
  font-weight: 500;
  line-height: 15.31px;
  color: rgba(26, 26, 26, 1);
}

.productDescription p:last-of-type {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 14px;
  color: #757070;
}

/* Tablet */
@media only screen and (min-width: 660px) {
  .filterContainer {
    gap: 4.2rem;
  }

  .productList {
    row-gap: 3.75rem;
    column-gap: 3.3rem;
    padding: 1.875rem 3.75rem 3.125rem 3.75rem;
  }

  .productItem img {
    width: 12.5rem;
  }

  .productDescription p:first-child {
    font-size: 1.188rem;
  }

  .productDescription p:last-of-type {
    font-size: 0.875rem;
  }
}

/* Desktop */
@media only screen and (min-width: 1080px) {
  .productList {
    column-gap: 2.8rem;
    padding: 1.875rem 5.625rem 3.125rem 5.625rem;
  }

  .productItem {
    width: 30%;
  }
}

@media only screen and (min-width: 1640px) {
  .filterButton {
    font-size: 0.875rem;
  }

  .productList {
    column-gap: 3rem;
  }

  .productItem {
    width: 22.5%;
  }

  .productItem img {
    width: 14rem;
  }
}