:root{
  /* Mets ici EXACTEMENT le violet de ta maquette si besoin */
  --footer-bg: #d4d4d4;                /* violet par défaut */
  --footer-radius: 16px;               /* bords arrondis en haut */
  --footer-height: 60px;               /* hauteur cible (faible) */
}

/* pour éviter que le footer fixe ne masque le contenu */
body { padding-bottom: calc(var(--footer-height) + env(safe-area-inset-bottom, 0px)); }

.app-footer{
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--footer-bg);
  color: #fff;
  z-index: 999;
  border-radius: var(--footer-radius) var(--footer-radius) 0 0;
  box-shadow: 0 -8px 24px rgba(0,0,0,.08);
  /* padding bas avec safe-area iOS */
  padding: 6px 12px calc(6px + env(safe-area-inset-bottom, 0px));
}

.app-footer .footer-inner{
  min-height: var(--footer-height);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 6vw, 80px);
  max-width: 1200px;
  margin: 0 auto;
}

/* taille par défaut pour tous les logos */
.app-footer .footer-inner .brand{
  height: clamp(20px, 3.2vw, 34px);
  width: auto;
  object-fit: contain;
}

/* réduire UNIQUEMENT Midas & Eco-Huile */
.app-footer .footer-inner .brand--midas,
.app-footer .footer-inner .brand--ecohuile{
  height: clamp(16px, 2.6vw, 48px); /* ajuste à ton goût */
}


