/* PD: product | Doplňkové parametry jako roletka | v1 | CSS */

.pd-dparam-toggle {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  cursor: pointer;
  user-select: none;
  margin: .25rem 0 .75rem;
  padding: .35rem .6rem;
  border: 1px solid rgba(0,0,0,.15);
  border-radius: 6px;
  background: rgba(0,0,0,.03);
  font-size: 14px;
  line-height: 1.2;
}

.pd-dparam-toggle:focus {
  outline: 2px solid rgba(0,0,0,.35);
  outline-offset: 2px;
}

.pd-dparam-toggle .pd-dparam-arrow {
  transition: transform .2s ease;
}

.pd-dparam-toggle[aria-expanded="true"] .pd-dparam-arrow {
  transform: rotate(90deg);
}

.pd-dparam-content[hidden] {
  display: none !important;
}

.pd-dparam-content {
  margin-bottom: 1rem;
}