@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@400;500;600;700&display=swap');

:root {
	--primary: #ff6b35;
	--primary-light: #ff8f64;
	--primary-dark: #e55a26;
	--secondary: #4a90e2;
	--secondary-light: #6aa5e5;
	--accent: #ff4081;
	--accent-light: #ff669e;
	--bg: #ffffff;
	--bg-secondary: #f8f9fa;
	--text: #2d3748;
	--text-secondary: #718096;
	--text-light: #a0aec0;
	--border: #e2e8f0;
	--border-light: #edf2f7;
	--shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
	--shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
	--radius: 12px;
	--radius-sm: 8px;
	--radius-lg: 16px;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body.home-eco {
	font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	background: var(--bg);
	color: var(--text);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

a {
	color: inherit;
	text-decoration: none;
	transition: all 0.3s ease;
}

img {
	max-width: 100%;
	display: block;
}

.hero-banner {
	background: linear-gradient(135deg, #fef6e4 0%, #f9f9f9 100%);
	position: relative;
	overflow: hidden;
}

.hero-banner::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 60%;
	height: 200%;
	background: radial-gradient(circle, rgba(255,107,53,0.1) 0%, transparent 70%);
	border-radius: 50%;
	z-index: 1;
}

.hero-banner::after {
	content: '';
	position: absolute;
	bottom: -30%;
	left: -10%;
	width: 40%;
	height: 150%;
	background: radial-gradient(circle, rgba(74,144,226,0.1) 0%, transparent 70%);
	border-radius: 50%;
	z-index: 1;
}

.hero-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 80px 20px 60px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	position: relative;
	z-index: 2;
}

.hero-badge-eco {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
	color: white;
	border-radius: 50px;
	padding: 8px 18px;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 20px;
	box-shadow: var(--shadow);
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0%, 100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
}

.badge-icon {
	font-size: 18px;
}

.hero-headline {
	font-size: 48px;
	font-weight: 700;
	line-height: 1.1;
	color: var(--text);
	margin: 0 0 20px;
	letter-spacing: -0.5px;
}

.hero-headline span {
	background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-desc {
	font-size: 18px;
	line-height: 1.6;
	color: var(--text-secondary);
	margin: 0 0 30px;
}

.hero-search-wrap {
	max-width: 500px;
}

.search-box {
	display: flex;
	background: white;
	border-radius: var(--radius);
	border: 2px solid var(--border-light);
	padding: 10px;
	box-shadow: var(--shadow-lg);
	transition: all 0.3s ease;
}

.search-box:focus-within {
	box-shadow: 0 0 0 4px rgba(255,107,53,0.2);
	border-color: var(--primary);
}

.search-input {
	flex: 1;
	border: none;
	background: transparent;
	padding: 12px 16px;
	font-size: 16px;
	outline: none;
	color: var(--text);
}

.search-input::placeholder {
	color: var(--text-light);
}

.search-btn {
	border: none;
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
	color: white;
	border-radius: var(--radius-sm);
	padding: 12px 24px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	white-space: nowrap;
	box-shadow: 0 4px 12px rgba(255,107,53,0.3);
}

.search-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(255,107,53,0.4);
}

.search-tags {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 16px;
	font-size: 14px;
	color: var(--text-secondary);
}

.tag-pill {
	background: white;
	border: 2px solid var(--border-light);
	border-radius: 50px;
	padding: 6px 16px;
	font-size: 14px;
	color: var(--text-secondary);
	transition: all 0.3s ease;
	box-shadow: var(--shadow);
}

.tag-pill:hover {
	border-color: var(--primary);
	color: var(--primary);
	background: rgba(255,107,53,0.05);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(255,107,53,0.2);
}

.hero-visual {
	display: flex;
	justify-content: center;
	align-items: center;
}

.hero-slider-wrap {
	width: 100%;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-xl);
	transform: rotate(2deg);
	transition: all 0.3s ease;
}

.hero-slider-wrap:hover {
	transform: rotate(0deg) scale(1.02);
}

.home-slider-bd ul {
	overflow: hidden;
	position: relative;
	width: 100%;
	height: 360px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.home-slider-bd ul li {
	float: left;
	width: 100%;
	height: 360px;
}

.home-slider-bd ul li img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.home-slider-hd {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
}

.home-slider-hd ul {
	overflow: hidden;
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	gap: 8px;
}

.home-slider-hd ul li {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255,255,255,0.6);
	cursor: pointer;
	transition: all 0.3s ease;
}

.home-slider-hd ul li.on {
	width: 30px;
	border-radius: 5px;
	background: white;
	box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-device-illustration {
	width: 100%;
	height: 320px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.device-circle {
	position: relative;
	width: 280px;
	height: 280px;
}

.device {
	position: absolute;
	border-radius: 28px;
	background: white;
	border: 3px solid var(--primary);
	box-shadow: var(--shadow-xl);
	animation: float 3s ease-in-out infinite;
}

@keyframes float {
	0%, 100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-10px);
	}
}

.device-phone {
	width: 100px;
	height: 180px;
	right: 20px;
	top: 10px;
	animation-delay: 0s;
}

.device-laptop {
	width: 180px;
	height: 110px;
	left: 0;
	bottom: 10px;
	animation-delay: 0.5s;
}

.device-watch {
	width: 65px;
	height: 75px;
	left: 110px;
	top: 0;
	animation-delay: 1s;
}

.section-stats {
	background: white;
	border-bottom: 1px solid var(--border-light);
	padding: 40px 0;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.stat-item {
	text-align: center;
	padding: 20px;
	background: var(--bg-secondary);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	transition: all 0.3s ease;
}

.stat-item:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
}

.stat-number {
	font-size: 36px;
	font-weight: 700;
	color: var(--primary);
	line-height: 1.2;
	margin-bottom: 8px;
}

.stat-label {
	font-size: 14px;
	color: var(--text-secondary);
	font-weight: 500;
}

.section-features {
	padding: 80px 0 60px;
	background: var(--bg-secondary);
}

.section-head {
	text-align: center;
	margin-bottom: 50px;
}

.section-title {
	font-size: 36px;
	font-weight: 700;
	color: var(--text);
	margin: 0 0 12px;
	position: relative;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: -12px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 4px;
	background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
	border-radius: 2px;
}

.section-sub {
	font-size: 18px;
	color: var(--text-secondary);
	margin: 20px 0 0;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.feature-cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.feature-card {
	background: white;
	border-radius: var(--radius-lg);
	padding: 30px 24px;
	border: 2px solid var(--border-light);
	box-shadow: var(--shadow);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.feature-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 100%;
	background: linear-gradient(180deg, var(--primary) 0%, var(--accent) 100%);
}

.feature-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-xl);
	border-color: var(--primary);
}

.feature-icon-wrap {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	margin-bottom: 20px;
	background: linear-gradient(135deg, rgba(255,107,53,0.1) 0%, rgba(255,64,129,0.1) 100%);
}

.feature-card h3 {
	font-size: 18px;
	font-weight: 600;
	margin: 0 0 12px;
	color: var(--text);
}

.feature-card p {
	font-size: 15px;
	line-height: 1.6;
	color: var(--text-secondary);
	margin: 0;
}

.section-categories {
	padding: 80px 0 60px;
	background: white;
}

.category-grid-eco {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.category-item {
	display: flex;
	align-items: center;
	gap: 16px;
	background: var(--bg-secondary);
	border-radius: var(--radius-lg);
	padding: 24px 20px;
	border: 2px solid var(--border-light);
	box-shadow: var(--shadow);
	transition: all 0.3s ease;
	cursor: pointer;
	position: relative;
	overflow: hidden;
}

.category-item::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(135deg, rgba(255,107,53,0.1) 0%, rgba(74,144,226,0.1) 100%);
	transform: rotate(45deg);
	transition: all 0.3s ease;
}

.category-item:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-lg);
	border-color: var(--primary);
}

.category-item:hover::before {
	opacity: 1;
}

.category-img {
	width: 60px;
	height: 60px;
	border-radius: var(--radius);
	background: white;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	box-shadow: var(--shadow);
	position: relative;
	z-index: 1;
}

.cat-icon {
	font-size: 30px;
}

.category-info {
	flex: 1;
	min-width: 0;
	position: relative;
	z-index: 1;
}

.category-info h4 {
	font-size: 17px;
	font-weight: 600;
	margin: 0 0 4px;
	color: var(--text);
}

.category-info p {
	font-size: 14px;
	color: var(--text-secondary);
	margin: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.category-arrow {
	font-size: 20px;
	color: var(--text-light);
	transition: all 0.3s ease;
	position: relative;
	z-index: 1;
}

.category-item:hover .category-arrow {
	color: var(--primary);
	transform: translateX(5px);
}

.section-products {
	padding: 60px 0 80px;
	background: var(--bg-secondary);
}

.section-head-split {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 30px;
	flex-wrap: wrap;
	gap: 20px;
}

.filter-bar-eco {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

.filter-select {
	border: 2px solid var(--border-light);
	border-radius: var(--radius-sm);
	padding: 10px 16px;
	font-size: 15px;
	background: white;
	color: var(--text);
	cursor: pointer;
	outline: none;
	transition: all 0.3s ease;
	box-shadow: var(--shadow);
}

.filter-select:focus {
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(255,107,53,0.1);
}

.btn-apply {
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
	color: white;
	border: none;
	border-radius: var(--radius-sm);
	padding: 10px 20px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(255,107,53,0.3);
}

.btn-apply:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(255,107,53,0.4);
}

.btn-reset {
	background: white;
	color: var(--text-secondary);
	border: 2px solid var(--border-light);
	border-radius: var(--radius-sm);
	padding: 10px 16px;
	font-size: 15px;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: var(--shadow);
}

.btn-reset:hover {
	border-color: var(--primary);
	color: var(--primary);
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(255,107,53,0.2);
}

.tag-groups-eco {
	background: white;
	border-radius: var(--radius);
	padding: 20px;
	margin-bottom: 24px;
	border: 2px solid var(--border-light);
	box-shadow: var(--shadow);
}

.tag-row {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 16px;
}

.tag-row:last-child {
	margin-bottom: 0;
}

.tag-label {
	font-size: 14px;
	color: var(--text-secondary);
	font-weight: 600;
	white-space: nowrap;
}

.tag-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.tag-item {
	background: var(--bg-secondary);
	border: 2px solid var(--border-light);
	border-radius: var(--radius-sm);
	padding: 8px 16px;
	font-size: 14px;
	color: var(--text-secondary);
	transition: all 0.3s ease;
	box-shadow: var(--shadow);
}

.tag-item:hover {
	border-color: var(--primary);
	color: var(--primary);
	background: rgba(255,107,53,0.05);
	transform: translateY(-2px);
}

.tag-active {
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
	color: white;
	border-color: transparent;
	box-shadow: 0 4px 12px rgba(255,107,53,0.4);
}

.product-list-eco {
	background: white;
	border-radius: var(--radius-lg);
	border: 2px solid var(--border-light);
	padding: 24px;
	box-shadow: var(--shadow-lg);
}

.product-grid-eco {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.product-card-eco {
	background: var(--bg-secondary);
	border-radius: var(--radius);
	overflow: hidden;
	border: 2px solid var(--border-light);
	transition: all 0.3s ease;
	box-shadow: var(--shadow);
}

.product-card-eco:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-lg);
	border-color: var(--primary);
}

.product-img-wrap {
	width: 100%;
	padding-top: 100%;
	position: relative;
	background: white;
}

.product-img-wrap img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.product-info {
	padding: 16px;
}

.product-name {
	font-size: 15px;
	font-weight: 600;
	color: var(--text);
	margin: 0 0 10px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.product-price-row {
	display: flex;
	align-items: baseline;
	gap: 6px;
	margin-bottom: 10px;
}

.price-main {
	font-size: 20px;
	font-weight: 700;
	color: var(--primary);
}

.price-tag {
	font-size: 14px;
	color: var(--text-light);
}

.price-consult {
	font-size: 14px;
	color: var(--accent);
	font-weight: 600;
}

.product-meta-row {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.meta-tag {
	background: rgba(255,107,53,0.1);
	color: var(--primary);
	border-radius: 6px;
	padding: 4px 10px;
	font-size: 12px;
	font-weight: 500;
}

.empty-state-eco {
	text-align: center;
	padding: 60px 20px;
	color: var(--text-secondary);
}

.empty-icon {
	font-size: 60px;
	margin-bottom: 16px;
}

.empty-state-eco h4 {
	font-size: 20px;
	font-weight: 600;
	color: var(--text);
	margin: 0 0 12px;
}

.empty-state-eco p {
	font-size: 16px;
	margin: 0;
}

.pagination-wrap-eco {
	margin-top: 30px;
	display: flex;
	justify-content: center;
}

.pagination-wrap-eco .pagination a,
.pagination-wrap-eco .pagination span {
	background: white;
	border: 2px solid var(--border-light);
	color: var(--text-secondary);
	border-radius: var(--radius-sm);
	padding: 8px 16px;
	margin: 0 4px;
	transition: all 0.3s ease;
	box-shadow: var(--shadow);
}

.pagination-wrap-eco .pagination a:hover {
	border-color: var(--primary);
	color: var(--primary);
	transform: translateY(-2px);
}

.pagination-wrap-eco .pagination .current {
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
	color: white;
	border-color: transparent;
	box-shadow: 0 4px 12px rgba(255,107,53,0.3);
}

.section-steps-eco {
	padding: 80px 0;
	background: white;
}

.steps-flow {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}

.step-flow-item {
	background: var(--bg-secondary);
	border-radius: var(--radius-lg);
	padding: 30px 24px;
	border: 2px solid var(--border-light);
	box-shadow: var(--shadow);
	text-align: center;
	min-width: 220px;
	flex: 1;
	transition: all 0.3s ease;
	position: relative;
}

.step-flow-item:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-lg);
	border-color: var(--primary);
}

.step-num {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
	color: white;
	font-size: 20px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
	box-shadow: 0 4px 12px rgba(255,107,53,0.3);
}

.step-content h4 {
	font-size: 17px;
	font-weight: 600;
	color: var(--text);
	margin: 0 0 8px;
}

.step-content p {
	font-size: 14px;
	color: var(--text-secondary);
	margin: 0;
	line-height: 1.6;
}

.step-arrow {
	font-size: 28px;
	color: var(--text-light);
	flex-shrink: 0;
	font-weight: bold;
}

@media (max-width: 1024px) {
	.hero-content {
		grid-template-columns: 1fr;
		gap: 40px;
		text-align: center;
	}

	.hero-headline {
		font-size: 40px;
	}

	.hero-search-wrap {
		max-width: 100%;
	}

	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.feature-cards {
		grid-template-columns: repeat(2, 1fr);
	}

	.category-grid-eco {
		grid-template-columns: repeat(2, 1fr);
	}

	.product-grid-eco {
		grid-template-columns: repeat(3, 1fr);
	}

	.steps-flow {
		gap: 16px;
	}

	.step-flow-item {
		min-width: 180px;
		padding: 24px 20px;
	}
}

@media (max-width: 768px) {
	.hero-banner {
		padding: 60px 0 40px;
	}

	.hero-content {
		padding: 60px 20px 40px;
		gap: 30px;
	}

	.hero-headline {
		font-size: 32px;
	}

	.hero-desc {
		font-size: 16px;
	}

	.search-box {
		flex-direction: column;
		gap: 12px;
	}

	.search-btn {
		width: 100%;
	}

	.section-features,
	.section-categories,
	.section-products,
	.section-steps-eco {
		padding: 60px 0;
	}

	.section-title {
		font-size: 28px;
	}

	.feature-cards,
	.category-grid-eco {
		grid-template-columns: 1fr;
	}

	.product-grid-eco {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}

	.section-head-split {
		flex-direction: column;
		align-items: flex-start;
	}

	.filter-bar-eco {
		width: 100%;
	}

	.filter-select {
		flex: 1;
	}

	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}

	.stat-number {
		font-size: 30px;
	}

	.steps-flow {
		flex-direction: column;
	}

	.step-arrow {
		transform: rotate(90deg);
		font-size: 24px;
	}

	.step-flow-item {
		width: 100%;
	}
}

@media (max-width: 480px) {
	.hero-headline {
		font-size: 28px;
	}

	.product-grid-eco {
		grid-template-columns: 1fr;
	}

	.stats-grid {
		grid-template-columns: 1fr;
	}
}
