@charset "utf-8";

.main_banner {
  position: relative;
  background: linear-gradient(180deg, rgba(237, 237, 237, 0.00) 60%, #EDEDED 100%), linear-gradient(0deg, rgba(12, 18, 71, 0.80) 0%, rgba(12, 18, 71, 0.80) 100%), #EDEDED;
  margin-top: 35px;
}

.main_banner .banner_swiper {
  width: 100%;
  overflow: hidden;
  max-width: 1400px;
}

.main_banner .swiper-slide {
  height: 300px;
}

.main_banner .slide_bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(0, 0, 0, 0.2);
  position: relative;
}

.main_banner .slide_bg::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.40) 100%);
}

.main_banner .inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: inherit;
}

.main_banner .content {
  width: 1150px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
}

.main_banner .content h2 {
  color: #F2F2F2;
  font-size: 46px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 700;
  margin: 0;
}

.main_banner .title_row {
  display: flex;
  align-items: center;
  gap: 18px;
}

.main_banner .line {
  display: none;
  width: 80px;
  height: 6px;
  background: #F2F2F2;
}

.main_banner .content h3 {
  color: #F2F2F2;
  font-size: 46px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 700;
  margin: 0;
}

.main_banner .content p {
  color: #F2F2F2;
  font-size: 18px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 500;
  line-height: 27px;
  text-align: right;
  margin: 0;
}

.main_banner .arrow_prev,
.main_banner .arrow_next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 30px;
  /* border: 2px solid rgba(255, 255, 255, 0.6); */
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}

.main_banner .arrow_prev:hover,
.main_banner .arrow_next:hover {
  opacity: 0.8;
}

.main_banner .arrow_prev {
  left: 172px;
}

.main_banner .arrow_next {
  right: 172px;
}

.main_banner .arrow_prev img,
.main_banner .arrow_next img {
  width: 100%;
  height: 100%;
}

/* 반응형 */
@media (max-width: 1600px) {
  .main_banner .content {
    width: 1200px;
  }

  .main_banner .arrow_prev {
    left: 100px;
  }

  .main_banner .arrow_next {
    right: 100px;
  }
}

@media (max-width: 1200px) {
  .main_banner .swiper-slide {
    height: 350px;
  }

  .main_banner .content {
    width: 100%;
    padding: 0 40px;
  }

  .main_banner .content h2,
  .main_banner .content h3 {
    font-size: 42px;
  }

  .main_banner .content p {
    font-size: 16px;
    line-height: 24px;
  }

  .main_banner .line {
    width: 60px;
    height: 5px;
  }

  .main_banner .arrow_prev {
    left: 40px;
  }

  .main_banner .arrow_next {
    right: 40px;
  }
}

@media (max-width: 768px) {
  .main_banner .swiper-slide {
    height: 300px;
  }

  .main_banner .content h2,
  .main_banner .content h3 {
    font-size: 32px;
  }

  .main_banner .content p {
    font-size: 14px;
  }

  .main_banner .line {
    width: 50px;
    height: 4px;
  }

  .main_banner .arrow_prev {
    left: 20px;
  }

  .main_banner .arrow_next {
    right: 20px;
  }
}

/* OUR STORY ==========================================================================================================*/
.our_story_wrap {
  display: flex;
  justify-content: space-between;
  /* padding: clamp(72px, 7vw, 72px) 0; */
  gap: 18px;
}

.our_story_txt {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(9px, 1vw, 9px);
  justify-content: center;
}

.our_story_txt .title {
  color: #2B2B2B;
  font-family: Pretendard, sans-serif;
  font-feature-settings: 'dlig'on;
  font-size: clamp(32px, 3vw, 32px);
  font-weight: 500;
  line-height: normal;
}

.our_story_txt .txt {
  color: #5C5C5C;
  font-family: Pretendard, sans-serif;
  font-feature-settings: 'dlig'on;
  font-size: clamp(18px, 1.2vw, 18px);
  font-weight: 400;
  line-height: 150%;
}

.our_story_img {
  width: 32.5%;
  aspect-ratio: 455/254;
  max-width: 32.5%;
  overflow: hidden;
  border-radius: 10px;
  background: #DD7600;
}

.our_story_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ✅ 반응형 (태블릿 이하) */
@media (max-width: 1024px) {
  .our_story_wrap {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 48px;
  }

  .our_story_txt {
    align-items: center;
  }

  .our_story_txt .title,
  .our_story_txt .txt {
    text-align: center;
  }

  .our_story_img {
    width: 100%;
    max-width: 100%;
  }
}

/* ✅ 모바일 (좁은 화면) */
@media (max-width: 600px) {
  /* .our_story_wrap {
    padding: 48px 0;
  } */

  .our_story_img {
    width: 100%;
    max-width: none;
    border-radius: 8px;
  }
}



/* plans ==========================================================================================================*/
.plans_wrap {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: clamp(72px, 7vw, 72px) 0;
}

.plans_img {
  width: 66.2%;
  max-width: 66.2%;
  aspect-ratio: 927/519;
  overflow: hidden;
  border-radius: 10px;
  background: #DD7600;
}

.plans_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.plans_txt {
  display: flex;
  flex-direction: column;
  width: 32.5%;
  align-items: center;
  justify-content: center;
}

.plans_txt .title {
  color: #2B2B2B;
  text-align: center;
  font-family: Pretendard, sans-serif;
  font-feature-settings: 'dlig'on;
  font-size: clamp(32px, 3vw, 32px);
  font-weight: 500;
  line-height: normal;
  margin-bottom: 9px;
}

.plans_txt .txt {
  color: #5C5C5C;
  text-align: center;
  font-family: Pretendard, sans-serif;
  font-feature-settings: 'dlig'on;
  font-size: clamp(18px, 1.2vw, 18px);
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 36px;
}

.plans_btn {
  display: flex;
  width: 200px;
  padding: 14px 0;
  justify-content: center;
  align-items: center;
  border: none;
  border-radius: 10px;
  background: #0F1220;
  color: #FFF;
  text-align: center;
  font-family: Pretendard, sans-serif;
  font-feature-settings: 'dlig'on;
  font-size: clamp(18px, 1.2vw, 18px);
  font-weight: 500;
  text-transform: uppercase;
  line-height: normal;
  text-overflow: ellipsis;
  overflow: hidden;
}

/* ✅ 반응형 (태블릿 이하) */
@media (max-width: 1024px) {
  .plans_wrap {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 48px;
  }

  .plans_img {
    width: 100%;
    max-width: none;
  }

  .plans_txt {
    width: 100%;
  }
}

/* ✅ 모바일 (좁은 화면) */
@media (max-width: 600px) {
  .plans_wrap {
    padding: 48px 0;
  }

  .plans_btn {
    width: 100%;
    max-width: 260px;
  }
}


/* our_values ==========================================================================================================*/
.our_values_wrap {
  display: flex;
  flex-direction: column;
  padding: clamp(72px, 7vw, 72px) 0;
}

.our_values_wrap .title h2 {
  color: #2B2B2B;
  font-family: Pretendard, sans-serif;
  font-feature-settings: 'dlig'on;
  font-size: clamp(28px, 3vw, 32px);
  font-weight: 500;
  line-height: normal;
  text-align: left;
  margin-bottom: clamp(24px, 3vw, 36px);
}

.our_values_box {
  display: flex;
  gap: 18px;
}

.our_values_box .card {
  flex: 1 1 calc((100% / 3) - 36px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 6px;
  padding: 36px 18px;
  aspect-ratio: 454.67/182.53;
  border-radius: 10px;
  border: 1px solid #DD7600;
  background: rgba(221, 118, 0, 0.06);
}

.our_values_box .card img {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.our_values_box .card h2 {
  color: #2B2B2B;
  font-family: Pretendard, sans-serif;
  font-feature-settings: 'dlig'on;
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 500;
  line-height: normal;
}

.our_values_box .card p {
  color: #5C5C5C;
  font-family: Pretendard, sans-serif;
  font-feature-settings: 'dlig'on;
  font-size: clamp(16px, 1.2vw, 18px);
  font-weight: 400;
  line-height: 150%;
}

/* ✅ 반응형 (태블릿 이하) */
@media (max-width: 1024px) {
  .our_values_box {
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
  }

  .our_values_box .card {
    flex: 1 1 calc(100% - 24px);
    max-width: calc(100% - 24px);
    aspect-ratio: 454.67/40;
  }

}



/* arrivals ==========================================================================================================*/
.con04 {
  padding: clamp(72px, 7vw, 120px) 0;
}

.con04 .inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(36px, 4vw, 60px);
}

.arrivals_wrap {
  display: flex;
  flex-direction: column;
  gap: clamp(36px, 4vw, 60px);
}

.arrivals_wrap .title h2 {
  color: #2B2B2B;
  text-align: center;
  font-feature-settings: 'dlig'on;
  font-family: Pretendard;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-align: left;
}

.arrivals_wrap .title p {
  color: #5C5C5C;
  font-feature-settings: 'dlig'on;
  font-family: Pretendard;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 27px */
  text-align: left;
}


.drop_boxes {
  display: flex;
  gap: 18px;
}

.select_box {
  position: relative;
  width: 200px;
  display: flex;
  gap: 18px;
}

.select_box select {
  appearance: none;
  /* 기본 화살표 제거 */
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  padding: 12px 36px 12px 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #fff;
  font-family: Pretendard;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  border-radius: 10px;
  background: #E5E5E5;
  display: flex;
  padding: 9px 18px;
  justify-content: center;
  align-items: center;
  gap: 18px;
}

/* 가짜 화살표 */
.select_box::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  width: 10px;
  height: 10px;
  border-right: 2px solid #666;
  border-bottom: 2px solid #666;
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
}



.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}

.cards .card {
  flex: 0 0 calc(20% - 24px);
  min-width: 220px;
  border-radius: 10px;
  background: #FFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
}

.cards .card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.cards .card_img {
  width: 100%;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 12px;
}

.cards .card_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.cards .card:hover .card_img img {
  transform: scale(1.05);
}

.cards .card h2 {
  color: #2B2B2B;
  font-family: Pretendard, sans-serif;
  font-feature-settings: 'dlig'on;
  font-size: clamp(16px, 1.4vw, 18px);
  font-weight: 500;
  line-height: 140%;
  margin-bottom: 6px;
}

.cards .card p {
  color: #5C5C5C;
  font-family: Pretendard, sans-serif;
  font-feature-settings: 'dlig'on;
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 400;
  line-height: 150%;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
}

.pagination .num_box ul {
  display: flex;
  gap: 8px;
}

.pagination .num_box ul li {
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid #DEDEDE;
  font-family: Pretendard, sans-serif;
  font-size: 16px;
  color: #333;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pagination .num_box ul li.active,
.pagination .num_box ul li:hover {
  background: #DD7600;
  color: #FFF;
  border-color: #DD7600;
}

/* ✅ 반응형 */
@media (max-width: 1024px) {
  .cards .card {
    flex: 1 1 calc(33.33% - 16px);
  }
}

@media (max-width: 768px) {
  .drop_boxes {
    flex-direction: column;
    align-items: flex-start;
  }

  .cards .card {
    flex: 1 1 calc(50% - 12px);
  }
}

@media (max-width: 480px) {
  .cards .card {
    flex: 1 1 100%;
  }
}


/* 20251024 추가 */
.flex {
  display: flex;
  flex-wrap: wrap;
}

.main_tit_box.flex {
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
}

.h_32 {
  color: #2B2B2B;
  font-feature-settings: 'dlig'on;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}

.center {
  text-align: center !important;
}

.w500 {
  font-weight: 500 !important;
}

.p_18 {
  color: #2B2B2B;
  font-feature-settings: 'dlig'on;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 27px */
}

.c_5c5c {
  color: #5C5C5C !important;
}

.p_20 {
  color: #2B2B2B;
  font-feature-settings: 'dlig'on;
  font-size: 20px;
  font-style: normal;
  line-height: 150%;
  /* 30px */
}

.arrival_list ul {
  align-items: flex-start;
  gap: 18px;
  row-gap: 36px;
  width: 100%;
}

.arrival_list ul li {
  flex-direction: column;
  gap: 18px;
  width: calc(20% - 15px);
}

.arrival_list ul li .arrival_img {
  aspect-ratio: 1 / 1;
  width: 100%;
  height: 100%;
}

.arrival_list ul li .arrival_img img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.arrival_txt {
  flex-direction: column;
  gap: 9px;
}

.text_over_01 {
  overflow: hidden !important;
  white-space: normal !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 1 !important;
  -webkit-box-orient:
    vertical !important;
  word-break: break-word;
}

.text_over_02 {
  overflow: hidden !important;
  white-space: normal !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient:
    vertical !important;
  word-break: break-word;
}

.h_62 {
  color: #2B2B2B;
  font-feature-settings: 'dlig'on;
  font-family: Pretendard;
  font-size: clamp(55px, 3.2vw, 62px);
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 93px */
}

.fff {
  color: #fff !important;
}

.orange_banner {
  display: flex;
  width: 100%;
  border: 1px solid #DEDEDE;
  border-radius: 10px;
  overflow: hidden;
  background: #F6F6F6;
}

.banner_txt_box {
  display: flex;
  width: 100%;
  height: 100%;
}

.banner_side {
  width: 50%;
  display: flex;
  align-items: center;
  /* justify-content: end; */
  padding: 0 72px;
}

.banner_side.left {
  padding: 72px 0 72px 36px;
  background: #0F1220;
}

.banner_side.left h3 {
  color: #FFF;
  font-feature-settings: 'dlig'on;
  font-family: Pretendard;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 72px */
}

.banner_side.right {
  background: #F6F6F6;
  padding: 36px;
}

.banner_btn_box {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.banner_txt_content {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.banner_txt_content .p_18 {
  margin-top: 0 !important;
}

.p_32 {
  color: #2B2B2B;
  font-feature-settings: 'dlig'on;
  font-size: 32px;
  font-style: normal;
  line-height: normal;
}

.p_18 {
  color: #2B2B2B;
  font-feature-settings: 'dlig'on;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.long_banner {
  padding: 20px 0 !important;
}

.long_banner_img_box img {
  border-radius: 10px;
  width: 100%;
  height: 100%;
}

.long_banner_img_box {
  width: 100%;
  height: 200px;
}

.section {
  padding: 72px 0;
}

.arrival_list.top_seller ul li {
  width: calc(25% - 14px);
}

.arrival_list.top_seller ul li .arrival_img {
  aspect-ratio: 1 / 0.5528;
}


.arrival_list.partner_list ul li {
  width: calc(20% - 15px);
}

.arrival_list.partner_list ul li .arrival_img {
  aspect-ratio: 1 / 0.55357;
  align-items: center;
  justify-content: center;

  border-radius: 10px;
  border: 1px solid #DEDEDE;
  background: #EDEDED;
  padding: 26px;
}

.arrival_list.partner_list ul li .arrival_img img {
  max-width: 200px;
  max-height: 134px;
  object-fit: contain;
}

.cate_tab {
  gap: 36px;
  align-items: center;
  row-gap: 10px;
}

.cate_tab_btn {
  color: #5C5C5C;
  font-feature-settings: 'dlig'on;
  font-family: Pretendard;
  font-size: clamp(16px, 3.2vw, 18px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  cursor: pointer;
}

.cate_tab_btn.active {
  color: #DD7600;
  text-decoration: underline;
}

.mt9 {
  margin-top: 9px !important;
}

.browse_box ul {
  flex-direction: column;
}

.browse_box ul li {
  width: 100%;
}

.browse_list_box {
  border-bottom: 1px solid #DEDEDE;
  padding: 36px 0;
  align-items: flex-start;
  gap: 18px;
}

.browse_box ul li:first-child .browse_list_box {
  border-top: 1px solid #dedede;
}

.browse_img_box {
  aspect-ratio: 1 / 0.55357;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid #DEDEDE;
  background: #EDEDED;
  padding: 26px;
  width: 336px;
}

.browse_img_box img {
  max-width: 200px;
  max-height: 134px;
  object-fit: contain;
}

.browse_txt_box {
  flex-direction: column;
  gap: 36px;
  width: calc(100% - 354px);
  padding: 17px 0;
}

.browse_txt_box .plans_btn {
  margin-left: auto;
}


@media all and (max-width:1400px) {
  .orange_banner h3 {
    width: 100%;
  }

  .arrival_list.partner_list ul li {
    width: calc(33.333% - 12px);
  }
}


@media all and (max-width:1200px) {
  .arrival_list ul li {
    width: calc(25% - 14px);
  }

  .arrival_list.partner_list ul li {
    width: calc(50% - 9px);
  }



}

.section.last {
  padding: 72px 0 144px 0;
}

@media all and (max-width:1000px) {
  .banner_side {
    width: 100%;
    padding: 36px 72px;
  }

  .banner_side.left {
    padding: 36px 72px;
  }

  .orange_banner {
    height: fit-content;
  }

  .arrival_list.top_seller ul li {
    width: calc(50% - 9px);
  }

  .section {
    padding: 45px 0;
  }

  .section.last {
    padding: 45px 0 72px 0;
  }

}


@media all and (max-width:900px) {
  .main_tit_box.flex {
    flex-direction: column;
    gap: 30px;
    align-items: unset;
  }

  .main_tit_box.flex .plans_btn {
    margin-left: auto;
  }

  .arrival_list ul li {
    width: calc(33.333% - 12px);
  }

  .browse_txt_box {
    width: 100%;
    padding: 5px 0;
  }

  .browse_list_box {
    padding: 20px 0;
  }

  .browse_img_box {
    margin: 0 auto;
  }
}

@media all and (max-width:768px) {
  .arrival_list ul li {
    width: calc(50% - 9px);
  }
}


.search_bar_wrapper {
  margin: 0 auto;
  margin-bottom: 40px;
  width: 800px;
  max-width: 100%;
  height: 64px;
  padding: 0 28px;
  background: white;
  border-radius: 999px;
  box-shadow: -1px 1px 40px 0px rgba(102, 102, 102, 0.4), 0px 1px 12px 0px rgba(102, 102, 102, 0.4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.search_bar_input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  color: #A3A3A3;
  font-size: 18px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 400;
}

.search_bar_input::placeholder {
  color: #A3A3A3;
}

.search_bar_input:focus {
  color: #262626;
}

.search_bar_button {
  width: 20px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.search_bar_icon {
  width: 20px;
  height: 20px;
  background: #78716C;
  display: block;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><circle cx="11" cy="11" r="8"/><path d="m21 21-4.35-4.35"/></svg>') no-repeat center;
  mask-size: contain;
}

@media (max-width: 968px) {
  .search_bar_wrapper {
    width: 100%;
    height: 56px;
    padding: 0 24px;
  }

  .search_bar_input {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .search_bar_wrapper {
    height: 52px;
    padding: 0 20px;
  }

  .search_bar_input {
    font-size: 15px;
  }

  .search_bar_button {
    width: 18px;
    height: 18px;
  }

  .search_bar_icon {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  .search_bar_wrapper {
    height: 48px;
    padding: 0 16px;
  }

  .search_bar_input {
    font-size: 14px;
  }

  .search_bar_button {
    width: 16px;
    height: 16px;
  }

  .search_bar_icon {
    width: 16px;
    height: 16px;
  }
}




.section_search {
  padding: 72px 0;
}

.section_search .search_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

.section_search .search_box {
  width: 1000px;
  height: 60px;
  padding: 0 18px;
  background: #EDEDED;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.section_search .search_box input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: #2B2B2B;
  font-size: 18px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 400;
}

.section_search .search_box input::placeholder {
  color: #999999;
}

.section_search .search_btn {
  width: 20px;
  height: 20px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
}

.section_search .search_btn img {
  width: 100%;
  height: 100%;
  display: block;
}

.section_search .category_wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section_search .category_row {
  display: flex;
  gap: 18px;
}

.section_search .category_btn {
  padding: 9px 36px;
  border: 1px solid #DEDEDE;
  border-radius: 30px;
  background: none;
  color: #5C5C5C;
  font-size: 18px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 500;
  text-transform: capitalize;
  cursor: pointer;
  transition: all 0.3s;
}

.section_search .category_btn:hover {
  border-color: #DD7600;
  color: #DD7600;
}

.section_search .category_btn.active {
  border-color: #DD7600;
  color: #DD7600;
}

@media (max-width: 1200px) {
  .section_search .search_box {
    width: 100%;
    max-width: 1000px;
  }

  .section_search .category_row {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .section_search {
    padding: 60px 0;
  }

  .section_search .search_wrap {
    gap: 24px;
  }

  .section_search .search_box {
    height: 50px;
    padding: 0 14px;
  }

  .section_search .search_box input {
    font-size: 16px;
  }

  .section_search .category_wrap {
    gap: 12px;
  }

  .section_search .category_row {
    gap: 12px;
  }

  .section_search .category_btn {
    padding: 7px 24px;
    font-size: 14px;
  }
}

/* 20251231 추가 */
/* CSS */
.section_signup {
  background: #EDEDED;
 position: relative;
  overflow: hidden;
  padding-bottom: 72px;
}

.section_signup .inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding-top: unset !important;
  /* padding-top: 72px; */
}

.section_signup .signup_swiper {
  width: 100%;
  height: 250px;
  margin-bottom: 58px;
  overflow: visible;
}

.section_signup .slide_content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section_signup .text_area h2 {
  color: #2B2B2B;
  font-size: 52px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 500;
  line-height: 78px;
  margin: 0;
}

.section_signup .img_area {
  width: 450px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.section_signup .img_area img {
  max-width: 100%;
  height: auto;
}

.section_signup .signup_arrows {
  position: absolute;
  left: -72px;
  right: -72px;
  top: 200px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.section_signup .arrow_prev,
.section_signup .arrow_next {
  width: 16px;
  height: 30px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  pointer-events: auto;
  transition: opacity 0.3s;
}

.section_signup .arrow_prev:hover,
.section_signup .arrow_next:hover {
  opacity: 1;
}

.section_signup .arrow_prev img,
.section_signup .arrow_next img {
  width: 100%;
  height: 100%;
}

.section_signup .category_boxes {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section_signup .category_row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.section_signup .category_box {
  flex: 0 0 calc((100% - 90px) / 6);
  max-width: calc((100% - 90px) / 6);
  background: #F6F6F6;
  border: 1px solid #DEDEDE;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  aspect-ratio: 1 / 1.2;
  position: relative;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
  overflow: hidden;
}

.section_signup .category_box:hover {
  border-color: #DD7600;
  background: #FFF5F0;
}

.section_signup .category_box .category_img {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #E0E0E0;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.section_signup .category_box .category_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section_signup .category_box h3 {
  color: #2B2B2B;
  font-size: 20px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
  font-feature-settings: 'dlig' 1;
  overflow: hidden !important;
  white-space: normal !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 1 !important;
  -webkit-box-orient: vertical !important;
  word-break: break-word;
}

@media (max-width: 1600px) {
  .section_signup .inner {
    padding-top: 100px;
  }

  .section_signup .text_area h2 {
    font-size: 42px;
    line-height: 63px;
  }

  .section_signup .img_area {
    width: 350px;
    height: 233px;
  }
}

@media (max-width: 1200px) {
  .section_signup {
    height: auto;
    padding-bottom: 60px;
  }

  .section_signup .inner {
    padding-top: 80px;
    padding-bottom: 60px;
  }

  .section_signup .signup_swiper {
    height: auto;
  }

  .section_signup .slide_content {
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
  }

  .section_signup .text_area h2 {
    font-size: 36px;
    line-height: 54px;
  }

  .section_signup .img_area {
    width: 100%;
    max-width: 450px;
  }

  .section_signup .signup_arrows {
    top: auto;
    bottom: 520px;
  }

  .section_signup .category_box {
    flex: 0 0 calc((100% - 36px) / 3);
    max-width: calc((100% - 36px) / 3);
  }

  .section_signup .category_box h3 {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .section_signup .inner {
    padding-top: 60px;
    padding-bottom: 40px;
  }

  .section_signup .text_area h2 {
    font-size: 28px;
    line-height: 42px;
  }

  .section_signup .img_area {
    width: 100%;
    height: 200px;
  }

  .section_signup .signup_arrows {
    padding: 0 20px;
    bottom: 400px;
  }

  .section_signup .category_box {
    flex: 0 0 calc((100% - 18px) / 2);
    max-width: calc((100% - 18px) / 2);
  }

  .section_signup .category_box h3 {
    font-size: 16px;
    line-height: 24px;
  }
}

@media (max-width: 480px) {
  .section_signup .category_row {
    gap: 12px;
  }

  .section_signup .category_box {
    flex: 0 0 calc((100% - 12px) / 2);
    max-width: calc((100% - 12px) / 2);
  }

  .section_signup .category_box h3 {
    font-size: 14px;
    line-height: 20px;
    top: 8px;
    left: 12px;
    width: calc(100% - 24px);
  }
}

.text_over_01 {
  overflow: hidden !important;
  white-space: normal !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 1 !important;
  -webkit-box-orient:
    vertical !important;
  word-break: break-word;
}


.main_four_banner {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.main_four_banner li {
  border-radius: 10px;
  border: 1px solid #DEDEDE;
  overflow: hidden;
  aspect-ratio: 1 / 1;

  flex: 0 0 calc(25% - 54px / 4);
}

.main_four_banner li img {
  width: 100%;
  height: 100%;
}

@media (max-width: 1000px) {
  .main_four_banner li {
  flex: 0 0 calc(50% - 18px / 2);
}
}




.section_top_seller {
  padding: 72px 0;
}

.section_top_seller .seller_wrap {
  padding: 36px;
  background: #F6F6F6;
  border: 1px solid #DEDEDE;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.section_top_seller .seller_header {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.section_top_seller .seller_header h2 {
  color: #2B2B2B;
  font-size: 32px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 500;
  margin: 0;
}

.section_top_seller .seller_header p {
  color: #5C5C5C;
  font-size: 18px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 400;
  line-height: 27px;
  margin: 0;
}

.section_top_seller .divider {
  width: 100%;
  height: 1px;
  background: #DEDEDE;
}

.section_top_seller .seller_grid {
  display: flex;
  /* flex-direction: column; */
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.section_top_seller .seller_row {
  flex: 0 0 calc(25% - 54px / 4);
}

.section_top_seller .seller_item {
  flex: 1;
  /* border: 1px solid #DEDEDE; */
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.3s;
}

/* .section_top_seller .seller_item:hover {
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
} */

.section_top_seller .seller_logo {
  width: 100%;
  aspect-ratio: 1 / 1;
  /* max-width: 200px;
  height: 200px; */
  display: flex;
  align-items: center;
  justify-content: center;
  /* margin-bottom: 18px; */
  overflow: hidden;
}

.section_top_seller .seller_logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.section_top_seller .seller_item h3 {
  color: #2B2B2B;
  font-size: 20px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 500;
  line-height: 30px;
  text-align: center;
  margin: 0;
}

.section_top_seller .seller_item p {
  color: #5C5C5C;
  font-size: 18px;
  font-family: 'Pretendard', sans-serif;
  font-weight: 400;
  line-height: 27px;
  text-align: center;
  margin: 0;
}


@media (max-width: 1200px) {
  .section_top_seller {
    padding: 60px 0;
  }
  
  .section_top_seller .seller_wrap {
    padding: 24px;
    gap: 24px;
  }
  
  .section_top_seller .seller_header h2 {
    font-size: 28px;
  }
  
  .section_top_seller .seller_header p {
    font-size: 16px;
    line-height: 24px;
  }
  
  .section_top_seller .seller_row {
    flex-wrap: wrap;
  }
  
  .section_top_seller .seller_item {
    flex: 0 0 calc(50% - 9px);
  }
  
  
  .section_top_seller .seller_item h3 {
    font-size: 18px;
    line-height: 27px;
  }
  
  .section_top_seller .seller_item p {
    font-size: 16px;
    line-height: 24px;
  }
}

@media (max-width:1000px) {
  .section_top_seller .seller_row {
  flex: 0 0 calc(50% - 18px / 2);
}
}

@media (max-width: 768px) {
  .section_top_seller {
    padding: 48px 0;
  }
  
  .section_top_seller .seller_wrap {
    padding: 20px;
    gap: 20px;
  }
  
  .section_top_seller .seller_header h2 {
    font-size: 24px;
  }
  
  .section_top_seller .seller_header p {
    font-size: 14px;
    line-height: 21px;
  }
  
  .section_top_seller .seller_grid {
    gap: 12px;
  }
  
  .section_top_seller .seller_row {
    gap: 12px;
  }
  
  .section_top_seller .seller_item {
    flex: 0 0 100%;
  }
  
  
  .section_top_seller .seller_item h3 {
    font-size: 16px;
    line-height: 24px;
  }
  
  .section_top_seller .seller_item p {
    font-size: 14px;
    line-height: 21px;
  }
}


.hongbo .inner {
  padding: 36px;
  border-radius: 10px;
border: 1px solid #DEDEDE;
background: #F6F6F6;
}

.hongbo .main_tit_box {
  border-bottom: 1px solid #dedede;
  padding-bottom: 36px;
}

.hongbo .arrival_txt {
  text-align: center;
}

.hongbo .arrival_list.partner_list ul li {
  width: 100%;
  flex: 0 0 calc(16.666% - 90px / 6);
}

.hongbo .arrival_list.partner_list ul li .arrival_img {
  aspect-ratio: 1 / 1;
  padding: 0;
}

.hongbo .arrival_list.partner_list ul li .arrival_img img {
  max-width: unset;
  max-height: unset;
  width: 100%;
  height: 100%;
}


@media (max-width: 1200px) {
  .hongbo .arrival_list.partner_list ul li {
  flex: 0 0 calc(33.333% - 36px / 3);
}
}

@media (max-width: 768px) {
  .hongbo .arrival_list.partner_list ul li {
  flex: 0 0 calc(50% - 18px / 2);
}
}



/* 20260113 추가 */
/* Swiper Category 추가 */
/* Swiper Category 추가 */
.category_swiper_container {
  position: relative;
  padding-bottom: 50px;
}

.category_swiper {
  overflow: hidden;
}

.category_swiper .swiper-wrapper {
  display: flex;
}

.category_swiper .swiper-slide {
  height: auto;
}

.category_swiper .swiper-slide .category_box {
  width: 100%;
  max-width: 100%;
  flex: none;
}

/* Progress Bar */
.swiper-progress-container {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 4px;
  background: rgba(34, 34, 34, 0.1);
  border-radius: 0;
  overflow: hidden;
}

.swiper-progress-bar {
  height: 100%;
  background: #444;
  border-radius: 0;
  transition: width 0.3s ease;
}

.category_swiper_container.no-slide .swiper-progress-container {
  display: none;
}

.category_swiper_container.no-slide {
  padding-bottom: 0;
}