/* ===== Mobile toolbar & drawer ===== */
.mobile-toolbar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 8px;
  gap: 8px;
  z-index: 60;
}
.mtb__btn {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  text-align: center;
}
@media (min-width: 901px) {
  .mobile-toolbar {
    display: none;
  }
}
.mobile-drawer {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: #fff;
  max-height: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  transition: max-height 0.25s ease;
  z-index: 49;
}
.mobile-drawer.is-open {
  max-height: 60vh;
}
.menu--mobile {
  list-style: none;
  padding: 12px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.menu--mobile a {
  padding: 12px;
  border-radius: 10px;
}
