.feedback-fab {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 3800;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.78);
  color: #e2e8f0;
  text-decoration: none;
  padding: 7px 11px;
  font-size: 0.78rem;
  box-shadow: 0 10px 24px rgba(2, 6, 23, 0.35);
  backdrop-filter: blur(5px);
  opacity: 0.74;
  transition: opacity .2s ease, transform .2s ease, box-shadow .2s ease;
}

.feedback-fab:hover {
  opacity: 1;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(2, 6, 23, 0.45);
}

.feedback-fab__icon {
  font-size: 0.9rem;
  line-height: 1;
}

.feedback-fab__label {
  letter-spacing: .01em;
  font-weight: 600;
}

@media (max-width: 680px) {
  .feedback-fab {
    right: 10px;
    bottom: 10px;
    padding: 6px 10px;
    font-size: 0.74rem;
    gap: 5px;
  }

  .feedback-fab__label {
    display: none;
  }
}
