#EQUIPMENT {
	color: var(--text);
	margin-top: 80px;
}

/* ---------- HERO ---------- */

#EQUIPMENT .EQH__hero {
	position: relative;
	height: clamp(560px, 84vh, 900px);
	overflow: hidden;
	background: #0b1220;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* 背景圖 */
#EQUIPMENT .EQH__bg {
	position: absolute;
	inset: 0;

	background-size: cover;
	background-position: center;
	transform: scale(1.03);
	filter: contrast(1.1) saturate(1.1);
}

/* 柔和遮罩（避免硬切） */
#EQUIPMENT .EQH__shade {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(
			1000px 640px at 18% 18%,
			rgba(255, 255, 255, 0.1),
			rgba(255, 255, 255, 0) 58%
		),
		radial-gradient(
			900px 520px at 88% 22%,
			rgba(6, 182, 212, 0.1),
			rgba(255, 255, 255, 0) 62%
		),
		linear-gradient(
			90deg,
			rgba(0, 0, 0, 0.62) 0%,
			rgba(0, 0, 0, 0.26) 55%,
			rgba(0, 0, 0, 0.14) 100%
		),
		linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.58));
}

/* 超淡噪點：提升質感、消 banding */
#EQUIPMENT .EQH__noise {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
	opacity: 0.07;
	mix-blend-mode: overlay;
}

#EQUIPMENT .EQH__inner {
	position: relative;
	height: 100%;
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 18px;
	align-items: center;
	padding: 0 0 px;
}

/* Left copy */
#EQUIPMENT .EQH__copy {
	color: #fff;
	max-width: 640px;
}

#EQUIPMENT .EQH__kicker {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-weight: 900;
	font-size: 12px;
	letter-spacing: 0.28px;
	color: rgba(255, 255, 255, 0.92);
}
#EQUIPMENT .EQH__dot {
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--brand), var(--brand2));
	box-shadow: 0 0 0 6px rgba(27, 92, 255, 0.2);
}

#EQUIPMENT .EQH__title {
	margin: 12px 0 10px;
	font-size: clamp(40px, 4vw, 64px);
	line-height: 1.04;
	letter-spacing: 0.2px;
}
#EQUIPMENT .EQH__desc {
	margin: 0;
	color: rgba(255, 255, 255, 0.84);
	font-weight: 800;
}

/* stats */
#EQUIPMENT .EQH__stats {
	margin-top: 18px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
}
#EQUIPMENT .EQH__stat {
	border-radius: 18px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	padding: 12px 12px;
}
#EQUIPMENT .EQH__stat b {
	display: block;
	font-size: 20px;
	letter-spacing: 0.2px;
}
#EQUIPMENT .EQH__stat span {
	display: block;
	margin-top: 2px;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.78);
	font-weight: 800;
}

/* actions */
#EQUIPMENT .EQH__actions {
	margin-top: 16px;
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}
#EQUIPMENT .EQH__btn {
	height: 44px;
	padding: 0 16px;
	border-radius: 14px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	font-weight: 900;
	letter-spacing: 0.2px;
	backdrop-filter: blur(10px);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: 0.18s ease;
}
#EQUIPMENT .EQH__btn:hover {
	transform: translateY(-1px);
	background: rgba(255, 255, 255, 0.14);
}
#EQUIPMENT .EQH__btn--primary {
	border-color: rgba(27, 92, 255, 0.28);
	background: linear-gradient(
		135deg,
		rgba(27, 92, 255, 0.96),
		rgba(6, 182, 212, 0.88)
	);
}
#EQUIPMENT .EQH__note {
	margin-top: 14px;
	color: rgba(255, 255, 255, 0.7);
	font-weight: 800;
	font-size: 12px;
}

/* Right stacked cards */
#EQUIPMENT .EQH__stack {
	position: relative;
	display: grid;
	gap: 12px;
	align-content: end;
}

#EQUIPMENT .EQH__card {
	border-radius: 22px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(12px);
	box-shadow: 0 22px 54px rgba(0, 0, 0, 0.22);
	padding: 16px;
	color: #fff;
	transform: translateY(0);
	transition:
		transform 0.18s ease,
		background 0.18s ease;
}
#EQUIPMENT .EQH__card:hover {
	transform: translateY(-2px);
	background: rgba(255, 255, 255, 0.12);
}

#EQUIPMENT .EQH__cardTop {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}
#EQUIPMENT .EQH__cardTop b {
	font-size: 14px;
	letter-spacing: 0.2px;
}
#EQUIPMENT .EQH__pill {
	padding: 6px 10px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	background: rgba(0, 0, 0, 0.14);
	font-weight: 900;
	font-size: 12px;
}

#EQUIPMENT .EQH__card p {
	margin: 10px 0 0;
	color: rgba(255, 255, 255, 0.86);
	font-weight: 800;
	font-size: 13px;
}

#EQUIPMENT .EQH__mini {
	margin-top: 12px;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
#EQUIPMENT .EQH__mini span {
	padding: 7px 10px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	background: rgba(255, 255, 255, 0.08);
	font-weight: 900;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.9);
}

/* 微堆疊偏移，增加張力 */
#EQUIPMENT .EQH__card--a {
	transform: translateY(0);
}
#EQUIPMENT .EQH__card--b {
	transform: translateY(10px);
}
#EQUIPMENT .EQH__card--c {
	transform: translateY(20px);
}

/* Scroll hint */
#EQUIPMENT .EQH__scroll {
	position: absolute;
	left: 50%;
	bottom: 12px;
	transform: translateX(-50%);
	display: grid;
	place-items: center;
	gap: 6px;
	color: rgba(255, 255, 255, 0.72);
	font-weight: 900;
	font-size: 12px;
	letter-spacing: 0.2px;
}
#EQUIPMENT .EQH__scroll span {
	width: 2px;
	height: 20px;
	border-radius: 2px;
	background: rgba(255, 255, 255, 0.72);
	animation: EQHscroll 1.4s ease-in-out infinite;
}
@keyframes EQHscroll {
	0% {
		transform: translateY(0);
		opacity: 0.5;
	}
	50% {
		transform: translateY(6px);
		opacity: 1;
	}
	100% {
		transform: translateY(0);
		opacity: 0.5;
	}
}

/* RWD */
@media (max-width: 980px) {
	#EQUIPMENT .EQH__inner {
		grid-template-columns: 1fr;
		align-items: start;
		padding: 44px 0 24px;
	}
	#EQUIPMENT .EQH__stats {
		grid-template-columns: 1fr;
	}
	#EQUIPMENT .EQH__card--b,
	#EQUIPMENT .EQH__card--c {
		transform: translateY(0);
	}
}
@media (max-width: 560px) {
	#EQUIPMENT .EQH__hero {
		height: 92vh;
	}
}
/* ---------- TOOLBAR ---------- */
#EQUIPMENT .EQ__toolbar {
	padding: 22px 0;
	background: #fff;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
#EQUIPMENT .EQ__toolbarInner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
}
#EQUIPMENT .EQ__tabs {
	display: flex;
	gap: 6px;
	padding: 6px;
	border-radius: 999px;
	border: 1px solid rgba(0, 0, 0, 0.06);
	background: rgba(246, 247, 251, 0.72);
}
#EQUIPMENT .EQ__tab {
	height: 40px;
	padding: 0 14px;
	border-radius: 999px;
	border: 1px solid transparent;
	background: transparent;
	font-weight: 900;
	font-size: 13px;
	color: rgba(11, 18, 32, 0.72);
	cursor: pointer;
	transition: 0.18s ease;
}
#EQUIPMENT .EQ__tab:hover {
	background: rgba(27, 92, 255, 0.08);
	color: rgba(11, 18, 32, 0.86);
}
#EQUIPMENT .EQ__tab.is-active {
	background: rgba(11, 18, 32, 0.06);
	color: rgba(11, 18, 32, 0.86);
	border-color: rgba(0, 0, 0, 0.06);
}

#EQUIPMENT .EQ__hint {
	display: flex;
	align-items: center;
	gap: 8px;
	color: rgba(11, 18, 32, 0.62);
	font-weight: 900;
}
#EQUIPMENT .EQ__dotSm {
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--brand), var(--brand2));
	box-shadow: 0 0 0 6px rgba(27, 92, 255, 0.1);
}
#EQUIPMENT .EQ__hint small {
	font-size: 12px;
}

/* ---------- LIST / GRID ---------- */
#EQUIPMENT .EQ__list {
	padding: 42px 0 84px;
	background: #fff;
}
#EQUIPMENT .EQ__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
}

/* 卡片：大圖＋規格 */
#EQUIPMENT .EQ__card {
	border-radius: var(--radius);
	border: 1px solid rgba(0, 0, 0, 0.06);
	background: #fff;
	box-shadow: var(--shadow2);
	overflow: hidden;
	transition:
		transform 0.18s ease,
		box-shadow 0.18s ease;
}
#EQUIPMENT .EQ__card:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow);
}
#EQUIPMENT .EQ__card.is-hidden {
	display: none;
}

#EQUIPMENT .EQ__media {
	height: 240px;
	background-size: cover;
	background-position: center;
	filter: contrast(1.05) saturate(1.06);
	position: relative;
}
#EQUIPMENT .EQ__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(
			700px 360px at 20% 25%,
			rgba(27, 92, 255, 0.14),
			rgba(255, 255, 255, 0) 60%
		),
		linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.24));
}

#EQUIPMENT .EQ__body {
	padding: 16px;
}
#EQUIPMENT .EQ__top {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	align-items: flex-start;
}
#EQUIPMENT .EQ__name {
	margin: 0;
	font-size: 16px;
	letter-spacing: 0.2px;
}
#EQUIPMENT .EQ__model {
	margin-top: 6px;
	font-size: 12px;
	color: rgba(11, 18, 32, 0.72);
	font-weight: 900;
}
#EQUIPMENT .EQ__model b {
	color: rgba(11, 18, 32, 0.92);
}

#EQUIPMENT .EQ__qty {
	text-align: right;
	border-radius: 16px;
	border: 1px solid rgba(0, 0, 0, 0.06);
	background: rgba(246, 247, 251, 0.72);
	padding: 10px 12px;
	min-width: 72px;
}
#EQUIPMENT .EQ__qty b {
	display: block;
	font-size: 16px;
}
#EQUIPMENT .EQ__qty span {
	display: block;
	margin-top: 2px;
	font-size: 12px;
	color: rgba(11, 18, 32, 0.62);
	font-weight: 900;
}

#EQUIPMENT .EQ__spec {
	margin-top: 12px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
}
#EQUIPMENT .EQ__spec small {
	display: block;
	color: rgba(11, 18, 32, 0.58);
	font-weight: 900;
	font-size: 11px;
	letter-spacing: 0.2px;
}
#EQUIPMENT .EQ__spec b {
	display: block;
	margin-top: 4px;
	color: rgba(11, 18, 32, 0.86);
	font-weight: 900;
	font-size: 12px;
}

#EQUIPMENT .EQ__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 12px;
}
#EQUIPMENT .EQ__chips span {
	font-size: 12px;
	font-weight: 900;
	padding: 7px 10px;
	border-radius: 999px;
	border: 1px solid rgba(11, 18, 32, 0.1);
	background: rgba(246, 247, 251, 0.92);
	color: rgba(11, 18, 32, 0.78);
	letter-spacing: 0.2px;
}

/* details（更多規格） */
#EQUIPMENT .EQ__more {
	margin-top: 12px;
	border-radius: 16px;
	border: 1px solid rgba(0, 0, 0, 0.06);
	background: rgba(246, 247, 251, 0.72);
	padding: 10px 12px;
}
#EQUIPMENT .EQ__more summary {
	cursor: pointer;
	font-weight: 900;
	font-size: 12px;
	color: rgba(11, 18, 32, 0.78);
	list-style: none;
}
#EQUIPMENT .EQ__more summary::-webkit-details-marker {
	display: none;
}
#EQUIPMENT .EQ__more summary::after {
	content: "＋";
	float: right;
	color: rgba(11, 18, 32, 0.62);
	font-weight: 900;
}
#EQUIPMENT .EQ__more[open] summary::after {
	content: "－";
}

#EQUIPMENT .EQ__moreGrid {
	margin-top: 10px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}
#EQUIPMENT .EQ__moreGrid small {
	display: block;
	color: rgba(11, 18, 32, 0.58);
	font-weight: 900;
	font-size: 11px;
}
#EQUIPMENT .EQ__moreGrid b {
	display: block;
	margin-top: 4px;
	color: rgba(11, 18, 32, 0.86);
	font-weight: 900;
	font-size: 12px;
}

/* ---------- CTA ---------- */
#EQUIPMENT .EQ__cta {
	padding: 58px 0;
	background: var(--surface);
	border-top: 1px solid rgba(0, 0, 0, 0.06);
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
#EQUIPMENT .EQ__ctaInner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
}
#EQUIPMENT .EQ__ctaInner h2 {
	margin: 0;
	font-size: 20px;
	letter-spacing: 0.2px;
}
#EQUIPMENT .EQ__ctaBtn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 44px;
	padding: 0 16px;
	border-radius: 14px;
	border: 1px solid rgba(27, 92, 255, 0.22);
	background: linear-gradient(
		135deg,
		rgba(27, 92, 255, 0.96),
		rgba(6, 182, 212, 0.9)
	);
	color: #fff;
	font-weight: 900;
	letter-spacing: 0.2px;
	box-shadow: var(--shadow2);
}
#EQUIPMENT .EQ__ctaBtn:hover {
	transform: translateY(-1px);
	box-shadow: var(--shadow);
}

/* ---------- FOOTER ---------- */
#EQUIPMENT .EQ__footer {
	padding: 26px 0;
	border-top: 1px solid rgba(0, 0, 0, 0.06);
	background: #fff;
}
#EQUIPMENT .EQ__foot {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 14px;
	flex-wrap: wrap;
	color: rgba(11, 18, 32, 0.78);
}
#EQUIPMENT .EQ__foot b {
	display: block;
	font-size: 13px;
	letter-spacing: 0.2px;
}
#EQUIPMENT .EQ__foot small {
	display: block;
	margin-top: 4px;
	color: var(--muted);
	font-weight: 900;
	font-size: 12px;
}
#EQUIPMENT .EQ__footLinks {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	font-weight: 900;
	font-size: 13px;
	color: rgba(11, 18, 32, 0.62);
}
#EQUIPMENT .EQ__footLinks a:hover {
	color: var(--text);
}

/* ---------- RWD ---------- */
@media (max-width: 980px) {
	#EQUIPMENT .EQ__heroInner {
		flex-direction: column;
		align-items: flex-start;
	}
	#EQUIPMENT .EQ__heroMini {
		grid-template-columns: 1fr 1fr;
		width: 100%;
	}
	#EQUIPMENT .EQ__grid {
		grid-template-columns: 1fr;
	}
	#EQUIPMENT .EQ__spec {
		grid-template-columns: 1fr;
	}
	#EQUIPMENT .EQ__moreGrid {
		grid-template-columns: 1fr;
	}
}
@media (max-width: 560px) {
	#EQUIPMENT .EQ__hero {
		height: 92vh;
	}
}
