.product-taxonomy {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.product-taxonomy-term:first-child {
  margin-left: 0;
}

.product-taxonomy-term:last-child {
  margin-right: 0;
}
/* --- Bazowe style (domyślne = zielone) --- */
.product-taxonomy-term {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 10px;
  background: #F4FAF8;
  border: 1px solid #B5DADE;
  color: #0E4466;
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
  white-space: wrap;
  overflow-wrap: break-word;
  word-break: normal;
  overflow: hidden;
  margin: 0;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.product-taxonomy > .product-taxonomy-term:hover {
  background: #E6F3F1;
  border-color: #9ED1D6;
  color: #005F5D;
}

/* --- Purple --- */
.product-taxonomy > .product-taxonomy-term--purple {
  background: #F5F6FF;
  border-color: #D6DFFE;
  color: #0E2D66;
}

.product-taxonomy > .product-taxonomy-term--purple:hover {
  background: #EAEDFF;
  border-color: #B8C4FD;
  color: #091D4A;
}

/* --- Blue --- */
 .product-taxonomy > .product-taxonomy-term--blue{
  background: #F5FAFF;
  border-color: #D6E4FE;
  color: #0E2D66;
}

 .product-taxonomy > .product-taxonomy-term--blue:hover {
  background: #E8F1FF;
  border-color: #B8CFFD;
  color: #091D4A;
}