.cart-size-icon {
  width: 32px;
  height: auto;
}
.cart-wrapper {
  position: relative;
  display: inline-block;
}

.cart-wrapper a {
  display: inline-block;
  position: relative;
}
.cart-count {
  position: absolute;
  margin-top: -30px;
  margin-left: 28px;
  background-color: red;
  color: white;
  font-size: 0.75rem;
  font-weight: bold;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  pointer-events: none;
  z-index: 10;
}

.cart-count.hidden {
  display: none;
}