.float-wrap {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.float-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}

.float-actions.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.float-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.float-label {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: var(--r-md);
  padding: 6px 14px;
  font-size: .78rem;
  font-weight: 600;
  color: #334155;
  box-shadow: var(--sh-sm);
  white-space: nowrap;
}

.float-action {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sh-md);
  cursor: pointer;
  transition: transform .15s, filter .15s;
}

.float-action:hover {
  transform: scale(1.1);
  filter: brightness(1.1);
}

.float-wa {
  background: #22c55e;
}

.float-chat {
  background: var(--c-500);
}

.float-main {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--c-700);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sh-xl);
  transition: background .2s, transform .15s;
}

.float-main:hover {
  background: var(--c-600);
  transform: scale(1.06);
}

.float-main .ico-open {
  display: block;
}

.float-main .ico-close {
  display: none;
}

.float-main.is-open .ico-open {
  display: none;
}

.float-main.is-open .ico-close {
  display: block;
}
