/*
Theme Name: Hello Elementor Child
Template: hello-elementor
*/

/* ================================================
TI Wishlist – Großes Herz, Badge, Tooltip links mit #F1F6EB
================================================ */

a.wishlist_products_counter.top_wishlist,
a.wishlist_products_counter.top_wishlist-heart-plus {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
  color: #F1F6EB !important;
  text-decoration: none;
  cursor: pointer;
  margin: 20px 0;
}

/* Herz-Icon */
a.wishlist_products_counter.top_wishlist-heart-plus::before {
  color: #F1F6EB !important;
  opacity: 1 !important;
  font-size: inherit !important;
  pointer-events: none !important;
}

/* Wunschlisten-Text verstecken */
.wishlist_products_counter_text {
  display: none !important;
}

/* Zähler-Badge */
.wishlist_products_counter_number {
  position: absolute;
  top: -0px;
  right: -1px;
  background: #d9534f;                  /* neues Rot */
  color: #F1F6EB !important;            /* neue Schriftfarbe */
  font-size: 0.65rem;
  font-weight: 500;
  padding: 2px 2px;
  line-height: 1;
  border-radius: 999px;
  min-width: 18px;
  text-align: center;
  box-shadow: 0 0 1px #fff;
  z-index: 10;
}

/* Tooltip: schlicht links, hell, etwas weiter raus */
a.wishlist_products_counter.top_wishlist-heart-plus::after {
  content: "Zur Wunschliste";
  position: absolute;
  left: -220%;                          /* weiter links */
  top: 50%;
  transform: translateY(-50%);
  color: #F1F6EB;                       /* neue Farbe */
  background: transparent;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease-in-out;
  z-index: 99;
}

/* Tooltip bei Hover anzeigen */
a.wishlist_products_counter.top_wishlist-heart-plus:hover::after {
  opacity: 1;
}
