/* Ask June FAB — Kate's Lifestyle apps only */

.ask-june-fab {
  position: fixed;
  right: max(14px, env(safe-area-inset-right));
  bottom: max(14px, env(safe-area-inset-bottom));
  z-index: 80;
  width: 84px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: #2c2620;
  -webkit-tap-highlight-color: transparent;
}
.ask-june-face {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff8ee;
  box-shadow:
    0 0 0 3px #fff,
    0 0 0 6px #7fc4b0,
    3px 7px 0 rgba(44, 38, 32, 0.12);
  animation: june-bob 3.2s ease-in-out infinite;
}
.ask-june-fab:hover .ask-june-face,
.ask-june-fab:focus-visible .ask-june-face {
  animation-play-state: paused;
  transform: translateY(-3px) scale(1.04);
}
.ask-june-face svg,
.ask-june-face .june-live {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.ask-june-face .june-live {
  object-fit: cover;
  object-position: center;
}
.ask-june-face .june-mouth-open {
  opacity: 0;
  animation: june-talk 5s steps(1, end) infinite;
}
.ask-june-face.is-photo .june-pebble {
  display: none;
}
.ask-june-label {
  font-family: "Caveat", "Segoe Script", cursive;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1;
  background: #fff3a8;
  padding: 3px 10px;
  border-radius: 999px;
  box-shadow: 2px 2px 0 rgba(0,0,0,0.08);
  white-space: nowrap;
}
@keyframes june-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes june-talk {
  0%, 58% { opacity: 0; }
  60%, 78% { opacity: 1; }
  80%, 100% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .ask-june-face, .ask-june-face .june-mouth-open { animation: none; }
}
