* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body, html {
    scroll-behavior: smooth;
    font-family: "Sarabun", sans-serif;
    background: url('https://www.transparenttextures.com/patterns/palm-leaf.png') repeat;
    background-color: #e6f5e6;
  }
  
  
  /* Header & Burger */
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #2e7d32cc;
    padding: 15px 30px;
    color: white;
    position: fixed;
    width: 100%;
    z-index: 1002;
  }
  
  .logo {
    font-size: 24px;
    font-weight: bold;
  }
  
  .burger {
    font-size: 28px;
    cursor: pointer;
    display: none;
  }
  /* เมนู desktop ปกติ */
  .main-nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 20px;
  }
  
  .main-nav li {
    position: relative;
  }
  
  .main-nav li a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    display: block;
  }
  
  /* เมนูย่อยซ่อนก่อน */
  .dropdown-menu {
    display: none !important;       /* 🔥 บังคับซ่อน */
    position: absolute;
    top: 100%;
    left: 0;
    background: #2e7d32;
    flex-direction: column;
    list-style: none;
    min-width: 160px;
    z-index: 1002;
    border-radius: 4px;
    padding: 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  }
  
  /* แสดงเมื่อ hover */
  .dropdown:hover .dropdown-menu {
    display: flex !important;
  }
  

  /* Side Menu (hidden by default) */
.side-nav {
    position: fixed;
    top: 0;
    right: -250px; /* Start hidden */
    width: 250px;
    height: 100%;
    background: #2e7d32;
    padding-top: 80px;
    transition: right 0.3s ease;
    z-index: 1002;
  }
  
  .side-nav ul {
    list-style: none;
    padding: 0;
  }
  
  .side-nav ul li {
    border-bottom: 1px solid #fff2;
  }
  
  .side-nav ul li a {
    display: block;
    padding: 15px 20px;
    color: white;
    text-decoration: none;
    font-size: 18px;
  }
  
  /* Overlay */
  #overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: none;
    z-index: 1000;
  }
  
  /* Active state */
  .side-nav.active {
    right: 0;
  }
  
  #overlay.active {
    display: block;
  }
  
  .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    color: white;
    cursor: pointer;
  }
  
  /* ซ่อนเมนูย่อย */
  .submenu {
    display: none;
    list-style: none;
    padding-left: 20px;
  }
  
  .has-submenu.active .submenu {
    display: block;
  }
  
  /* ตกแต่งเพิ่ม */
  .submenu-toggle {
    cursor: pointer;
  }


/* 1 */
.block {
    height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(to bottom right, #b0eacd, #dff7e9);
    /* padding: 20px; */
    box-sizing: border-box;
    /* font-size: 24px; */
    font-size: clamp(18px, 1.8vw, 24px);
    padding: 0 10px;
    
  }
  
  .inner {
    width: 100%;
    text-align: center;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .inner img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 16px;
  }
  
  .inner h2 {
    /* font-size: 24px; */
    font-size: clamp(18px, 1.8vw, 24px);
    margin: 10px 0;
  }

  .inner h4 {
    /* font-size: 24px; */
    font-size: clamp(18px, 1.8vw, 24px);
    margin: 10px 0;
  }
  
  .inner p {
    /* font-size: 24px; */
    font-size: clamp(18px, 1.8vw, 24px);
    color: #333;
  }

    .inner ul li {
    /* font-size: 24px; */
    font-size: clamp(18px, 1.8vw, 24px);
    color: #333;
  }

/* 1 */


  /* .block {
    height: 100vh;
    display: flex;                ✅ เปิดใช้งาน Flexbox */
    /* flex-direction: column;
    align-items: center;          ✅ จัดแนวตั้ง */
   /*  justify-content: center;      ✅ จัดแนวนอน */
    /* font-size: 30px;
    text-align: center;
    background: linear-gradient(to bottom right, #b0eacd, #dff7e9);
    transition: transform 0.5s ease-in-out;
    padding: 0;                   ✅ ลบ padding-top เดิมที่ดันเนื้อหาลงล่าง 
  }*/

  .food-content{
    display: flex; 
    flex-direction: column;
    align-items: center;  
    justify-content: center; 
  }
  
  /* .block > .inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .block.product-grid{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    text-align: center;
    background: linear-gradient(to bottom right, #b0eacd, #dff7e9);
    transition: transform 0.5s ease-in-out;
  }
  
  .block:nth-child(even) {
    background: linear-gradient(to bottom right, #a2dab6, #f0fdf5);
  } */
  