
/* 이기현 추가 2025-06-28 */
:root {
  --cl-link: #38aff5;  /* 팩토리메인 main일떄는 #F4511E 컬러적용 */
}

.factory_header {
				--cl-link: #F4511E;
}

/* GNB 검색상자 사이징 */
#gnb {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
}
#search.search_box_wrap {
  width: unset !important;
  max-width: 190px;
  overflow-x: hidden;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
}
#search.search_box_wrap .search_box_new::before {
  left: 12px !important;
}
#search.search_box_wrap .search_box_new_input {
  padding-left: 36px !important;
  /* width: unset !important; */
}

#search_result .wrap .search_box input {
    height: 38px !important;
}

/* 메인 롤링배너 사이징 aspect ratio 맞춰줌 */
.main_banner_new_slider .swiper-slide {
  aspect-ratio: 1;
}
.main_banner_new_slider .swiper-slide > a {
  width: 100%;
  height: 100%; 
}
.main_banner_new_slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* 퀵버튼 후버 애니메이션 */
.quick-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(135deg, transparent 25%, rgba(0, 0, 0, 0.05) 50%, transparent 75%);
  transition: left 0.6s ease;
  z-index: -1;
}

.quick-button:hover::before {
  left: 0;
}

/* 상품이미지 Cover처리 : 344 x 393 -> em단위로 변경 */
.main_product_roll_section {
  --item-width: 21.5em;
  --item-height: 33.25em;
  --item-img-height: 24.5em;
}
.main_product_roll_section .swiper-slide {
  width: var(--item-width);
  height: var(--item-height);
}

.main_product_roll_section .img-box {
  width: var(--item-width);
  height: var(--item-img-height);
}
.main_product_roll_section .img-box > img {
  max-width: unset;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.main_product_roll_section .img-box:has(img.lazy) {
  position: relative;
}
.main_product_roll_section .img-box > img.lazy {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    position: absolute;
    top:0;
    left:0;
}
.main_product_roll_section .img-box > img.lazy.active {
    opacity: 1;
}
.main_product_roll_section .btn_cart {
    right: 12px !important;
    top: 12px !important; /* calc(var(--item-width) + 64px) !important;*/
}

/* 실시간 랭킹 크기가 줄어 들더라도 한 화면에 1~5등 표시*/
.rank-slide-wrap.swiper {
    margin-right: 190px;
    width: calc(100% - 190px);
}
.rank-slide-wrap .swiper-slide {
    max-width: 100% !important;
}
.rank-slide-inner {
    width: 100%;
    max-width: 100%;
}
.rank-slide-box {
    flex-basis: 20%;
    max-width: 20%;
    box-sizing: border-box;
}
.rank-slide-box > a:has(.img-box) {
    display: inline-block;
    width: 100%;
    position: relative;
}
.rank-slide-box .img-box {
    max-width: 100%;
}
.rank-slide-box a .txt-box {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    transition-delay: 0s;
}
.rank-slide-box a:hover .txt-box {
    opacity: 1;
    visibility: visible;
    background-color: white;
    transition-delay: 0.3s; /* 나타날 때만 지연 */ 
}

/* 라방 간격조정 및 하위상품 많을떄 스크롤 처리 */
.live-broadcast-inner {
  width: calc(100% - 40px);
}

.live-content-wrap {
  column-gap: 2em;
}

.live-content-wrap > [class^="live-content"] {
  width: 50%; /* flex > left & right */
  justify-content: flex-start;
}

.live-content-wrap .live-content-inner-img {
  width: unset !important;
  height: 100% !important;
  position: relative;
}
.live-content-wrap .live-content-inner-img > img {
  height: 100% !important;
  object-fit: cover;
}
.live-content-wrap .live-content-inner-txt {
  padding-left: 20px;
  width: calc(47% - 20px);
  position: relative;
  box-sizing: border-box;
}
.live-content-inner-txt .related-pr {
  width: calc(100% - 20px);
}
.live-content-inner-txt .related-pr-inner {
  overflow-x: auto;
  overflow-y: hidden;
}
.live-broadcast-wrap .live-content-inner-txt .related-pr-inner ul {
  gap: 10px;
}
.live-content-inner-txt .related-pr span {
  white-space: nowrap;
}

/* 푸터 공지사항 줄바꿈 방지 및 색깔넣기 */
#footer .inner {
  width: calc(100% - 40px) !important;
  overflow: hidden;
}

#footer .noti_preview .inner dl {
  width: 50%;
  flex: 1 1 50% !important;
  display: flex;
}

#footer .noti_preview .inner dt {
  width: unset;
  flex: 0 1 auto;
  white-space: nowrap;
  color: var(--cl-link);
}

#footer .noti_preview .inner dd {
  width: unset;
  flex: 1 1 auto;
  white-space: nowrap;
}

/* 상품검색 */
#wrap:has(#search_result) {
  overflow: visible !important;
}
#search_result .sticky_box {
    position: sticky;
    top: 0px;
    background-color: white;
    overflow: visible;
    z-index: 10;
    box-shadow: 0 2px 0 0 #efefefef;
}
.scrolldown .sticky_box {
  top: 90px !important;
}
.sticky_box > .hd {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1em;
}

#search_result > .wrap {
  padding: 0 3em; /* responsive width대신 여백으로 처리함 */
}

#search_result .search_box {
  margin: unset !important; /* goods.css 뭉게기 */
}

#search_result .wrap .result_wrap .tab_menu ul li .count {
  color: var(--cl-link) !important;
}

#search_result .result_wrap .right_wrap > .hd h3 .num {
  color: var(--cl-link) !important;
}

#category_detail > .wrap {
  padding: 0 3em; /* responsive width대신 여백으로 처리함 */
}

#category_detail .search_box {
  margin: unset !important; /* goods.css 뭉게기 */
}

#category_detail .wrap .result_wrap .tab_menu ul li .count {
  color: var(--cl-link) !important;
}

#category_detail .result_wrap .right_wrap > .hd h3 .num {
  color: var(--cl-link) !important;
}

.font_Mon.num {
  color: var(--cl-link) !important;
}

#search_result .wrap .result_wrap .tab_menu ul li .count {
    font-size: 15px;
    font-weight: 700;
    color: #b7a386;
}

#search_result .wrap .aside_wrap {
  padding-top: 0 !important;
}

#category_detail .wrap .result_wrap .tab_menu ul li .count {
    font-size: 15px;
    font-weight: 700;
    color: #b7a386;
}

#category_detail .wrap .aside_wrap {
  padding-top: 0 !important;
}

ul.catelist > li {
  margin: 1em 0;
}

ul.catelist > li:first-child {
  border-top: 0 !important;
}

#search_result .wrap .accodion_tit {
  padding: 1em 0 !important;
}

#search_result .wrap .accodion_con li:first-child {
  padding-top: 5px !important;
}

#search_result .wrap .aside_wrap .filter:last-child {
  border-bottom: 0 !important;
}

/* 상품검색 필터 : list 다중 선택 */
#search_result .wrap .aside_wrap .filter .multi_text_list {
  display: flex;
  flex-wrap: wrap;
  margin: -5px 5px 25px -5px;
  flex-direction: column;
  align-items: flex-start;
}
#search_result .wrap .aside_wrap .filter .multi_text_list li {
  padding: 5px;
}
#search_result .wrap .aside_wrap .filter .multi_text_list li.list_all label {
  font-size: 15px;
}
#search_result .wrap .aside_wrap .filter .multi_text_list li input {
  display: none;
}
#search_result .wrap .aside_wrap .filter .multi_text_list li input + label {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 15px;
  box-sizing: border-box;
  justify-content: center;
  padding: 0 14px;
}
#search_result .wrap .aside_wrap .filter .multi_text_list li input[type="checkbox"]:checked + label {
  font-weight: 900;
}

/* 상품검색 필터 : list 다중 선택 */
#search_result .wrap .aside_wrap .filter .multi_select_list {
  display: flex;
  flex-wrap: wrap;
  margin: -5px 5px 25px -5px;
}
#search_result .wrap .aside_wrap .filter .multi_select_list li {
  padding: 5px;
}
#search_result .wrap .aside_wrap .filter .multi_select_list li input {
  display: none;
}
#search_result .wrap .aside_wrap .filter .multi_select_list li input + label {
  display: flex;
  align-items: center;
  height: 44px;
  border: 1px solid #e5e5e5;
  border-radius: 5px;
  font-weight: 500;
  font-size: 15px;
  box-sizing: border-box;
  justify-content: center;
  padding: 0 14px;
}
#search_result .wrap .aside_wrap .filter .multi_select_list li input[type="checkbox"]:checked + label {
  border: 1px solid #222222;
  border-radius: 5px;
  color: #222222;
}

/* 상품검색 필터 : list 체크박스 아이템 */
#search_result .wrap .aside_wrap .filter .brand_chk_list {
  --do: "nothing";
}
#search_result .wrap .aside_wrap .filter .multi_check_list li {
  padding-top: 15px;
}
#search_result .wrap .aside_wrap .filter .multi_check_list li input {
  display: none;
}
#search_result .wrap .aside_wrap .filter .multi_check_list li input + label {
  font-size: 16px;
  font-weight: 500;
  color: #222;
  display: flex;
}
#search_result .wrap .aside_wrap .filter .multi_check_list li input + label:before {
  margin-right: 10px;
  display: block;
  content: "";
  width: 22px;
  height: 22px;
  background: url(../../../ux/imgs/web/display/check_box_off@3x.png) center no-repeat;
  background-size: 22px;
}
#search_result .wrap .aside_wrap .filter .multi_check_list li input:checked + label:before {
  display: block;
  content: "";
  width: 22px;
  height: 22px;
  background: url(../../../ux/imgs/web/display/check_box_on@3x.png) center no-repeat;
  background-size: 22px;
}

#category_detail .wrap .accodion_tit {
  padding: 1em 0 !important;
}

#category_detail .wrap .accodion_con li:first-child {
  padding-top: 5px !important;
}

#category_detail .wrap .aside_wrap .filter:last-child {
  border-bottom: 0 !important;
}

/* 상품검색 필터 : list 다중 선택 */
#category_detail .wrap .aside_wrap .filter .multi_text_list {
  display: flex;
  flex-wrap: wrap;
  margin: -5px 5px 25px -5px;
  flex-direction: column;
  align-items: flex-start;
}
#category_detail .wrap .aside_wrap .filter .multi_text_list li {
  padding: 5px;
}
#category_detail .wrap .aside_wrap .filter .multi_text_list li.list_all label {
  font-size: 15px;
}
#category_detail .wrap .aside_wrap .filter .multi_text_list li input {
  display: none;
}
#category_detail .wrap .aside_wrap .filter .multi_text_list li input + label {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 15px;
  box-sizing: border-box;
  justify-content: center;
  padding: 0 14px;
}
#category_detail .wrap .aside_wrap .filter .multi_text_list li input[type="checkbox"]:checked + label {
  font-weight: 900;
}

/* 상품검색 필터 : list 다중 선택 */
#category_detail .wrap .aside_wrap .filter .multi_select_list {
  display: flex;
  flex-wrap: wrap;
  margin: -5px 5px 25px -5px;
}
#category_detail .wrap .aside_wrap .filter .multi_select_list li {
  padding: 5px;
}
#category_detail .wrap .aside_wrap .filter .multi_select_list li input {
  display: none;
}
#category_detail .wrap .aside_wrap .filter .multi_select_list li input + label {
  display: flex;
  align-items: center;
  height: 44px;
  border: 1px solid #e5e5e5;
  border-radius: 5px;
  font-weight: 500;
  font-size: 15px;
  box-sizing: border-box;
  justify-content: center;
  padding: 0 14px;
}
#category_detail .wrap .aside_wrap .filter .multi_select_list li input[type="checkbox"]:checked + label {
  border: 1px solid #222222;
  border-radius: 5px;
  color: #222222;
}

/* 상품검색 필터 : list 체크박스 아이템 */
#category_detail .wrap .aside_wrap .filter .brand_chk_list {
  --do: "nothing";
}
#category_detail .wrap .aside_wrap .filter .multi_check_list li {
  padding-top: 15px;
}
#category_detail .wrap .aside_wrap .filter .multi_check_list li input {
  display: none;
}
#category_detail .wrap .aside_wrap .filter .multi_check_list li input + label {
  font-size: 16px;
  font-weight: 500;
  color: #222;
  display: flex;
}
#category_detail .wrap .aside_wrap .filter .multi_check_list li input + label:before {
  margin-right: 10px;
  display: block;
  content: "";
  width: 22px;
  height: 22px;
  background: url(../../../ux/imgs/web/display/check_box_off@3x.png) center no-repeat;
  background-size: 22px;
}
#category_detail .wrap .aside_wrap .filter .multi_check_list li input:checked + label:before {
  display: block;
  content: "";
  width: 22px;
  height: 22px;
  background: url(../../../ux/imgs/web/display/check_box_on@3x.png) center no-repeat;
  background-size: 22px;
}

.fullsize > li {
  flex: 1 0 calc(100% - 6px);
}

/* filter_search & nav */
.filter_search_box {
  margin: 6px 0;
  position: relative;
}
.filter_search_box input {
  border: 0;
  background-color: #f5f5f5;
  border-radius: 1.25em;
  padding: 0.75em 1.75em;
}
.filter_search_box input::placeholder {
  color: black;
  opacity: 0.5;
}
.filter_search_box::after {
  content: "";
  position: absolute;
  right: 39px;
  top: 11px;
  width: 18px;
  height: 18px;
  background-image: url(../../images/common/search_icn.svg);
  background-size: 1em;
  background-repeat: no-repeat;
  background-position: center;
}
.filter_nav {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  column-gap: 1em;
  font-size: 0.75em;
}
.filter_nav button {
  font-weight: 900;
}


/* 사이즈 필터는 특별한 관리가 필요함 */
#search_result .wrap .aside_wrap .filter .item_size_list {
  max-height: 223px;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
}
#search_result .wrap .aside_wrap .filter .item_size_list li {
  padding: 5px;
  flex-grow: 1;
  scroll-snap-align: start;
}
#search_result .wrap .aside_wrap .filter .item_size_list li input + label {
  padding: 0 3px;
  width: unset !important;
  min-width: 45px;
}

/* 사이즈 필터는 특별한 관리가 필요함 */
#category_detail .wrap .aside_wrap .filter .item_size_list {
  max-height: 223px;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
}
#category_detail .wrap .aside_wrap .filter .item_size_list li {
  padding: 5px;
  flex-grow: 1;
  scroll-snap-align: start;
}
#category_detail .wrap .aside_wrap .filter .item_size_list li input + label {
  padding: 0 3px;
  width: unset !important;
  min-width: 45px;
}

/* 상품검색 가격구간 설정 */
.range-wrapper {
  position: relative;
  height: 34px;
}

.range-track {
  position: absolute;
  top: 16px;
  transform: translateY(-50%);
  height: 6px;
  background: #ddd;
  border-radius: 3px;
  width: 100%;
  z-index: 1;
}

.range-selected {
  position: absolute;
  top: 16px;
  transform: translateY(-50%);
  height: 6px;
  background: black;
  border-radius: 3px;
  z-index: 2;
}

.range-wrapper input[type="range"] {
  position: absolute;
  width: 100%;
  height: 40px;
  background: none;
  pointer-events: none; /* 이벤트 중복 방지 */
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  z-index: 3;
}

/* 핸들 (thumb) 스타일 */
.range-wrapper input[type="range"]::-webkit-slider-thumb {
  pointer-events: all;
  -webkit-appearance: none;
  top: -1px;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: black;
  cursor: pointer;
  border: none;
  margin-top: -5px;
  position: relative;
  z-index: 4;
}

.range-wrapper input[type="range"]::-moz-range-thumb {
  pointer-events: all;
  top: -1px;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: black;
  cursor: pointer;
  border: none;
}

.range-minmax {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: space-between;
}

/* 검색결과 우측 */
#search_result .result_wrap .right_wrap {
  margin-left: 3em !important;
  /* overflow-x: hidden; */
}

/* 검색결과 우측 */
#category_detail .result_wrap .right_wrap {
  margin-left: 3em !important;
  /* overflow-x: hidden; */
}

/* 검색결과 상품목록 */
.product_list_wrap {
  --item-width: 21.5em;
  --item-height: 33.25em;
  --item-img-height: 24.5em;
}
#search_result .result_wrap .right_wrap .product_list_wrap #listBox > li {
    margin: 0;
    width: var(--item-width);
    height: var(--item-height);
}

#category_detail .result_wrap .right_wrap .product_list_wrap #listBox > li {
    margin: 0;
    width: var(--item-width);
    height: var(--item-height);
}

.product_list_wrap .img-box {
  width: var(--item-width);
  height: var(--item-img-height);
}
.product_list_wrap .img-box > img {
  max-width: unset;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.product_list_wrap .img-box:has(img.lazy) {
  position: relative;
}
.product_list_wrap .img-box > img.lazy {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    position: absolute;
    top:0;
    left:0;
}
.product_list_wrap .img-box > img.lazy.active {
    opacity: 1;
} 
.product_list_wrap .txt-box {
    padding: 0 8px;
}
.product_list_wrap .txt-box .icon-box {
    display: flex;
    padding-top: 7px;
}
.product_list_wrap .icon-box .sale {
    font-size: 14px;
    color: #fff;
    background-color: #000;
    padding: 1px 5px;
    font-weight: 700;
    border-radius: 3px;
    border: 1px solid #000;
    margin-right: 11px;
    height: 20px;
    line-height: 20px;
}
.product_list_wrap .icon-box .first-price {
    font-size: 10px;
    color: #38AFF5;
    background-color: #fff;
    padding: 1px 5px;
    border-radius: 3px;
    border: 1px solid #38AFF5;
    margin-right: 2px;
    height: 20px;
    line-height: 20px;
}
.product_list_wrap .icon-box .free-delivery {
    font-size: 10px;
    color: #AAA;
    background-color: #fff;
    padding: 1px 5px;
    border-radius: 3px;
    border: 1px solid #AAA;
    margin-right: 2px;
    height: 20px;
    line-height: 20px;
}
.product_list_wrap .txt-box .brand-name {
    font-size: 14px;
    color: #000;
    font-weight: 500;
    line-height: 1;
    padding-top: 10px;
    display: block;
}
.product_list_wrap .txt-box .marketing-title {
    font-size: 14px;
    color: var(--cl-link);
    font-weight: 500;
    line-height: 1; 
    display: inline-block;
}
.product_list_wrap .txt-box .goods-name {
    font-size: 14px;
    color: #000;
    font-weight: 300;
    line-height: 1;
    padding-top: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product_list_wrap .txt-box .price {
    display: block;
    padding-top: 10px;
    font-size: 16px;
    color: #000;
    font-weight: 700;
    line-height: 1; 
    text-decoration: none;
}
.product_list_wrap .list_form:not(.swiper) >ul {
  row-gap: 1.5em;
}

/* 상품상세 Goods detail */
.goods_detail_wrap {
  padding: 0 3em; 

}
.hd_root {
  padding-top: 20px;
}
.hd_root ul.location {
    display: flex;
    align-items: center;
}
.hd_root ul.location li {
    display: flex;
    align-items: center;
}
.hd_root ul.location li .home {
    text-indent: -99999em;
    display: block;
    width: 13px;
    height: 13px;
    background: url(../../../ux/imgs/web/display/icon_location_home@3x.png) center
    no-repeat;
    background-size: 13px;
}    
.hd_root ul.location li a {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #222;
    letter-spacing: -0.13px;
}
/*.hd_root ul.location li:before {
    margin: 0 5px;
    display: block;
    content: "";
    width: 12px;
    height: 12px;
    background: url(../../../ux/imgs/web/global/input_arrow_black2@3x.png) center
    no-repeat;
    background-size: 12px;
}*/
#goodsDetail .goods_top_wrap {
    padding-top: 2em;
}
#goodsDetail .goods_info_right .brand_name .name:after {
    background: url(../../../ux/imgs/web/global/input_arrow_black2@3x.png) center 2px no-repeat !important;
    background-size: 14px !important;
}
.goods_info_right .txt-box {
    padding: 8px 0;
    border-bottom: 1px solid #aaa; 
}
.goods_info_right .txt-box .icon-box {
    display: flex;
    padding-top: 7px;
}
.goods_info_right .icon-box .sale {
    font-size: 14px;
    color: #fff;
    background-color: #000;
    padding: 1px 5px;
    font-weight: 700;
    border-radius: 3px;
    border: 1px solid #000;
    margin-right: 11px;
    height: 20px;
    line-height: 20px;
}
.goods_info_right .icon-box .first-price {
    font-size: 10px;
    color: #38AFF5;
    background-color: #fff;
    padding: 1px 5px;
    border-radius: 3px;
    border: 1px solid #38AFF5;
    margin-right: 2px;
    height: 20px;
    line-height: 20px;
}
.goods_info_right .tab {
    display: inline-block;
    min-width: 7em;
}
.goods_info_right .icon-box .free-delivery {
    font-size: 10px;
    color: #AAA;
    background-color: #fff;
    padding: 1px 5px;
    border-radius: 3px;
    border: 1px solid #AAA;
    margin-right: 2px;
    height: 20px;
    line-height: 20px;
}
#goodsDetail .goods_info_right .benefit ul li.info:before {
    background: url(../../../ux/imgs/display/i.png) center right no-repeat;
    background-size: 14px;
}

#goodsDetail .item_opts_wrap .item_opts > li {
    padding-top: 0.5em;
    cursor: pointer;
}
#goodsDetail .item_opts_wrap .item_opts .accodion_tit {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#goodsDetail .item_opts_wrap .item_opts .accodion_tit h3 {
    color: #222;
    font-size: 16px;
}
#goodsDetail .item_opts_wrap .item_opts .accodion_tit div {
    flex: 0 0 200px;
    column-gap: 1em;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    border-bottom: 1px solid #ccc;
    padding: 1em 0 !important;
}
#goodsDetail .item_opts_wrap .item_opts .accodion_tit exp {
    color: #a3a3a3;
}
#goodsDetail .item_opts_wrap .item_opts .accodion_tit.active span {
    transform: rotate(180deg);
}
#goodsDetail .item_opts_wrap .item_opts .accodion_tit span {
    display: block;
    width: 20px;
    height: 20px;
    background: url(../../../ux/imgs/goods/input_arrow.png) center no-repeat;
    background-size: 20px;
    text-indent: -9999px;
    overflow: hidden;
}

#goodsDetail .item_opts_wrap .item_opts .accodion_tit.active + .accodion_con {
    display: block;
}
#goodsDetail .item_opts_wrap .item_opts .accodion_con {
    display: none;
}
#goodsDetail .item_opts_wrap .item_opts .accodion_con .rdo_list {
    display: flex;
    flex-wrap: wrap;
    margin: 5px -5px 25px -5px;
    max-height: 223px;
    overflow-y: auto;
    scroll-snap-type: y mandatory;    
}
#goodsDetail .item_opts_wrap .item_opts .accodion_con .rdo_list li {
    padding: 3px;
    scroll-snap-align: start;
}
#goodsDetail .item_opts_wrap .item_opts .accodion_con .rdo_list li input {
    display: none;
}
#goodsDetail .item_opts_wrap .item_opts .accodion_con .rdo_list li input + label {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    font-family: "NotoSansCJKkr", "Montserrat", Sans-Serif;
    font-weight: 600;
    font-size: 15px;
    box-sizing: border-box;
    padding: 3px;
    min-width: 45px;    
    height: var(--opt-height);
    width: var(--opt-width); 
}
#goodsDetail .item_opts_wrap .item_opts .accodion_con .rdo_list li input[type="radio"]:checked + label {
  border: 1px solid #222222;
  border-radius: 5px;
  color: #222222;
}
#goodsDetail .item_opts_wrap .item_opts .accodion_con .rdo_list li label img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.detail_info .new_banner {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    column-gap: 2em;
}
.detail_info .new_banner .free_return {
    flex: 1 0 calc(50% - 1em);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 18px;
}
.free_return .flex_right {
    border-radius: 100%;
    background-color: #eee;
    display: flex;
    justify-content: center;
    align-items: center;
    width:56px;
    height:56px;
    position: relative;
}
.icon_center {
    width: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.detail_info .new_banner .new_commer {
    flex: 1 0 calc(50% - 1em);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 1em;
    border: 1px solid #f5f3ee;
    border-radius: 5px;
    font-size: 18px;
    background-color: #f5f3ee;
}

/* 장바구니 담기 #cart_add */ 
#cart_add.scroll {
  height: 100% !important;
}
#cart_add .goods_top_wrap {
    padding-top: 2em;
}
#cart_add .goods_info_right .brand_name .name:after {
    background: url(../../../ux/imgs/web/global/input_arrow_black2@3x.png) center 2px no-repeat !important;
    background-size: 14px !important;
}
#cart_add .goods_info_right .link_wrap {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    height: 28px;
    line-height: 28px;
}
#cart_add .goods_info_right .link_wrap .review_star {
    display: flex;
    align-items: center;
}
#cart_add .goods_info_right .link_wrap .review_star .star_wrap {
    width: 104px;
    height: 17px;
    background: #dddddd;
    position: relative;
}
#cart_add .goods_info_right .link_wrap .review_star .star_wrap .star_bar {
    /* display: flex; */
    background: var(--cl-link); 
    height: 16px;
    /* width: 97px; */
}
#cart_add .goods_info_right .link_wrap .review_star .star_wrap .star_bg {
    content: "";
    display: block;
    position: relative;
    z-index: 10;
    width: 104px;
    height: 17px;
    background: url(../../../ux/imgs/goods/rating_off_white@3x.png) repeat-x 0 0;
    background-size: contain;
    pointer-events: none;
    position: absolute;
    left: 0;
    top: 0;
    background-size: 103px;
}
#cart_add .goods_info_right .link_wrap .review_star .btn_reviewlist {
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
}
#cart_add .goods_info_right .link_wrap .wish_btn {
    position: relative;
    display: flex;
}
#cart_add .goods_info_right .link_wrap .wish_btn .input_none {
    display: none;
}
#cart_add .goods_info_right .link_wrap .wish_btn #like + label {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: url(../../../ux/imgs/goods/icon_heart@3x.png) center no-repeat;
    /* background-size: contain; */
    text-indent: -9999px;
    overflow: hidden;
    background-size: 30px;
    margin-right: 6px;
}
#cart_add .goods_info_right .link_wrap .wish_btn .share {
    display: inline-block;
    position: relative;
}
#cart_add .goods_info_right .link_wrap .wish_btn .share button {
    text-indent: -9999em;
    background: url(../../../ux/imgs/web/global/icon_share@3x.png) 0 0 no-repeat;
    background-size: 28px;
    width: 28px;
    height: 28px;
    position: relative;
    z-index: 1;
}
#cart_add .goods_info_right .link_wrap .wish_btn .share .sns {
    display: flex;
    position: absolute;
    right: -121px;
    /* padding: 0 0 0 13px; */
    top: 0;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.3s;
}
#cart_add .goods_info_right .link_wrap .wish_btn .share .sns li.facebook {
    transform: translate(-40px, 0);
}
#cart_add .goods_info_right .link_wrap .wish_btn .share .sns li.facebook a {
    background: #4167b1 url(../../../ux/imgs/web/global/facebook@3x.png) center
    center no-repeat;
    background-size: 7px;
    border-radius: 50%;
    border: 1px solid #4167b1;
}
#cart_add .goods_info_right .link_wrap .wish_btn .share .sns li a {
    width: 30px;
    height: 30px;
    display: block;
    text-indent: -9999em;
    box-sizing: border-box;
    /* border: 1px solid transparent; */
}
#cart_add .goods_info_right .link_wrap .wish_btn .share .sns li.url_copy {
    transform: translate(-80px, 0);
}
#cart_add .goods_info_right .link_wrap .wish_btn .share .sns li {
    padding: 0 5px;
    /* transform: translate(0, 0); */
    transition: transform 0.3s;
}
#cart_add .goods_info_right .link_wrap .wish_btn .share .sns li.url_copy a {
    background: #fff url(../../../ux/imgs/web/global/url_copy@3x.png) center
    center no-repeat;
    background-size: 14px;
    border-radius: 50%;
    border: 1px solid #e5e5e5;
}
#cart_add .goods_info_right .link_wrap .wish_btn .share .sns li a {
    width: 30px;
    height: 30px;
    display: block;
    text-indent: -9999em;
    box-sizing: border-box;
    /* border: 1px solid transparent; */
}
#cart_add .goods_info_right .goodsItemInfo {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: end;
}
#cart_add .goods_info_right .goodsItemInfo .price_area .price_1 {
    display: flex;
}
#cart_add .goods_info_right .goodsItemInfo .price_area .price_coupon_wrap {
    margin-top: 5px;
    display: flex;
}
#cart_add
  .goods_info_right
  .goodsItemInfo
  .price_area
  .price_coupon_wrap
  .price_coupon {
    display: flex;
    align-items: center;
}
#cart_add
  .goods_info_right
  .goodsItemInfo
  .price_area
  .price_coupon_wrap
  .price_coupon
  h2 {
    font-size: 28px;
    font-weight: 700;
    font-family: "NotoSansCJKkr", "Montserrat", Sans-Serif;
    margin-right: 10px;
    line-height: 33px;
}
#cart_add
  .goods_info_right
  .goodsItemInfo
  .price_area
  .price_coupon_wrap
  .price_coupon
  span {
    font-size: 14px;
    font-weight: 500;
    line-height: 32px;
}
.goods_info_right .txt-box {
    padding: 8px 0;
    border-bottom: 1px solid #aaa; 
}
#card_add .label_list span img {
    display: block;
    height: 19px !important;
}
#cart_add .goods_info_right .txt-box .icon-box {
    display: flex;
    padding-top: 7px;
  column-gap: 3px;
}
.goods_info_right .icon-box .sale {
    font-size: 14px;
    color: #fff;
    background-color: #000;
    padding: 1px 5px;
    font-weight: 700;
    border-radius: 3px;
    border: 1px solid #000;
    margin-right: 11px;
    height: 20px;
    line-height: 20px;
}
.goods_info_right .icon-box .first-price {
    font-size: 10px;
    color: #38AFF5;
    background-color: #fff;
    padding: 1px 5px;
    border-radius: 3px;
    border: 1px solid #38AFF5;
    margin-right: 2px;
    height: 20px;
    line-height: 20px;
}
.goods_info_right .tab {
    display: inline-block;
    min-width: 7em;
}
.goods_info_right .icon-box .free-delivery {
    font-size: 10px;
    color: #AAA;
    background-color: #fff;
    padding: 1px 5px;
    border-radius: 3px;
    border: 1px solid #AAA;
    margin-right: 2px;
    height: 20px;
    line-height: 20px;
}
#cart_add .goods_info_right .benefit ul li.info:before {
    background: url(../../../ux/imgs/display/i.png) center right no-repeat;
    background-size: 14px;
}

#cart_add .item_opts_wrap .item_opts > li {
    padding-top: 0.5em;
    cursor: pointer;
}
#cart_add .item_opts_wrap .item_opts .accodion_tit {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#cart_add .item_opts_wrap .item_opts .accodion_tit h3 {
    color: #222;
    font-size: 16px;
}
#cart_add .item_opts_wrap .item_opts .accodion_tit div {
    flex: 0 0 200px;
    column-gap: 1em;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    border-bottom: 1px solid #ccc;
    padding: 1em 0 !important;
}
#cart_add .item_opts_wrap .item_opts .accodion_tit exp {
    color: #a3a3a3;
}
#cart_add .item_opts_wrap .item_opts .accodion_tit.active span {
    transform: rotate(180deg);
}
#cart_add .item_opts_wrap .item_opts .accodion_tit span {
    display: block;
    width: 20px;
    height: 20px;
    background: url(../../../ux/imgs/goods/input_arrow.png) center no-repeat;
    background-size: 20px;
    text-indent: -9999px;
    overflow: hidden;
}

#cart_add .item_opts_wrap .item_opts .accodion_tit.active + .accodion_con {
    display: block;
}
#cart_add .item_opts_wrap .item_opts .accodion_con {
    display: none;
}
#cart_add .item_opts_wrap .item_opts .accodion_con .rdo_list {
    display: flex;
    flex-wrap: wrap;
    margin: 5px -5px 25px -5px;
    max-height: 223px;
    overflow-y: auto;
    scroll-snap-type: y mandatory;    
}
#cart_add .item_opts_wrap .item_opts .accodion_con .rdo_list li {
    padding: 3px;
    scroll-snap-align: start;
}
#cart_add .item_opts_wrap .item_opts .accodion_con .rdo_list li input {
    display: none;
}
#cart_add .item_opts_wrap .item_opts .accodion_con .rdo_list li input + label {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    font-family: "NotoSansCJKkr", "Montserrat", Sans-Serif;
    font-weight: 600;
    font-size: 15px;
    box-sizing: border-box;
    padding: 3px;
    min-width: 45px;    
    height: var(--opt-height);
    width: var(--opt-width); 
}
#cart_add .item_opts_wrap .item_opts .accodion_con .rdo_list li input[type="radio"]:checked + label {
  border: 1px solid #222222;
  border-radius: 5px;
  color: #222222;
}
#cart_add .item_opts_wrap .item_opts .accodion_con .rdo_list li label img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.detail_info .new_banner {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    column-gap: 2em;
}
.detail_info .new_banner .free_return {
    flex: 1 0 calc(50% - 1em);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 18px;
}
.free_return .flex_right {
    border-radius: 100%;
    background-color: #eee;
    display: flex;
    justify-content: center;
    align-items: center;
    width:56px;
    height:56px;
    position: relative;
}
.icon_center {
    width: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.detail_info .new_banner .new_commer {
    flex: 1 0 calc(50% - 1em);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 1em;
    border: 1px solid #f5f3ee;
    border-radius: 5px;
    font-size: 18px;
    background-color: #f5f3ee;
}
#cart_add .item_amount {
    display: flex;
    padding: 15px 0 0 0;
}
#cart_add .item_amount .tit {
    font-size: 16px;
    font-weight: 600;
    line-height: 2;
    color: #000000;
    align-items: center;
    display: flex;
}
#cart_add .item_amount .count_btn {
    margin-left: auto;
    height: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* border-bottom: 1px solid #e5e5e5; */
}
#cart_add .item_amount .count_btn #minus_one {
    width: 14px;
    height: 14px;
    background: url(../../../ux/imgs/goods/amount_down.png) no-repeat center;
    background-size: cover;
    text-indent: -9999em;
}
#cart_add .item_amount .count_btn span input {
    font-family: "NotoSansCJKkr", "Montserrat", Sans-Serif;
    font-size: 16px;
    font-weight: 700;
    border: 0;
    width: 100px;
    text-align: center;
}
#cart_add .item_amount .count_btn #plus_one {
    width: 14px;
    height: 14px;
    background: url(../../../ux/imgs/goods/amount_up.png) no-repeat center;
    background-size: cover;
    text-indent: -9999em;
} 
#cart_add .total {
    border-top: 1px solid #e5e5e5;
    padding-top: 19px;
    margin-top: 20px;
}
#cart_add .total .box {
    font-size: 18px;
    font-weight: 500;
    color: #222;
    display: flex;
    justify-content: space-between;
    align-items: end;
}
#cart_add .total .box .price strong {
    font-size: 24px;
    font-weight: 700;
    font-family: "NotoSansCJKkr", "Montserrat", Sans-Serif;
    line-height: 30px;
}

#cart_add .detail_buttons {
    margin-top: 30px;
    display: flex;
}
#cart_add .detail_buttons .cart {
    margin-right: 9px;
}
#cart_add .detail_buttons .buy {
    border: 1px solid #222222;
    background: #222222;
    color: #fff;
}
#cart_add .detail_buttons a {
    width: 100%;
    text-align: center;
    height: 60px;
    line-height: 58px;
    border: 1px solid #dddddd;
    box-sizing: border-box;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
}

/* 브랜드 전체 */
.flex_between {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}
.flex_left {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}
.flex_left button {
    margin-right: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #222;
    height: 36px;
    padding: 8px 20px;
    border-radius: 60px;
    border: solid 1px #e5e5e5;
    color: #e5e5e5;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    word-break: keep-all;
    flex: 0 0 auto;
    column-gap: 0.5em;
}
.flex_left button:hover {
    border: 1px solid #3a3a3a;
    color: #3a3a3a;
}
.flex_left button img {
    width: 14px;
}
.flex_right {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
    position: relative
}
.flex_right input[type="text"] {
    border: 0;
    background-color: #f5f5f5;
    border-radius: 1.25em;
    padding: 0.75em 1.75em;
}
.flex_right::after {
    content: "";
    position: absolute;
    right: 14px;
    top: 11px;
    width: 18px;
    height: 18px;
    background-image: url(../../images/common/search_icn.svg);
    background-size: 1em;
    background-repeat: no-repeat;
    background-position: center;
}
.con.brand {
    flex-direction: column;
    margin-bottom: 4em;
}
.index_char {
    font-size: 17px;
    border-top: 1px solid black;
    margin: 1.5em 0 4em 0;
    width: 100%;
} 
.index_char .flex {
    display: flex;
    column-gap: 1em;
    padding: 1em 0 0 0;
    color: #a3a3a3; 
}
.index_tit {
    font-weight: 600;
    color: black;
    width: 3em;
    flex-basis: 3em;
    text-align: center;
}
.flex > span:hover, .flex > span:focus {
    font-weight: 600;
    color: black;
    cursor: pointer;
}
.char_section {
    margin-top: 1em;
}
.char_list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    background-color: #efefef10;
}
.char_list > .col {
    /* min-width: 10em; */
    border-left: 1px solid #eaeaea;
    padding: 1em;
    flex-basis: 20%;
    box-sizing: border-box;
}
.brand_item {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    column-gap: 5px;
}
.brand_item .fav {
    background-image: url(./ux/imgs/display/icon_link.png);
    width: 14px;
    height: 14px;
    background-color: pink;
}
.brand_item > button {
    max-width: 10em;
    text-wrap: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.brand_item > button:hover {
    color: black;
    font-weight: 600;
}
.contents {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5em 2em;
} 
.menu.category {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5em 5em; 
}
.menu.category > .side_ad {
    flex: 1 1;
}
.side_ad > img {
    height: 20em;
    object-fit: none;
    animation: zoomPan 15s ease-in-out infinite; 
} 
@keyframes zoomPan {
  0% {
    object-position: 50% 50%;   
  }
  10% {
    object-position: 50% 70%;  
  }
  25% {
    object-position: 100% 100%; 
    object-fit: cover;
  }
  40% {
    object-position: 100% 0%;  
  }
  60% {
    object-position: 0% 0%;  
  }
  75% {
    object-position: 0% 100%; 
  }
  90% {
    object-position: 50% 30%;  
  }
  100% {
    object-position: 50% 50%;   
  }
}

/* 이기현 2025-06-29 */
/* 1. 메인 헤더GNB에 럭셔리, 라이프/리빙 표시하지 않음 */
#header.topBannerOn{transform: translate(0px, 0px) !important;}
body.scrolldown #header.topBannerOn{transform: translate(0px, 0px) !important;}

:root { --max-width : 1720px; }
@media (max-width: 1479px) {
  :root { --max-width : 100%; } 
} 
@media (min-width: 1480px) {
  :root { --max-width : 1280px; }
}
@media (min-width: 1600px) {
  :root { --max-width : 1480px; }
}
@media (min-width: 1799px) {
  :root { --max-width : 1720px; }
} 
@media (min-width: 1920px) {
  :root { --max-width : 1920px; }
}
#gnb,
#gnb .gnbmenu > ul > li .contents, 
#gnb .mainmenu > ul > li .contents, 
#footer .inner,
#header .inner {
  max-width: var(--max-width) !important;
}

/* #header .header_wrap { 
    height: 144px;
} */

#header .inner {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: flex-start;
}
#header .utility {
    flex-grow: 1;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-end;
    padding-right: 20px;
} 

/* 링크버튼 텍스트 줄바꿈 금지 */
#gnb .link {
  white-space: nowrap;
  text-wrap-mode: nowrap;
}
#gnb ul > li > a.link:hover {
    color: var(--cl-link);
    cursor: pointer;
}

/* gbn Left Side메뉴는 줄어들지 말 것.
   단, .submenu는 줄어듬 */
#gnb .gnbLeft {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
#gnb .gnbLeft > div {
    flex-basis: auto;
}

.scrolldown #gnb .logo {
    display: block;
    flex: 0 0 auto;
}
.scrolldown #gnb .logo img {
    padding-top: 0px;
}

#gnb .gnbLeft > div > ul {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    /* width: 100%; */
}
#gnb .gnbLeft > div.submenu {
    flex: 0 1 auto;
    overflow-x: hidden;
}

/* .gnbmenu */
#gnb .gnbmenu {
    float: left;
    padding: 15px 0 0 10px;
    margin-left: -20px;
}
.scrolldown #gnb .gnbmenu {
    padding: 2px 0 0 10px;
}

#gnb .gnbmenu .bg {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1;
    overflow: hidden;
    width: 100%;
    height: 0;
    text-indent: -9999px;
    background: white;
    box-shadow: 0px 10px 20px rgb(0 0 0 / 5%);
}

#gnb .gnbmenu>ul {
    float: left;
}

#gnb .gnbmenu>ul>li {
    float: left;
    padding: 24px 15px 23px;
}

#gnb .gnbmenu>ul>li>.link {
    position: relative;
    z-index: 13;
    float: left;
    height: 25px;
    color: #fff;
    line-height: 20px;
    font-weight: 600; 
    font-size: 17px;
    letter-spacing: -0.17px;
    cursor: pointer;
}
#gnb .gnbmenu>ul>li .contents {
    position: absolute;
    top: 90%;
    left: 0;
    padding-left: 0;
    z-index: 3;
    overflow: hidden;
    height: 0;
    width: var(--max-width);
    /*margin: 0 0 0 -48%;*/
    opacity: 0;
    filter: alpha(opacity=0);
}

@media screen and (max-width: 1720px) {
  #gnb .gnbmenu>ul>li .contents {
      max-width: 1720px;
      width: auto;
      margin: 0 0 0 -48%;
      left: 50%;
  }
}
#gnb .gnbmenu>ul>li .contents .menu.category {
    display: flex;
    padding-bottom: 40px;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    /* margin: 0 auto; */ 
    column-gap: 3em;
} 
#gnb .gnbmenu>ul>li .contents .menu.category>li:first-child {
    margin-left: 0;
}
#gnb .gnbmenu>ul>li .contents .menu.category>li {
    padding-top: 40px; 
}
#gnb .gnbmenu>ul>li .contents .menu.category>li>ul>li>a  {
    font-size: 17px;
    white-space: nowrap;
} 
#gnb .gnbmenu>ul>li .contents .menu.category>li>a {
    font-size: 18px;
    color: #222;
    font-weight: 600;
    margin-bottom: 1.5em;
    display: inline-block;
}
#gnb .gnbmenu>ul>li .contents .menu.category>li>ul {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    row-gap: 8px;
}
#gnb .gnbmenu .size_ad {
  min-width: 10em;
  flex: 1 0 auto;
}
/* .mainmenu */
#gnb .mainmenu {
    margin-left: 0px;
}
#gnb .mainmenu>ul>li .contents { 
    top: 90%; 
}

/* .submenu */
#gnb .submenu {
    float: left;
    padding: 15px 0 0 10px;
    margin-left: -20px;
    overflow: hidden;
    max-width: 25dvw;
}
.scrolldown #gnb .submenu {
    padding: 2px 0 0 10px;
} 
#gnb .submenu>ul>li>.link {
    color: var(--cl-link); 
} 
/* .fixlink */
#gnb .fixlink {
    float: left;
    padding: 15px 0 0 10px;
    margin-left: 0px;
}
.scrolldown #gnb .fixlink {
    padding: 2px 0 0 10px;
}
#gnb .fixlink .bg {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1;
    overflow: hidden;
    width: 100%;
    height: 0;
    text-indent: -9999px;
    background: white;
    box-shadow: 0px 10px 20px rgb(0 0 0 / 5%);
}

#gnb .fixlink>ul {
    float: left;
}

#gnb .fixlink>ul>li {
    float: left;
    padding: 24px 15px 23px;
}

#gnb .fixlink>ul>li>.link {
    position: relative;
    z-index: 13;
    float: left;
    height: 25px;
    color: #fff;
    line-height: 20px;
    font-weight: 600; 
    font-size: 17px;
    letter-spacing: -0.17px;
    cursor: pointer;
}

@media screen and (max-width: 1720px) {
  #gnb .gnbmenu >ul>li>.link {
    font-size: 17px;
  }
  #gnb .mainmenu >ul>li>.link {
    font-size: 17px;
  }
  #gnb .submenu >ul>li>.link {
    font-size: 17px;
  }
  #gnb .fixlink >ul>li>.link {
    font-size: 17px;
  }
}

.factory_header #gnb .gnbmenu>ul>li>.link:hover {
		color: var(--cl-link);
	}

.factory_header #gnb .gnbmenu>ul>li>.link {
		color: #000;
	}

#header .factory_header .btns .GNB_SEARCH::before {
		filter: invert(1);
	}

#header .factory_header .btns .GNB_CART::before {
		filter: invert(1);
	}	
	
.factory_header #gnb .submenu>ul>li>.link:hover {
		color: #000;
	}

.factory_header #gnb .submenu>ul>li>.link {
		color: var(--cl-link);
	}

.factory_header #gnb .fixlink>ul>li>.link:hover {
		color: var(--cl-link);
	}

.factory_header #gnb .fixlink>ul>li>.link {
		color: #000;
	}

[force='hidden'],
.hidden {
  display: none !important;
}

/* 2. 회원가입 버튼에서 P로고 제거 */
#main_onboarding {
    min-height: 35em;
    line-height: 2;
    margin: 5em auto;  
}
#main_onboarding .buttons .join:before {
    display: none !important;
}


/* 3. 로그인 페이지 */
#signin {
    min-height: 35em;
    line-height: 2;
    margin: 5em auto;
}

/* 4. 장바구니 */
/* Cart_add 카트에 담기 쇼핑꿀팀 위 여백 */
#benefit {
    margin-top: 2em;
}

/* cart_option 장바구니 옵션변경 */

#cart_option .item_opts_wrap .item_opts > li {
    padding-top: 0.5em;
    cursor: pointer;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
}
#cart_option .item_opts_wrap .item_opts .accodion_tit {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#cart_option .item_opts_wrap .item_opts .accodion_tit h3 {
    color: #222;
    font-size: 16px;
}
#cart_option .item_opts_wrap .item_opts .accodion_tit div {
    display: none; /* flex; */ 
    flex: 0 0 200px;
    column-gap: 1em;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    border-bottom: 1px solid #ccc;
    padding: 1em 0 !important;
}
#cart_option .item_opts_wrap .item_opts .accodion_tit exp {
    color: #a3a3a3;
}
#cart_option .item_opts_wrap .item_opts .accodion_tit.active span {
    transform: rotate(180deg);
}
#cart_option .item_opts_wrap .item_opts .accodion_tit span {
    display: block;
    width: 20px;
    height: 20px;
    background: url(../../../ux/imgs/goods/input_arrow.png) center no-repeat;
    background-size: 20px;
    text-indent: -9999px;
    overflow: hidden;
}

#cart_option .item_opts_wrap .item_opts .accodion_tit.active + .accodion_con {
    display: block;
}
#cart_option .item_opts_wrap .item_opts .accodion_con {
    display: none;
}
#cart_option .item_opts_wrap .item_opts .accodion_con .rdo_list {
    display: flex;
    flex-wrap: wrap;
    margin: 5px -5px 25px -5px;
    max-height: 223px;
    overflow-y: auto;
    scroll-snap-type: y mandatory;    
}
#cart_option .item_opts_wrap .item_opts .accodion_con .rdo_list li {
    padding: 3px;
    scroll-snap-align: start;
}
#cart_option .item_opts_wrap .item_opts .accodion_con .rdo_list li input {
    display: none;
}
#cart_option .item_opts_wrap .item_opts .accodion_con .rdo_list li input + label {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    font-family: "NotoSansCJKkr", "Montserrat", Sans-Serif;
    font-weight: 600;
    font-size: 15px;
    box-sizing: border-box;
    padding: 3px;
    min-width: 45px;    
    height: var(--opt-height);
    width: var(--opt-width); 
}
#cart_option .item_opts_wrap .item_opts .accodion_con .rdo_list li input[type="radio"]:checked + label {
  border: 1px solid #222222;
  border-radius: 5px;
  color: #222222;
}
#cart_option .item_opts_wrap .item_opts .accodion_con .rdo_list li label img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


/* 5. 고객센터 */
.wrap  .hd_root {
    position: relative !important;
}
.wrap  .hd_root  ul.location {
  position: absolute;
  top: -2em;
  width: var(--max-width);
  margin: 0 auto;
}

/* 6. 마이페이지 */
#mypage .hd_root {
    margin-left: 276px;
    top: 1em;
}

#mypage .hd_root .location {
    top: 1em;
}

/* 7. 주문배송조회 */