/* Avatar boutique : parfaitement rond */
.store-header .store-logo,
.store-header .store-logo img,
.marketplace-store .store-avatar,
.marketplace-store .store-avatar img,
.bb-store__thumb,
.bb-store__thumb img,
.bb-vendor__avatar,
.bb-vendor__avatar img {
  width: 120px;          /* ajuste si besoin (80/100/150px) */
  height: 120px;
  border-radius: 50% !important;
}

.store-header .store-logo,
.marketplace-store .store-avatar,
.bb-store__thumb,
.bb-vendor__avatar {
  overflow: hidden;
  display: inline-block;
}

.store-header .store-logo img,
.marketplace-store .store-avatar img,
.bb-store__thumb img,
.bb-vendor__avatar img {
  object-fit: cover;
  aspect-ratio: 1 / 1;   /* garde un vrai carré avant arrondi */
  display: block;
}