/* Homepage featured products — 4 category rows × 4 products */
.index-products{
	background: #fff;
	padding: 72px 0 80px;
}
.index-products-hd{
	text-align: center;
	margin-bottom: 48px;
}
.index-product-rows{
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.index-products-hd .tag{
	display: inline-block;
	background: #0b3a6e;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	padding: 6px 16px;
	border-radius: 6px;
	margin-bottom: 16px;
	line-height: 1.4;
}
.index-products-hd h1{
	font-size: 36px;
	font-weight: 700;
	color: #0b3a6e;
	line-height: 1.3;
	margin: 0 0 14px;
}
.index-products-hd p{
	font-size: 16px;
	color: #64748b;
	line-height: 1.7;
	max-width: 640px;
	margin: 0 auto;
}
.index-product-grid{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}
.index-product-card{
	background: #fff;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(11,58,110,.08);
	transition: transform .35s ease, box-shadow .35s ease;
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
}
.index-product-card:hover{
	transform: translateY(-8px);
	box-shadow: 0 20px 60px rgba(11,58,110,.16);
}
.index-product-card .img{
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: #f8fafc;
	position: relative;
}
.index-product-card .img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s ease;
}
.index-product-card:hover .img img{
	transform: scale(1.08);
}
.index-product-card .cat{
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 2;
	background: #f59e0b;
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	padding: 5px 12px;
	border-radius: 20px;
	line-height: 1.3;
	max-width: calc(100% - 28px);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.index-product-card .body{
	padding: 22px 20px 20px;
	display: flex;
	flex-direction: column;
	flex: 1;
}
.index-product-card .body h3{
	font-size: 17px;
	font-weight: 700;
	margin: 0 0 10px;
	line-height: 1.4;
	color: #1e293b;
	min-height: 2.8em;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.index-product-card .body h3 a{
	color: inherit;
	transition: color .3s ease;
}
.index-product-card:hover .body h3 a{
	color: #0b3a6e;
}
.index-product-card .body p{
	font-size: 14px;
	color: #64748b;
	line-height: 1.6;
	margin: 0 0 16px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	min-height: 2.8em;
}
.index-product-card .meta{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 12px;
	padding-top: 14px;
	border-top: 1px solid #e2e8f0;
	flex: 1;
}
.index-product-card .meta span{
	font-size: 13px;
	color: #94a3b8;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	min-width: 0;
}
.index-product-card .meta a{
	font-size: 13px;
	color: #0b3a6e;
	font-weight: 600;
	flex-shrink: 0;
	transition: opacity .25s ease;
}
.index-product-card .meta a:hover{
	opacity: .75;
}
.index-product-card .price{
	display: block;
	width: 100%;
	box-sizing: border-box;
	text-align: center;
	background: #0b3a6e;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	line-height: 42px;
	height: 42px;
	border-radius: 2px;
	margin-top: 14px;
	flex-shrink: 0;
	transition: background .25s ease;
}
.index-product-card .price:hover{
	background: #0a223f;
	color: #fff;
	text-decoration: none;
}
.index-products-more{
	text-align: center;
	margin-top: 44px;
}
.index-products-more .amore2{
	margin-top: 0;
}
@media (max-width: 1200px){
	.index-product-grid{
		grid-template-columns: repeat(3, 1fr);
	}
	.index-products-hd h1{
		font-size: 30px;
	}
}
@media (max-width: 900px){
	.index-products{
		padding: 56px 0 60px;
	}
	.index-product-grid{
		grid-template-columns: repeat(2, 1fr);
		gap: 18px;
	}
}
@media (max-width: 560px){
	.index-products{
		padding: 40px 0 48px;
	}
	.index-products-hd{
		margin-bottom: 28px;
	}
	.index-products-hd h1{
		font-size: 24px;
	}
	.index-products-hd p{
		font-size: 14px;
	}
	.index-product-grid{
		grid-template-columns: 1fr;
		gap: 16px;
	}
	.index-product-card .body{
		padding: 18px 16px 16px;
	}
}

/* Homepage About — WHO WE ARE (earth bg + main + 4 cards) */
.index-who{
	position: relative;
	width: 100%;
	padding: 72px 0 80px;
	overflow: hidden;
	background:
		linear-gradient(180deg, rgba(4,14,32,.52) 0%, rgba(4,14,32,.28) 45%, rgba(4,14,32,.58) 100%),
		radial-gradient(ellipse 130% 95% at 50% 118%, #5eb0e0 0%, #2a7eb8 18%, #14548f 38%, #0a2f5c 58%, #061428 78%, #020810 100%);
	background-color: #061428;
}
.index-who-hd{
	text-align: center;
	margin-bottom: 40px;
}
.index-who-hd h2{
	margin: 0 0 12px;
	font-size: 34px;
	font-weight: 700;
	color: #fff;
	letter-spacing: .04em;
	text-transform: uppercase;
	line-height: 1.25;
}
.index-who-hd p{
	margin: 0 auto;
	max-width: 720px;
	font-size: 16px;
	line-height: 1.6;
	color: rgba(255,255,255,.88);
}
.index-who-main{
	display: flex;
	align-items: stretch;
	min-height: 320px;
	margin-bottom: 22px;
	box-shadow: 0 16px 40px rgba(0,0,0,.28);
}
.index-who-media{
	position: relative;
	width: 50%;
	flex-shrink: 0;
	overflow: hidden;
	background: #0a223f;
}
.index-who-media img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	min-height: 320px;
}
.index-who-media:has(img:not(.index-who-media-fallback)) .index-who-media-fallback{
	display: none;
}
.index-who-media-fallback{
	position: absolute;
	inset: 0;
}
.index-who-play{
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 2;
	width: 72px;
	height: 72px;
	margin: -36px 0 0 -36px;
	border-radius: 50%;
	background: rgba(255,255,255,.92);
	color: #0b3a6e;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 24px rgba(0,0,0,.25);
	transition: transform .25s ease, background .25s ease;
}
.index-who-play .iconfont{
	font-size: 28px;
	margin-left: 3px;
	line-height: 1;
}
.index-who-play:hover{
	transform: scale(1.06);
	background: #fff;
	text-decoration: none;
}
.index-who-intro{
	width: 50%;
	background: #fff;
	padding: 42px 40px 36px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
}
.index-who-intro h3{
	margin: 0 0 18px;
	font-size: 22px;
	font-weight: 700;
	color: #1e293b;
	line-height: 1.35;
	text-transform: uppercase;
	letter-spacing: .02em;
}
.index-who-intro .des{
	flex: 1;
	margin: 0;
	font-size: 15px;
	line-height: 1.75;
	color: #475569;
}
.index-who-more{
	display: inline-block;
	margin-top: 24px;
	font-size: 15px;
	font-weight: 700;
	color: #c0392b;
	line-height: 1.4;
	transition: opacity .25s ease;
}
.index-who-more:hover{
	opacity: .8;
	text-decoration: none;
	color: #a93226;
}
.index-who-grid{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.index-who-grid li{
	background: #fff;
	overflow: hidden;
	box-shadow: 0 10px 28px rgba(0,0,0,.22);
}
.index-who-grid .pic{
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #0a223f;
}
.index-who-grid .pic img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .45s ease;
}
.index-who-grid li:hover .pic img{
	transform: scale(1.06);
}
.index-who-grid .txt{
	background: #253556;
	padding: 18px 16px 20px;
	min-height: 148px;
	box-sizing: border-box;
}
.index-who-grid .txt b{
	display: block;
	margin: 0 0 10px;
	font-size: 17px;
	font-weight: 700;
	color: #fff;
	line-height: 1.3;
}
.index-who-grid .txt p{
	margin: 0;
	font-size: 13px;
	line-height: 1.55;
	color: rgba(255,255,255,.88);
	display: -webkit-box;
	-webkit-line-clamp: 5;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
@media (max-width: 1200px){
	.index-who-hd h2{
		font-size: 28px;
	}
	.index-who-intro{
		padding: 32px 28px 28px;
	}
	.index-who-intro h3{
		font-size: 18px;
	}
	.index-who-grid .txt{
		min-height: 160px;
	}
}
@media (max-width: 960px){
	.index-who{
		padding: 56px 0 60px;
	}
	.index-who-main{
		flex-direction: column;
		min-height: 0;
	}
	.index-who-media,
	.index-who-intro{
		width: 100%;
	}
	.index-who-media img{
		min-height: 240px;
		aspect-ratio: 16 / 9;
		height: auto;
	}
	.index-who-grid{
		grid-template-columns: repeat(2, 1fr);
		gap: 14px;
	}
}
@media (max-width: 560px){
	.index-who{
		padding: 40px 0 48px;
	}
	.index-who-hd{
		margin-bottom: 28px;
	}
	.index-who-hd h2{
		font-size: 22px;
	}
	.index-who-hd p{
		font-size: 14px;
	}
	.index-who-intro{
		padding: 24px 20px 22px;
	}
	.index-who-play{
		width: 56px;
		height: 56px;
		margin: -28px 0 0 -28px;
	}
	.index-who-play .iconfont{
		font-size: 22px;
	}
	.index-who-grid{
		grid-template-columns: 1fr;
	}
	.index-who-grid .txt{
		min-height: 0;
	}
}

/* Homepage Best Sellers carousel */
.index-best{
	background: #fff;
	padding: 72px 0 80px;
	position: relative;
}
.index-best-hd{
	position: relative;
	text-align: center;
	margin-bottom: 40px;
	min-height: 72px;
}
.index-best-tit h2{
	margin: 0 0 10px;
	font-size: 34px;
	font-weight: 700;
	color: #1a1a1a;
	letter-spacing: .04em;
	text-transform: uppercase;
	line-height: 1.25;
}
.index-best-tit p{
	margin: 0;
	font-size: 15px;
	color: #94a3b8;
	line-height: 1.5;
}
.index-best-nav{
	position: absolute;
	right: 0;
	top: 0;
	display: flex;
	gap: 8px;
	z-index: 2;
}
.index-best .swiper-button-prev,
.index-best .swiper-button-next{
	position: static;
	width: 40px;
	height: 40px;
	margin: 0;
	background: #9ca3af !important;
	border-radius: 2px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background .25s ease;
}
.index-best .swiper-button-prev span,
.index-best .swiper-button-next span{
	font-size: 18px;
	color: #fff;
	line-height: 1;
}
.index-best .swiper-button-prev:hover,
.index-best .swiper-button-next:hover{
	background: #0b3a6e !important;
}
.index-best-swiper{
	overflow: hidden;
	padding-bottom: 4px;
}
.index-best-card{
	background: #fff;
	height: 100%;
	display: flex;
	flex-direction: column;
}
.index-best-card .pic{
	display: block;
	position: relative;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: #f8fafc;
	border: 1px solid #eef2f7;
}
.index-best-card .pic img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 12px;
	box-sizing: border-box;
	transition: transform .4s ease;
}
.index-best-card:hover .pic img{
	transform: scale(1.04);
}
.index-best-card .vtag{
	position: absolute;
	left: 10px;
	bottom: 10px;
	z-index: 1;
	background: rgba(100,116,139,.85);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .06em;
	padding: 4px 8px;
	border-radius: 3px;
	line-height: 1.2;
}
.index-best-card .body{
	padding: 16px 2px 0;
	display: flex;
	flex-direction: column;
	flex: 1;
}
.index-best-card .body h3{
	margin: 0 0 12px;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.45;
	color: #1e293b;
	min-height: 2.9em;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.index-best-card .body h3 a{
	color: inherit;
	transition: color .25s ease;
}
.index-best-card .body h3 a:hover{
	color: #0b3a6e;
	text-decoration: none;
}
.index-best-card .meta{
	list-style: none;
	margin: 0 0 16px;
	padding: 0;
	flex: 1;
}
.index-best-card .meta li{
	display: flex;
	gap: 6px;
	font-size: 12px;
	line-height: 1.55;
	color: #94a3b8;
	margin-bottom: 2px;
}
.index-best-card .meta span{
	flex-shrink: 0;
	color: #94a3b8;
}
.index-best-card .meta em{
	font-style: normal;
	color: #64748b;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	min-width: 0;
}
.index-best-card .chat{
	display: block;
	width: 100%;
	box-sizing: border-box;
	text-align: center;
	background: #0b3a6e;
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	line-height: 44px;
	height: 44px;
	border-radius: 2px;
	transition: background .25s ease;
}
.index-best-card .chat:hover{
	background: #0a223f;
	color: #fff;
	text-decoration: none;
}
@media (max-width: 1200px){
	.index-best-tit h2{
		font-size: 28px;
	}
}
@media (max-width: 900px){
	.index-best{
		padding: 56px 0 60px;
	}
	.index-best-hd{
		padding-right: 96px;
		text-align: left;
	}
}
@media (max-width: 560px){
	.index-best{
		padding: 40px 0 48px;
	}
	.index-best-hd{
		margin-bottom: 28px;
		padding-right: 0;
		text-align: center;
	}
	.index-best-nav{
		position: static;
		justify-content: center;
		margin-top: 16px;
	}
	.index-best-tit h2{
		font-size: 24px;
	}
}

/* Homepage News & Blog */
.index-news{
	background: #f8fafc;
	padding: 72px 0 80px;
}
.index-news-hd{
	text-align: center;
	margin-bottom: 48px;
}
.index-news-hd .tag{
	display: inline-block;
	background: #0b3a6e;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	padding: 6px 16px;
	border-radius: 6px;
	margin-bottom: 16px;
	line-height: 1.4;
}
.index-news-hd h2{
	font-size: 34px;
	font-weight: 700;
	color: #0b3a6e;
	line-height: 1.3;
	margin: 0 0 14px;
}
.index-news-hd p{
	font-size: 16px;
	color: #64748b;
	line-height: 1.7;
	max-width: 640px;
	margin: 0 auto;
}
.index-news-grid{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.index-news-card{
	display: flex;
	flex-direction: column;
	background: #fff;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(11,58,110,.08);
	transition: transform .35s ease, box-shadow .35s ease;
	color: inherit;
	text-decoration: none;
}
.index-news-card:hover{
	transform: translateY(-6px);
	box-shadow: 0 20px 60px rgba(11,58,110,.16);
	text-decoration: none;
	color: inherit;
}
.index-news-card .img{
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #e2e8f0;
}
.index-news-card .img img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s ease;
}
.index-news-card:hover .img img{
	transform: scale(1.06);
}
.index-news-card .body{
	padding: 22px 20px 24px;
	display: flex;
	flex-direction: column;
	flex: 1;
}
.index-news-card .date{
	font-size: 13px;
	color: #0b3a6e;
	font-weight: 600;
	margin-bottom: 10px;
}
.index-news-card h3{
	margin: 0 0 12px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.4;
	color: #1e293b;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	min-height: 2.8em;
	transition: color .25s ease;
}
.index-news-card:hover h3{
	color: #0b3a6e;
}
.index-news-card p{
	margin: 0 0 18px;
	font-size: 14px;
	color: #64748b;
	line-height: 1.65;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	flex: 1;
}
.index-news-card em{
	font-style: normal;
	font-size: 14px;
	font-weight: 700;
	color: #0b3a6e;
}
.index-news-more{
	text-align: center;
	margin-top: 40px;
}
.index-news-more .amore2{
	margin-top: 0;
}
@media (max-width: 1200px){
	.index-news-hd h2{
		font-size: 28px;
	}
}
@media (max-width: 900px){
	.index-news{
		padding: 56px 0 60px;
	}
	.index-news-hd{
		margin-bottom: 32px;
	}
	.index-news-grid{
		grid-template-columns: 1fr;
		gap: 18px;
	}
}
@media (max-width: 560px){
	.index-news{
		padding: 40px 0 48px;
	}
	.index-news-hd h2{
		font-size: 24px;
	}
	.index-news-hd p{
		font-size: 14px;
	}
	.index-news-card .body{
		padding: 18px 16px 20px;
	}
	.index-news-card h3{
		font-size: 16px;
		min-height: 0;
	}
}
