@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a {
  text-decoration: none;
  color: #333;
}
html {
  user-select: none;
}

body {
  margin: 0;
  font-family: "Pretendard", "Inter", sans-serif;
  background: #f8f8f8;
  color: #333;
  min-width: 390px;
  max-width: 390px;
}
.app-header {
  position: fixed;
  width: 390px;
  height: 82px;
  background: #fff6ed;
  top: 0;
  left: 0;
  z-index: 999;
  box-shadow: 0px 2px 5px 0 rgba(0, 0, 0, 0.1);
}
.header-content {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  /* align-items:center; */
  width: 90%;
  margin: 0 auto;
  padding-top: 50px;
  /* height: 30px; */
}
.logo-group {
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-icon {
  width: 23px;
  height: 23px;
  background: linear-gradient(135deg, #ffa155 0%, #ff5e00 100%);
  border-radius: 4px;
  text-align: center;
}
.logo-icon span {
  color: #fff;
  font-size: 18px;
  line-height: 23.4px;
}
.logo-text {
  font-size: 16px;
  font-weight: 600;
  color: #5a5a5a;
}
.header-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}
.weather {
  display: flex;
  align-items: center;
  gap: 4px;
}
.weather-icon {
  width: 14px;
  height: 14px;
}
.weather-icon span {
  font-size: 14px;
}
.weather-text {
  font-size: 13px;
  color: #666;
}
.notification-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  color: #ff801a;
}
main {
  padding: 0 20px;
}
.page-title {
  font-size: 22px;
  font-weight: 800;
  color: #ff801a;
  margin: 100px 0 24px 0;
}
.select-group {
  margin-bottom: 24px;
}
.select-title {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
}
.select-options {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: space-between;
}

.select-btn {
  background: #fff;
  color: #333;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 10px 10px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  min-width: 80px;
  display: flex;
  justify-content: center;
}
.people {
  padding: 10px 32px;
}
.select-btn.active {
  background: #ff801a;
  color: #fff;
  border: 1px solid #ff801a;
}
.select-btn span {
  font-size: 15px;
}

.action-btn {
  background: #fff;
  border: 1px solid #ff801a;
  border-radius: 10px;
  padding: 10px 0;
  color: #ff801a;
  font-weight: 700;
  font-size: 16px;
}
.action-btn:active {
  background: #ff801a;
  color: #fff;
  border-color: #ff801a;
}
.action-btn.active {
  background: #ff801a;
  color: #fff;
  border-color: #ff801a;
}

.recommend-result {
  margin-bottom: 100px;
}
.result-title {
  font-size: 16px;
  font-weight: 700;
  color: #ff801a;
  margin-bottom: 12px;
}
.recommend-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.recommend-item {
  background: #fff;
  border: 1px solid #ff801a;
  border-radius: 10px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}
.menu-name {
  font-size: 20px;
  font-weight: 700;
}
.menu-info {
  font-size: 14px;
  color: #333;
}
.menu-select {
  background: #ff801a;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}
.tab-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 390px;
  height: 80px;
  background: #fff;
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-top: 1px solid #eee;
  box-shadow: 0px -2px 5px 0 rgba(0, 0, 0, 0.1);
}
.tab-bar-item {
  background: none;
  border: none;
  font-size: 14px;
  font-weight: 700;
  color: #333;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tab-bar-item.active {
  color: #ff6b36;
}

/* 맞춤 메뉴 보기 토글 버튼 */
#custom-toggle-btn {
  cursor: pointer;
  background: #fff;
  color: #ff7a00;
  border: 1px solid #ff7a00;
  transition: background 0.2s, color 0.2s;
}
#custom-toggle-btn.active {
  background: #ff7a00;
  color: #fff;
  border: 1px solid #ff7a00;
}
