/* css/wishlist.css */
.wishlist-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.wishlist-button.active svg path {
  fill: red;
  stroke: red;
}

.wishlist-counter {
  display: flex;
  position: relative;
}
.count {
  width: 16px;
  height: 16px;
  background: #ff8f33;
  border-radius: 100%;
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 12px;
  position: absolute;
  top: 7px;
  right: 1px;
}
.wishlist-products {
  gap: 15px;
  display: flex;
  flex-direction: column;
  .wishlist-product {
    padding: 10px 0;
    a {
      color: #181b39;
    }
  }
}

.wishlist-product {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid #eee;
}

.remove-from-wishlist {
  font-size: 20px;
  background: red;
  color: #fff;
  border-radius: 12px;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
}
.remove-from-wishlist:hover {
  background: #ff8f33;
}
.wishlist-product-actions {
  gap: 12px;
}
.wishlist-bulk-actions {
  margin-top: 20px;
}
