@charset "utf-8";
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable.min.css");
@import url('https://webfontworld.github.io/naver/NanumSquareRound.css');

:root {
  --white: #fdfdfd;
  --black: #111;
  --gray3: #333;
  --gray5: #555;
  --gray7: #777;
  --gray9: #999;
  --stroke-a: #aaa;
  --stroke-b: #bbb;
  --stroke-c: #ccc;
  --stroke-d: #ddd;
  --stroke-e: #eee;
  --bg1: #f1f1f1;
  --bg2: #eee;
  --accent1: #2A9131;
  --accent2: #8451B7;
  --accent3: #B751A1;
  --accent4: #B75170;
  --accent5: #ff0700;
  --soldout: #A63859;
}

html {
  background-color: var(--bg2);
}

body {
  font-family: "Pretendard Variable", Pretendard, NanumSquareRound, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  background-color: var(--white);
  max-width: 480px;
  min-height: 100vh;
  margin: auto;
}

h1 {
  font-family: 'NanumSquareRound', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  display: inline-block;
  margin-left: 6px;
}

h2 {
  font-family: 'Pretendard', sans-serif;
  font-size: 18px;
  font-weight: 400;
  /* margin-bottom: 6px; */
}

h3 {
  font-size: 16px;
}


h4 {
  font-size: 15px;
}

h5 {
  font-size: 11px;
  color: var(--gray7);
}

h6 {
  font-size: 10px;
}

button {
  font-family: "Pretendard Variable", Pretendard, sans-serif;
  border: none;
  /* background-color: var(--white); */
}

.wrap {
  position: relative;
  margin: 0 auto;
  background-color: var(--white);
  color: var(--gray5);
}

.main {
  position: relative;
  padding: 0 16px;
  margin-top: 100px;
  margin-bottom: 50px;
}

.main_s {
  position: relative;
  padding: 0 16px;
  margin-top: 52px;
  margin-bottom: 50px;
  /* min-height: 100vh; */
}

.main_lo {
  position: relative;
  padding: 0 16px;
  margin-top: 50px;
  margin-bottom: 50px;
}

.bg {
  width: 100%;
  height: 100px;
  border-radius: 0 0 10px 10px;
  background-color: var(--accent1);
  position: absolute;
}

.soldout {
  color: var(--gray9);
}

.item_price {
  font-weight: 500;
}

.won {
  font-size: 14px;
  font-weight: 400;
  color: var(--gray7);
  margin-left: 2px;
}

/* 뱃지 */
.badge {
  font-size: 12px;
  padding: 2px 4px;
  color: var(--white);
  background-color: var(--accent1);
  border-radius: 3px;
  position: absolute;
  top: 0;
  left: 0;
  margin: 1px 0 0 1px;
}

.badge_time_dis {
  font-size: 12px;
  padding: 2px 8px;
  color: var(--white);
  background-color: var(--accent3);
  border-radius: 100px;
}

.badge_daily_dis {
  font-size: 12px;
  padding: 2px 8px;
  color: var(--white);
  background-color: var(--accent2);
  border-radius: 100px;
}

.badge_soldout {
  font-size: 16px;
  font-weight: 500;
  color: var(--soldout);
}

/* 공유하기 */
.dimmed_Bg {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 101;
}

.slide_share {
  position: fixed;
  bottom: -300px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 480px;
  width: 100%;
  height: 300px;
  background-color: #fff;
  transition: bottom 0.5s ease;
  z-index: 102;
  margin: 0 auto;
  border-radius: 10px 10px 0 0;
}

.slide_share .test {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px 20px 0;
}

.slide_share .share_items {
  width: 255px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 60px auto;
}

.slide_share .share_items button {
  border: none;
  background-color: var(--white);
  cursor: pointer;
}

.slide_share .share_items button img {
  margin-bottom: 8px;
}

.slide_share .btn_share_close {
  font-size: 14px;
  cursor: pointer;
  color: var(--gray7);
}



/*header-main*/
/* 마켓 메인 헤더 타이틀 */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.main_top_title {
  max-width: 480px;
  margin: auto;
  background-color: var(--accent1);
}

.main_top_title .top_title_wrap {
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 헤더 검색창 */
.main_top_search {
  width: 100%;
  padding: 1px 16px 12px;
  background-color: var(--accent1);
}

.main_top_search input[type='text'] {
  position: relative;
  width: 100%;
  height: 40px;
  padding: 10px 16px;
  border-radius: 5px;
  border: none;
  background: no-repeat url(../images/icon/search.svg);
  background-color: var(--white);
  background-position: right 3% bottom 50%;
  outline: none;
  font-weight: 300;
  color: var(--gray7);
  font-size: 14px;
}

.main_top_search input[type='text']:focus {
  border-color: red;
}


.main_top_search2 {
  width: 100%;
  padding: 0px 4px 3px;
  background-color: var(--accent1);
}

.main_top_search2 input[type='text'] {
  position: relative;
  width: 100%;
  height: 40px;
  padding: 10px 16px;
  border-radius: 5px;
  border: none;
  background: no-repeat url(../images/icon/search.svg);
  background-color: var(--white);
  background-position: right 3% bottom 50%;
  outline: none;
  font-weight: 300;
  color: var(--gray7);
  font-size: 14px;
}

.main_top_search2 input[type='text']:focus {
  border-color: red;
}

/* /////////////// */
/* market-sub */
/* /////////////// */
/* 마켓 서브 헤더 타이틀 */
.sub_top_title {
  position: relative;
  max-width: 480px;
  height: 52px;
  margin: auto;
  background-color: var(--white);
  display: flex;
  align-items: center;
  padding: 0 8px;
}

.sub_top_title .btn_back {
  display: block;
  width: 40px;
  height: 40px;
  /* padding: 0 10px; */
  background: url(../images/icon/arrow-left.svg) 50% 50% no-repeat;
  border: none;
}

.sub_top_title .btn_back_disc {
  display: block;
  width: 40px;
  height: 40px;
  /* padding: 0 10px; */
  background: url(../images/icon/arrow-left_wh.svg) 50% 50% no-repeat;
  border: none;
}

.sub_top_title .btn_close {
  display: block;
  width: 40px;
  height: 40px;
  /* padding: 0 10px; */
  background: url(../images/icon/close.svg) 50% 50% no-repeat;
  border: none;
}

.sub_top_title .top_title_wrap {
  margin: auto;
}

.sub_top_title .top_title_wrap .top_title {
  height: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  /* padding-right: 20px; */
}

.sub_top_title .top_title_wrap .top_title_disc {
  height: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  /* padding-right: 20px; */
}

.sub_top_title .top_title_wrap .top_title h1 {
  color: var(--gray3);
}

.sub_top_title .top_title_wrap .top_title_disc h1 {
  /*color: var(--gray3);*/
}

/* 서브 헤더 검색창 */
.sub_top_search {
  max-width: 480px;
  padding: 8px 16px 12px;
  background-color: var(--white);
  margin: auto;
}

.sub_top_search input[type='text'] {
  position: relative;
  width: 100%;
  height: 40px;
  padding: 10px 16px;
  border-radius: 5px;
  border: none;
  background: no-repeat url(../images/icon/search.svg);
  background-color: #EEF6EF;
  background-position: right 3% bottom 50%;
  outline: none;
  font-weight: 300;
  color: var(--gray7);
  font-size: 14px;
}

/* 서브 헤더 검색창 */
.sub_top_search2 {
  max-width: 480px;
  padding: 1px 0px 2px;
  background-color: var(--white);
  margin: auto;
}

.sub_top_search2 input[type='text'] {
  position: relative;
  width: 100%;
  height: 40px;
  padding: 10px 16px;
  border-radius: 5px;
  border: none;
  background: no-repeat url(../images/icon/search.svg);
  background-color: #EEF6EF;
  background-position: right 3% bottom 50%;
  outline: none;
  font-weight: 300;
  color: var(--gray7);
  font-size: 14px;
}


/*main*/
/* 메인 헤더 타이틀 */
.section .section_header h2 {
  margin-bottom: 4px;
}

.section_category .section_header {
  padding-top: 18px;
  margin-bottom: 4px;
}

.section_category .section_header h4 {
  font-weight: 300;
}

/* 메인 카테고리 메뉴 리스트 */
#main_category_menu {
  padding: 8px 0;
}

#main_category_menu .main_category_menu_list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(calc(20% - 10px), auto));
  row-gap: 12px;
}

.main_category_menu_list .category_list_item {
  display: block;
  width: 56px;
  margin: auto;
}

.main_category_menu_list .category_list_item .item_tumb {
  width: 56px;
}

.main_category_menu_list .category_list_item .item_tumb img {
  width: 100%;
  border-radius: 5px;
  border: 1px solid var(--stroke-e);
}

.main_category_menu_list .category_list_item .item_name {
  font-size: 13px;
  font-weight: 400;
  padding-top: 3px;
  text-align: center;
  white-space: nowrap;
}

/* edit by J
.main_category_menu_list a.on .item_tumb {
  border-radius: 5px;
  border: 2px solid var(--accent1);
}
*/

.main_category_menu_list .item_name_on {
  color: var(--accent5);
  font-size: 14px;
  padding-top: 4px;
  text-align: center;
  white-space: nowrap;
  font-weight: 500;
}


/* 전체보기 버튼 */
.section .btn_more {
  display: block;
  width: 100%;
  border: 1px solid var(--stroke-c);
  border-radius: 5px;
  margin: 4px 0;
}

.section .btn_more p {
  font-size: 14px;
  text-align: center;
  padding: 7px 0;
}

/* 관광/특산품 배너 */
.section_banner {
  padding-bottom: 20px;
}

.section_banner .section_header {
  padding-top: 15px;
  margin-bottom: 16px;
}

.section_banner .area_banner {
  display: block;
  margin-bottom: 8px;
}

.section_banner .area_banner .banner_1 img,
.section_banner .area_banner .banner_2 img {
  width: 100%;
  border-radius: 5px;
  border: 1px solid var(--stroke-e);
}


/* /////////////// */
/* market-list */
/* /////////////// */
/* 마켓 서브 카테고리 메뉴 리스트 */
#sub_category_menu {
  /*padding: 16px;*/
}

#sub_category_menu .sub_category_menu_list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(calc(20% - 10px), auto));
  row-gap: 12px;
}

#sub_category_menu .sub_category_menu_list a.on .item_tumb {
  border-radius: 5px;
  border: 2px solid var(--accent1);
}

#sub_category_menu .sub_category_menu_list a.on p {
  color: var(--accent1);
  font-weight: 500;
}

.sub_category_menu_list .category_list_item {
  display: block;
  width: 56px;
  margin: auto;
}

.sub_category_menu_list .category_list_item .item_tumb {
  width: 56px;
  height: 56px;
}

.sub_category_menu_list .category_list_item .item_tumb img {
  width: 100%;
  border-radius: 5px;
  border: 1px solid var(--stroke-e);
}

.sub_category_menu_list .category_list_item .item_name {
  font-size: 14px;
  padding-top: 8px;
  text-align: center;
  white-space: nowrap;
}



/* 스토어 리스트 */
.section_store_list .store_list {
  padding-top: 208px;
  display: none;
}

.section_store_list .store_list.on {
  display: block;
}

.section_store_list .store_list_item {
  display: flex;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--stroke-c);
}

.section_store_list .store_list_item .item_left {
  position: relative;
}

.section_store_list .store_list_item .item_left img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 5px;
  border: 1px solid var(--stroke-e);
}

.section_store_list .store_list_item .item_left .badge_sale {
  font-size: 12px;
  padding: 2px 4px;
  color: var(--white);
  background-color: var(--accent1);
  border-radius: 3px;
  position: absolute;
  top: 0;
  left: 0;
  margin: 1px 0 0 1px;
}

.section_store_list .store_list_item .item_left .store_call {
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--gray5);
  padding: 4px 0;
  position: absolute;
  bottom: 0;
  margin: auto;
  border-radius: 0 0 5px 5px;
}

.section_store_list .store_list_item .item_left .store_call i {
  display: block;
  background-image: url(../images/icon/phone.svg);
  width: 14px;
  height: 14px;
}

.section_store_list .store_list_item .item_left .store_call p {
  font-size: 12px;
  margin-left: 2px;
  color: var(--white);
  font-weight: 300;
}

.section_store_list .store_list_item .item_right {
  position: relative;
  margin-left: 12px;
  width: 100%;
}

.section_store_list .store_list_item .item_right .store_title_warp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.section_store_list .store_list_item .item_right .store_name {
  font-weight: 500;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.section_store_list .store_list_item .item_right .btn_zzim {
  border: none;
  cursor: pointer;
  background: url(../images/icon/zzim_off.svg) no-repeat 50% 50%;
  padding: 10px;
  margin-left: 8px;
}

.section_store_list .store_list_item .item_right .btn_zzim.act {
  background: url(../images/icon/zzim_on.svg) no-repeat 50% 50%;
}

.section_store_list .store_list_item .item_right .store_products {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  margin-bottom: 12px;
  color: var(--gray7);
}

.section_store_list .store_list_item .item_right .store_badge span {
  font-size: 12px;
  font-weight: 300;
  padding: 4px 8px;
  /* color: var(--gray7); */
  background-color: #eee;
  margin-right: 2px;
  border-radius: 100px;
}

.section_store_list .store_list_item .item_right .store_badge{
  font-size: 12px;
  font-weight: 300;
  padding: 4px 8px;
  /* color: var(--gray7); */
  background-color: #eee;
  margin-right: 2px;
  border-radius: 100px;
}

/*택배가능*/
.section_store_list .store_list_item .item_right .store_badge_parcel {
  font-size: 12px;
  font-weight: 300;
  padding: 4px 8px;
  /* color: var(--gray7); */
  background-color: #d9f3ff;
  margin-right: 2px;
  border-radius: 100px;
}

/*배송가능*/
.section_store_list .store_list_item .item_right .store_badge_delivery {
  font-size: 12px;
  font-weight: 300;
  padding: 4px 8px;
  /* color: var(--gray7); */
  background-color: #ffe1ff;
  margin-right: 2px;
  border-radius: 100px;
}

/* /////////////// */
/* store-main */
/* /////////////// */
/* 헤더 */
/* 마켓 서브 헤더 타이틀 */
.store_top_title {
  max-width: 480px;
  margin: auto;
  background-color: var(--accent1);
  display: flex;
  align-items: center;
  padding: 0 8px;
}

.store_top_title .btn_back {
  display: block;
  width: 40px;
  height: 40px;
  background: url(../images/icon/arrow-left_wh.svg) 50% 50% no-repeat;
  border: none;
}

.store_top_title .top_title_wrap {
  margin: auto;
}

.store_top_title .top_title_wrap .top_title {
  height: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-right: 20px;
}

.store_top_title .top_title_wrap .top_title h1 {
  color: var(--white);
}


/* 스토어 메인 상단 */
.section_store_main .main_store {
  position: relative;
  /* margin-bottom: 24px; */
}

.section_store_main .main_store .main_store_img {
  margin-bottom: 16px;
  height: 140px;
}

.section_store_main .main_store .main_store_img img {
  width: 100%;
  height: 100%;
  object-fit: fill;   /*cover, fill, contain, none, scale-down: none, scale-down: contain */
  border-radius: 10px;
  border: 1px solid var(--stroke-d);
}

.section_store_main .main_store .main_store_text {
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.section_store_main .main_store .main_store_text .store_title h2 {
  font-weight: 500;
  color: var(--gray3);
  margin-bottom: 10px;
}

.section_store_main .main_store .main_store_text .store_title h3 {
  font-weight: 300;
  color: var(--gray7);
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.section_store_main .main_store .main_store_text .btn_zzim {
  position: relative;
  cursor: pointer;
  background: url(../images/icon/zzim_off.svg) no-repeat 50% 16%;
  padding: 10px;
  min-width: 40px;
  height: 40px;
  border-radius: 3px;
  border: 1px solid var(--stroke-b);
  margin-left: 8px;
}

.section_store_main .main_store .main_store_text .btn_zzim.act {
  background: url(../images/icon/zzim_on.svg) no-repeat 50% 16%;
}

.section_store_main .main_store .main_store_text .btn_zzim span {
  position: absolute;
  left: 50%;
  bottom: 1px;
  transform: translateX(-50%);
  font-size: 11px;
  color: var(--gray7);
}


/* 상점전화/상점위치 */
.section_store_info {
  padding-top: 10px;
  padding-bottom: 4px;
}

.sub_info {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 40px;
}

.sub_info a {
  width: 100px;
  text-align: center;
}

.sub_info div {
  width: 1px;
  height: 20px;
  background-color: var(--stroke-c);
  float: right;
}

.sub_info a span {
  font-size: 16px;
  color: var(--gray5);
  display: inline-block;
  padding: 2px 0;
  text-align: center;


}

.sub_info .store_main_call::before {
  content: url(../images/icon/phone_20x20.svg);
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 6px;
  vertical-align: bottom;
}

.sub_info .store_location::before {
  content: url(../images/icon/store_20x20.svg);
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 6px;
  vertical-align: bottom;
}



/* 스토어 메인 탭메뉴 */
.section_tabmenu {}

.section_tabmenu .store_main_tab {
  position: sticky;
  top: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  /*margin-top: 4px;*/
  margin-bottom: 4px;
  background-color: var(--white);
  z-index: 11;
  border-bottom: 1px solid var(--stroke-d);
}

.section_tabmenu .store_main_tab a {
  width: 100px;
  text-align: center;
  font-size: 16px;
  padding: 12px 0;
}

.section_tabmenu .store_main_tab a.on {
  font-weight: 500;
  color: var(--accent1);
  border-bottom: 2px solid var(--accent1);
}

.section_tabmenu .main_tab_cont.on {
  display: block;
}

.section_tabmenu .main_tab_cont {
  display: none;
}

/* 탭메뉴 원산지 */
.main_tab_cont .store_origin_list {
  padding: 24px 0;
}

.store_origin_list div {
  display: flex;
  align-items: start;
  margin-bottom: 8px;
}

.store_origin_list div p {
  width: 50%;
  font-size: 15px;
}

.store_origin_list div p:last-child {
  color: var(--gray7);
  margin-left: 12px;
  font-weight: 300;
}


/* 탭메뉴 상점정보 */
.main_tab_cont .store_info_list {
  padding: 24px 0;
}

.store_info_list div {
  display: flex;
  align-items: start;
  margin-bottom: 8px;
}

.store_info_list div p {
  font-size: 15px;

}

.store_info_list div p:first-child {
  width: 30%;
}

.store_info_list div p:last-child {
  color: var(--gray7);
  margin-left: 12px;
}





/* 판매상품 슬라이드 */
.section_store_item h3 {
  margin-bottom: 16px;
}

.section_store_item .store_slide_list {
  margin-bottom: 16px;
  overflow: hidden;
}

.store_slide_list .store_swiper .store_swiper_item {
  width: 80px;
}

.store_slide_list .store_swiper .store_swiper_item figure {
  position: relative;
  width: 80px;
  height: 80px;
}


.store_slide_list .store_swiper .store_swiper_item figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
  border: 1px solid var(--stroke-e);
}

/*
.store_slide_list .store_swiper .store_swiper_item h4 {
  font-weight: 400;
  color: var(--gray7);
  padding-top: 8px;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  -webkit-line-clamp: 2;
  width: 80px;
}
*/

.store_slide_list .store_swiper .store_swiper_item h4 {
  font-weight: 400;
  color: var(--gray7);
  padding-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  -webkit-line-clamp: 2;
  width: 80px;
}




/* /////////////// */
/* store-main_items */
/* /////////////// */

/* 마켓 서브 헤더 타이틀 */
.store_sub .top_title_wrap {
  margin-left: 8px;
}

.store_sub .top_title_wrap .top_title h2 {
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  color: var(--gray5);
}

/* 스토어 메인 판매 상품 리스트*/
.section_store_items {}

.store_items_list {}

.store_items_cont {
  display: flex;
  padding-top: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--stroke-d);
}

.store_items_cont .item_cont_img {
  position: relative;
  width: 120px;
  height: 80px;
  margin-right: 12px;
  object-fit: cover;
}

.store_items_cont .item_cont_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
  border: 1px solid var(--stroke-e);
}

.store_items_cont .item_cont_text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.store_items_cont .item_cont_text .item_title_wrap {
  display: flex;
  justify-content: space-between;
  /*margin-bottom: 8px;*/
}

.store_items_cont .item_cont_text .item_title_wrap>div {
  flex: 1;
}

.store_items_cont .item_cont_text .item_title_wrap .item_origin {
  font-size: 14px;
  padding-top: 4px;
  /* margin-bottom: 6px; */
  color: var(--gray7);
}

.store_items_cont .item_cont_text .item_title_wrap .btn_basket {
  width: 36px;
  height: 36px;
  background: url(../images/icon/basket_active.svg) no-repeat 50% 50%;
  border: 1px solid var(--stroke-d);
  border-radius: 3px;
  cursor: pointer;
  margin-left: 6px;
}

.store_items_cont .item_cont_text .item_price_wrap>div {
  margin-bottom: 4px;
}

.store_items_cont .item_cont_text .item_price_wrap>div .item_price {
  font-size: 12px;
  text-decoration: line-through;
  color: var(--gray9);
}

.store_items_cont .item_cont_text .item_price_wrap .time {
  font-size: 14px;
  margin-left: 8px;
  color: var(--accent3);
}

.store_items_cont .item_cont_text .item_price_wrap .time::before {
  content: url(../images/icon/time.svg);
  /*width: 16px;
  height: 16px;*/
  margin-right: 2px;
  vertical-align: middle;
}




/* /////////////// */
/* store-sub_location */
/* /////////////// */

/* 상점 위치*/
.section_store_location {}

.store_location {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  padding-top: 16px;
}

.store_location div {
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--stroke-e);
  border-radius: 3px;
}

.store_location span {
  font-size: 12px;
  font-weight: 300;
  padding: 2px 5px;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.store_group_warp {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 8px;
  max-width: 480px;
  margin: 20px auto;
}

.store_group_warp .store_group {
  display: flex;
  justify-content: space-between;
  padding: 12px 16px;
  margin: 16px 0;
  /* border-top: 1px solid var(--stroke-d); */
  background-color: var(--white);
}

.store_group_warp .store_group div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.store_group_warp .store_group div>div {
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 3px;
  border: 1px solid var(--stroke-e);
}

.store_group_warp .store_group div p {
  font-size: 14px;
  font-weight: 300;
  text-align: center;
  margin-top: 4px;
}

.group_meat {
  background-color: #FADCDB;
}

.group_sea {
  background-color: #DBF1FA;

}

.group_vegi {
  background-color: #DFFADB;

}

.group_fruit {
  background-color: #F2DBFA;

}

.group_dried {
  background-color: #F4F4F4;

}

.group_food {
  background-color: #F8FADB;

}

.group_bistro {
  background-color: #FAECDB;

}

.group_etc {
  background-color: #DBDBFA;
}

/* 애니메이션 */
@keyframes blink-effect {
  50% {
    opacity: 0;
  }
}

.blink {
  animation: blink-effect 1s infinite;
}



/* /////////////// */
/* market-list_sub */
/* /////////////// */







/* /////////////// */
/* tabbar_cart */
/* /////////////// */
#section_cart {
  padding-bottom: 60px;
}

/* 페이지 상단 - 전체삭제 */
.items_delete_all {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.items_delete_all span {
  font-size: 14px;
  font-weight: 300;
}

.items_delete_all button {
  font-size: 14px;
  font-weight: 300;
  padding: 0;
  background-color: var(--white);
  text-decoration: underline;
  color: var(--gray7);
  /* text-underline-offset: 2px; */
}

/* 카트 아이템 */
.cart_items_cont .item_cont_img {
  position: relative;
  width: 72px;
  height: 72px;
  margin-right: 12px;
}

.cart_items_cont .item_cont_img .badge_time_dis,
.cart_items_cont .item_cont_img .badge_daily_dis {
  border-radius: 0 100px 100px 5px;
  position: absolute;
  bottom: 1px;
  left: 1px;
}

.cart_items_cont .badge_soldout {
  width: 72px;
  font-size: 14px;
  margin-top: 2px;
  display: inline-block;
  text-align: center;
}

.cart_items_cont a .time {
  font-size: 14px;
  letter-spacing: -0.5px;
  color: var(--accent3);
}

.cart_items_cont .item_cont_text a:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.cart_items_cont .item_cont_text .store_name {
  font-size: 14px;
}

.cart_items_cont .item_cont_text .btn_remove {
  font-size: 14px;
  font-weight: 200;
  padding: 0;
  color: var(--gray9);
  background-color: var(--white);
  margin-left: 6px;
}

.cart_items_cont .item_price_cont {
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.cart_items_cont .item_cont_text .item_price_wrap>div {
  margin-bottom: 0;
}

.number_stepper_wrap {
  width: 100px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 3px;
  border: 1px solid var(--stroke-e);
  background-color: var(--white);
  overflow: hidden;
}

.number_stepper_wrap .btn_stepper_increase {
  background-image: url(../images/icon/plus.svg);
}

.number_stepper_wrap .btn_stepper_decrease {
  background-image: url(../images/icon/minus.svg);
}

.number_stepper_wrap .btn_stepper_increase,
.number_stepper_wrap .btn_stepper_decrease {
  display: block;
  border: none;
  width: 28px;
  height: 28px;
  cursor: pointer;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 18px;
  background-color: var(--white);
}

/* 합계 */
.price_total_wrap {
  position: fixed;
  bottom: 50px;
  left: 0;
  right: 0;
  z-index: 11;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f5f5f5;
  height: 42px;
  padding: 4px 16px;
  max-width: 480px;
  margin: 0 auto;
}

.price_total_wrap span {
  font-size: 14px;
  font-weight: 400;
}

.price_total_wrap .price_total {
  font-size: 16px;
  color: var(--gray3);
  font-weight: 500;
}


/* /////////////// */
/* tabbar_myzzim */
/* /////////////// */

/* 찜 리스트 아이템 */
.myzzim_items_cont .item_cont_img {
  width: 100px;
  height: 100px;
}

.myzzim_items_cont .item_cont_text .store_name {
  font-size: 16px;
  font-weight: 400;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.myzzim_items_cont .item_cont_text .store_intro {
  font-size: 14px;
  font-weight: 300;
  margin-top: 8px;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.myzzim_items_cont .item_cont_text .btn_zzim_remove {
  width: 20px;
  height: 20px;
  background: url(../images/icon/zzim_on.svg) no-repeat 50% 50%;
  padding: 10px;
  margin: 0 0 10px 10px;
  cursor: pointer;
}

.myzzim_items_cont .item_cont_text .badge_wrap {
  margin-bottom: 3px;
}

.myzzim_items_cont .item_cont_text .badge_wrap span:first-child {
  margin-right: 4px;
}



/* /////////////// */
/* login */
/* /////////////// */
.test01 {
  /* margin: 0 auto; */
}
.login_wrap {
  padding-top: 24px;
  /* margin: 0 auto; */
}

#login_form>input {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  margin-bottom: 12px;
  border-radius: 5px;
  background-color: var(--white);
  border: 1px solid var(--stroke-c);
}

#login_form>input:focus {
  outline: 1px solid var(--accent1);
}

#login_form>input::placeholder {
  font-size: 14px;
  color: var(--gray9);
}

#login_form .remember_check>input[type="checkbox"] {
  display: none;
}

#login_form label {
  display: flex;
  align-items: center;
  cursor: pointer;
  /* margin-bottom: 4px; */
  font-size: 14px;
  color: var(--accent1);
}

#login_form .remember_check .on {
  cursor: pointer;
  padding-left: 26px;
  background-image: url("../images/icon/checkbox.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  display: inline-block;
}

#login_form .remember_check input[type="checkbox"]:checked + .on {
  background-image: url("../images/icon/checkbox-checked.svg");
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
}

#login_form .remember_check span {
  font-size: 14px;
  color: var(--gray7);
}

#login_form input[type="submit"] {
  cursor: pointer;
  display: block;
  width: 100%;
  height: 48px;
  font-size: 14px;
  background-color: var(--accent1);
  color: var(--white);
  border-radius: 5px;
  margin-top: 32px;
  margin-bottom: 16px;
}

#login_form div {
  text-align: center;
}

#login_form a {
  display: inline-block;
  font-size: 14px;
  color: var(--accent1);
}





/* aside */
/* 어사이드 하단 탭바 */
#tabbar {
  position: fixed;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 1;
}

#tabbar .tabbar_inner {
  padding: 6px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
  max-width: 480px;
  margin: auto;
  border-top: 1px solid var(--stroke-d);
  background-color: var(--white);
}

#tabbar .tabbar_inner a {
  position: relative;
  display: block;
  width: 48px;
  text-align: center;
}

#tabbar .tabbar_inner .active .home {
  background-image: url(../images/icon/home_active.svg);
}

#tabbar .tabbar_inner .active .app {
  background-image: url(../images/icon/app-down.svg);
}

#tabbar .tabbar_inner .active .location {
  background-image: url(../images/icon/map-pin_active.svg);
}

#tabbar .tabbar_inner .active .zzim {
  background-image: url(../images/icon/zzim_active.svg);
}

#tabbar .tabbar_inner .active .share {
  background-image: url(../images/icon/share_active.svg);
}

#tabbar .tabbar_inner .active .basket {
  background-image: url(../images/icon/basket_active.svg);
}

#tabbar .tabbar_inner .active h5 {
  color: var(--accent1);
  font-weight: 500;
}

#tabbar .tabbar_inner a .home {
  display: block;
  background-image: url(../images/icon/home.svg);
  width: 24px;
  height: 24px;
  margin: auto;
  margin-bottom: 4px;
}

#tabbar .tabbar_inner a .app {
  display: block;
  background-image: url(../images/icon/app-down.svg);
  width: 24px;
  height: 24px;
  margin: auto;
  margin-bottom: 4px;
}

#tabbar .tabbar_inner a .location {
  display: block;
  background-image: url(../images/icon/map-pin.svg);
  width: 24px;
  height: 24px;
  margin: auto;
  margin-bottom: 4px;
}

#tabbar .tabbar_inner a .zzim {
  display: block;
  background-image: url(../images/icon/zzim.svg);
  width: 24px;
  height: 24px;
  margin: auto;
  margin-bottom: 4px;
}

#tabbar .tabbar_inner a .share {
  display: block;
  background-image: url(../images/icon/share.svg);
  width: 24px;
  height: 24px;
  margin: auto;
  margin-bottom: 4px;
}

#tabbar .tabbar_inner a .basket {
  display: block;
  background-image: url(../images/icon/basket.svg);
  width: 24px;
  height: 24px;
  margin: auto;
  margin-bottom: 4px;
}

/* 탭바 카트 카운트 */
#tabbar .cart_count {
  position: absolute;
  top: 0;
  right: 5px;
  width: 16px;
  height: 16px;
  border-radius: 16px;
  padding-top: 2px;
  font-size: 10px;
  color: var(--white);
  background-color: var(--accent1);
  font-weight: 300;
}


/*카테고리*/

/*
.category_row {
    display: flex;
    flex-wrap: wrap;
}

.main_category_menu_list {
    flex: 0 0 20%; 
    box-sizing: border-box;
    padding: 5px; 
}
*/

/*Add*/

/* 찜 리스트 */
.section_zzim_list .store_list {
  /*padding-top: 208px;*/
  display: none;
  margin-top: -50px;
}

.section_zzim_list .store_list.on {
  display: block;
}

.section_zzim_list .store_list_item {
  display: flex;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--stroke-c);
}

.section_zzim_list .store_list_item .item_left {
  position: relative;
}

.section_zzim_list .store_list_item .item_left img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 5px;
  border: 1px solid var(--stroke-e);
}

.section_zzim_list .store_list_item .item_left .badge_sale {
  font-size: 12px;
  padding: 2px 4px;
  color: var(--white);
  background-color: var(--accent1);
  border-radius: 3px;
  position: absolute;
  top: 0;
  left: 0;
  margin: 1px 0 0 1px;
}

.section_zzim_list .store_list_item .item_left .store_call {
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--gray5);
  padding: 4px 0;
  position: absolute;
  bottom: 0;
  margin: auto;
  border-radius: 0 0 5px 5px;
}

.section_zzim_list .store_list_item .item_left .store_call i {
  display: block;
  background-image: url(../images/icon/phone.svg);
  width: 14px;
  height: 14px;
}

.section_zzim_list .store_list_item .item_left .store_call p {
  font-size: 12px;
  margin-left: 2px;
  color: var(--white);
  font-weight: 300;
}

.section_zzim_list .store_list_item .item_right {
  position: relative;
  margin-left: 12px;
  width: 100%;
}

.section_zzim_list .store_list_item .item_right .store_title_warp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.section_zzim_list .store_list_item .item_right .store_name {
  font-weight: 400;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.section_zzim_list .store_list_item .item_right .btn_zzim {
  border: none;
  cursor: pointer;
  background: url(../images/icon/zzim_off.svg) no-repeat 50% 50%;
  padding: 10px;
  margin-left: 8px;
}

.section_zzim_list .store_list_item .item_right .btn_zzim.act {
  background: url(../images/icon/zzim_on.svg) no-repeat 50% 50%;
}

.section_zzim_list .store_list_item .item_right .store_products {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  margin-bottom: 12px;
  color: var(--gray7);
}

.section_zzim_list .store_list_item .item_right .store_badge span {
  font-size: 12px;
  font-weight: 300;
  padding: 4px 8px;
  /* color: var(--gray7); */
  background-color: #eee;
  margin-right: 2px;
  border-radius: 100px;
}

.section_zzim_list .store_list_item .item_right .store_badge{
  font-size: 12px;
  font-weight: 300;
  padding: 4px 8px;
  /* color: var(--gray7); */
  background-color: #eee;
  margin-right: 2px;
  border-radius: 100px;
}

/*택배가능*/
.section_zzim_list .store_list_item .item_right .store_badge_parcel {
  font-size: 12px;
  font-weight: 300;
  padding: 4px 8px;
  /* color: var(--gray7); */
  background-color: #d9f3ff;
  margin-right: 2px;
  border-radius: 100px;
}

/*배송가능*/
.section_zzim_list .store_list_item .item_right .store_badge_delivery {
  font-size: 12px;
  font-weight: 300;
  padding: 4px 8px;
  /* color: var(--gray7); */
  background-color: #ffe1ff;
  margin-right: 2px;
  border-radius: 100px;
}


/* 찜리스트 - 전체삭제 */
.zzim_delete_all {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  margin-bottom: 10px;
}

.zzim_delete_all span {
  font-size: 14px;
  font-weight: 300;
}

.zzim_delete_all button {
  font-size: 14px;
  font-weight: 300;
  padding: 0;
  background-color: var(--white);
  text-decoration: underline;
  color: var(--gray7);
  /* text-underline-offset: 2px; */
}

.category_row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 1px;
}
.main_category_menu_list {
    box-sizing: border-box;
    padding: 4px;
}

.item_tumb img {
    width: 100%; /* 이미지가 컨테이너를 꽉 채우도록 함 */
    height: auto; /* 이미지의 비율을 유지 */
}

.item_title_wrap {
    position: relative;
}

.btn_basket {
    position: absolute;
    top: 0; /* 상단에서의 위치 */
    right: 0; /* 오른쪽에서의 위치 */
}


.success_icon {
  position: absolute;
  bottom:10px;
  right:4px;
  border:1px solid #fb4400;
  border-radius: 10px;
  width: 30px;
  padding:1px 0 2px;
  text-align: center;
  background: rgba(255,255,255,0.85);
  white-space: nowrap;
  font-size: 14px;
}

.btn_delete_zzim {
	background-color: #ffffff;
}

/*검색창*/
.keyword_search {
  margin: 8px 16px 12px;
  position: relative;

  border-radius: 10px;
  background: url(./assets/images/icon/search2.svg) 50% no-repeat;
  filter: drop-shadow(0px 1px 4px rgba(0, 0, 0, 0.05));
  background-position: right;
  background-position: 95%;
  background-color: var(--back1);
}

.search_submit_sub {
  position: absolute;
  top:0px;
  right:0px;
  display: inline-block;
  width: 70px;
  height:40px;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  padding: .375rem .75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: .35rem;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  background-color: transparent;
  color:#fff;
  cursor:pointer;
}

