/* ===== BOTTOM NAVIGATION ===== */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #121212;
  border-top: 1px solid #414141;
  display: none;
  justify-content: space-around;
  align-items: center;
  padding: 8px 0;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.4);
}

body.popup-open .bottom-nav {
  box-shadow: none;
}

@media (max-width: 1024px) {
  .bottom-nav { display: flex !important; }
}

.bottom-nav-button {
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  position: relative;
  transition: transform 0.2s;
}

.bottom-nav-button:active {
  transform: scale(0.95);
}

.bottom-nav-button svg {
  width: 20px;
  height: 20px;
  color: var(--icon-color);
  fill: var(--icon-color);
  transform: scale(var(--icon-scale));
}

/* Active page state */
.bottom-nav-button.active-page svg {
  color: #ff6b35 !important;
  fill: #ff6b35 !important;
}

@media (max-width: 1024px) {
  .footer { padding-bottom: 80px !important; }
}

