/* ══ BIGSEARCH PAGE ══════════════════════════════════════════════════════════ */

/* Page results strip */
.bs-page-results { display: flex; align-items: flex-start; gap: 20px; flex-wrap: wrap; }
.bs-pr-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.10em;
  text-transform: uppercase; color: var(--green);
  display: flex; align-items: center; gap: 6px;
  white-space: nowrap; padding-top: 4px;
}
.bs-pr-grid { display: flex; flex-wrap: wrap; gap: 10px; flex: 1; }
.bs-pr-card {
  display: flex; flex-direction: column; gap: 4px;
  padding: 12px 16px;
  background: var(--white); border: 1px solid var(--rule);
  border-radius: var(--radius); text-decoration: none;
  min-width: 200px; max-width: 280px;
  transition: box-shadow .15s, border-color .15s;
}
.bs-pr-card:hover { border-color: var(--green); box-shadow: var(--shadow); }
.bs-pr-title { font-size: 13.5px; font-weight: 700; color: var(--green-dk); }
.bs-pr-desc  { font-size: 12px; color: var(--muted); line-height: 1.4; }
.bs-pr-url   { font-size: 11px; color: var(--green); margin-top: 4px; }

/* Main layout */
.bs-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px; align-items: start;
}

/* Sidebar */
.bs-sidebar { position: sticky; bottom: 24px; display: flex; flex-direction: column; gap: 8px; }
.bs-sidebar-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted);
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px 6px;
}
.bs-cat-list, .bs-dept-list { list-style: none; background: var(--white); border: 1px solid var(--rule); border-radius: var(--radius-lg); overflow: hidden; }
.bs-cat-item, .bs-dept-item {
  display: flex; flex-direction: column; gap: 3px;
  padding: 10px 14px;
  text-decoration: none; color: var(--text);
  font-size: 13px; border-bottom: 1px solid var(--rule);
  transition: background .15s;
}
.bs-cat-item:last-child,
.bs-dept-item:last-child { border-bottom: none; }
.bs-cat-item:hover, .bs-dept-item:hover { background: var(--green-lt); }
.bs-dept-item--active { background: var(--green-lt); color: var(--green); font-weight: 600; }
.bs-cat-name { font-weight: 600; color: var(--green-dk); font-size: 13px; }
.bs-cat-meta { display: flex; align-items: center; justify-content: space-between; }
.bs-cat-dept { font-size: 11px; color: var(--muted); }
.bs-cat-count {
  font-size: 11px; color: var(--muted);
  background: var(--bg); border: 1px solid var(--rule);
  border-radius: 10px; padding: 1px 7px;
}
.bs-clear-dept {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--muted); text-decoration: none;
  transition: color .2s;
}
.bs-clear-dept:hover { color: var(--green); }
.bs-sidebar-rfq {
  background: var(--green-lt); border: 1px solid var(--rule);
  border-radius: var(--radius-lg); padding: 14px;
}
.bs-sidebar-rfq p { font-size: 12.5px; color: var(--muted); margin-bottom: 10px; line-height: 1.4; }

/* Toolbar */
.bs-toolbar { margin-bottom: 20px; }

/* Responsive */
@media (max-width: 900px) {
  .bs-layout { grid-template-columns: 1fr; }
  .bs-sidebar { position: static; }
  .bs-cat-list, .bs-dept-list {
    display: flex; flex-wrap: wrap;
  }
  .bs-cat-item, .bs-dept-item {
    border-right: 1px solid var(--rule);
    flex-direction: row; align-items: center; gap: 8px;
  }
}
