/* ===== MOBILE FIX – ASAHI (CLEAN & FINAL) ===== */
@media screen and (max-width: 800px) {

  /* ===== CHO PHÉP SCROLL ===== */
  html, body {
    position: static !important;
    height: auto !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
  }

  #container,
  #contents,
  #main {
    position: static !important;
    height: auto !important;
    overflow: visible !important;
  }


  /* ===== HEADER MOBILE ===== */
  header.sh {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: rgba(68,141,179,0.95);
    z-index: 9000;
  }

  header.sh .logo img {
    height: 50px;
    margin: 15px;
  }

  /* ===== ĐẨY NỘI DUNG ===== */
  #contents {
    margin-top: 80px;
  }

  #main {
    padding: 15px !important;
  }

  /* ===== MENU MOBILE ===== */
  #menubar-s {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(0,0,0,0.9);
    z-index: 9999;
  }

  #menubar-s.open {
    display: block;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* Ẩn header PC */
  header.pc {
    display: none !important;
  }

}