.product-collections-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  @media screen and (max-width: 749px) {
    gap: 6px;
  }
}

.product-collections-wrapper--center {
  justify-content: center;
}

.product-collections-wrapper--right {
  justify-content: flex-end;
}

.product-collections-btn {
  transition: transform 0.2s ease;
  min-height: auto;
}

.product-collections-btn--hover-up:hover {
  transform: translateY(-1px);
}
