Exposing fields directly and using too many getters or setters.
A common mistake is making fields public, which undermines encapsulation. Another is overusing getters and setters, which can lead to a maintenance burden and reduced encapsulation benefits. Instead, use methods that encapsulate behavior, such as `increaseStock()`.