/* =========================
   TABLET VIEW (POS SCREENS)
   ========================= */

@media (min-width: 768px) and (max-width: 1200px){

  .container{
    width: min(100%, calc(100% - 32px));
  }

  /* HEADER */
  .header-inner{
    padding:12px 0;
  }

  .brand-logo{
    width:52px;
    height:52px;
  }

  .brand-name{
    font-size:18px;
  }

  .nav{
    gap:14px;
    font-size:14px;
  }

  /* ORDER PAGE */
  .order-page-shell{
    padding:20px 0 36px;
  }

  .order-page-title{
    font-size:28px;
  }

  .order-page-sub{
    font-size:15px;
  }

  /* SEARCH BAR */
  .order-search-card{
    position: sticky;
    top: 72px;
    z-index: 40;
    background: #fff;
    padding:14px;
  }

  /* LAYOUT */
  .menu-layout{
    display:grid;
    grid-template-columns: 240px 1fr;
    gap:16px;
  }

  /* SIDEBAR */
  .menu-sidebar{
    position: sticky;
    top: 120px;
    height: fit-content;
    max-height: calc(100vh - 140px);
    overflow-y: auto;
  }

  .menu-category-tab{
    padding:10px;
  }

  .menu-category-thumb{
    width:48px;
    height:48px;
  }

  .menu-category-name{
    font-size:14px;
  }

  /* GRID */
  .menu-items-grid{
    grid-template-columns: repeat(2, 1fr);
    gap:16px;
  }

  /* CARD */
  .menu-product-card{
    border-radius:16px;
    overflow:hidden;
  }

  .menu-product-image{
    height:180px;
  }

  .menu-product-body{
    padding:14px;
  }

  .menu-product-title{
    font-size:17px;
  }

  .menu-product-desc{
    font-size:14px;
  }

  .menu-new-price{
    font-size:17px;
  }

  /* BUTTONS */
  .btn{
    padding:14px 18px;
    font-size:15px;
  }

  .btn-small{
    padding:10px 12px;
    font-size:14px;
  }

  /* QTY BOX */
  .qty-input{
    height:42px;
    font-size:16px;
  }

  /* FLOATING CART */
  .floating-cart-btn{
    right:20px;
    bottom:20px;
    padding:14px 16px;
    border-radius:14px;
  }

  /* DISPLAY SCREEN (CUSTOMER DISPLAY) */
  .display-shell{
    padding:24px;
  }

  .display-item-row{
    padding:16px 18px;
  }

  .display-item-name{
    font-size:22px;
  }

  .display-item-meta{
    font-size:16px;
  }

  .display-item-right{
    font-size:22px;
  }

  .display-total-bar{
    font-size:26px;
    padding:18px;
  }
  .counter-qty-input{
    height:42px;
    font-size:18px;
  }

}