/* === FIX GLOBAL Z-INDEX MODALES & BOTTOM NAV (2025-10-10) === */

/* Barre de navigation mobile */
.navbar-bottom {
  z-index: 1500 !important;
}

/* Modales Bootstrap et modales custom */
.modal,
.modal.show {
  z-index: 3000 !important;
}

.modal-backdrop {
  z-index: 2500 !important;
  opacity: 0.5 !important;
}

/* === ✨ ANIMATION MODALES (iOS STYLE) === */
.modal.fade .modal-dialog {
  transform: scale(0.95) translateY(20px);
  opacity: 0;
  transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.modal.show .modal-dialog {
  transform: scale(1) translateY(0);
  opacity: 1;
}

/* Rend les transitions plus fluides sur mobile */
@media (max-width: 768px) {
  .modal.fade .modal-dialog {
    transition-duration: 0.35s;
  }
}
