/* إدارة الأقسام */
.category-admin-list {
  display: grid;
  gap: 0;
  margin-top: 14px;
}
.category-admin-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}
.category-admin-row:last-child { border-bottom: 0; }

/* حالة نفذت الكمية في لوحة الإدارة */
.stock-btn { color: #8c4b00; }
.stock-btn.restock { color: #26753b; background: #eefaf1; }
.admin-stock-status {
  display: inline-block;
  margin-top: 5px;
  color: #a42626;
  font-size: 13px;
  font-weight: 800;
}

/* حالة نفذت الكمية في المنيو */
.product-card.is-sold-out {
  order: 99;
}
.product-card.is-sold-out .product-image,
.product-card.is-sold-out .product-placeholder {
  opacity: .62;
  filter: grayscale(.25);
}
.sold-out-badge {
  width: fit-content;
  margin-bottom: 7px;
  padding: 5px 9px;
  border-radius: 999px;
  background: #fff1f1;
  color: #a42626;
  border: 1px solid #ffd0d0;
  font-size: 13px;
  font-weight: 900;
}
.product-card.is-sold-out [data-add] {
  background: #f4f4f4;
  color: var(--muted);
  border-color: var(--line);
}
