
/* === 04_160 Verified & Pickup badges === */
.badge-verified{background:#10b981} /* emerald */
.badge-pickup{background:#2563eb}   /* blue */

/* === 04_161 Shipping UI tweaks === */
.sf-filter-bar .sep{opacity:.5;margin:0 .5rem}

/* === CRITICAL: Hide filter facets if not properly mounted === */
.sf-filter-bar {
  /* Bar should be visible only on search/catalog pages */
  display: none !important;
}

/* Show filter bar only on specific pages */
[data-page="search"] .sf-filter-bar,
[data-page="catalog"] .sf-filter-bar,
.catalog-page .sf-filter-bar,
.search-page .sf-filter-bar {
  display: flex !important;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  margin: 1rem auto;
  max-width: 1280px;
}

/* Facets container */
.sf-facets {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sf-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sf-row > label {
  min-width: 120px;
  font-weight: 600;
  font-size: 0.875rem;
}

.sf-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* If no mount point found, hide completely */
body:not([data-page="search"]):not([data-page="catalog"]) .sf-filter-bar,
body:not(.search-page):not(.catalog-page) .sf-filter-bar {
  display: none !important;
}

/* === Country selector in header - aligned with CHF and FR === */
#sf-country-selector {
  display: flex;
  align-items: center;
  gap: 0;
}

/* Hide the label completely */
#sf-country-selector label {
  display: none !important;
}

/* Style the select to match CHF and FR dropdowns */
#sf-country-selector select {
  width: 100%;
  min-width: 70px;
}
