/* แก้ปัญหาเมนูมือถือที่ยาวเกิน */
.site-mobile-menu-body {
    max-height: 80vh;
    overflow-y: auto;
    overflow-x: hidden;
}

.site-mobile-menu-body ul {
    max-height: none;
}

/* ปรับ scrollbar สำหรับมือถือ */
.site-mobile-menu-body::-webkit-scrollbar {
    width: 4px;
}

.site-mobile-menu-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

.site-mobile-menu-body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

/* เพิ่มความนุ่มนวล */
.site-mobile-menu-body {
    scroll-behavior: smooth;
}
