@charset "utf-8";

html, body { margin: 0; background: var(--hr-bg); }

.hr-layout { display: flex; flex-direction: column; min-height: 100vh; background: var(--hr-bg); }

.hr-utilrow-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 22px; padding-bottom: 18px; }

.hr-logo { font-size: 30px; font-weight: 900; letter-spacing: -.035em; color: var(--hr-ink); }
.hr-logo img { display: block; height: 40px; width: auto; }
.hr-logo .hr-logo-dark { display: none; }
[data-theme="dark"] .hr-logo .hr-logo-dark { display: block; }
[data-theme="dark"] .hr-logo .hr-logo-light:not(:only-child) { display: none; }

.hr-utils { display: flex; align-items: center; gap: 6px; }
.hr-utils a.hr-util-link {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	height: 32px;
	padding: 0 10px;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 600;
	color: var(--hr-ink-sub);
	white-space: nowrap;
	transition: color .14s, background-color .14s;
}
.hr-utils a.hr-util-link:hover,
.hr-utils a.hr-util-link:focus-visible { color: var(--hr-brand); background: var(--hr-brand-soft); }
.hr-utils a.hr-util-admin { color: var(--hr-brand); }
.hr-util-admin svg { width: 14px; height: 14px; fill: currentColor; }

.hr-search { position: relative; }
.hr-search input[type="search"] {
	width: 168px;
	padding: 8px 34px 8px 13px;
	border-radius: var(--hr-radius-sm);
	background: var(--hr-surface);
	font-size: 13px;
}
.hr-search input[type="search"]:focus { background: var(--hr-bg); }
.hr-search button {
	position: absolute;
	right: 3px;
	top: 50%;
	transform: translateY(-50%);
	width: 28px;
	height: 28px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 7px;
	background: none;
	color: var(--hr-muted);
	cursor: pointer;
}
.hr-search button svg { width: 17px; height: 17px; fill: currentColor; }
.hr-search button:hover { color: var(--hr-brand); }

/* 언어 전환 */
.hr-lang { position: relative; }
.hr-lang-btn {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	height: 32px;
	padding: 0 10px;
	border: 0;
	border-radius: 8px;
	background: transparent;
	color: var(--hr-ink-sub);
	font-family: inherit;
	font-size: 12.5px;
	font-weight: 600;
	cursor: pointer;
	transition: color .14s, background-color .14s;
}
.hr-lang-btn svg { width: 15px; height: 15px; fill: currentColor; }
.hr-lang-btn:hover, .hr-lang-btn:focus-visible { color: var(--hr-brand); background: var(--hr-brand-soft); }
.hr-lang-list {
	position: absolute;
	top: calc(100% + 6px);
	right: 0;
	z-index: 60;
	min-width: 132px;
	margin: 0;
	padding: 5px;
	list-style: none;
	border: 1px solid var(--hr-line);
	border-radius: 10px;
	background: var(--hr-bg);
	box-shadow: 0 14px 32px -16px rgba(16, 24, 40, .4);
}
.hr-lang-list a {
	display: block;
	padding: 7px 10px;
	border-radius: 7px;
	font-size: 13px;
	color: var(--hr-ink-sub);
	white-space: nowrap;
}
.hr-lang-list a:hover { background: var(--hr-bg-soft); color: var(--hr-ink); }
.hr-lang-list a.is-on { color: var(--hr-brand); font-weight: 700; }

.hr-theme {
	width: 32px;
	height: 32px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 8px;
	background: transparent;
	color: var(--hr-ink-sub);
	cursor: pointer;
	transition: color .14s, background-color .14s;
}
.hr-theme svg { width: 16px; height: 16px; fill: currentColor; }
.hr-theme:hover, .hr-theme:focus-visible { color: var(--hr-brand); background: var(--hr-brand-soft); }
.hr-ico-moon { display: none; }
[data-theme="dark"] .hr-ico-sun { display: none; }
[data-theme="dark"] .hr-ico-moon { display: inline; }


.hr-layout { --hr-nav-bg: #17191f; --hr-nav-fg-on: #fff; }
.hr-layout { --hr-brand-light: color-mix(in srgb, var(--hr-brand) 70%, #fff); }
[data-theme="dark"] .hr-layout { --hr-nav-bg: #0f1116; }
.hr-layout.n-point { --hr-nav-bg: var(--hr-brand); }
.hr-layout.n-light { --hr-nav-bg: var(--hr-surface); --hr-nav-fg-on: var(--hr-ink); }

.hr-navbar { --hr-nav-bg: #17191f; --hr-nav-fg: rgba(255, 255, 255, .82); --hr-nav-fg-on: #fff; --hr-nav-line: rgba(255, 255, 255, .1); --hr-nav-hover: rgba(255, 255, 255, .07); --hr-nav-deep: #1e222b; }
[data-theme="dark"] .hr-navbar { --hr-nav-bg: #1e2432; --hr-nav-deep: #262d3e; --hr-nav-hover: rgba(255, 255, 255, .06); }
[data-theme="dark"] .hr-navbar.is-boxed .hr-gnb { box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .06); }
[data-theme="dark"] .hr-layout { --hr-nav-bg: #1e2432; }

.hr-navbar.c-point { --hr-nav-bg: var(--hr-brand); --hr-nav-fg: rgba(255, 255, 255, .88); --hr-nav-line: rgba(255, 255, 255, .22); --hr-nav-hover: rgba(0, 0, 0, .12); --hr-nav-deep: rgba(0, 0, 0, .16); }
.hr-navbar.c-light {
	--hr-nav-bg: var(--hr-surface);
	--hr-nav-fg: var(--hr-ink-sub);
	--hr-nav-fg-on: var(--hr-ink);
	--hr-nav-line: var(--hr-line);
	--hr-nav-hover: rgba(0, 0, 0, .04);
	--hr-nav-deep: var(--hr-bg);
}

.hr-gnb { position: relative; }
.hr-navbar.is-full { background: var(--hr-nav-bg); }
.hr-navbar.is-boxed { background: transparent; }

.hr-navbar.is-boxed .hr-gnb { background: var(--hr-nav-bg); padding-left: 0; padding-right: 0; border-radius: 8px; }
.hr-navbar.is-boxed .hr-gnb-list > li:first-child .hr-gnb-top { border-radius: 8px 0 0 8px; }
.hr-navbar.is-open.is-boxed .hr-gnb { border-bottom-left-radius: 0; border-bottom-right-radius: 0; }
.hr-navbar.is-open.is-boxed .hr-gnb-list > li:first-child .hr-gnb-top { border-bottom-left-radius: 0; }
.hr-navbar.is-boxed .hr-gnb::after { border-radius: 0 0 8px 8px; }
.hr-navbar.is-full::after { border-radius: 0; }

.hr-gnb-list { display: flex; }
.hr-gnb-list > li { position: relative; }
.hr-gnb-list > li + li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 14px;
	bottom: 14px;
	width: 1px;
	background: var(--hr-nav-line);
}
.hr-gnb a.hr-gnb-top {
	display: block;
	padding: 0 26px;
	line-height: 50px;
	font-size: 15px;
	font-weight: 700;
	color: var(--hr-nav-fg);
	white-space: nowrap;
	transition: background .14s, color .14s;
}
.hr-gnb-top:hover { background: var(--hr-nav-hover); color: var(--hr-nav-fg-on); }
.hr-gnb-list > li.is-on .hr-gnb-top { background: var(--hr-nav-hover); color: var(--hr-nav-fg-on); box-shadow: inset 0 3px 0 var(--hr-brand); }
.hr-navbar.c-point .hr-gnb-list > li.is-on .hr-gnb-top { box-shadow: inset 0 3px 0 #fff; }

.hr-navbar { position: relative; z-index: 40; }
.hr-gnb-list > li { position: relative; }
.hr-gnb-sub {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 2;
	overflow: hidden;
	max-height: 0;
	padding: 0 26px;
	opacity: 0;
	transition: max-height .2s ease, padding .2s ease, opacity .16s ease;
}
.hr-gnb-list > li + li .hr-gnb-sub { border-left: 1px solid var(--hr-nav-line); }
.hr-navbar.is-open .hr-gnb-sub { max-height: 420px; padding: 16px 26px 20px; opacity: 1; }

.hr-navbar.is-full::after,
.hr-navbar.is-boxed .hr-gnb::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	z-index: 1;
	height: 0;
	background: var(--hr-nav-deep);
	transition: height .2s ease;
}
.hr-navbar.is-open.is-full::after,
.hr-navbar.is-open.is-boxed .hr-gnb::after { height: var(--hr-panel-h, 0px); }
.hr-gnb-sub a {
	display: block;
	padding: 6px 0;
	font-size: 13.5px;
	color: var(--hr-nav-fg);
	opacity: .85;
	white-space: nowrap;
}
.hr-gnb-sub a:hover { color: var(--hr-nav-fg-on); opacity: 1; }

.hr-gnb .hr-gnb-sub2,
.hr ul.hr-gnb-sub2 {
	margin: 1px 0 5px;
	padding: 0 0 0 10px;
}
.hr-gnb .hr-gnb-sub2 a { padding: 3px 0; font-size: 12px; opacity: .6; }
.hr-gnb .hr-gnb-sub2 a::before { content: "- "; }
.hr-gnb .hr-gnb-sub2 a:hover { opacity: 1; }

.hr-burger { display: none; width: 38px; height: 38px; padding: 0; border: 0; background: none; cursor: pointer; }
.hr-burger span { display: block; width: 20px; height: 2px; margin: 4px auto; border-radius: 2px; background: var(--hr-ink); transition: transform .18s, opacity .18s; }
.hr-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hr-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hr-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.hr-mobile-dim { position: fixed; inset: 0; z-index: 190; background: rgba(0, 0, 0, .45); opacity: 0; transition: opacity .22s ease; }
.hr-mobile-dim.is-open { opacity: 1; }
/* 서랍은 내비 색상 옵션(n-light 등)과 무관하게 항상 다크 톤으로 고정한다.
 * 옵션 조합에 따라 배경과 글자색 변수가 어긋나 문구가 안 보이는 조합이 생기기 때문이다 */
/* 메뉴가 늘어나도 아래 도구 줄은 자리를 지킨다. 가운데 목록만 굴린다 */
/* 서랍 — 밝은 톤 (테마 토큰을 그대로 물려받는다) */
.hr-mobile { position: fixed; top: 0; right: 0; bottom: 0; z-index: 200; width: min(320px, 85vw); --hr-nav-bg: var(--hr-bg); --hr-nav-fg-on: var(--hr-ink); background: var(--hr-nav-bg); color: var(--hr-nav-fg-on); display: flex; flex-direction: column; overscroll-behavior: contain; transform: translateX(100%); transition: transform .24s ease; box-shadow: -8px 0 32px rgba(0, 0, 0, .18); }
.hr-mobile[hidden] { display: none; }
.hr-mobile .hr-mobile-head, .hr-mobile .hr-mobile-account, .hr-mobile .hr-mobile-tools { flex: none; }
.hr-mobile .hr-mobile-list { flex: 1; min-height: 0; overflow-y: auto; overscroll-behavior: contain; }
.hr-mobile.is-open { transform: translateX(0); }
.hr-mobile-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 14px 16px; border-bottom: 1px solid var(--hr-line-soft); }
.hr-mobile-title { font-size: 15px; font-weight: 800; color: var(--hr-nav-fg-on); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.hr-mobile-close { flex: none; width: 34px; height: 34px; border: 0; background: none; color: var(--hr-muted); cursor: pointer; }
.hr-mobile-close svg { width: 18px; height: 18px; fill: currentColor; }
.hr-mobile-close:hover { color: var(--hr-ink); }
body.hr-mobile-on { overflow: hidden; }
.hr-mobile-account { display: flex; gap: 8px; padding: 12px 16px; }
.hr-mobile-account-btn { flex: 1; padding: 10px 8px; border: 1px solid var(--hr-line); border-radius: var(--hr-radius-btn); text-align: center; font-size: 13.5px; font-weight: 700; color: var(--hr-nav-fg-on); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.hr-mobile-account-btn.is-primary { background: var(--hr-brand); border-color: var(--hr-brand); color: #fff; }
.hr-mobile-list > li { position: relative; border-top: 1px solid var(--hr-line-soft); }
.hr-mobile-list > li > a { display: block; padding: 15px clamp(16px, 4vw, 32px); font-size: 15.5px; font-weight: 700; color: var(--hr-nav-fg-on); }
.hr-mobile-list > li.is-on > a { color: var(--hr-brand); }
.hr-mobile-toggle { position: absolute; top: 5px; right: 8px; width: 42px; height: 42px; border: 0; background: none; color: var(--hr-muted); cursor: pointer; }
.hr-mobile-toggle svg { width: 22px; height: 22px; fill: currentColor; transition: transform .16s; }
.hr-mobile-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.hr-mobile-sub { padding: 4px 0 12px; background: var(--hr-surface); }
.hr-mobile-sub a { display: block; padding: 10px clamp(28px, 6vw, 46px); font-size: 14px; color: var(--hr-ink-sub); }
.hr-mobile-sub a.is-on { color: var(--hr-brand); font-weight: 700; }

.hr-mobile-tools { padding: 14px clamp(16px, 4vw, 32px) 24px; border-top: 1px solid var(--hr-line-soft); }
.hr-mobile-tool {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
	padding: 11px 0;
	border: 0;
	background: none;
	color: var(--hr-ink-sub);
	font-family: inherit;
	font-size: 14.5px;
	font-weight: 600;
	text-align: left;
	cursor: pointer;
}
.hr-mobile-tool:hover { color: var(--hr-ink); }
.hr-mobile-tool svg { flex: none; width: 18px; height: 18px; fill: currentColor; }
.hr-mobile-lang select {
	flex: 1;
	min-width: 0;
	padding: 7px 10px;
	border: 1px solid var(--hr-line);
	border-radius: var(--hr-radius-sm);
	background: var(--hr-surface);
	color: var(--hr-nav-fg-on);
	font-family: inherit;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
}
.hr-mobile-lang select option { background: var(--hr-nav-bg); color: var(--hr-nav-fg-on); }
.hr-mobile-sub2 { margin: 0; padding: 0 0 6px; list-style: none; }
.hr-mobile-sub2 a { padding: 7px clamp(38px, 8vw, 60px); font-size: 13px; color: var(--hr-muted); }

/* 모바일 하단 탭바 — 네이버쇼핑식 5탭 */
.ss-tabbar { display: none; }
@media (max-width: 860px) {
	.hr-layout { padding-bottom: calc(58px + env(safe-area-inset-bottom, 0px)); }
	.ss-tabbar {
		position: fixed;
		left: 0; right: 0; bottom: 0;
		z-index: 180;
		display: flex;
		align-items: stretch;
		height: calc(58px + env(safe-area-inset-bottom, 0px));
		padding-bottom: env(safe-area-inset-bottom, 0px);
		background: var(--hr-bg);
		border-top: 1px solid var(--hr-line);
		box-shadow: 0 -6px 20px rgba(20, 28, 23, .06);
	}
	.ss-tabbar > a,
	.ss-tabbar > button {
		flex: 1;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 3px;
		border: 0;
		background: none;
		color: var(--hr-ink-sub);
		font-family: inherit;
		font-size: 10.5px;
		font-weight: 600;
		cursor: pointer;
		text-decoration: none;
	}
	.ss-tabbar svg { width: 22px; height: 22px; fill: currentColor; }
	.ss-tabbar > a:active, .ss-tabbar > button:active,
	.ss-tabbar > a:hover, .ss-tabbar > button:hover { color: var(--hr-brand); }
}
.hr-mobile-sub2 a::before { content: "- "; }

/* 비주얼 슬라이더 — 문구는 좌하단, 컨트롤(화살표+점)은 우하단 한 덩어리.
   화살표를 양옆 세로 중앙에 두지 않아 모바일에서 문구와 겹치지 않는다 */
.hr-visual { position: relative; overflow: hidden; background: #11141a; }
.hr-visual-track { position: relative; height: clamp(240px, 32vw, 400px); }
.hr-visual-item {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: flex-end;
	background-size: cover;
	background-position: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity .5s ease;
}
.hr-visual-item.is-on { opacity: 1; visibility: visible; }
.hr-visual-item::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(9, 12, 15, 0) 30%, rgba(9, 12, 15, .28) 62%, rgba(9, 12, 15, .68) 100%);
}
.hr-visual-copy {
	position: relative;
	width: 100%;
	color: #fff;
	text-align: left;
	padding-bottom: clamp(24px, 4vw, 44px);
	padding-right: 170px;
}
.hr-visual-item.align-center .hr-visual-copy { text-align: center; padding-left: 170px; }
.hr-visual-item.align-center .hr-visual-copy p { margin-left: auto; margin-right: auto; }
.hr-visual-item.align-right .hr-visual-copy { text-align: right; }
.hr-visual-item.align-right .hr-visual-copy p { margin-left: auto; }
.hr-visual-copy h2 { font-size: clamp(22px, 3.2vw, 38px); font-weight: 800; letter-spacing: -.03em; line-height: 1.25; text-shadow: 0 2px 18px rgba(0, 0, 0, .4); }
.hr-visual-copy p { margin: 10px 0 0; max-width: 560px; font-size: clamp(13px, 1.4vw, 16px); color: rgba(255, 255, 255, .88); }
.hr-visual-copy .hr-btn { margin-top: 18px; }

/* 컨트롤 클러스터: [◀][점들][▶] 한 덩어리 — 우하단 */
.hr-visual-ctrl {
	position: absolute;
	right: clamp(16px, 3vw, 34px);
	bottom: clamp(16px, 3.2vw, 34px);
	display: flex;
	align-items: center;
	gap: 6px;
	z-index: 2;
}
.hr-visual:not(.is-boxed) .hr-visual-ctrl { right: max(20px, calc((100% - var(--hr-w)) / 2)); }
.hr-visual-nav {
	position: static;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 50%;
	background: rgba(12, 16, 14, .45);
	backdrop-filter: blur(6px);
	color: #fff;
	cursor: pointer;
	transition: background .16s, transform .16s;
}
.hr-visual-nav:hover { background: var(--hr-brand); transform: scale(1.08); }
.hr-visual-nav svg { width: 19px; height: 19px; fill: currentColor; opacity: .95; }

.hr-visual-dots {
	position: static;
	height: 36px;
	padding: 0 13px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	border-radius: var(--hr-radius-pill);
	background: rgba(12, 16, 14, .45);
	backdrop-filter: blur(6px);
}
.hr-visual-dots button { width: 6px; height: 6px; padding: 0; border: 0; border-radius: var(--hr-radius-pill); background: rgba(255, 255, 255, .45); cursor: pointer; transition: width .18s, background .18s; }
.hr-visual-dots button.is-on { width: 20px; background: #fff; }

.hr-body { flex: 1 0 auto; padding: clamp(28px, 4vw, 44px) 0 clamp(48px, 6vw, 72px); }
.hr-body.has-lnb .hr-body-inner { display: grid; grid-template-columns: 210px minmax(0, 1fr); gap: 30px; }

.hr-lnb-title { margin: 0; }
.hr-lnb-title, .hr-lnb > .hr-lnb-title {
	line-height: 44px;
	padding: 0 16px;
	background: var(--hr-nav-bg);
	color: var(--hr-nav-fg-on);
	font-size: 15px;
	font-weight: 700;
}
.hr-lnb-title { border-radius: 8px 8px 0 0; }
.hr-lnb-list { border: 1px solid var(--hr-line); border-top: 0; border-radius: 0 0 8px 8px; overflow: hidden; }
.hr-lnb-list > li + li { border-top: 1px solid var(--hr-line-soft); }
.hr-lnb-list > li > a { display: block; line-height: 42px; padding: 0 16px; font-size: 14.5px; font-weight: 600; color: var(--hr-ink-sub); }
.hr-lnb-list > li > a:hover { background: var(--hr-surface); color: var(--hr-brand); }
.hr-lnb-list > li.is-on > a { background: var(--hr-surface); color: var(--hr-brand); }
.hr-lnb-sub { padding: 8px 0; border-top: 1px solid var(--hr-line-soft); background: var(--hr-surface); }
.hr-lnb-sub a { display: block; padding: 5px 16px 5px 26px; font-size: 13.5px; color: var(--hr-muted); }
.hr-lnb-sub li.is-on a, .hr-lnb-sub a:hover { color: var(--hr-brand); }

.hr-side-login { margin-top: 20px; padding: 16px; border: 1px solid var(--hr-line); border-radius: var(--hr-radius-sm); background: var(--hr-surface); }
.hr-side-me { margin: 0 0 10px; font-size: 13.5px; color: var(--hr-ink-sub); line-height: 1.55; }
.hr-side-links { display: flex; gap: 12px; margin-top: 10px; font-size: 12.5px; color: var(--hr-muted); }
.hr-side-links a:hover { color: var(--hr-brand); }

.hr-content { min-width: 0; padding-bottom: 10px; }

.hr-footer { flex: none; padding: 26px 0 60px; border-top: 1px solid var(--hr-line-soft); background: var(--hr-surface); color: var(--hr-muted); font-size: 13px; }
.hr-footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; flex-wrap: wrap; }
.hr-footer-brand { font-size: 15px; font-weight: 800; color: var(--hr-ink-sub); letter-spacing: -.02em; }
.hr-footer-about { margin: 8px 0 0; max-width: 460px; line-height: 1.6; }
.hr-footer-menu { display: flex; flex-wrap: wrap; gap: 6px 18px; }
.hr-footer-menu a { font-weight: 600; color: var(--hr-ink-sub); }
.hr-footer-menu a:hover { color: var(--hr-brand); text-decoration: underline; }
.hr-footer-info { display: flex; flex-wrap: wrap; gap: 3px 14px; margin: 18px 0 0; font-size: 12.5px; }
.hr-footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--hr-line); font-size: 12px; }
.hr-footer-bottom a:hover { color: var(--hr-brand); text-decoration: underline; }
.hr-top-btn { display: inline-flex; align-items: center; gap: 5px; font-weight: 600; }
.hr-top-btn svg { width: 14px; height: 14px; fill: currentColor; }

@media (max-width: 1024px) {
	.hr-gnb-top { padding: 0 18px; }
	.hr-body.has-lnb .hr-body-inner { grid-template-columns: 180px minmax(0, 1fr); gap: 24px; }
}
@media (max-width: 860px) {
	.hr-utilrow-inner { padding-top: 14px; padding-bottom: 14px; }
	.hr-logo { font-size: 22px; }
	.hr-logo img { height: 32px; }
	.hr-navbar, .hr-search, .hr-util-link { display: none; }
	.hr-burger { display: block; }

	/* 좁은 화면에서는 알림과 햄버거만 남긴다. 나머지는 서랍 아래 도구 줄에 있다 */
	.hr-utilrow-inner { gap: 12px; }
	.hr-logo { min-width: 0; }
	.hr-utils { gap: 8px; }
	.hr-utils a.hr-util-admin, .hr-lang, .hr-theme { display: none; }

	.hr-body.has-lnb .hr-body-inner { display: block; }
	.hr-lnb { margin-bottom: 22px; }
	.hr-lnb-title { display: none; }
	.hr-lnb-list { display: flex; gap: 6px; margin-top: 8px; padding-bottom: 4px; border: 0; overflow-x: auto; scrollbar-width: none; }
	.hr-lnb-list::-webkit-scrollbar { display: none; }
	.hr-lnb-list > li + li { border-top: 0; }
	.hr-lnb-list > li > a { line-height: 34px; padding: 0 14px; white-space: nowrap; border: 1px solid var(--hr-line); border-radius: var(--hr-radius-pill); }
	.hr-lnb-sub { display: none; }
	.hr-visual-copy { padding-right: 16px; padding-bottom: 66px; }
	.hr-visual-item.align-center .hr-visual-copy { padding-left: 16px; }
	.hr-visual-nav { width: 32px; height: 32px; }
	.hr-visual-dots { height: 32px; padding: 0 11px; }
}
@media (prefers-reduced-motion: reduce) {
	.hr-visual-item, .hr-gnb-sub { transition: none; }
}

.hr-visual.is-boxed { border-radius: 8px; margin-top: 14px; }

.hr-visual-item {
	background:
		radial-gradient(120% 160% at 85% 8%, rgba(88, 120, 255, .5), transparent 55%),
		radial-gradient(140% 140% at 8% 95%, rgba(31, 107, 74, .45), transparent 58%),
		radial-gradient(80% 100% at 55% 55%, rgba(126, 87, 255, .18), transparent 60%),
		linear-gradient(135deg, #1a1f2e 0%, #121622 55%, #0d1019 100%);
	background-size: cover;
	background-position: center;
}

.hr-visual.is-boxed .hr-visual-copy { padding-left: clamp(28px, 5vw, 72px); padding-right: clamp(28px, 5vw, 72px); }

.hr .hr-visual-copy a.hr-btn,
.hr-visual-copy .hr-btn {
	padding: 14px 30px;
	border-radius: var(--hr-radius-pill, 999px);
	font-size: 15px;
	font-weight: 700;
	letter-spacing: -.01em;
	background: linear-gradient(180deg, var(--hr-brand-light), var(--hr-brand));
	color: #fff;
	border: 0;
	box-shadow: 0 8px 24px color-mix(in srgb, var(--hr-brand) 38%, transparent), inset 0 1px 0 rgba(255, 255, 255, .25);
	transition: transform .16s ease, box-shadow .16s ease;
}
.hr .hr-visual-copy a.hr-btn:hover,
.hr-visual-copy .hr-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 30px color-mix(in srgb, var(--hr-brand) 48%, transparent), inset 0 1px 0 rgba(255, 255, 255, .25);
}
.hr .hr-visual-copy a.hr-btn:active,
.hr-visual-copy .hr-btn:active { transform: translateY(0); }

/* ── 알림센터 헤더 벨 ── */
.hr-nc { position: relative; display: flex; align-items: center; }
.hr-nc-btn { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border: 0; border-radius: 8px; background: transparent; color: var(--hr-ink-sub); cursor: pointer; transition: background .13s, color .13s; }
.hr-nc-btn svg { width: 19px; height: 19px; fill: currentColor; }
.hr-nc-btn:hover { background: var(--hr-brand-soft); color: var(--hr-brand); }
.hr-nc-badge { position: absolute; top: 0; right: -1px; min-width: 16px; height: 16px; padding: 0 4px; border-radius: 999px; background: #e5484d; color: #fff; font-size: 10px; font-weight: 800; font-style: normal; line-height: 16px; text-align: center; box-shadow: 0 0 0 2px var(--hr-bg, #fff); }
.hr-nc-panel { position: absolute; top: calc(100% + 10px); right: -6px; width: 330px; border-radius: 14px; background: var(--hr-surface, #fff); border: 1px solid var(--hr-line); box-shadow: 0 24px 60px -18px rgba(17, 22, 30, .25); overflow: hidden; z-index: 1200; }
.hr-nc-head { display: flex; align-items: center; justify-content: space-between; padding: 13px 16px 9px; }
.hr-nc-head strong { font-size: 14.5px; font-weight: 800; }
.hr-nc-readall { border: 0; background: transparent; color: var(--hr-brand); font-size: 12.5px; font-weight: 700; cursor: pointer; padding: 4px 6px; border-radius: 7px; }
.hr-nc-readall:hover { background: var(--hr-brand-soft); }
.hr-nc-list { list-style: none; margin: 0; padding: 0 8px; max-height: 340px; overflow-y: auto; }
.hr-nc-list li { margin: 2px 0; }
.hr-nc-list a { display: block; padding: 10px 12px; border-radius: 10px; text-decoration: none; }
.hr-nc-list a:hover { background: var(--hr-brand-soft); }
.hr-nc-text { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; font-size: 13.5px; line-height: 1.5; color: var(--hr-ink); }
.hr-nc-ago { display: block; margin-top: 3px; font-size: 11.5px; color: var(--hr-muted); }
.hr-nc-empty { padding: 26px 0 30px; text-align: center; color: var(--hr-muted); font-size: 13.5px; }
.hr-nc-all { display: block; padding: 12px; text-align: center; font-size: 13px; font-weight: 700; color: var(--hr-brand); text-decoration: none; border-top: 1px solid var(--hr-line); }
.hr-nc-all:hover { background: var(--hr-brand-soft); }

@media (max-width: 900px) {
	.hr-nc-panel { position: fixed; top: 60px; left: 12px; right: 12px; width: auto; }
}

/* 모바일 다크모드·언어 위치 옵션 (mtp-/mlp- 클래스) */
@media (max-width: 860px) {
	.mtp-header .hr-theme { display: inline-flex; }
	.mlp-header .hr-lang { display: block; }
	/* 빵메뉴는 우측 끝에 선다 */
	.hr-burger { order: 99; margin-left: auto; }
	.mtp-footer .hr-foot-tools, .mlp-footer .hr-foot-tools { display: flex; }
}
/* 푸터 다크모드·언어 컨트롤: 모바일 + '푸터' 옵션에서만 보인다 */
.hr-foot-tools { display: none; align-items: center; gap: 10px; }
.hr-foot-theme {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	padding: 0;
	border: 1px solid var(--hr-line);
	background: none;
	color: var(--hr-muted);
	cursor: pointer;
	border-radius: 8px;
}
.hr-foot-theme svg { width: 16px; height: 16px; fill: currentColor; }
.hr-foot-theme:hover { color: var(--hr-brand); border-color: var(--hr-brand); }
.hr-foot-lang {
	height: 34px;
	padding: 0 8px;
	border: 1px solid var(--hr-line);
	background: transparent;
	color: var(--hr-muted);
	font-family: inherit;
	font-size: 12.5px;
	cursor: pointer;
	border-radius: 8px;
}

.hr-logo { flex: none; }
.hr-utils { min-width: 0; }
.hr-util-link { max-width: 14em; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

@media (max-width: 1400px) {
	.hr-visual-copy { padding-left: clamp(96px, 8vw, 140px); padding-right: clamp(96px, 8vw, 140px); }
}
@media (max-width: 860px) {
	.hr-visual-copy { padding-left: 28px; padding-right: 28px; }
}

.hr-utilrow-inner { gap: 28px; }
.hr-search-main { flex: 1 1 auto; max-width: 520px; margin: 0 auto; }
.hr-search-main input[type="search"] {
	width: 100%;
	padding: 12px 44px 12px 18px;
	border: 2px solid var(--hr-brand);
	border-radius: var(--hr-radius-pill);
	background: var(--hr-bg);
	font-size: 14.5px;
}
.hr-search-main input[type="search"]::placeholder { color: var(--hr-muted); }
.hr-search-main input[type="search"]:focus { background: var(--hr-bg); box-shadow: 0 0 0 4px var(--hr-brand-soft); }
.hr-search-main button { right: 8px; color: var(--hr-brand); }
.hr-search-main button svg { width: 20px; height: 20px; }
@media (max-width: 1080px) {
	.hr-search-main { max-width: 340px; }
}
@media (max-width: 860px) {
	.hr-utilrow-inner { gap: 12px; }
	.hr-search-main { display: none; }
}

/* ============ 신선한: 쇼핑몰 헤더 ============ */
.ss-head { border-bottom: 0; background: var(--hr-bg); }
.ss-head .hr-inner { max-width: var(--hr-w); margin: 0 auto; padding-left: 20px; padding-right: 20px; }

.ss-topbar { border-bottom: 1px solid var(--hr-line-soft); background: var(--hr-surface); }
.ss-topbar-inner { display: flex; align-items: center; justify-content: flex-end; gap: 16px; height: 34px; }
.ss-topbar-inner > a { font-size: 12px; color: var(--hr-muted); }
.ss-topbar-inner > a:hover { color: var(--hr-brand); }
.ss-topbar-theme { display: inline-flex; align-items: center; padding: 0; border: 0; background: none; color: var(--hr-muted); cursor: pointer; }
.ss-topbar-theme svg { width: 15px; height: 15px; fill: currentColor; }
.ss-topbar-theme:hover { color: var(--hr-brand); }
.ss-topbar .hr-lang-btn { padding: 0; border: 0; background: none; color: var(--hr-muted); font-size: 12px; }

.ss-mainrow-inner { display: flex; align-items: center; gap: 32px; padding-top: 22px; padding-bottom: 22px; }
.ss-logo { flex: none; font-size: 27px; font-weight: 900; letter-spacing: -.04em; color: var(--hr-brand); }
.ss-logo img { display: block; height: 38px; width: auto; }
.ss-logo .hr-logo-dark { display: none; }
[data-theme="dark"] .ss-logo .hr-logo-dark { display: block; }
[data-theme="dark"] .ss-logo .hr-logo-light:not(:only-child) { display: none; }

.ss-search { position: relative; flex: 1 1 auto; max-width: 480px; margin: 0 auto; }
.ss-search input[type="search"] {
	width: 100%;
	height: 46px;
	padding: 0 46px 0 20px;
	border: 2px solid var(--hr-brand);
	border-radius: var(--hr-radius-pill);
	background: var(--hr-bg);
	color: var(--hr-ink);
	font-size: 14.5px;
	font-family: inherit;
	appearance: none;
	-webkit-appearance: none;
}
.ss-search input[type="search"]::-webkit-search-cancel-button { -webkit-appearance: none; }
.ss-search input[type="search"]::placeholder { color: var(--hr-muted); }
.ss-search input[type="search"]:focus { outline: 0; box-shadow: 0 0 0 4px var(--hr-brand-soft); }
.ss-search button {
	position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
	display: grid; place-items: center; width: 34px; height: 34px;
	border: 0; border-radius: 50%; background: none; color: var(--hr-brand); cursor: pointer;
}
.ss-search button svg { width: 21px; height: 21px; fill: currentColor; }

.ss-icons { flex: none; display: flex; align-items: center; gap: 4px; margin-left: auto; }
.ss-icon {
	position: relative; display: flex; flex-direction: column; align-items: center; gap: 3px;
	width: 62px; padding: 6px 0; border: 0; background: none; color: var(--hr-ink-sub); cursor: pointer;
}
.ss-icon svg { width: 24px; height: 24px; fill: currentColor; }
.ss-icon-label { font-size: 11px; font-weight: 600; letter-spacing: -.02em; }
.ss-icon:hover { color: var(--hr-brand); }
.ss-icon .hr-nc-badge { top: 0; right: 12px; }
/* 장바구니 담긴 수 — 아이콘 오른쪽 위 */
.ss-icon-badge {
	position: absolute;
	top: 0;
	right: 8px;
	min-width: 17px;
	height: 17px;
	padding: 0 4px;
	border-radius: var(--hr-radius-pill);
	background: var(--hr-brand);
	color: #fff;
	font-size: 10.5px;
	font-weight: 800;
	font-style: normal;
	line-height: 17px;
	text-align: center;
	box-shadow: 0 0 0 2px var(--hr-bg);
}
/* 알림 벨도 다른 헤더 아이콘과 같은 세로(아이콘+라벨) 형태로 통일 */
.ss-icon.hr-nc { flex-direction: column; }
.ss-icon .hr-nc-btn {
	width: auto;
	height: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 3px;
	padding: 0;
	border-radius: 0;
	background: none;
	color: inherit;
	font: inherit;
}
.ss-icon .hr-nc-btn:hover { background: none; color: var(--hr-brand); }
.ss-icon .hr-nc-btn svg { width: 24px; height: 24px; }
.ss-icon .hr-nc-btn .hr-nc-badge { top: -2px; right: calc(50% - 20px); }
/* 알림 버튼도 옆의 마이페이지·장바구니와 같은 세로 아이콘 규격으로. 벨 규격(34px 가로형)이 그대로 오면 아이콘이 뭉개진다 */
.ss-icon .hr-nc-btn { width: 100%; height: auto; flex-direction: column; gap: 3px; padding: 0; border-radius: 0; color: inherit; background: none; }
.ss-icon .hr-nc-btn:hover { background: none; color: var(--hr-brand); }
.ss-icon .hr-nc-btn svg { width: 24px; height: 24px; }
.ss-burger { display: none; }

.ss-catbar { border-top: 1px solid var(--hr-line-soft); border-bottom: 1px solid var(--hr-line); background: var(--hr-bg); }
.ss-catbar-inner { display: flex; align-items: stretch; gap: 26px; height: 50px; }

.ss-catall { position: relative; flex: none; }
.ss-catall-btn {
	display: flex; align-items: center; gap: 8px; height: 100%; padding: 0 20px 0 0;
	border: 0; background: none; color: var(--hr-ink); font-size: 15px; font-weight: 700; font-family: inherit; cursor: pointer;
}
.ss-catall-btn svg { width: 20px; height: 20px; fill: currentColor; }
.ss-catall.is-open .ss-catall-btn { color: var(--hr-brand); }
/* 전체 카테고리 — 메가메뉴: 1차 = 열 머리, 2차 = 세로 목록 */
.ss-catall-panel {
	position: absolute; top: 100%; left: -14px; z-index: 60;
	width: min(760px, calc(100vw - 40px));
	padding: 22px 24px 24px;
	border: 1px solid var(--hr-line); border-radius: 0 0 var(--hr-radius) var(--hr-radius);
	background: var(--hr-bg); box-shadow: var(--hr-shadow);
}
.ss-catall-list {
	margin: 0; padding: 0; list-style: none;
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px 26px;
}
.ss-catall-list > li { min-width: 0; }
.ss-catall-list > li > a.ss-catall-top {
	display: flex; align-items: center; gap: 8px;
	padding: 0 0 9px; margin: 0 0 8px;
	border-bottom: 1px solid var(--hr-line-soft);
	font-size: 14.5px; font-weight: 800; color: var(--hr-ink);
}
.ss-catall-list > li > a.ss-catall-top::before {
	content: '';
	flex: none; width: 7px; height: 7px; border-radius: 50%;
	background: var(--hr-brand);
}
.ss-catall-list > li > a.ss-catall-top:hover { color: var(--hr-brand); }
.ss-catall-sub { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 1px; }
.ss-catall-sub a {
	display: block; padding: 5px 0 5px 15px; border-radius: 6px;
	font-size: 13.5px; color: var(--hr-ink-sub);
	overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.ss-catall-sub a:hover { color: var(--hr-brand); background: var(--hr-brand-soft); }
@media (max-width: 860px) {
	.ss-catall-list { grid-template-columns: repeat(2, 1fr); }
}

.ss-gnb { flex: 1 1 auto; min-width: 0; }
.ss-gnb > ul { display: flex; align-items: stretch; gap: 26px; height: 100%; margin: 0; padding: 0; list-style: none; }
.ss-gnb > ul > li { position: relative; display: flex; align-items: center; }
.ss-gnb > ul > li > a { font-size: 15px; font-weight: 600; color: var(--hr-ink-sub); white-space: nowrap; }
.ss-gnb > ul > li:hover > a, .ss-gnb > ul > li.is-on > a { color: var(--hr-brand); }
.ss-gnb > ul > li.is-on::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; background: var(--hr-brand); }
.ss-gnb-sub {
	position: absolute; top: 100%; left: -14px; z-index: 60;
	min-width: 170px; margin: 0; padding: 8px 0; list-style: none;
	border: 1px solid var(--hr-line); border-radius: 0 0 var(--hr-radius-sm) var(--hr-radius-sm);
	background: var(--hr-bg); box-shadow: var(--hr-shadow);
	opacity: 0; visibility: hidden; transform: translateY(-4px); transition: opacity .14s, transform .14s;
}
.ss-gnb > ul > li:hover .ss-gnb-sub, .ss-gnb > ul > li:focus-within .ss-gnb-sub { opacity: 1; visibility: visible; transform: none; }
.ss-gnb-sub a { display: block; padding: 8px 18px; font-size: 13.5px; color: var(--hr-ink-sub); white-space: nowrap; }
.ss-gnb-sub a:hover { background: var(--hr-brand-soft); color: var(--hr-brand); }

.ss-mobile-cats { padding: 16px 20px; border-bottom: 1px solid var(--hr-line-soft); }
.ss-mobile-cats-title { margin: 0 0 10px; font-size: 12px; font-weight: 700; letter-spacing: .04em; color: var(--hr-muted); }
.ss-mobile-cats ul { display: flex; flex-wrap: wrap; gap: 7px; margin: 0; padding: 0; list-style: none; }
.ss-mobile-cats a {
	display: inline-block; padding: 7px 13px; border: 1px solid var(--hr-line); border-radius: var(--hr-radius-pill);
	font-size: 13px; font-weight: 600; color: var(--hr-ink-sub); background: var(--hr-surface);
}

@media (max-width: 1080px) {
	.ss-mainrow-inner { gap: 20px; }
	.ss-search { max-width: 340px; }
	.ss-icon { width: 54px; }
}
@media (max-width: 860px) {
	.ss-topbar { display: none; }
	.ss-catbar { display: none; }
	.ss-mainrow-inner { gap: 12px; padding-top: 12px; padding-bottom: 12px; flex-wrap: wrap; }
	.ss-logo { font-size: 22px; }
	.ss-logo img { height: 30px; }
	.ss-search { order: 3; flex-basis: 100%; max-width: none; margin: 2px 0 0; }
	.ss-search input[type="search"] { height: 40px; font-size: 14px; }
	.ss-icons { gap: 0; }
	.ss-icon { width: 48px; }
	.ss-icon svg { width: 22px; height: 22px; }
	.ss-icon-label { display: none; }
	.ss-burger { display: flex; }
}

.ss-cats { flex: 1 1 auto; min-width: 0; }
.ss-cats > ul { display: flex; align-items: stretch; gap: 24px; height: 100%; margin: 0; padding: 0; list-style: none; }
.ss-cats > ul > li { position: relative; display: flex; align-items: center; }
.ss-cats > ul > li > a { font-size: 15.5px; font-weight: 700; color: var(--hr-ink); white-space: nowrap; }
.ss-cats > ul > li:hover > a { color: var(--hr-brand); }
.ss-cats-sub {
	position: absolute; top: 100%; left: -14px; z-index: 60;
	min-width: 160px; margin: 0; padding: 8px 0; list-style: none;
	border: 1px solid var(--hr-line); border-radius: 0 0 var(--hr-radius-sm) var(--hr-radius-sm);
	background: var(--hr-bg); box-shadow: var(--hr-shadow);
	opacity: 0; visibility: hidden; transform: translateY(-4px); transition: opacity .14s, transform .14s;
}
.ss-cats > ul > li:hover .ss-cats-sub, .ss-cats > ul > li:focus-within .ss-cats-sub { opacity: 1; visibility: visible; transform: none; }
.ss-cats-sub a { display: block; padding: 8px 18px; font-size: 13.5px; color: var(--hr-ink-sub); white-space: nowrap; }
.ss-cats-sub a:hover { background: var(--hr-brand-soft); color: var(--hr-brand); }

.ss-gnb.is-side { flex: none; margin-left: auto; }
.ss-gnb.is-side > ul { gap: 18px; }
.ss-gnb.is-side > ul > li > a { font-size: 13px; font-weight: 500; color: var(--hr-muted); }
.ss-gnb.is-side > ul > li.is-on::after { display: none; }
@media (max-width: 1180px) {
	.ss-gnb.is-side { display: none; }
}


/* ---------- 테마 내장 메인페이지 (_home.html) ---------- */
.ssh-home { width: 100%; display: flex; flex-direction: column; gap: 64px; padding: 10px 0 30px; }

/* 카테고리 타일 */
.ssh-tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(104px, 1fr)); gap: 10px; }
.ssh-tiles a {
	display: flex; flex-direction: column; align-items: center; gap: 10px;
	padding: 18px 8px 14px; border-radius: var(--hr-radius);
	background: var(--hr-surface); border: 1px solid var(--hr-line-soft);
	text-decoration: none; transition: border-color .15s, transform .15s;
}
.ssh-tiles a:hover { border-color: var(--hr-brand); transform: translateY(-2px); }
.ssh-tile-mark {
	display: flex; align-items: center; justify-content: center;
	width: 44px; height: 44px; border-radius: 50%;
	background: var(--hr-brand-soft); color: var(--hr-brand);
	font-weight: 800; font-size: 17px;
}
.ssh-tile-mark svg { width: 20px; height: 20px; fill: currentColor; }
.ssh-tile-name { font-size: 13px; font-weight: 600; color: var(--hr-ink-sub); text-align: center; }
.ssh-tiles a:hover .ssh-tile-name { color: var(--hr-ink); }

/* 섹션 타이틀 - 가운데 정렬 + 화살표 */
.ssh-section-head { display: flex; justify-content: center; margin: 0 0 24px; }
.ssh-section-head h2 { margin: 0; font-size: 24px; font-weight: 800; letter-spacing: -.02em; color: var(--hr-ink); text-align: center; }
.ssh-section-head h2 a { display: inline-flex; align-items: center; gap: 2px; color: inherit; text-decoration: none; }
.ssh-section-head h2 svg { width: 22px; height: 22px; fill: var(--hr-muted); transition: transform .15s, fill .15s; }
.ssh-section-head h2 a:hover svg { fill: var(--hr-brand); transform: translateX(3px); }

/* 상품 카드 - 테두리 없는 형태: 이미지 + 담기 바 + 이름 + 할인가 */
.ssh-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px 18px; }
.ssh-card { display: flex; flex-direction: column; text-decoration: none; }
.ssh-card-thumb {
	position: relative; display: block; aspect-ratio: 4 / 3;
	border-radius: var(--hr-radius-sm); overflow: hidden;
	background: var(--hr-surface) center / cover no-repeat;
	transition: filter .2s;
}
.ssh-card:hover .ssh-card-thumb { filter: brightness(.96); }
.ssh-card-badges { position: absolute; top: 8px; left: 8px; display: flex; gap: 4px; }
.ssh-badge {
	font-style: normal; font-size: 11px; font-weight: 700; line-height: 1;
	padding: 5px 8px; border-radius: var(--hr-radius-pill);
	background: var(--hr-brand); color: #fff;
}
.ssh-badge.is-new { background: #1d6fd6; }
.ssh-soldout {
	position: absolute; inset: 0; z-index: 1; display: flex; align-items: center; justify-content: center;
	background: rgba(20, 24, 21, .55); color: #fff; font-weight: 800; font-size: 15px; letter-spacing: .06em;
}
.ssh-card-cartbar {
	display: flex; align-items: center; justify-content: center; gap: 6px;
	margin-top: 8px; padding: 9px 0;
	border: 1px solid var(--hr-line); border-radius: var(--hr-radius-btn);
	font-size: 13.5px; font-weight: 600; color: var(--hr-ink-sub);
	transition: border-color .15s, color .15s, background-color .15s;
}
.ssh-card-cartbar svg { width: 15px; height: 15px; fill: currentColor; }
.ssh-card:hover .ssh-card-cartbar { border-color: var(--hr-brand); color: var(--hr-brand); background: var(--hr-brand-soft); }
.ssh-card-body { display: flex; flex-direction: column; gap: 5px; padding: 10px 2px 0; }
.ssh-card-name { font-size: 14px; font-weight: 500; color: var(--hr-ink); line-height: 1.45; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.ssh-card-price { display: flex; align-items: baseline; gap: 6px; }
.ssh-card-price strong { font-size: 16.5px; font-weight: 800; color: var(--hr-ink); }
.ssh-off { font-style: normal; font-size: 16px; font-weight: 800; color: var(--hr-danger); }
.ssh-card-was { font-size: 12.5px; color: var(--hr-muted); }

/* 중간 배너 스트립 */
.ssh-strip {
	position: relative; display: flex; align-items: center;
	min-height: 130px; padding: 26px 40px;
	border-radius: var(--hr-radius); overflow: hidden;
	background: var(--hr-surface) center / cover no-repeat;
	text-decoration: none;
}
.ssh-strip::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10, 16, 12, .62), rgba(10, 16, 12, .18) 60%, rgba(10, 16, 12, 0)); }
.ssh-strip-copy { position: relative; display: flex; flex-direction: column; gap: 6px; max-width: 70%; }
.ssh-strip-copy strong { font-size: 22px; font-weight: 800; letter-spacing: -.02em; color: #fff; line-height: 1.35; }
.ssh-strip-copy span { font-size: 14px; color: rgba(255, 255, 255, .85); }

/* 일일특가 */
.ssh-daily {
	display: flex; align-items: stretch; gap: 34px;
	padding: 30px 34px; border-radius: var(--hr-radius);
	background: linear-gradient(115deg, var(--hr-brand) 0%, var(--hr-brand-dark) 100%);
}
.ssh-daily-copy { flex: 0 0 240px; display: flex; flex-direction: column; justify-content: center; gap: 8px; color: #fff; }
.ssh-daily-flag {
	align-self: flex-start; font-style: normal; font-size: 12px; font-weight: 800; letter-spacing: .08em;
	padding: 5px 11px; border-radius: var(--hr-radius-pill);
	background: rgba(255, 255, 255, .18); color: #fff;
}
.ssh-daily-copy h2 { margin: 2px 0 0; font-size: 26px; font-weight: 800; letter-spacing: -.02em; line-height: 1.3; color: #fff; }
.ssh-daily-copy p { margin: 0; font-size: 13.5px; color: rgba(255, 255, 255, .8); }
.ssh-daily-timer { margin-top: 8px; font-size: 34px; font-weight: 800; font-variant-numeric: tabular-nums; letter-spacing: .04em; color: #fff; }
.ssh-daily-item {
	flex: 1; display: flex; gap: 22px; align-items: center;
	padding: 18px 22px; border-radius: var(--hr-radius-sm);
	background: var(--hr-bg); text-decoration: none;
	transition: transform .15s, box-shadow .15s;
}
.ssh-daily-item:hover { transform: translateY(-2px); box-shadow: var(--hr-shadow); }
.ssh-daily-thumb { flex: 0 0 44%; aspect-ratio: 4 / 3; border-radius: var(--hr-radius-sm); background: var(--hr-surface) center / cover no-repeat; }
.ssh-daily-body { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.ssh-daily-body .ssh-card-name { font-size: 17px; font-weight: 700; }
.ssh-daily-body .ssh-card-price strong { font-size: 22px; }
.ssh-daily-body .ssh-off { font-size: 21px; }

/* 최신 글 */
.ssh-post-list { list-style: none; margin: 0; padding: 0; border-top: 2px solid var(--hr-ink); }
.ssh-post-list li { border-bottom: 1px solid var(--hr-line-soft); }
.ssh-post-list a { display: flex; align-items: center; gap: 10px; padding: 13px 4px; text-decoration: none; }
.ssh-post-title { flex: 1 1 auto; min-width: 0; font-size: 14.5px; color: var(--hr-ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ssh-post-list a:hover .ssh-post-title { color: var(--hr-brand); }
.ssh-post-cmt { flex: 0 0 auto; font-style: normal; font-size: 11.5px; font-weight: 800; color: var(--hr-brand); background: var(--hr-brand-soft); border-radius: var(--hr-radius-pill); padding: 3px 8px; }
.ssh-post-date { flex: 0 0 auto; font-size: 12.5px; color: var(--hr-muted); }

@media (max-width: 1023px) {
	.ssh-grid { grid-template-columns: repeat(3, 1fr); }
	.ssh-daily { flex-direction: column; gap: 20px; }
	.ssh-daily-copy { flex: none; }
}
@media (max-width: 767px) {
	.ssh-home { gap: 44px; }
	.ssh-grid { grid-template-columns: repeat(2, 1fr); gap: 20px 12px; }
	.ssh-section-head { margin-bottom: 16px; }
	.ssh-section-head h2 { font-size: 20px; }
	.ssh-tiles { grid-template-columns: repeat(auto-fit, minmax(84px, 1fr)); gap: 8px; }
	.ssh-strip { min-height: 100px; padding: 18px 20px; }
	.ssh-strip-copy strong { font-size: 17px; }
	.ssh-strip-copy span { font-size: 12.5px; }
	.ssh-daily { padding: 20px; }
	.ssh-daily-item { flex-direction: column; align-items: stretch; gap: 12px; }
	.ssh-daily-thumb { flex: none; }
	.ssh-daily-timer { font-size: 28px; }
}

/* 하단 탭바 바텀시트 */
.ss-sheet-dim { position: fixed; inset: 0; z-index: 205; background: rgba(0, 0, 0, .45); opacity: 0; transition: opacity .22s ease; }
.ss-sheet-dim.is-open { opacity: 1; }
.ss-sheet {
	position: fixed;
	left: 0; right: 0; bottom: 0;
	z-index: 210;
	max-height: 72vh;
	display: flex;
	flex-direction: column;
	border-radius: 18px 18px 0 0;
	background: var(--hr-bg);
	box-shadow: 0 -12px 40px rgba(0, 0, 0, .2);
	transform: translateY(100%);
	transition: transform .24s ease;
	padding-bottom: env(safe-area-inset-bottom, 0px);
}
.ss-sheet[hidden] { display: none; }
.ss-sheet.is-open { transform: translateY(0); }
body.ss-sheet-on { overflow: hidden; }
.ss-sheet-head {
	flex: none;
	display: flex; align-items: center; justify-content: space-between; gap: 10px;
	padding: 16px 20px 12px;
	border-bottom: 1px solid var(--hr-line-soft);
}
.ss-sheet-head strong { font-size: 16px; font-weight: 800; color: var(--hr-ink); }
.ss-sheet-close { flex: none; width: 34px; height: 34px; border: 0; background: none; color: var(--hr-muted); cursor: pointer; }
.ss-sheet-close svg { width: 18px; height: 18px; fill: currentColor; }
.ss-sheet-body { flex: 1; min-height: 0; overflow-y: auto; overscroll-behavior: contain; padding: 14px 20px 20px; }

.ss-sheet-cats { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 14px; }
.ss-sheet-cat-top {
	display: flex; align-items: center; gap: 8px;
	font-size: 15px; font-weight: 800; color: var(--hr-ink);
	padding-bottom: 8px; border-bottom: 1px solid var(--hr-line-soft);
}
.ss-sheet-cat-top::before { content: ''; flex: none; width: 7px; height: 7px; border-radius: 50%; background: var(--hr-brand); }
.ss-sheet-cat-sub { display: flex; flex-wrap: wrap; gap: 7px; padding: 9px 0 2px; }
.ss-sheet-cat-sub a {
	display: inline-block; padding: 7px 13px;
	border: 1px solid var(--hr-line); border-radius: var(--hr-radius-pill);
	background: var(--hr-surface);
	font-size: 13px; font-weight: 600; color: var(--hr-ink-sub);
}
.ss-sheet-cat-sub a:active { border-color: var(--hr-brand); color: var(--hr-brand); }
.ss-sheet-all { display: flex; margin-top: 16px; }

.ss-sheet-search { display: flex; gap: 8px; }
.ss-sheet-search input[type="search"] {
	flex: 1; min-width: 0;
	box-sizing: border-box;
	height: 46px;
	padding: 0 16px;
	border: 2px solid var(--hr-brand);
	border-radius: var(--hr-radius-pill);
	background: var(--hr-bg);
	font-size: 15px;
	color: var(--hr-ink);
}
.ss-sheet-search input[type="search"]:focus { outline: none; }
.ss-sheet-search .hr-btn { height: 46px; border-radius: var(--hr-radius-pill); padding: 0 20px; }

/* 최신 글 다단 (공지사항 / 자유게시판 나란히) */
.ssh-posts-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px 36px; }
.ssh-posts-grid.cols-1 { grid-template-columns: minmax(0, 1fr); }
.ssh-posts-grid.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.ssh-posts-col { min-width: 0; }
.ssh-posts-head { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; margin: 0 0 4px; }
.ssh-posts-head h3 { margin: 0; font-size: 18px; font-weight: 800; letter-spacing: -.02em; color: var(--hr-ink); }
.ssh-posts-head a { display: inline-flex; align-items: center; gap: 1px; font-size: 12.5px; font-weight: 600; color: var(--hr-muted); text-decoration: none; }
.ssh-posts-head a svg { width: 14px; height: 14px; fill: currentColor; }
.ssh-posts-head a:hover { color: var(--hr-brand); }
@media (max-width: 767px) {
	.ssh-posts-grid, .ssh-posts-grid.cols-3 { grid-template-columns: minmax(0, 1fr); gap: 26px; }
}

/* 메인 기획전 카드 */
.ssh-promo-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.ssh-promo-card {
	position: relative;
	display: flex;
	align-items: flex-end;
	min-height: 150px;
	padding: 20px 22px;
	border-radius: var(--hr-radius);
	overflow: hidden;
	background: var(--hr-surface) center / cover no-repeat;
	text-decoration: none;
	transition: transform .16s, box-shadow .16s;
}
.ssh-promo-card:hover { transform: translateY(-3px); box-shadow: var(--hr-shadow); }
.ssh-promo-card.has-image::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10, 15, 12, .05) 25%, rgba(10, 15, 12, .66) 100%); }
.ssh-promo-copy { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 4px; max-width: 68%; color: #fff; text-shadow: 0 2px 12px rgba(0, 0, 0, .3); }
.ssh-promo-copy.no-shadow { text-shadow: none; }
.ssh-promo-point { position: absolute; top: 50%; right: 4%; transform: translateY(-50%); width: 30%; max-width: 140px; height: 84%; background-size: contain; background-repeat: no-repeat; background-position: center right; pointer-events: none; }
.ssh-promo-point.is-left { right: auto; left: 4%; background-position: center left; }
.ssh-promo-card.point-left .ssh-promo-copy { margin-left: auto; }
.ssh-promo-copy strong { font-size: 19px; font-weight: 800; letter-spacing: -.02em; line-height: 1.3; }
.ssh-promo-copy span { font-size: 13px; opacity: .85; }
.ssh-promo-copy em { font-style: normal; font-size: 12px; font-weight: 700; opacity: .75; }

/* 실시간 랭킹 */
.ssh-rank-grid {
	list-style: none;
	margin: 0; padding: 0;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	grid-auto-flow: column;
	grid-template-rows: repeat(2, auto);
	gap: 10px 26px;
	counter-reset: none;
}
.ssh-rank-item {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 10px 8px;
	border-radius: var(--hr-radius-sm);
	text-decoration: none;
	transition: background-color .14s;
}
.ssh-rank-item:hover { background: var(--hr-surface); }
.ssh-rank-no { flex: none; width: 26px; font-size: 21px; font-weight: 800; font-style: italic; color: var(--hr-ink); text-align: center; }
.ssh-rank-thumb { flex: none; width: 74px; aspect-ratio: 1; border-radius: 10px; background: var(--hr-surface) center / cover no-repeat; }
.ssh-rank-body { min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.ssh-rank-body .ssh-card-name { -webkit-line-clamp: 1; }

/* 푸터 확장 — 고객센터 + SNS + 잔줄 */
.hr-footer-cs { max-width: 460px; }
.hr-footer-cs-label { margin: 18px 0 2px; font-size: 13px; font-weight: 700; color: var(--hr-ink-sub); }
.hr-footer-tel { display: inline-block; font-size: 26px; font-weight: 800; letter-spacing: -.02em; color: var(--hr-ink); text-decoration: none; }
.hr-footer-tel:hover { color: var(--hr-brand); }
.hr-footer-hours { list-style: none; margin: 8px 0 0; padding: 0; display: flex; flex-direction: column; gap: 3px; font-size: 12.5px; }
.hr-footer-mail { margin: 10px 0 0; font-size: 12.5px; }
.hr-footer-mail a { color: var(--hr-brand); }
.hr-footer-right { display: flex; flex-direction: column; align-items: flex-end; gap: 14px; max-width: 560px; }
.hr-footer-right .hr-footer-menu { justify-content: flex-end; }
.hr-footer-right .hr-footer-info { margin: 0; justify-content: flex-end; }
.hr-footer-sns { display: flex; gap: 8px; }
.hr-footer-sns a {
	display: inline-flex; align-items: center; justify-content: center;
	width: 34px; height: 34px; border-radius: 50%;
	background: var(--hr-line-soft); color: var(--hr-ink-sub);
	transition: background-color .15s, color .15s;
}
.hr-footer-sns a:hover { background: var(--hr-brand); color: #fff; }
.hr-footer-sns svg { width: 17px; height: 17px; fill: currentColor; }
.hr-footer-disclaimer { margin: 20px 0 0; padding-top: 14px; border-top: 1px solid var(--hr-line); font-size: 12px; line-height: 1.7; color: var(--hr-muted); }

@media (max-width: 860px) {
	.ssh-promo-grid { grid-template-columns: 1fr; }
	.ssh-rank-grid { grid-template-columns: 1fr; grid-auto-flow: row; grid-template-rows: none; }
	.hr-footer-right { align-items: flex-start; }
	.hr-footer-right .hr-footer-menu, .hr-footer-right .hr-footer-info { justify-content: flex-start; }
}

/* 카테고리 타일 아이콘 (레이아웃 설정 cat_icons) */
.ssh-tile-mark.has-img { background: transparent; overflow: hidden; }
.ssh-tile-mark.has-img img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; display: block; }

/* 전체 카테고리 패널: 1차 카테고리 수에 따라 열 확장 (3 → 4 → 5) */
.ss-catall-panel.ss-cols-4 { width: min(960px, calc(100vw - 40px)); }
.ss-catall-panel.ss-cols-5 { width: min(1140px, calc(100vw - 40px)); }
.ss-catall-list.ss-cols-4 { grid-template-columns: repeat(4, 1fr); }
.ss-catall-list.ss-cols-5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1180px) {
	.ss-catall-panel.ss-cols-5 { width: min(960px, calc(100vw - 40px)); }
	.ss-catall-list.ss-cols-5 { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 860px) {
	.ss-catall-list.ss-cols-4, .ss-catall-list.ss-cols-5 { grid-template-columns: repeat(2, 1fr); }
}
