/* ─────────────────────────────────────────
   BLOCK: FLOAT-BTN
───────────────────────────────────────── */
.float-btn {
  align-items: center;
  flex-direction: column;
  display: flex;
  position: fixed;
  right: 24px;
  bottom: 70px;
  background:  #fff;
  color: var(--black);
  border-radius: 20px;
  padding: 12px 14px;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  z-index: 999;
  cursor: pointer;
  border: none;
  line-height: 1.4;
  font-family: inherit;
}
.float-btn:hover { background: var(--purple); }
.float-btn__icon { height: 32px; width: 32px; display: block; margin-bottom: 4px; }
