/* .wlfmc-tooltip[data-tooltip-type="custom"]::after {
  background-color: #f9f3e9 !important;
  color: #000 !important;
  border: 1px solid #f28e1c !important;
  padding: 6px 10px !important;
  border-radius: 6px !important;
  font-size: 13px;
  z-index: 9999;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}

.wlfmc-tooltip[data-tooltip-type="custom"]::before {
  border-top-color: #f28e1c !important;
} */

/* .wlfmc-tooltip::after {
  background-color: red !important;
} */



.wlfmc-tooltip::after {
  background-color: blue !important;
}

.wlfmc-tooltip::before {
  background-color: blue !important;
}

.custom-wishlist-btn-wrapper {
  position: relative;
  display: inline-block;
}

.custom-tooltip {
  display: none;
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  background: #f9f3e9;
  color: #000;
  border: 1px solid #f28e1c;
  padding: 6px 10px;
  font-size: 13px;
  border-radius: 6px;
  white-space: nowrap;
  z-index: 9999;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.custom-wishlist-btn-wrapper:hover .custom-tooltip {
  display: block;
}

