.unit-card__promo-wrap {
  position: relative;
  display: inline-block;
}

.unit-card__promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
    background: rgba(53, 92, 63, 0.08); /* vert très léger */
  color: var(--vert-color);
  border: 1px solid rgba(53, 92, 63, 0.2);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
}

.promo-info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 16px;
  height: 16px;

  font-size: 11px;
  font-weight: 700;

  border-radius: 50%;

 background: rgba(53, 92, 63, 0.12);
  color: var(--vert-color);

  flex-shrink: 0;
}

/* Tooltip */
.unit-card__promo-tooltip {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 240px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #1f1f1f;
  color: #fff;
  font-size: 0.8rem;
  line-height: 1.4;
  z-index: 10;
  opacity: 0;
  transform: translateY(6px) scale(0.98);
  pointer-events: none;

  transition: all 0.2s ease;
}
.unit-card__promo-badge {
  cursor: pointer;
}
/* ouverture */
.unit-card__promo-wrap.is-open .unit-card__promo-tooltip {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.unit-card__promo-wrap:hover .unit-card__promo-tooltip {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}