

/* Bottom Navigation */
.l-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 768px;
  margin: 0 auto;
  height: 70px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0 20px;
  z-index: 1000;
  border-radius: 5px 5px 0 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.c-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  padding: 8px 12px;
  color: #667085;
  transition: all 0.2s ease;
  position: relative;
}

.c-nav-item:hover {
  color: #f44336;
}

.c-nav-item::after {
  content: "";
  position: absolute;
  bottom: -12px;
  width: 0;
  height: 3px;
  background: #f44336;
  border-radius: 3px;
  transition: width 0.2s ease;
}

.c-nav-item:hover::after {
  width: 24px;
}

.c-nav-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-nav-text {
  font-size: 12px;
  font-weight: 500;
}