.page-aura {
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: -1;
	background: var(--bg-color);
}

.loading-overlay {
	position: fixed;
	inset: 0;
	background: rgba(248, 249, 250, 0.85);
	backdrop-filter: blur(4px);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	transition: opacity 0.3s ease;
}

.loading-overlay.hidden {
	opacity: 0;
	pointer-events: none;
}

.loading-bar-wrap {
	width: min(280px, 80vw);
	height: 6px;
	border-radius: 999px;
	background: var(--border-color);
	overflow: hidden;
	position: relative;
}

.loading-bar-fill {
	height: 100%;
	border-radius: 999px;
	background: linear-gradient(
		90deg,
		#D4AF37 0%,
		#D4AF37 18%,
		#0055BB 40%,
		#00AAFF 62%,
		#0055BB 80%,
		#D4AF37 100%
	);
	background-size: 500% 100%;
	animation: aurora-shift 2.4s ease-in-out infinite, loading-progress 4s ease-out forwards;
	width: 0%;
	position: relative;
	overflow: hidden;
	box-shadow:
		0 0 14px rgba(0, 136, 255, 0.35),
		0 0 28px rgba(212, 175, 55, 0.18);
}

/* Traveling shine particle */
.loading-bar-fill::before {
	content: "";
	position: absolute;
	top: 0;
	left: -55%;
	width: 45%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent 0%,
		rgba(255, 255, 255, 0.6) 50%,
		transparent 100%
	);
	border-radius: 999px;
	animation: shine-sweep 2s ease-in-out 0.4s infinite;
}

/* Secondary soft glow layer */
.loading-bar-fill::after {
	content: "";
	position: absolute;
	inset: -2px;
	border-radius: 999px;
	background: linear-gradient(
		90deg,
		rgba(212, 175, 55, 0.5),
		rgba(0, 136, 255, 0.5)
	);
	filter: blur(6px);
	opacity: 0.6;
	z-index: -1;
	animation: glow-pulse 2.2s ease-in-out infinite;
}

@keyframes aurora-shift {
	0%   { background-position: 0% 50%; }
	50%  { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}

@keyframes shine-sweep {
	0%   { left: -55%; opacity: 0; }
	20%  { opacity: 1; }
	80%  { opacity: 1; }
	100% { left: 110%; opacity: 0; }
}

@keyframes glow-pulse {
	0%, 100% { opacity: 0.5; }
	50%       { opacity: 0.85; }
}

@keyframes loading-progress {
	0%   { width: 0%; }
	25%  { width: 38%; }
	55%  { width: 65%; }
	78%  { width: 84%; }
	100% { width: 96%; }
}

.loading-bar-text {
	margin-top: 16px;
	color: var(--text-light);
	font-size: 0.85rem;
	font-weight: 600;
	text-align: center;
	letter-spacing: 0.04em;
}

.loading-bar-wrap,
.loading-bar-text {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

body.welcome-msgbox-open {
	overflow: hidden;
}

.oc-msgbox-backdrop {
	position: fixed;
	inset: 0;
	z-index: 1200;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(8px);
}

.oc-msgbox {
	position: relative;
	width: min(100%, 440px);
	padding: 34px 28px 28px;
	border-radius: 28px;
	border: 1px solid var(--border-color);
	background: var(--surface-color);
	box-shadow: 0 26px 70px rgba(0, 0, 0, 0.24);
	text-align: center;
}

.oc-msgbox-close {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 38px;
	height: 38px;
	border: 0;
	border-radius: 50%;
	background: var(--bg-color);
	color: var(--text-color);
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
}

.oc-msgbox-icon {
	width: 74px;
	height: 74px;
	margin: 0 auto 18px;
	border-radius: 24px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--primary-color);
	box-shadow: 0 18px 36px rgba(0, 51, 102, 0.28);
	color: #fff;
	font-size: 1.9rem;
}

.oc-msgbox-title {
	font-size: 1.5rem;
	color: var(--heading-color);
	margin-bottom: 12px;
}

.oc-msgbox-text {
	margin: 0;
	color: var(--text-color);
	line-height: 1.8;
	font-size: 0.98rem;
}

.oc-msgbox-text strong {
	color: var(--gold-color);
	font-weight: 800;
}

.oc-msgbox-meta {
	margin-top: 14px;
	color: var(--text-light);
	font-size: 0.88rem;
}

.oc-msgbox-btn {
	min-width: 180px;
}

.home-main {
	padding-top: 30px;
}

.hero-section {
	padding: 20px 0 40px;
}

.hero-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}

.hero-copy {
	max-width: 580px;
}

.hero-copy .hero-kicker {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--primary-color);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-bottom: 14px;
}

.hero-copy h1 {
	font-family: var(--font-heading);
	font-size: clamp(1.8rem, 4vw, 2.8rem);
	font-weight: 800;
	line-height: 1.2;
	color: var(--heading-color);
	margin-bottom: 18px;
}

.hero-copy p {
	font-size: 1rem;
	color: var(--text-light);
	line-height: 1.75;
	margin-bottom: 28px;
}

.hero-actions {
	display: flex;
	gap: 14px;
	margin-bottom: 32px;
}

.hero-cta-btn {
	padding: 14px 32px;
	font-size: 0.95rem;
	font-weight: 700;
	border-radius: 50px;
	background: var(--primary-color);
	color: #fff;
	border: 2px solid transparent;
	transition: all 0.25s ease;
}

.hero-cta-btn:hover {
	background: transparent;
	color: var(--primary-color);
	border-color: var(--primary-color);
	transform: translateY(-2px);
}

.hero-explore-btn {
	padding: 14px 32px;
	font-size: 0.95rem;
	font-weight: 700;
	border-radius: 50px;
	background: transparent;
	color: var(--heading-color);
	border: 2px solid var(--border-color);
	transition: all 0.25s ease;
}

.hero-explore-btn:hover {
	border-color: var(--primary-color);
	color: var(--primary-color);
	transform: translateY(-2px);
}

.hero-stats {
	display: flex;
	gap: 32px;
	padding-top: 28px;
	border-top: 1px solid var(--border-color);
}

.stat-item {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.stat-value {
	font-family: var(--font-heading);
	font-size: 1.6rem;
	font-weight: 800;
	color: var(--heading-color);
	line-height: 1;
}

.stat-label {
	font-size: 0.78rem;
	color: var(--text-light);
}

.hero-copy {
	background: var(--surface-color);
	border: 1px solid var(--border-color);
	border-radius: var(--radius-xl);
	padding: clamp(28px, 5vw, 62px);
	box-shadow: var(--shadow-soft);
}

.hero-kicker {
	text-transform: uppercase;
	letter-spacing: 0.16em;
	font-weight: 700;
	font-size: 0.74rem;
	color: var(--text-light);
	margin-bottom: 12px;
}

.hero-copy h1 {
	font-size: clamp(2rem, 4vw, 3.8rem);
	line-height: 1.08;
	color: var(--heading-color);
	max-width: 18ch;
}

.hero-copy p {
	margin-top: 18px;
	font-size: 1.02rem;
	color: var(--text-light);
	line-height: 1.8;
	max-width: 54ch;
}

.hero-cta-btn {
	margin-top: 32px;
	min-height: 52px;
	padding: 0 32px;
}

.hero-visual {
	position: relative;
	min-height: 540px;
	border-radius: 34px;
	background: var(--surface-color);
	border: 1px solid var(--border-color);
	box-shadow: var(--shadow-soft);
	overflow: hidden;
}

.visual-glow {
	position: absolute;
	width: 320px;
	height: 320px;
	border-radius: 50%;
	top: 70px;
	right: 24px;
	background: radial-gradient(circle, rgba(0, 51, 102, 0.15), rgba(0, 51, 102, 0));
}

.display-stage {
	position: absolute;
	left: 50%;
	bottom: 58px;
	transform: translateX(-50%);
	width: min(82%, 460px);
	height: 132px;
	border-radius: 50%;
	background: radial-gradient(
		circle at 50% 20%,
		rgba(255, 255, 255, 0.95),
		rgba(220, 228, 240, 0.82) 55%,
		rgba(177, 192, 210, 0.62) 100%
	);
	box-shadow:
		inset 0 8px 14px rgba(255, 255, 255, 0.9),
		0 20px 36px rgba(21, 32, 45, 0.17);
}

.device {
	position: absolute;
	box-shadow: 0 20px 44px rgba(18, 28, 40, 0.22);
}

.phone-device {
	width: 174px;
	height: 375px;
	border-radius: 25px;
	background: linear-gradient(150deg, #ffffff 0%, #e4eaf1 45%, #d2dae4 100%);
	left: 50%;
	top: 32px;
	transform: translateX(-50%) rotate(-5deg);
	animation: float-phone 5.2s ease-in-out infinite;
}

.camera-dot {
	position: absolute;
	top: 20px;
	left: 24px;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: radial-gradient(circle at 35% 35%, #8592a4, #273242 72%);
}

.screen-sheen {
	position: absolute;
	inset: 18px;
	border-radius: 10px;
	background: linear-gradient(150deg, rgba(244, 248, 252, 0.74), rgba(187, 200, 218, 0.22));
	border: 1px solid rgba(255, 255, 255, 0.6);
	display: none;
}

.buds-device {
	width: 153px;
	height: 166px;
	border-radius: 42px;
	left: 18%;
	bottom: 122px;
	transform: rotate(-15deg);
	animation: float-buds 4.8s ease-in-out infinite;
}

.buds-lid {
	position: absolute;
	inset: 8px 12px 44px;
	border-radius: 28px;
	border: 1px solid rgba(184, 194, 210, 0.62);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(231, 236, 244, 0.88));
	display: none;
}

.buds-unit {
	position: absolute;
	width: 16px;
	height: 38px;
	bottom: 14px;
	border-radius: 12px;
	background: linear-gradient(180deg, #fcfdff 0%, #ccd5e2 100%);
	display: none;
}

.buds-left {
	left: 50px;
}

.buds-right {
	right: 50px;
}

.watch-device {
	width: 160px;
	height: 280px;
	left: 50%;
	bottom: 60px;
	transform: translateX(-50%) rotate(-5deg);
	animation: float-watch 5s ease-in-out infinite;
	background: url("../img/img2.png") no-repeat;
	background-size: 100%;
	border-radius: 24px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25), 0 0 40px rgba(var(--brand-rgb, 0, 102, 204), 0.15);
	filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.3));
}

.watch-device::before,
.watch-device::after {
	content: "";
	position: absolute;
	width: 74px;
	height: 68px;
	left: 49px;
	border-radius: 22px;
	background: linear-gradient(160deg, #f8fafc 0%, #d9e1ec 100%);
	border: 1px solid rgba(171, 184, 202, 0.72);
	display: none;
}

.watch-device::before {
	top: -8px;
}

.watch-device::after {
	bottom: -8px;
}

.watch-face {
	position: absolute;
	inset: 48px 36px;
	border-radius: 28px;
	background: linear-gradient(160deg, #f2f6fb 0%, #d6dfeb 100%);
	border: 1px solid rgba(168, 181, 198, 0.78);
	display: none;
}

.watch-highlight {
	position: absolute;
	inset: 62px 52px;
	border-radius: 20px;
	background: linear-gradient(130deg, rgba(255, 255, 255, 0.88), rgba(191, 206, 227, 0.25));
	display: none;
}

.section-head {
	margin-bottom: 26px;
}

.section-kicker {
	text-transform: uppercase;
	letter-spacing: 0.14em;
	font-size: 0.75rem;
	color: var(--text-light);
	font-weight: 700;
	margin-bottom: 10px;
}

.section-head h2 {
	font-size: clamp(1.5rem, 3vw, 2.25rem);
	color: var(--heading-color);
}

.service-section {
	padding: 12px 0 42px;
}

.service-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.service-card {
	border-radius: var(--radius-lg);
	border: 1px solid var(--border-color);
	background: var(--surface-color);
	padding: 24px;
	box-shadow: var(--shadow-card);
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease;
}

.service-card:hover {
	transform: translateY(-3px);
}

.service-icon {
	width: 44px;
	height: 44px;
	border-radius: 14px;
	border: 1px solid var(--border-color);
	background: var(--bg-color);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--primary-color);
	font-size: 1.15rem;
	margin-bottom: 14px;
}

.service-card h3 {
	font-size: 1.08rem;
	margin-bottom: 8px;
}

.service-card p {
	color: var(--text-light);
	line-height: 1.65;
	font-size: 0.94rem;
}

.featured-section {
	padding: 18px 0 44px;
}

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

.home-main .product-card {
	border-radius: 24px;
	border: 1px solid var(--border-color);
	background: var(--surface-color);
	padding: 14px;
	height: auto;
}

.wishlist-btn-home {
	position: absolute;
	right: 16px;
	top: 16px;
	width: 36px;
	height: 36px;
	border-radius: 11px;
	border: 1px solid var(--border-color);
	background: rgba(255, 255, 255, 0.92);
	color: var(--text-color);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.25s ease;
	z-index: 2;
}

.wishlist-btn-home.active,
.wishlist-btn-home:hover {
	color: var(--alert-color);
	border-color: rgba(230, 57, 70, 0.25);
}

.product-media {
	display: block;
	border-radius: 16px;
	overflow: hidden;
	background: var(--bg-color);
	width: 100%;
	height: 100%;
	box-sizing: border-box;
}

.product-media img {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: contain;
}

.product-content {
	padding: 14px 2px 2px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.product-category {
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.11em;
	font-weight: 700;
	color: var(--text-light);
}

.product-content h3 {
	margin-top: 8px;
	font-size: 1rem;
	line-height: 1.38;
	min-height: 44px;
}

.rating-row {
	margin-top: 10px;
	color: var(--gold-color);
	display: inline-flex;
	gap: 2px;
	font-size: 0.82rem;
}

.price-row {
	margin-top: 12px;
	display: flex;
	align-items: center;
	gap: 9px;
}

.price-row strong {
	font-size: 1rem;
}

.price-row span {
	color: var(--text-light);
	font-size: 0.85rem;
	text-decoration: line-through;
}

.add-to-cart-btn-home {
	margin-top: auto !important;
}

.promo-section {
	padding: 18px 0 44px;
}

.promo-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
	gap: 22px;
	align-items: stretch;
}

.promo-banner {
	min-width: 0;
	border-radius: var(--radius-xl);
	border: 1px solid var(--border-color);
	background: var(--surface-color);
	padding: clamp(28px, 4vw, 48px);
	box-shadow: var(--shadow-soft);
	position: relative;
	overflow: hidden;
	isolation: isolate;
}

.promo-banner::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	pointer-events: none;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.promo-tag {
	text-transform: uppercase;
	letter-spacing: 0.16em;
	font-size: 0.74rem;
	font-weight: 700;
	color: var(--text-light);
}

.promo-banner h3 {
	margin-top: 12px;
	font-size: clamp(1.8rem, 3vw, 3.1rem);
	line-height: 1.1;
	max-width: 15ch;
}

.promo-banner p {
	margin-top: 14px;
	color: var(--text-light);
	line-height: 1.72;
	max-width: 42ch;
}

.promo-cta-btn {
	margin-top: 22px;
	min-height: 44px;
	padding: 0 24px;
}

.promo-carousel {
	margin-top: 28px;
	position: relative;
	width: 100%;
	min-width: 0;
	border-radius: 22px;
	border: 1px solid var(--border-color);
	background: var(--surface-color);
	overflow: hidden;
	aspect-ratio: 2504 / 1473;
}

.promo-swiper {
	position: relative;
	width: 100%;
	max-width: 100%;
	height: 100%;
}

.promo-swiper .swiper-wrapper,
.promo-swiper .swiper-slide,
.promo-slide {
	width: 100%;
	max-width: 100%;
	min-width: 0;
	height: 100%;
}

.promo-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.promo-swiper-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	border-radius: 999px;
	border: 1px solid var(--border-color);
	background: rgba(255, 255, 255, 0.86);
	color: var(--text-color);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 3;
}

.promo-swiper-prev {
	left: 12px;
}

.promo-swiper-next {
	right: 12px;
}

.promo-swiper-nav:hover {
	background: var(--surface-color);
}

.promo-swiper-pagination {
	bottom: 10px !important;
}

.promo-swiper-pagination .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	opacity: 1;
	background: rgba(255, 255, 255, 0.58);
	transition: all 0.2s ease;
}

.promo-swiper-pagination .swiper-pagination-bullet-active {
	width: 28px;
	border-radius: 999px;
	background: var(--primary-color) !important;
}

.why-card {
	min-width: 0;
	border-radius: var(--radius-xl);
	border: 1px solid var(--border-color);
	background: var(--surface-color);
	padding: clamp(24px, 3vw, 30px);
	box-shadow: var(--shadow-soft);
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.why-card::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	pointer-events: none;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.why-card h3 {
	font-size: clamp(1.4rem, 2.1vw, 1.85rem);
	margin-bottom: 2px;
}

.why-card ul {
	margin: 14px 0 16px;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 8px;
	border-top: 1px dashed var(--border-color);
	padding-top: 10px;
}

.why-card li {
	position: relative;
	padding-left: 16px;
	color: var(--text-light);
	font-size: 0.95rem;
	line-height: 1.5;
}

.why-card li::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--primary-color);
	position: absolute;
	left: 0;
	top: 0.55em;
}

.bundle-grid {
	display: grid;
	gap: 10px;
	margin-top: 2px;
}

.bundle-wrap {
	display: grid;
	gap: 10px;
	margin-top: 2px;
}

.bundle-skeleton {
	display: grid;
	gap: 10px;
}

.skeleton-item {
	height: 86px;
	border-radius: 16px;
	border: 1px solid var(--border-color);
	background: linear-gradient(90deg, var(--bg-color) 25%, var(--surface-color) 50%, var(--bg-color) 75%);
	background-size: 200% 100%;
	animation: skeleton-shimmer 1.5s infinite;
}

@keyframes skeleton-shimmer {
	0% { background-position: 200% 0; }
	100% { background-position: -200% 0; }
}

.product-card.compact {
	display: grid;
	grid-template-columns: 88px minmax(0, 1fr);
	align-items: start;
	gap: 0 10px;
	padding: 10px;
	border-radius: 16px;
	border: 1px solid var(--border-color);
	background: var(--surface-color);
	box-shadow: none;
}

.product-card.compact:hover {
	border-color: var(--primary-color);
	background: var(--surface-color);
	transform: translateY(-1px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.07);
}

.product-card.compact .wishlist-btn-home {
	top: 8px;
	right: 8px;
	width: 29px;
	height: 29px;
	border-radius: 10px;
}

.product-card.compact .product-media {
	border-radius: 10px;
	border: 1px solid var(--border-color);
	background: var(--bg-color);
	height: 86px;
}

.product-card.compact .product-media img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 8px;
}

.product-card.compact .product-content {
	padding: 1px 2px 0;
	min-width: 0;
	display: flex;
	flex-direction: column;
}

.product-card.compact .product-content h3 {
	min-height: 0;
	margin-top: 4px;
	margin-bottom: 0;
	font-size: 0.93rem;
	line-height: 1.32;
	padding-right: 24px;
}

.product-card.compact .product-content h3 a {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.product-card.compact .product-category {
	font-size: 0.74rem;
	letter-spacing: 0.1em;
}

.product-card.compact .rating-row {
	margin-top: 6px;
	font-size: 0.8rem;
}

.product-card.compact .price-row {
	margin-top: 7px;
	margin-bottom: 0;
	gap: 7px;
	align-items: baseline;
}

.product-card.compact .price-row strong {
	font-size: 1.01rem;
	font-weight: 800;
}

.product-card.compact .price-row span {
	font-size: 0.79rem;
}

.product-card.compact .btn {
	margin-top: 8px;
	min-height: 34px;
	font-size: 0.82rem;
	padding: 0 12px;
	line-height: 1;
}

.advantage-section {
	padding: 12px 0 44px;
}

.advantage-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.advantage-card {
	border-radius: var(--radius-md);
	border: 1px solid var(--border-color);
	background: var(--surface-color);
	padding: 24px;
	box-shadow: var(--shadow-card);
}

.advantage-card h3 {
	font-size: 1.06rem;
	margin-bottom: 10px;
}

.advantage-card p {
	color: var(--text-light);
	line-height: 1.7;
	font-size: 0.93rem;
}

.testimonial-section {
	padding: 10px 0 16px;
}

.testimonial-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.testimonial-card {
	border-radius: 20px;
	border: 1px solid var(--border-color);
	background: var(--surface-color);
	padding: 22px;
	box-shadow: var(--shadow-card);
}

.testimonial-head {
	display: flex;
	align-items: center;
	gap: 12px;
}

.avatar {
	width: 44px;
	height: 44px;
	border-radius: 14px;
	font-size: 0.84rem;
	font-weight: 700;
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.avatar.tone-a {
	background: linear-gradient(140deg, #003366, #001a33);
}

.avatar.tone-b {
	background: linear-gradient(140deg, #004080, #002244);
}

.avatar.tone-c {
	background: linear-gradient(140deg, #D4AF37, #b8962e);
}

.testimonial-head h3 {
	font-size: 1rem;
	margin-bottom: 4px;
}

.testimonial-head p {
	color: var(--text-light);
	font-size: 0.83rem;
}

.testimonial-card .rating-row {
	margin-top: 12px;
}

.testimonial-text {
	margin-top: 12px;
	color: var(--text-light);
	line-height: 1.75;
	font-size: 0.93rem;
}

.stats-section {
	padding: 10px 0 48px;
}

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

.stat-card {
	border-radius: 20px;
	border: 1px solid var(--border-color);
	background: var(--surface-color);
	padding: 24px 18px;
	text-align: center;
	box-shadow: var(--shadow-card);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	position: relative;
	overflow: hidden;
}

.stat-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(212, 175, 55, 0.06), rgba(0, 51, 102, 0.04));
	opacity: 0;
	transition: opacity 0.25s ease;
}

.stat-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 24px rgba(0, 51, 102, 0.12);
}

.stat-card:hover::before {
	opacity: 1;
}

.stat-icon {
	width: 42px;
	height: 42px;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--primary-color), #004080);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 1.1rem;
	margin: 0 auto 12px;
}

.stat-value {
	font-size: 1.8rem;
	font-weight: 800;
	color: var(--heading-color);
	line-height: 1.1;
	margin-bottom: 4px;
}

.stat-label {
	font-size: 0.82rem;
	color: var(--text-light);
	font-weight: 600;
	line-height: 1.4;
}

/* Testimonial enhancements */
.testimonial-card {
	position: relative;
	overflow: hidden;
}

.testimonial-quote-icon {
	position: absolute;
	top: 16px;
	right: 18px;
	color: var(--gold-color);
	opacity: 0.3;
	font-size: 2rem;
	line-height: 1;
}

.testimonial-card:hover .testimonial-quote-icon {
	opacity: 0.5;
}

.verified-badge {
	display: inline-flex;
	align-items: center;
	color: var(--primary-color);
	font-size: 0.85rem;
	margin-left: 4px;
	vertical-align: middle;
}

/* Newsletter CTA Strip */
.newsletter-section {
	padding: 0 0 52px;
}

.newsletter-card {
	display: flex;
	align-items: center;
	gap: 20px;
	background: var(--surface-color);
	border: 1px solid var(--border-color);
	border-radius: 24px;
	padding: 28px 32px;
	box-shadow: var(--shadow-soft);
	position: relative;
	overflow: hidden;
}

.newsletter-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(0, 51, 102, 0.04));
	pointer-events: none;
}

.newsletter-icon {
	width: 52px;
	height: 52px;
	border-radius: 16px;
	background: linear-gradient(135deg, var(--primary-color), #004080);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 1.3rem;
	flex-shrink: 0;
}

.newsletter-copy {
	flex: 1;
}

.newsletter-copy h3 {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--heading-color);
	margin-bottom: 4px;
}

.newsletter-copy p {
	color: var(--text-light);
	font-size: 0.88rem;
}

.newsletter-form {
	display: flex;
	gap: 10px;
	flex-shrink: 0;
}

.newsletter-input {
	height: 44px;
	border-radius: 12px;
	border: 1px solid var(--border-color);
	padding: 0 16px;
	font-size: 0.88rem;
	background: var(--bg-color);
	color: var(--text-color);
	min-width: 200px;
}

.newsletter-input:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.1);
}

.newsletter-btn {
	height: 44px;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--primary-color), #004080);
	color: #fff;
	font-weight: 700;
	font-size: 0.88rem;
	padding: 0 22px;
	white-space: nowrap;
}

.newsletter-btn:hover {
	opacity: 0.9;
}

@keyframes float-phone {
	0%,
	100% {
		transform: translateX(-50%) rotate(-5deg) translateY(0);
	}
	50% {
		transform: translateX(-50%) rotate(-5deg) translateY(-12px);
	}
}

@keyframes float-buds {
	0%,
	100% {
		transform: rotate(-15deg) translateY(0);
	}
	50% {
		transform: rotate(-15deg) translateY(-8px);
	}
}

@keyframes float-watch {
	0%,
	100% {
		transform: translateX(-50%) rotate(-5deg) translateY(0);
	}
	50% {
		transform: translateX(-50%) rotate(-5deg) translateY(-12px);
	}
}

@media (max-width: 1240px) {
	.oc-msgbox {
		padding: 30px 22px 24px;
		border-radius: 24px;
	}

	.hero-layout {
		grid-template-columns: 1fr;
	}

	.hero-visual {
		min-height: 500px;
	}

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

	.promo-layout {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 900px) {
	.hero-copy {
		padding: 30px 24px;
	}

	.hero-visual {
		min-height: 430px;
	}

	.phone-device {
		width: 154px;
		height: 332px;
	}

	.watch-device {
		width: 130px;
		height: 230px;
	}

	.buds-device {
		left: 12%;
	}

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

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

	.advantage-grid,
	.testimonial-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 560px) {
	.oc-msgbox-backdrop {
		padding: 16px;
	}

	.oc-msgbox-title {
		font-size: 1.28rem;
	}

	.featured-section {
		padding: 12px 0 28px;
	}

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

	.home-main .product-card {
		padding: 10px;
		border-radius: 16px;
		/* min-height: 360px; */
	}

	.home-main .product-media {
		height: 130px;
	}

	.home-main .product-content h3 {
		font-size: 0.85rem;
	}

	.home-main .product-content .price {
		font-size: 0.9rem;
	}

	.home-main .product-card .btn {
		min-height: 44px;
		font-size: 0.82rem;
	}

	.bundle-wrap {
		gap: 8px;
	}

	.product-card.compact {
		grid-template-columns: 84px minmax(0, 1fr);
		padding: 10px;
		gap: 0 10px;
	}

	.product-card.compact .product-media {
		height: 84px;
	}

	.product-card.compact .product-content h3 {
		font-size: 0.9rem;
	}

	.product-card.compact .btn {
		min-height: 34px;
		font-size: 0.8rem;
	}

	.promo-carousel {
		margin-top: 22px;
		aspect-ratio: 2504 / 1473;
	}

	.promo-swiper-nav {
		width: 34px;
		height: 34px;
	}

	.hero-copy h1 {
		font-size: 2rem;
	}

	.hero-copy p {
		font-size: 0.94rem;
	}

	.hero-cta-btn {
		width: 100%;
	}

	.hero-visual {
		min-height: 370px;
	}

	.phone-device {
		width: 136px;
		height: 294px;
		border-radius: 20px;
	}

	.watch-device {
		width: 88px;
		height: 162px;
		right: 6%;
	}

	.buds-device {
		width: 124px;
		height: 135px;
		left: 8%;
	}

	.display-stage {
		bottom: 42px;
		height: 96px;
	}

	.stats-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.stat-card {
		padding: 18px 14px;
	}

	.stat-value {
		font-size: 1.5rem;
	}

	.newsletter-card {
		flex-direction: column;
		text-align: center;
		padding: 22px 20px;
		gap: 14px;
	}

	.newsletter-icon {
		margin: 0 auto;
	}

	.newsletter-form {
		width: 100%;
		flex-direction: column;
	}

	.newsletter-input {
		min-width: 0;
		width: 100%;
	}

	.newsletter-btn {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.phone-device,
	.buds-device,
	.watch-device {
		animation: none;
	}
}
