.cart-icon-link {
  background: transparent;
  border-radius: 100px;
  width: 50px !important;
  height: 50px !important;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s linear;
}

.cart-icon-link:hover {
  background: #eee;
}

.cart-icon-link img {
    width: 35px; /* Możesz dostosować rozmiar ikony */
    height: 35px;
    display: inline-block;
    vertical-align: middle;
}
.cart-count {
	position: absolute;
	  top: -5px;
	  right: -4px;
	  background-color: #693637;
	  color: white;
	  font-size: 12px;
	  font-weight: bold;
	  border-radius: 50%;
	  padding: 3px 6px;
	  min-width: 20px;
	  text-align: center;
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  height: 20px;
	  width: 20px;
}


@media (max-width: 767px) {



	.cart-icon-link {
	  width: 30px !important;
	  height: 30px !important;
	}

	.cart-icon-link img {
	  width: 25px;
	  height: 25px;
	}

	.cart-count {
	  font-size: 11px;
	  min-width: 17px;
	  height: 17px;
	  width: 17px;
	}


}