.product-management-page .workspace-card__header {
  padding: 14px 20px;
  border-bottom: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.94);
}

.product-management-page .workspace-card__title {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: #3c4761;
}

.product-management-page .workspace-card__body {
  padding-top: 2px;
}

.product-management-page .toolbar-row {
  padding-top: 14px;
}

.product-management-page .search-shell {
  min-width: 294px;
}

.product-management-table thead th:nth-child(1),
.product-management-table tbody td:nth-child(1) {
  width: 58px;
  text-align: center;
}

.product-management-table thead th:nth-child(2) {
  min-width: 240px;
}

.product-management-table thead th:nth-child(3) {
  min-width: 220px;
}

.product-management-table thead th:nth-child(4) {
  min-width: 160px;
}

.product-management-table thead th:nth-child(5) {
  min-width: 180px;
}

.product-management-table thead th:nth-child(6) {
  min-width: 240px;
}

.product-management-table thead th:nth-child(7) {
  min-width: 190px;
}

.product-management-table thead th:nth-child(8) {
  min-width: 160px;
}

.selection-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1px solid #d5dbea;
  color: #a5afc6;
  background: #fff;
  font-size: 12px;
  line-height: 1;
}

.selection-mark--header {
  background: #eef2fb;
}

.selection-mark--selected {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: #fff;
}

.route-flow {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 22px;
}

.route-step {
  width: 22px;
  height: 12px;
  clip-path: polygon(0 0, 72% 0, 100% 50%, 72% 100%, 0 100%, 16% 50%);
  background: #dfe4ec;
}

.route-step--ghost {
  background: #e3e6ec;
}

.route-step--green {
  background: #4fbc7f;
}

.route-step--blue {
  background: #58a6f4;
}

.route-step--yellow {
  background: #f4c84e;
}

.drawer__panel--product {
  width: min(800px, 100%);
}

.product-management-page .drawer__content {
  padding-bottom: 26px;
}

.product-detail-form {
  display: grid;
  gap: 18px;
}

.product-detail-form .form-row {
  grid-template-columns: 138px 1fr;
}

.product-factor-list {
  display: grid;
  gap: 12px;
  max-width: 360px;
}

.product-factor-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  align-items: center;
  gap: 16px;
}

.product-factor-row__label {
  color: #4d5872;
  font-size: 14px;
}

.product-factor-row input {
  text-align: center;
}

.product-note textarea {
  min-height: 112px;
}

.toolbar-group--compact {
  gap: 14px;
}

@media (max-width: 768px) {
  .product-management-page .search-shell {
    min-width: 0;
  }

  .product-detail-form .form-row {
    grid-template-columns: 1fr;
  }

  .product-factor-list {
    max-width: none;
  }
}
