.section-hero {
	padding: 0 0 var(--space-4);
}

.hero {
	position: relative;
	overflow: hidden;
	height: 80vh;
	display: flex;
	align-items: end;
	width: 100%;
	border-left: none;
	border-right: none;
}

.hero-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.45s ease;
	padding: var(--space-5);
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: end;
}

.hero-slide.active {
	opacity: 1;
	pointer-events: auto;
}

/* .hero-slide::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.65));
} */

.hero-content {
	position: absolute;
	z-index: 1;
	bottom: 25%;
	left: 8%;
}

.hero-content h2 {
	margin: 0 0 8px;
	font-size: clamp(42px, 7vw, 120px);
	color: transparent;
	-webkit-text-stroke: 1.4px rgba(255, 255, 255, 0.82);
	text-transform: uppercase;
	letter-spacing: 2px;
	line-height: 0.98;
}

.hero-content p {
	margin: var(--space-4) 0;
	color: #d9e1ea;
	letter-spacing: 0.8px;
	font-size: 20px;
}

.hero-controls {
	position: absolute;
	left: 50%;
	bottom: 14px;
	transform: translateX(-50%);
	z-index: 2;
	display: flex;
	gap: 8px;
}

.hero-dot {
	width: 9px;
	height: 14px;
	border-radius: 50%;
	border: 1px solid rgba(23, 120, 255, 0.9);
	background: rgba(23, 120, 255, 0.28);
	cursor: pointer;
}

.hero-dot.active {
	background: #347BFF;
}

.scene-grid {
	grid-template-columns: repeat(auto-fit, minmax(157px, 157px));
	justify-content: center;
	margin-block: clamp(14px, 5vw, 50px);
}

.scene-card {
	border: none;
	box-shadow: none;
	background: transparent;
	cursor: pointer;
	text-align: center;
	min-height: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
}

.scene-thumb {
	width: 115px;
	height: 115px;
	border-radius: 50%;
	overflow: hidden;
	border: 2px solid transparent;
	background: #252c34;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: border-color 0.2s ease, transform 0.2s ease;
}

.scene-thumb img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	background: #2f363f;
}

.scene-card.active {
	outline: none;
}

.scene-card.active .scene-thumb,
.scene-card:hover .scene-thumb {
	border-color: rgba(23, 120, 255, 0.8);
	transform: translateY(-2px);
}

.scene-preview img {
	width: 100%;
	display: block;
}

.scene-title {
	margin-top: 15px;
	font-size: 14px;
	line-height: 1.2;
	color: var(--color-muted);
}

.section-header-inline {
	justify-content: flex-start;
	align-items: center;
	gap: 15px;
}

.section-header-inline p {
	margin: 0;
}

.section-divider {
	color: var(--color-primary);
	font-size: 24px;
	font-weight: 200;
}

.product-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card {
	overflow: hidden;
	cursor: pointer;
}

.product-thumb {
	aspect-ratio: 1 / 0.8;
	background: linear-gradient(135deg, #212f3d, #0f161d);
	background-size: cover;
	background-position: center;
}

.product-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.product-body {
	padding: var(--space-3);
}

.product-body h3 {
	margin-top: 0;
	font-size: 18px;
	color: var(--color-primary);
}

.product-body p {
	margin: 0;
	font-size: 12px;
}

.badge {
	display: inline-flex;
	padding: 4px 10px;
	border-radius: 999px;
	font-size: 12px;
	background: rgba(51, 211, 158, 0.16);
	color: #8effd2;
}

.price {
	margin: 10px 0 0;
	color: #ffd2a8;
	font-weight: 700;
}

.home-product-arrow {
	position: absolute;
	top: 48%;
	transform: translateY(-50%);
	z-index: 3;
	width: 48px;
	height: 48px;
	border: none;
	border-radius: 5px;
	background: var(--color-primary);
	color: #111;
	font-size: 40px;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.home-arrow-icon {
	width: 30px;
	height: 30px;
	display: block;
}

.home-arrow-icon-left {
	transform: scaleX(-1);
}

.home-product-arrow-left {
	left: -14px;
}

.home-product-arrow-right {
	right: -14px;
}

.home-product-arrow.is-hidden {
	display: none;
}

.home-product-arrow:disabled {
	display: none;
}

.home-product-carousel {
	position: relative;
	overflow: visible;
}

.home-product-viewport {
	overflow: hidden;
}

.home-product-track {
	display: flex;
	gap: 14px;
	transition: transform 0.32s ease;
	will-change: transform;
}

.home-product-card {
	color: var(--color-text);
	border: none;
	background: #262626;
	display: flex;
	flex-direction: column;
	min-height: 100%;
	transition: background-color 0.25s ease;
}

.home-product-card:hover {
	background: #555;
}

.home-product-thumb {
	position: relative;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border: 1px solid #555;
	box-sizing: border-box;
}

.home-product-thumb img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	transition: transform 0.32s ease;
}

.home-product-thumb::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(8, 12, 18, 0.08), rgba(8, 12, 18, 0.5));
	pointer-events: none;
}

.home-product-card:hover .home-product-thumb img {
	transform: scale(1.1);
}

.home-product-thumb .badge {
	position: absolute;
	top: 15px;
	left: 0px;
	z-index: 2;
	background: var(--color-primary);
	color: #111;
	border-radius: 0 4px 4px 0;
	font-weight: bold;
}

.home-product-body {
	padding: 40px;
	text-align: center;
}

.home-product-body h3 {
	margin: 0 0 8px;
	font-size: 20px;
	line-height: 1.5;
	text-transform: uppercase;
}

.home-product-sku {
	margin: 0 0 8px;
	color: #8f98a2;
	font-size: 14px;
}

.home-product-desc {
	margin-top: 20px;
	min-height: 60px;
	color: #b9c0c7;
	font-size: 14px;
	line-height: 1.5;
}

.home-product-body .price {
	margin-top: 14px;
	color: #f1f1f1;
	font-size: 16px;
}

.discover-more-wrap {
	margin-top: 40px;
	display: flex;
	align-items: center;
	gap: 18px;
}

.discover-more-line {
	flex: 1;
	height: 1px;
	background: rgba(255, 255, 255, 0.15);
}

.discover-more-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 186px;
	height: 42px;
	padding: 0 16px;
	border: 1px solid var(--color-primary);
	border-radius: 4px;
	background: var(--color-primary);
	color: #151515;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.4px;
	transition: all 0.22s ease;
}

.discover-more-btn::after {
	content: "";
	display: inline-block;
	width: 16px;
	height: 16px;
	margin-left: 8px;
	background-color: currentColor;
	-webkit-mask: url("../assets/icons/arrow2.svg") no-repeat center / contain;
	mask: url("../assets/icons/arrow2.svg") no-repeat center / contain;
	vertical-align: middle;
}

.discover-more-btn:hover {
	background: transparent;
	color: var(--color-primary);
	border-color: rgba(23, 120, 255, 0.95);
}

.section-home-news {
	background: #17191d;
	color: #f4f7fb;
}

.section-home-news .section-header h2,
.section-home-news .section-header-inline p {
	color: #f4f7fb;
}

.section-home-news .section-divider {
	color: rgba(255, 255, 255, 0.28);
}

.home-news-card-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 34px;
}

.home-news-card {
	min-width: 0;
}

.home-news-card-media {
	display: block;
	overflow: hidden;
	background: #242830;
	aspect-ratio: 16 / 9;
}

.home-news-card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.45s ease, filter 0.45s ease;
}

.home-news-card:hover .home-news-card-media img {
	transform: scale(1.035);
	filter: brightness(0.96);
}

.home-news-card-body {
	padding-top: 22px;
}

.home-news-card-body time {
	display: block;
	margin-bottom: 14px;
	color: #b7c2cf;
	font-size: 18px;
	line-height: 1.3;
	font-weight: 500;
}

.home-news-card-body h3 {
	margin: 0;
	color: #f6f8fb;
	font-size: clamp(23px, 2vw, 31px);
	line-height: 1.25;
	font-weight: 800;
	letter-spacing: 0;
}

.home-news-card-body h3 a {
	color: inherit;
	text-decoration: none;
}

.home-news-card-body p {
	margin: 24px 0 0;
	color: #b9c3cf;
	font-size: clamp(16px, 1.18vw, 20px);
	line-height: 1.72;
	font-weight: 400;
}

.home-news-card-more {
	display: inline-flex;
	align-items: center;
	gap: 16px;
	margin-top: 24px;
	color: #f4f7fb;
	font-size: 18px;
	line-height: 1;
	font-weight: 500;
	text-decoration: underline;
	text-underline-offset: 3px;
	transition: color 0.2s ease;
}

.home-news-card-more::after {
	content: "";
	width: 24px;
	height: 16px;
	background-color: currentColor;
	-webkit-mask: url("../assets/icons/arrow2.svg") no-repeat center / contain;
	mask: url("../assets/icons/arrow2.svg") no-repeat center / contain;
}

.home-news-card-more:hover,
.home-news-card-body h3 a:hover {
	color: var(--color-primary);
}

.section-home-news .discover-more-line {
	background: rgba(255, 255, 255, 0.16);
}

.section-home-project-gallery {
	background: #17191d;
	color: #f4f7fb;
	padding-top: 22px;
}

.section-home-project-gallery .section-header h2,
.section-home-project-gallery .section-header-inline p {
	color: #f4f7fb;
}

.section-home-project-gallery .section-divider {
	color: rgba(255, 255, 255, 0.28);
}

.home-project-gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 34px;
}

.home-project-gallery-card {
	display: block;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	border-radius: 8px;
	background: #242830;
	box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
}

.home-project-gallery-card img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(0.72) saturate(0.98);
	transform: scale(1);
	transition: transform 0.45s ease, filter 0.45s ease;
}

.home-project-gallery-card:hover img,
.home-project-gallery-card:focus-visible img {
	transform: scale(1.04);
	filter: brightness(0.92) saturate(1.06);
}

.home-project-gallery-more {
	margin-top: 54px;
}

.section-home-project-gallery .discover-more-line {
	background: rgba(255, 255, 255, 0.16);
}

.news-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-3);
}

.home-news-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
}

.home-news-item {
	display: grid;
	grid-template-columns: 96px 1fr 220px;
	gap: 24px;
	align-items: center;
	padding: 20px 50px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	transition: background-color 0.25s ease;
}

.home-news-item:hover {
	background-color: #333;
}

.home-news-item:last-child {
	border-bottom: none;
}

.home-news-date {
	display: grid;
	justify-items: center;
	row-gap: 4px;
	color: #a3a8b0;
}

.home-news-date strong {
	font-size: clamp(28px, 2.5vw, 36px);
	font-weight: 700;
	line-height: 0.95;
	color: #f3f5f7;
	letter-spacing: 0.3px;
}

.home-news-date span {
	font-size: 16px;
	letter-spacing: 0.2px;
}

.home-news-date em {
	font-style: normal;
	font-size: 20px;
	line-height: 1;
	color: rgba(255, 255, 255, 0.6);
}

.home-news-main h3 {
	margin: 0 0 8px;
	font-size: clamp(18px, 1.55vw, 26px);
	line-height: 1.25;
	font-weight: 600;
	color: #f8f9fa;
}

.home-news-item:hover .home-news-main h3 {
	color: #347BFF;
}

.home-news-main p {
	margin: 0;
	font-size: clamp(14px, 1.05vw, 17px);
	line-height: 1.45;
	color: #aeb5bf;
}

.home-news-thumb {
	display: block;
	width: 100%;
	max-width: 220px;
	justify-self: end;
}

.home-news-thumb .news-cover {
	width: 100%;
	aspect-ratio: 1 / 1;
	border-radius: 2px;
	object-fit: cover;
	margin-bottom: 0;
}

.news-item {
	padding: var(--space-4);
}

.news-item h3 {
	margin: 10px 0 8px;
}

.news-cover {
	width: 100%;
	aspect-ratio: 16 / 7;
	border-radius: var(--radius-sm);
	object-fit: cover;
	margin-bottom: 12px;
}

.product-category-grid {
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 18px;
}

.product-category-card {
	min-height: 280px;
	padding: 34px 20px 28px;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.04);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
	transition: border-color 0.2s ease, transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.product-category-card:hover,
.product-category-card:focus-visible {
	border-color: rgba(23, 120, 255, 0.56);
	transform: translateY(-2px);
	background: linear-gradient(180deg, rgba(23, 120, 255, 0.08), rgba(255, 255, 255, 0.026));
	box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
	outline: none;
}

.product-category-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 116px;
	height: 116px;
	margin-top: 0;
}

.product-category-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.product-category-card h3 {
	margin: 30px 0 12px;
	font-size: 22px;
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: 0;
	color: #f5f5f5;
}

.product-category-card p {
	margin: 0;
	min-height: 42px;
	color: rgba(220, 229, 241, 0.72);
	font-size: 14px;
	line-height: 1.5;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.product-category-more {
	margin-top: auto;
	padding-top: 26px;
	font-size: 16px;
	font-weight: 800;
	color: #347BFF;
	letter-spacing: 0;
}

.product-category-more::after {
	content: " >";
}

.section-product-categories {
	background: linear-gradient(180deg, #12161b, #0f1318);
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.section-home-feature-tiles {
	background: #0f1318;
}

.home-feature-tiles {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.home-feature-tile {
	position: relative;
	display: block;
	min-width: 0;
	aspect-ratio: 2.2 / 1;
	overflow: hidden;
	background: #050505;
	color: #fff;
	border-radius: 8px;
}

.home-feature-tile img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	transition: transform 0.45s ease, filter 0.45s ease;
}

.home-feature-tile::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0.05) 44%, rgba(0, 0, 0, 0.18)),
		linear-gradient(90deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.14));
	pointer-events: none;
}

.home-feature-copy {
	position: absolute;
	z-index: 2;
	top: 42px;
	left: 50%;
	width: min(88%, 520px);
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	text-shadow: 0 2px 16px rgba(0, 0, 0, 0.62);
}

.home-feature-eyebrow {
	font-size: 14px;
	font-weight: 700;
	line-height: 1.25;
	color: rgba(255, 255, 255, 0.76);
}

.home-feature-title {
	margin-top: 5px;
	font-size: 30px;
	font-weight: 900;
	line-height: 1.08;
	color: #fff;
}

.home-feature-desc {
	margin-top: 8px;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.35;
	color: rgba(255, 255, 255, 0.94);
}

.home-feature-link {
	margin-top: 18px;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.2;
	color: #ff7b18;
	text-shadow: 0 2px 14px rgba(0, 0, 0, 0.76);
}

.home-feature-tile:hover img,
.home-feature-tile:focus-visible img {
	transform: scale(1.035);
	filter: saturate(1.08) contrast(1.04);
}

.home-feature-tile:focus-visible {
	outline: 3px solid #ff7b18;
	outline-offset: -3px;
}

.section-home-spotlight {
	background: #0f1318;
}

.home-spotlight-header {
	max-width: 860px;
	margin: 0 auto 42px;
	text-align: center;
}

.home-spotlight-header h2 {
	margin: 0;
	font-size: 54px;
	font-weight: 900;
	line-height: 1.08;
	color: #fff;
}

.home-spotlight-header p {
	margin: 24px 0 0;
	font-size: 21px;
	font-weight: 700;
	line-height: 1.35;
	color: rgba(255, 255, 255, 0.9);
}

.home-spotlight-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.28fr) minmax(330px, 0.72fr);
	gap: 28px;
	align-items: center;
}

.home-spotlight-media {
	overflow: hidden;
	border-radius: 8px;
	background: #050505;
}

.home-spotlight-media img {
	width: 100%;
	aspect-ratio: 1.34 / 1;
	height: auto;
	object-fit: cover;
}

.home-spotlight-cards {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.home-spotlight-card {
	padding: 34px 32px;
	border-radius: 8px;
	background: #030303;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.home-spotlight-card h3 {
	margin: 0 0 18px;
	font-size: 20px;
	font-weight: 900;
	line-height: 1.25;
	color: #fff;
}

.home-spotlight-card p {
	margin: 0;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.93);
}

.two-col-layout {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: var(--space-4);
}

.side-panel {
	position: sticky;
	top: 90px;
	padding: var(--space-3);
	align-self: start;
}

.category-tree {
	list-style: none;
	margin: 0;
	padding: 0;
}

.category-tree,
.category-tree ul {
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.category-tree li + li {
	margin-top: 4px;
}

.category-tree .tree-toggle,
.category-tree .tree-leaf {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
	padding: 10px 12px;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	color: var(--color-muted);
	background: transparent;
	line-height: 1.2;
	transition: all 0.2s ease;
}

.category-tree-icon {
	width: 34px;
	height: 34px;
	flex: 0 0 34px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.category-tree-icon img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	display: block;
}

.category-tree-title {
	display: inline-block;
	min-width: 0;
}

.product-category-banner {
	width: 100%;
	margin-bottom: var(--space-4);
	overflow: hidden;
	border-radius: var(--radius-md);
	border: 1px solid rgba(52, 123, 255, 0.28);
	background: rgba(255, 255, 255, 0.03);
	box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.36);
}

.product-category-banner img {
	display: block;
	width: 100%;
	height: auto;
}

/*
旧版商品详情图库卡片样式保留，便于客户后续恢复。
.product-gallery-carousel {
	position: relative;
	border-radius: var(--radius-md);
	border: 1px solid rgba(255, 255, 255, 0.18);
	background: radial-gradient(circle at 40% 30%, rgba(255, 255, 255, 0.1), transparent 55%),
		linear-gradient(130deg, #141b22, #0b0f14);
	overflow: hidden;
}

.pg-viewport {
	overflow: hidden;
	width: 100%;
	background: transparent;
}

.pg-track {
	display: flex;
	transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
	will-change: transform;
	background: transparent;
}

.pg-slide {
	flex: 0 0 100%;
	width: 100%;
	min-height: 420px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pg-slide img {
	width: 100%;
	height: 100%;
	max-height: 500px;
	object-fit: contain;
	padding: 34px;
}

.pg-arrow {
	position: absolute;
	top: auto;
	bottom: clamp(76px, 9vh, 112px);
	transform: none;
	z-index: 10;
	width: 44px;
	height: 44px;
	border: none;
	border-radius: 5px;
	background: var(--color-primary);
	color: #111;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	opacity: 0.8;
	transition: opacity 0.2s, background 0.2s;
}

.pg-arrow:hover {
	opacity: 1;
	background: #fff;
}

.pg-arrow img {
	width: 24px;
	height: 24px;
}

.pg-prev {
	left: 10px;
}

.pg-next {
	right: 10px;
}

.detail-main-count {
	position: absolute;
	right: 14px;
	bottom: 12px;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.55);
	z-index: 10;
	background: rgba(0,0,0,0.5);
	padding: 2px 8px;
	border-radius: 12px;
}

.detail-thumbs-horizontal {
	display: flex;
	gap: 12px;
	margin-top: 16px;
	overflow-x: auto;
	padding-bottom: 8px;
	scrollbar-width: none;
}

.detail-thumbs-horizontal::-webkit-scrollbar {
	display: none;
}

.detail-thumb-btn {
	flex: 0 0 80px;
	height: 80px;
	border-radius: var(--radius-sm);
	border: 2px solid rgba(255, 255, 255, 0.14);
	background: #0f151c;
	cursor: pointer;
	padding: 0;
	overflow: hidden;
	transition: border-color 0.2s ease;
}

.detail-thumb-btn img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.detail-thumb-btn.is-active,
.detail-thumb-btn:hover {
	border-color: var(--color-primary);
}
*/

/* ==========================================
   Stedi 风格商品详情页顶部（基于 Stedi 实际源码还原）
   ========================================== */
.detail-hero-stedi {
	position: relative;
	background:
		radial-gradient(ellipse 36% 70% at 25% 50%, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 50%, transparent 100%),
		#0b1014;
	color: #fff;
	width: 100%;
}

/* 桌面端 901px 以上：图片可视区域中心约在容器 30% 处 */
@media screen and (min-width: 901px) {
	.detail-hero-stedi {
		background:
			radial-gradient(ellipse 38% 72% at 30% 50%, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 50%, transparent 100%),
			#0b1014;
	}
}

/* 桌面端：大图背景 + 右侧信息 */
@media screen and (min-width: 641px) {
	.detail-hero-stedi {
		min-height: 44vw;
		display: flex;
		align-items: center;
	}
}

/* 左侧大图（绝对定位背景） */
.stedi-banner-image {
	width: 100%;
	height: 100%;
	position: relative;
}

@media screen and (min-width: 641px) {
	.stedi-banner-image {
		position: absolute;
		left: 0;
		top: 0;
	}
}

.stedi-banner-ratio {
	height: 100%;
}

.stedi-banner-ratio::after {
	content: "";
	display: block;
	padding-bottom: 66.666%;
}

@media screen and (min-width: 641px) {
	.stedi-banner-ratio::after {
		padding-bottom: 44.444%;
	}
}

/* ====== [旧版本备份] 全宽 cover 铺满，要求图片本身主体偏左构图 ======
.stedi-banner-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
========================================================== */

/* ====== [新版本] 椭圆光晕 + 透明 PNG 居中（客户只需提供正方形透明背景图） ====== */

/* ====== [备份] 旧版本：用 ::before 伪元素做光晕（四边有裁切硬边感）======
@media screen and (min-width: 641px) {
	.stedi-banner-image::before {
		content: "";
		position: absolute;
		top: 50%;
		left: 25%;
		transform: translate(-50%, -50%);
		width: 55%;
		height: 90%;
		background: radial-gradient(
			ellipse at center,
			rgba(255, 255, 255, 0.055) 0%,
			rgba(255, 255, 255, 0.025) 40%,
			rgba(255, 255, 255, 0.008) 65%,
			transparent 100%
		);
		pointer-events: none;
		z-index: 0;
	}
}

@media screen and (min-width: 901px) {
	.stedi-banner-image::before {
		left: 30%;
		width: 60%;
		height: 90%;
	}
}

@media screen and (max-width: 640px) {
	.stedi-banner-image::before {
		content: "";
		position: absolute;
		inset: 0;
		background: radial-gradient(
			ellipse at center,
			rgba(255, 255, 255, 0.08) 0%,
			rgba(255, 255, 255, 0.04) 35%,
			rgba(255, 255, 255, 0.015) 60%,
			transparent 80%
		);
		pointer-events: none;
		z-index: 0;
	}
}
============================================================== */

/* 移动端（≤640px）：光晕直接画在容器背景上（与桌面端使用同一个 detail-hero-stedi 背景渐变）*/

/* 商品图本身：保持原比例 contain 居中显示，桌面端落在容器左侧（信息区之外）的中央 */
.stedi-banner-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	padding: 4% 8%;
	z-index: 1;
	filter: drop-shadow(0 28px 28px rgba(0, 0, 0, 0.45));
}

/* 桌面端：把图片"居中"到左侧可视区（信息区之外的部分），方法是把图片限定在左侧 50%/40% 内 */
@media screen and (min-width: 641px) {
	.stedi-banner-img {
		width: 50%;
		left: 0;
		object-position: center;
		padding: 3% 4%;
	}
}

@media screen and (min-width: 901px) {
	.stedi-banner-img {
		width: 60%;
	}
}

/* 右侧信息容器 */
.stedi-product-info-container {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 1;
}

@media screen and (min-width: 641px) {
	.stedi-product-info-container {
		padding-left: 50%;
	}
}

@media screen and (min-width: 901px) {
	.stedi-product-info-container {
		padding-left: 60%;
	}
}

.stedi-product-info {
	padding: 30px 15px;
	width: 500px;
	max-width: 100%;
}

@media screen and (min-width: 1200px) {
	.stedi-product-info {
		padding: 30px;
	}
}

/* 标题 */
.stedi-title-wrapper {
	text-align: left;
	margin: 0 0 15px;
}

.stedi-page-title {
	font-size: 30px;
	font-weight: 700;
	line-height: 1.1;
	text-transform: uppercase;
	color: #fff;
	margin: 0;
	letter-spacing: 0;
}

@media screen and (min-width: 1200px) {
	.stedi-page-title {
		font-size: 50px;
	}
}

@media (min-width: 642px) and (max-width: 1200px) {
	.stedi-page-title {
		font-size: 40px;
	}
}

.stedi-subtitle {
	font-size: 18px;
	line-height: 1.35;
	color: rgba(255, 255, 255, 0.7);
	margin: 0 0 8px;
}

/* 价格 + 库存 */
.stedi-price-stock {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 10px 0;
}

.stedi-price-box {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
}

.stedi-price {
	font-size: 30px;
	font-weight: 700;
	color: #fff;
}

.stedi-stock-info {
	margin-left: 10px;
}

.stedi-stock-badge {
	background: #fff;
	color: #000;
	display: inline-block;
	padding: 4px 12px;
	line-height: 18px;
	border-radius: 5px;
	font-size: 12px;
	white-space: nowrap;
}

/* CTA 按钮 */
.stedi-bundle-actions {
	margin: 15px 0;
}

.stedi-customize-btn {
	background-color: #fff;
	color: #000;
	display: block;
	width: 100%;
	border: none;
	padding: 18px 30px;
	font-size: 15px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	cursor: pointer;
	transition: background-color 0.2s ease;
	text-align: center;
	line-height: 1.2;
}

.stedi-customize-btn:hover {
	background-color: #eaeaea;
}

.stedi-customize-btn:active {
	background-color: #d5d5d5;
}

.stedi-sku {
	font-size: 13px;
	line-height: 1.4;
	color: rgba(255, 255, 255, 0.58);
	letter-spacing: 0.02em;
	margin: 0 0 14px;
	text-transform: uppercase;
}

.stedi-share {
	display: grid;
	gap: 12px;
	margin-top: 26px;
}

.stedi-share-label {
	font-size: 18px;
	font-weight: 700;
	color: #fff;
	letter-spacing: 0;
}

.stedi-share-links {
	display: flex;
	align-items: center;
	gap: 12px;
}

.stedi-share-link {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	line-height: 1;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stedi-share-link img {
	width: 20px;
	height: 20px;
	display: block;
	filter: brightness(0) invert(1);
	object-fit: contain;
}

.stedi-share-link:hover {
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
}

.stedi-share-facebook {
	background: #1877f2;
}

.stedi-share-x {
	background: #111;
	border: 1px solid rgba(255, 255, 255, 0.26);
}

.stedi-share-linkedin {
	background: #0a66c2;
}

.stedi-share-pinterest {
	background: #bd081c;
}

/* 服务信息（2列浮动） */
.stedi-extra-info {
	font-size: 14px;
	display: inline-block;
	width: 100%;
}

.stedi-extra-item {
	margin-bottom: 15px;
}

@media screen and (min-width: 641px) {
	.stedi-extra-item {
		width: 50%;
		position: relative;
		float: left;
		min-height: 30px;
		display: flex;
		align-items: center;
		justify-content: flex-start;
	}

	.stedi-extra-item span {
		padding-top: 4px;
		padding-right: 5px;
		display: flex;
	}
}

.stedi-icon {
	font-size: 26px;
	line-height: 25px;
	padding-right: 10px;
	display: inline-block;
	vertical-align: middle;
	width: 36px;
	height: 26px;
	position: relative;
}

/* 图标样式（纯 CSS 实现） */
.stedi-icon-heart::before {
	content: "";
	position: absolute;
	width: 12px;
	height: 12px;
	top: 2px;
	left: 4px;
	background: transparent;
	border: 2px solid currentColor;
	border-radius: 50% 50% 0 0;
	transform: rotate(-45deg);
	transform-origin: bottom center;
}

.stedi-icon-heart::after {
	content: "";
	position: absolute;
	width: 12px;
	height: 12px;
	top: 2px;
	left: 12px;
	background: transparent;
	border: 2px solid currentColor;
	border-radius: 50% 50% 0 0;
	transform: rotate(45deg);
	transform-origin: bottom center;
}

.stedi-icon-shield::before {
	content: "";
	position: absolute;
	inset: 2px 6px 0;
	border: 2px solid currentColor;
	border-radius: 3px 3px 50% 50%;
	clip-path: polygon(50% 0%, 100% 15%, 100% 70%, 50% 100%, 0% 70%, 0% 15%);
}

.stedi-icon-shield::after {
	content: "";
	position: absolute;
	width: 8px;
	height: 5px;
	left: 10px;
	top: 11px;
	border-left: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(-45deg);
}

.stedi-icon-flight::before {
	content: "";
	position: absolute;
	left: 4px;
	top: 6px;
	width: 20px;
	height: 2px;
	background: currentColor;
	transform: rotate(-30deg);
}

.stedi-icon-flight::after {
	content: "";
	position: absolute;
	left: 8px;
	top: 4px;
	width: 0;
	height: 0;
	border-left: 12px solid currentColor;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	transform: rotate(-30deg);
}

.stedi-icon-return::before {
	content: "";
	position: absolute;
	inset: 4px;
	border: 2px solid currentColor;
	border-left-color: transparent;
	border-radius: 50%;
	transform: rotate(-35deg);
}

.stedi-icon-return::after {
	content: "";
	position: absolute;
	left: 4px;
	top: 4px;
	width: 7px;
	height: 7px;
	border-left: 2px solid currentColor;
	border-top: 2px solid currentColor;
	transform: rotate(-20deg);
}

/* 变体选择器在 stedi 布局中的样式 */
.stedi-product-info .detail-variant {
	margin: 10px 0;
}

/* 图片轮播箭头按钮（无背景，纯线条） */
.stedi-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 20;
	width: 44px;
	height: 64px;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	color: #ffffff;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: color 0.2s ease, transform 0.2s ease;
	padding: 0;
	outline: none;
}

.stedi-arrow span {
	width: 18px;
	height: 18px;
	display: block;
	border-top: 3px solid currentColor;
	border-right: 3px solid currentColor;
	filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.6));
}

.stedi-prev {
	left: 20px;
}

.stedi-prev span {
	transform: translateX(3px) rotate(-135deg);
}

.stedi-next {
	left: auto;
	right: 20px;
}

@media screen and (min-width: 641px) {
	.stedi-prev {
		left: 30px;
	}

	.stedi-next {
		left: auto;
		right: calc(50% + 20px);
	}
}

@media screen and (min-width: 901px) {
	.stedi-next {
		left: auto;
		right: calc(40% + 20px);
	}
}

.stedi-next span {
	transform: translateX(-3px) rotate(45deg);
}

.stedi-arrow:hover {
	color: #ffffff;
	transform: translateY(-50%) scale(1.15);
}

@media screen and (max-width: 640px) {
	.stedi-arrow {
		width: 36px;
		height: 52px;
	}

	.stedi-arrow span {
		width: 14px;
		height: 14px;
		border-width: 2.5px;
	}

	.stedi-prev {
		left: 10px;
	}

	.stedi-next {
		left: auto;
		right: 10px;
	}
}

/* 黄金高饱和度 CTA 亮黄按钮（保留作为通用样式） */
.detail-action-area {
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: 100%;
}

.detail-action-area .detail-qty {
	width: 100% !important;
	min-height: 48px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.btn-cta-primary {
	background: #ffcc00 !important; /* Stedi 黄 */
	color: #0b1014 !important;
	font-weight: 900 !important;
	font-size: 15px !important;
	letter-spacing: 0.12em !important;
	text-transform: uppercase !important;
	border: none !important;
	border-radius: 4px !important;
	padding: 16px 24px !important;
	min-height: 54px !important;
	cursor: pointer !important;
	transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
	box-shadow: 0 4px 18px rgba(255, 204, 0, 0.22) !important;
	width: 100% !important;
	text-align: center !important;
}

.btn-cta-primary:hover {
	background: #ffe045 !important;
	transform: translateY(-2px) !important;
	box-shadow: 0 8px 24px rgba(255, 204, 0, 0.38) !important;
}

.btn-cta-primary:active {
	transform: translateY(0) !important;
	background: #e6b800 !important;
}

.btn-cta-secondary {
	background: rgba(255, 255, 255, 0.04) !important;
	color: #ffffff !important;
	font-weight: 700 !important;
	font-size: 14px !important;
	letter-spacing: 0.1em !important;
	text-transform: uppercase !important;
	border: 1px solid rgba(255, 255, 255, 0.16) !important;
	border-radius: 4px !important;
	padding: 15px 24px !important;
	min-height: 54px !important;
	cursor: pointer !important;
	transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
	width: 100% !important;
	text-align: center !important;
}

.btn-cta-secondary:hover {
	background: rgba(255, 255, 255, 0.08) !important;
	border-color: #ffcc00 !important;
	color: #ffcc00 !important;
	transform: translateY(-2px) !important;
}

.btn-cta-secondary:active {
	transform: translateY(0) !important;
	background: rgba(255, 255, 255, 0.12) !important;
}

/* 杂志大图纵向平铺画廊 */
.product-view-gallery {
	margin-top: 54px;
	margin-bottom: 74px;
	padding-inline: max(16px, calc((100vw - 1200px) / 2));
}

.product-view-gallery .gallery-grid {
	display: flex;
	flex-direction: column;
	gap: 28px;
	width: 100%;
}

.product-view-gallery .gallery-item {
	margin: 0;
	width: 100%;
	overflow: hidden;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: #0b1014;
	box-shadow: 0 16px 44px rgba(0, 0, 0, 0.34);
}

.product-view-gallery .gallery-item img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.product-view-gallery .gallery-item:hover img {
	transform: scale(1.015);
}

.detail-hero .detail-gallery {
	position: relative;
	width: 100%;
	max-width: 980px;
	margin-left: 0;
	justify-self: center;
}

.product-gallery-carousel {
	position: relative;
	width: 100%;
	overflow: visible;
	background: transparent;
	border: 0;
	border-radius: 0;
}

.pg-viewport {
	overflow: hidden;
	width: 100%;
}

.pg-track {
	display: flex;
	transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
	will-change: transform;
}

.pg-slide {
	flex: 0 0 100%;
	width: 100%;
	min-height: clamp(610px, 76vh, 880px);
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent;
}

.pg-slide img {
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: clamp(600px, 78vh, 880px);
	object-fit: contain;
	object-position: center;
	padding: 0;
	background: transparent;
	filter: brightness(0.86) contrast(1.04) drop-shadow(0 44px 54px rgba(0, 0, 0, 0.58));
	-webkit-mask-image: linear-gradient(90deg, #000 0%, #000 78%, rgba(0, 0, 0, 0.72) 90%, transparent 100%);
	mask-image: linear-gradient(90deg, #000 0%, #000 78%, rgba(0, 0, 0, 0.72) 90%, transparent 100%);
}

.pg-arrow {
	position: absolute;
	top: auto;
	bottom: clamp(76px, 9vh, 112px);
	transform: none;
	z-index: 10;
	width: 34px;
	height: 64px;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	color: rgba(255, 255, 255, 0.7);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: color 0.2s ease, transform 0.2s ease;
}

.pg-arrow span {
	width: 15px;
	height: 15px;
	display: block;
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
}

.pg-prev span {
	transform: translateX(2px) rotate(-135deg);
}

.pg-next span {
	transform: translateX(-2px) rotate(45deg);
}

.pg-arrow:hover {
	color: #ffffff;
	transform: scale(1.06);
}

.pg-prev {
	left: clamp(38px, 5vw, 88px);
}

.pg-next {
	right: auto;
	left: clamp(82px, calc(5vw + 44px), 132px);
}

.detail-main-count {
	position: absolute;
	display: none;
	left: clamp(22px, 3vw, 54px);
	bottom: clamp(18px, 3vh, 42px);
	width: fit-content;
	margin: 0;
	font-size: 12px;
	letter-spacing: 0.08em;
	color: rgba(255, 255, 255, 0.56);
	background: rgba(0, 0, 0, 0.22);
	padding: 4px 10px;
	border-radius: 999px;
}

.detail-thumbs-horizontal {
	display: none;
}

.detail-content {
	position: relative;
	right: auto;
	top: auto;
	transform: none;
	width: 420px;
	max-width: min(420px, 100%);
	justify-self: center;
	padding: var(--space-4) 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.detail-content::before {
	content: "";
	position: absolute;
	z-index: -1;
	inset: -44px -44px -38px -70px;
	background: radial-gradient(ellipse at 45% 42%, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.46) 52%, transparent 78%);
	pointer-events: none;
}

.detail-brand {
	display: inline-block;
	align-self: flex-start;
	padding: 4px 10px;
	border-radius: 4px;
	background: rgba(52, 123, 255, 0.15);
	font-size: 14px;
	font-weight: 700;
	color: var(--color-primary);
	text-transform: uppercase;
}

.product-main-title {
	margin: 0;
	font-size: clamp(38px, 3.4vw, 58px);
	line-height: 1.05;
	font-weight: 900;
	letter-spacing: 0;
	text-transform: uppercase;
	color: #ffffff;
}

.product-sub-title {
	margin: 0;
	font-size: 16px;
	line-height: 1.4;
	font-weight: 400;
	color: #aeb5bf;
	letter-spacing: 0.5px;
}

.detail-meta {
	color: rgba(255, 255, 255, 0.6);
	font-size: 18px;
	margin: 10px 0;
}

.detail-sku {
	color: rgba(255, 255, 255, 0.5);
	font-size: 14px;
	letter-spacing: 0.5px;
	order: 6;
}

/* Custom Dropdown Styling */
.detail-variant {
	position: relative;
	width: 100%;
	max-width: none;
	margin-top: 8px;
	order: 5;
}

.detail-variant-btn {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: rgba(255, 255, 255, 0.055);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 4px;
	padding: 10px 16px;
	cursor: pointer;
	text-align: left;
	transition: border-color 0.2s;
}

.detail-variant-btn:hover {
	border-color: var(--color-primary);
}

.detail-variant-label {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.label1 {
	font-size: 10px;
	color: #888;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.label2 {
	font-size: 14px;
	color: #fff;
	font-weight: 500;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.detail-variant-icon {
	color: #fff;
	display: flex;
	align-items: center;
	background: transparent !important;
}

.variant-dropdown-menu {
	position: absolute;
	top: calc(100% + 4px);
	left: 0;
	width: 100%;
	background: #1e1d1a;
	border: 1px solid #444;
	border-radius: 6px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.6);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
	z-index: 100;
}

.detail-variant.is-open .variant-dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.variant-list {
	max-height: 400px;
	overflow-y: auto;
}

.variant-item {
	display: grid;
	grid-template-columns: 60px 1fr 20px;
	gap: 12px;
	align-items: center;
	padding: 12px 12px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	cursor: pointer;
	transition: background 0.2s ease;
}

.variant-item:last-child {
	border-bottom: none;
}

.variant-item:hover {
	background: rgba(255, 255, 255, 0.05);
}

.v-thumb {
	width: 60px;
	height: 60px;
	background: #000;
	border-radius: 4px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.v-thumb img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.v-main {
	min-width: 0;
}

.v-main h4 {
	margin: 0 0 4px;
	font-size: 14px;
	line-height: 1.4;
	color: #fff;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	white-space: normal;
}

.v-sub {
	margin: 0;
	color: #aeb5bf;
	font-size: 12px;
}

.v-sku {
	margin: 4px 0 0;
	color: #888;
	font-size: 11px;
}

.v-action {
	display: flex;
	justify-content: flex-end;
}

.v-check {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	color: #22c55e;
	opacity: 0;
	transition: opacity 0.2s;
}

.variant-item.is-selected .v-check {
	opacity: 1;
}

.detail-price {
	display: flex;
	align-items: baseline;
	gap: 12px;
	margin-top: 8px;
	padding-top: 0;
	border-top: 0;
	order: 3;
	position: relative;
}

.detail-price-label {
	font-size: 0;
	font-weight: 600;
	color: #888;
}

.detail-price-label::after {
	content: "RRP";
	font-size: 14px;
	letter-spacing: 0.08em;
	color: rgba(255, 255, 255, 0.55);
}

.detail-price-value {
	font-size: 34px;
	font-weight: 900;
	color: #ffffff;
}

.detail-stock {
	margin-left: auto;
	padding: 5px 12px;
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.13);
	color: rgba(255, 255, 255, 0.72);
	font-size: 12px;
	line-height: 1;
}

.detail-action-area {
	display: grid;
	grid-template-columns: 128px 1fr;
	gap: 10px 14px;
	margin-top: 4px;
	height: auto;
	order: 4;
}

.detail-qty {
	display: flex;
	align-items: center;
	min-height: 56px;
	background: rgba(255, 255, 255, 0.055);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 4px;
	height: 100% !important;
	width: 100% !important;
	box-sizing: border-box;
	margin: 0 !important;
	padding: 0 !important;
	transform: none !important;
}

.qty-btn {
	width: 40px;
	height: 100%;
	background: transparent;
	border: none;
	color: #aeb5bf;
	font-size: 20px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: color 0.2s, background 0.2s;
	padding: 0;
	margin: 0;
	outline: none;
}

.qty-btn:hover {
	color: #fff;
	background: rgba(255, 255, 255, 0.05);
}

.qty-input {
	flex: 1;
	min-width: 0;
	height: 100%;
	background: transparent;
	border: none;
	color: #fff;
	text-align: center;
	font-size: 16px;
	font-weight: 600;
	-moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.qty-input:focus {
	outline: none;
}

.detail-buy {
	min-height: 56px;
	height: 100% !important;
	width: 100% !important;
	display: flex !important;
	align-items: center;
	justify-content: center;
	background: #3b3d40 !important;
	color: #ffffff !important;
	font-size: 16px !important;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1px;
	border: none !important;
	border-radius: 2px;
	cursor: pointer;
	transition: background-color 0.2s, color 0.2s, transform 0.1s;
	text-decoration: none;
	box-sizing: border-box;
	margin: 0 !important;
	padding: 0 !important;
	-webkit-text-fill-color: #ffffff !important;
	opacity: 1 !important;
	position: relative !important;
	top: 0 !important;
	bottom: 0 !important;
}

.detail-buy:hover {
	background: #f16622 !important;
	color: #ffffff !important;
	-webkit-text-fill-color: #ffffff !important;
}

.detail-buy:active {
	transform: scale(0.98);
}

.detail-buy-now {
	grid-column: 1 / -1;
	min-height: 52px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 2px;
	background: transparent;
	color: #ffffff;
	font-size: 15px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.1s ease;
}

.detail-buy-now:hover {
	background: rgba(255, 255, 255, 0.9);
	border-color: rgba(255, 255, 255, 0.9);
	color: #111111;
}

.detail-buy-now:active {
	transform: scale(0.985);
}

.detail-service-grid {
	order: 7;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px 24px;
	margin-top: 14px;
	padding-top: 8px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 14px;
	line-height: 1.35;
}

.detail-service-item {
	display: grid;
	grid-template-columns: 28px 1fr;
	align-items: center;
	gap: 10px;
	min-width: 0;
}

.detail-service-icon {
	position: relative;
	width: 28px;
	height: 28px;
	display: inline-block;
	color: rgba(255, 255, 255, 0.9);
}

.detail-service-heart::before,
.detail-service-heart::after {
	content: "";
	position: absolute;
	width: 11px;
	height: 18px;
	left: 13px;
	top: 5px;
	border: 2px solid currentColor;
	border-left: 0;
	border-bottom: 0;
	border-radius: 12px 12px 0 0;
	transform: rotate(45deg);
	transform-origin: 0 100%;
}

.detail-service-heart::after {
	left: 4px;
	transform: rotate(-45deg);
	transform-origin: 100% 100%;
}

.detail-service-shield::before {
	content: "";
	position: absolute;
	inset: 3px 5px 2px;
	border: 2px solid currentColor;
	border-radius: 12px 12px 14px 14px;
	clip-path: polygon(50% 0, 100% 18%, 88% 78%, 50% 100%, 12% 78%, 0 18%);
}

.detail-service-shield::after {
	content: "";
	position: absolute;
	width: 10px;
	height: 6px;
	left: 9px;
	top: 11px;
	border-left: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(-45deg);
}

.detail-service-ship::before {
	content: "";
	position: absolute;
	left: 3px;
	top: 9px;
	width: 15px;
	height: 9px;
	border: 2px solid currentColor;
}

.detail-service-ship::after {
	content: "";
	position: absolute;
	right: 3px;
	top: 12px;
	width: 8px;
	height: 6px;
	border: 2px solid currentColor;
	border-left: 0;
	box-shadow: -15px 8px 0 -5px currentColor, 0 8px 0 -5px currentColor;
}

.detail-service-return::before {
	content: "";
	position: absolute;
	inset: 5px;
	border: 2px solid currentColor;
	border-left-color: transparent;
	border-radius: 50%;
	transform: rotate(-35deg);
}

.detail-service-return::after {
	content: "";
	position: absolute;
	left: 4px;
	top: 5px;
	width: 8px;
	height: 8px;
	border-left: 2px solid currentColor;
	border-top: 2px solid currentColor;
	transform: rotate(-20deg);
}




.detail-currency {
	margin-top: 6px;
	font-size: 12px;
	letter-spacing: 0.6px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.55);
}

.detail-currency .currency-item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	padding: 2px 6px;
	margin: 0 2px;
	border-radius: 4px;
	cursor: pointer;
}

.detail-currency .currency-item.is-active {
	color: var(--color-primary);
}

/*
旧版 detail-buy 链接按钮样式保留，当前 STEDI 风详情首屏不启用。
.detail-buy {
	width: 30%;
	margin-top: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	border: 2px solid var(--color-primary);
	border-radius: 4px;
	color: var(--color-primary);
	text-decoration: none;
	font-weight: 800;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	font-size: 16px;
}

.detail-buy:hover {
	background: var(--color-primary);
	color: #313131;
}
*/

.detail-tabs {
	display: flex;
	gap: 34px;
	align-items: center;
	border-bottom: 1px solid rgba(255, 255, 255, 0.16);
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	flex-wrap: nowrap;
}

.detail-tabs::-webkit-scrollbar {
	display: none;
}

.detail-tab {
	flex-shrink: 0;
	position: relative;
	padding: 16px 0;
	white-space: nowrap;
	color: rgba(255, 255, 255, 0.65);
	background: transparent;
	border: 0;
	cursor: pointer;
}

.detail-tab.is-active {
	color: #ffffff;
	font-weight: 700;
}

.detail-tab.is-active::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 46px;
	height: 3px;
	background: var(--color-primary);
}

.detail-tab-panels {
	padding-top: 18px;
}

.tab-panel {
	display: none;
}

.tab-panel.is-active {
	display: block;
}

/* 尺寸图 / 热力图 图片网格 */
.tab-images-grid {
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding: 20px 0;
}

.tab-image-item {
	margin: 0;
	width: 100%;
	overflow: hidden;
	border-radius: 6px;
	background: #111;
}

.tab-image-item img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: contain;
}

.desc-text {
	color: rgba(255, 255, 255, 0.82);
	line-height: 1.8;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
	max-width: 920px;
}

.desc-text.expanded {
	display: block;
}

.spec-table {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px 40px;
}

@media (max-width: 640px) {
	.spec-table {
		grid-template-columns: 1fr;
		gap: 0;
	}
}

.spec-grid {
	display: grid;
	gap: 6px;
}

.spec-row {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 10px;
	padding: 10px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.spec-name {
	color: rgba(255, 255, 255, 0.85);
}

.spec-value {
	color: rgba(255, 255, 255, 0.8);
}

.pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 4px 8px;
	font-size: 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.14);
	color: #ffffff;
}

.suitable-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
}

@media (max-width: 1024px) {
	.suitable-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.suitable-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}
}

.s-card {
	background: #1a1a1a;
	padding: 0 0 16px;
	text-align: center;
	transition: background 0.2s ease;
	border-radius: 4px;
	overflow: hidden;
	text-decoration: none;
	color: #fff;
	display: block;
}

.s-card:hover {
	background: #2a2a2a;
}

.s-thumb {
	background: #000000;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.s-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1);
	transition: transform 280ms ease, filter 280ms ease;
}

.s-card:hover .s-thumb img {
	transform: scale(1.06);
	filter: brightness(0.9);
}

.s-title {
	margin: 12px 10px 6px;
	font-size: clamp(12px, 1.2vw, 15px);
	font-weight: 700;
	line-height: 1.4;
	word-break: break-word;
}

@media (max-width: 640px) {
	.s-title {
		font-size: 12px;
		margin: 8px 6px 4px;
	}
}

.s-sku {
	margin: 4px 10px;
	color: rgba(255, 255, 255, 0.55);
	font-size: 12px;
}

.s-rrp {
	margin: 4px 10px 0;
	color: #ffffff;
	font-size: 13px;
	font-weight: 600;
}




.detail-story {
	background: #1a1a1a;
	padding: 66px 0;
}

@media (max-width: 640px) {
	.detail-story {
		padding: 36px 0;
	}
}

.detail-story-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 54px 70px;
}

@media (max-width: 768px) {
	.detail-story-grid {
		grid-template-columns: 1fr;
		gap: 36px;
	}
}

.detail-story-block h3 {
	margin: 0 0 12px;
	font-size: 22px;
	line-height: 1.15;
	letter-spacing: 0.4px;
	text-transform: uppercase;
	color: #ffffff;
}

@media (max-width: 640px) {
	.detail-story-block h3 {
		font-size: 18px;
	}
}

.detail-story-block p {
	margin: 0;
	color: rgba(255, 255, 255, 0.72);
	line-height: 1.8;
	font-size: 14px;
	max-width: 520px;
}

.detail-story-images {
	margin-top: 52px;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}

.detail-story-image {
	margin: 0;
	background: #0b0f14;
	border: 1px solid rgba(255, 255, 255, 0.14);
	overflow: hidden;
}

.detail-story-image img {
	width: 100%;
	height: auto;
	display: block;
	transform: scale(1);
	transition: transform 280ms ease, filter 280ms ease;
}

.detail-story-image:hover img {
	transform: scale(1.06);
	filter: brightness(0.88);
}

/* Story 区图片轮播（视频上方 3 项一屏） */
.story-carousel {
	margin-top: 52px;
	position: relative;
	width: 100%;
}

/* 场景大图（支持多张 / GIF） */
.scene-image-section {
	margin-top: 40px;
	margin-bottom: 40px;
}

.scene-image-stack {
	display: flex;
	flex-direction: column;
	gap: 0;
	width: 100%;
	overflow: hidden;
	border-radius: 8px;
	background: #0b0f14;
}

.scene-image-figure {
	margin: 0;
	padding: 0;
	display: block;
	width: 100%;
	font-size: 0;
	line-height: 0;
}

.scene-image-figure img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
	margin: 0;
	padding: 0;
	vertical-align: top;
}

@media (max-width: 640px) {
	.scene-image-section {
		margin-top: 28px;
		margin-bottom: 28px;
	}

	.scene-image-stack {
		border-radius: 4px;
	}
}

.story-carousel-viewport {
	overflow: hidden;
	width: 100%;
}

.story-carousel-track {
	display: flex;
	transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
	will-change: transform;
}

.story-carousel-slide {
	flex: 0 0 calc(33.3333% - 14px);
	margin-right: 20px;
	position: relative;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: 8px;
	background: #0b0f14;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.story-carousel-slide:last-child {
	margin-right: 0;
}

.story-carousel-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.story-carousel-slide:hover img {
	transform: scale(1.04);
}

.story-carousel-title {
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	text-align: center;
	color: #ffffff;
	font-size: clamp(16px, 1.6vw, 22px);
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
	pointer-events: none;
	padding: 0 16px;
}

/* 轮播切换箭头 */
.story-carousel-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 5;
	width: 44px;
	height: 64px;
	border: 0;
	background: transparent;
	color: #ffffff;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.2s ease, color 0.2s ease;
	padding: 0;
}

.story-carousel-arrow span {
	width: 18px;
	height: 18px;
	display: block;
	border-top: 3px solid currentColor;
	border-right: 3px solid currentColor;
	filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.6));
}

.story-carousel-prev {
	left: -50px;
}

.story-carousel-prev span {
	transform: translateX(3px) rotate(-135deg);
}

.story-carousel-next {
	right: -50px;
}

.story-carousel-next span {
	transform: translateX(-3px) rotate(45deg);
}

.story-carousel-arrow:hover {
	transform: translateY(-50%) scale(1.15);
}

@media (max-width: 1024px) {
	.story-carousel-slide {
		flex: 0 0 calc(50% - 10px);
	}
}

@media (max-width: 640px) {
	.story-carousel {
		margin-top: 32px;
	}

	.story-carousel-slide {
		flex: 0 0 100%;
		margin-right: 12px;
	}

	.story-carousel-title {
		font-size: 16px;
	}

	.story-carousel-arrow {
		width: 36px;
		height: 52px;
	}

	.story-carousel-arrow span {
		width: 14px;
		height: 14px;
		border-width: 2.5px;
	}

	.story-carousel-prev {
		left: 8px;
	}

	.story-carousel-next {
		right: 8px;
	}
}

.category-tree .tree-level {
	margin-top: 6px;
	padding-left: 14px;
}

.category-tree .tree-toggle:hover,
.category-tree .tree-leaf:hover,
.category-tree .tree-toggle.active,
.category-tree .tree-leaf.active {
	color: var(--color-primary);
	border-color: var(--color-primary);
	background: rgba(255, 237, 0, 0.08);
}

.category-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 6px;
}

.category-list button {
	width: 100%;
	text-align: left;
	border: 1px solid var(--color-border);
	background: transparent;
	color: var(--color-muted);
	border-radius: var(--radius-sm);
	padding: 10px 12px;
	cursor: pointer;
}

.category-list button.active,
.category-list button:hover {
	color: var(--color-text);
	border-color: var(--color-primary);
	background: rgba(255, 237, 0, 0.08);
}

/*
旧版商品详情双栏布局保留，便于客户后续恢复。
.detail-layout {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: var(--space-4);
}

.detail-gallery {
	padding: var(--space-3);
}

.detail-main-image {
	aspect-ratio: 16 / 10;
	border-radius: var(--radius-md);
	background: linear-gradient(130deg, #2a3948, #0f151c);
}

.thumb-row {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 8px;
	margin-top: 10px;
}

.thumb-row button {
	height: 64px;
	border-radius: var(--radius-sm);
	border: 1px solid var(--color-border);
	background: #18212a;
	cursor: pointer;
}

.detail-content {
	padding: var(--space-4);
}
*/

.spec-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 8px;
}

.spec-list li {
	display: flex;
	justify-content: space-between;
	border-bottom: 1px dashed var(--color-border);
	padding-bottom: 8px;
	color: var(--color-muted);
}

.faq-list {
	display: grid;
	gap: 10px;
}

.faq-item {
	padding: var(--space-3);
}

.faq-item h3 {
	margin: 0 0 8px;
}

.video-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--space-3);
}

.video-card {
	padding: var(--space-2);
}

.video-card video {
	width: 100%;
	border-radius: var(--radius-sm);
}

.account-wrap {
	min-height: calc(100vh - 220px);
	display: flex;
	align-items: center;
	justify-content: center;
}

.account-card {
	width: min(480px, 100%);
	padding: var(--space-4);
}

.field {
	display: grid;
	gap: 6px;
	margin-bottom: var(--space-3);
}

.field input {
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	background: #111920;
	color: var(--color-text);
	padding: 11px 12px;
}

.form-note,
.error-text {
	color: var(--color-muted);
	font-size: 14px;
}

.error-text {
	color: #ffa3a3;
	min-height: 20px;
}

.content-title {
	background: #222;
	text-align: center;
	padding: 120px 0;
	font-size: 36px;
	font-weight: bold;
}

.title-line {
	width: 10%;
	height: 4px;
	margin: 20px auto;
	background: var(--color-primary);
}

@media (max-width: 1024px) {
	.scene-grid {
		display: grid;
		grid-auto-flow: column;
		grid-auto-columns: minmax(130px, 130px);
		grid-template-columns: none;
		overflow-x: auto;
		overflow-y: hidden;
		padding-bottom: 10px;
		justify-content: start;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: thin;
		scroll-snap-type: x proximity;
		margin-block: clamp(12px, 2.5vw, 22px);
	}

	.scene-card {
		scroll-snap-align: start;
	}

	.product-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.home-product-body h3 {
		font-size: 18px;
	}

	.home-product-sku,
	.home-product-desc {
		font-size: 14px;
	}

	.home-product-body .price {
		font-size: 16px;
	}

	.video-grid {
		grid-template-columns: 1fr 1fr;
	}

	.product-category-grid {
		display: grid;
		grid-auto-flow: column;
		grid-auto-columns: minmax(220px, 220px);
		grid-template-columns: none;
		overflow-x: auto;
		overflow-y: hidden;
		padding-bottom: 10px;
		justify-content: start;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: thin;
		scroll-snap-type: x proximity;
	}

	.product-category-card {
		min-height: 236px;
		padding: 24px 18px 22px;
		scroll-snap-align: start;
	}

	.product-category-card h3 {
		margin-top: 22px;
		font-size: 18px;
	}

	.product-category-card p,
	.product-category-more {
		font-size: 14px;
	}

	.home-feature-copy {
		top: 32px;
	}

	.home-feature-title {
		font-size: 25px;
	}

	.home-spotlight-header h2 {
		font-size: 44px;
	}

	.home-spotlight-header p {
		font-size: 18px;
	}

	.home-spotlight-layout {
		grid-template-columns: minmax(0, 1fr);
		gap: 22px;
	}

	.home-spotlight-cards {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 14px;
	}

	.home-news-card-grid {
		gap: 24px;
	}

	.home-news-card-body time {
		font-size: 16px;
	}

	.home-news-card-body h3 {
		font-size: 22px;
	}

	.home-news-card-body p {
		font-size: 16px;
		line-height: 1.6;
	}

	.home-spotlight-card {
		padding: 24px 20px;
	}

	.home-spotlight-card h3 {
		font-size: 18px;
	}

	.home-spotlight-card p {
		font-size: 15px;
		line-height: 1.55;
	}

	.home-news-item {
		grid-template-columns: 84px 1fr 180px;
		gap: 14px;
	}

	.home-news-date strong {
		font-size: clamp(22px, 2.8vw, 30px);
	}

	.home-news-main h3 {
		font-size: clamp(16px, 1.9vw, 22px);
	}

	.home-news-main p {
		font-size: clamp(13px, 1.2vw, 15px);
	}

	.home-news-thumb {
		max-width: 180px;
	}

	.detail-hero-stedi {
		min-height: auto;
	}

	.product-view-gallery {
		margin-top: 24px;
		margin-bottom: 44px;
		padding-inline: 16px;
	}

	.product-view-gallery .gallery-grid {
		gap: 18px;
	}
}

@media (max-width: 800px) {

	.two-col-layout,
	.detail-layout:not(.detail-hero) {
		grid-template-columns: 1fr;
	}

	.detail-hero-stedi {
		min-height: auto;
	}

	.stedi-product-info {
		padding: 20px 15px;
	}

	.side-panel {
		position: static;
	}

	.scene-grid {
		grid-auto-columns: minmax(120px, 120px);
		margin-block: 14px 20px;
	}

	.product-grid {
		grid-template-columns: 1fr 1fr;
	}

	.home-product-arrow {
		width: 36px;
		height: 36px;
		font-size: 26px;
	}

	.home-product-arrow-left {
		left: -10px;
	}

	.home-product-arrow-right {
		right: -10px;
	}

	.product-category-grid {
		grid-auto-columns: minmax(200px, 200px);
	}

	.product-category-card {
		min-height: 220px;
	}

	.home-feature-tiles {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.home-feature-tile {
		aspect-ratio: 16 / 9;
	}

	.home-spotlight-header {
		margin-bottom: 28px;
	}

	.home-spotlight-header h2 {
		font-size: 36px;
	}

	.home-spotlight-cards {
		display: flex;
		gap: 14px;
	}

	.home-news-card-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.home-project-gallery-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 24px;
	}
}

@media (max-width: 640px) {
	.hero {
		min-height: 280px;
	}

	.hero-slide {
		padding: var(--space-3);
	}

	.hero-content h2 {
		font-size: clamp(30px, 12vw, 48px);
		-webkit-text-stroke: 1.1px rgba(255, 255, 255, 0.82);
	}

	.detail-hero-stedi {
		min-height: auto;
	}

	.stedi-page-title {
		font-size: 25px;
	}

	.stedi-extra-item {
		width: 100%;
		float: none;
	}

	.product-main-title {
		font-size: clamp(24px, 8vw, 34px);
	}

	.detail-action-area {
		grid-template-columns: 96px minmax(0, 1fr);
		gap: 10px;
	}

	.detail-service-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.news-list,
	.product-grid,
	.video-grid {
		grid-template-columns: 1fr;
	}

	.home-news-card-grid {
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.home-news-card-body {
		padding-top: 16px;
	}

	.home-news-card-body time {
		margin-bottom: 10px;
		font-size: 15px;
	}

	.home-news-card-body h3 {
		font-size: 21px;
	}

	.home-news-card-body p {
		margin-top: 14px;
		font-size: 15px;
		line-height: 1.6;
	}

	.home-news-card-more {
		margin-top: 18px;
		font-size: 16px;
	}

	.home-project-gallery-grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.home-project-gallery-card {
		border-radius: 6px;
	}

	.home-project-gallery-more {
		margin-top: 34px;
	}

	.home-news-item {
		grid-template-columns: 76px 1fr;
		gap: 12px;
		align-items: start;
	}

	.home-news-thumb {
		grid-column: 2;
		justify-self: start;
		max-width: 132px;
		margin-top: 8px;
	}

	.home-news-date strong {
		font-size: 26px;
	}

	.home-news-date span {
		font-size: 14px;
	}

	.home-news-date em {
		font-size: 18px;
	}

	.home-news-main h3 {
		font-size: 18px;
		margin-bottom: 8px;
	}

	.home-news-main p {
		font-size: 14px;
	}

	.home-product-arrow {
		width: 34px;
		height: 34px;
		font-size: 24px;
		top: 32%;
	}

	.home-product-arrow-left {
		left: -6px;
	}

	.home-product-arrow-right {
		right: -6px;
	}

	.home-product-body {
		padding: 12px 10px 14px;
	}

	.home-product-body h3 {
		font-size: 16px;
	}

	.home-product-sku,
	.home-product-desc {
		font-size: 13px;
	}

	.discover-more-wrap {
		gap: 10px;
	}

	.discover-more-btn {
		min-width: 158px;
		height: 38px;
		font-size: 14px;
	}

	.product-category-grid {
		grid-auto-columns: minmax(180px, 180px);
		gap: 10px;
		padding-bottom: 8px;
	}

	.product-category-icon {
		width: 76px;
		height: 76px;
	}

	.product-category-card h3 {
		font-size: 16px;
		margin-top: 18px;
	}

	.product-category-card p,
	.product-category-more {
		font-size: 13px;
	}

	.product-category-card {
		min-height: 204px;
		padding: 20px 14px 18px;
	}

	.product-category-more {
		padding-top: 16px;
	}

	.home-feature-tiles {
		gap: 10px;
	}

	.home-feature-copy {
		top: 26px;
		width: min(90%, 360px);
	}

	.home-feature-eyebrow {
		font-size: 12px;
	}

	.home-feature-title {
		font-size: 22px;
	}

	.home-feature-desc,
	.home-feature-link {
		font-size: 13px;
	}

	.home-feature-link {
		margin-top: 12px;
	}

	.home-spotlight-header h2 {
		font-size: 30px;
	}

	.home-spotlight-header p {
		margin-top: 14px;
		font-size: 15px;
	}

	.home-spotlight-layout {
		gap: 16px;
	}

	.home-spotlight-card {
		padding: 22px 18px;
	}

	.home-spotlight-card h3 {
		margin-bottom: 12px;
		font-size: 17px;
	}

	.home-spotlight-card p {
		font-size: 14px;
	}

	.scene-grid {
		grid-auto-columns: minmax(108px, 108px);
		margin-block: 10px 16px;
	}

	.scene-card {
		min-height: 0;
	}

	.scene-thumb {
		width: 84px;
		height: 84px;
	}

	.scene-title {
		font-size: 12px;
	}

	.section-title-inline,
	.section-header-inline {
		flex-wrap: wrap;
		gap: 6px;
	}
}

img, input {
    border: none;
}

.wrapper {
    width: 1165px;
    margin: 0 auto;
}

.clearfix:after {
    clear: both;
    content: " ";
    display: block;
    font-size: 0;
    height: 0;
    visibility: hidden;
}
