.bottom-nav {
  position: fixed;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  z-index: 30;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  width: fit-content;
  max-width: calc(100vw - 24px);
  padding: 8px;

  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(230, 221, 210, 0.9);
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.nav-item {
  flex: 0 0 auto;
  min-height: 56px;
  min-width: 72px;
  padding: 10px 14px;
  border-radius: 18px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;

  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.nav-item.active {
  background: #eff7f6;
  color: var(--primary);
}


.nav-icon-wrapper {
    position: relative;
    display: inline-block;
    font-size: 1.4rem;
    line-height: 1;
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -10px;
    background: #e53e3e;
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    line-height: 1;
}