/* Masquer les radios */
.searchandfilter .sf-input-radio {
  display: none !important;
}

/* Structure globale */
.searchandfilter ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Espacement entre items */
.searchandfilter li {
  margin: 6px 0;
}

/* --- Boutons niveau 0 (catégories parents) --- */
.searchandfilter .sf-level-0 > .sf-label-radio {
  display: inline-block;
  padding: 5px 10px;
  border: 2px solid #0073aa;
  border-radius: 25px;
  background: #f9f9f9;
  color: #333;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}
.searchandfilter .sf-level-0 > .sf-label-radio:hover {
  background: #0073aa;
  color: #fff;
}
.searchandfilter .sf-level-0 input:checked + .sf-label-radio {
  background: #0073aa;
  color: #fff;
  border-color: #0073aa;
}

/* --- Boutons niveau 1 (sous-catégories) --- */
.searchandfilter .sf-level-1 {
  margin-left: 25px; /* indentation */
}

.searchandfilter .sf-level-1 > .sf-label-radio {
  display: inline-block;
  padding: 5px 10px;
  border: 1px solid #ccc;
  border-radius: 15px;
  background: #f1f1f1;
  color: #555;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.searchandfilter .sf-level-1 > .sf-label-radio:hover {
  background: #0073aa;
  color: #fff;
  border-color: #0073aa;
}
.searchandfilter .sf-level-1 input:checked + .sf-label-radio {
  background: #0073aa;
  color: #fff;
  border-color: #0073aa;
}
