@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,.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;
  position: relative;
}
.page-title {
  font-size: 22px;
  font-weight: 800;
  color: #ff801a;
  margin: 100px 0 0;
}
.user-bar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 12px;
  gap: 10px
}
.user-name {
  font-size: 13px;
  color: #666;
}
.user-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
}
.user-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.new-chat-btn {
  background: #ff6b36;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 20px;
  color: #fff;
  cursor: pointer;
  position: absolute;
  bottom: -12%;
  right: 2%;
  z-index: 10;
  box-shadow: 2px 2px 5px 0 rgba(0,0,0,.1);
}
.new-chat-btn span {
  font-weight: 700;
  line-height: 50px;
}
.search-bar {
  margin-bottom: 16px;
}
.search-input {
  width: 100%;
  padding: 10px 16px;
  border: 1px solid #ff8728;
  border-radius: 20px;
  font-size: 13px;
  color: #333;
  background: #fff;
}
.category-tabs {
  display: flex;
  gap: 15px;
  margin-bottom: 16px;
  margin-left: 10px;
}
.category-tab {
  /* background: #fff; */
  color: #333;
  border: none;
  border-radius: 8px;
  background-color: transparent;
  /* padding: 8px 16px; */
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
}
.category-tab.active {
  font-weight: 700;
  color: #ff801a;
  /* border: 1px solid #ff801a; */
}
.chat-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 100px;
}
.chat-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  margin-bottom: 10px;
}
.chat-card:last-child {
  margin-bottom: 0;
}
.menu-matching {
  border: 1px solid #ff801a;
  font-weight: 700;
  color: #ff801a;
  flex-direction: column;
  align-items: flex-start;
}
.chat-card-thumb {
  width: 50px;
  height: 50px;
  background: #d9d9d9;
  border-radius: 25px;
  overflow: hidden;
}
.chat-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.chat-card-info {
  flex: 1;
}
.chat-card-title {
  font-size: 14px;
  font-weight: 700;
  color: #333;
}
.chat-card-desc {
  font-size: 12px;
  color: #666;
}
.chat-card-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  min-width: 70px;
}
.chat-card-time {
  font-size: 13px;
  color: #666;
}
.chat-card-status {
  font-size: 13px;
  font-weight: 700;
  color: #484848;
}
.chat-card-status.menu {
  color: #ff6b36;
}
.chat-card-unread {
  background: #ff6b36;
  color: #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 1.5em;
  font-size: 13px;
  font-weight: 700;
  margin-top: 2px;
}
.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;
}
