.mobile-explore-panel{
  position:fixed;
  top:60px;
  left:0;
  width:95vw;
  max-width:600px;
  max-height:80vh;
  overflow-y:auto;
  background:#f5f1e8;
  border:1px solid #e0dcd2;
  border-radius:6px;
  box-shadow:0 6px 18px rgba(0,0,0,.25);
  z-index:11000;
  opacity:0;
  transform:scaleY(.98);
  transition:opacity .25s ease,transform .25s ease;
  pointer-events:none;
}

.mobile-explore-panel.show{
  opacity:1;
  transform:scaleY(1);
  pointer-events:auto;
}

.mobile-explore-backdrop{
  position:fixed;
  top:60px;
  left:0;
  width:100vw;
  height:100vh;
  background:#0006;
  z-index:10999;
  opacity:0;
  transition:opacity .25s ease;
}

.mobile-explore-backdrop.show{
  opacity:1;
}