#topProfile {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0px 40px;
}

#homeButton {
  width: 150px;
  cursor: pointer;
}

#userSection {
  display: flex;
  align-items: center;
  gap: 10px;
}
#userSection img {
  width: 65px;
  height: 65px;
}

#userSection_name {
  font-weight: 600;
  font-size: 24px;
}

#userSection div p {
  padding: 0px;
  margin: 0px;
}

#wishTag {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 20px;
  font-weight: 600;
  margin: 0px 20px;
}

#wishList {
  margin: 0px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

#pofileCart {
  margin: 0px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
}

#pofileCart a {
  font-weight: 700;
  text-decoration: none;
  color: #c3262d;
  position: absolute;
  font-size: 15px;
  bottom: -30px;
  right: 0px;
  z-index: 10;
}

.wishListItem {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  height: 200px;
  padding: 20px;
  box-sizing: border-box;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
  color: #2c2c2c;
  width: 49%;
  position: relative;
}

.wishListItem img {
  max-width: 100%;
  max-height: 100%;
}

.wishListItem_button {
  position: absolute;
  right: 10px;
  top: 10px;
  max-width: 30px;
}
.wishListItem_details {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding: 10px;
  gap: 2px;
}

.wishListItem_details p {
  margin: 0px;
}

.wishListItem_details_title {
  font-size: 20px;
  font-weight: 600;
}

.wishListItem_details_overview {
  height: auto;
  overflow: hidden;
  font-size: 12px;
}

.wishListItem_details_BrandCategoryStock {
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 10px;
  height: auto;
  overflow: hidden;
  font-size: 15px;
  font-weight: 500;
}

.wishListItem_details_BrandCategoryStock img {
  width: 3px;
}
@media (max-width: 768px) {
  #wishList {
    max-width: 100%;
  }
  .wishListItem {
    flex-direction: column;
    padding: 15px;
    height: auto;
  }

  .wishListItem_details {
    width: 100%;
  }

  .wishListItem_details_title {
    font-size: 18px;
  }

  .wishListItem_details_overview {
    font-size: 11px;
  }

  .wishListItem_details_BrandCategoryStock {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .wishListItem {
    padding: 10px;
  }

  .wishListItem_details_title {
    font-size: 16px;
  }

  .wishListItem_details_overview {
    font-size: 10px;
  }

  .wishListItem_details_BrandCategoryStock {
    font-size: 13px;
  }
}
