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

.hero {
	position: relative;
	overflow: hidden;
	min-height: clamp(320px, 46vw, 520px);
	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(255, 237, 0, 0.9);
	background: rgba(255, 237, 0, 0.28);
	cursor: pointer;
}

.hero-dot.active {
	background: #ffed00;
}

.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(255, 237, 0, 0.6);
	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(255, 237, 0, 0.95);
}

.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: #ffed00;
}

.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: 14px 10px;
}

.product-category-card {
	min-height: 220px;
	padding: 14px 12px 20px;
	border-radius: 10px;
	border: 1px solid transparent;
	background: rgba(255, 255, 255, 0.02);
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	transition: border-color 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.product-category-card:hover {
	border-color: rgba(255, 237, 0, 0.52);
	transform: translateY(-2px);
	background: rgba(255, 255, 255, 0.04);
}

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

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

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

.product-category-card p {
	margin: 0;
	min-height: 48px;
	color: #aab2bd;
	font-size: 14px;
	line-height: 1.35;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.product-category-more {
	margin-top: auto;
	padding-top: 12px;
	font-size: 18px;
	font-weight: 700;
	color: var(--color-primary);
	letter-spacing: 0.4px;
}

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

.section-product-categories {
	background: linear-gradient(180deg, #171a1f, #14171c);
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.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: block;
	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;
}

.detail-gallery-inner {
	display: grid;
	grid-template-columns: 68px 1fr;
	gap: 16px;
	align-items: stretch;
}

.detail-thumbs {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.detail-thumb {
	width: 68px;
	height: 68px;
	border-radius: var(--radius-sm);
	border: 1px solid rgba(255, 255, 255, 0.14);
	background: #0f151c;
	cursor: pointer;
	padding: 0;
	overflow: hidden;
}

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

.detail-thumb.is-active {
	border-color: var(--color-primary);
	box-shadow: 0 0 0 1px var(--color-primary) inset;
}

.detail-main {
	position: relative;
	margin: 0;
	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;
	min-height: 420px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.detail-main img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 34px;
}

.detail-main-count {
	position: absolute;
	right: 14px;
	bottom: 12px;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.55);
}

.detail-content {
	padding: var(--space-4);
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.detail-brand {
	font-size: 14px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.9);
}

.detail-content h1 {
	margin: 0;
	font-size: 36px;
	line-height: 1.1;
	letter-spacing: 0.4px;
	text-transform: uppercase;
}

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

.detail-sku {
	color: rgba(255, 255, 255, 0.7);
	font-size: 16px;
}

.detail-price {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 8px;
	margin: 10px 0;
}

.detail-price-label {
	font-weight: 700;
	color: rgba(255, 255, 255, 0.85);
}

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

.detail-price-note {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.55);
}

.detail-variant {
	width: min(280px, 100%);
	border: 2px solid #dbdbdb;
	border-radius: 6px;
	box-sizing: border-box;
}

.detail-variant-btn {
	width: 100%;
	height: 55px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border: none;
	background: transparent;
	color: #ffffff;
	text-transform: uppercase;
	cursor: pointer;
	padding: 0;
}

.detail-variant-label {
	padding-left: 15px;
	font-size: 10px;
	letter-spacing: 0.8px;
	text-transform: uppercase;
	color: #dbdbdb;
}

.detail-variant-label .label1 {
	font-size: 11px;
	margin-bottom: 3px;
}

.detail-variant-label .label2 {
	font-size: 16px;
	font-weight: bold;
	color: #ffffff;
}


.detail-variant-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 55px;
	height: 55px;
	background: #dbdbdb;
}
.detail-variant-icon img {
	width: 32px;
	height: 32px;
	display: block;
}

.detail-variant:hover {
	border-color: #ffffff;
}

.detail-variant:hover .detail-variant-icon {
	background: #ffffff;
}

.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 {
	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);
}

.detail-tab {
	position: relative;
	padding: 16px 0;
	
	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;
}

.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;
}

.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;
}

.s-card {
	background: #1a1a1a;
	padding: 0 0 16px;
	text-align: center;
	transition: background 0.2s ease;
}

.s-card:hover {
	background: #555;
}

.s-thumb {
	background: #000000;
	height: 220px;
	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, background 280ms ease;
}

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

.s-title {
	margin-top: 30px;
	font-weight: 800;
}

.s-sku {
	margin: 12px 0;
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
}

.s-rrp {
	color: #ffffff;
	font-size: 16px;
	font-weight: bold;
}

body.variant-open {
	overflow: hidden;
}

.variant-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.4);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s ease, visibility 0.2s ease;
	z-index: 50;
}

.variant-drawer {
	position: fixed;
	top: 0;
	right: 0;
	width: min(520px, 90vw);
	height: 100vh;
	background: #1a1a1a;
	transform: translateX(100%);
	transition: transform 0.28s ease;
	z-index: 51;
}

.variant-drawer.is-open {
	transform: translateX(0);
}

.variant-overlay.is-open {
	opacity: 1;
	visibility: visible;
}

.variant-drawer-inner {
	height: 100%;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.variant-drawer-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 18px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.variant-drawer-header h3 {
	margin: 0;
	font-size: 18px;
	color: rgba(255, 255, 255, 0.9);
}

.variant-close {
	width: 36px;
	height: 36px;
	border: 0;
	border-radius: 4px;
	cursor: pointer;
	background: transparent;
	color: #fff;
	font-size: 26px;
	line-height: 1;
}

.variant-list {
	flex: 1;
	overflow-y: auto;
	padding: 8px 8px 18px;
}

.variant-item {
	display: grid;
	grid-template-columns: 96px 1fr auto;
	gap: 16px;
	align-items: center;
	padding: 14px 10px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

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

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

.v-main h4 {
	margin: 0 0 6px;
	font-size: 16px;
	line-height: 1.25;
	color: #fff;
}

.v-sub,
.v-sku {
	margin: 0;
	color: rgba(255, 255, 255, 0.75);
	font-size: 12px;
}

.v-action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 112px;
	height: 38px;
}

.v-btn {
	background: #000;
	color: #fff;
	border: 0;
	border-radius: 4px;
	cursor: pointer;
	padding: 0 12px;
}

.v-btn:hover {
	background: var(--color-primary);
	color: #000;
}

.v-arrow {
	margin-left: 6px;
}

.v-selected {
	color: rgba(255, 255, 255, 0.85);
	font-weight: 700;
}

.v-check {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	border: 2px solid rgba(255, 255, 255, 0.85);
	border-radius: 50%;
	margin-right: 8px;
	font-size: 12px;
}
.detail-story {
	background: #1a1a1a;
	padding: 66px 0;
}

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

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

.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);
}

.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 {
		grid-template-columns: repeat(auto-fit, minmax(130px, 130px));
		margin-block: clamp(12px, 2.5vw, 22px);
	}

	.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;
	}

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

	.product-category-card h3 {
		font-size: 17px;
	}

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

	.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;
	}
}

@media (max-width: 800px) {

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

	.side-panel {
		position: static;
	}

	.scene-grid {
		grid-template-columns: repeat(auto-fit, 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: 188px;
	}
}

@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);
	}

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

	.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: 68px;
		height: 68px;
	}

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

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

	.scene-grid {
		grid-template-columns: repeat(auto-fit, minmax(108px, 108px));
		justify-content: center;
		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;
}