/* Bottom Navigation Styles - Flat Design (Renamed to avoid conflict) */
:root {
  --nav-bg: #0a6a3e;
  --nav-text-color: rgba(255, 255, 255, 0.92);
  --nav-active-bg: #f2b705;
  --nav-active-text: #ffffff;
  --nav-border-color: rgba(0, 0, 0, 0.18);
}

.mv-bottom-modern {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--nav-bg) !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 8px calc(10px + env(safe-area-inset-bottom)) !important;
  min-height: 72px;
  border-top: 1px solid var(--nav-border-color);
  z-index: 9999;
  box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.35);
}

/* Renamed from .nav-item to .bottom-nav-item to avoid conflicts with global styles */
.mv-bottom-modern .bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-decoration: none !important;
  color: var(--nav-text-color);
  font-size: 8px;
  font-weight: 800;
  transition: all 0.2s ease;
  flex: 1;
  position: relative;

  /* Aggressive Resets to prevent bubbles */
  background: transparent !important;
  border: none !important;
  border-radius: 12px !important;
  box-shadow: none !important;
  padding: 10px 0 8px 0 !important;
  margin: 0 !important;
}

/* Active Text & Icon Color */
.mv-bottom-modern .bottom-nav-item.active {
  color: var(--nav-active-text) !important;
  background: var(--nav-active-bg) !important;
  margin: 0 6px !important;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22) !important;
}

/* Icon Styles */
.mv-bottom-modern .bottom-nav-item svg,
.mv-bottom-modern .bottom-nav-item .bottom-nav-icon {
  width: 22px;
  height: 22px;
  margin-bottom: 0;
  transition:
    transform 0.2s ease,
    color 0.2s ease;
  color: inherit;
  opacity: 0.95;
}

.mv-bottom-modern .bottom-nav-item.active svg,
.mv-bottom-modern .bottom-nav-item.active .bottom-nav-icon {
  transform: none;
  opacity: 1;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.25));
}

.mv-bottom-modern .bottom-nav-center {
  flex: 1.2;
  padding-top: 2px !important;
  justify-content: flex-start;
}
.mv-bottom-modern .bottom-nav-center .center-label {
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  margin: 0 0 6px 0;
  color: rgba(255, 255, 255, 0.9);
}
.mv-bottom-modern .bottom-nav-center .mascot-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}
.mv-bottom-modern .bottom-nav-center img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
}

/* Hide on Desktop */
@media (min-width: 901px) {
  .mv-bottom-modern {
    display: none;
  }
}
