/* =============================================================
   chemicals.css  — scoped to body.chemicals-page
============================================================= */

body.chemicals-page { background-color: #f5f6f8 !important; }

body.chemicals-page .tab-nav-outer {
  position: sticky;
  top: 90px;
  z-index: 800;
}

.chem-section-body {
  max-width: 900px;
  line-height: 1.75;
  color: #444;
  font-size: 15px;
}

.chem-empty-hint {
  color: #aaa;
  text-align: center;
  padding: 32px 0;
}

/* ── Category pills ── */
.chem-pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.chem-pill {
  padding: 8px 18px;
  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;
}

.chem-pill:hover {
  border-color: #1d2939;
  color: #1d2939;
}

.chem-pill.active {
  background: #1d2939;
  color: #fff;
  border-color: #1d2939;
}

/* ── Dual search row ── */
.chem-search-row {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.chem-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;
}

.chem-search-input:focus { border-color: #1d2939; }

.chem-no-products {
  text-align: center;
  color: #aaa;
  padding: 32px;
  font-size: 14px;
}   