.mktr-loyalty-product {
  display: flex;
  flex-direction: row-reverse;
  margin-bottom: 10px;
  position: relative;
}

.mktr-loyalty-product .points-badge {
  position: relative;
}

.mktr-loyalty-product .tooltip-text {
  position: absolute;
  bottom: calc(100% + 8px);
  right: 0;
  background: #333;
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  font-family: Roboto, Arial, sans-serif;
  font-size: 13px;
  white-space: normal;
  max-width: 350px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

.mktr-loyalty-product .tooltip-text::after {
  content: '';
  position: absolute;
  top: 100%;
  right: 10px;
  border: 5px solid transparent;
  border-top-color: #333;
}
.mktr-loyalty-product .points-badge:hover + .tooltip-text {
  opacity: 1;
}

@media (hover: none) and (pointer: coarse) {
  .mktr-loyalty-product .points-badge:active + .mktr-loyalty-product .tooltip-text {
    opacity: 1;
  }
}