/* ============================================================
   INVENTORY.CSS — Kitchen & Supply Management
   ============================================================ */

.kitchen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.item-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.item-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  background: var(--bg-deep);
}

.item-info {
  padding: 16px;
  flex: 1;
}

.item-name { font-weight: 700; font-size: 15px; margin-bottom: 4px; }
.item-price { color: var(--accent-light); font-weight: 800; font-size: 16px; }

/* Kitchen Billing Layout */
.kitchen-billing-ui {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 30px;
}

.order-summary {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  padding: 12px;
  background: var(--bg-surface);
  border-radius: 8px;
  border: 1px solid var(--border);
}
