/* ── Inline button (shortcode) ──────────────────────────────────────────── */
.gifthintz-hint-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  background: #800020;
  color: #fff !important;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none !important;
  transition: background 0.2s;
  font-family: inherit;
}
.gifthintz-hint-btn:hover {
  background: #660019;
  color: #fff !important;
}

/* ── Floating Action Button ─────────────────────────────────────────────── */
.gifthintz-hint-fab {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 9999;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #800020;
  color: #fff !important;
  font-size: 28px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  transition:
    transform 0.2s,
    background 0.2s;
}
.gifthintz-hint-fab:hover {
  background: #660019;
  transform: scale(1.08);
}

/* Tooltip label shown on hover */
.gifthintz-hint-fab-label {
  position: absolute;
  left: 72px;
  right: auto;
  background: #1a1a1a;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 8px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
  font-family: sans-serif;
}
.gifthintz-hint-fab:hover .gifthintz-hint-fab-label {
  opacity: 1;
}

/* ── Mobile adjustments ─────────────────────────────────────────────────── */
@media (max-width: 600px) {
  .gifthintz-hint-fab {
    bottom: 20px;
    left: 16px;
    width: 56px;
    height: 56px;
    font-size: 24px;
  }
  /* Hide label on mobile — no hover on touch */
  .gifthintz-hint-fab-label {
    display: none;
  }
}
