.trolley {
  position: relative;
  display: inline-block;
}

.trlly {
  position: absolute;
  top: 0;
  right: 0;
  background-color: red;
  color: white;
  border-radius: 50%;
  padding: 0.2em 0.5em;
  font-size: 0.8em;
}

/* Additional styles for visual appeal */
.fa-shopping-cart {
  font-size: 2em;
  color: #3165ae;
}

/* Added styles for rounded background */
.trlly.roundd {
  background-color: red;
  color: white;
  border-radius: 50%;
  padding: 3px;
  font-size: 13px;
  position: absolute;
  top: -10px;
  right: -10px;
  border-radius: 10px !important;
}