/* Floating link to /pdf: visible on desktop & mobile */
.avq-pdf-fab {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: #0d6efd;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
  font-weight: 600;
  line-height: 1;
  transition: transform .15s ease, box-shadow .15s ease, opacity .2s ease;
}

.avq-pdf-fab:hover,
.avq-pdf-fab:focus {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(0,0,0,.24);
  color: #fff;
}

.avq-pdf-fab__icon {
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.avq-pdf-fab__label {
  display: inline-block;
  font-size: 14px;
}

/* Compact on very small screens */
@media (max-width: 420px) {
  .avq-pdf-fab {
    right: 12px;
    bottom: 12px;
    padding: 10px 12px;
  }
  .avq-pdf-fab__label {
    font-size: 13px;
  }
}
