/* Leaffall homepage badge — mirrors whiskers.css, pinned top-right */

#leaffall-overlay {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 9999;
  height: 115px; /* room for the label below the circle */
}
#leaffall-overlay:hover {
  transform: scale(1.05);
  transition: transform 0.3s;
}

/* Circular leaf medallion */
.leaffall-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  background: radial-gradient(circle at 50% 35%, #f6e5c8, #e8b877);
  display: flex;
  align-items: center;
  justify-content: center;
}
.leaffall-photo svg {
  width: 58px;
  height: 58px;
  display: block;
}

/* Label below the circle */
.leaffall-label {
  position: absolute;
  bottom: -25px;
  left: 0;
  width: 100%;
  text-align: center;
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: bold;
  color: #333;
  background: #fff8f0;
  padding: 3px 5px;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  line-height: 1.1;
  white-space: nowrap;
}
