.wishlist-products {
  padding: 2.4rem 4.8rem;
  width: 100%;
  margin: 0 auto 9.6rem auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 4.8rem;
}

.add-all-cart {
  outline: none;
  border: none;
  background-color: #9b2847;
  color: #fff;
  border-radius: 0.6rem;
  padding: 1.2rem 2.4rem;
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.add-all-cart:hover {
  background-color: #fff9ff;
  color: #9b2847;
  box-shadow: inset 0 0 0 0.2rem #9b2847;
}

.wishlist-products table {
  text-align: center;
  width: 100%;
}

.wishlist-products table .wishlist-product {
  font-size: 1.8rem;
  color: #7288a2;
}

.wishlist-product-heading th {
  padding: 4.8rem 2.4rem !important;
  color: #00394b;
  font-weight: 400;
  font-size: 1.8rem;
}

.product-name-img {
  padding-left: 2.4rem;
}

.product-name-img img {
  width: 8rem;
  height: 8rem;
  object-fit: cover;
  border-radius: 1rem;
}

.remove-wishlist {
  outline: none;
  border: none;
  background-color: #fff;
}

.remove-wishlist i {
  color: #9b2847;
  padding: 0.6rem 0.9rem;
  border-radius: 50%;
  transition: all 0.1s ease-in;
  cursor: pointer;
  font-size: 1.8rem;
}

.remove-wishlist i:hover {
  color: #f6f6f6;
  background-color: rgba(188, 59, 89, 0.8);
}
