@charset "utf-8";

/* 기본프로그램 사용자모듈 메뉴 - PC */
.all_m_btn {
	padding: 10px;
	background: #323337;
}

.pro_m_wrap .m_menu {
	width: 200px;
}

@media all and (max-width:999px) {
	.pro_m_wrap.view {
		left: 0;
	}
}

/* basic */
.inner {
	width: 100%;
	max-width: 1600px;
	margin: 0 auto;
	position: relative;
}

@media all and (max-width:1600px) {
	.inner {
		width: 96%;
	}
}

/* 햄버거 메뉴 */
#header .m_btn {
	display: none;
	width: 24px;
	height: 24px;
	cursor: pointer;
	flex-shrink: 0;
}

#header .m_btn svg {
	display: block;
	width: 24px;
	height: 24px;
}


@media all and (max-width:1080px) {
	/* #header {
		display: none;
	} */

	/* header.jsp의 헤더는 숨김 - leftmenu.jsp의 navbar 사용 */
	#header .gnb {
		display: none;
	}

	.gnb_mega {
		display: none;
	}

	#header .m_btn {
		display: flex;
		align-items: center;
		justify-content: center;
	}

	/* leftmenu.jsp의 햄버거 버튼 - 모바일에서 왼쪽에 표시 */
	#toggle_nav_btn {
		position: absolute !important;
		top: 50% !important;
		left: 15px !important;
		transform: translateY(-50%) !important;
		display: inline-block !important;
		padding: 10px !important;
		z-index: 9999 !important;
	}

	#toggle_nav_btn>i.zmdi-menu {
		display: block !important;
		font-size: 24px;
		color: #fff;
	}

	#toggle_nav_btn>img {
		display: none !important;
	}

	/* 모바일 슬라이드 메뉴 상단 여백 */
	/* #m_menu {
		padding-top: 80px;
	} */
}

/* 모바일 메뉴 */
.m_menu_bg {
	z-index: 101;
	position: fixed;
	left: 0;
	top: 0;
	display: none;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .7);
	cursor: pointer;
}

#m_menu {
	z-index: 102;
	position: fixed;
	right: -100%;
	top: 0;
	width: 100%;
	max-width: 320px;
	height: 100%;
	background-color: #111;
	box-sizing: border-box;
	transition: right 0.35s ease;
	overflow-y: auto;
}

#m_menu.on {
	right: 0;
}

.m_menu_header {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding: 16px 20px;
}

.m_close_btn {
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.m_close_btn i {
	display: block;
	width: 20px;
	height: 2px;
	background: #fff;
	position: absolute;
}

.m_close_btn i:first-of-type {
	transform: rotate(45deg);
}

.m_close_btn i:last-of-type {
	transform: rotate(-45deg);
}

#m_menu .login_box {
	display: flex;
	gap: 10px;
	padding: 0 20px 20px 20px;
	display: none;

}

#m_menu .login_box a {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px 0;
	font-size: 14px;
	font-weight: 600;
	color: #fff;
	border: 1px solid #555;
	border-radius: 6px;
}

#m_menu .login_box a:first-child {
	background: #fff;
	color: #111;
	border-color: #fff;
}

/* 모바일 메뉴 검색 */
.m_search_box {
	position: relative;
	padding: 0 16px;
	border-top: 1px solid #202020;
	border-bottom: 1px solid #202020;
	display: flex;
	align-items: center;
	gap: 16px;
	height: 50px;

	margin-top: 22px;
}

.m_search_box input {
	flex: 1;
	min-width: 0;
	background: transparent;
	height: 100%;
	padding: 0;
	outline: 0;
	border: 0;
	color: #F5F5F5;
	font-size: 16px;
	font-family: 'Pretendard', sans-serif;
	font-weight: 500;
}

.m_search_box input::placeholder {
	color: #555;
}

.m_search_box img {
	width: 18px;
	flex-shrink: 0;
	order: -1;
	filter: brightness(0.3);
}

/* 모바일 메뉴 유틸 - 헤더로 이동하여 숨김 */
.m_util_box {
	display: none;
}

#m_menu .gnb_box {
	padding: 0;
}

#m_menu .gnb_box>ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

#m_menu .gnb_box>ul>li>a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 16px;
	height: 50px;
	font-size: 16px;
	font-weight: 600;
	color: #F5F5F5;
	border-bottom: 1px solid #111;
	transition: color 0.2s;
}

#m_menu .gnb_box>ul>li.on>a {
	color: #00B8FC;
}

/* 모바일 서브메뉴 화살표 SVG */
#m_menu .gnb_box>ul>li>a .m_arrow {
	flex-shrink: 0;
	transition: transform 0.3s;
}

#m_menu .gnb_box>ul>li.on>a .m_arrow {
	transform: rotate(180deg);
}

#m_menu .gnb_box>ul>li.on>a .m_arrow path {
	fill: #00B8FC;
}

/* 모바일 서브메뉴 (투뎁스) */
#m_menu .gnb_box>ul>li>ul {
	display: none;
	list-style: none;
	margin: 0;
	padding: 0;
	background: #1D1D1D;
}

#m_menu .gnb_box>ul>li>ul>li>a {
	display: flex;
	align-items: center;
	padding: 0 32px;
	height: 50px;
	font-size: 16px;
	font-weight: 400;
	color: #B9B9B9;
	border-bottom: 1px solid #292929;
}

#m_menu .gnb_box>ul>li>ul>li>a:hover,
#m_menu .gnb_box>ul>li>ul>li>a:active {
	color: #F5F5F5;
}

#m_menu .gnb_box>ul>li>.tree_controls .divider {
	display: inline-block;
	width: 1px;
	height: 14px;
	background: rgba(255, 255, 255, 0.3);
	margin: 0 4px;
}

/* 모바일 카테고리 스와이퍼 */
.m_cate_sub {
	display: none;
	background: #1D1D1D;
	padding: 12px 16px 16px;
}

.m_cate_swiper {
	overflow: hidden;
}

.m_cate_swiper .swiper-slide {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.m_cate_swiper .swiper-slide a {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	text-decoration: none;
}

.m_cate_img {
	width: 100%;
	aspect-ratio: 1 / 1;
	background: #2A2A2A;
	border-radius: 6px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 8px;
}

.m_cate_img img {
	width: 75%;
	height: 75%;
	object-fit: contain;
}

.m_cate_name {
	font-size: 11px;
	font-weight: 400;
	color: #B9B9B9;
	text-align: center;
	line-height: 1.3;
	width: 100%;
	height: calc(11px * 1.3 * 2);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.m_cate_scrollbar {
	margin-top: 16px;
	height: 3px !important;
	background: #292929 !important;
	border-radius: 2px !important;
}

.m_cate_scrollbar .swiper-scrollbar-drag {
	background: #00B8FC !important;
	border-radius: 2px !important;
}

/* ========== 퀵메뉴 & TOP 버튼 ========== */
.quick_step_btn_box01 {
	display: flex;
}

.quick_step_btn_box01>a {
	position: absolute;
	z-index: 2;
}

.quick_step_btn_box01>a.btn-prev {
	top: 10px;
	left: 50%;
	transform: translateX(-50%);
}

.quick_step_btn_box01>a.btn-next {
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
}

/* PC 퀵메뉴 */
#sideQuick {
	position: fixed;
	right: 30px;
	bottom: 30px;
	z-index: 9999;
	width: 60px;
}

#sideQuick>ul {
	border-radius: 6px;
	margin-bottom: 20px;
}

#sideQuick ul li .side_quick_menu01 {
	width: 100%;
	aspect-ratio: 1/0.357;
	display: flex;
	align-items: center;
	gap: 5px;
	text-align: center;
	font-size: 14px;
	font-weight: 400;
	color: #222;
	background-color: #fff;
	box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.07);
	border-radius: 6px;
	padding: 0 20px;
}

#sideQuick ul li .side_quick_menu01+.side_quick_menu01 {
	margin-top: 10px;
}

#sideQuick ul li .side_quick_menu01 img {
	width: fit-content;
}

#top_btn {
	margin-top: 10px;
	display: none;
	opacity: 0;
	transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
	position: absolute;
	bottom: 0;
}

#top_btn.show {
	display: flex;
	justify-content: center;
	opacity: 1;
	transform: translateY(0);
}

#sideQuickMoreBtn {
	position: absolute;
	cursor: pointer;
	bottom: 60px;
	z-index: 2;
	transition: all 0.3s ease-in-out;
	display: flex;
	justify-content: center;
}

.sideQuickBtn {
	width: 55px;
	height: 55px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.08);
	background-color: #fff;
}

#sideQuickMoreBtn .sideQuickBtn {
	background-color: var(--color-primary01, #307dd4);
}

#top_btn .sideQuickBtn {
	background-color: transparent;
	box-shadow: none;
	border: 1px solid var(--color-primary01, #307dd4);
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 0;
}

#top_btn .sideQuickBtn .top_arrow {
	display: block;
	width: 11px;
	height: 11px;
	border-left: 2px solid var(--color-primary01, #307dd4);
	border-top: 2px solid var(--color-primary01, #307dd4);
	border-right: none;
	border-bottom: none;
	background: transparent;
	transform: rotate(45deg) !important;
	position: static;
	margin-top: 5px;
}

#top_btn .sideQuickBtn .top_text {
	font-size: 11px;
	font-weight: 600;
	color: var(--color-primary01, #307dd4);
	position: static;
	transform: none;
	background: transparent;
	width: auto;
	height: auto;
	line-height: 1;
	margin-top: 2px;
}

#sideQuickMoreBtn .sideQuickBtn span {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #fff;
	transition: transform 0.3s, opacity 0.3s;
}

#sideQuickMoreBtn .sideQuickBtn span:nth-child(1) {
	width: 12px;
	height: 1px;
}

#sideQuickMoreBtn .sideQuickBtn span:nth-child(2) {
	width: 1px;
	height: 12px;
}

#sideQuickMoreBtn.scroll {
	/* bottom: 120px; */
	bottom: 70px;
}

#sideQuickMoreBtn.active .sideQuickBtn span:nth-child(1) {
	transform: translate(-50%, -50%) rotate(45deg);
}

#sideQuickMoreBtn.active .sideQuickBtn span:nth-child(2) {
	transform: translate(-50%, -50%) rotate(45deg);
}

#sideQuickMoreBtn .quick {
	position: absolute;
	bottom: 100%;
	margin-bottom: 10px;
	min-width: 140px;
	display: none;
}

/* 최근 본 상품 / 관심 상품 */
.quick ul li.recent_prod {}

.quick ul li.recent_prod>p {
	height: 40px;
	font-size: 15px;
	color: #fff;
	letter-spacing: -0.025em;
	line-height: 40px;
	background-color: var(--color-primary01, #307dd4);
	text-align: center;
}

.prod_no_box {
	width: 114px;
	height: 114px;
	border-radius: 5px;
	background: #F5F5F5;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.prod_no_box>p {
	font-size: 11px;
	font-weight: 400;
	color: #999;
	margin-top: 5px;
}

.quick ul li.recent_prod ul {
	padding: 30px 10px;
	box-sizing: border-box;
	margin-bottom: 10px;
	background-color: #fff;
	border-radius: 0 0 6px 6px;
	position: relative;
}

.quick ul li.recent_prod ul li {
	border: unset;
	border-radius: 6px;
	aspect-ratio: 1/1;
	overflow: hidden;
	margin-bottom: 10px;
}

.quick ul li.recent_prod ul li:last-of-type {
	margin-bottom: 0;
}

.quick ul li.recent_prod ul li img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.quick ul li.recent_prod .quick_pager {
	margin-top: 0;
	margin-bottom: 30px;
}

.quick ul li.recent_prod .quick_pager a {
	display: inline-block;
	vertical-align: middle;
	width: auto;
	height: auto;
	border: 0 none;
	margin: 0 3px;
	line-height: 14px;
	font-size: 14px;
	color: #b6b6b6;
}

.quick ul li.recent_prod .quick_pager a.active {
	color: #666666;
}

.quick ul.zzim {
	margin-top: 30px;
}

.quick ul li.top_btn {
	width: 100%;
	height: 40px;
	background-color: #000;
	box-sizing: border-box;
	line-height: 48px;
	text-align: center;
}

.quick ul li.top_btn a {
	display: block;
	color: #fff;
	line-height: 40px;
	font-size: 15px;
	letter-spacing: -0.025em;
}

/* 모바일에서 퀵메뉴 위치 조정 */
@media all and (max-width:768px) {
	#sideQuick {
		right: 10px;
		bottom: 10px;
		z-index: 10002;
	}

	#sideQuickMoreBtn .quick {
		right: auto;
		left: auto;
		transform: translateX(-30px);
	}
}

/* ========== END 퀵메뉴 & TOP 버튼 ========== */


/* header */

#header {
	background: #111;
	position: fixed;
	z-index: 999;
	width: 100%;
	left: 0;
	top: 0;


}

.h_slide_menu {
	width: 100%;
	height: 30px;
	background: #00B8FC;
	overflow: hidden;
	transition: height 0.3s ease, opacity 0.3s ease;
}

.h_slide_menu a.h_slide_menu_link,
.h_slide_menu a.h_slide_menu_link:link,
.h_slide_menu a.h_slide_menu_link:visited,
.h_slide_menu a.h_slide_menu_link:hover,
.h_slide_menu a.h_slide_menu_link:active {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	height: 100%;
	text-decoration: none;
	color: #fff;
	font-family: Pretendard;
	font-size: 12px;
	font-weight: 700;
}

.h_slide_menu .h_slide_menu_text {
	line-height: 1;
	color: #fff;
}

.h_slide_menu_icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
}

.h_slide_menu_icon svg {
	display: block;
}

#header.h_slide_hidden .h_slide_menu {
	height: 0;
	opacity: 0;
}

#header .inner {
	max-width: 1840px;
	width: 100%;

	display: flex;
	gap: 60px;
	align-items: center;
	justify-content: space-between;
}

.h_logo_box {
	height: 30px;
}

.h_logo_box a {
	display: block;
	height: 100%;
}

.h_logo_box a img {
	width: 100%;
	height: 100%;
}

.gnb {
	display: flex;
	align-items: center;
	/* gap: 48px; */

}

.gnb>li>a {
	color: #F5F5F5;
	font-family: Pretendard;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	display: block;
	padding: 20.5px 0;
	width: 120px;
	text-align: center;
	transition: background 0.2s, color 0.2s;
	border-radius: 30px;
}

.gnb li:hover>a,
.gnb li.gnb_active>a,
.gnb li.gnb_current>a {
	background: #00B8FC;
	color: #1A1A1A;

}

/* 메가메뉴 */
.gnb_has_sub {
	position: static;
}

.gnb_mega {
	position: fixed;
	left: 0;
	top: auto;
	width: 100vw;
	height: 450px;
	background: rgba(26, 26, 26, 0.96);
	overflow: hidden;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.25s, visibility 0.25s;
	z-index: 9999;
}

.gnb_has_sub:hover .gnb_mega,
.gnb_has_sub.gnb_active .gnb_mega {
	opacity: 1;
	visibility: visible;
}

.gnb_mega_inner {
	max-width: 1840px;
	width: 100%;
	margin: 0 auto;
	padding: 60px 120px;
	box-sizing: border-box;
	display: flex;
	align-items: flex-start;
	gap: 100px;
}

.gnb_mega_cards {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	width: 936px;
	flex-shrink: 0;
}

.gnb_mega_card {
	width: 300px;
	height: 300px;
	background: #323131;
	border-radius: 10px;
	padding: 10px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
	transition: opacity 0.2s;
}

.gnb_mega_card:hover {
	opacity: 0.85;
}

.gnb_mega_card_img {
	width: 300px;
	height: 250px;
	overflow: hidden;

		padding: 5px 10px;
}

.gnb_mega_card_img img {
	width: 100%;
	height: 100%;
}

.gnb_mega_all .gnb_mega_card_img img {
	object-fit: contain;
}

.gnb_mega_card_name {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #fff;
	font-size: 16px;
	font-family: Pretendard;
	font-weight: 700;
	width: 100%;
}

.gnb_mega_links {
	display: flex;
	flex-direction: column;
	gap: 19px;
	padding-top: 5px;
}

.gnb_mega_links a {
	color: #fff !important;
	font-size: 20px !important;
	font-family: Pretendard;
	font-weight: 700;
	width: auto !important;
	padding: 0 !important;
	text-align: left !important;
	background: none !important;
	transition: opacity 0.2s;
}

.gnb_mega_links a:hover {
	opacity: 0.7;
	background: none !important;
	color: #fff !important;
}

/* 전체상품 메가메뉴 (컴팩트) */
.gnb_mega_all {
	height: auto;
}

.gnb_mega_all .gnb_mega_inner {
	padding: 24px 80px;
	gap: 24px !important;
	flex-direction: column !important;
	align-items: center !important;
	justify-content: flex-start !important;
}

.gnb_mega_all .gnb_mega_section {
	width: 100% !important;
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	gap: 12px;
}

.gnb_mega_all .gnb_mega_section_title {
	margin: 0;
	color: #fff;
	font-family: Pretendard;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.5px;
	opacity: 0.7;
}

.gnb_mega_all .gnb_mega_cards {
	width: auto;
	gap: 10px;
	flex-wrap: wrap;
	justify-content: center;
}

.gnb_mega_all .gnb_mega_card {
	width: 146px;
	height: 146px;
	padding: 6px;
	border-radius: 8px;
}

.gnb_mega_all .gnb_mega_card_img {
	width: 100%;
	height: 100px;
	padding: 0;
}

.gnb_mega_all .gnb_mega_card_name {
	font-size: 13px;
}

/* 시리즈 메가메뉴 */
.gnb_mega_series_bg {
	background: transparent;
	height: 608px;
	padding: 0 120px;
	overflow: hidden;
	display: flex;
	align-items: center;

	z-index: 999999;
	position: relative;
}

.gnb_mega_series_inner {
	max-width: 1600px;
	margin: 0 auto;
	display: flex;
	align-items: flex-start;
	gap: 16px;
}

.gnb_series_card {
	width: 250px;
	display: flex;
	flex-direction: column;
	text-decoration: none;
	transition: opacity 0.2s;
}

.gnb_series_card:hover {
	opacity: 0.85;
}

.gnb_series_card_img {
	width: 250px;
	height: 334px;
	overflow: hidden;
}

.gnb_series_card_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gnb_series_card_info {
	padding: 8px 0;
}

.gnb_series_name {
	color: #fff;
	font-size: 14px;
	font-family: Pretendard;
	font-weight: 600;
	margin: 0;
}

.gnb_series_point {
	color: #00B8FC;
	font-weight: 600;
}

.gnb_series_desc {
	color: #EAEBED;
	font-size: 14px;
	font-family: Pretendard;
	font-weight: 300;
	margin: 0;
}

.h_menu_box {
	display: flex;
	align-items: center;
	gap: 36px;
}

.h_menu ul {
	display: flex;
	align-items: center;
	gap: 36px;
}

.h_search_box {
	position: relative;
}

.h_search_box input {
	border-radius: 9px;
	background: #303133;
	height: 40px;
	width: 319px;
	padding: 0 17px 0 10px;
	outline: 0;
	border: 0;
}

.h_search_box img {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 20px;
	height: 50%;
}

@media all and (max-width:1840px) {
	#header .inner {
		width: 96%;
	}
}


@media all and (max-width: 1600px) {
	/* .gnb {
		gap: 60px;
	} */

	.gnb>li>a {
		width: 100px;
	}

	.gnb_mega_series_bg {
		padding: 0 80px;
	}

	.gnb_series_card {
		flex: 1 1 0%;
		min-width: 0;
		width: fit-content;
	}

	.gnb_series_card_img {
		width: 100%;
		height: auto;
		aspect-ratio: 250 / 334;
	}
}

@media all and (max-width: 1400px) {
	.h_search_box input {
		width: 220px;
	}

	.h_menu ul,
	.h_menu_box {
		gap: 18px;
	}

	.h_logo_box {
		height: 28px;
	}

	#header .inner {
		gap: 30px;
	}

	.gnb_mega,
	.gnb_mega_series_bg {
		height: 550px;
	}

	.gnb_mega_inner {
		padding: 30px 60px;
		gap: 80px;
	}

	.gnb_mega_series_bg {
		padding: 0 40px;
	}

	.gnb_mega_series_inner {
		gap: 12px;
	}

	.gnb_series_name,
	.gnb_series_desc {
		font-size: 13px;
	}
}

@media all and (max-width: 1200px) {
	/* .gnb {
		gap: 30px;
	} */

	.gnb_mega_series_bg {
		padding: 0 20px;
	}

	.gnb_mega_series_inner {
		gap: 8px;
	}

	.gnb_series_name,
	.gnb_series_desc {
		font-size: 12px;
	}
}

@media all and (max-width: 1080px) {

	.h_slide_menu {
		height: 20px;
	}

	#header .inner {
		padding: 10px 0;
	}

	.h_menu_box {
		display: flex;
		align-items: center;
		margin-left: auto;
		gap: 0;
	}

	.h_search_box {
		display: none;
	}

	.h_menu ul {
		gap: 20px;
	}

	.h_menu ul li a img {
		width: 20px;
		height: 20px;
		filter: brightness(0) invert(1);
	}

	/* #header .m_btn {
		margin-left: 20px;
	} */

	#header .inner {
		gap: 0;
	}

	.h_logo_box {
		/* aspect-ratio: 1 / 0.29629; */
		max-height: 20px
	}
}


/* footer */
footer {
	background: #000;
	color: #EAEBED;
	font-family: 'Pretendard', sans-serif;
}

footer .inner {
	max-width: 1840px;
}

@media all and (max-width: 1840px) {
	footer .inner {
		width: 96%;
	}
}

/* Legal */
.f_legal {
	padding: 30px 0 0;
	border-bottom: 1px solid #303133;
}

.f_legal .inner {
	padding-bottom: 30px;
}

.f_legal_title {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 14px;
}

.f_legal_content {
	display: flex;
	align-items: flex-start;
	gap: 24px;
}

.f_legal_content p {
	font-size: 12px;
	font-weight: 400;
	line-height: 1.4;
	flex: 1;
	min-width: 0;
}

.f_legal_link {
	font-size: 12px;
	font-weight: 700;
	text-decoration: underline;
	white-space: nowrap;
	flex-shrink: 0;
}

/* Footer Body */
.f_body {
	padding: 72px 0 144px 0;
}

.f_body .inner {
	display: flex;
	flex-direction: column;
	gap: 32px;
	min-width: 0;
}

.f_top {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 32px;
	min-width: 0;
}

.f_brand {
	display: flex;
	align-items: flex-end;
	gap: 16px;
	min-width: 0;
}

.f_logo {
	width: 64px;
	flex-shrink: 0;
}

.f_logo img {
	width: 100%;
	display: block;
}

.f_lang {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 18px;
}

.f_lang svg {
	flex-shrink: 0;
}

.f_sns {
	display: flex;
	align-items: center;
	gap: 8px;
}

.f_sns a {
	display: flex;
	width: 20px;
	aspect-ratio: 1 / 1;
	align-items: center;
	justify-content: center;
}

.f_sns a img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.f_divider {
	height: 1px;
	background: #303133;
}

.f_info {
	display: flex;
	flex-wrap: wrap;
	gap: 24px 100px;
	min-width: 0;
}

.f_info_col {
	display: flex;
	flex-direction: column;
	gap: 14px;
	min-width: 0;
}

.f_info_col p {
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.4;
	margin: 0;
	word-break: keep-all;
}

.footer-escrow {
	margin-left: auto;
	margin-right: 80px;
	display: flex;
	align-items: center;
}

.footer-escrow img {
	display: block;
}

@media all and (max-width: 1080px) {
	.f_info {
		gap: 14px 60px;
	}

	.f_info_col p {
		font-size: 14px;
	}
}

@media all and (max-width: 768px) {
	footer .inner {
		width: 90%;
	}

	.f_legal {
		padding-top: 20px;
	}

	.f_legal .inner {
		padding-bottom: 20px;
	}

	.f_legal_content {
		flex-direction: column;
		gap: 12px;
	}

	.f_body {
		padding: 36px 0;
	}

	.f_body .inner {
		gap: 24px;
	}

	.f_top {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}

	.f_info {
		flex-direction: column;
		gap: 24px;
	}

	.f_info_col p {
		font-size: 12px;
	}
}


@media all and (max-width:1690px) {
	#header .inner {
		gap: 20px;
	}
}


@media all and (max-width:1500px) {
	.h_search_box input {
		width: 250px;
	}

	#header .inner {
		gap: 10px;
	}
}

@media all and (max-width:1300px) {
	.h_search_box input {
		width: 200px;
	}

	.h_menu ul,
	.h_menu_box {
		gap: 9px;
	}

	.gnb>li>a {
		width: 90px;
	}

}

.m_cate_scrollbar {
	position: relative !important;
}


/* Header Drop Panel */
.h_drop_dim {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.35s ease, visibility 0.35s ease;
	z-index: 1000;
}

.h_drop_dim.on {
	opacity: 1;
	visibility: visible;
}

.h_drop_panel {
	position: relative;
	width: 100%;
	background: #fff;
	padding: 20px 0;
	box-sizing: border-box;
	transform: translateY(-100%);
	transition: transform 0.4s ease;
}

.h_drop_dim.on .h_drop_panel {
	transform: translateY(0);
}

.h_drop_panel_inner {
	width: 100%;
	max-width: 1600px;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
	min-width: 0;
}

.h_drop_grid {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 200px;
	flex-wrap: wrap;
	min-width: 0;
}

.h_drop_card {
	flex: 0 0 200px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	text-decoration: none;
	color: #000;
	min-width: 0;
}

.h_drop_card_info:empty,
.h_drop_card_info p:empty {
	display: none;
}

.h_drop_card_img {
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: #f3f3f3;
}

.h_drop_card_img .bg {
	width: 100%;
	height: 100%;
	transition: transform 0.4s ease;
}

.h_drop_card:hover .h_drop_card_img .bg {
	transform: scale(1.05);
}

.h_drop_card_info {
	display: flex;
	flex-direction: column;
	gap: 12px;
	min-width: 0;
}

.h_drop_card_info .name {
	font-size: 14px;
	font-weight: 600;
	color: #000;
	line-height: 1.2;
}

.h_drop_card_info .name .point {
	color: #00B8FC;
}

.h_drop_card_info .desc {
	font-size: 14px;
	font-weight: 300;
	color: #000;
	line-height: 1.4;
}

.h_drop_card_info .more {
	font-size: 14px;
	font-weight: 500;
	color: #000;
	line-height: 1.2;
}

.h_drop_close {
	position: absolute;
	top: 12px;
	right: 20px;
	width: 36px;
	height: 36px;
	padding: 8px;
	border-radius: 50%;
	border: 1px solid #00B8FC;
	background: #fff;
	cursor: pointer;
	box-sizing: border-box;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
	transition: background-color 0.2s ease;
}

.h_drop_close:hover {
	background-color: #f0fbff;
}

.h_drop_close svg {
	display: block;
	width: 24px;
	height: 24px;
}

@media (max-width: 1280px) {
	.h_drop_panel {
		padding: 16px 0;
	}

	.h_drop_grid {
		gap: 40px;
	}
}

@media (max-width: 1080px) {
	.h_drop_grid {
		gap: 30px;
	}

	.h_drop_card {
		flex: 0 0 calc((100% - 60px) / 3);
	}
}

@media (max-width: 768px) {
	.h_drop_panel {
		max-height: 100vh;
		overflow-y: auto;
		padding: 20px 0 16px 0;
	}

	.h_drop_panel_inner {
		padding: 0 20px;
	}

	.h_drop_grid {
		flex-direction: column;
		flex-wrap: nowrap;
		gap: 30px;
	}

	.h_drop_card {
		flex: 0 0 auto;
		width: 100%;
		flex-direction: row;
		gap: 16px;
		align-items: center;
	}

	.h_drop_card_img {
		flex: 0 0 120px;
		width: 120px;
	}

	.h_drop_card_info {
		flex: 1;
	}

	.h_drop_close {
		top: 16px;
		right: 16px;
	}
}

