:root {
  --ink-900: #101114;
  --ink-700: #2b2f3a;
  --ink-500: #6c7280;
  --line-200: #e8e8ee;
  --line-300: #d9dbe3;
  --bg-100: #ffffff;
  --bg-200: #f7f7f9;
  --bg-300: #f2f3f6;
  --brand-600: #3d5199;
  --brand-700: #2b3d8c;
  --accent-600: #0b1c6f;
  --accent-700: #0000bb;
  --dark-900: #17181d;
  --dark-800: #20232a;
  --dark-700: #2b2f37;
}

.header-font {
  font-family: "Pretendard", "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  color: var(--ink-900);
  background: var(--bg-100);
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-width: 1200px;
}

.container {
  width: 1200px;
  margin: 0 auto;
}

.topbar {
  height: 70px;
  background: var(--bg-100);
}

.topbar .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  height: 24px;
}

.logo img {
  height: 22px;
}

.top-links {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--ink-700);
  position: relative;
}

.top-links .divider {
  width: 1px;
  height: 10px;
  background: var(--line-300);
}

.user-trigger {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  /*26.02.07*/
  width: 77.8px;
  height: 16px;
  appearance: none;
  -webkit-appearance: none;
  overflow: hidden;
  color:#000;
  letter-spacing: -0.01em;
}

.menu-trigger {
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 26px;
}

.menu-icon {
  width: 23px;
  height: 17px;
  vertical-align: middle;
}

.user-menu {
  position: absolute;
  top: 28px;
  right: 15px;
  width: 137px;
  background: #ffffff;
  border: 1px solid #dadada;
  border-radius: 10px;
  padding: 10px 16px 8px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  display: none;
  z-index: 20;
}

.user-menu.is-open {
  display: block;
}

.user-menu-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.user-menu-balance {
  background: #f6f6f6;
  border-radius: 10px;
  padding: 8px;
  text-align: center;
}

.user-menu-balance-title {
  font-size: 13px;
  font-weight: 600;
  color: #1a1b1f;
  letter-spacing: -0.65px;
}

.user-menu-balance-value {
  font-size: 12px;
  font-weight: 700;
  color: #2a47b1;
  letter-spacing: -0.48px;
}

.user-menu-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.user-menu-item {
  background: #f6f6f6;
  border-radius: 10px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
  font-size: 13px;
  font-weight: 600;
  color: #1a1b1f;
  letter-spacing: -0.65px;
}

.user-menu-count {
  font-size: 12px;
  font-weight: 700;
  color: #2a47b1;
  letter-spacing: -0.48px;
}

.user-menu-arrow {
  width: 11px;
  height: 11px;
  transform: rotate(43deg);
}

.user-menu-footer {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 500;
  color: #1a1b1f;
  letter-spacing: -0.36px;
}

.user-menu-divider {
  width: 1px;
  height: 10px;
  background: #dadada;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 50;/*수정전 zindex*/
  z-index: 100000;
}

.menu-overlay.is-open {
  display: flex;
}

.menu-overlay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.menu-panel {
  position: relative;
  width: 1080px;
  height: 715px;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  z-index: 1;
}

.menu-panel-header {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}

.menu-panel-title {
  font-size: 22px;
  font-weight: 700;
  color: #1a1b1f;
}

.menu-panel-close {
  width: 36px;
  height: 36px;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}

.menu-panel-close img {
  width: 36px;
  height: 36px;
  display: block;
}

.menu-panel-divider {
  height: 1px;
  background: #e5e5e5;
}

.menu-panel-tabs {
  height: 58px;
  background: #1a1b1f;
  color: #ffffff;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.02em
}

.menu-panel-body {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  height: calc(100% - 141px);
}

.menu-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 20px 0;
  font-size: 18px;
  color: #3d3d3d;
  line-height: 41px;
  letter-spacing: -0.36px;
}

.menu-col + .menu-col {
  border-left: 1px solid #e5e5e5;
}

.menu-col-highlight {
  background: #fafafa;
}

.menu-col-strong {
  font-weight: 700;
  color: #000000;
  text-decoration: underline;
}

.search-area {
  position: relative;
}

.search-wrap {
  display: flex;
  gap: 10px;
  align-items: center;
}

.search-wrap input {
  border: none;
  outline: none;
  flex: 1;
  background: transparent;
}

.search-icon {
  display: grid;
  place-items: center;

}

.search-icon img {
  width: 60%;
  aspect-ratio: 1 / 1; /* 정사각형 */
  object-fit: cover;
}

.search-panel {
  position: absolute;
  /* left: 0; */
  background: #ffffff;
  display: block;
  z-index: 5;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.search-panel.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(10px);
}

.sub-gnb {
  position: relative;
}

.sub-gnb .container {
  position: relative;
}

.search-area {
  position: absolute;
  left: 50%;
  top: 16px;
  transform: translateX(-50%);
  width: 600px;
  margin: 0;
  z-index: 1;
}

.search-wrap {
  width: 600px;
  height: 40px;
  border-radius: 32px;
  border: 1px solid #dddddd;
  background: #fafafa;
  padding: 0 5px 0 20px;
  margin: 0;
}

.search-wrap input {
  font-size: 15px;
}

.search-icon {
  width: 30px;
  height: 30px;
}

.search-panel {
  /* top: 52px; */
  width: 600px;
  border: 1px solid #ddd;
  border-radius: 20px;
  padding: 20px 24px;
  background: #fff;
}

.search-panel.is-active {
  height: 505px;
}

.top-links {
  gap: 12px;
}

.top-links a {
  color: #000000;
  text-decoration: none;
  font-weight: 400;
}

.top-links .divider {
  background: rgba(118, 123, 141, 0.7);
}

.search-panel-section {
  margin-bottom: 16px;
}

.search-panel-title {
  font-size: 14px;
  font-weight: 600;
  color: #191919;
  letter-spacing: 0.14px;
  margin-bottom: 8px;
}

.search-keyword-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.search-keyword-row .search-panel-title {
  margin-bottom: 0;
  white-space: nowrap;
}

.search-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: #6d6d6d;
  font-size: 14px;
  letter-spacing: -0.28px;
}

.search-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.search-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  height: 28px;
  border: 1px solid #d3d3d3;
  border-radius: 20px;
  color: #6d6d6d;
  font-size: 14px;
  letter-spacing: -0.56px;
  background: #ffffff;
  white-space: nowrap;
}

.search-chip-close {
  width: 8px;
  height: 8px;
  display: block;
}

.search-suggest-list {
  margin-top: 8px;
  height: 202px;
  overflow-y: auto;
  position: relative;
  padding-right: 16px;
  scrollbar-width: thin;
  scrollbar-color: #bdbdbd transparent;
}

.search-suggest-list::-webkit-scrollbar {
  width: 6px;
}

.search-suggest-list::-webkit-scrollbar-track {
  background: transparent;
}

.search-suggest-list::-webkit-scrollbar-thumb {
  background: #bdbdbd;
  border-radius: 3px;
}

.search-suggest-item {
  font-size: 16px;
  color: #191919;
  line-height: 27px;
}

.search-suggest-item .hl {
  color: #ff3c3c;
  font-weight: 600;
}

.search-suggest-divider {
  height: 1px;
  background: #e5e5e5;
  margin: 16px 0 10px;
}

.search-suggest-block .search-suggest-list {
  display: none;
}

.search-panel.is-active .search-suggest-list {
  display: block;
}

.footer {
  background: #ffffff;
  color: #2b2b2b;
  font-size: 12px;
}

.footer-topbar {
  background: #f3f4f5;
  height: 60px;
  display: flex;
  align-items: center;
}

.footer-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 52px;
  font-size: 14px;
  color: #000000;
}

.footer-links .strong {
  font-weight: 700;
}

.footer-family {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #dedede;
  padding: 6px 12px;
  font-size: 12px;
  color: #000000;
  background: #ffffff;
  min-width: 140px;
  justify-content: space-between;
}

.footer-family img {
  width: 14px;
  height: 14px;
  display: block;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px 0 16px;
  gap: 40px;
}

.footer-brand-logo {
  width: 100px;
  height: 21px;
  object-fit: contain;
}

.footer-company {
  margin-top: 16px;
  color: #2b2b2b;
  font-size: 12px;
}

.footer-biz-check {
  display: inline-block;
  margin-left: 10px;
  background: #acacac;
  color: #ffffff;
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 4px;
}

.footer-address {
  margin-top: 6px;
  color: #2b2b2b;
  font-size: 12px;
}

.footer-copy {
  margin-top: 10px;
  color: #2b2b2b;
  font-size: 12px;
}

.footer-disclaimer {
  margin-top: 12px;
  color: #898989;
  font-size: 12px;
  max-width: 795px;
  line-height: 1.4;
}

.footer-right {
  text-align: right;
}

.footer-phone {
  font-size: 22px;
  color: #2b2b2b;
}

.footer-social {
  margin-top: 10px;
  display: flex;
  justify-content: flex-end;
  gap: 6px;
}

.footer-social .social-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #acacac;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logos {
  margin-top: 8px;
  padding-bottom: 24px;
}

.footer-logos img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
/*26.02.09*/
.user-menu{
  padding: 20px 16px 10px 16px;
  box-sizing: border-box;
  transform: translateX(-14px);
}
.user-menu-card{
  gap:4px;
}
.user-menu-balance-title {
  font-size: 13px;
  line-height: 22px;
  letter-spacing: -0.05em;
  transform: translateY(2px)
}
.user-menu-balance-value{
  line-height: 21px;
  letter-spacing: -0.04em;
  transform: translateY(-2px);
}
.user-menu-footer{
  line-height: 22px;
  gap:8px;
}
.user-menu-balance{
  padding: 5px 8px 4px 8px;
}