/**
 * Toolkit - Popup Offer Badge
 * Floating badge for first-time offer
 */
#popup-offer-badge {
  position: fixed;
  bottom: 100px;
  left: 24px;
  z-index: 999990;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--theme-palette-color-4, #000);
  color: var(--theme-palette-color-8, #fff);
  cursor: pointer;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-align: center;
  user-select: none;
  border: none;
  font-family: inherit;
  padding: 0;
}

#popup-offer-badge:focus-visible {
  outline: 2px solid var(--tk-color-accent);
  outline-offset: 2px;
}

#popup-offer-badge.is-visible {
  display: flex;
}

#popup-offer-badge .line-1 {
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  display: block;
}

#popup-offer-badge .line-2 {
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  display: block;
}

@media (max-width: 768px) {
  #popup-offer-badge {
    width: 60px;
    height: 60px;
    bottom: 90px;
    left: 10px;
  }
  #popup-offer-badge .line-1 {
    font-size: 11px;
  }
  #popup-offer-badge .line-2 {
    font-size: 11px;
  }
}
