:root {
  --index-common-blue: #0056e0;
  --index-common-blue-deep: #003ea5;
  --index-common-header-height: 82px;
  --index-common-ease: cubic-bezier(.22, .61, .36, 1);
}

body.has-index-common.menu-is-open {
  overflow: hidden;
}

.index-common-header,
.index-common-mobile-menu,
.index-common-footer,
.index-common-quick,
.index-common-contact-bar {
  font-family: var(--font-sans, "Pretendard", "Malgun Gothic", Arial, sans-serif);
  letter-spacing: -.02em;
  box-sizing: border-box;
}

.index-common-header *,
.index-common-header *::before,
.index-common-header *::after,
.index-common-mobile-menu *,
.index-common-mobile-menu *::before,
.index-common-mobile-menu *::after,
.index-common-footer *,
.index-common-footer *::before,
.index-common-footer *::after,
.index-common-quick *,
.index-common-quick *::before,
.index-common-quick *::after,
.index-common-contact-bar *,
.index-common-contact-bar *::before,
.index-common-contact-bar *::after {
  box-sizing: border-box;
}

.index-common-header a,
.index-common-mobile-menu a,
.index-common-footer a,
.index-common-quick a,
.index-common-contact-bar a {
  color: inherit;
  text-decoration: none;
}

.index-common-header button,
.index-common-mobile-menu button,
.index-common-quick button {
  margin: 0;
  padding: 0;
  color: inherit;
  border: 0;
  background: none;
  font: inherit;
  cursor: pointer;
}

.index-common-header :where(a, button):focus-visible,
.index-common-mobile-menu :where(a, button):focus-visible,
.index-common-footer a:focus-visible,
.index-common-quick :where(a, button):focus-visible,
.index-common-contact-bar a:focus-visible {
  outline: 3px solid var(--index-common-blue);
  outline-offset: 3px;
}

.has-index-common .index-common-header.site-header {
  position: fixed;
  z-index: 1200;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--index-common-header-height);
  padding: 0 30px;
  display: grid;
  grid-template-columns: 215px minmax(660px, 1fr) 230px;
  align-items: center;
  gap: 20px;
  color: #fff;
  background: transparent;
  box-shadow: none;
  transition: color .28s ease, background-color .28s ease, box-shadow .28s ease;
}

.has-index-common .index-common-header.is-scrolled,
.has-index-common .index-common-header.menu-open,
.has-index-common .index-common-header.lnb-open {
  color: #111;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 1px 0 rgba(0, 0, 0, .06);
}

.has-index-common .index-common-header .brand {
  position: relative;
  z-index: 1202;
  width: 205px;
  height: auto;
  display: block;
}

.has-index-common .index-common-header .brand img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  transition: filter .25s ease;
}

.has-index-common .index-common-header .brand img.brand-logo--mobile {
  display: none;
}

.has-index-common .index-common-header:not(.is-scrolled):not(.menu-open):not(.lnb-open) .brand img {
  filter: brightness(0) invert(1);
}

.has-index-common .index-common-header .desktop-nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.3vw, 42px);
  white-space: nowrap;
}

.has-index-common .index-common-header .desktop-nav > a {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  color: inherit;
  font-size: 15px;
  font-weight: 700;
}

.has-index-common .index-common-header .desktop-nav > a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .3s var(--index-common-ease);
}

.has-index-common .index-common-header .desktop-nav > a:hover::after,
.has-index-common .index-common-header .desktop-nav > a:focus-visible::after {
  transform: scaleX(1);
}

.has-index-common .index-common-header .desktop-lnb {
  position: absolute;
  z-index: 1201;
  top: 100%;
  right: 0;
  left: 0;
  width: 100%;
  color: #111;
  border-top: 1px solid #e9edf3;
  background: rgba(255, 255, 255, .99);
  box-shadow: 0 22px 42px rgba(0, 35, 90, .12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity .22s ease, visibility .22s ease, transform .22s var(--index-common-ease);
}

.has-index-common .index-common-header.lnb-open .desktop-lnb {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.has-index-common .index-common-header .desktop-lnb__inner {
  width: min(1120px, calc(100% - 60px));
  margin: 0 auto;
  padding: 34px 0 40px;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 22px;
}

.has-index-common .index-common-header .desktop-lnb__group {
  min-width: 0;
}

.has-index-common .index-common-header .desktop-lnb__title {
  padding-bottom: 6px;
  display: block;
  color: #071e44;
  border-bottom: none;
  font-size: 15px;
  font-weight: 850;
}

.has-index-common .index-common-header .desktop-lnb__links {
  padding-top: 6px;
  display: grid;
  gap: 9px;
}

.has-index-common .index-common-header .desktop-lnb__links a {
  color: #5f6876;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.45;
  transition: color .28s ease, transform .28s ease;
}

.has-index-common .index-common-header .desktop-lnb__links a:hover,
.has-index-common .index-common-header .desktop-lnb__links a:focus-visible,
.has-index-common .index-common-header .desktop-lnb__title:hover,
.has-index-common .index-common-header .desktop-lnb__title:focus-visible {
  color: var(--index-common-blue);
}

.has-index-common .index-common-header .desktop-lnb__links a:hover,
.has-index-common .index-common-header .desktop-lnb__links a:focus-visible {
  transform: translateX(3px);
}

.has-index-common .index-common-header .header-utility {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  white-space: nowrap;
  font-weight: 700;
}

.has-index-common .index-common-header .header-utility a {
  min-width: 120px;
  padding: 11px 20px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  border: 1px solid var(--index-common-blue);
  border-radius: 999px;
  background: var(--index-common-blue);
  box-shadow: 0 8px 20px rgba(0, 86, 224, .2);
  font-size: 13px;
  line-height: 1;
}

.has-index-common .index-common-header .header-utility a:hover,
.has-index-common .index-common-header .header-utility a:focus-visible {
  border-color: var(--index-common-blue-deep);
  background: var(--index-common-blue-deep);
  transform: translateY(-2px);
}

.has-index-common .index-common-header .menu-toggle,
.has-index-common .index-common-mobile-menu {
  display: none;
}

.has-index-common .index-common-footer.footer {
  position: relative;
  padding: 0;
  color: #fff;
  background: #000;
}

.has-index-common .index-common-footer .footer-main {
  width: min(1365px, calc(100% - 60px));
  margin: 0 auto;
  padding: 74px 0 88px;
}

.has-index-common .index-common-footer .footer-brandline {
  padding-bottom: 35px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 32px;
  border-bottom: 1px solid #282828;
}

.has-index-common .index-common-footer .footer-brandline img {
  width: 245px;
  height: auto;
  display: block;
}

.has-index-common .index-common-footer .footer-brandline p {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
}

.has-index-common .index-common-footer .footer-brandline > a {
  padding: 10px 25px;
  color: var(--index-common-blue);
  border: 1px solid var(--index-common-blue);
  border-radius: 7px;
  font-size: 13px;
}

.has-index-common .index-common-footer .footer-columns {
  padding: 38px 0;
  display: grid;
  grid-template-columns: .95fr 1.15fr .9fr;
  gap: 75px;
  border-bottom: 1px solid #282828;
}

.has-index-common .index-common-footer .footer-about > p {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.65;
}

.has-index-common .index-common-footer .footer-about small {
  margin-top: 16px;
  display: block;
  color: #777;
  font-size: 10px;
}

.has-index-common .index-common-footer h3 {
  margin: 0;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
}

.has-index-common .index-common-footer .footer-company dl {
  margin: 28px 0 0;
  display: grid;
  gap: 15px;
  font-size: 12px;
}

.has-index-common .index-common-footer .footer-company dl > div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 10px;
}

.has-index-common .index-common-footer .footer-company dt {
  color: #aaa;
}

.has-index-common .index-common-footer .footer-company dd {
  margin: 0;
}

.has-index-common .index-common-footer .footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
}

.has-index-common .index-common-footer .footer-links h3 {
  margin-bottom: 25px;
}

.has-index-common .index-common-footer .footer-links a {
  margin-top: 16px;
  display: block;
  font-size: 12px;
}

.has-index-common .index-common-footer .footer-links a:first-of-type {
  color: var(--index-common-blue);
}

.has-index-common .index-common-footer .footer-bottom {
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  color: #aaa;
  font-size: 11px;
}

.has-index-common .index-common-footer .footer-bottom > div {
  display: flex;
  gap: 28px;
}

.has-index-common .index-common-footer .footer-bottom .privacy {
  color: var(--index-common-blue);
}

.has-index-common .index-common-footer .footer-bottom b {
  padding: 10px 20px;
  color: #fff;
  border: 1px solid #666;
  border-radius: 7px;
}

.has-index-common .index-common-quick.chat-widget {
  position: fixed;
  z-index: 1080;
  right: 30px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  transition: opacity .2s, transform .2s;
}

.has-index-common .index-common-quick.is-over-footer {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

.has-index-common .index-common-quick .chat-hint {
  position: relative;
  width: 335px;
  min-height: 84px;
  padding: 20px 42px 18px 24px;
  display: grid;
  gap: 5px;
  color: #111;
  border: 0;
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 14px 35px rgba(0, 0, 0, .12);
  text-align: left;
}

.has-index-common .index-common-quick .chat-hint strong {
  font-size: 13px;
}

.has-index-common .index-common-quick .chat-hint span {
  position: relative;
  padding-left: 12px;
  color: #777;
  font-size: 11px;
}

.has-index-common .index-common-quick .chat-hint span::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #4b80ff;
}

.has-index-common .index-common-quick .chat-hint i {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: #ddd;
  font-style: normal;
  font-size: 14px;
}

.has-index-common .index-common-quick .chat-hint.is-hidden {
  display: none;
}

.has-index-common .index-common-quick .quick-menu-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.has-index-common .index-common-quick .quick-menu-button {
  position: relative;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .28);
}

.has-index-common .index-common-quick .quick-menu-button::before {
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  padding: 7px 10px;
  color: #fff;
  border-radius: 6px;
  opacity: 0;
  background: rgba(17, 17, 17, .92);
  content: attr(data-label);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
  transform: translate(6px, -50%);
  transition: opacity .28s ease, transform .28s ease;
}

.has-index-common .index-common-quick .quick-menu-button:hover::before,
.has-index-common .index-common-quick .quick-menu-button:focus-visible::before {
  opacity: 1;
  transform: translate(0, -50%);
}

.has-index-common .index-common-quick .quick-menu-button--phone {
  background: var(--index-common-blue);
}

.has-index-common .index-common-quick .quick-menu-button--kakao {
  color: #191919;
  background: #fee500;
}

.has-index-common .index-common-quick .quick-menu-button--blog {
  background: #03c75a;
}

.has-index-common .index-common-quick .quick-menu-button--inquiry {
  background: #171717;
}

.has-index-common .index-common-quick .quick-menu-button svg {
  width: 29px;
  max-width: 100%;
  display: block;
  fill: currentColor;
}

.has-index-common .index-common-contact-bar {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .has-index-common .index-common-header:hover {
    color: #111;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 1px 0 rgba(0, 0, 0, .04);
  }

  .has-index-common .index-common-header:not(.is-scrolled):not(.menu-open):not(.lnb-open):hover .brand img {
    filter: none;
  }
}

@media (max-width: 1240px) {
  .has-index-common .index-common-header.site-header {
    grid-template-columns: 180px 1fr 190px;
    gap: 12px;
    padding: 0 22px;
  }

  .has-index-common .index-common-header .brand {
    width: 180px;
  }

  .has-index-common .index-common-header .desktop-nav {
    gap: 18px;
  }

  .has-index-common .index-common-header .desktop-nav > a {
    font-size: 13px;
  }
}

@keyframes index-common-mobile-lnb-enter {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1100px) {
  :root {
    --index-common-header-height: 72px;
  }

  .has-index-common .index-common-header .desktop-nav,
  .has-index-common .index-common-header .desktop-lnb,
  .has-index-common .index-common-header .header-utility {
    display: none;
  }

  .has-index-common .index-common-header.site-header {
    height: var(--index-common-header-height);
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
  }

  .has-index-common .index-common-header .brand {
    width: 148px;
  }

  .has-index-common .index-common-header .brand img.brand-logo--desktop {
    display: none;
  }

  .has-index-common .index-common-header .brand img.brand-logo--mobile {
    display: block;
  }

  .has-index-common .index-common-header .menu-toggle {
    position: relative;
    z-index: 1202;
    width: 44px;
    height: 44px;
    display: grid;
    align-content: center;
    gap: 6px;
  }

  .has-index-common .index-common-header .menu-toggle span {
    width: 31px;
    height: 2px;
    display: block;
    background: currentColor;
    transition: transform .32s var(--index-common-ease), opacity .2s;
  }

  .has-index-common .index-common-header .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .has-index-common .index-common-header .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .has-index-common .index-common-header .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .has-index-common .index-common-mobile-menu {
    position: fixed;
    z-index: 1195;
    inset: 0;
    display: block;
    overflow-y: auto;
    opacity: 0;
    background: #fff;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform .42s var(--index-common-ease), opacity .28s ease, visibility 0s linear .42s;
  }

  .has-index-common .index-common-mobile-menu.is-open {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
    transition-delay: 0s;
  }

  .has-index-common .index-common-mobile-menu .mobile-menu__inner {
    min-height: 100%;
    padding: 102px 20px 18px;
    display: flex;
    flex-direction: column;
  }

  .has-index-common .index-common-mobile-menu nav {
    display: block;
  }

  .has-index-common .index-common-mobile-menu .mobile-nav-group {
    border-bottom: 1px solid #edf0f4;
  }

  .has-index-common .index-common-mobile-menu .mobile-nav-toggle {
    width: 100%;
    min-height: 59px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    color: #111;
    font-size: 18px;
    font-weight: 800;
    text-align: left;
  }

  .has-index-common .index-common-mobile-menu .mobile-nav-toggle i {
    width: 9px;
    height: 9px;
    margin-right: 5px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translate(-2px, 2px);
    transition: transform .22s var(--index-common-ease);
  }

  .has-index-common .index-common-mobile-menu .mobile-nav-toggle[aria-expanded="true"] {
    color: var(--index-common-blue);
  }

  .has-index-common .index-common-mobile-menu .mobile-nav-toggle[aria-expanded="true"] i {
    transform: rotate(225deg) translate(-1px, 1px);
  }

  .has-index-common .index-common-mobile-menu .mobile-lnb {
    margin: 0 -4px 12px;
    padding: 13px 18px 15px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px 18px;
    border-radius: 10px;
    background: #f3f7fd;
  }

  .has-index-common .index-common-mobile-menu .mobile-lnb[hidden] {
    display: none;
  }

  .has-index-common .index-common-mobile-menu .mobile-lnb:not([hidden]) {
    animation: index-common-mobile-lnb-enter .28s var(--index-common-ease) both;
  }

  .has-index-common .index-common-mobile-menu .mobile-lnb a {
    min-height: 44px;
    display: flex;
    align-items: center;
    color: #566173;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
  }

  .has-index-common .index-common-mobile-menu .mobile-lnb a::before {
    content: "";
    width: 4px;
    height: 4px;
    margin-right: 8px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #9cb9e7;
  }

  .has-index-common .index-common-mobile-menu .mobile-shop-link {
    margin-top: auto;
    padding: 30px 0 24px;
    min-height: 44px;
    color: #111;
    font-size: 16px;
    font-weight: 700;
  }

  .has-index-common .index-common-mobile-menu .mobile-inquiry {
    position: relative;
    min-height: 114px;
    padding: 18px 58px 18px 20px;
    display: grid;
    align-content: center;
    gap: 9px;
    color: var(--index-common-blue);
    border-radius: 8px;
    background: #eef5ff;
  }

  .has-index-common .index-common-mobile-menu .mobile-inquiry strong {
    font-size: 16px;
  }

  .has-index-common .index-common-mobile-menu .mobile-inquiry span {
    color: #888;
    font-size: 13px;
    line-height: 1.65;
  }

  .has-index-common .index-common-mobile-menu .mobile-inquiry i {
    position: absolute;
    top: 50%;
    right: 20px;
    width: 29px;
    height: 29px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #dbe9ff;
    font-style: normal;
    transform: translateY(-50%);
  }

  .has-index-common .index-common-footer .footer-main {
    width: calc(100% - 36px);
    padding: 58px 0 12px;
  }

  .has-index-common .index-common-footer .footer-brandline {
    padding-bottom: 30px;
    display: block;
  }

  .has-index-common .index-common-footer .footer-brandline img {
    width: 244px;
  }

  .has-index-common .index-common-footer .footer-brandline p,
  .has-index-common .index-common-footer .footer-brandline > a {
    display: none;
  }

  .has-index-common .index-common-footer .footer-columns {
    padding: 27px 0;
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .has-index-common .index-common-footer .footer-about > p {
    font-size: 13px;
    line-height: 1.8;
  }

  .has-index-common .index-common-footer .footer-company,
  .has-index-common .index-common-footer .footer-links {
    padding-top: 30px;
    border-top: 1px solid #282828;
  }

  .has-index-common .index-common-footer .footer-company dl > div {
    grid-template-columns: 90px 1fr;
  }

  .has-index-common .index-common-footer .footer-links {
    gap: 26px;
  }

  .has-index-common .index-common-footer .footer-bottom {
    padding-top: 23px;
    display: grid;
    gap: 30px;
    font-size: 10px;
  }

  .has-index-common .index-common-footer .footer-bottom > div {
    gap: 16px;
    flex-wrap: wrap;
  }

  .has-index-common .index-common-footer .footer-bottom > a {
    display: none;
  }

  body.has-index-common {
    padding-bottom: calc(58px + env(safe-area-inset-bottom));
  }

  .has-index-common .index-common-quick.chat-widget {
    right: 12px;
    bottom: calc(70px + env(safe-area-inset-bottom));
  }

  .has-index-common .index-common-quick .chat-hint {
    display: none;
  }

  .has-index-common .index-common-quick .quick-menu-actions {
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
  }

  .has-index-common .index-common-quick .quick-menu-button {
    width: 44px;
    height: 44px;
  }

  .has-index-common .index-common-quick .quick-menu-button svg {
    width: 19px;
  }

  .has-index-common .index-common-quick .quick-menu-button::before {
    display: none;
  }

  .has-index-common .index-common-contact-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1190;
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    min-height: calc(58px + env(safe-area-inset-bottom));
    padding-bottom: env(safe-area-inset-bottom);
    color: #fff;
    box-shadow: 0 -8px 24px rgba(0, 24, 64, .18);
  }

  .has-index-common .index-common-contact-bar a {
    min-width: 0;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 10px;
    color: inherit;
    font-size: 15px;
    font-weight: 750;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
  }

  .has-index-common .index-common-contact-bar__phone {
    background: var(--index-common-blue-deep);
  }

  .has-index-common .index-common-contact-bar__phone strong {
    font-size: 17px;
    font-weight: 900;
    letter-spacing: 0;
  }

  .has-index-common .index-common-contact-bar__mobile {
    background: var(--index-common-blue);
  }
}

@media (max-width: 420px) {
  .has-index-common .index-common-footer .footer-company dd,
  .has-index-common .index-common-footer .footer-company a {
    min-width: 0;
    overflow-wrap: anywhere;
  }
}

/* Relocated Footer Policy Links */
.footer-policy-links {
  display: flex;
  gap: 20px;
  margin-top: 14px;
  margin-bottom: 14px;
}

.footer-policy-links a {
  color: #94a3b8;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-policy-links a:hover,
.footer-policy-links a:focus-visible {
  color: #ffffff;
}

.footer-policy-links .privacy {
  color: #0056e0;
  font-weight: 850;
}
