/* 포셈 제품 데이터시트 — 프런트 추가 스타일
 * (히어로/표/치수 등 대부분은 테마 css/product-datasheet.css 의 .pd-* 재사용) */

.psp-catalog {
	font-family: "Pretendard", sans-serif;
}

/* ---------- 제품 탭 (내비게이션 3번째 행) ---------- */
.psp-product-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 46px;
	justify-content: center;
	padding-top: 34px;
}

.psp-product-tab {
	font-size: 17px;
	font-weight: 400;
	color: #c4c7cf !important;
	text-decoration: none;
	transition: color .2s ease;
	text-align: center;
}

.psp-product-tab:hover {
	color: #1c3f7c !important;
}

.psp-product-tab.is-active {
	color: #1c3f7c !important;
	font-weight: 700;
}

/* ---------- 파트넘버 해설 ---------- */
.psp-part-desc {
	font-size: 15px;
	line-height: 1.6;
	color: #6a7180;
	margin: 8px 0 0;
}

/* ---------- Typical Characteristics 그래프 ---------- */
.psp-graphs {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

.psp-graph {
	margin: 0;
	border: 1px solid #edeef2;
	background: #fff;
	padding: 16px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.psp-graph img {
	max-width: 100%;
	height: auto;
	display: block;
}

.psp-graph figcaption {
	margin-top: 12px;
	font-size: 14px;
	color: #6a7180;
	text-align: center;
}

/* ---------- Dimensions 도면 박스 (시안: 테두리 + 상단 라벨) ---------- */
.psp-catalog .pd-dim-image.psp-dim-image {
	flex-direction: column;
	justify-content: flex-start;
	border: 1px solid #e3e5ea;
	background: #fff;
	padding: 26px 20px;
}

.psp-catalog .psp-dim-label {
	display: block;
	margin-bottom: 18px;
	font-size: 15px;
	font-weight: 500;
	color: #333846;
	text-align: center;
	letter-spacing: .3px;
}

.psp-catalog .psp-dim-image img {
	max-width: 100%;
	height: auto;
}

/* 표 세로 병합(rowspan) 셀이 세로 중앙에 오도록 */
.psp-catalog table.pd-table tbody td {
	vertical-align: middle;
}

/* ---------- Notice | 주의 사항 (맨 하단) ---------- */
.psp-notices {
	list-style: none;
	margin: 0;
	padding: 0;
}

.psp-notices li {
	font-size: 18px;
	line-height: 1.9;
	color: #222;
	padding: 0;
}

.psp-notices li::before {
	content: '';
}

@media (max-width: 900px) {
	.psp-product-tabs {
		gap: 22px;
		padding-top: 24px;
	}
	.psp-catalog .pd-dim-image.psp-dim-image { padding: 18px 14px; }
	.psp-notices li { font-size: 16px; }
	.psp-product-tab { font-size: 15px; }
	.psp-graphs { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
	.psp-product-tabs { gap: 14px; }
	.psp-product-tab { font-size: 14px; }
}

/* ---------- 스펙 요청 버튼/모달 ---------- */
button.intro-download-btn { cursor: pointer; font-family: inherit; }

.psp-reqmodal { position: fixed; inset: 0; z-index: 100000; display: flex; align-items: center; justify-content: center; padding: 20px; font-family: "Pretendard", sans-serif; }
.psp-reqmodal[hidden] { display: none; }
.psp-reqmodal-dim { position: absolute; inset: 0; background: rgba(15, 22, 34, .6); }
.psp-reqmodal-box { position: relative; background: #fff; border-radius: 14px; width: 100%; max-width: 440px; padding: 34px 32px 30px; box-shadow: 0 24px 70px rgba(0, 0, 0, .4); }
.psp-reqmodal-x { position: absolute; top: 12px; right: 14px; width: 34px; height: 34px; border: 0; background: transparent; font-size: 26px; line-height: 1; color: #98a2b3; cursor: pointer; }
.psp-reqmodal-x:hover { color: #16202e; }
.psp-reqmodal-title { margin: 0 0 6px; font-size: 21px; font-weight: 800; color: #16202e; }
.psp-reqmodal-product { margin: 0 0 12px; font-size: 15px; font-weight: 700; color: #1c3f7c; }
.psp-reqmodal-product:empty { display: none; }
.psp-reqmodal-msg { margin: 0 0 20px; font-size: 14px; line-height: 1.65; color: #5a6473; }

.psp-reqform label { display: block; margin-bottom: 14px; }
.psp-reqform label span { display: block; font-size: 13px; font-weight: 600; color: #39434f; margin-bottom: 6px; }
.psp-reqform input { width: 100%; padding: 12px 14px; border: 1px solid #d7dce4; border-radius: 8px; font-size: 15px; font-family: inherit; box-sizing: border-box; }
.psp-reqform input:focus { outline: none; border-color: #1c3f7c; box-shadow: 0 0 0 3px rgba(28, 63, 124, .12); }
.psp-reqform-result { font-size: 14px; line-height: 1.6; margin: 4px 0 0; }
.psp-reqform-result.is-ok { color: #1e8e3e; }
.psp-reqform-result.is-err { color: #d64545; }
.psp-reqform-submit { width: 100%; margin-top: 18px; padding: 14px; border: 0; border-radius: 9px; background: #16202e; color: #fff; font-size: 15px; font-weight: 700; font-family: inherit; cursor: pointer; transition: background .15s; }
.psp-reqform-submit:hover { background: #243244; }
.psp-reqform-submit:disabled { opacity: .55; cursor: default; }
.psp-reqform.is-done label,
.psp-reqform.is-done .psp-reqform-submit { display: none; }
.psp-reqform.is-done .psp-reqform-result.is-ok { text-align: center; font-size: 15px; padding: 10px 0; }


.psp-req-open .icon-button-arrow {
	display: none;
}