/* Mobile Bottom Navigation - Saydam Arka Plan ve Siyah İkonlar */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 1000;
  box-shadow: 0 -2px 20px rgba(0,0,0,0.15);
  padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
}

.mobile-bottom-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 4px;
  text-decoration: none;
  color: #000000 !important;
  font-size: 11px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  min-height: 50px;
}

.mobile-bottom-nav-item i {
  font-size: 22px;
  margin-bottom: 4px;
  transition: all 0.3s ease;
  color: #000000 !important;
}

.mobile-bottom-nav-item span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #000000 !important;
}

.mobile-bottom-nav-item.active {
  color: #000000 !important;
}

.mobile-bottom-nav-item.active i {
  color: #000000 !important;
  transform: scale(1.1);
}

.mobile-bottom-nav-item.active span {
  color: #000000 !important;
}

.mobile-bottom-nav-item:hover {
  color: #000000 !important;
  background-color: rgba(0, 0, 0, 0.05);
}

.mobile-bottom-nav-item:hover i {
  color: #000000 !important;
}

.mobile-bottom-nav-item:hover span {
  color: #000000 !important;
}

.mobile-nav-badge {
  position: absolute;
  top: 2px;
  right: 50%;
  transform: translateX(50%);
  background: linear-gradient(135deg, #ff6b6b 0%, #ff8a80 100%);
  color: white;
  font-size: 9px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  border: 2px solid white;
  min-width: 16px;
  min-height: 16px;
  line-height: 1;
}

/* Mobile Bottom Navigation Display */
@media (max-width: 767px) {
  .mobile-bottom-nav {
    display: flex;
  }

  body {
    padding-bottom: 70px !important;
  }

  .footer {
    margin-bottom: 70px;
  }
}

/* Safe area support for iPhone X and newer */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  @media (max-width: 767px) {
    .mobile-bottom-nav {
      padding-bottom: calc(8px + env(safe-area-inset-bottom));
    }
    
    body {
      padding-bottom: calc(70px + env(safe-area-inset-bottom)) !important;
    }
    
    .footer {
      margin-bottom: calc(70px + env(safe-area-inset-bottom));
    }
  }
}