/* =========================================================
   CONNECT — spezielle UI-Interaktionen
   ========================================================= */

/* Scan-Button Variante (nur wenn du sie nutzt) */
.footer-scan-btn {
  transform: translateY(-20px);
  transition: transform 0.2s ease;
}

.footer-scan-btn:active {
  transform: translateY(-18px) scale(0.95);
}

/* Brand Utility */
.bg-orange {
  background-color: var(--iduwa-orange) !important;
}
/* =========================================================
   FOOTER — 5 Icons + Legal Links (Screenshot)
   ========================================================= */

/* Footer Container */
.app-footer {
  background: #fff;
  border-top: 1px solid #eee;
  padding-bottom: env(safe-area-inset-bottom, 0px);
  width: 100%;
}

/* 5er-Navigation - Symmetrie-Check */
.footer-nav {
  display: flex;
  align-items: center; /* Icons auf eine Linie bringen */
  justify-content: space-between;
  padding: 8px 10px 4px; /* Etwas kompakter */
}

/* Einzelnes Item - bekommt exakt 20% Breite (1/5) */
.footer-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px; /* Abstand Icon zu Text verringert */

  text-decoration: none;
  color: var(--iduwa-grey);
  font-size: 0.65rem; /* Etwas kleiner für Tablet-Optimierung */
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

/* Icons etwas kleiner und feiner */
.footer-item .bi {
  font-size: 1.4rem; /* Reduziert von 1.65rem für einen cleaner Look */
  line-height: 1;
}

/* Der aktive/orangene Button in der Mitte */
.footer-item.is-active {
  color: var(--iduwa-orange) !important;
}

/* Optional: Falls du den mittleren Button hervorheben willst */
.footer-item.is-active .bi {
  font-size: 1.6rem; /* Minimal größer als die anderen */
}

/* Legal Links kompakter */
.footer-legal {
  text-align: center;
  padding: 4px 0 calc(8px + env(safe-area-inset-bottom, 0px));
  font-size: 0.85rem;
  color: var(--iduwa-grey);
  border-top: 1px solid #f9f9f9;
}

.footer-legal .link-iduwa {
  color: var(--iduwa-grey);
  text-decoration: none;
}
