@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 84px 20px;
}
.page-title {
  font-size: 22px;
  font-weight: 800;
  color: #ff801a;
  margin: 100px 0 24px 0;
}
.section-title {
  font-size: 16px;
  font-weight: 700;
  color: #ff801a;
  margin: 0 0 8px;
}
.profile-section {
  margin-bottom: 24px;
}
.profile-card {
  background: #fff;
  border: 1px solid #ff801a;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  margin-bottom: 8px;
}
.profile-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}
.profile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.profile-info {
  flex: 1;
}
.profile-nickname-label {
  font-size: 15px;
  font-weight: 600;
  color: #333;
}
.profile-nickname {
  font-size: 13px;
  font-weight: 500;
  color: #333;
}
.profile-edit {
  font-size: 13px;
  color: #616161;
  cursor: pointer;
}
.profile-survey {
  font-size: 13px;
  color: #616161;
  margin-left: 10px;
}
.app-settings-section,
.personal-limits-section,
.etc-section {
  margin-bottom: 24px;
}
.settings-card {
  background: #fff;
  border: 1px solid #ff801a;
  border-radius: 15px;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.setting-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #333;
}
.setting-row > span, .settings-card > .setting-row {
  cursor: pointer;
}
.switch {
  display: inline-block;
  min-width: 48px;
  width: 48px;
  padding: 4px 0;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  box-sizing: border-box;
}
.switch.on {
  background: #ff801a;
  color: #fff;
  border: 1px solid #ff801a;
}
.switch.off {
  background: #fff;
  color: #ff801a;
  border: 1px solid #ff801a;
}
.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;
}
