.al-color-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0;
}

.al-color-swatch {
  display: inline-block;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: box-shadow 0.15s ease;
}

.al-color-swatch:hover {
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.35);
}

.al-color-swatch--active {
  box-shadow: 0 0 0 2px #000;
  cursor: default;
}

.al-cat-swatches {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin: 8px 0;
}

.al-cat-swatch {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #fff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: box-shadow 0.15s ease;
}

.al-cat-swatch:hover {
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.35);
}

.al-cat-swatch--active {
  box-shadow: 0 0 0 2px #000;
  cursor: default;
}

.al-cat-swatch-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  padding: 0 4px;
  font-size: 10px;
  line-height: 1;
  color: #666;
  cursor: default;
}
