.card__details--wrapper {
  position: relative;
}

ul.card__tags {
  font-size: 0.6rem;
  transform: translateY(calc(-100%));
}

ul.card__tags .tag.tag--exclusive,
ul.card__tags .tag.tag--exklusiv {
  position: relative;
  padding-right: 30px;
}

.template-product__wrapper ul.card__tags,
.recommended-products__wrapper ul.card__tags {
  position: absolute;
  transform: translateY(calc(-100% - 1em));
}

.template-product__wrapper ul.card__tags {
  top: -1.5em;
}

.recommended-products__wrapper ul.card__tags {
  left: 1em;
}

li.tag--new,
li:has(> .tag.tag--new),
li:has(> .tag.tag--neu) {
  order: 1;
}

li.tag--sale,
li:has(> .tag.tag--sale) {
  order: 2;
}

li.tag--exclusive,
li.tag--exklusiv,
li:has(> .tag.tag--exklusiv),
li:has(> .tag.tag--exclusive) {
  order: 3;
}

li.tag--limited,
li.tag--limitiert,
li:has(> .tag.tag--limitiert),
li:has(> .tag.tag--limited) {
  order: 4;
}

li.tag--signed,
li:has(> .tag.tag--signed),
li:has(> .tag.tag--signiert) {
  order: 5;
}

li.tag--bestseller,
li.tag--best-seller,
li:has(> .tag.tag--bestseller),
li:has(> .tag.tag--best-seller) {
  order: 6;
}

li.tag.tag--wieder-da,
li.tag.tag--back-in-stock,
li:has(> .tag.tag--wieder-da),
li:has(> .tag.tag--back-in-stock) {
  order: 7;
}

ul.card__tags > li:has(> .tag) {
  order: 8;
}

ul.card__tags > li:has(> a) {
  order: 8;
}

.tag--exclusive:after,
.tag--exklusiv:after {
  content: '';
  position: absolute;
  right: 5px;
  height: 18px;
  width: 23px;

  animation-name: sprite;
  animation-duration: 1.3s;
  animation-timing-function: steps(30);
  animation-iteration-count: infinite;
}

@keyframes sprite {
  from {
    background-position: 0px;
  }
  to {
    background-position: -695px;
  }
}
