/* --- Header: sostituisco il logo Wger con il logo CiaoChili --- */

/* nascondo l'img originale del brand */
.navbar-brand img,
.navbar .navbar-brand img,
.navbar-brand svg {
  display: none !important;
}

/* mostro il nostro logo come background dell'anchor brand */
.navbar-brand {
  display: inline-block;
  width: 150px;           /* dimensione logo: cambia qui se vuoi */
  height: 28px;
  background-image: url('/logo-ciaochili.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
  padding-left: 0 !important;
  margin-right: 12px;
}

/* su schermi piccoli lascio un po' di aria */
@media (max-width: 768px) {
  .navbar-brand { width: 130px; height: 26px; }
}

/* --- Footer: nascondo badge store / link store --- */
a[href*="google.com/store"],
a[href*="apps.apple.com"],
img[alt*="Google Play"],
img[alt*="App Store"],
.footer img[src*="google"],
.footer img[src*="apple"],
.footer a[href*="play.google"],
.footer a[href*="appstore"] {
  display: none !important;
}

/* Contenitori dei badge (se presenti) */
.footer .store-badges,
.store-badges,
.badges,
.app-badges {
  display: none !important;
  height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
}
