@charset "UTF-8";

/* 오버레이 컨테이너 */
.hsheet {
	position: fixed;
	inset: 0;
	z-index: 10000; 
	visibility: hidden;
	transition: visibility 0s linear .28s; 
}
.hsheet.is-open {
	visibility: visible;
	transition: visibility 0s;
}

/* 딤 */
.hsheet__dim {
	position: absolute;
	inset: 0;
	background: rgba(37, 37, 37, .7);
	opacity: 0;
	transition: opacity .25s ease;
}
.hsheet.is-open .hsheet__dim { opacity: 1; }

/* 패널 (바텀시트 본체) */
.hsheet__panel {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	max-width: 520px;
	margin: 0 auto;
	box-sizing: border-box;
	background: #fff;
	border-radius: 20px 20px 0 0;
	padding: 20px 16px calc(20px + env(safe-area-inset-bottom));
	max-height: 92vh;
	overflow-y: auto;
	transform: translateY(100%);
	transition: transform .28s cubic-bezier(.32, .72, 0, 1);
}
.hsheet.is-open .hsheet__panel { transform: translateY(0); }

/* 드래그 핸들(겸 닫기 버튼) */
.hsheet__handle {
	position: relative;
	display: block;
	width: 48px;
	height: 4px;
	margin: 0 auto 26px;
	padding: 0;
	border: 0;
	border-radius: 500px;
	background: #DFDFDF;
	font-size: 0;
	cursor: pointer;
}
.hsheet__handle::before { /* 터치 영역 확장 */
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 80px;
	height: 24px;
}

/* 항목 리스트 — 각 항목을 회색 보더 박스로 (2026-06-09 수정: 체브론·바텀라인 제거) */
.hsheet__list {
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.hsheet__item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px 12px;
	border: 1px solid #E5E5E5;
	border-radius: 12px;
	text-decoration: none;
}
.hsheet__item-ic {
	flex: 0 0 54px;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: #FAFAFA;
	display: flex;
	align-items: center;
	justify-content: center;
}
.hsheet__item-ic img { display: block; }
.hsheet__item-txt {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.hsheet__item-title {
	font-size: 17px;
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: -0.025em;
	color: #121212;
}
.hsheet__item-desc {
	font-size: 15px;
	font-weight: 400;
	line-height: 1.4;
	letter-spacing: -0.025em;
	color: #757575;
}
/* 하단: 버튼 + 로고 */
.hsheet__foot {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	margin-top: 30px;
}
.hsheet__cta {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	width: 100%;
	height: 60px;
	border-radius: 6px;
	background: #326AFF;
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	letter-spacing: -0.025em;
	text-decoration: none;
}
.hsheet__cta img { width: 10px; height: auto; }
.hsheet__logo {
	width: 75px;
	height: auto;
	display: block;
}


.location-menu-list.hsheet-pc {
	width: 380px;
	padding: 8px 20px 20px;
	border: 1px solid #F0F0F0;
	border-radius: 20px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
	max-height: 80vh;
	overflow-y: auto;
	z-index: 200;
}
.hsheet-pc .hsheet__foot { margin-top: 20px; }

.hsheet-pc .location-menu-close:before { margin: 10px auto 18px; }

.location-menu.only_web:hover .location-menu-selected,
.location-menu.only_web.active .location-menu-selected { visibility: hidden; }
