.pgproducts {
  min-height: 200px; /* debug – vidíte, že se kontejner opravdu rendruje */
  margin: 25px 0;
}

.pgproducts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.pgproducts.done {
  min-height: unset;
}

.pgproduct {
  display: flex;
  gap: 20px;
  border: 1px solid #e4e4e4;
  padding: 15px;
  background: #fff;
}

.pgproduct-image img {
  max-width: 160px;
  height: auto;
  display: block;
}

.pgproduct-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pgproduct-name {
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  color: inherit;
  margin-bottom: 6px;
}

.pgproduct-price {
  font-size: 15px;
  font-weight: 700;
}