.btn-pdf {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  background: linear-gradient(135deg, var(--gold, #ffa500), var(--gold-bright, #ffb700));
  color: #000;
  border: none;
  border-radius: 0.5rem;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  user-select: none;
  -webkit-user-select: none;
}

.btn-pdf:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 165, 0, 0.4);
}

.btn-pdf:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(255, 165, 0, 0.3);
}

.btn-pdf:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-pdf.pro-only {
  display: none;
}

.btn-pdf.pro-only.visible {
  display: inline-flex;
}

@media (max-width: 640px) {
  .btn-pdf {
    padding: 0.5rem 0.8rem;
    font-size: 0.85rem;
  }

  .btn-pdf span {
    display: none;
  }
}
