.Add_to_Cart_btn {
  position: relative;
  background: #09558f !important;
  border-radius: 7px !important;
  border: none !important;
  color: #fff;
  padding: 6px 16px;
  overflow: hidden;
  z-index: 1;
  font-size: 15px !important;
}

.Add_to_Cart_btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #a3c526;
  transition: all 0.3s ease;
  z-index: -1;
}

.Add_to_Cart_btn:hover::before {
  left: 0;
}
