@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter";
}

.favori_mehsullar_flex {
  display: flex;
  justify-content: space-between;
}

.favori_mehsullar_flex_buttons {
  display: flex;
  gap: 1rem;
}

.favori_mehsullar_flex_buttons button {
  border: none;
  border-radius: 6px;
  color: #000000;
  font-family: Rubik;
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
  display: flex;
  align-items: center;
  text-align: center;
  width: 120px;
  height: 40px;
  justify-content: center;
  transition: all 0.3s;
}

.favori_mehsullar_flex_buttons button:nth-child(1) {
  background-color: #c9f4b1;
}
.favori_mehsullar_flex_buttons button:nth-child(1):hover {
  background-color: #b9e1a4;
  transition: all 0.3s;
}
.favori_mehsullar_flex_buttons button:nth-child(2) {
  background-color: #81d653;
}
.favori_mehsullar_flex_buttons button:nth-child(2):hover {
  background-color: #8de75d;
  transition: all 0.3s;
}

.mehsullar_favoriler {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.favori_card_buttons {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 10px;
  margin-top: 1rem;
}
.favori_card_buttons button {
  width: 100%;
  border: none;
  border-radius: 6px;
  color: #000000;
  font-family: Rubik;
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  transition: all 0.3s;
  padding: 10px;
}


.favori_card_buttons button:nth-child(1) {
  background-color: #c9f4b1;
}
.favori_card_buttons button:nth-child(1):hover {
  background-color: #b9e1a4;
  transition: all 0.3s;
}
.favori_card_buttons button:nth-child(2) {
  background-color: #81d653;
}
.favori_card_buttons button:nth-child(2):hover {
  background-color: #8de75d;
  transition: all 0.3s;
}


.favoriMehsul {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.favoriMehsul.visibleItm {
  opacity: 1;
  transform: translateY(0);
}