/* 카테고리 가로 스크롤 */
.ellipse_btn ul, .cate_btn ul {
  display: flex;
  gap: 16px;
}

.ellipse_btn li, .cate_btn li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 60px;
  border-radius: 50%;
  font-size: .875rem;
}

.cate_btn li.on {
  background: var(--color--point);
  color: #fff;
}

.ellipse_btn li.yellow {
  background: #fecc4f;
}

.ellipse_btn li.pink {
  background: #f8bfc6;
}

.ellipse_btn li.green {
  background: #d4e25b;
}

.ellipse_btn li.blue {
  background: #aedfdc;
}

.ellipse_btn li.orange {
  background: #f89552;
}

.ellipse_btn li.purple {
  background: #bcb8dd;
}

.ellipse_btn li .img_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 30px;
  background: #F7F7F7;
  flex-shrink: 0;
  overflow: hidden;
}

.ellipse_btn li .img_wrap img {
  height: 100%;
  object-fit: cover;
}

.ellipse_btn li span {
  font-size: .75rem;
  font-weight: 600;
}

/* 대분류 */
.category_select_wrap {
  position: relative;
  padding: 8px 16px;
}

.category_select_wrap button {
  flex-direction: row;
  gap: 2px;
  font-weight: 700;
}

#categoryBtn svg {
  transition: transform 0.3s ease;
}

#categoryBtn.on svg {
  transform: rotate(180deg);
}

.category_select_list {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  transform: translateY(-20px);
  transition: max-height 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
  position: absolute;
  top: 36px;
  left: 0;
  background: #fff;
  z-index: 9999;
}

.category_select_list.on {
  max-height: none;
  padding: 20px 16px 60px;
  transform: translateY(0);
  overflow: visible;
}

.bg_opacity {
  width: 100%;
  height: 100dvh;
  position: absolute;
  top: 240px;
  left: 0;
  background: #00000085;
}

.category_select_list ul {
  display: flex;
  flex-wrap: wrap;
}

.category_select_list li {
  width: 50%;
  padding: 12px 0;
  font-size: 14px;
  color: #939396;
}

.category_select_list li.on {
  color: #333;
  font-weight: 600;
}


/* 둥근 탭메뉴 */
.tab_menu_rounded {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
  transition: .2s ease-out .2s;
}

.tab_menu_rounded.fixed {
  position: fixed;
  margin: 0;
  padding: 12px 16px;
  background: #fff;
}

.tab_menu_rounded .tab {
  padding: 8px 16px;
  border-radius: 20px;
  color: #333;
  background-color: #fff;
  border: 1px solid #DBE0E4;
  font-size: 14px;
  flex-shrink: 0;
}

.tab_menu_rounded .tab.on {
  font-weight: 600;
  color: #fff;
  background: var(--color--point);
  border-color: var(--color--point);
}

.tab_menu_rounded.filter .tab {
  font-weight: 500;
  flex-direction: row;
}

.tab_menu_rounded.filter .tab.on svg {
  color: var(--color--point);
}

.tab_menu_rounded.filter .tab.on {
  color: var(--color--point);
  background: #FFF1EE;
  border-color: var(--color--point);
}

.tab_menu_rounded input, .tab_menu input, .tab_menu_black input {
  display: none;
}

.tab_menu_rounded label, .tab_menu label, .tab_menu_black label {
  white-space: nowrap !important;
}

.tab_cate.tab_menu {
  justify-content: flex-start
}

.tab_cate.tab_menu .tab {
  margin: 0 16px 0 0;
}

.tab_menu_black {
  margin-bottom: 16px;
  padding: 0 8px;
  border-bottom: 1px solid #e9e9ec;
  background: #fff;
}

.tab_menu_black.fixed {
  position: fixed;
  top: 44px;
  z-index: 9;
}

.tab_menu_black .tab {
  padding: 12px 8px;
  color: #939396;
  position: relative;
  font-size: 14px;
}

.tab_menu_black .tab.on {
  color: #333;
  font-weight: 600;
}

/* 매장, 뷰티스트 탭메뉴 */
.tab_menu {
  width: 100%;
  max-width: 800px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #e9e9ec;
  background: #fff;
  transition: .2s ease-out .2s;
}

.tab_menu.fixed {
  margin: 0 auto;
  position: fixed;
  z-index: 9;
  transition: .2s ease-out .2s;
  background: #fff;
}

.tab_menu .tab {
  margin: 0 auto;
  padding: 12px 0;
  color: #939396;
  position: relative;
  text-align: center;
}

.tab_menu .tab.on {
  color: var(--color--point);
  font-weight: 600;
}

.tab_menu .tab.on::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100%;
  height: 2px;
  transform: translateX(-50%);
  background-color: var(--color--point);
}

.tab_menu .tab.on span {
  color: var(--color--point);
}

/* 사이드메뉴 탭메뉴 */
.tab_menu_cate {
  position: fixed;
  width: 100%;
  max-width: 800px;
  display: flex;
  gap: 20px;
  border-bottom: 1px solid #e9e9ec;
  padding: 12px 16px;
  background: #F7F7F9;
  transition: .2s ease-out .2s;
  z-index: 2;
}

.tab_menu_cate .tab {
  color: #939396;
  position: relative;
}

.tab_menu_cate .tab.on {
  color: #333;
  font-weight: 600;
}

.tab_menu_cate .tab.on::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #333;
}

/* 탭메뉴 */
.tabmenu_con {
  display: none;
  margin-bottom: 40px;
}

.tabmenu_con.on {
  display: block;
}

/* 두꺼운 까만탭 */
.tabs {
  width: 100%;
  display: flex;
  justify-content: space-between;
  background-color: #000;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.tabs .tab {
  width: 100%;
  height: 60px;
  line-height: 60px;
  background: none;
  border-bottom: 3px solid #000;
  font-size: 16px;
  color: #ffffff;
  cursor: pointer;
  font-weight: bold;
  opacity: 0.6;
  align-items: center;
}

.tabs .tab.on {
  opacity: 1;
  border-bottom: 3px solid var(--color--point);
}

/* 스텝탭 */
.stepTab {
  display: flex;
  gap: 6px;
}

.stepTab .step span {
  border-radius: 50%;
}

.stepTab .step_num {
  display: none;
  width: 24px;
  height: 24px;
  color: #fff;
  background: var(--color--point);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  line-height: 24px;
}

.stepTab .step_bullet {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #D9D9D9;
}

.stepTab .step.on .step_num {
  display: inline-block;
}

.stepTab .step.on .step_bullet {
  display: none;
}

.empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #939396;
}

/* 포인트라인탭메뉴 */
.tab_container-tabs {
  width: 100%;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #dadde0;
}

.tab_container-tabs .tab-button {
  width: 50%;
  padding: 14px 0 12px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s;
}

.tab_container-tabs .tab-button.on {
  background-color: #fff;
  border-bottom: 2px solid var(--color--point);
  font-weight: bold;
  color: var(--color--point);
}

/* 첨부파일 섹션 스타일 */
.attachment-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.upload-container {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: end;
  gap: 5px;
}

.upload-box {
  display: inline-block;
  position: relative;
  width: 70px;
  height: 70px;
  border: 1px dashed #e9e9ec;
  border-radius: 8px;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
}

.upload-box .clear-button {
  display: none !important;
}

.upload-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #999;
  font-size: 14px;
  cursor: pointer;
}

.upload-icon {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 4px;
}

.upload-count {
  font-size: 12px;
  color: #666;
}

.attachment-info {
  font-size: 0.75rem;
  letter-spacing: -0.025rem;
  color: #777;
  display: flex;
}

/* 레이아웃 타이틀 */
.layout_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px !important;
  padding: 0 16px;
}

.slide .layout_header {
  padding: 0;
}

.layout_header p {
  font-size: 20px;
  font-weight: 700;
}

.layout_header>span {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: .85rem;
  color: var(--color--more);
  text-align: right;
}

/* 레이아웃 콘텐츠 */
.layout_con_wrap {
  width: 100%;
  display: flex;
  gap: 8px;
}

.layout_con_wrap img {
  object-fit: cover;
  border-radius: 4px;
}

.layout_con_wrap .title {
  margin-top: 6px;
  font-weight: 600;
  font-size: .9375rem;
  line-height: 18px;
}

.layout_con_info {
  width: 100%;
  font-size: .875rem;
}

.layout_con_info span:not([data-r-field="price"], [data-r-field="position"], [data-r-field="shop_name"], [data-r-field="brand"], [data-r-field="discount_percentage"]) {
  font-size: .75rem;
  font-weight: 600;
  color: var(var(--color--gray));
}

.layout_con_info h4 {
  font-weight: 600;
  /* line-height: 20px; */
}

.layout_con_info>p {
  font-weight: 500;
}

.layout_con_info>p, .layout_con_info>div, .layout_con_info>span {
  margin-bottom: 4px;
}

.layout_con_info .dis {
  color: #EA6062;
}

.product_img_wrap {
  position: relative;
  flex-shrink: 0;
}

.product_soldout {}

.product_soldout::after {
  content: '품절';
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #00000080;
  color: #fff;
  font-size: 16px;
  border-radius: 4px;
}

.layout_img_wrap {
  width: 100%;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
}

.layout_img_wrap::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.6) 100%);
}

.layout_img_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.layout_img_wrap .caption {
  position: absolute;
  padding: 0 26px;
  left: 0;
  bottom: 30px;
  z-index: 1;
  color: #fff;
}

.layout_img_wrap .caption p {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 6px;
}

.layout_img_wrap .caption span {
  font-weight: 300;
  font-size: 15px;
}

.shop_list img {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  object-fit: cover;
}

.square_w132 li:not(.badge) {
  width: 140px !important;
}

.square_w132 img {
  width: 140px;
  height: 140px;
}

.square_w148 {
  width: 148px !important;
}

.square_w148 .beautistImg {
  width: 148px !important;
  height: 200px !important;
}

.square_w148 img {
  width: 148px !important;
  height: 200px
}

.square_w265 {
  width: 265px !important;
}

.square_w265 img {
  width: 265px !important;
  height: 156px;
}

.square_w100 {
  width: 100% !important;
}

.square_w100 img {
  width: 100% !important;
}

.square_w230 {
  width: 230px !important;
}

.square_w230 img {
  width: 230px !important;
}

.img104 {
  width: 104px;
  height: 104px;
  object-fit: cover;
}

.w_256 {
  width: 256px;
}

.w_265 {
  width: 265px;
}

.h_200 {
  width: 100%;
  height: 200px;
  /* border-radius: 8px; */
  overflow: hidden;
}

.h_200 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.h_186 {
  height: 186px !important;
}

.h265 {
  height: 265px !important;
}

.h_348 {
  height: 348px;
}

.b-r-4-0 {
  border-radius: 4px 4px 0 0 !important;
}

.b-r-0-4 {
  border-radius: 0 0 4px 4px !important;
}

.quadrate {
  aspect-ratio: 1/1 !important;
}

.img-gradient {
  overflow: hidden;
  border-radius: 8px;
}

.img-gradient::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgb(17 17 17 / 79%) 100%)
}

.img-gradient.img-s::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(45, 45, 45) 100%);
}

.img-lay {
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

.img-lay span {
  color: #fff;
}

/* 쇼츠 레이아웃 */
.layout_shorts {
  width: 100%;
  margin-top: 32px;
}

.layout_shorts .tab_menu_rounded {
  padding: 0 24px;
}

.shorts_cards {
  padding: 0 24px;
  gap: 8px;
  display: flex;
  flex-direction: column;
}

.shorts_card {
  position: relative;
  overflow: hidden;
}

.shorts_card iframe {
  border-radius: 8px;
}

.layout_shorts .card_text {
  position: absolute;
  bottom: 0;
  width: 100%;
  color: #FFF;
  padding: 10px;
}

.shorts li {
  height: 38vh;
  border-radius: 4px;
  overflow: hidden;
}

.shorts li>div {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.shorts li video {
  height: 100%;
  object-fit: cover;
}

.empty {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 메인 슬라이드  */
.mainSwiper {
  width: 100%;
  height: calc(100dvh - 126px - 68px - 12vh);
}

.mainSwiper .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mainSwiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (min-width: 768px) {
  .mainSwiper .swiper-slide img {
    /* width: auto; */
    height: 100%;
  }
}

.mainSwiper .slide-caption {
  width: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  color: #fff;
}

.mainSwiper .slide-caption p {
  font-size: 28px;
  line-height: 32px;
}

.mainSwiper .slide-caption span {
  font-weight: 300;
  line-height: 28px;
}

.mainSwiper .swiper-pagination {
  width: 40px;
  padding: 4px;
  left: 86% !important;
  bottom: 12px;
  border-radius: 10px;
  background-color: rgba(158, 158, 158, 0.4);
  color: #fff;
  font-size: .6875rem;
  font-weight: 300;
}

/* 콘텐츠 슬라이드 */
.conSwiper {
  width: 100%;
  height: 400px;
}

.conSwiper .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.conSwiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  filter: brightness(.7);
}

.conSwiper .slide-caption {
  width: 85%;
  position: absolute;
  bottom: 15%;
  left: 8%;
  z-index: 1;
  color: #fff;
  text-align: left;
}

.conSwiper .slide-caption p[data-r-field="title"] {
  font-size: 28px;
  font-weight: 500;
  line-height: 36px;
  margin: 12px 0;
}

.conSwiper .slide-caption p[data-r-field="short_text"] {
  font-size: 1rem
}

.conSwiper .slide-caption span {
  font-size: .875rem;
  font-weight: 300;
  line-height: 28px;
}

.keyword_list ul {
  display: flex;
  gap: 4px;
}

.conSwiper .keyword_list li {
  font-size: .875rem
}

.content_list .keyword_list li {
  font-size: .875rem;
  color: #a5a5a5;
}

.conSwiper .swiper-pagination {
  width: 85%;
  top: auto;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #ffffffe2;
}

/* 리뷰 이미지 슬라이드 */
.reviewSwiper .swiper-button-next, .reviewSwiper .swiper-button-prev, .snapSwiper .swiper-button-next, .snapSwiper .swiper-button-prev {
  width: 42px;
  height: 48px;
  color: #fff;
  background: #0000004D;
}

.reviewSwiper .swiper-button-prev, .snapSwiper .swiper-button-prev {
  left: 0;
}

.reviewSwiper .swiper-button-next, .snapSwiper .swiper-button-next {
  right: 0;
}

.reviewSwiper .swiper-button-next:after, .reviewSwiper .swiper-button-prev:after, .snapSwiper .swiper-button-next:after, .snapSwiper .swiper-button-prev:after {
  font-size: 30px;
}

.reviewSwiper .swiper-button-disabled, .snapSwiper .swiper-button-disabled {
  display: none;
}

/* 매장 목록 레이아웃 */
.location_wrap {
  padding: 18px 0;
  margin-bottom: 12px;
  border-bottom: 1px solid #E2E2E2;
}

.location span {
  color: #333;
  font-size: .875rem;
  font-weight: 400;
}

.location_text {
  margin-top: 2px;
  font-weight: 700;
}

.location_text span {
  font-size: .875rem;
  font-weight: 400;
}

.shopSwiper, .productSwiper {
  width: 100%;
  padding: 0 16px;
}

.brandProductSwiper {
  width: 100%;
  padding: 0 16px;
}

.shopSwiper .shop_header {
  height: 61px;
}

.shop_list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}

.shop_list .shop_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4px;
}

.shop_list_header {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  flex: 1;
  gap: 4px;
}

.shop_list_header .shop_name {
  height: 21px;
  display: flex;
  gap: 4px;
}

.shop_list_header .location, .shop_list_header .location span {
  color: #939396;
  font-size: .875rem;
}

.price_wrap {
  display: flex;
  align-items: flex-end;
  gap: 4px;
}

.price_wrap .discount, .price_wrap .discount span {
  font-size: .875rem !important;
  font-weight: 700 !important;
  color: #fa393c !important;
}

.shop_header h2, .shop_header h3 {
  font-size: 1.125rem;
  font-weight: 700;
}

.shop_header span {
  font-size: 0.85rem;
  font-weight: 400;
}

.shop_list_mainImg {
  width: 100%;
}

.shop_list_mainImg img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  object-position: center;
}

.market_brand_list_mainImg {
  width: 100%;
}

.market_brand_list_mainImg img {
  width: 100%;
  height: 185px;
  object-fit: cover;
  object-position: center;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0 16px;
}

.grid05 {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
}

.grid05 .shop_list {
  margin-bottom: 8px;
}

.grid.st .st_wrap {
  border: 1px solid #EFEFEF;
  border-radius: 4px;
  overflow: hidden;
}

.grid.st .shop_list:not([data-r-type="style"] .shop_list) {
  height: auto;
}

.grid img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.grid.con li {
  margin-bottom: 12px;
}

.grid.con img {
  height: 258px;
}

.grid.st img {
  height: 100%;
}

@media screen and (min-width: 768px) {
  .grid.st .shop_list:not([data-r-type="style"] .shop_list) {
    height: auto
  }

  .grid.st .st_wrap {
    height: auto
  }

  .grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.shop_list .beautist_list .beautist {
  width: calc(100% / 3);
}

.shop_list .beautist_list .beautist.one {
  width: 100%;
}

.shop_list .beautist_list .beautist.one>div {
  flex-direction: row;
}

.shop_list .beautist_list .beautist.one .beautistName {
  padding: 8px;
}

.square_w148 .beautist_tag {
  /* height: 21px; */
}

.beautist_tag {
  /* height: 20px; */
}

.beautist_tag .badge {
  margin-right: 4px;
}

.shop_list .beautist_list .beautist.one .beautistName p[data-r-field="info"] {
  font-size: .875rem;
}

/* 뷰티스트 리스트 */
.beautist_list {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  gap: 8px;
}

.beautist_list .beautist, .beautist_list .beautist>div {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 6px;
}

.beautist_list .beautist svg, .shop_list .product_img_wrap svg {
  width: auto;
  height: auto;
}

.beautist_list .beautistProfile {
  width: 100%;
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.beautist_list .beautistProfile .btn {
  width: 72px;
  height: 36px;
}

.beautist_list .beautistCount {
  display: flex;
  flex-direction: row;
  gap: 12px;
  font-size: .875rem;
  margin-top: 8px;
}

.beautist_list .beautistImg {
  width: 100%;
  height: 28vw;
  position: relative;
}

.beautist_list .square_w230 .beautistImg {
  height: 310px;
}

.beautist_list .beautistImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.beautistName:not(.layout_con_info) {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.beautistName div {
  /* height: 16px; */
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  line-height: 16px;
}

.beautistName .beautist {
  font-weight: 700;
  font-size: 1.125rem;
}

.beautistName span {
  font-size: 14px;
}

.brandProdcutInfo {
  width: 100%;
}

.brandProdcutInfo .product-style {
  display: flex;
  gap: 4px;
  align-items: baseline;
}

.brandProdcutInfo .product-style h5 {
  font-size: 13px !important;
  font-weight: 500;
}

.brandProdcutInfo .product-style .price-style {
  display: flex;
  font-weight: 600 !important;
}

.brandProdcutInfo .product-style .price-style span {
  font-weight: 600 !important;
}

.brandProdcutInfo .product-style .price-style * {
  font-size: 14px !important;
  font-weight: 700;
}

.brandProdcutInfo .bedge-style {
  font-size: 0.7rem !important;
}

.brandProduct .shop_list .shop_header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: baseline;
  gap: 4px;
}

.shop_list .brand_list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.shop_list .brand_list .beautist_list .beautistImg {
  height: 33vw;
}

#brandProductList, #brandTicketList {
  min-height: auto;
}

.cateLank {
  gap: 8px;
}

.cateLank .beautistImg {
  height: 30vw;
}

.beautist .heart_wrap, .shop_list .product_img_wrap .heart_wrap {
  position: absolute;
  right: 8px;
  bottom: 8px;
  color: #fff;
  text-shadow: 0px 1px 3px #b2b2b2;
}

.beautist_list.col {
  padding: 0 16px;
  flex-direction: column;
  gap: 60px;
}

.beautist_list.col .beautist {
  position: relative;
  flex-direction: row;
  align-items: center;
  gap: 14px;
}

.beautist_list.col .beautist:not(:last-child)::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 100%;
  height: 1px;
  transform: scaleY(.5);
  background: #e9e9ec;
}

.beautist_list.col .beautist img {
  width: 100px;
  height: 100px;
}

.beautist_list.col span[data-r-field="text1"] {
  display: inline-block;
  color: #939396;
  margin: 4px 0;
}

@media screen and (min-width: 768px) {
  #brandTicketList .beautist_list .beautistImg {
    height: 14vw !important;
  }

  .shopSwiper, .productSwiper, .brandProductSwiper {
    width: 100%;
    margin-left: 0 !important;
    padding: 0 16px;
  }

  .shop_list .beautistImg, .brand_list .cateLank .beautistImg, .brand_list .beautistImg {
    height: 14vw !important;
  }
}

@media screen and (min-width: 1024px) {
  #brandTicketList .beautist_list .beautistImg {
    height: 150px !important;
  }

  .shop_list .beautistImg, .brand_list .cateLank .beautistImg, .brand_list .beautistImg {
    height: 150px !important;
  }
}

/* 비제휴 매장 레이아웃 */
.non_affiliated_list {
  margin: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.non_affiliated_list li {
  position: relative;
  margin-bottom: 24px;
}

.non_affiliated_list li::after {
  content: '';
  position: absolute;
  bottom: -24px;
  left: 0;
  width: 100%;
  height: 1px;
  transform: scaleY(.5);
  background: #e9e9ec;
}

.non_affiliated_shop {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.non_affiliated_shop img {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  object-fit: cover;
}

.non_affiliated_list .shop_header {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 64%;
}

.non_affiliated_list li:last-child {
  margin: 0;
}

.non_affiliated_list li:last-child::after {
  display: none;
}

/* 전체 매장 */
#shopAll {
  display: flex;
  flex-direction: column;
}

#shopAll li {
  position: relative;
  padding: 24px 0;
}

#shopAll li:first-child {
  padding-top: 0;
}

#shopAll li::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 24px;
  width: calc(100% - 48px);
  height: 1px;
  transform: scaleY(.5);
  background: #DADDE0;
}

#shopAll .scroll_x .line_tag, .member_tag .line_tag {
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  left: 16px;
  width: 40px;
  height: 42px;
  background: linear-gradient(155.82deg, #FF3100 7.82%, #F25833 61.06%);
  color: #fff;
  border-radius: 0 0 8px 8px;
}

#shopAll .scroll_x .line_tag span, .member_tag .line_tag span {
  width: 100%;
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  line-height: 12px;
}

#shopAll .scroll_x img {
  width: 100%;
  height: 100%;
}

#shopAll .scroll_x>div:first-child {
  width: 100%;
  height: 48vw;
  min-height: 180px;
  max-height: 300px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

#shopAll .scroll_x .heart_wrap {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 999;
}

#shopAll .shop_header {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

#shopAll .snapList {
  display: flex;
  flex-direction: row;
  gap: 8px;
}

#shopAll .snapList>div {
  width: 48vw;
  min-width: 180px;
  max-width: 280px;
  aspect-ratio: 1/1;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

/* 매장 상세 */
.shop_info {
  padding: 24px 16px 32px;
}

.shop_info .shop_category {
  display: flex;
  gap: 12px;
  margin-right: 14px;
}

.shop_list_header span[data-r-field="station"] {
  position: relative;
  padding-left: 12px;
}

.shop_info .shop_category span[data-r-field="keyword"]::after,
.shop_list_header span[data-r-field="station"]::after {
  content: '';
  width: 0.5px;
  height: 14px;
  background: #939396;
  position: absolute;
  top: 0px;
  left: -6px;
  transform: scalex(0.5);
}

.shop_list_header span[data-r-field="station"]::after {
  left: 6px;
  top: 3px;
}

.shop_info .shop_header {
  margin-bottom: 12px;
}

.shop_info .shop_header span {
  color: #939396;
  font-size: .75rem;
  position: relative;
  flex-shrink: 0;
}

.shop_info .shop_header h2 {
  margin-top: 8px;
}

.shop_info .shop_intro {
  display: flex;
  justify-content: space-between;
}

.shop_detail {
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: .9375rem;
}

.shop_detail svg {
  width: 20px;
  flex-shrink: 0;
}

.shop_detail .blue {
  width: 42px;
  flex-shrink: 0;
}

.shop_detail>div {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.shop_detail div>p {
  line-height: 20px;
}

.drop_wrap {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  /* flex: 1; */
  margin: 0px;
}

.drop_toggle {
  width: 16px;
  height: 20px;
}

.shop_amenities ul {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.shop_amenities li {
  font-weight: 300;
}

.shop_info .sns_wrap {
  justify-content: flex-start;
  gap: 8px;
  margin-top: 16px;
}

.shop_info .sns_icon {
  width: 32px;
  height: 32px;
}

[data-r-field="description"]>p>img {
  width: 100%;
}

.shop_info_wrap .shop_content>div:not(#shopMap) {
  padding: 0 16px;
}

.shop_info_wrap .shop_content div[data-r-field="info"] {
  font-size: .875rem;
}

.sns_wrap {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.sns_wrap li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: .75rem;
}

.sns_icon {
  width: 48px;
  height: 48px;
  background: var(--color--point);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#shopMap {
  width: calc(100% - 32px);
  height: 180px;
  margin: 0 auto;
  border-radius: 12px;
}

#shopdetailMap {
  width: 100%;
  height: calc(100vh - 48px - 68px);
}

.service {
  padding: 0 16px;
}

.shop_etc {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.shop_etc h4 {
  font-size: .875rem;
  font-weight: 600;
  line-height: 20px;
}

.shop_etc p {
  font-size: .75rem;
}

/* 매장 콘텐츠 */
.contents_wrap {
  padding-bottom: 68px;
}

.shop_contents_wrap, .search_result_wrap {
  display: none;
  margin-top: 32px;
}

.shop_contents_wrap.on, .search_result_wrap.on {
  display: block;
}

.shop_bannerWrap {
  width: 100%;
  padding: 0 16px;
}

.shop_bannerWrap.ad {
  position: relative;
}

.shop_bannerWrap.ad::after {
  content: 'AD';
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 12px;
  text-align: center;
  font-size: 11px;
  background: #fff;
  color: #adadad;
  font-weight: 400;
  border-bottom-left-radius: 4px;
}

.shop_contents_wrap .ad::after {
  right: 16px;
}

.shop_bannerWrap img {
  width: 100%;
  border-radius: 4px;
}

.shop_content:not(:last-child) {
  position: relative;
  padding-bottom: 56px;
}

.shop_content:not(:last-child)::after {
  content: '';
  position: absolute;
  bottom: 24px;
  left: 0;
  width: 100%;
  height: 8px;
  background: #F6F6F6;
}

.shop_content .productSwiper {
  margin-bottom: 24px;
}

/* 쿠폰 */
.coupon li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
  padding: 12px 16px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e9e9ec;
}

.coupon li::after {
  content: "";
  position: absolute;
  top: 1px;
  bottom: 1px;
  left: 0;
  width: 4px;
  background: var(--color--point);
}

.coupon li h4 {
  flex: 1;
  font-weight: 600;
}

/* 소식 */
.post_list {
  padding: 32px 24px;
}

.post_list li {
  width: 100%;
  margin-bottom: 12px;
  padding: 20px;
}

.post_list li .period {
  font-size: .875rem;
}

.post_list li p {
  padding: 8px 0;
}

.post_list li .created {
  color: #939396;
  font-size: .75rem;
}

.post {
  gap: 8px;
}

.post_box {
  flex-shrink: 0;
  border: 1px solid #e9e9ec;
  border-radius: 8px;
}

.post_box.square_w265 div {
  width: 100%;
  height: 100%;
  padding: 20px;
}

.post_box h4 {
  padding: 8px 0;
}

.post_img {
  margin: 8px 0;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.post_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 메뉴 */
#menuTab {
  padding: 8px 24px;
}

.menu_list li {
  width: 100%;
  position: relative;
  padding: 24px;
}

.menu_list li:last-child {
  padding-bottom: 0;
}

.menu_list li:after {
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background-color: #f3f3f3;
  content: "";
}

.menu_list li img {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.menu_list li .menu_info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.menu_list li .menu_info p {
  font-size: 1rem;
  font-weight: 500;
}

.menu_list .price_wrap {
  display: flex;
  gap: 8px;
}

.menu_info .dis {
  font-weight: 500;
  color: #fa393c;
}

.menu_info .price {
  font-weight: 500;
}

.menu_info .cost {
  color: #B5B5B5;
  text-decoration: line-through;
}

.menu_list .option_wrap {
  display: flex;
  gap: 8px;
}

.menu_list .option_wrap span {
  padding: 4px;
  border-radius: 4px;
  color: #fff;
  background: #d4d4d4;
  font-size: .75rem;
  font-weight: 300;
}

.menu_option {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: .9375rem;
}

.menu_option li {
  display: flex;
}

.menu_option .option_name {
  width: 72px;
}

.menu_option .length_option {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.menu_option .length_option div>span:first-child {
  display: inline-block;
  width: 88px;
}

/* 리뷰 */
.review .rating-container {
  position: relative;
  width: 100%;
  margin-bottom: 48px;
  padding: 32px 16px;
  background: #fff;
  color: var(--color--point);
  border-radius: 8px;
  display: flex;
  align-items: center;
}

.review .rating-container::after {
  content: '';
  position: absolute;
  bottom: -24px;
  left: 0;
  width: 100%;
  height: 6px;
  background: #F6F6F6;
}

.review .rating-summary {
  width: 40%;
  /* text-align:left; */
  padding-right: 0px;
  border-right: 1px solid #eee;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.review .rating-summary .total-count {
  font-size: 14px;
  color: #333;
  margin-bottom: 10px;
}

.review .rating-summary .total-count span {
  color: var(--color--point);
}

.review .rating-summary .star-rating {
  font-size: 32px;
  color: #333;
  display: flex;
  align-items: center;
}

.review .rating-summary .star-rating span {
  color: var(--color--point);
  font-size: 14px;
  margin-left: 10px;
}

.review .rating-summary .write-review {
  display: inline-block;
  background-color: var(--color--point);
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 8px 20px;
  font-size: 13px;
  cursor: pointer;
  margin-top: 10px;
}

.review .rating-bars {
  width: 60%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 10px 0;
  margin-left: 10px;
}

.review .rating-bar {
  text-align: center;
  width: 60px;
  position: relative;
}

.review .review-count {
  position: absolute;
  top: 100%;
  /* 막대 아래로 이동 */
  left: 50%;
  transform: translateX(-50%);
  background: var(--color--point);
  color: #fff;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
  display: block;
  margin-top: 5px;
}

.review .review-count:after {
  content: "";
  position: absolute;
  top: -10px;
  /* 화살표 위치를 막대 바로 위로 */
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent var(--color--point) transparent;
  /* 화살표 모양 */
}

.review .bar {
  width: 8px;
  height: 100px;
  background: #FAFAFA 0% 0% no-repeat padding-box;
  border-radius: 4px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  overflow: visible;
}

.review .bar span {
  display: block;
  width: 100%;
  background: var(--color--point);
  border-radius: 4px 4px;
  /* 막대의 상단만 둥글게 설정 */
}

.review .bar .five {
  height: 89%;
}

.review .bar .four {
  height: 10%;
  background: var(--color--point);
  opacity: 0.6;
}

.review .bar .three {
  height: 1%;
  background: var(--color--point);
  opacity: 0.3;
}

.review .bar .empty {
  height: 0%;
}

.review .percentage {
  margin-bottom: 5px;
  font-size: 12px;
  color: #666;
}

.review .rating-label {
  margin-top: 5px;
  font-size: 14px;
  color: #333;
}

.review_header {
  position: relative;
  margin-bottom: 48px;
}

.review-list li:last-child .review-item {
  margin-bottom: 0 !important;
}

.review_gallery img, .review_content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review .layout_header {
  justify-content: flex-start;
}

.review .star {
  margin-left: 8px;
  color: var(--color--point);
  font-size: 1.125rem;
}

.review .star span[data-r-field="score"] {
  margin-left: 4px;
  color: #333;
  font-size: 1rem;
}

.review_gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  border-radius: 4px;
  overflow: hidden;
}

.review_gallery li {
  width: 100%;
  aspect-ratio: 1/1;
}

.review_gallery li.more {
  position: relative;
}

.review_gallery li.more:after {
  content: '+ 더보기';
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  background: #00000080;
  color: #fff;
  font-size: .875rem;
}

.review_list>li:not(:last-child) {
  position: relative;
  margin-bottom: 48px;
}

.review_header::after, .review_list>li:not(:last-child)::after {
  content: '';
  position: absolute;
  bottom: -24px;
  left: 16px;
  width: calc(100% - 32px);
  height: 1px;
  transform: scaleY(.5);
  background: #e9e9ec;
}

.review_info {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.review_info, .review_text, .review_action {
  padding: 0 16px;
}

.star_date {
  position: relative;
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: #8B8B8B;
}

.star_date::after {
  content: '';
  width: 1px;
  height: 11px;
  background: #E9E9EC;
  position: absolute;
  top: 3px;
  left: 40px;
}

.review_info span[data-r-field="beautist"] {
  color: #969696;
  font-size: .875rem;
}

.review_text {
  margin: 16px 0;
}

.review_text p {
  font-size: 14px;
  line-height: 20px;
}

.review_text span {
  font-size: .75rem;
  color: #939396;
}

.review_action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #8B8B8B;
}

.photos {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.photos li {
  width: 100%;
  aspect-ratio: 1/1;
}

.photos.snap li {
  aspect-ratio: 1/1.3;
}

.photos img {
  width: 100%;
  height: 100%;
  /* max-height: 280px; */
  object-fit: cover;
}

/* 뷰티스트 */
.beautist_info {
  width: 100%;
  padding: 24px;
  font-size: .9375rem;
}

.beautist_info .beautistName {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.open_close {
  width: fit-content;
  gap: 8px;
}

.open_close_status {
  font-weight: 700;
  flex-shrink: 0;
}

.open_close_status.open {
  color: var(--color--point);
}

.open_close_status.close {
  color: #a5a5a5;
}

.open_close_time {
  display: none;
  flex-direction: column;
  gap: 6px;
}

.open_close_time.on {
  display: flex;
}

.open_close_time li.on {
  font-weight: 700;
}

/* 스타일 상세 */
.beautistProfile>img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.beautistProfile span[data-r-field="shop_name"] {
  /* font-size: 1rem; */
  font-weight: 500;
}

/* 연관상품 */
.relatedSwiper {
  border-bottom: 1px solid #F0F0F0;
}

.related_items li {
  width: 100%;
  background: #fff;
  border-radius: 4px;
}

.related_items li>div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 12px;
}

.related_items img {
  width: 56px;
  height: 56px;
  border-radius: 4px;
  object-fit: cover;
  flex-shrink: 0;
}

.related_items .items_info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.related_items .dis {
  font-weight: 500;
  color: #fa393c;
}

.related_items .price {
  font-weight: 500;
}

/* 폼양식 */
.form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 24px 16px 100px;
}

#orderForm .form {
  padding: 0;
}

.form .note {
  font-size: .75rem;
  line-height: 30px;
}

.form>div {
  width: 100%;
}

.form table {
  width: 100%;
}

.form tr {
  display: block;
  margin-bottom: 16px;
}

.form th, .form td {
  display: block;
  text-align: left;
  padding: 4px 0;
}

.form td>div:not(.char_counter) {
  width: 100%;
}

.form label, .form .tos_title p {
  display: inline-flex;
  font-size: .875rem;
  font-weight: 600;
}

.form input:not([type="checkbox"]), .form select, .form textarea {
  width: 100%;
  margin: 0 auto;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #e9e9ec;
  border-radius: 4px;
}

.form input[type="text"] {
  padding: 0 30px 0 12px;
}

.form .half {
  display: flex;
  gap: 4px;
}

.form td.address {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-content: flex-start;
  gap: 4px;
}

.form .postcode_box {
  width: 100%;
  display: flex;
  gap: 4px;
}

.form .postcode_box>div:first-child {
  width: 100%;
}

.form .postcode_box input[type="button"] {
  padding: 0 16px 0 16px;
  flex: 1;
}

.form .default_checkbox {
  margin-top: 8px;
  display: flex;
  align-items: center;
}

.form .default_checkbox label {
  font-weight: normal;
}

.clear-button {
  position: absolute;
  right: 12px;
  top: 49%;
  width: 19px;
  height: 19px;
  transform: translateY(-50%);
  display: none;
  padding: 0 5px;
  background: #DBE0E4;
  color: #fff;
  border-radius: 50%;
  font-size: .875rem;
}

.form textarea {
  height: 84px;
  padding: 15px 15px 24px;
  resize: none;
  overflow: hidden;
}

.form .message_container {
  position: relative;
}

.form .message_container textarea {
  height: 200px;
}

.form .char_counter {
  position: absolute;
  right: 8px;
  bottom: 16px;
  font-size: .75rem;
  color: #939396;
}

.form .address .zipcode input {
  width: calc(50% - 2px);
}

.form .address .zipcode input[type="button"] {
  float: right;
}

.form .inform {
  margin: 16px 0;
  padding: 16px;
  border: 1px solid #e9e9ec;
  border-radius: 4px;
  font-size: .75rem;
  line-height: 18px;
}

.form .tos_checkbox {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.form .tos_checkbox label {
  font-weight: normal;
}

.form input[type="checkbox"] {
  appearance: none;
  background-color: #fff;
  background-clip: content-box;
  /* padding: 2px; */
  width: 16px;
  height: 16px;
  border: 1px solid #e9e9ec;
  border-radius: 4px;
  /* 둥근 모서리 */
  margin-right: 4px;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}

.form input[type="checkbox"]:checked {
  border-color: var(--color--point);
  background-color: var(--color--point);
}

.form input:disabled {
  background: #F5F5F5;
}

button:disabled {
  background: #c9c9c9 !important;
}

/* 20251209 */
.form.point {
  align-items: flex-start;
}

.point-group {
  display: flex;
  flex-direction: row;
  gap: 4px;
}

.point-group .point-box {
  width: 70%;
}

.btn-point {
  width: 30%;
  background-color: var(--color--point);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 16px 0 16px;
  height: 40px;
  border: none;
  border-radius: 4px;
}
.point_des {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.point_des p {
  margin-top: 8px;
  font-size: 14px;
}
.point_des p:first-child {
  color: #A7A7A7;
}
/* 체크 표시 추가 */
.form input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 12px;
  border: solid white;
  border-width: 0 2px 2px 0;
  top: 39%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.form .coupon {
  display: flex;
  gap: 4px;
}

.form .coupon .btn {
  height: 40px;
}

.checkbox_wrap {
  display: flex;
  justify-content: space-between;
}

.checkbox_wrap .checkbox {
  display: flex;
  align-items: center;
}

.checkbox_wrap input {
  display: none;
}

.checkbox_wrap .checkmark {
  display: inline-block;
  width: 1.1rem;
  height: 1.1rem;
  background: #fff;
  border: 1px solid var(--color--point);
  border-radius: 2px;
  margin-right: 5px;
  position: relative;
  transition: background-color 0.3s, border-color 0.3s;
}

.checkbox input:checked+.checkmark {
  background-color: var(--color--point);
  border-color: var(--color--point);
}

.checkbox input:checked+.checkmark::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 12px;
  border: solid white;
  border-width: 0 2px 2px 0;
  top: 39%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

/* 제휴 신청 테이블 */
.apply_affiliated {
  max-width: 480px;
  margin: 0 auto;
}

.apply_affiliated img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.apply_affiliated .btn_wrap {
  margin: 0 0;
}

.apply_benefits {
  margin: 32px 0 0;
}

.apply_benefits>* {
  margin: 0 24px;
}

.apply_benefits h3 {
  padding-bottom: 8px;
  font-size: 1.125rem;
  font-weight: 700;
}

.apply_benefits .inform {
  padding: 16px;
  background: #F6F6F6;
  border-radius: 8px;
  font-size: .875rem;
}

.apply_benefits .inform ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-evenly;
}

.apply_benefits .inform ul li {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 0;
}

/* 로그인/회원가입 */
.sign_container {
  width: 100%;
  max-width: 800px;
  height: 100dvh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.sign_container .form {
  padding: 32px 16px 0;
}

.sign_container .logo {
  margin-bottom: 58px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.sign_container .logo img {
  width: 128px;
  height: 128px;
  object-fit: cover;
}

.sign_container .logo p {
  color: #888888;
}

.login_social {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  width: 100%;
}

.login_social a span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

/* 장바구니 카트 */
#sticky-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background-color: #fff;
  padding: 16px;
  transition: all 0.3s ease;
  border-bottom: 1px solid #eee;
}

.choice-del {
  font-size: .875rem;
  border-radius: 5px;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  padding: 4px 8px;
}

.cart_container .item-body {
  padding: 0 16px;
}

.cart_container .item-details li {
  width: 100%;
  padding: 16px 0;
  border-bottom: 1px solid #e5e7ea;
  position: relative;
}

.cart_container .item-details li:last-child {
  border-bottom: none;
}

.cart_container .item-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: absolute;
}

.item-list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
}

.item-list .flex-row {
  width: 100%;
  padding-right: 22px;
}

.item-list img {
  width: 80px;
  height: 80px;
  border-radius: 4px;
  object-fit: cover;
}

.item-list-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.item-list .quantity-btn {
  width: 28px;
  height: 28px;
  justify-content: center;
  align-items: center;
}

.item-list .quantity-input {
  width: 50px;
  text-align: center;
  border: none;
  font-size: 16px;
  height: auto;
  border-left: 1px solid #f0f0f0;
  border-right: 1px solid #f0f0f0;
  border-radius: 0;
  font-size: .85rem;
}

.item-list .update-btn {
  border: 1px solid #f0f0f0;
  padding: 5px 10px;
  border-radius: 4px;
  margin-left: 10px;
  font-size: .85rem;
  height: 100%;
  justify-content: center;
}

.item-list .border-line {
  display: flex;
  border: 1px solid #f0f0f0;
  border-radius: 3px;
}

.empty-cart-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: calc(100dvh - 48px - 59px - 117px);
}

.icon-container {
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
}

.icon-container img {
  width: 50px;
  height: 50px;
}

.empty-cart-container h3 {
  font-size: 1.8rem;
  color: var(--color--point);
  margin-bottom: 0.5rem;
}

.empty-cart-container p {
  color: #666;
  margin-bottom: 1.5rem;
}

.home-button {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 1.2rem;
  color: #fff;
  background-color: var(--color--point);
  text-decoration: none;
  border-radius: 2rem;
  font-size: 1rem;
  font-weight: bold;
}

.home-icon {
  margin-right: 0.5rem;
  display: flex;
  align-items: center;
}

.home-icon svg {
  width: 24px;
  height: 24px;
}

/* 앱다운 모달 */
.modal {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1000;
}

.modal_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  transform: translateY(100%);
  opacity: 0;
  animation: slide-up 0.5s forwards;
}

@keyframes slide-up {
  from {
    transform: translateY(100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.app_icon {
  width: 100px;
  margin-bottom: 10px;
}

.app_text {
  color: #fff;
  font-size: .85rem;
  line-height: normal;
}

.download_btn,
.webview_btn {
  margin-top: 10px;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.download_btn {
  width: 100%;
  height: 52px;
  color: var(--color--basic--point);
  background: #fff;
  font-weight: 700;
}

.webview_btn {
  color: #939396;
  font-size: .875rem;
  text-decoration: underline;
}

.badge-style {
  position: absolute;
  z-index: 9;
  background-color: #999;
  color: #fff;
  padding: 0.3rem .75rem;
  font-size: .85rem;
  border: 1px solid #999;
  right: 0;
  border-bottom-left-radius: inherit;
}

.badge-style-color {
  position: absolute;
  z-index: 9;
  background-color: var(--color--point);
  color: #fff;
  padding: 0.3rem .75rem;
  font-size: .85rem;
  border: 1px solid var(--color--point);
  right: 0;
  border-bottom-left-radius: inherit;
}

/* 마이페이지 */
.mypage_container {
  background-color: #fff;
  /* border-radius: 10px; */
  padding: 32px 16px;
}

.mypage_container>div {
  position: relative;
  margin-bottom: 24px;
}

.mypage_container>div:not(:last-child):after {
  content: '';
  position: absolute;
  bottom: -24px;
  left: -24px;
  width: calc(100% + 48px);
  height: 8px;
  background: #F6F6F6;
}

.profile_section {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.profile_info {
  width: 100%;
  display: flex;
  align-items: center;
}

.profile_info img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
  border: 1px solid #f6f6f6;
  object-fit: cover;
}

.summary_section {
  display: flex;
  justify-content: space-around;
  padding: 20px 0;
}

.summary_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: .875rem;
  flex: 1;
}

.summary_item span {
  display: block;
  font-size: 16px;
  color: var(--color--point);
}

.menu_area .col {
  padding: 8px 0 12px 0;
  border-bottom: 1px solid #F6F6F6;
}

.menu_area h4 {
  padding: 16px 0;
}

.menu_area ul li, .menu_area p {
  padding: 16px 0;
  font-size: .875rem;
}

.menu_area p {
  justify-content: flex-start;
}

.mypage_container .goodbye {
  color: #DBE0E4;
  font-size: .75rem;
  text-decoration: underline;
}

.mypage_container .setting li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

/* 마이페이지 - 내 정보 수정 */
.profile_image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 1px solid #F6F6F6;
  object-fit: cover;
}

/* 마이페이지 - 예약, 티켓 */
.mypage_list_header {
  display: flex;
  justify-content: space-between;
  padding: 0 16px;
  margin: 20px 0 8px 0;
  font-size: .875rem;
}

.mypage_list_header h3 {
  font-size: 1rem;
}

.mypage_list_header h3 .total {
  color: #fa393c;
  font-weight: 700;
}

.mypage_list_header select {
  background: #fff;
  border: none;
  font-size: .875rem;
}

.mypage_list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 16px;
}

.mypage_list .list_box {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mypage_list .list_header p {
  font-size: 1.125rem;
  font-weight: 600;
}

.list_bottom span:not(.main, .tracking_btn) {
  font-size: .8125rem;
  color: #939396;
}

.list_bottom div>span:first-child, .list_bottom li>span:first-child {
  width: 92px;
  display: inline-block;
}

.list_badge {
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .875rem;
}

.list_badge .dDay {
  font-size: .6875rem
}

.mypage_list>li {
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-radius: 12px;
  background: #fff;
}

.list_top {
  display: flex;
  gap: 12px;
}

.list_top>div:not(.shop_header, .list_btn) {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.list_bottom {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.list_bottom>span>span:first-child:not([data-r-field="start_date"]) {
  margin-left: 66px;
}

.list_top img {
  width: 80px;
  height: 80px;
  border-radius: 4px;
  object-fit: cover;
}

.list_top p {
  font-size: .9375rem;
  font-weight: 500;
  /* line-height: 17px; */
}

.list_top span:not(.main) {
  font-size: .875rem;
  color: #939396;
}

.reservation_img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.mypage_detail {
  min-height: calc(100dvh - 48px);
  padding: 24px 16px;
}

.mypage_detail h3:not(.reservation_header h3) {
  margin-bottom: 8px;
}

.reservation_header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

.reservation_header h3 {
  font-size: 1.125rem;
  font-weight: 600;
}

.reservation_header p {
  font-size: .875rem;
}

.mypage_detail .list_badge .re {
  margin-bottom: 4px;
}

.mypage_detail .list_bottom {
  position: relative;
  padding-bottom: 32px;
}

.mypage_detail .list_bottom::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -24px;
  width: calc(100% + 48px);
  height: 8px;
  background: #F6F6F6;
}

/* 마이페이지 - 찜 */
.mypage_list .shop_header {
  width: calc(100% - 92px)
}

/* 마이페이지 - 구매 내역 */
.mypage_list_header.detail {
  padding: 0;
}

.mypage_detail .list_box {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.tracking_btn {
  font-size: .6875rem;
  margin-left: 12px;
  padding: 4px 6px;
  border: 1px solid var(--color--point);
  border-radius: 4px;
  color: var(--color--point);
}

.list_bottom .btn_wrap {
  margin-top: 8px;
}

/* 마이페이지 리뷰 */
.review_container {
  gap: 24px;
}

.review_container .review_info {
  padding: 16px;
  background: #f4f4f4;
  border-bottom: 1px solid #E6E6E6;
}

.review_container .review_detail {
  width: 100%;
  max-width: 480px;
  margin: 0 auto !important;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  border-radius: 12px;
  background: #fff;
}

.review_box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.review_box .star_rating {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #E6E6E6;
}

.review_box .star img {
  width: 40px;
  height: 40px;
}

.review_box .rating {
  font-size: 2rem;
  font-weight: 600;
  color: var(--color--point);
}

.review_box p {
  font-size: 20px;
  font-weight: 600;
}

.review_box .star {
  margin: 0 3px;
}

.review_container textarea {
  width: 100%;
  height: 220px;
  border: 1px solid #E6E6E6;
  border-radius: 4px;
  margin-top: 16px;
  padding: 16px;
  resize: none;
}

.review_container textarea::placeholder {
  font-size: 14px;
  color: #8B8B8B;
}

.review_box .point_dashed {
  margin-top: 16px;
  flex-direction: row;
  gap: 0;
}

.review_box .point_dashed svg {
  margin-right: 2px;
}

.attach_img_box {
  width: 100%;
  margin-top: 12px;
  display: flex;
  gap: 4px;
}

.attach_img_box .attach_img {
  width: calc((100% - 16px) / 5);
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 4px;
  overflow: hidden;
}

.attach_img_box .attach_img.on .del {
  position: relative;
}

.attach_img_box .attach_img.on .del::after {
  display: block;
  position: absolute;
  content: url('../img/x.svg');
  width: 18px;
  height: 18px;
  top: 0;
  right: 0;
  background: #000000B2;
  text-align: center;
  line-height: 18px;
}

.attach_img_box .attach_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 마이페이지 - 1:1문의 */
.inquiry-list {
  padding: 0 16px;
}

.inquiry-list li:first-child {
  padding-top: 0;
}

.inquiry-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.inquiry-item {
  width: 100%;
  border-bottom: 1px solid #E9E9EC;
  padding: 24px 0;
}

.inquiry-header {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  margin-bottom: 16px;
  gap: 12px;
}

.status-label {
  background-color: #000;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 8px;
  border-radius: 4px;
}

.wate-color {
  background: #AAAAAA;
}

.inquiry-user {
  color: #8B8B8B;
  font-size: 14px;
  font-weight: 500;
  padding-right: 10px;
  border-right: 1px solid #E9E9EC;
}

.inquiry-date {
  color: #8B8B8B;
  font-size: 14px;
}

.inquiry-details {
  display: block;
  width: 100%;
  margin-top: 16px;
  padding: 20px;
  background: #F3F3F3;
}

.inquiry-details h4 {
  margin-bottom: 14px;
}

.inquiry-details p {
  font-size: 14px;
  line-height: 18px;
}

/* 배송지 */
.address_list {
  gap: 6px !important;
}

.address_list .list_top {
  height: auto;
  flex-direction: column;
}

.address_list .list_btn {
  display: flex;
  gap: 12px;
  text-decoration: underline;
}

/* 콘텐츠 리스트 */
.content_wrap .tab_menu_rounded {
  margin: 12px 0 16px;
}

.content_list {
  width: 100%;
  padding: 0 16px 32px;
  display: grid;
}

.content_list>li {
  overflow: hidden;
  margin-bottom: 12px;
}

.content_list img {
  width: 100%;
  height: 128px;
}

.content_list p {
  margin: 6px 0;
  font-weight: 600;
}

.m-t-header {
  margin-top: 48px;
}

#contents_detail .thumbnail img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  max-height: 640px;
  margin: 0 auto;
  display: flex;
  object-fit: cover;
}

.thumbnail {
  overflow: hidden;
}

/* 줌아웃효과 */
.thumbnail img.zoomimage {
  animation: zoomOutSingle 20s infinite ease-in-out;
}

@keyframes zoomOutSingle {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.3);
  }

  100% {
    transform: scale(1);
  }
}

.content_list.event img {
  height: 160px;
}

/* 쿠폰 */
.coupon_list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 16px;
}

.coupon_list li {
  position: relative;
  width: 100%;
  padding: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 12px;
}

.coupon_list li>div:first-child {
  max-width: calc(100% - 85px);
}

.coupon_list .list_top {
  height: auto;
  margin-bottom: 4px;
}

.coupon_list .list_top p {
  font-size: 1.25rem;
  line-height: 24px;
}

.coupon_list .list_bottom span {
  width: auto;
}

.coupon_list .btn {
  width: 56px;
  flex-shrink: 0;
}

/* 모달 */
.modal_opne_btn {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border: 1px solid #e9e9ec;
  border-radius: 4px;
  font-size: .875rem;
}

.modal_opne_btn span {
  display: inline-block;
  width: 100%;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.modalLayer .close_btn {
  position: absolute;
  width: 52px;
  font-size: 1.875rem;
  top: 30px;
  right: 16px;
  background: none;
  border: none;
  z-index: 9;
}

/* 팝업레이어 */
.popup {
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1002;
  overflow: hidden;
}

.popup.on {
  display: block;
}

.popup .content {
  width: 90%;
  max-width: 800px;
  height: 80%;
  padding: 40px 20px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  z-index: 1002;
  border-radius: 10px;
  overflow-y: scroll;
}

/* 바텀시트 */
.bottom_sheet {
  display: none;
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  z-index: 1002;
  transition: bottom 0.1s ease-in-out;
}

.bottom_sheet.on {
  bottom: 0;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
}

.overlay.on {
  opacity: 1;
  visibility: visible;
}

.bottom_sheet .content {
  width: 100%;
  max-width: 800px;
  padding: 32px 32px 56px;
  border-radius: 16px 16px 0 0;
  background-color: #fff;
  box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.1);
  transition: bottom 0.3s ease-in-out;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9;
  bottom: -100%;
}

.bottom_sheet.on .content {
  position: fixed;
  bottom: 0;
}

.bottom_sheet.on .title {
  margin-bottom: 24px;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
  color: #333;
}

.bottom_sheet .content .list {
  height: 40dvh;
}

.bottom_sheet .select_option {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}

.bottom_sheet .select_option .option {
  width: 100%;
}

.bottom_sheet .select_option .option.on {
  position: relative;
  color: var(--color--point);
  font-weight: 600;
}

.bottom_sheet .select_option .option.on::after {
  content: '';
  background: url(../img/check.svg) no-repeat;
  background-size: 100%;
  display: inline-block;
  width: 22px;
  height: 22px;
  position: absolute;
  top: -14%;
  right: 0;
}

.bottom_sheet .option.line_box {
  display: flex;
  flex-direction: column;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #DBE0E4;
}

.bottom_sheet .option.line_box.on {
  border: 1px solid var(--color--point);
}

.bottom_sheet .option.line_box.disable {
  position: relative;
  touch-action: none;
}

.bottom_sheet .option.line_box.disable::after {
  content: '사용 가능한 매장이 아닙니다.';
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ff0004;
  font-size: 14px;
}

.bottom_sheet .option.line_box.disable {
  border-color: #ddd;
}

.bottom_sheet .option.line_box.disable .list_top img {
  filter: grayscale(0.7);
}

.bottom_sheet .option.line_box.disable * {
  color: #ddd !important;
}

.bottom_sheet .option.line_box.disable label>div:not(.w100) {
  display: none;
}

.bottom_sheet .option.line_box.disable .badge {
  background: #949494 !important;
  color: #fff !important;
}

.bottom_sheet .option input[type=radio] {
  width: 16px;
  height: 16px;
}

.bottom_sheet .option p {
  color: #333;
}

.bottom_sheet .option p strong {
  font-size: initial;
}

.bottom_sheet .option span {
  color: #969696;
}


/* 선물함 */
.mypage_detail .cardBg {
  width: calc(100% + 48px);
  height: calc(100% + 48px);
  background: var(--color--point);
  margin: -24px 0 24px -24px;
  padding: 36px 32px;
}

.mypage_detail .gift_card {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 12px;
  background: #fff;
  padding: 24px;
}

.mypage_detail .gift_card h3 {
  padding: 8px 0;
  font-size: 1.25rem;
}

.mypage_detail .gift_message {
  position: relative;
  padding: 12px 32px;
  text-align: center;
}

.mypage_detail .gift_card>.gift_message::before {
  content: '❝';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-42%);
  font-size: 2.25rem;
  color: var(--color--point);
}

.mypage_detail .gift_card>.gift_message::after {
  content: '❞';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-42%);
  font-size: 2.25rem;
  color: var(--color--point);
}

.mypage_detail .gift_card>.gift_message span {
  line-height: 22px;
}

.mypage_detail .gift_card img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 16px;
  margin: 16px 0;
}

.mypage_detail .gift_product {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.mypage_detail .gift_product>span {
  font-size: .875rem;
  color: #939396;
}

.mypage_detail .gift_product>p {
  font-size: .9375rem;
  font-weight: 500;
}

.mypage_detail .direction_box {
  background: #F7F7F9;
  border-radius: 8px;
  margin-top: 12px;
  padding: 20px;
}

.mypage_detail .direction_txt {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mypage_detail .direction_txt h4 {
  font-size: .875rem;
  font-weight: 600;
}

.mypage_detail .direction_txt p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .875rem;
  line-height: 20px;
  color: #939396;
}

.mypage_detail .direction_txt p svg {
  color: var(--color--point);
}

.mypage_detail .direction_txt.align-center {
  gap: 4px;
}

.mypage_detail .direction_txt.align-center p {
  display: block;
}

.gift_info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 8px 0 32px 0;
}

.gift_info>div {
  display: flex;
  justify-content: space-between;
}

.gift_info div p {
  font-size: .875rem;
  color: #939396;
}

.mypage_detail .toggle_con ul li {
  line-height: 20px;
}

/* 공지사항 */
.notice_list {
  padding: 0 16px;
}

.notice_list .list_top {
  width: 100%;
  height: auto;
  margin-bottom: 24px;
}

.notice_list .list_top .shop_header {
  width: 100%;
}

.notice_list .list_top p {
  font-size: 1rem;
  line-height: 24px;
}

.notice_header {
  padding: 24px 16px;
  margin-bottom: 24px !important;
  border-bottom: 1px solid #e9e9ec;
}

.notice_header h3 {
  font-size: 1.25rem;
  line-height: 1.5rem;
}

.notice_header span {
  color: #939396;
}

.notice_text {
  padding: 0 16px;
  margin-bottom: 64px;
}

.notice_text p {
  line-height: 24px;
}

/* 마켓 */
.main_container_market {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  overflow: hidden;
}

.main_container_market>div {
  width: 100%;
}

#market .marketSwiper {
  width: 100%;
  height: 80vw;
  max-height: 480px;
}

.number-style {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 20px;
  height: 20px;
  color: #fff;
  border-radius: 3px;
  font-size: .85rem;
  align-items: center;
  display: flex;
  justify-content: center;
  background: var(--color--point);
  z-index: 3;
}

/* 주문결제 */
#orderDetails .price_container p {
  margin-bottom: 4px;
}

#orderDetails h3 {
  margin: 16px 0;
  font-size: 16px;
  color: #333;
}

#orderDetails .payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}

#orderDetails .payment-method {
  display: flex;
  align-items: center;
  justify-content: center;
}

#orderDetails .payment-method input[type="radio"] {
  display: none;
}

#orderDetails .payment-label {
  display: inline-block;
  background-color: #f2f2f2;
  padding: 10px;
  border-radius: 4px;
  width: 100%;
  text-align: center;
  font-size: 14px;
  cursor: pointer;
  border: 1px solid #ddd;
  transition: background-color 0.3s, border-color 0.3s;
}

#orderDetails .payment-method input[type="radio"]:checked+.payment-label {
  background-color: var(--color--point);
  color: #fff;
  border-color: var(--color--point);
}

#deliveryRequestOther {
  display: none;
  margin-top: 8px;
}

/* 말줄임 1줄 */
.ellipse_one {
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 1 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: normal !important;
}

/* 말줄임 2줄 */
.ellipse_two {
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 2 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: normal !important;
}

/* 말줄임 2줄 */
.ellipse_3 {
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 3 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: normal !important;
}

/* 말줄임 5줄 */
.ellipse_5 {
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 5 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: normal !important;
  line-height: 1rem;
}

.review_star {
  display: flex;
  flex-direction: row;
  gap: 2px;
}

.review_star .star-wrap {
  gap: 2px;
}

.review_star span {
  display: flex;
  align-items: stretch;
  font-size: .8125rem !important;
  font-weight: 500 !important;
}

.review_star img {
  width: auto !important;
  height: auto !important;
  object-fit: contain;
}

.p-color {
  color: var(--color--point) !important;
}

.product-style {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.flex-d-row {
  display: flex;
  flex-direction: row;
  gap: 2px;
}

.bedge-style {
  font-size: .625rem;
  width: fit-content;
  height: auto;
  padding: 0 4px;
  border-radius: 3px;
  line-height: 16px;
  color: #fff !important;
  flex-shrink: 0;
}

.color-sale {
  background-color: #ff2d6c;
}

.color-event {
  background-color: #000;
}

.color-best {
  background-color: #fa393c;
}

.color-ticket {
  background-color: #d7bfff;
}

.color-coupon {
  background-color: #89dbbd;
}

.color-re {
  background-color: #ffd391;
}

.color-big-sale {
  background-color: #91d9ff;
}

.color-end {
  background-color: #B5B5B5;
}

.color-wherezy {
  background-color: var(--color--point);
}

.w-nowrap {
  white-space: nowrap;
}

/* 예약 */
.rhWrap .rh_title {
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
}

.rcWrap .rc_content {
  min-height: calc(100dvh - 48px - 104px);
  box-shadow: inset 0px 4px 4px 0px #D2D2D24D;
  display: none;
  padding: 24px 0 118px 0;
}

.rcWrap .rc_content.on {
  display: block;
}

.rcWrap .rc_beautist {
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: 8px;
}

.rcWrap .rc_bimg {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
}

.rcWrap .rc_binfo {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rcWrap .rc_week {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.redaySwiper {
  margin-bottom: 24px;
  padding: 0 24px;
}

.rcWrap .rc_dayWrap {
  display: flex;
}

.rcWrap .rc_day {
  width: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.rcWrap .rc_day .date {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-weight: 600;
  text-align: center;
  line-height: 40px;
}

.rcWrap .rc_day .day {
  font-size: 12px;
  color: #8B8B8B;
}

.rcWrap .rc_day.on .date {
  color: #fff;
  background: var(--color--point);
}

.rcWrap .rc_day.on .day {
  color: var(--color--point);
}

.rcWrap .rc_timeWrap {
  padding: 16px 24px 0;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.rcWrap .rc_timeWrap::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 1px;
  transform: scaleY(.5);
  background: #e9e9ec;
}

.rcWrap .rc_time {
  flex-shrink: 0;
  display: inline-flex;
  justify-content: center;
  width: calc((100% - 18px) / 4);
  min-width: fit-content;
  height: 38px;
  margin-bottom: 4px;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 500;
  line-height: 38px;
  border-radius: 100px;
  background: #F5F5F5;
}

.rcWrap .rc_time.on {
  color: #fff;
  background: var(--color--point);
}

.rcWrap .rc_time.holiday {
  color: #EA6062;
}

.rcWrap .rc_time.closed {
  color: #aaa;
}

.rc_content #tabMenu {
  position: relative;
  margin-bottom: 0;
  padding-bottom: 16px;
}

.rc_content #tabMenu::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  transform: scaleY(.5);
  background: #e9e9ec;
}

.rc_content .menu_list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.rc_content .menu_list li:after {
  top: auto;
  bottom: 0;
}

.rc_content .menu_list li:last-child {
  position: static;
}

.rc_content .menu_list li input[type="radio"] {
  width: 18px;
  height: 18px;
  outline: 1px solid #f5f5f5;
}

.rc_content .menu_list li label {
  flex: 1;
}

#ticketSelect .content, #couponSelect .content {
  max-height: 75%;
}

#ticketSelect .mypage_list, #couponSelect .mypage_list {
  height: 500px;
  padding: 0 0 50px;
  overflow-y: scroll;
}

#ticketSelect .mypage_list::-webkit-scrollbar, #couponSelect .mypage_list::-webkit-scrollbar {
  display: none;
}

/* height */
.height-265 {
  height: 265px !important;
}

/* brand_list */
.shop-info-container * {
  font-size: 0.85rem;
  font-weight: normal !important;
  margin: 0 !important;
}

#brand_list .content_list li {
  position: relative;
  margin-bottom: 1.6rem;
  padding-bottom: 24px;
}

#brand_list .content_list li::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  transform: scaleY(.5);
  background: #DADDE0;
}

#brand_list .brandSwiper {
  height: 300px;
}

.brandSwiper {
  width: 100%;
  height: 300px;
}

.brandSwiper .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.brandSwiper .swiper-slide>div {
  width: 100%;
  height: 100%;
}

.brandSwiper .swiper-slide>div>img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(.7);
}

.brandSwiper .slide-caption {
  width: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  color: #fff;
  text-align: left;
}

.brandSwiper .slide-caption .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
}

.brandSwiper .slide-caption .logo img {
  width: 76px;
  object-fit: cover;
}

.brandSwiper .slide-caption p {
  font-size: 24px;
  line-height: 32px;
}

.brandSwiper .slide-caption span {
  font-size: .875rem;
  font-weight: 300;
  line-height: 20px;
}

.brandSwiper .swiper-pagination {
  width: 90%;
  top: auto;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
}

#brand_list .swiper-wrapper {
  display: flex;
}

#brand_list .swiper-slide {
  flex-shrink: 0;
  width: 100%;
}

#brand_list .content_list img {
  height: 210px;
}

.product_info_wrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.product_info_wrap .heart_wrap {
  justify-content: center;
}

/* 선물하기 */
.gift_container>div {
  padding: 0 16px;
}

.gift_container h3 {
  font-size: 1rem;
}

.gift_container .note {
  font-weight: 400;
}

.gift_container .product_details {
  margin-bottom: 16px;
  padding-top: 8px;
  display: flex;
  align-items: center;
  align-content: flex-start;
  flex-direction: row;
}

.gift_container .product_details img {
  width: 100px;
  height: 100px;
  border-radius: 5px;
  margin-right: 8px;
  object-fit: cover;
}

.gift_container .product_details .details {
  height: 100px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.gift_container .product_details p {
  font-size: .875rem;
  color: #939396;
}

.gift_container .product_details p[data-r-field="title"] {
  font-size: 1rem;
  color: #333;
}

.gift_container .payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 8px;
  margin-bottom: 20px;
}

.gift_container .payment-method {
  display: flex;
  align-items: center;
  justify-content: center;
}

.gift_container .payment-label {
  display: inline-block;
  background-color: #f2f2f2;
  padding: 10px 0;
  border-radius: 5px;
  width: 100%;
  text-align: center;
  font-size: 14px;
  cursor: pointer;
  border: 1px solid #ddd;
  transition: background-color 0.3s, border-color 0.3s;
}

.gift_container .payment-method input[type="radio"] {
  display: none;
}

.gift_container .payment-method input[type="radio"]:checked+.payment-label {
  background-color: var(--color--point);
  color: #fff;
  border-color: var(--color--point)
}

.gift_container .price_container {
  display: flex;
  flex-direction: column;
  place-content: baseline;
  /* margin: 15px 0; */
}

.gift_container .delivery_container {
  display: flex;
  place-content: space-between;
  margin: 15px 0;
}

.agree_container {
  text-align: center;
  margin: 15px 0;
  font-size: 12px;
}

.agree_container span {
  text-decoration: underline;
}

/* 결제정보 */
.pay_info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0 70px 0;
}

.pay_info>div {
  display: flex;
  justify-content: space-between;
}

.pay_info>div:last-of-type {
  align-items: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #f2f2f2;
}

.pay_info div p {
  font-size: .875rem;
  color: #939396;
}

.pay_info .dis span, .pay_info span.pay_method {
  font-size: .875rem;
  color: #939396;
}

.pay_info .dis {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.pay_info .price {
  display: inline-block;
  text-align: right;
  width: 100px;
  color: #333;
}

.pay_info .price[data-r-field="payment_amount"] {
  width: auto;
  font-size: 1.25rem;
  margin-left: 8px;
}

.pay_info .receipt span {
  margin-left: 4px;
  font-size: .75rem;
  text-decoration: underline;
  color: #939396;
}

.pay_info .pay_total {
  display: flex;
  align-items: center;
}

/* 거래명세서 */
.receipt_wrap {
  width: 100%;
  font-size: .8125rem;
}

.receipt_wrap>div {
  padding: 0 16px;
  margin-bottom: 24px;
}

.receipt_wrap h3 {
  margin-bottom: 8px;
}

.receipt_wrap .receipt_list li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.receipt_wrap .receipt_list li p {
  margin-bottom: 4px;
}

.receipt_wrap .receipt_list li div:last-of-type p {
  text-align: right;
}

.receipt_wrap .receipt_list li div>span {
  color: #969696;
}

.receipt_wrap .receipt_footer p {
  margin-bottom: 12px;
  color: #969696;
  line-height: 16px;
}

/* 체험단 */
#product_tester_list .conSwiper .slide-caption p[data-r-field="title"] {
  font-size: 1.5rem;
  font-weight: 400;
}

/* 지역 모달 */
#product_tester_list #openFilterModal option {
  display: none;
}

#product_tester_list .modal_type1 {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1002;
}

#product_tester_list .modal_type1.on {
  display: flex;
  /* flex를 사용해 가운데 정렬 */
}

#product_tester_list .modal-content {
  position: absolute;
  bottom: 0;
  background-color: #fefefe;
  width: 100%;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  padding-bottom: 5px;
}

#product_tester_list .modal-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#product_tester_list .modal-content ul li {
  padding: 12px 0;
  cursor: pointer;
  text-align: center;
  font-size: 15px;
  /* border-bottom: 1px solid #ddd; */
  /* font-weight: 600; */
}

#product_tester_list .modal-content ul li:last-child {
  border-bottom: none;
}

#product_tester_list .modal-content ul li:hover {
  background-color: #f1f1f1;
}

#product_tester_list .close-modal {
  color: #000;
  /* float: right; */
  font-size: 28px;
  /* font-weight: bold; */
  position: absolute;
  right: 20px;
  top: 10px;
}

#product_tester_list .close-modal:hover,
#product_tester_list .close-modal:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/* 모달 스타일 */
/* 메인 지역 스타일 */
.region-main {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  margin-bottom: 20px;
}

.region-main span {
  padding: 8px 16px;
  border: 1px solid transparent;
  border-radius: 46px;
  cursor: pointer;
  transition: 0.2s;
}

.region-main span.selected {
  border-color: var(--color--point);
  background-color: var(--color--point);
  color: white;
}

/* 세부 지역 스타일 */
.region-detail {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  background-color: #f6f6f6;
  padding: 15px;
  border-radius: 10px;
}

.region-detail div {
  padding: 8px 16px;
  background-color: white;
  border-radius: 46px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  font-size: .85rem;
  color: #666;
}

.region-detail div.selected {
  background-color: var(--color--point);
  color: white;
  border: 1px solid var(--color--point);
}

/* 선택된 지역 스타일 */
.selected-area {
  margin: 15px 0;
  display: flex;
  gap: 10px;
  align-items: center;
}

.selected-area .selected-item {
  display: flex;
  align-items: center;
  background-color: #fff6f5;
  border: 1px solid var(--color--point);
  color: var(--color--point);
  border-radius: 46px;
  padding: 6px 12px;
  font-size: 14px;
  gap: 5px;
}

.selected-area .remove-btn {
  background: none;
  border: none;
  color: var(--color--point);
  cursor: pointer;
  font-size: 14px;
}

/* 전체 삭제 버튼 */
.clear-all {
  margin-top: 10px;
  text-align: right;
}

.clear-btn {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 6px 12px;
  cursor: pointer;
  font-size: 14px;
  /* margin-right: 10px; */
  color: var(--color--point);
  transition: all 0.3s;
}

.clear-all-btn {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 6px 8px;
  cursor: pointer;
  font-size: 14px;
  color: var(--color--point);
  transition: all 0.3s;
}

/* 선택된 항목 표시 */
.selected-area-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
}

.selected-area span {
  padding: 8px 16px;
  border: 1px solid var(--color--point);
  color: var(--color--point);
  border-radius: 46px;
}

.selected-area .remove-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: var(--color--point);
}

/* 하단 버튼 스타일 */
.modal-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.modal-footer button {
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
}

.submit-btn {
  background-color: var(--color--point);
  color: white;
}

/* 상품 스타일 */
#product_tester_list .details {
  flex: 1;
}

#product_tester_list .details h2 {
  font-size: 0.9rem !important;
  margin: 0 0 8px;
  color: #333;
}

#product_tester_list .details p {
  font-size: 13px;
  color: #666;
  margin: 5px 0;
}

#product_tester_list .details .blog_icon img {
  width: 20px;
  height: 20px;
}

#product_tester_list .highlight {
  font-size: 14px;
  margin: 5px 0;
}

#product_tester_list .highlight .remaining {
  font-weight: bold;
  color: #f05454;
}

#product_tester_list .highlight .total {
  color: #666;
}

/* 버튼 스타일 */
#product_tester_list .layout_con_wrap .content_list .product button {
  padding: 10px;
  /* background-color: #007bff;
  color: white; */
  border: none;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  width: 100%;
  /* 버튼 너비를 전체로 설정 */
  box-sizing: border-box;
}

/* 체험단 */
#product_tester_list .tab-content .tab-pane {
  display: none;
}

#product_tester_list .tab-content .tab-pane.on {
  display: block;
}

.conSwiper.h-300 {
  height: 300px;
}

#product_tester_list .sec_wrap>div:not(.tab_menu, .shop_info, .beautist_info, .content, .divider, .map-button, .form) {
  margin-bottom: 0;
}

#product_tester_list .tab-button {
  width: 50%;
  justify-content: center;
}

/* 체험단 상세 */
#p_tester_detail .detail_container, #tester_apply .detail_container {
  padding: 16px;
  background-color: #fff;
}

#p_tester_detail .detail_header, #tester_apply .detail_header {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

#p_tester_detail .sub-header, #tester_apply .sub-header {
  font-size: 14px;
  color: #777;
  margin-bottom: 20px;
}

#p_tester_detail .info,
#tester_apply .info {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 14px;
  color: #555;
}

#p_tester_detail .info img, #tester_apply .info img {
  width: 110px;
  height: 110px;
  margin-right: 10px;
  border-radius: 4px;
  object-fit: cover;
}

#p_tester_detail .info p, #tester_apply .info p {
  flex-shrink: 0;
}

#p_tester_detail .info p:first-child, #tester_apply .info p:first-child {
  width: 32%;
}

#p_tester_detail #info .description {
  max-height: 500px;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

#p_tester_detail #info .description.more {
  max-height: none;
  height: auto;
}

#p_tester_detail #info img {
  width: 100%;
}

/* 체험단 신청하기 */
#tester_apply .section {
  background: #fff;
  border-radius: 8px;
}

#tester_apply .section h2 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #333;
  font-weight: bold;
}

#tester_apply .section p {
  margin: 5px 0;
  color: #555;
}

/* 체험단 성별 */
/* 성별 선택 스타일 */
#tester_apply .gender-label {
  display: flex;
  align-items: center;
  margin-right: 20px;
  cursor: pointer;
}

#tester_apply .gender-label input[type="radio"] {
  display: none;
  /* 기본 라디오 버튼 숨김 */
}

#tester_apply .gender-custom-radio {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  padding: 5px 15px;
  border: 1px solid #ddd;
  border-radius: 20px;
  color: #666;
  transition: all 0.3s ease;
}

/* 선택된 항목 스타일 */
#tester_apply .gender-input:checked+.gender-custom-radio {
  border: 1px solid var(--color--point);
  /* 선택된 라디오 버튼 테두리 색상 */
  color: var(--color--point);
  background-color: #fefefe;
  /* 선택된 배경 색상 */
  padding: 5px 10px 5px 27px;
}

#tester_apply .gender-input:checked+.gender-custom-radio::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 6px;
  height: 12px;
  border: solid var(--color--point);
  /* 체크 표시 색상 */
  border-width: 0 2px 2px 0;
  top: 50%;
  left: 15px;
  /* 체크 표시 위치 조정 */
  transform: translateY(-50%) rotate(45deg);
}


#tester_apply span.clear-button {
  display: none !important;
}

#tester_apply .checkbox-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#tester_apply .checkbox-row label {
  flex-wrap: wrap;
  align-items: normal;
  /* font-size: 1rem; */
  font-weight: normal;
  word-break: keep-all;
}

#tester_apply .form input[type="checkbox"] {
  margin-right: 8px;
}

#tester_apply .checkbox-container {
  display: flex;
  flex-direction: column;
  height: auto;
  gap: 6px;
}

/* FAQ */
#faq_page .accordion {
  padding: 0 16px;
}

#faq_page .accordion-item:last-child {
  border-bottom: none;
}

#faq_page .accordion-header {
  padding: 15px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  line-height: 24px;
  border-bottom: 1px solid #e5e7ea;
}

#faq_page .accordion-content {
  display: none;
  background-color: #fff;
  padding: 15px 15px 20px;
  font-size: 0.85rem;
  color: #292c33;
}

#faq_page .accordion-item.on .accordion-content {
  display: block;
  background: #f0f1f4;
}

#faq_page .accordion-item.on .accordion-header {
  font-weight: 800;
}

#faq_page .toggle-icon {
  font-size: 1.2rem;
  color: var(--color--point);
  transition: transform 0.3s;
}

#faq_page .accordion-item.on .toggle-icon {
  transform: rotate(180deg);
}

/* 회원탈퇴 */
#cus_info_out .container {
  width: 100%;
  margin: 10px 0;
  padding: 12px 15px;
  border-radius: 5px;
  border: 1px solid #e5e7ea;
}

#cus_info_out .container li {
  position: relative;
  padding-left: 8px;
  line-height: 18px;
  letter-spacing: -.5px;
}

#cus_info_out .container li::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 2px;
  height: 2px;
  background-color: #292c33;
  content: "";
}

/* 위치권한 */
#location_page .setting-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
}

#location_page .setting-item:last-child {
  border-bottom: none;
}

#location_page .setting-label {
  font-size: 16px;
  color: #333;
}

#location_page .setting-label small {
  font-size: 14px;
  color: #999;
}

#location_page .toggle-switch {
  position: relative;
  width: 40px;
  height: 20px;
  background-color: #ddd;
  border-radius: 20px;
  cursor: pointer;
  transition: background-color 0.3s;
}

#location_page .toggle-switch::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  background-color: #fff;
  border-radius: 50%;
  transition: transform 0.3s;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

#location_page .toggle-switch.on {
  background: var(--color--point);
}

#location_page .toggle-switch.on::before {
  transform: translateX(20px);
}

#location_page .link {
  font-size: 14px;
  color: #757d86;
  text-decoration: underline;
  margin-top: 5px;
}

#location_page .link:hover {
  color: #757d86;
}

/* 위치권한 약관 상세 */
.notice-container {
  padding: 1rem 20px;
}

.notice-container h2, .seller-info h3 {
  color: #333;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
  font-weight: 700;
}

.seller-info h3 {
  color: #333;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
  font-weight: 700;
}

.notice-section {
  margin-top: 20px;
  font-size: 0.8rem;
}

.notice-section h3 {
  margin: 4px 0;
}

/* 환불 정책 */
.return-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem 20px;
}

.return-section {
  margin-top: 20px;
  font-size: 0.8rem;
}

.return-section h3 {
  margin-bottom: 5px;
  font-size: 14px;
}

.return-section ul li {
  margin: 0;
  font-size: 14px;
  position: relative;
  padding-left: 8px;
}

.return-section ul li .dot {
  position: absolute;
  left: 1px;
  top: 6px;
  display: inline-block;
  overflow: hidden;
  width: 3px;
  height: 3px;
  border-radius: 3px;
  background-color: #222;
}

/* 상품고시정보 */
.product-info {
  width: 100%;
  background-color: #fff;
  border-radius: 8px;
  padding: 0;
}

.product-info table {
  width: 100%;
  border-collapse: collapse;
}

.product-info th, .product-info td {
  text-align: left;
  padding: 8px 12px;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}

.product-info th {
  width: 40%;
  font-weight: bold;
  color: #555;
  background-color: #f7f7f7;
}

.product-info td {
  color: #333;
}

.product-info .notice {
  margin-top: 10px;
  font-size: 0.9em;
  color: #777;
}


.seller-info {
  margin-top: 3vh;
  margin-bottom: 3vh;
}

.seller-info p {
  margin: 5px 0;
  text-align: left;
  font-size: 0.8rem;
  color: #111;
}

.seller-info a {
  text-decoration: none;
}

.seller-info a:hover {
  text-decoration: underline;
}

.seller-info p:first-of-type {
  margin-top: 20px;
}

.divider-bold {
  width: 100%;
  height: 8px;
  background: #F6F6F6;
  margin-bottom: 1rem;
}

.b-bottom {
  border-bottom: 1px solid #e9e9ec;
}

/* 상품 브랜드 페이지 */
.marketBrandList {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.marketBrandList li {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.marketBrandList .brand_info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.marketBrandList .brand_info .brand_name {
  display: flex;
  align-items: center;
  gap: 8px;
}

.marketBrandList .brand_logo {
  display: flex;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid #eee;
  overflow: hidden;
}

.marketBrandList .brand_logo img {
  width: 80%;
  height: 45px;
  object-fit: contain;
}

.marketBrandList .brand_info .brand {
  font-weight: 600;
}

.marketBrandList .shop_list:first-child {
  width: 200px !important;
}

.marketBrandList .shop_list:first-child img {
  width: 200px !important;
}

.marketBrandDe .brand_info {
  width: calc(100% - 38px);
  padding: 20px;
  top: -36px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
}

/* 스냅 */
.snap_container {
  padding-bottom: 32px;
}

.snap_container .snap {
  position: relative;
}

.snap_container .snap::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 8px;
  background: #F6F6F6;
}

.snap_header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
}

.snap_header img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
}

.sh_name {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  font-weight: 500;
}

.sh_name .shop {
  font-size: 14px;
  color: #999999;
}

.snap_header .btn {
  width: fit-content;
  height: fit-content;
  padding: 8px 12px;
  gap: 4px;
  font-weight: 400;
}

.sc_img {
  width: 100%;
}

.sc_con {
  padding: 24px 16px;
}

.sc_icons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sc_txt {
  margin: 16px 0;
  font-size: 14px;
}

.sc_tag {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.sc_tag span {
  width: fit-content;
  height: fit-content;
  padding: 8px 12px;
  background: #F3F3F3;
  border-radius: 4px;
  font-size: 13px;
}

/* 약관 */
header.fixed+.page-title {
  margin-top: 48px;
}

.page-title {
  text-align: center;
  padding: 1rem 0;
  background-color: #111;
  color: #fff;
  margin-bottom: 1rem;
}

.page-title h1 {
  margin: 0;
  font-size: 1.5rem;
}

.terms-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem 20px;
  padding-top: 0;
  background: #fff;
  border-radius: 5px;
}

.terms-content h3 {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  color: #111;
  border-bottom: 1px solid #ddd;
  padding-bottom: 0.5rem;
}

.terms-content p, .terms-content ul {
  font-size: 0.9rem;
  margin: 0.5rem 0;
}

.terms-content ul li {
  margin-bottom: 0.5rem;
}

footer {
  text-align: center;
  padding: 1rem 0;
  background-color: #f1f1f1;
  font-size: 0.8rem;
  color: #666;
}

.dates {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: #555;
}

.benifit {
  display: flex;
  flex-direction: column;
}

.opacity_box {
  display: flex;
  padding: 20px 34px;
  color: #fff;
  background: #00000033;
  border-radius: 8px;
  line-height: 20px;
}

.tab_content_tit .sec_tit {
  position: relative;
  margin-bottom: 40px;
  color: #9D8772;
  font-size: 16px;
}

.tab_content_tit .sec_tit.color-white {
  color: #fff;
}

.sec_tit strong {
  display: inline-block;
  padding-top: 6px;
  color: #333;
  font-size: 1.5rem;
  font-weight: 700;
}

.tab_content_tit .sec_tit::after {
  position: absolute;
  content: '';
  width: 50%;
  height: 1px;
  bottom: -20px;
  left: 0;
  background: #9D8772;
}

.tab_content_tit .sec_tit.color-white::after {
  background: #fff;
}

.tab_content_tit span {
  line-height: 24px;
}