/* PARAMETRY – ogólnie */
.product-params,
.productParams,
.parameters {
  font-size: 14px;
}

/* TYLKO WARTOŚĆ SKŁADU (ostatni wiersz) */
.product-params li:last-child .value,
.productParams li:last-child .value,
.parameters li:last-child .value {
  max-height: 72px;          /* ok. 3–4 linijki */
  overflow: hidden;
  position: relative;
}

/* gradient sugerujący więcej treści */
.product-params li:last-child .value::after,
.productParams li:last-child .value::after,
.parameters li:last-child .value::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 28px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), #fff);
}
.parameters li:last-child.open .value,
.product-params li:last-child.open .value,
.productParams li:last-child.open .value {
  max-height: none;
}

.parameters li:last-child.open .value::after,
.product-params li:last-child.open .value::after,
.productParams li:last-child.open .value::after {
  display: none;
}
