*,
ol,
ul {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@font-face {
  font-family: Artois;
  font-style: normal;
  font-weight: 400;
  src: url("/themes/stella/font/ArtoisSebastian-Sans.woff2") format("woff2"),
    url("/themes/stella/font/ArtoisSebastian-Sans.woff2") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Cafe24Danjunghae";
  src: url("https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_twelve@1.1/Cafe24Danjunghae.woff")
    format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: ArtoisIsabella-Serif;
  font-style: normal;
  font-weight: 400;
  src: url("/themes/stella/font/ArtoisIsabella-Serif.woff2") format("woff2"),
    url("/themes/stella/font/ArtoisIsabella-Serif.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans CJK KR";
  font-style: normal;
  font-weight: 400;
  src: url("https://fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Regular.woff2")
      format("woff2"),
    url("https://fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Regular.woff")
      format("woff");
  font-display: swap;
}
.Artois,
.nav-item {
  font-family: "Artois", sans-serif !important;
}
.Artois_s {
  font-family: ArtoisIsabella-Serif, serif !important;
  font-weight: 400;
}
.menuzone .mm-tit h2 {
  font-family: ArtoisIsabella-Serif, serif;
}
li {
  list-style: none;
}
a {
  text-decoration: none;
}
body {
  font-family: "Noto Sans KR", sans-serif;
  background-color: #ffffff;
  color: #333333;
  overflow-x: hidden;
}
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 2000;
  padding: 2vh;
  box-sizing: border-box;
}
.header-container {
  max-width: 1735px;
  margin: 0 auto;
}
.header-top,
.nav-menu,
.social-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-bottom {
  padding: 1rem;
  padding-right: 0;
}
.logo {
  display: flex;
  align-items: center;
  width: 260px;
}
.logo img {
  width: 100%;
}
.social-link {
  width: 30px;
  margin-left: 15px;
  display: flex;
}
.social-link img {
  width: 100%;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: Artois, sans-serif;
  font-size: 1.3rem;
}
.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1;
  height: 20.8px;
}
.nav-item:last-child {
  justify-content: flex-end;
}
.nav-link {
  color: #fff;
}
.highlight-menu {
  color: #c11b17 !important;
}
.gtm-noscript-frame {
  display: none;
  visibility: hidden;
}
.menu-item {
  position: relative;
}
.menu-item:has(> .low-menu) > a::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  vertical-align: middle;
}
.menu-item.is-open:has(> .low-menu) > a::after {
  transform: rotate(-135deg);
}
.nav-item a {
  display: inline-block;
  font-size: 1.3rem;
  line-height: 1;
}
.nav-item a:hover {
  color: #c11b17;
}
.low-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 1000;
  min-width: 220px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  padding: 8px 0;
}
.menu-item.is-open > .low-menu {
  display: block;
}
.low-menu > .menu-item > a {
  display: block;
  padding: 10px 16px;
  color: #333;
  text-decoration: none;
}
.low-menu > .menu-item > a:hover {
  background: rgba(0, 0, 0, 0.04);
  color: #c11b17;
}
.mobile-menu-btn {
  display: none !important;
  flex-direction: column !important;
  cursor: pointer !important;
  padding: 5px !important;
  background: none !important;
  border: none !important;
}
.mobile-menu-btn span {
  width: 25px !important;
  height: 3px !important;
  background: #333 !important;
  margin: 3px 0 !important;
  transition: 0.3s !important;
  border-radius: 3px !important;
}
.menu {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 1999;
}
.menu .dim {
  position: absolute;
  inset: 0;
}
.menuzone {
  position: absolute;
  right: 0;
  background: #fff;
  top: 80px;
  padding: 3vh 6vw;
  text-align: right;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  box-shadow: -6px 0 20px rgba(0, 0, 0, 0.15);
  transform: translateX(110%);
  transition: transform 0.4s ease;
}
.menu.is-open .menuzone {
  transform: translateX(0);
}
.menuzone .mm-tit h2 {
  font-family: ArtoisIsabella-Serif, serif;
  font-size: 2rem;
  text-align: right;
}
.menuzone .gnb_m {
  font-family: Artois, sans-serif;
  font-size: 1.5rem;
}
.menuzone .channel {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2500;
}
.modal-box {
  background: #fff;
  padding: 2.5rem 3.5rem;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}
.modal-message {
  font-size: 1.05rem;
  margin: 1.2rem 0 1.8rem;
}
.modal-message.stl-product {
  font-family: "Cafe24Danjunghae";
}
.modal-close {
  padding: 0.85rem 2.6rem;
  background: #c11b17;
  color: #fff;
  border: none;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
}
.sdc-modal-img {
  width: 240px;
  margin: 0 auto;
}
.sdc-modal-img img {
  width: 100%;
}
@media (max-width: 1024px) {
  .header,
  #header {
    padding: 1rem;
  }
  .header-container,
  .header-01 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  .nav-menu,
  .social-links,
  .gnb_wrap,
  .header-01 .channel {
    display: none !important;
  }
  .mobile-menu-btn {
    display: flex !important;
  }
  .mobile-menu-btn,
  .btn_menu_m,
  .btn_close {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 40px;
  }
  .btn_close {
    display: none;
  }
  .btn_menu_m img,
  .btn_close img {
    width: 100%;
  }
  .logo,
  .logo a {
    width: 155px;
  }
  .stella-dining::before {
    content: "";
    display: inline-block;
    width: 52px;
    height: 27px;
    background: url("/themes/stella/img/member_only.png") no-repeat center/cover;
    margin-right: 6px;
    vertical-align: middle;
  }
  .low-menu {
    position: static;
    display: block;
    box-shadow: none;
    background: transparent;
    padding: 0;
    border: 0;
  }
  .low-menu > .menu-item {
    margin: 0;
  }
  .low-menu > .menu-item > a {
    padding: 0 !important;
    text-align: right;
    font-size: 15px;
    border-bottom: 0;
  }
  .menu-item > a {
    padding-right: 0;
    font-size: 1.5rem;
    color: #333;
  }
  .menu-item:has(> .low-menu) > a::after {
    display: none;
  }
  .menuzone {
    position: absolute;
    top: 80px;
    right: 0;
    background: #fff;
    padding: 3vh 6vw;
    text-align: right;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    box-shadow: -6px 0 20px rgba(0, 0, 0, 0.15);
  }
  .menu-item {
    font-family: Artois, sans-serif;
    font-size: 1.5rem;
    margin-bottom: 2vh;
  }
  .mm-tit h2 {
    font-size: 2rem;
    margin-bottom: 2vh;
    font-weight: 400;
  }
  .menuzone .highlight-menu {
    color: #c11b17;
  }
  /* .menuzone ul li:nth-child(5) {
        margin-top: 5.5vh;
        margin-bottom: 2vh;
    } */
  .common_pop {
    top: 20%;
    left: 5%;
    width: 90%;
    margin-left: 0;
    border-radius: 10px;
  }
  .pop_tit {
    min-height: 45px;
    padding: 12px 40px 10px 20px;
    font-size: 16px;
  }
  .pop_box {
    max-height: 50vh;
    padding: 15px;
    font-size: 15px;
  }
  .pop_btns a {
    height: 40px;
    font-size: 14px;
    line-height: 40px;
  }
  .btn_closePop {
    top: 5px;
    right: 5px;
    width: 35px;
    height: 35px;
    background-position: center center;
    background-size: 15px 15px;
  }
  .channel_txt {
    margin-top: 3vh;
    font-size: 1rem;
    font-weight: bold;
    font-family: Artois, sans-serif;
  }
  .channel {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
  }
  .channel li {
    margin-left: 1vw;
  }
  .channel li a {
    width: 25px;
    height: 40px;
    display: flex;
    align-items: center;
  }
  .channel li a img {
    width: 100%;
  }
  .nav-item {
    display: block;
    margin: 0 0 1.2vh;
    height: auto;
  }
  .mm-tit {
    font-family: ArtoisIsabella-Serif, serif;
  }
  .mm-tit {
    margin-bottom: 0;
  }
  /* .menu-item:nth-child(5) {
        margin: 0 !important;
    } */
  .low-menu {
    margin-top: 4px;
  }
  .menuzone {
    padding: 3vh 6vw;
  }
  .menuzone .channel {
    height: 7vh;
    align-items: flex-end;
  }
  .low-menu > .menu-item {
    margin-bottom: 1vh;
    margin-top: 0 !important;
  }
}
/* footer */
#footer {
  height: 340px;
  padding: 45px 2vh 0;
  border-top: 1px solid #999;
}
.footer_wrap {
  max-width: 1735px;
  margin: auto;
}
.logo_f img {
  width: 211px;
}
.copyright {
  margin-top: 1vh;
  font-family: "Artois", sans-serif;
  font-size: 1rem;
  font-weight: bold;
}
.copyright a {
  color: #333;
}
.contact {
  margin-top: 1vh;
  line-height: 1.8;
  color: #999;
}
.contact a {
  color: #999;
}
.warning {
  margin-top: 1vh;
  color: #999;
}
.footer_wrap .channel {
  display: flex;
  align-items: center;
  justify-content: end;
}
.footer_wrap .channel li {
  margin-left: 15px;
}
.footer_wrap .channel li a {
  width: 30px;
  display: flex;
  align-items: center;
  height: 40px;
}
.footer_wrap .channel li a img {
  width: 100%;
}
.mo_on {
  display: none;
}

/* body .ccw2.header {
    background: transparent !important;
    box-shadow: none;
} */
/* =========================
   Header
========================= */
@font-face {
  font-family: "Cafe24Danjunghae";
  src: url("https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_twelve@1.1/Cafe24Danjunghae.woff")
    format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  z-index: 2000;
  padding: 2vh;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.header-container {
  max-width: 1735px;
  margin: 0 auto;
}

.header-top,
.nav-menu,
.social-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-bottom {
  padding: 1rem;
  padding-right: 0;
}

.logo {
  display: flex;
  align-items: center;
  width: 260px;
}

.social-link {
  width: 30px;
  margin-left: 15px;
  display: flex;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: Artois, sans-serif;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1;
  height: 20.8px;
}

.nav-item:last-child {
  justify-content: flex-end;
}

.nav-link {
  color: #333;
}

.highlight-menu {
  color: #c11b17 !important;
}

.gtm-noscript-frame {
  display: none;
  visibility: hidden;
}

/* =========================
   Dropdown (Desktop & Touch)
========================= */
.menu-item {
  position: relative;
}

.menu-item:has(> .low-menu) > a::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  vertical-align: middle;
}

.menu-item.is-open:has(> .low-menu) > a::after {
  transform: rotate(-135deg);
}

.nav-item a {
  display: inline-block;
  font-size: 1.3rem;
  line-height: 1;
}

.low-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 1000;
  min-width: 220px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  padding: 8px 0;
}

.menu-item.is-open > .low-menu {
  display: block;
}

.low-menu > .menu-item > a {
  display: block;
  padding: 10px 16px;
  color: #333;
  text-decoration: none;
}

.low-menu > .menu-item > a:hover {
  background: rgba(0, 0, 0, 0.04);
  color: #c11b17;
}

/* =========================
   Mobile Menu (button, panel)
========================= */
.mobile-menu-btn {
  display: none !important;
  flex-direction: column !important;
  cursor: pointer !important;
  padding: 5px !important;
  background: none !important;
  border: none !important;
}

.mobile-menu-btn span {
  width: 25px !important;
  height: 3px !important;
  background: #333 !important;
  margin: 3px 0 !important;
  transition: 0.3s !important;
  border-radius: 3px !important;
}

.menu {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 1999;
}

.menu .dim {
  position: absolute;
  inset: 0;
}

.menuzone {
  position: absolute;
  right: 0;
  background: #fff;
  top: 80px;
  padding: 3vh 6vw;
  text-align: right;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  box-shadow: -6px 0 20px rgba(0, 0, 0, 0.15);
  transform: translateX(110%);
  transition: transform 0.4s ease;
}

.menu.is-open .menuzone {
  transform: translateX(0);
}

.menuzone .mm-tit h2 {
  font-family: ArtoisIsabella-Serif, serif;
  font-size: 2rem;
  text-align: right;
}

.menuzone .gnb_m {
  font-family: Artois, sans-serif;
  font-size: 1.5rem;
}

.menuzone .channel {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}

/* =========================
   Modal
========================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2500;
}

.modal-box {
  background: #fff;
  padding: 2.5rem 3.5rem;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.modal-message {
  font-size: 1.05rem;
  margin: 1.2rem 0 1.8rem;
}

.modal-message.stl-product {
  font-family: "Cafe24Danjunghae";
}

.modal-close {
  padding: 0.85rem 2.6rem;
  background: #c11b17;
  color: #fff;
  border: none;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.sdc-modal-img {
  width: 240px;
  margin: 0 auto;
}

/* =========================
   Responsive Header (<=1024px)
========================= */
@media (max-width: 1024px) {
  /* Header & global navigation */
  .header,
  #header {
    padding: 1rem;
  }

  .header-container,
  .header-01 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }

  .nav-menu,
  .social-links,
  .gnb_wrap,
  .header-01 .channel {
    display: none !important;
  }

  .mobile-menu-btn {
    display: flex !important;
  }

  .mobile-menu-btn,
  .btn_menu_m,
  .btn_close {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 40px;
  }

  .btn_close {
    display: none;
  }

  .btn_menu_m img,
  .btn_close img {
    width: 100%;
  }

  .logo,
  .logo a {
    width: 155px;
  }

  .stella-dining::before {
    content: "";
    display: inline-block;
    width: 52px;
    height: 27px;
    background: url("/themes/stella/img/member_only.png") no-repeat center/cover;
    margin-right: 6px;
    vertical-align: middle;
  }

  /* Secondary navigation */
  .low-menu {
    position: static;
    display: block;
    box-shadow: none;
    background: transparent;
    padding: 0;
    border: 0;
  }

  .low-menu > .menu-item {
    margin: 0;
  }

  .low-menu > .menu-item > a {
    padding: 0 !important;
    text-align: right;
    font-size: 15px;
    border-bottom: 0;
  }

  .menu-item > a {
    padding-right: 0;
    font-size: 1.5rem;
  }

  .menu-item:has(> .low-menu) > a::after {
    display: none;
  }

  .menuzone {
    position: absolute;
    top: 80px;
    right: 0;
    background: #fff;
    padding: 3vh 6vw;
    text-align: right;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    box-shadow: -6px 0 20px rgba(0, 0, 0, 0.15);
  }

  .menu-item {
    font-family: Artois, sans-serif;
    font-size: 1.5rem;
    margin-bottom: 2vh;
  }

  .mm-tit h2 {
    font-size: 2rem;
    margin-bottom: 2vh;
    font-weight: 400;
  }

  .menuzone .highlight-menu {
    color: #c11b17;
  }

  /* .menuzone ul li:nth-child(5) {
        margin-top: 5.5vh;
        margin-bottom: 2vh;
    } */

  /* Popup */
  .common_pop {
    top: 20%;
    left: 5%;
    width: 90%;
    margin-left: 0;
    border-radius: 10px;
  }

  .pop_tit {
    min-height: 45px;
    padding: 12px 40px 10px 20px;
    font-size: 16px;
  }

  .pop_box {
    max-height: 50vh;
    padding: 15px;
    font-size: 15px;
  }

  .pop_btns a {
    height: 40px;
    font-size: 14px;
    line-height: 40px;
  }

  .btn_closePop {
    top: 5px;
    right: 5px;
    width: 35px;
    height: 35px;
    background-position: center center;
    background-size: 15px 15px;
  }

  /* Channel links */
  .channel_txt {
    margin-top: 3vh;
    font-size: 1rem;
    font-weight: bold;
  }

  .channel {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
  }

  .channel li {
    margin-left: 1vw;
  }

  .channel li:nth-last-of-type(2) {
    /* margin-top: 1vh; */
  }

  .channel li a {
    width: 25px;
    height: 40px;
    display: flex;
    align-items: center;
  }

  .channel li a img {
    width: 100%;
  }
  .nav-item {
    display: block;
    margin: 0 0 3vh;
    height: 24px;
  }
  .nav-item:has(.low-menu) {
    height: 68px;
  }
  .mm-tit {
    margin-bottom: 0;
  }

  /* .menu-item:nth-child(5) {
        margin: 0 !important;
    } */

  .menuzone {
    padding: 2vh 6vw;
  }

  .menuzone .channel {
    height: 7vh;
  }

  .low-menu > .menu-item {
    margin-bottom: 1vh;
    margin-top: 0 !important;
    height: auto !important;
  }
  .menuzone li:nth-last-of-type(2) {
    margin-top: 7vh;
    height: 31px;
  }
  .menuzone li:nth-last-of-type(1) {
    height: 31px;
  }
  .channel li {
    margin-top: 0 !important;
    height: auto !important;
  }
}
/* =========================
   Footer
========================= */
#footer {
  padding: 45px 2vh 0;
  font-size: 14px;
  border-top: 1px solid #999;
  background-color: #fff;
}

#footer .contact {
  line-height: 1.8;
}

.footer_wrap {
  max-width: 1735px;
  margin: auto;
  height: 340px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.logo_f img {
  width: 211px;
}

.copyright {
  margin-top: 1vh;
  font-family: Artois, sans-serif;
  font-size: 1rem;
  font-weight: bold;
}

.contact,
.warning {
  margin-top: 1vh;
  color: #999;
}

.footer_wrap .channel {
  display: flex;
  align-items: center;
  justify-content: end;
}

.footer_wrap .channel li {
  margin-left: 15px;
}

.footer_wrap .channel li a {
  width: 30px;
  display: flex;
  align-items: center;
  height: 40px;
}

.mo_on {
  display: none;
}

@media (max-width: 768px) {
  /* Footer */
  #footer {
    padding: 3vh 3vw;
    height: auto;
  }

  .footer_wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    height: unset;
  }

  .footer_wrap .channel li a {
    width: 25px;
    height: 25px;
  }

  .mo_on {
    display: block;
  }

  .copyright {
    font-size: 0.8rem;
  }

  .contact,
  .warning {
    font-size: 0.5rem;
  }
}
