.larisa-floating-wrap {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* Bubble */
.larisa-bubble {
  background-color: #2196f3;
  color: #fff;
  width: 200px;
  font-weight: 500;
  font-size: 15px;
  padding: 10px 18px;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
  pointer-events: none;
}

.larisa-bubble.show {
  opacity: 1;
  transform: translateY(0);
}

.larisa-bubble::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #2196f3;
}

/* Avatar */
.larisa-fab {
  width: 90px;
  height: 90px;
  /* background: #fff; */
  border-radius: 50%;
  /* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25); */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}

.larisa-fab:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.larisa-fab img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 576px) {
  .larisa-fab {
    width: 70px;
    height: 70px;
  }

  .larisa-bubble {
    width: 100px;
    font-size: 13px;
    padding: 6px 12px;
  }

  .larisa-fab img {
    width: 62px;
    height: 62px;
  }

  .larisa-bubble {
    font-size: 14px;
    padding: 8px 14px;
  }
}