/* ========== НИЖНЯЯ ПАНЕЛЬ - ПОЛНЫЙ СБРОС ========== */

.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(25px);
  z-index: 1000;
}

.nav-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  padding: 8px 12px;
  min-height: 70px;
}

.nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 0 4px;
  cursor: pointer;
  z-index: 10;
  background: transparent;
  border: none;
  color: #888;
  -webkit-tap-highlight-color: transparent;
}

.nav-item.active .nav-label {
  color: #ffffff;
  font-weight: 600;
}

.nav-label {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  color: #888888;
}

.nav-icon {
  width: 24px;
  height: 24px;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-icon svg {
  width: 22px;
  height: 22px;
  stroke: #888888;
  stroke-width: 1.5;
  fill: none;
}

.nav-item.active .nav-icon svg {
  stroke: #ffffff;
}

/* ========== BLOB - МИНИМАЛЬНЫЕ СТИЛИ ========== */
.blob {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 48px;
  background: #3b82f6;
  border-radius: 40px;
  z-index: 5;
  pointer-events: none;
  /* ВАЖНО: transition БУДЕТ УСТАНАВЛИВАТЬСЯ ЧЕРЕЗ JS */
}

/* Простые блики */
.blob::before {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  top: 10px;
  left: 10px;
  filter: blur(1px);
}

.blob::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  top: 26px;
  left: 8px;
  filter: blur(0.5px);
}

/* Скрываем всё лишнее */
.wave,
.plus-btn,
.blob-content,
.blob-reflection,
.particles-container {
  display: none !important;
}

.gooey-filter {
  position: absolute;
  width: 0;
  height: 0;
  pointer-events: none;
}

/* ========== АДАПТИВНОСТЬ ========== */
@media (max-width: 480px) {
  .nav-container {
    padding: 6px 12px;
    min-height: 60px;
  }
  
  .blob {
    height: 40px;
  }
  
  .nav-icon svg {
    width: 20px;
    height: 20px;
  }
  
  .nav-label {
    font-size: 9px;
  }
}

@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .nav-container {
    padding-bottom: calc(8px + env(safe-area-inset-bottom));
  }
}

.nav-icon {
  width: 24px;
  height: 24px;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px; /* ДЛЯ ЭМОДЗИ */
}

/* Если используются SVG (запасной вариант) */
.nav-icon svg {
  width: 22px;
  height: 22px;
  stroke: #888888;
  stroke-width: 1.5;
  fill: none;
}

.nav-item.active .nav-icon svg {
  stroke: #ffffff;
}

/* Эмодзи не меняют цвет, это нормально */
.nav-item.active .nav-icon {
  filter: brightness(1.2);
}