.fa-cart-2025 {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.125em;
}

.fa-cart-2025:before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-image: url('../images/cart_2025_normal.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: background-image 0.3s ease;
}
.fa-cart-2025-light {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.125em;
}
.fa-cart-2025-light:before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-image: url('../images/cart_2025_light.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: background-image 0.3s ease;
}

/* Hover-Status */
#ni-cart:hover .fa-cart-2025:before,
.cart_badge:hover .fa-cart-2025-light:before {
  background-image: url('../images/cart_2025_hover.svg');
}

/* Aktiver Warenkorb (has-items) Status */
#ni-cart.has-items .fa-cart-2025:before {
  background-image: url('../images/cart_2025_hover.svg');
}