.coffee-buddy-discovery-canvas {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  pointer-events: none;
}

.coffee-buddy-discovery-marker {
  border: 0;
  background: transparent;
  opacity: 0;
  transition: opacity .24s ease, transform .95s cubic-bezier(.28, .7, .2, 1);
  pointer-events: none !important;
  will-change: transform, opacity;
}

.coffee-buddy-discovery-marker.is-visible {
  opacity: 1;
}

.coffee-buddy-discovery-figure {
  position: relative;
  display: block;
  width: 72px;
  height: 76px;
  transform-origin: 50% 100%;
  filter: drop-shadow(0 5px 7px rgba(56, 37, 22, .25));
}

.coffee-buddy-discovery-figure img {
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 72px;
  height: 76px;
  object-fit: contain;
  user-select: none;
  pointer-events: none;
}

.coffee-buddy-discovery-figure .is-pose-b {
  opacity: 0;
}

.coffee-buddy-discovery-marker.is-jumping .coffee-buddy-discovery-figure {
  animation: coffee-buddy-discovery-hop .95s cubic-bezier(.2, .72, .28, 1) both;
}

.coffee-buddy-discovery-marker.is-sniffing .is-pose-a {
  animation: coffee-buddy-discovery-pose-a .72s steps(1, end) infinite;
}

.coffee-buddy-discovery-marker.is-sniffing .is-pose-b {
  animation: coffee-buddy-discovery-pose-b .72s steps(1, end) infinite;
}

.coffee-buddy-discovery-label {
  max-width: min(250px, 68vw);
  margin: 0;
  padding: 0;
  border: 1px solid rgba(111, 73, 45, .19);
  border-radius: 13px;
  background: rgba(255, 248, 235, .96);
  box-shadow: 0 9px 24px rgba(56, 37, 22, .18);
  color: #294f30;
  font: 800 12px/1.25 Inter, ui-sans-serif, system-ui, sans-serif;
  text-align: center;
  white-space: normal;
  pointer-events: none;
}

.coffee-buddy-discovery-label::before {
  border-top-color: rgba(111, 73, 45, .19);
}

.coffee-buddy-discovery-label-copy {
  display: block;
  padding: 8px 11px;
}

@keyframes coffee-buddy-discovery-hop {
  0% { transform: translateY(0) scale(1); }
  42% { transform: translateY(-24px) scale(.96, 1.04); }
  74% { transform: translateY(-5px) scale(1.03, .97); }
  100% { transform: translateY(0) scale(1); }
}

@keyframes coffee-buddy-discovery-pose-a {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

@keyframes coffee-buddy-discovery-pose-b {
  0%, 49% { opacity: 0; }
  50%, 100% { opacity: 1; }
}

@media (max-width: 430px) {
  .coffee-buddy-discovery-figure,
  .coffee-buddy-discovery-figure img {
    width: 64px;
    height: 68px;
  }

  .coffee-buddy-discovery-label {
    max-width: 64vw;
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .coffee-buddy-discovery-marker,
  .coffee-buddy-discovery-figure,
  .coffee-buddy-discovery-figure img {
    transition: none;
    animation: none !important;
  }
}
