.mobile-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #fff;
  border-radius: 20px 20px 0 0;
  z-index: 9999;
  box-shadow: 0 -1px 8px rgba(0, 0, 0, 0.08);
  padding: 12px 0;
}

.mobile-bottom-bar-item {
  flex: 1;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.mobile-bottom-bar-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
  position: relative;
  padding: 4px 0;
}

.mobile-bottom-bar-item img {
  width: 22px;
  height: 22px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  margin-bottom: 5px;
}

/* Text style */
.mobile-bottom-bar-item a span {
  font-size: 11px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: block;
}

/* Active state */
.mobile-bottom-bar-item.active::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  background: #ed0820;
  border-radius: 50%;
  z-index: 1;
  transition: all 0.3s ease;
}

.mobile-bottom-bar-item.active {
  transform: translateY(-10px);
}

.mobile-bottom-bar-item.active a {
  color: #ed0820;
}

.mobile-bottom-bar-item.active img {
  filter: brightness(0) invert(1);
  transform: scale(1);
}

.mobile-bottom-bar-item.active span {
  transform: translateY(8px);
}

/* Hover effects */
.mobile-bottom-bar-item:hover:not(.active) img {
  transform: translateY(-2px);
}

.mobile-bottom-bar-item:hover:not(.active) span {
  transform: translateY(-2px);
}

@media (min-width: 1024px) {
  .mobile-bottom-bar {
    display: none;
  }
}

