
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;        
  box-sizing: border-box;
  font-family: sans-serif;
  background: white;   
}

*, *::before, *::after {
  box-sizing: inherit;
}

/* Mobile first */
body {
  max-width: 430px;    
  margin: 0 auto;
}



/* filter bar */
.filter-bar {
  position: sticky;
  top: 0;
  background: white;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 10px;
}

.filter-bar button {
  flex: 0 0 auto;
  padding: 8px 14px;
  border: none;
  background: #f5f5f5;
  border-radius: 20px;
  font-size: 14px;
}

.filter-bar button.active {
  background: #06A4FF;
  color: white;
}

/* menu section */
.menu-section {
    background-color: #BDCFE2;
    border-radius: 30px;
    margin-top: 30px;
    margin-bottom: 45px;
   padding-bottom: 11px;
}

.section-title{
    margin-left: 27px;
    padding-top: 28px;
    font-weight: 400;
}

.menu-item{
    background-color: #FEFCFC;
    display: flex;
    margin: 12px 27px;
    border-radius:15px;
    height: 125px;
}

.menu-info{
    width:100%;
}


.item-name{
    font-size: 16px;
    font-weight: 600;
}
.price{
    font-size: 20px;
    font-weight: 600;
    text-align: right;
    margin-right: 12px;
    margin-top: -5px;

}


.menu-item img {
  width: 80px;
  height: 103px;
  object-fit: cover; /* 이미지 찌그러지지 않고 컨테이너 채우기 */
  border-radius: 6px; /* 선택 사항: 모서리 둥글게 */
  margin:11px;
}
