.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #121111c2;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 -2px 10px #00000033;
  z-index: 9999;
  padding: 0.5rem 0;
}

.mobile-bottom-nav .nav-item {
  flex: 1;
  text-align: center;
  padding: 12px 0;
  color: #c3ad7b;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s ease;
}

.mobile-bottom-nav .nav-item:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #c3ad7b;
}

@media (max-width: 1000px) {
  .mobile-bottom-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
}
