@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;
}
.section {
  box-shadow: 2px 2px 5px 0 rgba(0,0,0,.1);
}

.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,.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;
}
.tab-section {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 100px 0 16px 0;
  text-align: center;
}


.tab {
  display: flex;
  gap: 2px;
  padding: 8px 24px;
  border: none;
  border-radius: 19px;
  font-size: 13px;
  font-weight: 700;
  background: #f2f2f7;
  color: #ff801a;
  cursor: pointer;
}
.tab.active {
  background: #ff801a;
  color: #fff;
}
.tab-section span {
  font-size: 14px;
}
.tab-section span.current-time {
  margin-left: auto;
  color: #666;
  font-size: 13px;
}
.recommend-banner {
  background: #fff2e5;
  border: 1px solid #ff801a;
  border-radius: 18px;
  padding: 20px 16px;
  margin-bottom: 15px;
}
.recommend-banner h2 {
  color: #ff801a;
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 12px 0;
}
.recommend-list {
  display: flex;
  gap: 12px;
}
.recommend-item {
  width: 70px;
  height: 70px;
  background: #d9d9d9;
  border: 1px solid #ff801a;
  border-radius: 12px;
  overflow: hidden;
}
.recommend-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.popular-menu {
  background: #fff;
  border: 1px solid #ff801a;
  border-radius: 18px;
  padding: 20px 16px;
  margin-bottom: 15px;
}
.popular-menu h2 {
  color: #333;
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 12px 0;
}
.popular-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
}
.popular-item {
  overflow: hidden;
  width: 72px;
  height: 72px;
  background: #d9d9d9;
  border-radius: 14px;
  border: 1px solid #ff801a;
}
.popular-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.category-menu {
  background: #fff;
  border: 1px solid #ff801a;
  border-radius: 18px;
  padding: 20px 16px;
  margin-bottom: 90px;
}
.category-menu h2 {
  color: #333;
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 12px 0;
}
.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.category-item {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
  border: 1px solid #ff801a;
  overflow: hidden;
  position: relative;
}
.category-item::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.3;
  position: absolute;
  left: 0;
  top: 0;
}
.category-item span {
  font-size: 14px;
  font-weight: 700;
  position: absolute;
  z-index: 10;
}
.category-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.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,.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;
}
