#mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;            /* 確保能延伸到螢幕底 */
    overflow-y: auto;     /* 垂直捲動 */
    /* z-index: 9999; */
    background-color: #fff;
    padding-bottom: 20px; /* 保留空間避免文字貼底 */
    height: -webkit-fill-available;  /* iOS 特殊用法 */
    box-sizing: border-box;
    /* min-height: 100vh; 若想維持至少一個螢幕高度，可試用 min-height */
    /* 移除 max-height，讓它可隨內容更高 */
  }
    html, body {
    /* height: 100%;  */ 
  }