/* Доп. блоки карточки товара: госреестр, документация, комплектация */

.pd__extra {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 720px;
}

.pd-ib {
  --pd-ib-accent: #6b7280;
  position: relative;
  background: #f3f4f6;
  border-radius: 12px;
  padding: 1rem 1rem 1rem 1.25rem;
  box-sizing: border-box;
  border: 1px solid #e5e7eb;
}

.pd-ib::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 5px;
  border-radius: 0 4px 4px 0;
  background: var(--pd-ib-accent);
}

.pd-ib--registry {
  --pd-ib-accent: #2563eb;
}

.pd-ib--docs {
  --pd-ib-accent: #9ca3af;
}

.pd-ib--pack {
  --pd-ib-accent: #16a34a;
}

.pd-ib__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding-left: 0.35rem;
}

.pd-ib__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
}

.pd-ib__dl {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
  padding: 0.35rem 0.65rem;
  border-radius: 8px;
  background: #dbeafe;
  color: #1d4ed8;
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.pd-ib__dl:hover {
  background: #bfdbfe;
}

.pd-ib__dl svg {
  flex-shrink: 0;
}

.pd-rs__table {
  margin: 0;
  padding-left: 0.35rem;
}

.pd-rs__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem 1rem;
  align-items: baseline;
  padding: 0.55rem 0;
  border-bottom: 1px dashed #d1d5db;
  font-size: 0.875rem;
  line-height: 1.35;
}

.pd-rs__row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.pd-rs__label {
  color: #374151;
}

.pd-rs__value {
  font-weight: 700;
  color: #111827;
  text-align: right;
}

.pd-doc__list {
  list-style: none;
  margin: 0;
  padding: 0 0 0 0.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pd-doc__item {
  margin: 0;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  padding: 0.65rem 0.85rem;
  font-size: 0.875rem;
  line-height: 1.4;
}

.pd-doc__item a {
  color: #1d4ed8;
  font-weight: 600;
  text-decoration: none;
}

.pd-doc__item a:hover {
  text-decoration: underline;
}

.pd-pc__list {
  list-style: none;
  margin: 0;
  padding: 0 0 0 0.35rem;
}

.pd-pc__list li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.1rem;
  border-bottom: 1px dashed #d1d5db;
  font-size: 0.875rem;
  line-height: 1.35;
  color: #111827;
}

.pd-pc__list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.pd-pc__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2563eb;
}
