
/* ===============================
   GOLD BADGE – TOOLTIP MINI FIX
================================ */
.lzd-has-gold .user-verified {
  position: relative;
}

/* ICONO (no tocar) */
.lzd-has-gold .user-verified::after {
  content: "";
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  margin-left: 6px;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;

  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;

  /* SVG EXACTO */
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 8c0 3.866-3.134 7-7 7-3.86599 0-7-3.134-7-7 0-3.86599 3.13401-7 7-7 3.866 0 7 3.13401 7 7Z' fill='%23F50'/%3E%3Cpath d='M8.12659 10.6491a.25011.25011 0 0 0-.25326 0L5.43435 12.082c-.1889.1109-.41903-.0575-.3704-.2711l.62155-2.73043a.24998.24998 0 0 0-.07972-.24414L3.4833 6.99074c-.16608-.14441-.078-.41746.14116-.4376l2.81831-.25897a.24998.24998 0 0 0 .20635-.14917l1.12162-2.57672c.08718-.20029.37126-.20029.45845 0L9.3508 6.145a.24998.24998 0 0 0 .20635.14917l2.81835.25897c.2191.02014.3072.29319.1411.4376l-2.1225 1.84559a.25018.25018 0 0 0-.0797.24414l.6216 2.73043c.0486.2136-.1815.382-.3704.2711l-2.43901-1.4329Z' fill='%23fff'/%3E%3C/svg%3E");
}

/* TOOLTIP GOLD */
.lzd-has-gold .user-verified::before {
  content: "Gold";
  position: absolute;

  bottom: calc(100% + 8px);
  left: 100%;
  transform: translateX(-50%) translateY(6px);

  background: rgba(0,0,0,.85);
  color: #fff;

  font-size: 11px;
  font-weight: 500;
  line-height: 1;

  padding: 6px 10px;
  border-radius: 999px;
  white-space: nowrap;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: opacity .15s ease, transform .15s ease;
  z-index: 99999;
}

/* ACTIVAR TOOLTIP */
.lzd-has-gold .user-verified:hover::before {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
