/**
 * Barre de navigation fixe en bas — mobile uniquement (< 992px)
 * Charte Propulsecar : #034AAA
 */
.pc-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  background: #fff;
  border-top: 1px solid #f0f0f0;
  padding: 11px 0 calc(15px + env(safe-area-inset-bottom));
  display: flex;
  justify-content: space-around;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
  /* Force un layer GPU pour stabiliser le rendu fixe sur iOS Safari */
  transform: translateZ(0);
  will-change: transform;
}

@media (min-width: 992px) {
  .pc-bottom-nav {
    display: none !important;
  }
}

.pc-bnav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: #ccc;
  font-size: 10px;
  font-weight: 600;
  min-width: 56px;
}

.pc-bnav-item:hover {
  color: #034aaa;
}

.pc-bnav-item.active {
  color: #034aaa;
}

.pc-bnav-item i {
  font-size: 1.1rem;
}

/* Réserve d’espace pour ne pas masquer le contenu / le footer */
@media (max-width: 991.98px) {
  main {
    padding-bottom: 5.5rem;
  }

  footer.bg-dark {
    padding-bottom: 5rem !important;
  }
}
