/*
  COLLECTION FILTER STYLES
  ==========================
  Powers the collection filter buttons on shop.html (All / Earrings /
  Necklaces / Bracelets / Accessories / Dolcefy Your Life).
*/

.collection-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 0 40px 0;
  padding: 0 24px;
}

.collection-filter__button {
  background-color: transparent;
  border: 1.5px solid #372345;
  color: #372345;
  font-family: var(--font-body);
  font-size: 0.85rem;
  padding: 8px 20px;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.collection-filter__button:hover {
  background-color: rgba(55, 35, 69, 0.08);
}

.collection-filter__button.is-active {
  background-color: #372345;
  color: #ffffff;
}
