
/* 3-column grid layout for menu categories on desktop */
@media screen and (min-width: 1024px) {
  #menu {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .menu-category {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0;
  }

  .menu-category h2 {
    grid-column: 1 / -1;
    font-size: 24px;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 2px solid #8B0000;
    color: #8B0000;
  }

  .menu-item {
    margin: 0;
    padding: 20px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 10px rgba(0,0,0,0.05);
    transition: transform 0.2s;
  }

  .menu-item:hover {
    transform: translateY(-4px);
  }

  .item-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
  }

  .item-info {
    flex: 1;
  }

  .item-name {
    font-size: 18px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 4px;
  }

  .item-desc {
    font-size: 15px;
    color: #666;
    margin-bottom: 8px;
  }

  .item-price {
    font-size: 16px;
    font-weight: bold;
    color: #8B0000;
    margin-top: auto;
  }
}
