.header__icon--cart::before {
  content: '';
  mask-image: url('../assets/cart.svg');
  mask-repeat: no-repeat;
  mask-size: contain;
  display: block;
  width: 40px;
  height: 33px;
  background-color: #4b2795;
}

.cart-count-bubble:empty {
  display: none;
}

.cart-count-bubble {
  position: absolute;
  background-color: rgb(var(--color-button));
  color: rgb(var(--color-button-text));
  height: 1.7rem;
  width: 1.7rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.9rem;
  top: 0;
  right: 0;
  line-height: calc(1 + 0.1 / var(--font-body-scale));
}

.cart-count-bubble span {
  display: flex;
  align-items: center;
}

@media (max-width: 450px) {
  .header__icon--cart::before {
    width: 8.7vw;
    height: 6.7vw;
  }
}
