/* BASIC css start */
body {
  margin: 0;
  padding: 0;
}

/* 모바일 헤더 */
#m_header {
  position: relative;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #efefef;
  z-index: 1000;
  margin-bottom: 30px; /* 🔥 메인사진 위 여백 */
}

.m_header_inner {
  position: relative;
  height: 58px;
  padding: 0 16px;
}

.m_menu_icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.m_menu_icon img {
  width: 17px;
  display: block;
}

.m_logo {
  margin: 0;
  text-align: center;
  line-height: 58px;
}

.m_logo img {
  max-height: 25px;
  vertical-align: middle;
}

.m_header_icons {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
}

.m_header_icons img {
  width: 16px;
  height: 16px;
  display: block;
  opacity: 0.9;
}

/* 마스크 */
.m_mask {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
}

/* 모바일 사이드 메뉴 */
.m_smenuBox {
  position: fixed;
  top: 0;
  left: -86%;
  width: 86%;
  height: 100vh;
  background: #fff;
  z-index: 2100;
  transition: left 0.3s ease;
  padding: 22px 0 0;
  box-sizing: border-box;
  border-right: 1px solid #e8e8e8;
}

.m_smenuBox.on {
  left: 0;
}

.m_closebtn {
  position: absolute;
  right: 18px;
  top: 18px;
  cursor: pointer;
}

.m_closebtn img {
  width: 15px;
  display: block;
}

/* 사이드 로고 */
.m_side_logo {
  margin: 10px 0 28px 20px;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1.4px;
  color: #111;
  line-height: 1;
}

/* 메뉴 */
.m_custom_menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.m_custom_menu > li {
  border-top: 1px solid #ececec;
}

.m_custom_menu > li > a,
.m_menu_title {
  display: block;
  width: 100%;
  background: transparent;
  border: 0;
  text-align: left;
  box-sizing: border-box;
  padding: 15px 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 500;
  color: #111;
  line-height: 1.2;
}

.m_menu_title {
  position: relative;
  cursor: pointer;
}

.m_menu_title:after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
}

.m_menu_title.open:after {
  content: '−';
}

/* 서브메뉴 */
.m_submenu_list {
  display: none;
  list-style: none;
  margin: 0;
  padding: 8px 0 12px;
  border-top: 1px solid #ececec;
}

.m_submenu_list.open {
  display: block;
}

.m_submenu_list li {
  border: 0;
}

.m_submenu_list li a {
  display: block;
  padding: 7px 20px 7px 34px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-weight: 500;
  color: #666;
  line-height: 1.45;
}

/* 하단 메뉴 */
.m_nalog {
  margin: 28px 20px 0;
  padding-top: 18px;
  border-top: 1px solid #ededed;
}

.m_nalog ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.m_nalog ul li {
  width: auto;
}

.m_nalog ul li a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1;
}

/* 링크 기본 */
a {
  text-decoration: none;
}

img {
  border: 0;
  vertical-align: top;
}
/* BASIC css end */

