/** 상품 > 상세 **/
main.goods.detail { padding : 0 0 200px 0 }
main.goods.detail > section { border-bottom : solid 1px var(--border-color) }
/* main.goods.detail > section.cont { padding : 0 50% 0 0 ; min-height : 100vh ; position : relative } */
main.goods.detail > section.cont {
  min-height : 100vh;
  position : relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-top: 45px;
}
main.goods.detail > section.cont > section.gallery img { width : 100% }
main.goods.detail > section.cont > section.gallery #images-paging { position : fixed ; top : 80px ; left : 40px ; display: flex; font-size : var(--fontsize-title) ; z-index: 201; padding:4px 5px; background-color : var(--white) ; }
main.goods.detail > section.cont > section.gallery #images-paging.fixed { position : absolute; }
/* main.goods.detail > section.cont > section.gallery .swiper-paging {
  display: none;
} */
main.goods.detail > section.cont > section.gallery > article .prd_label {
  position: fixed;
  top: 82px;
  left: 40px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 10;
}
main.goods.detail > section.cont > section.gallery > article .prd_label.label_mo{
  display : none;
}
main.goods.detail > section.cont > section.gallery > article #images-swiper .swiper-slide:first-child {
  position: relative;
}
main.goods.detail > section.cont > section.gallery > article .prd_label span {
  font-size: 11px;
  letter-spacing: 5%;
  font-weight: 400;
  color: #343434;
  line-height: 1;
}
main.goods.detail > section.cont > section.gallery > nav { position : fixed ; top : 50px ; left : 10px ; width : 80px }
main.goods.detail > section.cont > section.gallery > nav li { cursor : pointer ; text-align : center ; font-size : var(--fontsize-s) ; padding-bottom : 10px }
main.goods.detail > section.cont > section.gallery > article img { cursor: zoom-in; }
main.goods.detail > section.cont > section.gallery > article ul#images { position: relative; }
main.goods.detail > section.cont > section.gallery > article #images-swiper { position: relative; }
main.goods.detail > section.cont > section.gallery > article ul#images > li.zoom { position : fixed ; top : 0 ; left : 0 ; width : 100vw ; height : 100vh ; z-index : 105 ; overflow-y : auto }
main.goods.detail > section.cont > section.gallery > article ul#images > li.zoom:before { content : "" ; width: 136px; height: 18px; background: url('/images/logo.svg') center no-repeat; display: inline-block; position: fixed ; top: 17px; left: calc( 50% - 68px ) }
main.goods.detail > section.cont > section.gallery > article ul#images > li.zoom img { cursor : url('/images/cursor-close.svg'), auto }
main.goods.detail > section.cont > section.gallery > article ul#images > li.btn-similar-wrap {
	position : fixed ;
	top : 82px ;
	right : calc(50% + 40px);
	z-index : 201 ;
	list-style : none ;
	margin : 0 ;
	padding : 0 ;
}
main.goods.detail > section.cont > section.gallery > article ul#images:has(li.zoom) > li.btn-similar-wrap {
	display : none !important ;
}
main.goods.detail > section.cont > section.gallery > article:has(ul#images li.zoom) .btn-similar-mo {
	display : none !important ;
}
main.goods.detail > section.cont > section.gallery > article .btn-similar-mo {
	display : none ;
}
main.goods.detail > section.cont > section.gallery > article ul#images > li.btn-similar-wrap .btn-similar {
	display : flex ;
	align-items : center ;
	justify-content : center ;
	gap : 4px ;
	width : 94px ;
	height : 22px ;
	background-color : var(--white) ;
	font-size : 12px ;
  font-weight : 400;
	line-height : 1 ;
	color : var(--black) ;
	text-decoration : none ;
	box-sizing : border-box ;
}
main.goods.detail > section.cont > section.gallery > article ul#images > li.btn-similar-wrap .btn-similar .arrow {
	display : inline-flex ;
	align-items : center ;
	transform : rotate(180deg) ;
	margin-bottom : 2px ;
}
main.goods.detail > section.cont > section.gallery > article ul#images > li.btn-similar-wrap .btn-similar .arrow svg {
	display : block ;
}
body.similar-modal-open main.goods.detail > section.cont > section.gallery > article ul#images > li.btn-similar-wrap .btn-similar,
body.similar-modal-open main.goods.detail > section.cont > section.gallery > article .btn-similar-mo .btn-similar {
	text-decoration : underline ;
}
body.similar-modal-open main.goods.detail > section.cont > section.gallery > article ul#images > li.btn-similar-wrap .btn-similar .arrow,
body.similar-modal-open main.goods.detail > section.cont > section.gallery > article .btn-similar-mo .btn-similar .arrow {
	transform : rotate(0deg) ;
}
#similar-products-modal.similar-products-modal {
	position : fixed ;
	top : 45px ;
	right : 0 ;
	width : 50% ;
	height : calc( 100vh - 45px ) ;
	z-index : 110 ;
	background-color : var(--white) ;
	display : flex ;
	flex-direction : column ;
	cursor : pointer ;
}
#similar-products-modal .similar-products-modal-content-wrap {
	cursor : default ;
}
#similar-products-modal.similar-products-modal.bottom {
	position : absolute ;
	top : auto ;
	bottom : 0 ;
}
#similar-products-modal.similar-products-modal.hidden { display : none ; }

/* 상세정보 모달 (PC 전용) */
#details-modal.details-modal {
	position : fixed ;
	top : 45px ;
	right : 0 ;
	width : 50% ;
	height : calc( 100vh - 45px ) ;
	z-index : 110 ;
	background-color : var(--white) ;
	display : flex ;
	flex-direction : column ;
	cursor : pointer ;
}
#details-modal.details-modal.hidden { display : none ; }
#details-modal .details-modal-content-wrap {
	cursor : default ;
}
#details-modal.details-modal.bottom {
	position : absolute ;
	top : auto ;
	bottom : 0 ;
}
#details-modal .details-modal-inner {
	display : flex ;
	flex-direction : column ;
	height : 100% ;
	overflow : hidden ;
}
#details-modal .details-modal-header {
	display : flex ;
	align-items : center ;
	justify-content : flex-end ;
	flex-shrink : 0 ;
	padding : 16px 20px 0 ;
}
#details-modal .details-modal-close {
	width : 24px ;
	height : 24px ;
	padding : 0 ;
	border : none ;
	background : url('/images/ico-close.svg') center no-repeat ;
	background-size : 12px ;
	cursor : pointer ;
}
#details-modal .details-modal-body {
	flex : 1 ;
	overflow : hidden ;
	padding : 20px ;
	min-height : 0 ;
	display : flex ;
	align-items : center ;
	justify-content : center ;
}
#details-modal .details-modal-content-wrap {
	display : flex ;
	flex-direction : column ;
	align-items : center ;
	width : 100% ;
	max-width : 400px ;
	height : 85% ;
	max-height : 100% ;
	overflow : hidden ;
}
#details-modal .details-modal-content {
	width : 100% ;
	flex : 1 ;
	min-height : 0 ;
	overflow-y : auto ;
	display : flex ;
	flex-direction : column ;
	justify-content : center ;
}
#details-modal .details-modal-content .content-list { position : relative }
#details-modal .details-modal-content .content-list ul > li ~ li { margin-top : 8px }
#details-modal .details-modal-content .content-list ul > li:before { content : "·" ; vertical-align : middle ; margin-right : 3px }
#details-modal .details-modal-content .content-list ~ .content-list { margin-top : 30px }
#details-modal .details-modal-content .content-list .content-list-title { position : absolute ; top : 0 ; left : 0 }
#details-modal .details-modal-content .content-list .content-list-title:before { content : "·" ; vertical-align : middle ; margin-right : 3px }
#details-modal .details-modal-content .content-list .content-list-title ~ ul { padding-left : 55px }
#details-modal .details-modal-content .content-list .content-list-title ~ ul > li:before { display : none }
#details-modal .details-modal-content .body { padding-top : 5px ; padding-bottom : 40px }
#details-modal .details-modal-content .details-material-row {
	display : grid ;
	grid-template-columns : 120px minmax(0,1fr) ;
}
#details-modal .details-modal-content .details-material-row:first-child { border-top : none }
#details-modal .details-modal-content .details-material-title {
	padding : 10px 6px ;
	font-size : 11px ;
	font-weight : 700 ;
	line-height : 1.5 ;
}
#details-modal .details-modal-content .details-material-value {
	padding : 10px 8px ;
	font-size : 11px ;
	line-height : 1.75 ;
}
#details-modal .details-modal-content .details-material-line + .details-material-line { margin-top : 8px }
#details-modal .details-modal-content .caution { padding : 15px 0 40px 0 }
#details-modal .details-modal-tabs {
	display : flex ;
	width : 100% ;
	margin-top : 4px ;
	flex-shrink : 0 ;
}
#details-modal .details-modal-tab {
	flex : 1 ;
	height : 45px ;
	padding-left : 25px ;
	position : relative ;
	font-size : 11px ;
	text-align : left ;
	background : none ;
	border : none ;
	cursor : pointer ;
	display : flex ;
	align-items : center ;
}
@media (max-width : 480px) {
	#details-modal .details-modal-content .details-material-row { grid-template-columns : 88px minmax(0,1fr) }
	#details-modal .details-modal-content .details-material-title { padding : 20px 12px }
	#details-modal .details-modal-content .details-material-value { padding : 20px 16px }
}
#details-modal .details-modal-tab.on {text-decoration: underline; }
#details-modal .details-modal-tab:before {
	content : "" ;
	width : 25px ;
	height : 45px ;
	background-position : left center ;
	background-repeat : no-repeat ;
	display : block ;
	position : absolute ;
	top : 0 ;
	left : 0 ;
}
#details-modal .details-modal-tab.material:before { background-image : url('/images/ico-material.svg') }
#details-modal .details-modal-tab.info:before { background-image : url('/images/ico-info.svg') }
#details-modal .details-modal-tab.warning:before { background-image : url('/images/ico-warning.svg') }

/* 모달 오픈 시 콘텐츠·탭 등장 애니메이션 */
#details-modal .details-modal-content-wrap {
	transition : transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease-out ;
}
#details-modal .details-modal-tabs .details-modal-tab {
	transition : opacity 0.45s ease-out ;
}
#details-modal.details-modal--entering .details-modal-content-wrap {
	transform : translateY(-14px) ;
	opacity : 0 ;
}
#details-modal.details-modal--entering .details-modal-tabs .details-modal-tab {
	opacity : 0 ;
}
#details-modal.details-modal--entering .details-modal-tabs .details-modal-tab:nth-child(1) { transition-delay : 0.12s ; }
#details-modal.details-modal--entering .details-modal-tabs .details-modal-tab:nth-child(2) { transition-delay : 0.22s ; }
#details-modal.details-modal--entering .details-modal-tabs .details-modal-tab:nth-child(3) { transition-delay : 0.32s ; }

@media (min-width: 1025px) {
	main.goods.detail > section.cont > section.information #details > dd { display : none !important }
}

#similar-products-modal .similar-products-modal-inner {
	display : flex ;
	flex-direction : column ;
	height : 100% ;
	overflow : hidden ;
	cursor : default ;
}
#similar-products-modal .similar-products-modal-header {
	display : flex ;
	align-items : center ;
	justify-content : flex-end ;
	flex-shrink : 0 ;
	padding : 16px 20px 0 ;
}
#similar-products-modal .similar-products-modal-close {
	width : 24px ;
	height : 24px ;
	padding : 0 ;
	border : none ;
	background : url('/images/ico-close.svg') center no-repeat ;
	background-size : 12px ;
	cursor : pointer ;
}
#similar-products-modal .similar-products-modal-body {
	flex : 1 ;
	overflow-y : auto ;
	padding : 100px 0 ;
	display : flex ;
	flex-direction : column ;
	align-items : center ;
}
#similar-products-modal .similar-products-modal-body .similar-products-modal-content-wrap {
	width : 500px ;
	max-width : 100% ;
	box-sizing : border-box ;
	transition : transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease-out ;
}
#similar-products-modal.similar-products-modal--entering .similar-products-modal-body .similar-products-modal-content-wrap {
	transform : translateY(-14px) ;
	opacity : 0 ;
}
#similar-products-modal .similar-products-modal-body .similar-products-modal-title {
	font-size : 11px ;
	font-weight : 400 ;
	margin : 0 0 16px 0 ;
	line-height : 1 ;
	text-align : left ;
}
#similar-products-modal .similar-products-grid {
	display : grid ;
	grid-template-columns : repeat(5, minmax(0, 1fr)) ;
	gap : 16px 12px ;
}
#similar-products-modal .similar-products-grid a {
	display : block ;
	text-decoration : none ;
	color : inherit ;
}
#similar-products-modal .similar-products-grid a .img {
	width : 100px ;
  height : 125px;
	aspect-ratio : 1 ;
	background-color : #fbfbfb ;
	background-size : cover ;
	background-position : center ;
	margin-bottom : 8px ;
}
#similar-products-modal .similar-products-grid a .name {
	font-size : 11px ;
	line-height : 1.3 ;
	overflow : hidden ;
	text-overflow : ellipsis ;
	display : -webkit-box ;
  text-align : center;
	-webkit-line-clamp : 2 ;
	-webkit-box-orient : vertical ;
}

/* PC 확대 이미지 Swiper */
#pc-zoom-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: transparent;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
}

#pc-zoom-container.hidden {
  display: none;
}

#pc-zoom-container .pc-zoom-wrapper {
  position: relative;
  width: 100vw;
  height: 100vh;
}

#pc-zoom-container .pc-zoom-close {
  position: fixed;
  top: 80px;
  right: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 201;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#pc-zoom-container .pc-zoom-swiper {
  width: 100%;
  height: 100%;
  position: relative;
}

#pc-zoom-container .pc-zoom-swiper .swiper-wrapper {
  width: 100%;
  height: 100%;
}

#pc-zoom-container .pc-zoom-swiper .swiper-slide {
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  height: 100%;
}

#pc-zoom-container .pc-zoom-swiper .swiper-slide img {
  width: 100vw;
  height: auto;
  min-height: 100vh;
  object-fit: contain;
  cursor: url('/images/cursor-close.svg'), auto;
  display: block;
}

#pc-zoom-container .pc-zoom-prev,
#pc-zoom-container .pc-zoom-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 201;
}

#pc-zoom-container .pc-zoom-prev {
  left: 20px;
  background: url(/images/btn-prev.svg) center no-repeat;
}

#pc-zoom-container .pc-zoom-next {
  right: 20px;
  background: url(/images/btn-next.svg) center no-repeat;
}

main.goods.detail > section.cont > section.gallery > article .swiper-container { opacity : 0 ; z-index : -1 ; position : absolute ; top : 0 ; left : 0 ;  width: 0; height: 0; overflow: hidden }
main.goods.detail > section.cont > section.gallery #image-3d {
  display: flex;
}
main.goods.detail > section.cont > section.information {
  position : fixed ;
  right : 0 ;
  width : 50% ;
  height : calc( 100vh - 45px ) ;
  top : 45px ;
  grid-column: 2 / 3;
  display : flex ;
  align-items : center;
  z-index: 100;
}
main.goods.detail > section.cont > section.information.bottom { width: 100%; position : absolute ; top : initial ; bottom : 0 }
main.goods.detail > section.cont > section.information > .cont {
  position: relative;
  display : grid ;
  place-items : center ;
  width : 100%;
  transition: bottom 0.4s ease-in-out;
}
main.goods.detail > section.cont > section.information article.goods .plp-tag-container {
  display: flex;
  gap: 5px;
  align-items: center;
}
main.goods.detail > section.cont > section.information article.goods .plp-tag,
main.goods.detail > section.cont > section.information article.goods .plp-tag2 {
  width: fit-content;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  padding: 2px 5px;
  font-size: 10px;
  line-height: 100%;
}
main.goods.detail > section.cont > section.information article.goods .plp-tag.new,
main.goods.detail > section.cont > section.information article.goods .plp-tag2.new {
  color: #000000;
  background-color: #eaeaea;
}
#frm-goods {
  position: relative;
}
main.goods.detail > section.cont > section.information > .cont.info-opened {
  bottom: 80px;
}
main.goods.detail > section.cont > section.information article { width : 400px ; position : relative }
main.goods.detail > section.cont > section.information article.goods { 
  padding-bottom: 40px;
}
main.goods.detail > section.cont > section.information article.goods button.favorite { top : 0 ; right : 0 }
main.goods.detail > section.cont > section.information article.goods h1 { font-size : var(--fontsize-title) }
main.goods.detail > section.cont > section.information article.goods .price { margin : 7px 0 26px 0 }
main.goods.detail > section.cont > section.information article.goods .option { margin-bottom : 24px }
main.goods.detail > section.cont > section.information article.goods .option dl { display : inline-block ; width : 100% }
main.goods.detail > section.cont > section.information article.goods .option dl > * { display : inline-block }
main.goods.detail > section.cont > section.information article.goods .option dl > dt { width : 100% ; margin-bottom : 10px }
main.goods.detail > section.cont > section.information article.goods .option dl.size > dt { width : 100% ; margin-bottom : 0; }
main.goods.detail > section.cont > section.information article.goods .option dl.size > dd { margin-top: 10px; }
dl.size dd label {
  position: relative;
  display: inline-block;
}
main.goods.detail > section.cont > section.information article.goods .option label,
main.goods.detail > section.cont > section.information article.goods .option label * { cursor : pointer }
main.goods.detail > section.cont > section.information article.goods .option dd label span { position : relative }
main.goods.detail > section.cont > section.information article.goods .option dl.size > dd { float : left ; margin-left : -1px }
main.goods.detail > section.cont > section.information article.goods .option dl.size > dd label span { display: block ; min-width : 45px ; height : 45px ; line-height : 43px ; border : solid 1px var(--border-gray-color) ; text-align : center ; position : relative }
main.goods.detail > section.cont > section.information article.goods .option dl.size > dd label input:checked ~ span { border-color : var(--black) }
main.goods.detail > section.cont > section.information article.goods .option dl.size > dd label input:checked ~ span:after { content : "" ; width : 1px ; height : 45px ; background-color : var(--black) ; display : inline-block ; position : absolute ; top : -1px ; right : -1px ; z-index : 2 }
main.goods.detail > section.cont > section.information article.goods .option dl.size > dd.soldout { background-color : #FFFFFF; }
/* main.goods.detail > section.cont > section.information article.goods .option dl.size > dd.soldout { background-color : var(--soldout-btn-bg) } */
main.goods.detail > section.cont > section.information article.goods .option dl.size > dd.soldout label span,
main.goods.detail > section.cont > section.information article.goods .option dl.size > dd.reorder label span {
  color: #c2c2c2;
  background: linear-gradient(
    to bottom right,
    transparent 49.5%,
    #dcdcdc 50%,
    #dcdcdc 50%,
    transparent 50.5%
  );
}
/* main.goods.detail > section.cont > section.information article.goods .option dl.size > dd.soldout label:after { content : "" ; display : inline-block ; width : 135% ; height : 1px ; background-color : var(--border-color) ; transform-origin : top right ; transform : rotate(-45deg) ; position : absolute ; top : 0 ; right: 0 } */

main.goods.detail > section.cont > section.information article.goods .option dl.size > dd.reorder
main.goods.detail > section.cont > section.information article.goods .option dl.size > dd.reorder { background-color : var(--soldout-btn-bg) }
main.goods.detail > section.cont > section.information article.goods .option dl.size > dd.reorder label span { color : rgba(0,0,0,.3) }

/* dropdown */
main.goods.detail > section.cont > section.information article.goods .option dl.size .size-dropdown.pc {
  width: 100%;
  min-height: 45px;
  position: relative;
  margin-top: 10px;
  cursor: pointer;
}
main.goods.detail > section.cont > section.information article.goods .option dl.size .size-dropdown.pc .size-dropdown-placeholder {
  width: inherit;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  border: solid 1px #eaeaea;
  background-color: #FFF;
}
main.goods.detail > section.cont > section.information article.goods .option dl.size .size-dropdown.pc.on .size-dropdown-placeholder {
  border-top: solid 1px #808080;
  border-right: solid 1px #808080;
  border-bottom: solid 1px #eaeaea;
  border-left: solid 1px #808080;
}
main.goods.detail > section.cont > section.information article.goods .option dl.size .size-dropdown.pc.has-selected .size-dropdown-placeholder {
  border: solid 1px #343434;
}
main.goods.detail > section.cont > section.information article.goods .option dl.size .size-dropdown.pc .size-dropdown-placeholder .arrow {
  width: 8px;
  height: 8px;
  display: none;
}
main.goods.detail > section.cont > section.information article.goods .option dl.size .size-dropdown.pc.on .size-dropdown-placeholder .arrow {
  display: flex;
}
main.goods.detail > section.cont > section.information article.goods .option dl.size .size-dropdown.pc ul {
  width: 100%;
  position: absolute;
  z-index: 10;
  display: none;
  background-color: #fff;
}
main.goods.detail > section.cont > section.information article.goods .option dl.size .size-dropdown.pc.on ul {
  display: block;
}
main.goods.detail > section.cont > section.information article.goods .option dl.size .size-dropdown ul li {
  width: 100%;
  height: 45px;
  display: flex;
  align-items: center;
  border-right: solid 1px #808080;
  border-bottom: solid 1px #eaeaea;
  border-left: solid 1px #808080;
}
main.goods.detail > section.cont > section.information article.goods .option dl.size .size-dropdown ul li.soldout {
  pointer-events: none;
}
main.goods.detail > section.cont > section.information article.goods .option dl.size .size-dropdown ul li.soldout span,
main.goods.detail > section.cont > section.information article.goods .option dl.size .size-dropdown ul li.reorder span {
  color: #C2C2C2;
  text-decoration: line-through;
  text-decoration-color: #C2C2C2;
}
main.goods.detail > section.cont > section.information article.goods .option dl.size .size-dropdown ul li:last-child {
  border-bottom: solid 1px #808080;
}
main.goods.detail > section.cont > section.information article.goods .option dl.size .size-dropdown ul li label {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 10px;
}
main.goods.detail > section.cont > section.information article.goods .option dl.size .size-dropdown-wrap {
  display: none;
}

@media (min-width: 1025px) {
	main.goods.detail > section.cont > section.information article.goods .option .sizeguide { width : 100% ; margin-top : 10px }
	main.goods.detail > section.cont > section.information article.goods .option .sizeguide button { height : 15px ; font-size : 11px ; background : url('/images/ico-ruler.svg') left center no-repeat ; padding-left : 20px ; line-height: 15px; }
}
main.goods.detail #frm-goods .sizeguide-mobile { display : none; }

main.goods.detail > section.cont > section.information article.goods .option dl.setgoods { cursor : pointer ; margin : 10px 0 20px 0 ; min-height : 45px ; position : relative }
main.goods.detail > section.cont > section.information article.goods .option dl.setgoods:last-child { margin-bottom : 0 }
main.goods.detail > section.cont > section.information article.goods .option dl.setgoods > dt { line-height : 43px ; padding-left : 10px ; color : var(--gray) ; margin-bottom : 0 ; border : solid 1px var(--border-gray-color) }
main.goods.detail > section.cont > section.information article.goods .option dl.setgoods > dt > ul { position : relative ; z-index : 2 ; background-color : var(--white) ; margin-left : -10px ; width : calc( 100% + 10px ) }
main.goods.detail > section.cont > section.information article.goods .option dl.setgoods > dt > ul:before { content : "" ; display : inline-block ; position : absolute ; width : 100% ; height : 100% ; border : solid 1px var(--gray) ; top : -1px ; left : -1px }
main.goods.detail > section.cont > section.information article.goods .option dl.setgoods > dd { display : none ; width : 100% ; max-height : 500px ; position : absolute ; left : 0 ; margin-top:-1px ; border : solid 1px var(--gray) ; z-index : 3 ; background-color : var(--white) ; overflow-y : auto }
main.goods.detail > section.cont > section.information article.goods .option dl.setgoods > dd.over500 ul { border-right : solid 1px var(--gray) }
main.goods.detail > section.cont > section.information article.goods .option dl.setgoods ul { width : 100% }
main.goods.detail > section.cont > section.information article.goods .option dl.setgoods ul > li { border-bottom : solid 1px var(--border-gray-color) ;  position : relative ; padding : 5px 0 0 80px ; height : 76px ; line-height : var(--lineheight) }
main.goods.detail > section.cont > section.information article.goods .option dl.setgoods ul > li:last-child { border-bottom : none }
main.goods.detail > section.cont > section.information article.goods .option dl.setgoods ul > li > span { display : block }
main.goods.detail > section.cont > section.information article.goods .option dl.setgoods ul > li .image { position : absolute ; top : 0 ; left : 0 ; width : 60px ; height : 75px ; background-position : center ; background-size : cover ; background-color : #fafafa }
main.goods.detail > section.cont > section.information article.goods .option dl.setgoods ul > li .name { margin-bottom : 7px }
main.goods.detail > section.cont > section.information article.goods .option dl.setgoods.on > dt { border-color : var(--gray) ; position : relative }
main.goods.detail > section.cont > section.information article.goods .option dl.setgoods.on > dt:after { content : "" ; display : inline-block ; width : 14px ; height : 14px; background : url('/images/ico-close.svg') center no-repeat ; position : absolute ; top : calc( 50% - 7px ) ; right : 20px }
main.goods.detail > section.cont > section.information article.goods .option dl.setgoods.on > dd { display : block }
main.goods.detail > section.cont > section.information article.goods .option ul.color {
	display : flex ;
	flex-wrap : wrap ;
	width : 100% ;
}
main.goods.detail > section.cont > section.information article.goods .option ul.color > li { flex : 0 0 calc(100% / 14) ; max-width : 42px ; height : 32px ; font-size : 11px ; position : relative ; box-sizing : border-box }
main.goods.detail > section.cont > section.information article.goods .option ul.color > li label { display : block ; height : 32px } 
main.goods.detail > section.cont > section.information article.goods .option ul.color > li .name { opacity : 0 ; display : block ; position : absolute ; bottom : 15px; white-space: nowrap; }
main.goods.detail > section.cont > section.information article.goods .option ul.color > li .colorchip { width : 14px ; height : 14px ; position : absolute ; bottom : 0 ; border : solid 1px transparent ; margin-left : 0 }
main.goods.detail > section.cont > section.information article.goods .option ul.color > li .colorchip > span { width : 8px ; height : 8px ; display : inline-block ; border-radius : 50% ; position : absolute ; top : 2px ; left : 2px /*; border : solid 1px transparent */ }
main.goods.detail > section.cont > section.information article.goods .option ul.color > li .colorchip > span.multi { background : var(--goods-color-multi) }
main.goods.detail > section.cont > section.information article.goods .option ul.color > li.soldout .colorchip:after { content : "" ; display : inline-block ; width : 1px ; height : 11px ; background-color : var(--black) ; transform-origin : center ; transform : rotate(45deg) ; position : absolute ; bottom : 0 ; left : 50% }
main.goods.detail > section.cont > section.information article.goods .option ul.color > li.soldout .colorchip > span { border-color : var(--border-color) }
main.goods.detail > section.cont > section.information article.goods .option ul.color > li.now label .name,
main.goods.detail > section.cont > section.information article.goods .option ul.color > li label:hover .name,
main.goods.detail > section.cont > section.information article.goods .option ul.color > li label input:checked ~ .name { opacity : 1 }
main.goods.detail > section.cont > section.information article.goods .option ul.color > li.now label .colorchip,
main.goods.detail > section.cont > section.information article.goods .option ul.color > li label:hover .colorchip,
main.goods.detail > section.cont > section.information article.goods .option ul.color > li label input:checked ~ .colorchip { border-color : var(--black) }

main.goods.detail > section.cont > section.information article.goods .buttons { display : block ; width : 100% ; padding-top : 16px }
main.goods.detail > section.cont > section.information article.goods .buttons button { width : 100% ; height : 45px ; border : solid 1px var(--border-color) ; font-size : 11px ; margin-top : 0 ; line-height : 43px }
main.goods.detail > section.cont > section.information article.goods .buttons button[type="submit"].KR.reorder {background-color:#000000;color:#ffffff;}
main.goods.detail > section.cont > section.information article.goods .buttons button[type="submit"].EN.reorder {background-color:#000000;color:#ffffff;}
main.goods.detail > section.cont > section.information article.goods .buttons button[type="submit"].JP.reorder {background-color:#000000;color:#ffffff;}

/* 상품 상세 submit 버튼 - 버튼 초기상태 */
main.goods.detail > section.cont > section.information article.goods .buttons button[type="submit"].no-over.select-option:not(.KR):not(.EN):not(.JP)::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 14px;
  background-image: url('/images/ico-shoppingbag.svg');
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 7px;
  vertical-align: middle;
  padding-bottom:8px;
}
main.goods.detail > section.cont > section.information article.goods .buttons button[type="submit"].no-over.select-option:not(.KR):not(.EN):not(.JP)::after {
  content:"";
  font-family: Futura LT Pro;
  font-weight: 400;
  font-size: 11px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
}

/* 상품 상세 submit 버튼 - 쇼핑백에 담기 */
main.goods.detail > section.cont > section.information article.goods .buttons button[type="submit"].black::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 14px;
  background-image: url('/images/ico-shoppingbag.w.svg');
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 7px;
  vertical-align: middle;
  padding-bottom:8px;
}
main.goods.detail > section.cont > section.information article.goods .buttons button[type="submit"].black::after {
  content:"";
  font-family: Futura LT Pro;
  font-weight: 400;
  font-size: 11px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
}

/* 상품 상세 submit 버튼 - 재입고 알림 (전체 재입고 알림) */
main.goods.detail > section.cont > section.information article.goods .buttons button[type="submit"].KR.reorder_all:before,
main.goods.detail > section.cont > section.information article.goods .buttons button[type="submit"].EN.reorder_all:before,
main.goods.detail > section.cont > section.information article.goods .buttons button[type="submit"].JP.reorder_all:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 12.71px;
  background-image: url('/images/ico-reorder_s.svg');
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 5px;
  vertical-align: middle;
  padding-bottom:5px;
}
main.goods.detail > section.cont > section.information article.goods .buttons button[type="submit"].KR.reorder_all:after {
  content: "재입고 알림 신청하기";
  
  font-family: Noto Sans KR;
  font-weight: 400;
  font-size: 11px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
}
main.goods.detail > section.cont > section.information article.goods .buttons button[type="submit"].EN.reorder_all:after {
  content: "Reorder";
  
  font-family: Noto Sans KR;
  font-weight: 400;
  font-size: 11px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
}
main.goods.detail > section.cont > section.information article.goods .buttons button[type="submit"].JP.reorder_all:after {
  content: "再入荷通知を申請する";
  
  font-family: Noto Sans KR;
  font-weight: 400;
  font-size: 11px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
}

/* 상품 상세 submit 버튼 - 재입고 알림 */
main.goods.detail > section.cont > section.information article.goods .buttons button[type="submit"].KR.reorder:before                       { content: "";display: inline-block;width: 16px;height: 12.71px;background-image: url('/images/ico-reorder_s.w.svg');background-size: contain;background-repeat: no-repeat;margin-right: 5px;vertical-align: middle;padding-bottom:5px; }
main.goods.detail > section.cont > section.information article.goods .buttons button[type="submit"].KR.reorder:after                        { content: "재입고 알림 신청하기" }
main.goods.detail > section.cont > section.information article.goods .buttons button[type="submit"].EN.reorder:before                       { content: "";display: inline-block;width: 16px;height: 12.71px;background-image: url('/images/ico-reorder_s.w.svg');background-size: contain;background-repeat: no-repeat;margin-right: 5px;vertical-align: middle;padding-bottom:5px; }
main.goods.detail > section.cont > section.information article.goods .buttons button[type="submit"].EN.reorder:after                        { content: "Reorder" }
main.goods.detail > section.cont > section.information article.goods .buttons button[type="submit"].JP.reorder:before                       { content: "";display: inline-block;width: 16px;height: 12.71px;background-image: url('/images/ico-reorder_s.w.svg');background-size: contain;background-repeat: no-repeat;margin-right: 5px;vertical-align: middle;padding-bottom:5px; }
main.goods.detail > section.cont > section.information article.goods .buttons button[type="submit"].JP.reorder:after                        { content: "再入荷通知を申請する" }

main.goods.detail > section.cont > section.information article.goods .buttons button[type="submit"].select-option {
   transition: none;
}
main.goods.detail > section.cont > section.information article.goods .buttons button[type="submit"].select-option:before { display : none }
main.goods.detail > section.cont > section.information article.goods .buttons button[type="submit"].KR.select-option,
main.goods.detail > section.cont > section.information article.goods .buttons button[type="submit"].EN.select-option,
main.goods.detail > section.cont > section.information article.goods .buttons button[type="submit"].JP.select-option {
   font-size : 0
}
main.goods.detail > section.cont > section.information article.goods .buttons button[type="submit"].KR.select-option:before,
main.goods.detail > section.cont > section.information article.goods .buttons button[type="submit"].EN.select-option:before,
main.goods.detail > section.cont > section.information article.goods .buttons button[type="submit"].JP.select-option:before {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  background : url('/images/ico-warn.svg') left center no-repeat;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 7px;
  vertical-align: middle;
  padding-bottom:5px;
}
main.goods.detail > section.cont > section.information article.goods .buttons button[type="submit"].KR.select-option:after {
  content : "옵션을 선택해주세요" ;
  font-family: Futura LT Pro;
  font-weight: 400;
  font-size: 11px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  text-align: center;
}
main.goods.detail > section.cont > section.information article.goods .buttons button[type="submit"].EN.select-option:after {
  content : "Select A Size" ;
  font-family: Futura LT Pro;
  font-weight: 400;
  font-size: 11px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  text-align: center;
}
main.goods.detail > section.cont > section.information article.goods .buttons button[type="submit"].JP.select-option:after {
  content : "サイズを選択してください" ;
  font-family: Futura LT Pro;
  font-weight: 400;
  font-size: 11px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  text-align: center;
}

main.goods.detail > section.cont > section.information article.goods .buttons button[type="submit"].soldout { background-color : #EAEAEA ; border-color : var(--border-gray-color) ; font-size : 0 }
main.goods.detail > section.cont > section.information article.goods .buttons button[type="submit"].soldout:before { display : none }
main.goods.detail > section.cont > section.information article.goods .buttons button[type="submit"].KR.soldout:after { content : "품절" ; font-size : var(--fontsize) ; display : inline-block ; background : none ; padding-left : 0 }
main.goods.detail > section.cont > section.information article.goods .buttons button[type="submit"].EN.soldout:after { content : "Sold Out" ; font-size : var(--fontsize) ; display : inline-block ; background : none ; padding-left : 0 }
main.goods.detail > section.cont > section.information article.goods .buttons button[type="submit"].JP.soldout:after { content : "売り切れ" ; font-size : var(--fontsize) ; display : inline-block ; background : none ; padding-left : 0 }

main.goods.detail > section.cont > section.information article.goods .buttons button.favorite { margin-left : -1px }
main.goods.detail > section.cont > section.information #details { 
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  width: 100%;
}
main.goods.detail > section.cont > section.information #details > *:nth-child(1){ grid-row: 1; grid-column: 1; }
main.goods.detail > section.cont > section.information #details > *:nth-child(2){ grid-row: 2; grid-column: 1 / -1; }
main.goods.detail > section.cont > section.information #details > *:nth-child(3){ grid-row: 1; grid-column: 2; }
main.goods.detail > section.cont > section.information #details > *:nth-child(4){ grid-row: 2; grid-column: 1 / -1; }
main.goods.detail > section.cont > section.information #details > *:nth-child(5){ grid-row: 1; grid-column: 3; }
main.goods.detail > section.cont > section.information #details > *:nth-child(6){ grid-row: 2; grid-column: 1 / -1; }
main.goods.detail > section.cont > section.information #details button:not(.close) { height : 45px ; padding-left : 25px ; position : relative ; font-size : 11px ; width: 100% ; text-align : left }
main.goods.detail > section.cont > section.information #details button:not(.close):before { content : "" ; width : 25px ; height : 45px ; background-position : left center ;background-repeat : no-repeat ; display : block ; position : absolute ; top : 0 ; left : 0 }
main.goods.detail > section.cont > section.information #details > .material button:before { background-image : url('/images/ico-material.svg') }
main.goods.detail > section.cont > section.information #details > .info button:before { background-image : url('/images/ico-info.svg') }
main.goods.detail > section.cont > section.information #details > .warning button:before { background-image : url('/images/ico-warning.svg') }
form#frm-goods .warning_txt_wrap { padding-top : 10px; }
form#frm-goods .warning_txt_wrap .warning_txt { font-size: 11px; font-weight: 400; color: #0C0C0C; line-height: 1; text-decoration: underline; cursor: pointer;}
main.goods.detail > section.cont > section.information #details > dt { height : 45px ; position : relative ; display : flex ; align-items : center ; justify-content : center }
main.goods.detail > section.cont > section.information #details > dt:after { display : none }
main.goods.detail > section.cont > section.information #details > dd:before { display : none }

main.goods.detail > section.cont > section.information #details > dd { display : none ; position : relative }
main.goods.detail > section.cont > section.information #details > dt.on + dd { display : block }
main.goods.detail > section.cont > section.information #details > dd .cont .body { padding-top : 5px ; padding-bottom : 40px }
/* 주의사항 */
main.goods.detail > section.cont > section.information #details > dt.warning + dd .cont .body { padding-bottom : 0 }
main.goods.detail > section.cont > section.information #details > dt.warning + dd .cont .caution { padding: 15px 0 40px 0; }
main.goods.detail > section.cont > section.information #details > dt.warning + dd .cont .caution.no-caution { padding: 0 0 40px 0; }
main.goods.detail > section.cont > section.information .caution .text p:not(:first-child) {
  margin-top: 10px;
}
main.goods.detail > section.cont > section.information #details > dd .cont .body .content-list { position : relative }
main.goods.detail > section.cont > section.information #details > dd .cont .body .content-list ul > li ~ li { margin-top : 8px }
main.goods.detail > section.cont > section.information #details > dd .cont .body .content-list ul > li:before { content : "·" ; vertical-align : middle ; margin-right : 3px }
main.goods.detail > section.cont > section.information #details > dd .cont .body .content-list ~ .content-list { margin-top : 30px }
main.goods.detail > section.cont > section.information #details > dd .cont .body .content-list .content-list-title { position : absolute ; top : 0 ; left : 0 }
main.goods.detail > section.cont > section.information #details > dd .cont .body .content-list .content-list-title:before { content : "·" ; vertical-align : middle ; margin-right : 3px }
main.goods.detail > section.cont > section.information #details > dd .cont .body .content-list .content-list-title ~ ul { padding-left : 55px }
main.goods.detail > section.cont > section.information #details > dd .cont .body .content-list .content-list-title ~ ul > li:before { display : none }
main.goods.detail > section.cont > section.information #details > dt.material + dd .cont .details-material-table {
	margin : 5px 20px 40px ;
}
main.goods.detail > section.cont > section.information #details > dt.material + dd .cont .details-material-row {
	display : grid ;
	grid-template-columns : 88px minmax(0,1fr) ;
}
main.goods.detail > section.cont > section.information #details > dt.material + dd .cont .details-material-row:first-child { border-top : none }
main.goods.detail > section.cont > section.information #details > dt.material + dd .cont .details-material-title {
	padding : 10px 4px ;
	font-size : 11px ;
	font-weight : 700 ;
	line-height : 1.5 ;
}
main.goods.detail > section.cont > section.information #details > dt.material + dd .cont .details-material-value {
	padding : 10px 8px ;
	font-size : 11px ;
	line-height : 1.7 ;
}
main.goods.detail > section.cont > section.information #details > dt.material + dd .cont .details-material-line + .details-material-line { margin-top : 4px }
main.goods.detail > section.cont > section.information > .sizeguide-cont { position : absolute ; top : 0 ; right : 0 ; width : 100% ; height : 100% ; background-color : var(--white) ; z-index : 10 ; border-bottom : var(--border) }
main.goods.detail > section.cont > section.information > .sizeguide-cont:not(.on) { display : none }
main.goods.detail > section.cont > section.information > .sizeguide-cont > header { height : 35px ; border-bottom : var(--border) ; padding-left : 40px; background-color: #fff; }
main.goods.detail > section.cont > section.information > .sizeguide-cont > header h2 { font-size : var(--fontsize) ; background: url(/images/ico-ruler.svg) left center no-repeat; padding-left : 20px ; margin-top : 30px }
main.goods.detail > section.cont > section.information > .sizeguide-cont > header button.close { top : 30px ; right : 40px }
main.goods.detail > section.cont > section.information > .sizeguide-cont > article { width : 100% ; margin-top : 100px ; border-bottom : 1px solid #EAEAEA ; padding-bottom: 45px ; display : grid ; grid-template-columns : repeat(2, minmax(0, 1fr)) }
main.goods.detail > section.cont > section.information > .sizeguide-cont > article > .sizeguide-svg-box { padding: 0 20px; }
main.goods.detail > section.cont > section.information > .sizeguide-cont > article figure {  width: 100%; aspect-ratio: 1 / 1; position: relative; }
main.goods.detail > section.cont > section.information > .sizeguide-cont > article figure > svg { width: 100%; height: 100%; object-fit: cover; shape-rendering: auto; }
main.goods.detail > section.cont > section.information > .sizeguide-cont > article figure > .size-box-wrap { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
main.goods.detail > section.cont > section.information > .sizeguide-cont > article figure > .size-box-wrap > .option-size-box {
  height: 32px;
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 100%;
  justify-content: center;
  gap: 4px;
  border: 1px solid #EAEAEA;
  padding: 0 10px;
  background-color: #FFF;
  line-height: 100%;
  font-size: 10px;
  transform: translate(calc(-50% + 2px), calc(-50% + 2px));
  z-index: 3;
}
main.goods.detail > section.cont > section.information > .sizeguide-cont > article figure .sizeguide-model-info {
  text-align: left;
}
main.goods.detail > section.cont > section.information > .sizeguide-cont > article > .cont { padding-right : 40px }
main.goods.detail > section.cont > section.information > .sizeguide-cont ul.sizes { 
  display: table;
  border-collapse: collapse;
  height: 45px;
  margin: 20px 0 10px 0;
}

@media (max-width: 700px) {
  main.goods.detail > section.cont > section.information > .sizeguide-cont ul.sizes {
    margin: 20px 20px 10px 20px !important;
  }
  main.goods.detail > section.cont > section.information article.goods .option ul.color > li{
    flex : 0 0 calc(100% / 9) ;
  }
}

main.goods.detail > section.cont > section.information > .sizeguide-cont ul.sizes > li { 
  display : table-cell ; 
  width : 45px ; 
  aspect-ratio: 1 / 1;
  text-align : center ; 
  /* line-height : 43px ;  */
  /* border : var(--border) ;  */
  box-shadow: inset 0 0 0 1px #EAEAEA;
  position : relative ; 
  cursor : pointer ;
  vertical-align: middle;
}
main.goods.detail > section.cont > section.information > .sizeguide-cont ul.sizes > li ~ li { margin-left : -1px }
main.goods.detail > section.cont > section.information > .sizeguide-cont ul.sizes > li.on { 
  z-index: 2 ; 
  /* border-color: var(--black); */
  border: none;
  box-shadow: inset 0 0 0 1px var(--black);
}
main.goods.detail > section.cont > section.information > .sizeguide-cont ul.describe { 
  width: 100%;
  margin-top: 4px;
}
main.goods.detail > section.cont > section.information > .sizeguide-cont ul.describe > li { padding : 15px ; border : var(--border) ; position : relative }
main.goods.detail > section.cont > section.information > .sizeguide-cont ul.describe > li ~ li { margin-top : -1px }
main.goods.detail > section.cont > section.information > .sizeguide-cont ul.describe > li dl { 
  display: grid;
  grid-template-columns: auto 1fr;
}
main.goods.detail > section.cont > section.information > .sizeguide-cont ul.describe > li dl > dt,
main.goods.detail > section.cont > section.information > .sizeguide-cont ul.describe > li big { font-size : var(--fontsize) }
main.goods.detail > section.cont > section.information > .sizeguide-cont ul.describe > li dl > dt { text-align : right ; padding-right : 5px }
main.goods.detail > section.cont > section.information > .sizeguide-cont ul.describe > li dl > dd { padding-right : 80px }
main.goods.detail > section.cont > section.information > .sizeguide-cont ul.describe > li dl > dt:after { content : "." }
main.goods.detail > section.cont > section.information > .sizeguide-cont ul.describe > li p { font-size : var(--fontsize-s) }
main.goods.detail > section.cont > section.information > .sizeguide-cont ul.describe > li .value { position : absolute ; width : 80px ; display : grid ; align-items : center ; text-align : center ; top : 0 ; right : 0 ; height : 100% }

main.goods.detail > section.cont > section.information > .sizeguide-cont .unit {
  padding-right: 20px;
  text-align: right;
}
main.goods.detail #frm-goods .price-tag[data-discount="true"]{
  display : flex;
  flex-direction : row-reverse;
  gap : 12px;
  margin-left : 53px;
}
main.goods.detail #frm-goods .price-tag[data-discount="true"] .bottom{
  top : 0;
  right : 92px;
}

@media only screen and (max-width: 1024px) {
  main.goods.detail { padding : 45px 0 100px 0 }
  main.goods.detail > section.cont {
    display: flex;
    flex-direction: column;
    padding : 0;
    border : none;
  }
  main.goods.detail > section.cont > section.gallery {
    padding-top: 0;
    padding-left : 0 ;
    position : relative;
  }
  main.goods.detail > section.cont > section.gallery > nav { position : absolute ; top :initial ; bottom : 60px ; left : initial ; right : 10px }
  main.goods.detail > section.cont > section.gallery #images-paging {
    display: none;
  }
  /* main.goods.detail > section.cont > section.gallery .swiper-paging {
    display: flex;
    position: absolute;
    bottom: 17px;
    left: 15px;
    z-index: 100;
    padding: 4px 5px;
    font-size: 12px;
    font-weight: 400;
    line-height: 100%;
    text-align: center;
    background-color: var(--white);
  } */
  main.goods.detail > section.cont > section.gallery > article #images { display : none }
  main.goods.detail > section.cont > section.gallery > article .btn-similar-mo {
	display : block ;
	position : absolute ;
	bottom : 20px ;
	right : 20px ;
	z-index : 201 ;
	list-style : none ;
	margin : 0 ;
	padding : 0 ;
  }
  main.goods.detail > section.cont > section.gallery > article .btn-similar-mo .btn-similar {
	display : flex ;
	align-items : center ;
	justify-content : center ;
	gap : 4px ;
	width : 94px ;
	height : 22px ;
	background-color : var(--white) ;
	font-size : 12px ;
	font-weight : 400 ;
	line-height : 1 ;
	color : var(--black) ;
	text-decoration : none ;
	box-sizing : border-box ;
  }
  main.goods.detail > section.cont > section.gallery > article .btn-similar-mo .btn-similar .arrow {
	display : inline-flex ;
	align-items : center ;
	transform : rotate(180deg) ;
	margin-bottom : 2px ;
  }
  main.goods.detail > section.cont > section.gallery > article .btn-similar-mo .btn-similar .arrow svg {
	display : block ;
  }
  main.goods.detail #frm-goods .sizeguide-mobile {
	display : block;
	width : 100%;
	margin-top : 25px;
  margin-bottom : 40px;
  }
  main.goods.detail #frm-goods .sizeguide-mobile button {
	height : 15px;
	font-size : 11px;
	background : url('/images/ico-ruler.svg') left center no-repeat;
	padding-left : 20px;
	line-height : 15px;
	border : none;
	background-color : transparent;
	cursor : pointer;
	padding-top : 0;
	padding-bottom : 0;
	padding-right : 0;
	text-align : left;
  }
  main.goods.detail #frm-goods #option-size .sizeguide { display : none; }
  #similar-products-modal.similar-products-modal {
    width : 100% ;
    position : fixed ;
    top : 45px ;
    right : 0 ;
    left : 0 ;
    height : calc( 100vh - 45px ) ;
    z-index : 110 ;
  }
  #similar-products-modal.similar-products-modal.bottom {
    position : fixed ;
    top : 45px ;
    bottom : auto ;
  }
  #similar-products-modal .similar-products-modal-inner {
    height : 100% ;
    overflow : hidden ;
  }
  #similar-products-modal .similar-products-modal-body {
    padding : 0 ;
    padding-bottom : 50px ;
    flex : 1 ;
    min-height : 0 ;
    overflow-y : auto ;
  }
  #similar-products-modal .similar-products-modal-body .similar-products-modal-title {
    padding-left : 20px ;
    margin-top : 20px;
  }
  #similar-products-modal .similar-products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding : 0 20px;
  }
  #details-modal { display : none !important }
  main.goods.detail > section.cont > section.gallery > article .swiper-container { opacity : 1 ; z-index : 1 ; position : relative ; width: 100% ; height: auto }
  main.goods.detail > section.cont > section.gallery > article .swiper-wrapper { background-color : var(--border-color) ; height : calc( ( 45 / 36 ) * 100vw ) }
  main.goods.detail > section.cont > section.gallery > article .swiper-container .swiper-pagination { background-color : var(--border-gray-color) ; position : relative ; width : 100% ; height : 2px }
  main.goods.detail > section.cont > section.gallery > article .swiper-container .btn-3d-container {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 100;
    padding: 20px;
  }
  main.goods.detail > section.cont > section.gallery > article .swiper-container #btn-3d {
    width: 40px;
    height: 40px;
    cursor: pointer;
    border-radius: 50%;
  }
  
  main.goods.detail > section.cont > section.information { position : static !important ; margin-top: 20px ; width : 100% ; height : auto ; display: block }
  main.goods.detail > section.cont > section.information > .cont { display : block }
  main.goods.detail > section.cont > section.information article { width : 100% ; padding : 0 20px }
  main.goods.detail > section.cont > section.information article.detail{padding : 0;}
  /* 모바일 #details: 3탭 가로 균등 배치, 선택 탭 하단 border, 해당 dd만 아래 노출 */
  main.goods.detail > section.cont > section.information #details{
    width : 100%;
    display : grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
  }
  main.goods.detail > section.cont > section.information #details > *:nth-child(1){ grid-row: 1; grid-column: 1; }
  main.goods.detail > section.cont > section.information #details > *:nth-child(2){ grid-row: 2; grid-column: 1 / -1; }
  main.goods.detail > section.cont > section.information #details > *:nth-child(3){ grid-row: 1; grid-column: 2; }
  main.goods.detail > section.cont > section.information #details > *:nth-child(4){ grid-row: 2; grid-column: 1 / -1; }
  main.goods.detail > section.cont > section.information #details > *:nth-child(5){ grid-row: 1; grid-column: 3; }
  main.goods.detail > section.cont > section.information #details > *:nth-child(6){ grid-row: 2; grid-column: 1 / -1; }
  main.goods.detail > section.cont > section.information #details > dt{
    width: 100%;
    height: 45px;
    margin: 0;
    border-top: none;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--border-gray-color);
    transition: border-color .2s ease, color .2s ease;
  }
  main.goods.detail > section.cont > section.information #details > dt.on{
    border-bottom: 2px solid #343434;
    color: #343434;
  }
  main.goods.detail > section.cont > section.information #details > dt:not(.on) > button{
    color: #999;
  }
  main.goods.detail > section.cont > section.information #details > dt.on > button{
    color: #343434;
  }
  main.goods.detail > section.cont > section.information #details > dt.on > button:before{
    filter: brightness(0);
  }
  main.goods.detail > section.cont > section.information #details > dt:after{
    display: none;
  }
  main.goods.detail > section.cont > section.information #details > dt > button{
    height: 100%;
    padding-left: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    max-width: 100%;
    text-align: left;
    position: relative;
  }
  main.goods.detail > section.cont > section.information #details > dt > button:before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 25px;
    height: 45px;
    background-position: left center;
    background-repeat: no-repeat;
    display: block;
  }
  main.goods.detail > section.cont > section.information #details > dd{
    grid-column: 1 / -1;
    grid-row: 2;
    display: none;
    border: none;
  }
  main.goods.detail > section.cont > section.information #details > dd:before{
    display: none;
  }
  main.goods.detail > section.cont > section.information #details > dt.on + dd{
    display: block;
  }
  main.goods.detail > section.cont > section.information #details > dd .cont{
    padding: 12px 0 20px;
    background-color: var(--white);
  }
  main.goods.detail > section.cont > section.information #details button:not(.close){
    width : auto;
  }
  main.goods.detail > section.cont > section.information #details > dd .cont .body{
    padding : 5px 20px 40px 20px;
  }
  /* main.goods.detail > section.cont > section.information article.goods { padding-bottom : 0 } */
  main.goods.detail > section.cont > section.information article.goods button.favorite { right : 20px }
  .caution .text {padding : 0 20px;}
  /*
  main.goods.detail > section.cont > section.information article.goods .option dl { padding-top : 30px ; position : relative }
  main.goods.detail > section.cont > section.information article.goods .option dl > dt { width: 100% ; display: block ; position : absolute ; top: 0 ; left : 0 }
  */
  main.goods.detail > section.cont > section.information article.goods .buttons button { width : 100% }
  main.goods.detail > section.cont > section.information article.goods .buttons {
    padding: 10px 0;
  }
  main.goods.detail > section.cont > section.information article.goods .buttons button {
    border-color: #808080;
    height: 40px;
    line-height: 38px;
    background-size: auto;
  }
  main.goods.detail > section.cont > section.information article.goods .warning_txt_wrap {
    padding-bottom: 12px;
  }

  /* dropdown */
  main.goods.detail > section.cont > section.information article.goods .option dl.size .size-dropdown.pc {
    display: none;
  }
  main.goods.detail > section.cont > section.information article.goods .option dl.size .size-dropdown-wrap {
    display: block;
    margin-top: 10px;
  }
  main.goods.detail > section.cont > section.information article.goods .option dl.size .size-dropdown-wrap .size-dropdown-placeholder.outer {
    width: 100%;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    border: solid 1px #eaeaea;
    background-color: #FFF;
    cursor: pointer;
  }
  main.goods.detail > section.cont > section.information article.goods .option dl.size .size-dropdown-wrap .size-dropdown-placeholder.outer.has-selected {
    border: solid 1px #343434;
  }
  main.goods.detail > section.cont > section.information article.goods .option dl.size .size-dropdown-wrap:has(.size-dropdown-box.on) .size-dropdown-placeholder.outer {
    display: none;
  }
  main.goods.detail > section.cont > section.information article.goods .option dl.size .size-dropdown-box {
    display: none;
  }
  main.goods.detail > section.cont > section.information article.goods .option dl.size .size-dropdown-box.on {
    position: relative;
    width: 100%;
    height: auto;
    display: block;
    z-index: 1;
    padding: 0;
    margin: 0;
    margin-top: 10px;
    background: transparent;
  }
  main.goods.detail > section.cont > section.information article.goods .option dl.size .size-dropdown-box.on .size-dropdown {
    width: 100%;
    height: fit-content;
    max-height: 369px;
    display: flex;
    flex-direction: column;
    background-color: #FFF;
    border: solid 1px #eaeaea;
  }
  main.goods.detail > section.cont > section.information article.goods .option dl.size .size-dropdown-box.on .size-dropdown-placeholder.inner {
    width: 100%;
    height: 55px;
    border-bottom: 1px solid #343434;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 20px 20px 15px 20px;
    cursor: pointer;
  }
  main.goods.detail > section.cont > section.information article.goods .option dl.size .size-dropdown-box.on .size-dropdown-placeholder.inner .placeholder {
    line-height: 1.2;
  }
  main.goods.detail > section.cont > section.information article.goods .option dl.size .size-dropdown ul {
    overflow-y: scroll;
  }
  main.goods.detail > section.cont > section.information article.goods .option dl.size .size-dropdown ul li {
    border-right: none;
    border-left: none;
  }
  main.goods.detail > section.cont > section.information article.goods .option dl.size .size-dropdown ul li:last-child {
    border-bottom: none;
  }
  main.goods.detail > section.cont > section.information article.goods .option dl.size .size-dropdown ul li label {
    padding: 0 20px;
  }
  
  main.goods.detail > section.cont > section.information article.goods .option dl.setgoods > dt { padding-left : 20px ; background-color : var(--white) }
  main.goods.detail > section.cont > section.information article.goods .option dl.setgoods > dt > ul { margin-left : -20px ; width : calc( 100% + 20px ) }
  main.goods.detail > section.cont > section.information article.goods .option dl.setgoods > dd { max-height : calc( 100vh - 85px ) ; position : static ; border : none ; margin-top : 0 }
  main.goods.detail > section.cont > section.information article.goods .option dl.setgoods > dd.over500 ul { border-right : none }
  main.goods.detail > section.cont > section.information article.goods .option dl.setgoods.on {
    position : fixed ;
    top : 0 ;
    left : 0 ;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width : 100vw ;
    height : 100vh ;
    z-index : 105 ;
    padding : 20px ;
    margin : 0 ;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
  }
  main.goods.detail > section.cont > section.information article.goods .option dl.setgoods.on:before { display: block; position: absolute; top: 0 ; left: 0 ; content: ""; width: 100vw ; height: 100vh ; background-color: var(--black) ; z-index: -1 ; transition: ease-out .35s ; opacity : .15 }
  main.goods.detail > section.cont > section.information article.goods .option dl.setgoods.on > dt { border-top : none ; border-left : none ; border-right : none }
  main.goods.detail > section.cont > section.information > .cont.info-opened {
    bottom: unset;
  }
  main.goods.detail > section.cont > section.information #details { 
    position: relative; 
    transition: ease-out .2s; 
    margin-top: 0;
  }	
  
  /* zoom */
  main.goods.detail #mobile-zoom,
  main.goods.detail #mobile-3d {
    position : fixed;
    top : 0;
    left : 0;
    z-index : 1005;
    width : 100vw;
    height : 100vh;
    background-color : var(--white);
  }
  main.goods.detail #mobile-3d {
    display: flex;
    align-items: center;
  }
  main.goods.detail .close-wrap {
    position : absolute;
    top : 10px;
    right : 10px;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px;
  }
  main.goods.detail .close-wrap .close {
    position : relative;
    top: unset;
    right: unset;
    display: inline-block;
    width: 12px;
    height: 12px;
    background: url(/images/ico-close.svg) center no-repeat;
    color: var(--black);
    transition: ease-out .2s;
    cursor: pointer;
  }
  main.goods.detail .close-wrap span {
    font-weight: 400;
    font-size: 12px;
    line-height: 100%;
  }
  /* 모바일 확대 모드 close */
  main.goods.detail #mobile-zoom .close-wrap {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 100;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    gap: 0;
  }

  main.goods.detail #mobile-zoom .close-wrap .close {
    width: 12px;
    height: 12px;
    background: url(/images/ico-close.svg) center no-repeat;
    background-size: 12px 12px;
  }

  main.goods.detail #mobile-zoom .close-wrap span {
    display: none;
  }
  
  main.goods.detail #mobile-zoom .zoom-image-wrapper {
    width: inherit;
    height: inherit;
    overflow: overlay;
  }

  main.goods.detail #mobile-zoom .zoom-image {
    display: none;
  }

  main.goods.detail #mobile-zoom .zoom-image.active {
    display: flex;
    transform: scale(2);
    transform-origin: top left;
  }

  /* 모바일 확대 Swiper 스타일 */
  main.goods.detail #mobile-zoom-swiper {
    width: 100%;
    height: 100%;
    position: relative;
  }

  main.goods.detail #mobile-zoom-swiper .swiper-wrapper {
    width: 100%;
    height: 100%;
  }

  main.goods.detail #mobile-zoom-swiper .swiper-slide {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: auto;
  }

  main.goods.detail #mobile-zoom-swiper .zoom-image {
    display: flex !important;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    height: 100%;
    overflow: auto;
  }

  main.goods.detail #mobile-zoom-swiper .zoom-image img {
    max-width: none;
    max-height: none;
    object-fit: contain;
    cursor: grab;
  }

  main.goods.detail #mobile-zoom-swiper .zoom-image img:active {
    cursor: grabbing;
  }

  main.goods.detail #mobile-zoom-swiper .mobile-zoom-prev,
  main.goods.detail #mobile-zoom-swiper .mobile-zoom-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 201;
  }

  /* 모바일 확대 Swiper 페이지네이션 */
  main.goods.detail #mobile-zoom-paging {
    position: fixed;
    top: 20px;
    left: 20px;
    display: flex;
    font-size: var(--fontsize-title);
    z-index: 201;
    padding: 1px 5px;
    background-color: var(--white);
  }
  .swiper-button-prev:after{
    transform : none;
  }
  .swiper-button-next:after{
    transform: rotate(180deg);
  }
}

/* 제갈민혁 - sold out 추가*/
main.goods.detail > section.cont > section.information article.goods .price .price_soldout{
  display: flex;
  gap: 10px;
  flex-direction: row;
  color: #FF0000;
  opacity: 0.6;
}
main.goods.detail > section.cont > section.information article.goods .price .price_soldout .del_price{
  /* color : #999999; */
  position: relative;
  display: inline-block;
}
main.goods.detail > section.cont > section.information article.goods .price .price_soldout .del_price::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: calc(100% + 4px);
  height: 1px;
  /* background: #343434; */
  background: #FF0000;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.option_close_stock{
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #FF0000;
  margin-left: 1px;
  position: absolute;
  top: 3px;
  right: 3px;
}

.option_close_stock_txt{
  color : #FF0000;
  margin-left: 10px;
}
main.goods.detail #view-relation{
  margin-bottom : -50px;
}
#view-relation-2{
  height : auto;
}
/* view-relation-2 그리드 레이아웃 */
main.goods.detail #view-relation-2 .view-relation-2-grid {
	display : grid ;
	grid-template-columns : repeat(6, minmax(0, 1fr)) ;
}
main.goods.detail #view-relation-2 .view-relation-2-grid .goods-list {
	position : relative ;
	border-right : solid 1px var(--border-gray-color) ;
	border-bottom : solid 1px var(--border-gray-color) ;
}
main.goods.detail #view-relation-2 .view-relation-2-grid .goods-list:nth-child(-n+6) {
	border-top : solid 1px var(--border-gray-color) ;
}
main.goods.detail #view-relation-2 .view-relation-2-grid .goods-list:nth-child(6n-5) {
	border-left : solid 1px var(--border-gray-color) ;
}
main.goods.detail #view-relation-2 .view-relation-2-grid .goods-list > a.image {
	display : block ;
	width : 100% ;
	aspect-ratio : 3.2/4 ;
	background-size : contain ;
	background-position : center ;
	border-bottom : solid 1px var(--border-gray-color) ;
}
main.goods.detail #view-relation-2 .view-relation-2-grid .goods-list .info {
	padding : 15px 9px ;
}
main.goods.detail #view-relation-2 .view-relation-2-grid .goods-list button.favorite{
  display : none;
}
@media only screen and (max-width: 1024px) {
	main.goods.detail #view-relation-2 .view-relation-2-grid {
		grid-template-columns : repeat(3, minmax(0, 1fr)) ;
	}
	main.goods.detail #view-relation-2 .view-relation-2-grid .goods-list:nth-child(-n+6) {
		border-top : none ;
	}
	main.goods.detail #view-relation-2 .view-relation-2-grid .goods-list:nth-child(-n+3) {
		border-top : solid 1px var(--border-gray-color) ;
	}
	main.goods.detail #view-relation-2 .view-relation-2-grid .goods-list:nth-child(6n-5) {
		border-left : none ;
	}
	main.goods.detail #view-relation-2 .view-relation-2-grid .goods-list:nth-child(3n-2) {
		border-left : solid 1px var(--border-gray-color) ;
	}
}

/* 제품 상세 - 함께 스타일링 된 아이템 */
main.goods.detail #view-relation .swiper-slide.goods-list .info .top, main.goods.detail #view-relation-2 .goods-list .info .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

main.goods.detail #view-relation .swiper-slide.goods-list .info .top .price .soldout_price, main.goods.detail #view-relation-2 .goods-list .info .top .price .soldout_price { 
  text-decoration: line-through; 
  -webkit-text-decoration-color: #343434;
  text-decoration-color: #343434; 
  color: #999999; 
}

main.goods.detail #view-relation .info > .size > li.soldout, 
main.goods.detail #view-relation .info > .size > li.reorder,
main.goods.detail #view-relation-2 .info > .size > li.soldout,
main.goods.detail #view-relation-2 .info > .size > li.reorder {
  text-decoration: line-through;
  opacity: .5;
}

main.goods.detail #view-relation .info .soldout-flg,
main.goods.detail #view-relation-2 .info .soldout-flg {
  color: #FF0000;
  opacity: 0.6;
}

main.goods.detail #view-relation .info .soldout-flg .soldout_cont,
main.goods.detail #view-relation-2 .info .soldout-flg .soldout_cont {
  text-decoration: line-through;
}

@media only screen and (max-width: 1024px) {

  main.goods.detail #view-relation .swiper-slide.goods-list .info .top,
  main.goods.detail #view-relation-2 .goods-list .info .top {
    width: 100%;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    text-align: left;
  }
  
  main.goods.detail #view-relation .swiper-slide.goods-list ul.size,
  main.goods.detail #view-relation-2 .goods-list ul.size {
    display: none;
  }
  main.goods.detail #view-relation-2 .view-relation-2-grid .goods-list{
    border-top : none;
    border-bottom : none;
  }
  main.goods.detail #view-relation-2 .view-relation-2-grid .goods-list .info{
    display : none;
  }
  main.goods.detail #view-relation-2 .view-relation-2-grid .goods-list > a.image{
    aspect-ratio : 12/15;
  }
}

/* 사이즈가이드 텍스트만 존재 */
main.goods.detail > section.cont > section.information > .sizeguide-cont.no-svg {
  width: 480px;
  height: auto;
  min-height: 270px;
  border-left: var(--border);
}

main.goods.detail > section.cont > section.information > .sizeguide-cont.no-svg > article {
  margin: 0;
  padding: 27px 40px;
  display: block;
  border-bottom: none;
}

main.goods.detail > section.cont > section.information > .sizeguide-cont.no-svg > article:after {
  background: none;
}

main.goods.detail > section.cont > section.information > .sizeguide-cont.no-svg > article > figure {
  padding: 0;
  text-align: left;
}

main.goods.detail > section.cont > section.information > .sizeguide-cont.no-svg > article figure {
  aspect-ratio: auto;
  overflow-y: scroll;
}

@media only screen and (min-width: 1025px) {

  main.goods.detail > section.cont > section.information > .sizeguide-cont.no-svg > article figure {
    max-height: 50vh;
  }
}

main.goods.detail > section.cont > section.information > .sizeguide-cont.no-svg > article > .cont {
  display: none;
}

@media only screen and (max-width: 1024px) {

  main.goods.detail > section.cont > section.information > .sizeguide-cont {
    height: calc(100dvh - 43px);
    overflow-y: scroll;
    overflow-x: hidden;
    z-index: 100;
    padding-bottom: 20px;
    overscroll-behavior: contain;
  }

  main.goods.detail > section.cont > section.information > .sizeguide-cont > header {
    padding-left: 20px;
  }

  main.goods.detail > section.cont > section.information > .sizeguide-cont > header button.close {
    right: 20px;
  }

  main.goods.detail > section.cont > section.information > .sizeguide-cont.no-svg {
    width: 100%;
    height: calc(100dvh - 43px);
    border-left: none;
    border-bottom: none;
    background: linear-gradient(to bottom, #fff 0px, #fff 50px, transparent 50px);
  }

  main.goods.detail > section.cont > section.information > .sizeguide-cont.no-svg .sizeguide-cont-bg {
    position: absolute;
    top: 65px;
    right: 0;
    width: 100%;
    height: calc(100dvh - 110px);
    background: rgba(0, 0, 0, .15);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    z-index: 101;
  }

  main.goods.detail > section.cont > section.information > .sizeguide-cont.no-svg > article {
    background-color: #fff;
    padding: 40px 20px;
    z-index: 102;
  }
}

@media (max-width: 700px) {

  main.goods.detail > section.cont > section.information > .sizeguide-cont > article {
    display: block;
    margin: 0;
  }

  main.goods.detail > section.cont > section.information > .sizeguide-cont > article > .cont {
    padding-right: 0;
  }
}

/* 사이즈가이드 모바일 */
@media only screen and (max-width: 700px) {

  main.goods.detail > section.cont > section.information > .sizeguide-cont > header h2 {
    height: 25px;
    margin-top: 20px;
    background: url(/images/ico-ruler.svg) left 2px no-repeat;
  }

  main.goods.detail > section.cont > section.information > .sizeguide-cont > header button.close {
    top: 20px;
  }

  main.goods.detail > section.cont > section.information > .sizeguide-cont > article {
    padding: 0;
  }

  main.goods.detail > section.cont > section.information > .sizeguide-cont > article > figure {
    padding: 0 10px;
  }

  main.goods.detail > section.cont > section.information > .sizeguide-cont > article > figure .sizeguide-model-info {
    margin: 15px 10px 20px 10px;
  }

  main.goods.detail > section.cont > section.information > .sizeguide-cont > article > figure > svg {
    height: auto;
  }

  main.goods.detail > section.cont > section.information > .sizeguide-cont ul.describe > li {
    border-left: none;
    border-right: none;
    padding: 10px 20px;
  }

  main.goods.detail > section.cont > section.information > .sizeguide-cont ul.describe > li:last-child {
    border-bottom: none;
  }
  main.goods.detail #frm-goods .price-tag[data-discount="true"] .bottom{
    right : 3px;
  }
  main.goods.detail #frm-goods .price-tag[data-discount="true"]{
    gap : 7px;
    margin-left : 0;
  }
}

/* 신발 사이즈가이드 */
main.goods.detail > section.cont > section.information > .sizeguide-cont > article.shoes {
  display: block;
}

main.goods.detail > section.cont > section.information > .sizeguide-cont > article.shoes > .sizeguide-svg-box {
  padding: 0 40px;
}

main.goods.detail > section.cont > section.information > .sizeguide-cont > article.shoes figure {
  aspect-ratio: auto;
}

main.goods.detail > section.cont > section.information > .sizeguide-cont > article.shoes > .cont {
  padding-left: 40px;
}

main.goods.detail > section.cont > section.information > .sizeguide-cont > article.shoes ul.sizes {
  width: 100%;
}

main.goods.detail .shoes-wrapper {
  width: 100%;
  max-width: 600px;
  border: 1px solid #EAEAEA;
  text-align: center;
}

main.goods.detail .shoes-wrapper .shoes-header,
main.goods.detail .shoes-wrapper .shoes-body .shoes-body-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  align-items: center;
  height: 45px;
}

main.goods.detail .shoes-wrapper .shoes-header {
  border-bottom: 1px solid #EAEAEA;
}

main.goods.detail .shoes-wrapper .shoes-body {
  max-height: 585px;
  overflow-y: auto;
}

main.goods.detail .shoes-wrapper .shoes-body .shoes-body-row:not(:last-child) {
  border-bottom: 1px solid #EAEAEA;
}

@media only screen and (max-width: 1024px) {

  main.goods.detail > section.cont > section.information > .sizeguide-cont > article.shoes > .sizeguide-svg-box {
    padding: 15px 20px 0 20px;
  }

  main.goods.detail > section.cont > section.information > .sizeguide-cont > article.shoes > .cont {
    padding-left: 0;
    padding-right: 0;
  }

  main.goods.detail > section.cont > section.information > .sizeguide-cont > article.shoes ul.sizes {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  main.goods.detail .shoes-wrapper {
    max-width: none;
    border-left: none;
    border-right: none;
  }
}

@media only screen and (max-width: 1024px) {

  main.goods.detail > section.cont > section.information > .sizeguide-cont > article .size-desc {
    padding: 5px 20px 15px 20px;
  }
}

/* 제품상세 가격 */
main.goods.detail #frm-goods .price-tag {
  width: fit-content;
  margin: 7px 0 30px 0;
  font-size: 11px;
}

main.goods.detail #frm-goods .price-tag[data-discount="true"],
main.goods.detail #frm-goods .price-tag[data-soldout="true"] {
  margin-bottom: 38px;
}

main.goods.detail #frm-goods .price-tag[data-discount="true"][data-soldout="true"] {
  margin-bottom: 54px;
}
main.goods.detail #frm-goods .price-tag[data-soldout="true"]:not([data-discount="true"]) .bottom {
  left: 0;
  right: unset;
}

/* 상품 상세 페이지 라벨 */
main.goods.detail #frm-goods .prd_info {
  display: flex;
  flex-direction: row;
  gap: 5px;
  margin-bottom : 30px;
}

main.goods.detail #frm-goods .prd_info span {
  font-size: 11px;
  font-weight: 400;
  color: #343434;
  line-height: 1.2;
}

/* main.goods.detail #frm-goods .prd_info span:not(:last-child)::after {
  content: "|";
  margin-left: 5px;
  color: #DCDCDC;
} */

@media only screen and (max-width: 1024px) {

  main.goods.detail #frm-goods .price-tag,
  main.goods.detail #frm-goods .price-tag[data-discount="true"],
  main.goods.detail #frm-goods .price-tag[data-soldout="true"],
  main.goods.detail #frm-goods .price-tag[data-discount="true"][data-soldout="true"] {
    margin-bottom: 30px;
  }

  main.goods.detail #frm-goods .prd_info {
    margin-bottom: 30px;
    gap: 5px;
  }

  main.goods.detail #frm-goods .prd_info span {
    font-size: 12px;
  }

  main.goods.detail > section.cont > section.gallery > article .prd_label.label_pc {
    display: none;
  }

  main.goods.detail > section.cont > section.gallery > article .prd_label.label_mo {
    display: flex;
    position: absolute;
    top: 20px;
    left: 20px;
  }
}

main.goods.detail .goods-detail-back-to-top {
  display: none;
}
@media only screen and (max-width: 1024px) {
  main.goods.detail .goods-detail-back-to-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0;
    padding: 48px 20px 40px;
    border: none;
    background: transparent;
    color: #0c0c0c;
    cursor: pointer;
    font-family: inherit;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
  }
  main.goods.detail .goods-detail-back-to-top__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    line-height: 0;
  }
  main.goods.detail .goods-detail-back-to-top__icon svg {
    display: block;
  }
  main.goods.detail .goods-detail-back-to-top__label {
    font-size: 11px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.02em;
  }
}
