
.product-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 40px 20px;
}

.product-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px dotted #ccc;
}

.download-btn {
  background-color: #0073aa;
  color: #fff;
  padding: 6px 16px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
}

.download-btn:hover {
  background-color: #005f8d;
}
