.download-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 28px;
}

.download-actions .store-badge {
  margin: 0;
}

.qr-card {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 10px;
  border: 1px solid #3b4741;
  border-radius: 14px;
  background: #fff;
  color: #19201d;
  font-size: 10px;
  font-weight: 800;
  transition: transform .2s, border-color .2s;
}

.qr-card img {
  width: 148px;
  height: 148px;
  margin: 0;
}

.qr-card:hover {
  border-color: #39d98a;
  transform: translateY(-2px);
}

@media (max-width: 520px) {
  .download-actions {
    flex-direction: column;
  }
}
