/* =========================================================
   Houston Trade Pros — Directory Page Redesign
   css/directory.css
   Aesthetic: Industrial Warmth — dark navy hero, warm amber
   accents, premium card grid, textured backgrounds
   ========================================================= */

/* ── Font overrides for directory page ─────────────────── */
.dir-hero,
.dir-hero-title,
.dir-sidebar h3,
.dir-sidebar .filter-group-title,
.biz-card h3,
.dir-filter-toggle,
.dir-hero-badge,
.page-btn {
  font-family: 'Open Sauce Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}
.dir-hero-subtitle,
.dir-search-input,
.dir-result-count,
.biz-desc,
.biz-card-bottom,
.filter-check,
.verified-toggle,
.filter-clear,
.biz-claim-strip {
  font-family: 'Open Sauce Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ══════════════════════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════════════════════ */
.dir-hero {
  position: relative;
  background: linear-gradient(165deg, #0a1628 0%, #0f1d35 40%, #162544 100%);
  padding: 72px 0 56px;
  overflow: hidden;
  isolation: isolate;
}

/* Dot pattern overlay — inspired by MagicUI dot-pattern */
.dir-hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(249,115,22,0.12) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 70% 80% at 50% 40%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 50% 40%, black 30%, transparent 75%);
  z-index: 0;
  pointer-events: none;
}

/* Warm radial glow */
.dir-hero-glow {
  position: absolute;
  width: 600px;
  height: 400px;
  top: -80px;
  right: -100px;
  background: radial-gradient(ellipse, rgba(249,115,22,0.1) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.dir-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

/* Live badge — inspired by MagicUI animated-shiny-text */
.dir-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: 9999px;
  background: rgba(249,115,22,0.08);
  border: 1px solid rgba(249,115,22,0.2);
  color: #fb923c;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.dir-hero-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f97316;
  position: relative;
  flex-shrink: 0;
}
.dir-hero-pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(249,115,22,0.4);
  animation: dir-pulse 2s ease-in-out infinite;
}
@keyframes dir-pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.8); opacity: 0; }
}

.dir-hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}
.dir-highlight {
  background: linear-gradient(135deg, #f97316, #fb923c, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.dir-hero-subtitle {
  color: rgba(255,255,255,0.55);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto 32px;
}

/* ── Search bar — glass effect with glow ─────────────── */
.dir-search-wrap {
  position: relative;
  max-width: 560px;
  margin: 0 auto 20px;
}
.dir-search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.35);
  pointer-events: none;
  transition: color 0.25s;
}
.dir-search-input {
  width: 100%;
  padding: 16px 24px 16px 52px;
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 1rem;
  color: #ffffff;
  transition: all 0.3s ease;
  outline: none;
}
.dir-search-input::placeholder {
  color: rgba(255,255,255,0.3);
}
.dir-search-input:focus {
  border-color: rgba(249,115,22,0.5);
  background: rgba(255,255,255,0.09);
  box-shadow: 0 0 0 4px rgba(249,115,22,0.1), 0 8px 32px rgba(0,0,0,0.2);
}
.dir-search-input:focus ~ .dir-search-icon,
.dir-search-wrap:focus-within .dir-search-icon {
  color: #f97316;
}

.dir-result-count {
  color: rgba(255,255,255,0.4);
  font-size: 0.88rem;
  font-weight: 500;
}

/* ══════════════════════════════════════════════════════════
   STICKY SEARCH BAR — Appears on scroll past hero
   ══════════════════════════════════════════════════════════ */
.dir-sticky-search {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10,22,40,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 12px 0;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
}
.dir-sticky-search.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.dir-sticky-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}
.dir-sticky-icon {
  position: absolute;
  left: 14px;
  color: rgba(255,255,255,0.4);
  pointer-events: none;
}
.dir-sticky-input {
  width: 100%;
  padding: 10px 16px 10px 42px;
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  font-family: 'Open Sauce Sans', sans-serif;
  font-size: 0.9rem;
  color: #ffffff;
  outline: none;
  transition: all 0.2s;
}
.dir-sticky-input::placeholder { color: rgba(255,255,255,0.3); }
.dir-sticky-input:focus {
  border-color: rgba(249,115,22,0.5);
  background: rgba(255,255,255,0.09);
}
.dir-sticky-count {
  font-family: 'Open Sauce Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════
   DIRECTORY BODY
   ══════════════════════════════════════════════════════════ */
.dir-body {
  padding: 40px 0 80px;
  background: #f8f9fb;
  min-height: 60vh;
  /* Subtle noise texture */
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.02'/%3E%3C/svg%3E");
}

/* Mobile filter toggle */
.dir-filter-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 14px 20px;
  margin-bottom: 20px;
  border: 1.5px solid #e2e5ea;
  border-radius: 12px;
  background: #ffffff;
  color: #343a40;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.dir-filter-toggle:hover {
  border-color: #f97316;
  color: #f97316;
}
.dir-filter-toggle svg {
  flex-shrink: 0;
}

/* ── Layout grid ─────────────────────────────────────── */
.dir-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: flex-start;
}

@media (max-width: 900px) {
  .dir-layout {
    grid-template-columns: 1fr;
  }
  .dir-sidebar {
    position: static !important;
    display: none;
  }
  .dir-sidebar.open { display: block; }
  .dir-filter-toggle { display: flex; }
}

/* ══════════════════════════════════════════════════════════
   SIDEBAR
   ══════════════════════════════════════════════════════════ */
.dir-sidebar {
  background: #ffffff;
  border: 1px solid #ebedf2;
  border-radius: 16px;
  padding: 0;
  position: sticky;
  top: 88px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 6px 24px rgba(0,0,0,0.03);
}

.dir-sidebar-header {
  padding: 20px 24px 16px;
  border-bottom: 1px solid #f1f3f5;
}
.dir-sidebar-header h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0a1628;
  margin: 0;
}
.dir-sidebar-header h3 svg {
  color: #f97316;
}

.dir-sidebar .filter-group {
  padding: 18px 24px;
  border-bottom: 1px solid #f5f6f8;
  margin-bottom: 0;
}
.dir-sidebar .filter-group:last-of-type {
  border-bottom: none;
}

.dir-sidebar .filter-group-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #868e96;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.dir-sidebar .filter-group-title svg {
  color: #adb5bd;
}

/* Custom checkboxes */
.dir-sidebar .filter-checks {
  max-height: 260px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #dee2e6 transparent;
}
.dir-sidebar .filter-checks::-webkit-scrollbar { width: 4px; }
.dir-sidebar .filter-checks::-webkit-scrollbar-track { background: transparent; }
.dir-sidebar .filter-checks::-webkit-scrollbar-thumb { background: #dee2e6; border-radius: 4px; }

.dir-sidebar .filter-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 8px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.88rem;
  color: #495057;
  transition: background 0.15s;
}
.dir-sidebar .filter-check:hover {
  background: #f8f9fa;
}
.dir-sidebar .filter-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #f97316;
  cursor: pointer;
  flex-shrink: 0;
}
.dir-sidebar .filter-check .check-count {
  margin-left: auto;
  font-size: 0.72rem;
  font-weight: 600;
  color: #adb5bd;
  background: #f1f3f5;
  padding: 2px 7px;
  border-radius: 6px;
  min-width: 24px;
  text-align: center;
}

.dir-sidebar .verified-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
  color: #495057;
  font-weight: 500;
}

.dir-sidebar .filter-clear {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: calc(100% - 48px);
  margin: 0 24px 20px;
  padding: 10px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 10px;
  color: #dc2626;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.dir-sidebar .filter-clear:hover {
  background: #fee2e2;
  border-color: #f87171;
}

/* ══════════════════════════════════════════════════════════
   BUSINESS CARD GRID
   ══════════════════════════════════════════════════════════ */
.dir-main {
  min-width: 0;
}

.biz-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 1100px) {
  .biz-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .biz-grid { gap: 14px; }
}

/* ── Individual card — premium design ────────────────── */
.biz-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #ebedf2;
  border-radius: 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  cursor: default;
}
.biz-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(10,22,40,0.1), 0 2px 8px rgba(10,22,40,0.06);
  border-color: #d1d5db;
}

/* Top accent bar — category color */
.biz-card-accent {
  height: 4px;
  width: 100%;
  flex-shrink: 0;
}

/* Card body */
.biz-card-body {
  padding: 20px 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

/* Header: info */
.biz-card-header {
  display: flex;
  align-items: flex-start;
}

.biz-card-info {
  flex: 1;
  min-width: 0;
}
.biz-card-info h3 {
  font-family: 'Open Sauce Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0a1628;
  margin: 0 0 6px;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.biz-card-badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.biz-card .badge-category {
  font-size: 0.7rem;
  padding: 3px 10px;
  border-radius: 6px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.biz-card .badge-verified {
  font-size: 0.7rem;
  padding: 3px 10px;
  border-radius: 6px;
  background: linear-gradient(135deg, #fff7ed, #ffedd5);
  color: #ea580c;
  font-weight: 700;
  border: 1px solid rgba(249,115,22,0.15);
}
.biz-card .badge-verified::before {
  content: '✓ ';
  font-weight: 800;
}

/* Description */
.biz-card .biz-desc {
  color: #6b7280;
  font-size: 0.86rem;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Bottom section */
.biz-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 22px;
  border-top: 1px solid #f3f4f6;
  margin-top: auto;
  gap: 10px;
  background: #fafbfc;
}
.biz-card-bottom .biz-phone {
  font-size: 0.84rem;
  font-weight: 500;
  color: #6b7280;
}
.biz-card-bottom .biz-phone a {
  color: #6b7280;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
  text-decoration: none;
}
.biz-card-bottom .biz-phone a:hover {
  color: #f97316;
}
.biz-card-bottom .biz-phone svg {
  flex-shrink: 0;
}

/* View profile button */
.biz-card-bottom .btn-primary {
  background: linear-gradient(135deg, #f97316, #ea580c);
  border: none;
  color: #fff;
  padding: 8px 18px;
  border-radius: 10px;
  font-family: 'Open Sauce Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  transition: all 0.2s;
  white-space: nowrap;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.biz-card-bottom .btn-primary:hover {
  background: linear-gradient(135deg, #ea580c, #dc2626);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(249,115,22,0.3);
  color: #fff;
}

/* Claim strip */
.biz-claim-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 22px;
  background: linear-gradient(135deg, #f0f9ff, #eff6ff);
  border-top: 1px dashed #bfdbfe;
  font-size: 0.78rem;
  font-family: 'Open Sauce Sans', sans-serif;
  color: #64748b;
  text-decoration: none;
  transition: all 0.2s;
}
.biz-claim-strip:hover {
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  color: #1d4ed8;
}
.biz-claim-strip strong {
  color: #2563eb;
  font-weight: 700;
}
.biz-claim-strip:hover strong {
  color: #1d4ed8;
}

/* ── Verified card shimmer border — inspired by MagicUI shine-border ── */
.biz-card.is-verified {
  border-color: rgba(249,115,22,0.15);
}
.biz-card.is-verified::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 16px;
  padding: 1.5px;
  background: linear-gradient(
    var(--shimmer-angle, 0deg),
    transparent 40%,
    rgba(249,115,22,0.3) 50%,
    transparent 60%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: dir-shimmer 4s linear infinite;
  pointer-events: none;
  z-index: 1;
}
@property --shimmer-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
@keyframes dir-shimmer {
  to { --shimmer-angle: 360deg; }
}

/* Fallback for browsers without @property */
@supports not (background: paint(id)) {
  .biz-card.is-verified::before {
    animation: dir-shimmer-fallback 4s linear infinite;
  }
  @keyframes dir-shimmer-fallback {
    0%   { background: linear-gradient(0deg, transparent 40%, rgba(249,115,22,0.3) 50%, transparent 60%); }
    25%  { background: linear-gradient(90deg, transparent 40%, rgba(249,115,22,0.3) 50%, transparent 60%); }
    50%  { background: linear-gradient(180deg, transparent 40%, rgba(249,115,22,0.3) 50%, transparent 60%); }
    75%  { background: linear-gradient(270deg, transparent 40%, rgba(249,115,22,0.3) 50%, transparent 60%); }
    100% { background: linear-gradient(360deg, transparent 40%, rgba(249,115,22,0.3) 50%, transparent 60%); }
  }
}

/* ══════════════════════════════════════════════════════════
   PAGINATION
   ══════════════════════════════════════════════════════════ */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 48px;
  padding: 16px;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #ebedf2;
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}
.pagination:empty {
  display: none;
}

.page-btn {
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 10px;
  font-family: 'Open Sauce Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: #6b7280;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
  padding: 0 8px;
}
.page-btn:hover:not(.active):not(:disabled) {
  background: #f3f4f6;
  color: #f97316;
}
.page-btn.active {
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(249,115,22,0.3);
}
.page-btn:disabled {
  opacity: 0.35;
  cursor: default;
}

/* ══════════════════════════════════════════════════════════
   EMPTY STATE
   ══════════════════════════════════════════════════════════ */
.empty-state {
  text-align: center;
  padding: 80px 24px;
  grid-column: 1 / -1;
}
.empty-state::before {
  content: '';
  display: block;
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, #f1f3f5, #e9ecef);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 24 24' fill='none' stroke='%23adb5bd' stroke-width='1.5'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.empty-state h3 {
  font-family: 'Open Sauce Sans', sans-serif;
  margin-bottom: 8px;
  color: #495057;
  font-weight: 700;
}
.empty-state p {
  color: #adb5bd;
  font-family: 'Open Sauce Sans', sans-serif;
  font-size: 0.92rem;
}

/* ══════════════════════════════════════════════════════════
   CARD STAGGER REVEAL ANIMATION
   ══════════════════════════════════════════════════════════ */
@keyframes dir-card-in {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.biz-card {
  animation: dir-card-in 0.5s ease both;
}
.biz-card:nth-child(1)  { animation-delay: 0s; }
.biz-card:nth-child(2)  { animation-delay: 0.04s; }
.biz-card:nth-child(3)  { animation-delay: 0.08s; }
.biz-card:nth-child(4)  { animation-delay: 0.12s; }
.biz-card:nth-child(5)  { animation-delay: 0.16s; }
.biz-card:nth-child(6)  { animation-delay: 0.2s; }
.biz-card:nth-child(7)  { animation-delay: 0.24s; }
.biz-card:nth-child(8)  { animation-delay: 0.28s; }
.biz-card:nth-child(9)  { animation-delay: 0.32s; }
.biz-card:nth-child(10) { animation-delay: 0.36s; }
.biz-card:nth-child(n+11) { animation-delay: 0.4s; }

/* ══════════════════════════════════════════════════════════
   HERO ENTRY ANIMATIONS
   ══════════════════════════════════════════════════════════ */
@keyframes dir-fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes dir-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.dir-hero-badge   { animation: dir-fade-up 0.6s ease 0.1s both; }
.dir-hero-title   { animation: dir-fade-up 0.6s ease 0.2s both; }
.dir-hero-subtitle{ animation: dir-fade-up 0.5s ease 0.35s both; }
.dir-search-wrap  { animation: dir-fade-up 0.5s ease 0.5s both; }
.dir-result-count { animation: dir-fade-in 0.4s ease 0.7s both; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 600px) {
  .dir-hero {
    padding: 48px 0 40px;
  }
  .dir-hero-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }
  .dir-hero-subtitle {
    font-size: 0.92rem;
  }
  .dir-search-input {
    padding: 14px 20px 14px 46px;
    font-size: 0.92rem;
  }
  .biz-card-body {
    padding: 16px 18px 14px;
  }
  .biz-card-bottom {
    padding: 12px 18px;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }
  .biz-card-bottom .btn-primary {
    text-align: center;
    justify-content: center;
  }
  .dir-body {
    padding: 24px 0 60px;
  }
  .page-btn {
    min-width: 36px;
    height: 36px;
    font-size: 0.82rem;
  }
}

/* ══════════════════════════════════════════════════════════
   HIDE OLD DIRECTORY STYLES (override conflicts)
   ══════════════════════════════════════════════════════════ */
.directory-page,
.directory-header,
.directory-layout,
.directory-search,
.filter-sidebar,
.filter-toggle-mobile {
  display: none !important;
}
