/* Mobile bottom navigation */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: #fff;
  border-top: 1px solid #e5e5e5;
  box-shadow: 0 -2px 12px rgba(0,0,0,.08);
  z-index: 1040;
  justify-content: space-around;
  align-items: center;
  padding-bottom: env(safe-area-inset-bottom);
}
.mobile-bottom-nav a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #666;
  font-size: 11px;
  padding: 6px 0;
  position: relative;
  transition: color .15s;
}
.mobile-bottom-nav a i {
  font-size: 22px;
  margin-bottom: 2px;
}
.mobile-bottom-nav a.active {
  color: var(--primary, #00a651);
}
.mobile-bottom-nav a.add-btn {
  flex: 0 0 60px;
}
.mobile-bottom-nav a.add-btn .icon-circle {
  width: 48px;
  height: 48px;
  background: var(--primary, #00a651);
  color: #fff !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -28px;
  box-shadow: 0 4px 12px rgba(0,166,81,.4);
}
.mobile-bottom-nav a.add-btn .icon-circle i {
  font-size: 26px;
  margin: 0;
  color: #fff;
}
.mobile-bottom-nav a .badge-dot {
  position: absolute;
  top: 6px;
  right: 25%;
  background: #dc3545;
  color: #fff;
  border-radius: 10px;
  font-size: 9px;
  padding: 2px 5px;
  min-width: 16px;
  text-align: center;
}

/* Yalnız mobile-də göstər */
@media (max-width: 768px) {
  .mobile-bottom-nav { display: flex; }
  body { padding-bottom: 70px; }
  .floating-whatsapp {
    bottom: 80px !important;
  }
}

/* AJAX loading bar (top) */
.ajax-loader {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary,#00a651), #4ade80);
  width: 0%;
  transition: width .25s;
  z-index: 9999;
}
.ajax-loader.active { width: 70%; }
.ajax-loader.done { width: 100%; opacity: 0; transition: width .2s, opacity .3s; }

/* Toast notifications */
.bina-toasts {
  position: fixed;
  top: 80px;
  right: 20px;
  z-index: 1055;
  max-width: 360px;
}
.bina-toast {
  background: #fff;
  border-left: 4px solid var(--primary,#00a651);
  border-radius: 6px;
  padding: 12px 16px;
  margin-bottom: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  animation: slideIn .25s;
}
.bina-toast.danger { border-color: #dc3545; }
.bina-toast.warn { border-color: #ffc107; }
@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
