.product-page input[readonly] {
  background: #f4f6f9;
  color: #444;
  font-weight: 700;
}

.product-form-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-page input:disabled {
  background: #f4f6f9;
  color: #8a94a6;
  cursor: not-allowed;
}

.product-filter-panel {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 12px;
  align-items: end;
  padding: 12px;
  margin-bottom: 14px;
  border: 1px solid #e1e6ee;
  border-radius: 12px;
  background: #fbfcfe;
}

.product-filter-panel label {
  display: block;
  font-weight: 800;
  margin-bottom: 6px;
}

.product-filter-panel input,
.product-filter-panel select {
  width: 100%;
  border: 1px solid #ccd3dd;
  border-radius: 8px;
  padding: 10px 12px;
  font-family: inherit;
  font-size: 14px;
  background: #fff;
}

.product-table {
  min-width: 1260px;
}

.product-table th,
.product-table td {
  white-space: nowrap;
}

.product-pill {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.category-pill {
  background: #e8f3ff;
  color: #0b5f99;
}

.type-pill {
  background: #f0fbf4;
  color: #167a3a;
}

.stock-pill {
  background: #eaf8f0;
  color: #17804a;
}

.no-stock-pill {
  background: #eef1f5;
  color: #5f6b7a;
}

.low-stock-pill {
  background: #fff1f1;
  color: #bd2b2b;
}

.action-group {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.hidden {
  display: none !important;
}

.empty-box {
  border: 1px dashed #ccd3dd;
  padding: 14px;
  border-radius: 10px;
  color: #666;
  background: #fff;
}

@media (max-width: 900px) {
  .product-form-grid,
  .product-filter-panel {
    grid-template-columns: 1fr;
  }
}
