/* =============================================================
   ionic_liquids.css
   Scoped to body.ionic-liquids-page — no pigments bleed.
   Reuses style.css for: .tab-nav, .tab-btn, .table-section,
   .product-table, .pg-btn, .pg-active, .action-view
============================================================= */

/* ── Page background lock ── */
body.ionic-liquids-page { background-color: #f5f6f8 !important; }

/* ── Tab nav sticky ── */
body.ionic-liquids-page .tab-nav-outer {
  position: sticky;
  top: 90px;
  z-index: 800;
}

/* ── Section body text ── */
.il-section-body {
  max-width: 900px;
  line-height: 1.75;
  color: #444;
  font-size: 15px;
}

.il-empty-hint {
  color: #aaa;
  text-align: center;
  padding: 32px 0;
}

/* ─────────────────────────────────────────────
   CATEGORY PILLS
───────────────────────────────────────────── */
.il-pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.il-pill {
  padding: 8px 20px;
  border-radius: 999px;
  border: 1.5px solid #ccc;
  background: #fff;
  color: #555;
  font-size: 13px;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  white-space: nowrap;
}

.il-pill:hover {
  border-color: #1d2939;
  color: #1d2939;
}

.il-pill.active {
  background: #1d2939;
  color: #fff;
  border-color: #1d2939;
}

/* ─────────────────────────────────────────────
   DUAL SEARCH ROW
───────────────────────────────────────────── */
.il-search-row {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.il-search-input {
  flex: 1;
  min-width: 200px;
  padding: 10px 16px;
  border: 1.5px solid #ddd;
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  background: #fff;
  color: #333;
  outline: none;
  transition: border-color 0.2s;
}

.il-search-input:focus {
  border-color: #1d2939;
}

/* ─────────────────────────────────────────────
   NO PRODUCTS ROW
───────────────────────────────────────────── */
.il-no-products {
  text-align: center;
  color: #aaa;
  padding: 32px;
  font-size: 14px;
}