.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 65px;
  padding: 0 10px;
  z-index: 1000;
  border-top: 1px solid #f3f4f6;
}

[data-theme-mode="dark"] .mobile-bottom-nav {
  background: var(--color-secondary);
  border-top-color: color-mix(in srgb, var(--color-secondary) 78%, #ffffff);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
}

.mobile-bottom-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  text-decoration: none;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  gap: 4px;
  flex: 1;
  transition: all 0.2s;
}

[data-theme-mode="dark"] .mobile-bottom-nav__item {
  color: #9ca3af;
}

.mobile-bottom-nav__item.is-active {
  color: var(--color-primary);
}

.mobile-bottom-nav__item .icon {
  width: 22px;
  height: 22px;
}

.mobile-bottom-nav__item--center {
  position: relative;
  margin-top: -30px;
}

.mobile-bottom-nav__center-btn {
  width: 56px;
  height: 56px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--color-primary) 40%, transparent);
  border: 4px solid #fff;
}

[data-theme-mode="dark"] .mobile-bottom-nav__center-btn {
  border-color: var(--color-secondary);
}

.mobile-bottom-nav__center-btn .icon {
  width: 26px;
  height: 26px;
}

.mobile-bottom-nav__center-dot {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 10px;
  height: 10px;
  background: #fb7185;
  border-radius: 50%;
  border: 2px solid #fff;
}

@media (min-width: 769px) {
  .mobile-bottom-nav {
    display: none;
  }
}
