.mobile_menu {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  height: 85px;
  background: #fff;
  padding: 0 10px;
  z-index: 1000;
  justify-content: space-around;
  align-items: center;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.05);
  border-top: 1px solid #f5f5f5;
}

.menu_btn_m {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.menu_btn_m.active {
  transform: translateY(-10px);
}

.menu_icon {
  position: relative;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 6px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.menu_btn_m.active .menu_icon {
  transform: translateY(-8px);
  background: rgba(124, 196, 64, 0.1);
  border-radius: 12px;
}

.menu_btn_m svg {
  width: 22px;
  height: 22px;
  transition: all 0.3s ease;
  fill: #888;
}

.menu_btn_m.active svg {
  fill: #7cc440;
}

.menu_btn_m[for="category_h"] svg {
  fill: #7cc440;
}

.menu_badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: #ff6b6b;
  color: white;
  font-size: 10px;
  font-weight: bold;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 9px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  z-index: 2;
}

.menu_label {
  font-size: 11px;
  font-weight: 500;
  color: #888;
  transition: all 0.3s ease;
  opacity: 0.8;
}

.menu_btn_m.active .menu_label {
  color: #7cc440;
  font-weight: 600;
  opacity: 1;
}

.circle.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(124, 196, 64, 0.15);
  animation: ripple 0.6s ease-out;
  transform: scale(0);
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(2.5);
    opacity: 0;
  }
}

.active_indicator {
  position: absolute;
  top: -5px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7cc440;
  opacity: 0;
  transition: all 0.3s ease;
}

.menu_btn_m.active .active_indicator {
  opacity: 1;
  top: -3px;
}

.menu_btn_m::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  background: rgba(124, 196, 64, 0.05);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: -1;
}

.menu_btn_m:hover::before {
  opacity: 1;
}

@media (min-width: 700px) {
  .mobile_menu {
    transform: translateY(90px);
  }
}



