/* Bottom bar for mobile - Instagram style */
.bottom-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: 60px;
  background: #fff;
  border-top: 1px solid #e0e0e0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 10000;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.04);
}
.bottom-bar a {
  flex: 1;
  text-align: center;
  color: #8d6748;
  text-decoration: none;
  font-size: 1.7rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}
.bottom-bar a.active,
.bottom-bar a:hover {
  color: #bfa074;
}
.bottom-bar .icon {
  font-size: 1.7rem;
  display: block;
}
.bottom-bar .label {
  font-size: 0.8rem;
  margin-top: 2px;
  font-weight: 600;
}
@media (min-width: 900px) {
  .bottom-bar {
    display: none;
  }
}
