/* 25.10.14 김성원 선임 추가 */
/* #region 헤더 */
#header {
  background-color: #ffffff;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 250;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

#header .counsel_container {
  display: none;
}

#header .header_quick {
  height: 7rem;
  padding: 0 1.6rem;
  border-bottom: 0.1rem solid #dddddd;
}

#header .header_quick_position {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#header .go_home {
  height: 60%;
}

#header .go_home img {
  height: 100%;
}

#header .go_home .homepage_title {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.08rem;
}

#header .go_home .homepage_title span {
  color: var(--color-primary);
  font-weight: 700;
}

#header .go_home .homepage_subtitle {
  color: var(--color-primary-60);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: -0.044rem;
}

#header .header_quick .icon_btn_box {
  display: flex;
  align-items: center;
  gap: 1rem;
}

#header .header_quick .icon_btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#header .header_quick .icon_btn p {
  display: none;
}

#header .header_quick .icon_box {
  background-color: #f7f7f7;
  width: 4.3rem;
  height: 4.3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#header .header_quick .icon_box svg {
  width: 2rem;
}

#header .header_quick .icon_box path {
  stroke: var(--color-primary);
}

#header .header_nav {
  width: 100%;
  height: 6rem;
  padding: 0 0.8rem;
  border-bottom: 0.1rem solid #dddddd;
}

#header .header_nav_position {
  width: 100%;
  height: 100%;
  display: flex;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

#header .header_nav_position::-webkit-scrollbar {
  width: 0;
  height: 0;
}

#header .header_nav_position a {
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 0.8rem;
  flex: 0 0 auto;
}

#header .all_menu_btn {
  display: none;
}

#header .header_search {
  display: none;
}
/* #endregion 헤더 */

/* #region 전체메뉴 */
.all_menu_position {
  background-color: rgba(0, 0, 0, 0.80);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 300;
  opacity: 0;
  transform: translateY(-100%);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.all_menu_position p,
.all_menu_position a,
.all_menu_position div {
  font-size: 1.4rem;
}

.all_menu_header {
  background-color: var(--color-primary);
  height: 4rem;
  padding: 0 2.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.all_menu_header img {
  height: 1.8rem;
}

.all_menu_header .close_btn {
  width: 2.4rem;
  height: 2.4rem;
  cursor: pointer;
}

.all_menu_header .close_btn svg {
  width: 100%;
  height: 100%;
}

.all_menu_container {
  width: 100%;
  height: calc(100% - 4rem);
  background-color: #ffffff;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 6.5% 29% 58.5% 6%;
}

.all_menu_nav {
  background-color: #ffffff;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.all_menu_nav a {
  color: #666;
  font-weight: 400;
}

.all_menu_category {
  background-color: #f4f4f4;
  display: grid;
  grid-template-columns: repeat(4, 6rem);
  justify-content: space-evenly;
  align-content: center;
  align-items: center;
  gap: 5% 0;
}

.all_menu_category a {
  color: #333;
  font-weight: 500;
  height: max-content;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
}

.all_menu_category a img {
  width: 5rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
}

.all_menu_body {
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}

.all_menu_body_section h4 {
  font-family: 'GyeonggiBatang', sans-serif;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -1.08px;
}

.all_menu_body_section div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem 0.8rem;
  padding: 1.2rem;
}

.all_menu_body_section a {
  color: #4C4C3F;
  font-weight: 500;
  line-height: 1;
  background-color: #F7F7F7;
  padding: 1rem 1.2rem;
  border-radius: 2rem;
  display: block;
}

.all_menu_footer {
  background-color: #e8eae8;
  border-top: 0.1rem solid #D4D4D4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.all_menu_footer a {
  color: #666;
  font-weight: 500;
  width: 100%;
  height: 100%;
  border-right: 0.1rem solid #D4D4D4;
  display: flex;
  justify-content: center;
  align-items: center;
}

.all_menu_footer a:last-child {
  border-right: none;
}
/* #endregion 전체메뉴 */

/* #region 푸터 */
#footer {
  margin-bottom: 7rem;
}

.footer_nav {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  justify-content: space-evenly;
}

.footer_shop_nav {
  background-color: #F4F4F4;
  padding: 4rem 0;
  gap: 2rem 0;
}

.footer_shop_nav_item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
}

.footer_shop_nav_item img {
  width: 9rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
}

.footer_menu_nav {
  background-color: #656565;
  padding: 1.6rem 0;
  gap: 1.2rem 0;
}

.footer_menu_nav a {
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 500;
}

.footer_info {
  width: max-content;
  padding: 4rem 0 3rem; 
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-items: center;
  gap: 4rem;
}

.footer_info_title {
  color: #333;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

.footer_info_tel_container {
  margin-bottom: 1.4rem;
}

.footer_info_tel {
  color: var(--color-primary);
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: -0.056rem;
  margin-top: -0.6rem;
  margin-bottom: 0.8rem;
}

.footer_info_call_time {
  color: #999;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 160%;
}

.footer_info_link_container {
  display: flex;
  gap: 1rem;
}

.footer_info_link_container a {
  color: #333;
  font-size: 1.4rem;
  font-weight: 600;
  background-color: #fff;
  width: 14rem;
  height: 4rem;
  border-radius: 0.4rem;
  border: 0.1rem solid #D0D0D0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.kb_icon_box {
  display: block;
  margin-bottom: 1.6rem;
}

.footer_info_account {
  color: #333;
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0.6rem;
}

.footer_info_account span {
  font-size: 1.8rem;
  font-weight: 700;
}

.footer_info_account_name {
  color: #999;
  font-size: 1.4rem;
  font-weight: 500;
}

.footer_about  {
  color: #999;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: -0.024rem;
}

.footer_about img {
  height: 3rem;
  margin-bottom: 2rem;
  display: block;
}

.footer_copyright {
  color: #999;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: -0.024rem;
  background-color: #f4f4f4;
  padding: 2.8rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
/* #endregion 푸터 */

/* #region 메인 페이지 */
.container {
  width: 100%;
  padding-top: 13rem;
  padding-left: 0;
  padding-right: 0;
}
/* #endregion 메인 페이지 */

/* #region 모바일 하단 메뉴 */
#mobileMenu {
  background-color: #ffffff;
  width: 100%;
  height: 7rem;
  border-top: 0.1rem solid #dddddd;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 250;
}

#mobileMenu .mobile_menu_item {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
}

#mobileMenu .mobile_menu_item.phone_icon {
  background-color: var(--color-primary);
}

#mobileMenu .mobile_menu_item svg {
  width: 2.4rem;
  height: 2.4rem;
}

#mobileMenu .mobile_menu_item path {
  stroke: #000000
}

#mobileMenu .mobile_menu_item.home_icon path {
  stroke: var(--color-primary);
}

#mobileMenu .mobile_menu_item.phone_icon path {
  stroke: #ffffff;
}

#mobileMenu .mobile_menu_item p {
  color: #333;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: -0.048rem;
}

#mobileMenu .mobile_menu_item.phone_icon p {
  color: #ffffff;
}
/* #endregion 모바일 하단 메뉴 */

/* #region PC 사이트 메뉴 */
#shopFloation {
  display: none;
}
/* #endregion PC 사이트 메뉴 */

@media screen and (min-width: 768px) {
  /* #region 헤더 */
  #header .header_nav {
    padding: 0 1.6rem;
  }

  #header .header_nav_position {
    justify-content: center;
    align-items: center;
    position: relative;
  }

  #header .header_nav a {
    border-left: 0.1rem solid #cccccc;
  }

  #header .header_nav a:first-child {
    border-left: none;
  }

  #header .all_menu_btn {
    color: #666;
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: -0.032rem;
    background-color: #ffffff;
    width: 7rem;
    height: 2.8rem;
    border-radius: 3rem;
    border: 0.1rem solid #ececec;
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
  }
  /* #endregion 헤더 */

  /* #region 전체메뉴 */
  .all_menu_position p,
  .all_menu_position a,
  .all_menu_position div {
    font-size: 1.6rem;
  }

  .all_menu_category a {
    gap: 0.8rem;
  }

  .all_menu_category a img {
    width: 6rem;
  }

  .all_menu_body_section h4 {
    font-size: 2.2rem;
  }

  .all_menu_body_section div {
    gap: 1rem;
  }
  /* #endregion 전체메뉴 */

  /* #region 푸터 */
  #footer {
    margin-bottom: 0;
  }
  .footer_nav {
    grid-template-columns: repeat(6, max-content);
    justify-content: center;
  } 

  .footer_nav {
    gap: 2rem;
  }

  .footer_shop_nav {
    padding: 6rem 0;
  }
  /* #endregion 푸터 */
}

@media screen and (min-width: 1024px) {
  /* #region 헤더 */
  #header .counsel_container {
    background-color: var(--color-primary);
    height: 4.6rem;
    padding: 0 3rem;
    justify-content: center;
  }

  #header .counsel_container_show {
    display: flex;
  }

  #header .counsel_box {
    color: #ffffff;
    width: 100%;
    max-width: 160rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.6rem;
    position: relative;
  }

  #header .counsel_box p {
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: -0.036rem;
  }

  #header .counsel_box h4 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.06rem;
    margin-top: -0.2rem;
  }

  #header .counsel_box .close_btn {
    width: 2.4rem;
    height: 2.4rem;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
  }

  #header .counsel_box .close_btn svg {
    width: 100%;
    height: 100%;
  }

  #header .header_quick {
    height: 13.4rem;
    padding: 0 3rem;
  }

  #header .header_quick .icon_btn_box {
    gap: 2.2rem;
  }

  #header .header_quick_position {
    max-width: 160rem;
    margin: 0 auto;
  }

  #header .header_quick .icon_box {
    width: 5rem;
    height: 5rem;
  }

  #header .header_quick .icon_box svg {
    width: 2.6rem;
  }

  #header .header_quick .icon_btn p {
    display: block;
    color: #666;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: -0.064rem;
  }

  #header .header_nav {
    height: 6rem;
    padding: 0 3rem;
  }

  #header .header_nav_position {
    max-width: 160rem;
    margin: 0 auto;
  }

  #header .header_nav a {
    font-size: 1.8rem;
    padding: 0 1.6rem;
  }

  #header .header_search {
    width: 30%;
    max-width: 40rem;
    display: block;
    position: relative;
  }

  #header .header_search .common_input {
    height: 4.8rem;
  }

  #header #sch_submit {
    background-color: #fff;
    width: 2.4rem;
    height: 2.4rem;
    border: none;
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
  }

  #header #sch_submit svg {
    width: 100%;
    height: 100%;
  }

  #header #sch_submit svg path {
    stroke: var(--color-primary);
  }
  /* #endregion 헤더 */

  /* #region 전체메뉴 */
  .all_menu_position {
    height: calc(100% - 24rem);
    padding: 0 2rem;
    top: 24rem;
    z-index: 200;
  }

  .all_menu_container {
    max-width: 160rem;
    margin: 0 auto;
    height: max-content;
    border: 0.1rem solid #DEDEDE;
    border-radius: 5rem;
    grid-template-rows: 16rem 27rem;
    box-shadow: 0 0.4rem 1rem 0 rgba(0, 0, 0, 0.25);
    overflow: hidden;
  }
  
  .all_menu_header,
  .all_menu_nav,
  .all_menu_footer {
    display: none;
  }

  .all_menu_category {
    grid-template-columns: repeat(8, 6rem);
    justify-content: center;
    gap: 4rem;
  }
  /* #endregion 전체메뉴 */

  /* #region 메인 페이지 */
  .container {
    padding-top: 24rem;
  }
  .container.counsel_hide {
    padding-top: 19.4rem
  }
  /* #endregion 메인 페이지 */

  /* #region 푸터 */
  .footer_shop_nav {
    gap: 4rem;
  }

  .footer_shop_nav_item img {
    width: 10rem;
  }

  .footer_menu_nav {
    gap: 5.4rem;
  }

  .footer_menu_nav a {
    font-size: 1.6rem;
  }
  /* #endregion 푸터 */

  /* #region PC 사이트 메뉴 */
  #shopFloation {
    width: 12rem;
    height: max-content;
    display: block;
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 190;
  }

  #todayViewList {
    background-color: #FFF;
    width: 100%;
    padding: 1.6rem 2rem 3.2rem; 
    border: 0.1rem solid #EBEBEB;
    border-radius: 0.6rem;
    margin-bottom: 1rem;
    display: block;
    box-shadow: 0 0.4rem 1rem 0 rgba(0, 0, 0, 0.10);
  }

  #todayViewList h6 {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: -0.028rem;
    margin-bottom: 3.4rem;
  }

  #todayViewList #quick {
    width: 100%;
    margin-top: 0;
    position: unset;
  }

  #todayViewList .stv_item {
    display: none;
    background-color: #fff;
    border: 1px solid #E9E9E9;
    margin-bottom: 1rem;
  }

  #todayViewList #stv_btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  #todayViewList #stv_btn button {
    background-color: #fff;
    height: max-content;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #todayViewList #stv_btn .stv_page {
    color: #999;
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: -0.084rem;
  }

  #todayViewList #stv_btn .stv_page span {
    color: #000;
    font-weight: 600;
  }

  #shopFloation .li_empty {
    font-size: 1.2rem;
    text-align: center;
    word-break: keep-all;
  }

  #shopFloation .top-btn {
    color: #fff;
    font-weight: 500;
    background: #666;
    width: 100%;
    height: 3.4rem;
    border: none;
    border-radius: 0.6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.4rem;
  }

  #shopFloation .top-btn svg {
    width: 1.8rem;
    height: 1.8rem;
  }
  /* #endregion 오늘 본 상품 */
}

@media screen and (min-width: 1200px) {
  /* #region 헤더 */
  #header .header_nav a {
    font-size: 2rem;
    padding: 0 2rem;
  }

  #header .all_menu_btn {
    font-size: 1.6rem;
    width: 10rem;
    height: 3.2rem;
  }
  /* #endregion 헤더 */

  /* #region 푸터 */
  .footer_info {
    flex-direction: row;
    gap: 8rem;
    padding: 6rem 0 5rem;
  }
  /* #endregion 푸터 */
}

@media screen and (min-width: 2100px) {
  #shopFloation {
    bottom: 3rem;
    right: 3rem;
  }
}