.product-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.5rem 0;
  border-bottom: 1px solid #ccc;
  width: 100%;
  box-sizing: border-box;
}

.product-row .label {
  flex: 1;
  padding-right: 1rem;
  max-width: calc(100% - 160px);
}

.product-row .right-group {
  display: flex;
  gap: 0.75rem;
  min-width: 160px;
  justify-content: flex-end;
}

.product-row .liter,
.product-row .price {
  text-align: right;
  white-space: nowrap;
}

.product-info {
  max-width: calc(100% - 160px); /* ← exakt wie .label */
  font-style: italic;
  padding-bottom: 0.5rem;
}