/*
Theme Name:        NK Medic Theme
Theme URI:         https://nkmedicgroup.co.th
Author:            Touchnewmedia Co., Ltd.
Author URI:        https://thetnm.com
Description:       Premium WordPress theme for NK Medic Group — aesthetic medical distributor. , white base, navy and blue accents.
Version:           1.0.2
Requires at least: 6.4
Tested up to:      6.7
Requires PHP:      8.1
License:           Private — All Rights Reserved
Text Domain:       nkmedic-theme
*/

/* ══════════════════════════════════════════════════════════════════
   BASE
══════════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--nk-font-primary, 'Prompt'), -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	color: var(--nk-navy);
	background: var(--nk-white);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
	font-size: 15px;
	font-weight: 300;
	line-height: 1.65;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--nk-blue); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--nk-blue-hover); }
button { font-family: inherit; cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5, h6 { margin: 0; color: var(--nk-navy); font-weight: 700; letter-spacing: -0.02em; }
p { margin: 0 0 16px; }

/* ══════════════════════════════════════════════════════════════════
   LAYOUT PRIMITIVES
══════════════════════════════════════════════════════════════════ */
.nk-container { max-width: 1120px; margin: 0 auto; padding: 0 40px; }
.nk-text-center { text-align: center; }

.nk-sec        { padding: var(--nk-sec-pad) 40px; }
.nk-sec-f5     { background: var(--nk-f5); padding: var(--nk-sec-pad) 0; }

.nk-sec-label {
	display: inline-block;
	font-size: 13px;
	font-weight: 500;
	color: var(--nk-blue);
	letter-spacing: .04em;
	margin-bottom: 12px;
	text-transform: uppercase;
}
.nk-sec-h {
	font-size: clamp(28px, 4vw, 48px);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.025em;
	margin-bottom: 16px;
	color: var(--nk-navy);
}
.nk-sec-sub {
	font-size: 16px;
	font-weight: 300;
	color: var(--nk-gray);
	line-height: 1.7;
	max-width: 600px;
	margin: 0 auto 36px;
}

/* ══════════════════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════════════════ */
.nk-nav {
	position: sticky;
	top: 0;
	z-index: 100;
	height: var(--nk-nav-h);
	background: rgba(255,255,255,0.93);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border-bottom: 1px solid var(--nk-border);
	display: flex;
	align-items: center;
	padding: 0 40px;
	justify-content: space-between;
	transition: border-color .3s, box-shadow .3s;
}
.nk-nav.scrolled {
	border-bottom-color: rgba(0,0,0,0.1);
	box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.nk-logo {
	font-size: 22px;
	font-weight: 700;
	color: var(--nk-navy);
	text-decoration: none;
	letter-spacing: -0.02em;
	display: inline-flex;
	align-items: center;
	gap: 4px;
}
.nk-logo span { color: #D0D0D0; }
.nk-logo-img { max-height: 44px; width: auto; display: block; }

.nk-nav-links {
	display: flex;
	gap: 6px;
	list-style: none;
	margin: 0;
	padding: 0;
	align-items: center;
}
.nk-nav-links li { position: relative; }
.nk-nav-links a {
	padding: 6px 16px;
	font-size: 13px;
	font-weight: 400;
	color: #555;
	border-radius: var(--nk-r-pill);
	transition: all .2s;
	text-decoration: none;
	display: inline-block;
}
.nk-nav-links a:hover,
.nk-nav-links .current-menu-item > a {
	color: var(--nk-blue);
	background: var(--nk-blue-pale);
}
.nk-nav-cta {
	background: var(--nk-blue);
	color: #fff;
	border-radius: var(--nk-r-pill);
	padding: 9px 22px;
	font-size: 13px;
	font-weight: 500;
	text-decoration: none;
	transition: background .2s;
	white-space: nowrap;
}
.nk-nav-cta:hover { background: var(--nk-blue-hover); color: #fff; }

.nk-hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px;
}
.nk-hamburger span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--nk-navy);
	border-radius: 2px;
	transition: all .25s;
}

/* Mobile menu */
.nk-mobile-menu {
	position: fixed;
	inset: 0;
	background: var(--nk-white);
	z-index: 200;
	transform: translateX(100%);
	transition: transform .35s cubic-bezier(.25,.46,.45,.94);
	display: flex;
	flex-direction: column;
	padding: 0 24px 32px;
}
.nk-mobile-menu.open { transform: translateX(0); }
.nk-mobile-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: var(--nk-nav-h);
	border-bottom: 1px solid var(--nk-border);
	margin: 0 -24px 24px;
	padding: 0 24px;
}
.nk-mobile-close {
	font-size: 32px;
	background: none;
	border: none;
	color: var(--nk-navy);
	line-height: 1;
	cursor: pointer;
}
.nk-mobile-nav { flex: 1; overflow-y: auto; }
.nk-mobile-nav-links {
	display: flex;
	flex-direction: column;
	gap: 4px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.nk-mobile-nav-links a {
	display: block;
	padding: 14px 12px;
	font-size: 17px;
	font-weight: 400;
	color: var(--nk-navy);
	border-bottom: 1px solid var(--nk-border);
}
.nk-mobile-cta-btn {
	display: block;
	margin-top: 24px;
	background: var(--nk-blue);
	color: #fff;
	text-align: center;
	padding: 14px 24px;
	border-radius: var(--nk-r-pill);
	font-size: 15px;
	font-weight: 500;
	text-decoration: none;
}

@media (max-width: 768px) {
	.nk-nav { padding: 0 20px; }
	.nk-nav-links, .nk-nav-cta { display: none; }
	.nk-hamburger { display: flex; }
}

/* ══════════════════════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════════════════════ */
.nk-btn-blue {
	background: var(--nk-blue);
	color: #fff;
	padding: 14px 32px;
	border-radius: var(--nk-r-pill);
	font-size: 15px;
	font-weight: 500;
	display: inline-block;
	transition: background .2s;
	text-decoration: none;
	border: none;
}
.nk-btn-blue:hover { background: var(--nk-blue-hover); color: #fff; }

.nk-btn-outline {
	background: rgba(255, 255, 255, 0.12);
	color: #ffffff;
	border: 1.5px solid rgba(255, 255, 255, 0.60);
	padding: 13px 32px;
	border-radius: var(--nk-r-pill);
	font-size: 15px;
	font-weight: 400;
	display: inline-block;
	transition: all .25s;
	text-decoration: none;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}
.nk-btn-outline:hover {
	background: rgba(255, 255, 255, 0.22);
	border-color: rgba(255, 255, 255, 0.90);
	color: #ffffff;
}

/* Outline ปกติ (นอก hero — พื้นขาว) */
.nk-sec-f5 .nk-btn-outline,
.nk-products .nk-btn-outline {
	background: var(--nk-white);
	color: var(--nk-blue);
	border-color: #BFDBFE;
	backdrop-filter: none;
}
.nk-sec-f5 .nk-btn-outline:hover,
.nk-products .nk-btn-outline:hover {
	border-color: var(--nk-blue);
	background: var(--nk-blue-pale);
	color: var(--nk-blue);
}

.nk-btn-line {
	background: var(--nk-line-green);
	color: #fff;
	padding: 14px 32px;
	border-radius: var(--nk-r-pill);
	font-size: 15px;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	transition: opacity .2s, transform .2s;
}
.nk-btn-line:hover { color: #fff; opacity: .9; transform: translateY(-1px); }

.nk-btn-ghost {
	background: rgba(255,255,255,0.08);
	color: #fff;
	padding: 14px 32px;
	border-radius: var(--nk-r-pill);
	font-size: 15px;
	font-weight: 500;
	display: inline-block;
	text-decoration: none;
	transition: background .2s;
	border: 1px solid rgba(255,255,255,0.12);
}
.nk-btn-ghost:hover { background: rgba(255,255,255,0.16); color: #fff; }

/* ══════════════════════════════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════════════════════════════ */
.nk-hero {
	position: relative;
	height: 680px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: var(--nk-f5);
}
.nk-hero-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transition: opacity 0.9s ease;
}
.nk-hero-bg--on { opacity: 1; }
.nk-hero-overlay {
	position: absolute;
	inset: 0;
	/* ชั้นล่าง: gradient เข้มจากล่างขึ้น + ด้านบนโปร่งใส */
	background: linear-gradient(
		to bottom,
		rgba(10, 22, 40, 0.28) 0%,
		rgba(10, 22, 40, 0.52) 60%,
		rgba(10, 22, 40, 0.70) 100%
	);
	backdrop-filter: blur(0px);
	-webkit-backdrop-filter: blur(0px);
}
.nk-hero-content {
	position: relative;
	z-index: 2;
	padding: 0 24px;
	max-width: 760px;
	transition: opacity 0.35s ease;
}
.nk-hero-content.fading { opacity: 0; }
.nk-hero-pre {
	color: rgba(255, 255, 255, 0.82);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: .16em;
	margin-bottom: 20px;
	display: block;
	text-transform: uppercase;
	text-shadow: 0 1px 8px rgba(0,0,0,0.35);
}
.nk-hero-h1 {
	font-size: var(--nk-display);
	font-weight: 700;
	line-height: 1.05;
	letter-spacing: -0.01em;
	color: #ffffff;
	margin-bottom: 20px;
	text-shadow:
		0 2px 4px  rgba(0, 0, 0, 0.40),
		0 8px 24px rgba(0, 0, 0, 0.28),
		0 1px 0    rgba(0, 0, 0, 0.55);
}
.nk-hero-sub {
	color: rgba(255, 255, 255, 0.88);
	font-size: 16px;
	font-weight: 300;
	line-height: 1.75;
	margin: 0 auto 38px;
	max-width: 560px;
	text-shadow: 0 1px 6px rgba(0,0,0,0.40);
}
.nk-hero-btns {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
}
.nk-hero-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(255,255,255,0.7);
	border: none;
	font-size: 22px;
	cursor: pointer;
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	transition: background .2s;
	color: var(--nk-navy);
	line-height: 1;
}
.nk-hero-arrow:hover { background: rgba(255,255,255,0.95); }
.nk-arrow-l { left: 20px; }
.nk-arrow-r { right: 20px; }
.nk-hero-dots {
	position: absolute;
	bottom: 24px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 8px;
	z-index: 10;
}
.nk-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #ccc;
	border: none;
	cursor: pointer;
	transition: all .3s;
	padding: 0;
}
.nk-dot.on {
	width: 28px;
	border-radius: 4px;
	background: var(--nk-blue);
}
/* Tablet (768px - 1023px) */
@media (max-width: 768px) {
	.nk-hero-arrow {
		display: none;
	}
}

/* ══════════════════════════════════════════════════════════════════
   PRODUCTS SECTION — Swiper carousel
══════════════════════════════════════════════════════════════════ */
.nk-products {
	padding: var(--nk-sec-pad) 40px;
	max-width: 1280px;
	margin: 0 auto;
}
.nk-products-head { text-align: center; margin-bottom: 56px; }
.nk-products-empty {
	text-align: center;
	color: var(--nk-gray-mid);
	padding: 48px 0;
}

/* ── Swiper wrapper — overflow visible so peek works ── */
.nk-products-swiper {
	overflow: visible;
	padding-bottom: 52px; /* room for pagination dots */
}
/* Clip overflow on the section so peeked cards don't bleed into other sections */
.nk-products { overflow: hidden; }

/* ── Product card ── */
.nk-pcard {
	display: block;
	text-decoration: none;
	color: inherit;
	border-radius: var(--nk-r-lg);
	overflow: hidden;
	background: var(--nk-f5);
	box-shadow: 0 4px 20px rgba(10, 22, 40, 0.05);
	transition: transform .35s cubic-bezier(.25,.46,.45,.94),
	            box-shadow .35s cubic-bezier(.25,.46,.45,.94);
}
.nk-pcard:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 40px rgba(10, 22, 40, 0.12);
}

/* Image block: 3:4 aspect ratio, full cover */
.nk-pcard-img-wrap {
	position: relative;
	aspect-ratio: 3 / 4;
	overflow: hidden;
	border-radius: var(--nk-r-lg);
	background: var(--nk-f0);
}

/* ── Badge System ────────────────────────────────────── */
.nk-pcard-badge {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 4;
	display: inline-block;
	padding: 4px 10px;
	border-radius: var(--nk-r-pill);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .04em;
	text-transform: uppercase;
	line-height: 1.4;
	pointer-events: none;
	backdrop-filter: blur(4px);
}
.nk-badge-new         { background: #2563EB; color: #fff; }
.nk-badge-bestseller  { background: #EF4444; color: #fff; }
.nk-badge-hot         { background: #F97316; color: #fff; }
.nk-badge-limited     { background: #7C3AED; color: #fff; }
.nk-badge-recommended { background: #059669; color: #fff; }
.nk-pcard-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .6s ease;
}
.nk-pcard:hover .nk-pcard-img { transform: scale(1.05); }
.nk-pcard-img-placeholder {
	position: absolute;
	inset: 0;
	background: var(--nk-f0);
}

/* Text overlay — positioned inside image block, bottom */
.nk-pcard-body {
	position: absolute;
	inset: auto 0 0 0;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 12px;
	padding: 40px 20px 20px;
	z-index: 2;
	/* subtle dark scrim so white text reads on bright photos */
	background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 100%);
}
.nk-pcard-info { flex: 1; min-width: 0; }
.nk-pcard-ey {
	display: block;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: #fff;
	margin-bottom: 4px;
	opacity: .85;
}
.nk-pcard-name {
	font-size: 17px;
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.25;
	color: #fff;
	margin: 0;
}

/* "ดูรายละเอียด ›" — hidden, slides up + fades on hover */
.nk-pcard-cta {
	display: block;
	font-size: 13px;
	font-weight: 500;
	color: #fff;
	white-space: nowrap;
	flex-shrink: 0;
	opacity: 0;
	transform: translateY(6px);
	transition: opacity .25s ease, transform .25s ease;
}
.nk-pcard:hover .nk-pcard-cta {
	opacity: 1;
	transform: translateY(0);
}

/* ── Swiper pagination — premium pill style ── */
.nk-swiper-pagination {
	bottom: 0 !important;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 6px;
}
.nk-swiper-pagination .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	border-radius: 8px;
	background: #D1D5DB;
	opacity: 1;
	margin: 0 !important;
	transition: width .3s ease, background .3s ease;
}
.nk-swiper-pagination .swiper-pagination-bullet-active {
	width: 28px;
	background: var(--nk-blue);
}

/* ── CTA below pagination ── */
.nk-products-cta { text-align: center; margin-top: 40px; }
.nk-btn-outline-pill {
	display: inline-block;
	border: 1.5px solid var(--nk-blue);
	color: var(--nk-blue);
	background: transparent;
	padding: 13px 34px;
	border-radius: var(--nk-r-pill);
	font-size: 15px;
	font-weight: 500;
	text-decoration: none;
	transition: background-color .2s ease, color .2s ease, transform .2s ease;
}
.nk-btn-outline-pill:hover {
	background: var(--nk-blue);
	color: #fff;
	transform: translateY(-1px);
}

/* ── Responsive ── */
@media (max-width: 900px) {
	.nk-products { padding: var(--nk-sec-pad) 24px; }
}
@media (max-width: 600px) {
	.nk-products { padding: 56px 20px; }
	.nk-products-head { margin-bottom: 32px; }
	.nk-products-cta { margin-top: 32px; }
}


/* ══════════════════════════════════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════════════════════════════════ */
.nk-about { padding: var(--nk-sec-pad) 0; }
.nk-about .nk-container { max-width: 1120px; }
.nk-about-wrap {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 72px;
	align-items: center;
}
.nk-about-img {
	border-radius: var(--nk-r-lg);
	overflow: hidden;
	aspect-ratio: 4 / 5;
	background: var(--nk-f0);
}
.nk-about-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.nk-about-body {
	font-size: 16px;
	color: var(--nk-gray);
	line-height: 1.75;
	font-weight: 300;
	margin-bottom: 24px;
}
.nk-about-body p { margin: 0 0 14px; }

.nk-checklist {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin: 0 0 36px;
	padding: 0;
	list-style: none;
}
.nk-check-item {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 14px;
	color: var(--nk-navy);
	font-weight: 400;
}
.nk-check-dot {
	width: 22px;
	height: 22px;
	background: var(--nk-blue-pale);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 10px;
	color: var(--nk-blue);
	flex-shrink: 0;
	font-weight: 700;
}

.nk-stat-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	border-top: 1px solid var(--nk-border);
	padding-top: 28px;
	margin-top: 4px;
}
.nk-stat {
	border-right: 1px solid var(--nk-border);
	padding-right: 24px;
	margin-right: 24px;
	min-width: 0; /* prevent overflow in grid */
}
.nk-stat:last-child { border-right: none; padding-right: 0; margin-right: 0; }
.nk-stat-n {
	font-size: 34px;
	font-weight: 700;
	color: var(--nk-navy);
	letter-spacing: -0.03em;
	line-height: 1;
}
.nk-stat-n span { color: var(--nk-blue); }
.nk-stat-l {
	font-size: 11px;
	color: var(--nk-gray-mid);
	margin-top: 5px;
	letter-spacing: .04em;
	text-transform: uppercase;
	line-height: 1.4;
	word-break: keep-all;
}

/* Mobile: 2×2 grid */
@media (max-width: 600px) {
	.nk-stat-row {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px 0;
	}
	.nk-stat {
		padding-right: 0;
		margin-right: 0;
		border-right: none;
		border-bottom: none;
		padding-bottom: 0;
	}
	/* Right column items get left border as separator */
	.nk-stat:nth-child(odd) {
		border-right: 1px solid var(--nk-border);
		padding-right: 20px;
	}
	.nk-stat:nth-child(even) {
		padding-left: 20px;
	}
	/* Top row gets bottom border */
	.nk-stat:nth-child(1),
	.nk-stat:nth-child(2) {
		border-bottom: 1px solid var(--nk-border);
		padding-bottom: 24px;
	}
	.nk-stat-n { font-size: 36px; }
}

@media (max-width: 900px) {
	.nk-about-wrap { grid-template-columns: 1fr; gap: 48px; }
	.nk-about-img { order: 2; }
	.nk-about-text { order: 1; }
}

/* ══════════════════════════════════════════════════════════════════
   CEO QUOTE SECTION
══════════════════════════════════════════════════════════════════ */
.nk-ceo-bg {
	position: relative;
	overflow: hidden;
	/* Aurora multi-radial-gradient — NK navy/blue palette (port from Clinic Search v1.0.5 hero) */
	background:
		radial-gradient(ellipse at 20% 50%, rgba(37, 99, 235, 0.45) 0%, transparent 60%),
		radial-gradient(ellipse at 80% 20%, rgba(30, 58, 138, 0.55) 0%, transparent 60%),
		radial-gradient(ellipse at 60% 80%, rgba(59, 130, 246, 0.35) 0%, transparent 50%),
		var(--nk-navy-mid);
	padding: var(--nk-sec-pad) 0;
	color: #fff;
}
.nk-ceo-bg .nk-container { max-width: 1120px; position: relative; z-index: 2; }
.nk-ceo-canvas {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	pointer-events: none;
	display: block;
	/* Static image mode — overrides aurora gradient when BG photo is set */
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.nk-ceo-bg .nk-ceo-inner { position: relative; z-index: 2; }
.nk-ceo-inner {
	display: grid;
	grid-template-columns: 340px 1fr;
	gap: 64px;
	align-items: center;
}
.nk-ceo-photo {
	border-radius: var(--nk-r-lg);
	overflow: hidden;
	height: 460px;
	background: #2a2a2a;
}
.nk-ceo-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
	display: block;
}
.nk-ceo-text blockquote {
	font-size: clamp(18px, 2.5vw, 24px);
	font-weight: 300;
	font-style: italic;
	line-height: 1.65;
	color: #D1D5DB;
	margin: 0 0 36px;
	padding: 0;
	border: none;
}
.nk-ceo-text blockquote strong {
	font-weight: 600;
	color: #fff;
	font-style: normal;
}
.nk-ceo-meta { display: flex; align-items: center; gap: 14px; }
.nk-ceo-avatar {
	width: 48px;
	height: 48px;
	background: #1E3A8A;
	border-radius: 50%;
	display: grid;
	place-items: center;
	font-weight: 700;
	color: #93C5FD;
	font-size: 14px;
	flex-shrink: 0;
}
.nk-ceo-name { font-size: 16px; font-weight: 600; color: #fff; }
.nk-ceo-role { font-size: 12px; color: #9CA3AF; margin-top: 3px; }
.nk-ceo-read-more {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 28px;
	padding: 12px 28px;
	border: 1.5px solid rgba(255,255,255,0.25);
	border-radius: var(--nk-r-pill);
	color: rgba(255,255,255,0.8);
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	backdrop-filter: blur(4px);
	transition: border-color .25s, color .25s, background .25s;
}
.nk-ceo-read-more:hover {
	border-color: rgba(255,255,255,0.7);
	color: #fff;
	background: rgba(255,255,255,0.08);
}

@media (max-width: 900px) {
	.nk-ceo-inner { grid-template-columns: 1fr; gap: 40px; }
	.nk-ceo-photo { max-width: 340px; margin: 0 auto; }
}

/* ══════════════════════════════════════════════════════════════════
   WHY US SECTION
══════════════════════════════════════════════════════════════════ */
.nk-why-bg { background: var(--nk-f5); padding: var(--nk-sec-pad) 0; }
.nk-why-bg .nk-container { max-width: 1120px; }
.nk-why-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
	margin-top: 52px;
}
.nk-why-item {
	background: #fff;
	border-radius: var(--nk-r-lg);
	padding: 32px 24px;
	text-align: center;
	border: 1px solid var(--nk-border);
	transition: transform .3s cubic-bezier(.25,.46,.45,.94), box-shadow .3s;
}
.nk-why-item:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 48px rgba(0,0,0,0.06);
}
.nk-why-icon {
	width: 52px;
	height: 52px;
	background: var(--nk-blue-pale);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 18px;
	font-size: 22px;
}
.nk-why-name {
	font-size: 15px;
	font-weight: 600;
	color: var(--nk-navy);
	margin-bottom: 8px;
	letter-spacing: -0.01em;
}
.nk-why-desc {
	font-size: 12px;
	color: var(--nk-gray-mid);
	line-height: 1.65;
	font-weight: 300;
	margin: 0;
}
@media (max-width: 900px) {
	.nk-why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
	.nk-why-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════════
   ARTICLES SECTION
══════════════════════════════════════════════════════════════════ */
.nk-art-bg { background: var(--nk-white); padding: 72px 0; }
.nk-art-bg .nk-container { max-width: 1120px; }
.nk-art-head { text-align: center; margin-bottom: 36px; }
.nk-art-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.nk-art-card {
	background: #fff;
	border-radius: var(--nk-r-lg);
	overflow: hidden;
	border: 1px solid var(--nk-border);
	display: flex;
	flex-direction: column;
	transition: transform .3s ease, box-shadow .3s ease;
}
.nk-art-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 48px rgba(0,0,0,0.06);
}
.nk-art-thumb {
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--nk-f0);
}
.nk-art-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .5s ease;
}
.nk-art-card:hover .nk-art-thumb img { transform: scale(1.04); }
.nk-art-tag {
	position: absolute;
	top: 14px;
	left: 14px;
	background: rgba(255,255,255,0.92);
	color: var(--nk-blue);
	font-size: 11px;
	font-weight: 600;
	padding: 5px 12px;
	border-radius: var(--nk-r-pill);
	letter-spacing: .03em;
	text-transform: uppercase;
}
/* .nk-art-date ซ่อนแล้ว — ไม่แสดงวันที่บนการ์ด */
.nk-art-date { display: none; }
.nk-art-title {
	font-size: 18px;
	font-weight: 600;
	letter-spacing: -0.01em;
	line-height: 1.38;
	padding: 20px 22px 12px;   /* top padding แทน date ที่ซ่อนไป */
	color: var(--nk-navy);
}
.nk-art-title a { color: inherit; text-decoration: none; }
.nk-art-title a:hover { color: var(--nk-blue); }
.nk-art-read {
	font-size: 13px;
	font-weight: 500;
	color: var(--nk-blue);
	padding: 0 22px 22px;
	text-decoration: none;
	margin-top: auto;
}
.nk-art-read:hover { color: var(--nk-blue-hover); }

/* "อ่านบทความทั้งหมด" button row */
.nk-art-see-all {
	text-align: center;
	margin-top: 48px;
}

/* 4th card hidden on desktop (grid shows 3 columns) */
.nk-art-card--4th { display: none; }

/* ── Articles — tablet ──────────────────────────────────────────── */
@media (max-width: 900px) and (min-width: 601px) {
	.nk-art-grid { grid-template-columns: repeat(2, 1fr); }
	.nk-art-card--4th { display: flex; } /* show 4th on tablet */
}

/* ── Articles — mobile horizontal swipe carousel ────────────────── */
@media (max-width: 600px) {
	.nk-art-bg { padding: 56px 0; }
	.nk-art-head { padding: 0 20px; margin-bottom: 28px; }

	/* Wrapper clips the grid but lets peek card show */
	.nk-art-bg .nk-container {
		padding: 0;
		max-width: 100%;
	}

	.nk-art-grid {
		display: flex;
		flex-direction: row;
		overflow-x: auto;
		overflow-y: visible;
		gap: 14px;
		/* Left padding = 20px margin; right padding gives trailing space */
		padding: 8px 20px 16px;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		-ms-overflow-style: none;
	}
	.nk-art-grid::-webkit-scrollbar { display: none; }

	/* Each card: ~80vw so next card peeks ~15vw on the right */
	.nk-art-card {
		flex: 0 0 78vw;
		min-width: 0;
		scroll-snap-align: start;
	}
	/* Show 4th card on mobile swipe */
	.nk-art-card--4th { display: flex; }

	/* Scroll progress bar — appears on scroll, fades out */
	.nk-art-scroll-track {
		height: 3px;
		background: var(--nk-border);
		border-radius: 99px;
		margin: 12px 20px 0;
		overflow: hidden;
		opacity: 0;
		transition: opacity .3s ease;
	}
	.nk-art-scroll-track.visible { opacity: 1; }
	.nk-art-scroll-thumb {
		height: 100%;
		background: var(--nk-blue);
		border-radius: 99px;
		width: 33%; /* updated by JS */
		transform-origin: left;
		transition: width .15s ease;
	}

	.nk-art-see-all { padding: 0 20px; }
}

/* ══════════════════════════════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════════════════════════════ */
.nk-cta-bg {
	background: var(--nk-navy-mid);
	color: #fff;
	padding: var(--nk-sec-pad) 0;
}
.nk-cta-bg .nk-container { max-width: 800px; }
.nk-cta-h {
	font-size: clamp(28px, 4vw, 44px);
	font-weight: 700;
	color: #fff;
	letter-spacing: -0.02em;
	line-height: 1.15;
	margin-bottom: 16px;
}
.nk-cta-sub {
	font-size: 16px;
	color: #9CA3AF;
	font-weight: 300;
	line-height: 1.7;
	max-width: 560px;
	margin: 0 auto 36px;
}
.nk-cta-btns {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
}

/* ══════════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════════ */
.nk-footer {
	background: var(--nk-navy);
	color: #C7CDD7;
}

/* Main body */
.nk-footer-main {
	padding: 72px 0 56px;
	border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* 3-col grid */
.nk-footer-grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1.2fr;
	gap: 56px;
	align-items: start;
}

/* ── Brand column ── */
.nk-footer-brand {}
.nk-footer-logo {
	display: inline-flex;
	align-items: center;
	margin-bottom: 18px;
	text-decoration: none;
}
.nk-footer-logo-text {
	font-size: 22px;
	font-weight: 700;
	color: #fff;
	letter-spacing: -0.02em;
}
.nk-footer-logo-dot { color: var(--nk-blue); }
.nk-footer-logo-img { max-height: 48px; width: auto; display: block; }
.nk-footer-desc {
	font-size: 14px;
	font-weight: 300;
	line-height: 1.75;
	color: #9CA3AF;
	max-width: 300px;
	margin-bottom: 28px;
}

/* Social buttons */
.nk-footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.nk-footer-social-btn {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.09);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #9CA3AF;
	transition: background .25s, color .25s, border-color .25s, transform .25s;
	text-decoration: none;
}
.nk-footer-social-btn:hover { transform: translateY(-2px); }
.nk-footer-social-btn--fb:hover   { background: #1877F2; border-color: #1877F2; color: #fff; }
.nk-footer-social-btn--ig:hover   { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); border-color: transparent; color: #fff; }
.nk-footer-social-btn--line:hover { background: var(--nk-line-green); border-color: var(--nk-line-green); color: #fff; }

/* ── Column headings ── */
.nk-footer-col-h {
	font-size: 12px;
	font-weight: 600;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: .1em;
	margin-bottom: 22px;
	padding-bottom: 12px;
	border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* ── Nav column ── */
.nk-footer-nav-col {}
.nk-footer-nav {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.nk-footer-nav li a {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #9CA3AF;
	font-size: 14px;
	font-weight: 300;
	text-decoration: none;
	padding: 6px 0;
	transition: color .2s, gap .2s;
	position: relative;
}
.nk-footer-nav li a::before {
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--nk-blue);
	flex-shrink: 0;
	opacity: 0;
	transform: scale(0);
	transition: opacity .2s, transform .2s;
}
.nk-footer-nav li a:hover {
	color: #fff;
	gap: 14px;
}
.nk-footer-nav li a:hover::before {
	opacity: 1;
	transform: scale(1);
}

/* ── Contact column ── */
.nk-footer-contact-col {}
.nk-footer-contact-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.nk-footer-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 14px;
	font-weight: 300;
	color: #9CA3AF;
	line-height: 1.6;
}
.nk-footer-contact-icon {
	flex-shrink: 0;
	width: 32px;
	height: 32px;
	border-radius: 8px;
	background: rgba(255,255,255,0.05);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--nk-blue);
	margin-top: 1px;
}
.nk-footer-contact-item a {
	color: #9CA3AF;
	text-decoration: none;
	transition: color .2s;
}
.nk-footer-contact-item a:hover { color: #fff; }
.nk-footer-contact-item strong { color: #D1D5DB; font-weight: 500; }

/* ── Copyright bar ── */
.nk-footer-bottom {
	padding: 20px 0;
	background: rgba(0,0,0,0.2);
}
.nk-footer-bottom-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}
.nk-footer-copy {
	font-size: 12px;
	color: #6B7280;
}
.nk-footer-bottom-links {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 12px;
	color: #6B7280;
}
.nk-footer-bottom-links a { color: #9CA3AF; text-decoration: none; transition: color .2s; }
.nk-footer-bottom-links a:hover { color: #fff; }
.nk-footer-bottom-sep { color: rgba(255,255,255,0.15); }

/* Mobile */
@media (max-width: 900px) {
	.nk-footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 40px;
	}
	.nk-footer-brand { grid-column: span 2; }
}
@media (max-width: 600px) {
	.nk-footer-main { padding: 52px 0 40px; }
	.nk-footer-grid {
		grid-template-columns: 1fr;
		gap: 36px;
	}
	.nk-footer-brand { grid-column: span 1; }
	.nk-footer-bottom-inner { flex-direction: column; text-align: center; }
}

/* ══════════════════════════════════════════════════════════════════
   SECTION: BRAND TRUST MARQUEE
══════════════════════════════════════════════════════════════════ */

@keyframes nk-marquee-scroll {
	0%   { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

.nk-brands-sec {
	background: var(--nk-f5);
	padding: 72px 0 80px;
	overflow: hidden;
}

/* Heading */
.nk-brands-head {
	text-align: center;
	margin-bottom: 52px;
	padding: 0 24px;
}
.nk-brands-kicker {
	font-size: 12px;
	font-weight: 500;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--nk-blue);
	margin-bottom: 12px;
}
.nk-brands-h2 {
	font-size: clamp(22px, 3vw, 34px);
	font-weight: 700;
	color: var(--nk-navy);
	letter-spacing: -0.02em;
	line-height: 1.25;
}
.nk-brands-h2 span {
	color: var(--nk-blue);
}

/* Marquee wrapper — clips overflow and holds fade masks */
.nk-marquee-wrap {
	position: relative;
	overflow: hidden;
}

/* Left/right gradient fade masks */
.nk-marquee-fade {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 120px;
	z-index: 2;
	pointer-events: none;
}
.nk-marquee-fade--l {
	left: 0;
	background: linear-gradient(to right, var(--nk-f5) 0%, transparent 100%);
}
.nk-marquee-fade--r {
	right: 0;
	background: linear-gradient(to left, var(--nk-f5) 0%, transparent 100%);
}

/* The scrolling track — contains 2× the logos for infinite loop */
.nk-marquee-track {
	display: flex;
	align-items: center;
	gap: 0;
	width: max-content;
	animation: nk-marquee-scroll 28s linear infinite;
}

/* Pause on hover over the whole strip */
.nk-marquee-wrap:hover .nk-marquee-track {
	animation-play-state: paused;
}

/* Individual logo slot */
.nk-marquee-item {
	flex-shrink: 0;
	padding: 0 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Logo box */
.nk-brand-logo {
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	filter: grayscale(1);
	opacity: .5;
	transition: filter .3s ease, opacity .3s ease, transform .3s ease;
	cursor: pointer;
}
/* Uploaded image logos */
.nk-brand-logo img {
	height: 48px;
	width: auto;
	max-width: 160px;
	object-fit: contain;
	display: block;
}
/* SVG logos (legacy) */
.nk-brand-logo svg {
	height: 48px;
	width: auto;
	max-width: 140px;
	color: #555;
	transition: color .3s ease;
}
/* Text fallback placeholder */
.nk-brand-logo--text {
	font-size: 18px;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: #9CA3AF;
	white-space: nowrap;
	height: 48px;
	line-height: 48px;
}
.nk-marquee-item:hover .nk-brand-logo {
	filter: grayscale(0);
	opacity: 1;
	transform: scale(1.07);
}
.nk-marquee-item:hover .nk-brand-logo svg {
	color: var(--brand-color, var(--nk-blue));
}
.nk-marquee-item:hover .nk-brand-logo--text {
	color: var(--nk-navy);
}

/* Mobile: slightly slower + tighter padding */
@media (max-width: 768px) {
	.nk-brands-sec { padding: 52px 0 60px; }
	.nk-brands-head { margin-bottom: 36px; }
	.nk-marquee-item { padding: 0 24px; }
	.nk-brand-logo { height: 36px; }
	.nk-brand-logo svg { height: 36px; max-width: 100px; }
	.nk-marquee-track { animation-duration: 20s; }
	.nk-marquee-fade { width: 60px; }
}

/* ══════════════════════════════════════════════════════════════════
   PAGES (generic content, blog, single, contact)
══════════════════════════════════════════════════════════════════ */
/* ══════════════════════════════════════════════════════════════════
   SINGLE ARTICLE — NK Medic Article Style
══════════════════════════════════════════════════════════════════ */

/* Container */
.nk-article-main { background: #fff; }
.nk-article-wrap {
	max-width: 720px;
	margin: 0 auto;
	padding: 0 24px;
}

/* Back bar */
.nk-article-back {
	border-bottom: 1px solid var(--nk-border);
	padding: 0;
	margin-bottom: 48px;
}
.nk-article-back .nk-article-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 52px;
}
.nk-back-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 500;
	color: var(--nk-gray);
	text-decoration: none;
	padding: 6px 12px 6px 8px;
	border-radius: var(--nk-r-pill);
	transition: all .2s;
}
.nk-back-btn:hover { color: var(--nk-blue); background: #EFF6FF; }
.nk-share-btn {
	width: 36px; height: 36px;
	border-radius: 50%;
	background: var(--nk-f5);
	border: none;
	cursor: pointer;
	display: flex; align-items: center; justify-content: center;
	color: var(--nk-gray);
	transition: all .2s;
}
.nk-share-btn:hover { background: #EFF6FF; color: var(--nk-blue); }

/* Header */
.nk-article-header { margin-bottom: 36px; }
.nk-article-cats {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 16px;
}
.nk-article-cat-pill {
	background: #EFF6FF;
	color: var(--nk-blue);
	font-size: 11px;
	font-weight: 700;
	padding: 4px 12px;
	border-radius: var(--nk-r-pill);
	letter-spacing: .05em;
	text-transform: uppercase;
}
.nk-article-cat-sep { color: #D1D5DB; font-size: 13px; }
.nk-article-cat-sub { color: var(--nk-gray-mid); font-size: 13px; }

.nk-article-h1 {
	font-size: clamp(28px, 5vw, 44px);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.02em;
	color: #111827;
	margin-bottom: 24px;
}

/* author / date / read-time ซ่อนแล้ว — CSS ถูก purge ออก */

/* Hero image */
.nk-article-hero {
	margin: 0 0 40px;
}
.nk-article-hero img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	border-radius: 24px;
	display: block;
	border: 1px solid var(--nk-border);
}
.nk-article-figcaption {
	text-align: center;
	font-size: 12px;
	color: #9CA3AF;
	margin-top: 10px;
	font-style: italic;
}

/* Article body */
.nk-article-content {
	font-size: 16px;
	line-height: 1.85;
	color: #374151;
	margin-bottom: 56px;
}
.nk-article-content p {
	margin-bottom: 1.5rem;
}
.nk-article-content h2 {
	font-size: clamp(22px, 3vw, 28px);
	font-weight: 600;
	color: #111827;
	margin: 2.5rem 0 1rem;
	letter-spacing: -0.015em;
	line-height: 1.3;
}
.nk-article-content h3 {
	font-size: 20px;
	font-weight: 600;
	color: #111827;
	margin: 2rem 0 .75rem;
}
.nk-article-content strong { color: #111827; }
.nk-article-content a { color: var(--nk-blue); text-decoration: underline; text-underline-offset: 3px; }
.nk-article-content ul, .nk-article-content ol {
	padding-left: 1.5rem;
	margin-bottom: 1.5rem;
}
.nk-article-content li { margin-bottom: .5rem; }
.nk-article-content img {
	width: 100%;
	border-radius: var(--nk-r-md);
	margin: 24px 0;
	border: 1px solid var(--nk-border);
}
.nk-article-content blockquote {
	background: #EFF6FF;
	border-left: 4px solid var(--nk-blue);
	padding: 20px 24px;
	border-radius: 0 16px 16px 0;
	margin: 2rem 0;
	color: #1E40AF;
	font-style: italic;
}
/* Gutenberg pullquote block */
.wp-block-pullquote {
	background: #EFF6FF;
	border-left: 4px solid var(--nk-blue);
	padding: 20px 24px;
	border-radius: 0 16px 16px 0;
	margin: 2rem 0;
}

/* ── Callout / Tip box ───────────────────────────────────────── */
.nk-article-callout {
	border-radius: 16px;
	padding: 20px 24px;
	margin: 2rem 0;
	border-left: 4px solid;
}
.nk-article-callout--tip {
	background: #EFF6FF;
	border-color: var(--nk-blue);
	color: #1E3A8A;
}
.nk-article-callout--warning {
	background: #FFFBEB;
	border-color: #F59E0B;
	color: #92400E;
}
.nk-article-callout--danger {
	background: #FEF2F2;
	border-color: #EF4444;
	color: #991B1B;
}
.nk-article-callout--info {
	background: #F9FAFB;
	border-color: #9CA3AF;
	color: #374151;
}
.nk-article-callout-title {
	display: flex;
	align-items: center;
	gap: 7px;
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 10px;
}
.nk-article-callout--tip    .nk-article-callout-title { color: var(--nk-blue); }
.nk-article-callout--warning .nk-article-callout-title { color: #D97706; }
.nk-article-callout--danger  .nk-article-callout-title { color: #DC2626; }
.nk-article-callout--info    .nk-article-callout-title { color: #6B7280; }
.nk-article-callout-body {
	font-size: 15px;
	line-height: 1.75;
	font-weight: 300;
}
.nk-article-callout-body strong { font-weight: 700; }


/* Gallery */
.nk-article-gallery {
	border-top: 1px solid var(--nk-border);
	padding-top: 40px;
	margin-bottom: 48px;
}
.nk-article-gallery-head {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 20px;
	color: var(--nk-navy);
}
.nk-article-gallery-head svg { color: var(--nk-blue); }
.nk-article-gallery-head h2 {
	font-size: 22px;
	font-weight: 700;
	margin: 0;
}
.nk-article-gal-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}
.nk-article-gal-item {
	display: block;
	position: relative;
	aspect-ratio: 1 / 1;
	border-radius: 16px;
	overflow: hidden;
	background: var(--nk-f5);
	border: none;      /* button reset */
	padding: 0;        /* button reset */
	cursor: pointer;
}
.nk-article-gal-item img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform .5s ease;
	display: block;
}
.nk-article-gal-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0);
	transition: background .3s;
	display: flex;
	align-items: center;
	justify-content: center;
}
.nk-article-gal-overlay svg { opacity: 0; transition: opacity .3s; }
.nk-article-gal-item:hover img { transform: scale(1.08); }
.nk-article-gal-item:hover .nk-article-gal-overlay { background: rgba(0,0,0,0.32); }
.nk-article-gal-item:hover .nk-article-gal-overlay svg { opacity: 1; }

/* ── Lightbox ──────────────────────────────────────────────── */
.nk-lb {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
}
.nk-lb[hidden] { display: none; }
.nk-lb-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.94);
	cursor: zoom-out;
}
.nk-lb-stage {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 90vw;
	max-height: 88vh;
}
.nk-lb-img {
	max-width: 88vw;
	max-height: 84vh;
	width: auto;
	height: auto;
	object-fit: contain;
	border-radius: 10px;
	display: block;
	opacity: 0;
	transition: opacity .25s ease;
	user-select: none;
	-webkit-user-drag: none;
}
.nk-lb-img--visible { opacity: 1; }
.nk-lb-close {
	position: fixed;
	top: 18px;
	right: 24px;
	z-index: 2;
	background: rgba(255,255,255,0.1);
	border: 1px solid rgba(255,255,255,0.18);
	border-radius: 50%;
	color: #fff;
	font-size: 26px;
	line-height: 1;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background .2s;
}
.nk-lb-close:hover { background: rgba(255,255,255,0.22); }
.nk-lb-arrow {
	position: fixed;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	background: rgba(255,255,255,0.1);
	border: 1px solid rgba(255,255,255,0.18);
	border-radius: 50%;
	color: #fff;
	font-size: 32px;
	line-height: 1;
	width: 52px;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background .2s;
}
.nk-lb-arrow:hover { background: rgba(255,255,255,0.22); }
.nk-lb-prev { left: 20px; }
.nk-lb-next { right: 20px; }
.nk-lb-counter {
	position: fixed;
	bottom: 22px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	color: rgba(255,255,255,0.6);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: .05em;
	background: rgba(0,0,0,0.4);
	padding: 4px 14px;
	border-radius: 20px;
}
@media (max-width: 600px) {
	.nk-lb-arrow { width: 40px; height: 40px; font-size: 24px; }
	.nk-lb-prev  { left: 8px; }
	.nk-lb-next  { right: 8px; }
	.nk-lb-img   { max-width: 96vw; max-height: 80vh; }
}

/* Tags */
.nk-article-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 48px;
}
.nk-article-tag {
	font-size: 12px;
	font-weight: 500;
	color: var(--nk-gray);
	background: var(--nk-f5);
	padding: 5px 14px;
	border-radius: var(--nk-r-pill);
	text-decoration: none;
	transition: all .2s;
}
.nk-article-tag:hover { background: #EFF6FF; color: var(--nk-blue); }

/* Comments */
.nk-article-comments {
	background: #F9FAFB;
	border-radius: 24px;
	padding: 36px;
	margin-bottom: 64px;
}
.nk-article-comments .comment-list { list-style: none; padding: 0; margin: 0 0 32px; }
.nk-article-comments .comment {
	display: flex;
	gap: 16px;
	margin-bottom: 24px;
}
.nk-article-comments .comment-author img { border-radius: 50%; width: 44px; height: 44px; }
.nk-article-comments .comment-content {
	flex: 1;
	background: #fff;
	border-radius: 0 16px 16px 16px;
	padding: 16px 20px;
	border: 1px solid var(--nk-border);
	font-size: 14px;
	color: #374151;
	line-height: 1.65;
}
.nk-article-comments .fn { font-weight: 700; color: var(--nk-blue); }
.nk-article-comments .comment-meta { font-size: 11px; color: #9CA3AF; margin-bottom: 8px; }
.nk-article-comments #respond { margin-top: 8px; }
.nk-article-comments #respond h3 { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.nk-article-comments .comment-form textarea,
.nk-article-comments .comment-form input[type="text"],
.nk-article-comments .comment-form input[type="email"],
.nk-article-comments .comment-form input[type="url"] {
	width: 100%;
	background: #fff;
	border: 1px solid #E5E7EB;
	border-radius: 16px;
	padding: 14px 18px;
	font-size: 14px;
	font-family: inherit;
	color: #374151;
	transition: border .2s, box-shadow .2s;
	outline: none;
	resize: none;
}
.nk-article-comments .comment-form textarea:focus,
.nk-article-comments .comment-form input:focus {
	border-color: var(--nk-blue);
	box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}
.nk-article-comments .form-submit .submit {
	background: var(--nk-blue);
	color: #fff;
	border: none;
	border-radius: var(--nk-r-pill);
	padding: 12px 32px;
	font-size: 14px;
	font-weight: 500;
	font-family: inherit;
	cursor: pointer;
	transition: background .2s;
}
.nk-article-comments .form-submit .submit:hover { background: var(--nk-blue-hover); }

/* Mobile */
@media (max-width: 600px) {
	.nk-article-wrap { padding: 0 16px; }
	.nk-article-back { margin-bottom: 28px; }
	.nk-article-hero img { border-radius: 16px; }
	.nk-article-gal-grid { grid-template-columns: repeat(2, 1fr); }
	.nk-article-comments { padding: 24px 20px; border-radius: 20px; }
	.nk-back-btn span { display: none; }
}

/* ── Legacy: keep .nk-page for other templates ───────────────────── */
.nk-page {
	padding: 64px 40px var(--nk-sec-pad);
	max-width: 880px;
	margin: 0 auto;
}
/* ══════════════════════════════════════════════════════════════════
   PRODUCTS PAGE — static grid (nk-pcard design, no swiper)
══════════════════════════════════════════════════════════════════ */
.nk-prodpage { padding: var(--nk-sec-pad) 0; }
.nk-prodpage-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
/* Cards that are beyond the initial 6 */
.nk-prod-hidden { display: none; }
/* Fade-in animation when revealed */
.nk-prod-reveal-in {
	display: block;
	animation: nkFadeUp .45s cubic-bezier(.25,.46,.45,.94) both;
}
@keyframes nkFadeUp {
	from { opacity: 0; transform: translateY(20px); }
	to   { opacity: 1; transform: translateY(0); }
}
/* "Load more" button row */
.nk-prodpage-more {
	text-align: center;
	margin-top: 52px;
}

@media (max-width: 900px) {
	.nk-prodpage-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 600px) {
	.nk-prodpage-grid { grid-template-columns: 1fr; gap: 16px; }
	.nk-prodpage { padding: 56px 0; }
}

.nk-page-header { text-align: center; margin-bottom: 48px; }
.nk-page-title {
	font-size: clamp(32px, 5vw, 56px);
	font-weight: 700;
	color: var(--nk-navy);
	letter-spacing: -0.025em;
	margin-bottom: 12px;
}
.nk-page-sub { font-size: 16px; color: var(--nk-gray); font-weight: 300; }
.nk-prose { font-size: 16px; line-height: 1.8; color: var(--nk-gray); }
.nk-prose h2, .nk-prose h3 { color: var(--nk-navy); margin: 32px 0 12px; }
.nk-prose h2 { font-size: 28px; }
.nk-prose h3 { font-size: 22px; }
.nk-prose a { color: var(--nk-blue); }
.nk-prose img { border-radius: var(--nk-r-md); margin: 24px 0; }
.nk-prose blockquote {
	border-left: 3px solid var(--nk-blue);
	padding: 4px 0 4px 20px;
	color: var(--nk-navy);
	font-style: italic;
	margin: 24px 0;
}

/* Blog listing */
.nk-blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	max-width: 1120px;
	margin: 0 auto;
	padding: 0 40px var(--nk-sec-pad);
}
.nk-pagination {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin: 40px 0;
}
.nk-pagination a, .nk-pagination span {
	padding: 8px 14px;
	border-radius: var(--nk-r-pill);
	font-size: 13px;
	color: var(--nk-gray);
	background: var(--nk-f5);
	text-decoration: none;
}
.nk-pagination .current {
	background: var(--nk-blue);
	color: #fff;
}

@media (max-width: 900px) {
	.nk-blog-grid { grid-template-columns: 1fr; }
}

/* Contact card */
.nk-contact-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
	margin-top: 40px;
}
.nk-contact-card {
	background: var(--nk-blue-pale);
	border-radius: var(--nk-r-lg);
	padding: 28px;
	text-align: center;
}
.nk-contact-card-icon {
	width: 52px;
	height: 52px;
	background: #fff;
	border-radius: 50%;
	margin: 0 auto 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	color: var(--nk-blue);
}
.nk-contact-card-label {
	font-size: 12px;
	color: var(--nk-gray-mid);
	letter-spacing: .04em;
	text-transform: uppercase;
	margin-bottom: 8px;
}
.nk-contact-card-value {
	font-size: 16px;
	font-weight: 600;
	color: var(--nk-navy);
	word-break: break-word;
}
.nk-contact-card-value a { color: inherit; text-decoration: none; }
.nk-contact-card-value a:hover { color: var(--nk-blue); }

@media (max-width: 720px) {
	.nk-contact-grid { grid-template-columns: 1fr; }
}

/* 404 */
.nk-404 {
	min-height: 60vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 80px 24px;
}
.nk-404 h1 {
	font-size: clamp(64px, 12vw, 140px);
	color: var(--nk-blue);
	letter-spacing: -0.04em;
	margin-bottom: 8px;
}
.nk-404 p { color: var(--nk-gray); margin-bottom: 24px; }

/* ══════════════════════════════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════════════════════════════ */
.nk-reveal {
	opacity: 0;
	transform: translateY(32px);
	transition: opacity .75s cubic-bezier(.25,.46,.45,.94),
	            transform .75s cubic-bezier(.25,.46,.45,.94);
}
.nk-reveal.visible { opacity: 1; transform: translateY(0); }
.nk-reveal-d1 { transition-delay: .1s; }
.nk-reveal-d2 { transition-delay: .18s; }
.nk-reveal-d3 { transition-delay: .26s; }

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
	.nk-reveal { opacity: 1; transform: none; transition: none; }
	html { scroll-behavior: auto; }
}

/* ══════════════════════════════════════════════════════════════════
   PRODUCT DETAIL PAGE  (single-product.php)
══════════════════════════════════════════════════════════════════ */

/* ── 1. BANNER ────────────────────────────────────────────────── */
.nk-pdp-banner {
	position: relative;
	height: 420px;
	background: var(--nk-navy) center/cover no-repeat;
	overflow: hidden;
}
.nk-pdp-banner-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to right,
		rgba(10,22,40,0.88) 0%,
		rgba(10,22,40,0.72) 30%,
		rgba(10,22,40,0.35) 60%,
		rgba(10,22,40,0) 100%
	);
}
.nk-pdp-banner-inner {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}

/* LEFT: Text content (floating over image)
   Dynamic left padding aligns the text with .nk-container on all viewport widths.
   Formula: container left edge = max(40px, (100vw - 1120px) / 2 + 40px)           */
.nk-pdp-banner-text {
	flex: 0 0 auto;
	/* Wide screens: push right so text lines up with the container below */
	padding-left: max(40px, calc((100vw - 1120px) / 2 + 40px));
	/* Prevent text from overlapping the presenter image on mid-size desktops */
	max-width: min(520px, 42vw);
	padding-bottom: 40px;
	position: relative;
	z-index: 3;
}

/* RIGHT: Presenter image container (fills banner height) */
.nk-pdp-banner-presenter {
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 55%;
	max-width: 600px;
	height: 100%;
	overflow: hidden;
	border-radius: 0;
	z-index: 2;
}

.nk-pdp-presenter-img {
	display: block;
	width: 100%;
	height: 100%;
}

.nk-pdp-presenter-pic {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: contain;
	object-position: center;
}

/* Scroll reveal animation for presenter */
.nk-pdp-banner-presenter.nk-reveal {
	opacity: 0;
	transform: translateY(32px);
}

.nk-pdp-banner-presenter.nk-reveal.visible {
	opacity: 1;
	transform: translateY(0);
	transition: opacity 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94),
	            transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nk-pdp-breadcrumb {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	font-weight: 400;
	color: rgba(255,255,255,0.6);
	margin-bottom: 16px;
	flex-wrap: wrap;
}
.nk-pdp-breadcrumb a {
	color: rgba(255,255,255,0.6);
	text-decoration: none;
	transition: color .2s;
}
.nk-pdp-breadcrumb a:hover { color: #fff; }
.nk-pdp-breadcrumb-current { color: rgba(255,255,255,0.9); }

.nk-pdp-banner-tag {
	display: inline-block;
	background: var(--nk-blue);
	color: #fff;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: .06em;
	text-transform: uppercase;
	padding: 4px 12px;
	border-radius: var(--nk-r-pill);
	margin-bottom: 12px;
}
.nk-pdp-banner-title {
	font-size: clamp(28px, 4vw, 52px);
	font-weight: 700;
	color: #fff;
	letter-spacing: -0.025em;
	line-height: 1.1;
	margin: 0 0 8px;
}
.nk-pdp-banner-origin {
	font-size: 14px;
	color: rgba(255,255,255,0.65);
	font-weight: 300;
	margin: 0;
}

/* ── Responsive banner layout ──────────────────────────────────── */

/* Tablet: 768px - 1023px */
@media (max-width: 1023px) {
	.nk-pdp-banner-presenter {
		width: 50%;
		max-width: 450px;
	}
	.nk-pdp-banner-text {
		/* At tablet widths container centering has no effect — use fixed padding */
		padding-left: 40px;
		max-width: 100%;
		padding-bottom: 36px;
	}
	.nk-pdp-banner {
		height: 400px;
	}
	/* Revert main grid to equal columns on tablet */
	.nk-pdp-main-grid {
		grid-template-columns: 1fr 1fr;
		gap: 36px;
	}
}

/* Mobile: max-width 600px */
@media (max-width: 600px) {
	.nk-pdp-banner {
		height: 650px;
	}

	.nk-pdp-banner-inner {
		align-items: flex-end;
	}

	.nk-pdp-banner-text {
		max-width: 100%;
		position: relative;
		z-index: 3;
		padding-bottom: 40px;
		padding-left: 20px;
		padding-right: 20px;
	}

	.nk-pdp-banner-presenter {
		width: 100%;
		max-width: 100%;
		z-index: 2;
	}

	.nk-pdp-banner-title {
		font-size: clamp(22px, 5vw, 36px);
	}

	.nk-pdp-breadcrumb {
		font-size: 11px;
	}

	.nk-pdp-banner-tag {
		font-size: 10px;
		padding: 3px 10px;
	}
}

/* ── 2. MAIN GRID ─────────────────────────────────────────────── */
.nk-pdp-main {
	padding: 56px 0;
	background: var(--nk-white);
}
.nk-pdp-main-grid {
	display: grid;
	/* Image col slightly wider — classic e-commerce 55/45 split */
	grid-template-columns: 1.15fr 1fr;
	gap: 56px;
	align-items: start;
}

/* Image column — main image + thumbnails */
.nk-pdp-img-col { display: flex; flex-direction: column; gap: 14px; }

.nk-pdp-img-wrap {
	border-radius: var(--nk-r-lg);
	overflow: hidden;
	background: var(--nk-f5);
	box-shadow: 0 24px 64px rgba(0,0,0,0.08);
	aspect-ratio: 1/1;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
.nk-pdp-main-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 24px;
	box-sizing: border-box;
	transition: transform .5s ease, opacity .25s ease;
}
.nk-pdp-img-wrap:hover .nk-pdp-main-img { transform: scale(1.04); }
/* Swap transition */
.nk-pdp-main-img.is-swapping { opacity: 0; transform: scale(.98); transition: opacity .15s ease, transform .15s ease; }
.nk-pdp-img-placeholder {
	width: 100%;
	aspect-ratio: 1/1;
	background: var(--nk-f0);
}

/* Thumbnail strip */
.nk-pdp-thumbs {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
	gap: 10px;
}
.nk-pdp-thumb {
	all: unset;
	cursor: pointer;
	display: block;
	aspect-ratio: 1/1;
	border-radius: 12px;
	overflow: hidden;
	background: var(--nk-f5);
	border: 2px solid transparent;
	transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
	box-sizing: border-box;
}
.nk-pdp-thumb img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 6px;
	box-sizing: border-box;
	display: block;
	transition: transform .3s ease;
}
.nk-pdp-thumb:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 18px rgba(0,0,0,0.06);
}
.nk-pdp-thumb:hover img { transform: scale(1.05); }
.nk-pdp-thumb.is-active {
	border-color: var(--nk-pdp-accent, var(--nk-blue));
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--nk-pdp-accent, var(--nk-blue)) 18%, transparent);
}
.nk-pdp-thumb:focus-visible {
	outline: 2px solid var(--nk-pdp-accent, var(--nk-blue));
	outline-offset: 2px;
}

/* Info column */
.nk-pdp-info { display: flex; flex-direction: column; gap: 20px; }

.nk-pdp-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.nk-pdp-tag {
	font-size: 11px;
	font-weight: 500;
	letter-spacing: .04em;
	padding: 4px 12px;
	border-radius: var(--nk-r-pill);
	background: #EFF6FF;
	color: var(--nk-blue);
}
.nk-pdp-tag--cat {
	background: var(--nk-f5);
	color: var(--nk-gray);
}

.nk-pdp-title {
	font-size: clamp(22px, 3vw, 36px);
	font-weight: 700;
	color: var(--nk-navy);
	letter-spacing: -0.02em;
	line-height: 1.15;
	margin: 0;
}

.nk-pdp-stars {
	display: flex;
	align-items: center;
	gap: 3px;
}
.nk-pdp-stars-label {
	font-size: 12px;
	color: var(--nk-gray-mid);
	margin-left: 8px;
	font-weight: 400;
}

.nk-pdp-origin-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 400;
	color: var(--nk-gray);
	background: var(--nk-f5);
	border-radius: var(--nk-r-pill);
	padding: 6px 14px;
	width: fit-content;
}
.nk-pdp-origin-badge strong { color: var(--nk-navy); font-weight: 600; }
.nk-pdp-origin-badge svg { color: var(--nk-blue); flex-shrink: 0; }

.nk-pdp-desc {
	font-size: 15px;
	font-weight: 300;
	color: var(--nk-gray);
	line-height: 1.75;
	margin: 0;
}
.nk-pdp-desc p { margin: 0 0 .75em; }

/* Features */
.nk-pdp-features { display: flex; flex-direction: column; gap: 10px; }
.nk-pdp-features-label {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--nk-gray-mid);
	margin: 0 0 4px;
}
.nk-pdp-features ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.nk-pdp-features li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	font-weight: 400;
	color: var(--nk-navy);
}
.nk-pdp-feat-check {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

/* CTA buttons */
.nk-pdp-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.nk-pdp-btn-line {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #00B900;
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	padding: 14px 28px;
	border-radius: var(--nk-r-pill);
	text-decoration: none;
	transition: background .2s, transform .2s;
}
.nk-pdp-btn-line:hover { background: #009a00; transform: translateY(-2px); }
.nk-pdp-btn-outline {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: transparent;
	color: var(--nk-navy);
	font-size: 15px;
	font-weight: 500;
	padding: 13px 28px;
	border-radius: var(--nk-r-pill);
	border: 1.5px solid var(--nk-border);
	text-decoration: none;
	transition: border-color .2s, color .2s, transform .2s;
}
.nk-pdp-btn-outline:hover {
	border-color: var(--nk-blue);
	color: var(--nk-blue);
	transform: translateY(-2px);
}

/* Trust badges */
.nk-pdp-badges {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	padding-top: 16px;
	border-top: 1px solid var(--nk-border);
}
.nk-pdp-badge {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	font-weight: 400;
	color: var(--nk-gray-mid);
}
.nk-pdp-badge svg { color: var(--nk-blue); flex-shrink: 0; }

/* ── 3. CONTENT BLOCKS (Image + Text repeater) ────────────────── */
.nk-pdp-blocks {
	padding: 56px 0 64px;
	background: var(--nk-white);
}

/* ── Desktop / Tablet: 2-column grid ── */
.nk-pdp-blocks-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 36px 28px;
	align-items: start;   /* each block anchors to its own top */
}

/* Each block = image (full width) + optional text below */
.nk-pdp-block {
	width: 100%;
}

/* Full-width image — no card, no crop constraint */
.nk-pdp-block-img {
	width: 100%;
	border-radius: var(--nk-r-lg);
	overflow: hidden;
	background: var(--nk-f5);
	line-height: 0;
}
.nk-pdp-block-photo {
	width: 100%;
	height: auto;
	display: block;
	object-fit: contain;
}
/* Local video in image slot — full natural scale, no crop, no black bars */
.nk-pdp-block-img--video {
	background: #111;             /* visible before video loads / on iOS no-poster */
	line-height: 0;
	border-radius: var(--nk-r-lg);
	overflow: hidden;
}
.nk-pdp-block-img--video video {
	width: 100%;
	height: auto;
	display: block;
}

/* ── Custom video player (Instagram/TikTok style) ───────────────────── */
.nk-vid-player {
	position: relative;
	cursor: pointer;
	overflow: hidden;
	/* Fallback height so overlay exists before video dimensions are known */
	min-height: 200px;
}
/* Full-cover overlay — pointer-events: none so clicks fall through to wrapper's listener */
.nk-vid-overlay {
	position: absolute;
	inset: 0;
	pointer-events: none;
}
/* Play button — absolutely centered, independent of video load state */
.nk-vid-play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 68px;
	height: 68px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.18);
	border: 2px solid rgba(255, 255, 255, 0.72);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	opacity: 1;
	transition: opacity 0.25s ease;
	pointer-events: none;
}
/* Hide play btn while playing — no exceptions */
.nk-vid-player.is-playing .nk-vid-play-btn {
	opacity: 0;
}
.nk-vid-play-btn svg {
	/* Optically center the play triangle */
	transform: translateX(2px);
}
/* Duration / elapsed timer — bottom-right corner */
.nk-vid-timer {
	position: absolute;
	bottom: 12px;
	right: 14px;
	font-size: 12px;
	font-weight: 500;
	font-family: 'Prompt', sans-serif;
	color: #fff;
	background: rgba(0, 0, 0, 0.42);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	padding: 3px 8px;
	border-radius: 20px;
	letter-spacing: 0.03em;
	line-height: 1.4;
	pointer-events: none;
	opacity: 1;
	transition: opacity 0.2s ease;
}
/* Fade timer while playing (subtle — still visible) */
.nk-vid-player.is-playing .nk-vid-timer {
	opacity: 0.55;
}
.nk-vid-player.is-playing:hover .nk-vid-timer {
	opacity: 1;
}

/* Mute icon — top-right corner, visible when playing + muted */
.nk-vid-mute {
	position: absolute;
	top: 12px;
	right: 14px;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	pointer-events: none;
	opacity: 0;
	transform: scale(0.8);
	transition: opacity 0.25s ease, transform 0.25s ease;
}
/* Show when playing AND muted */
.nk-vid-player.is-playing.is-muted .nk-vid-mute {
	opacity: 1;
	transform: scale(1);
}
/* Flash out when user unmutes */
.nk-vid-player.is-unmuted .nk-vid-mute {
	opacity: 0;
	transform: scale(1.3);
	transition: opacity 0.35s ease, transform 0.35s ease;
}

/* Text below image — supports rich HTML (H2/H3/bold/links/lists) + plain text with line breaks */
.nk-pdp-block-text {
	margin-top: 14px;
	font-size: 14px;
	font-weight: 300;
	line-height: 1.75;
	color: var(--nk-gray);
	white-space: pre-line; /* honour real \n as line breaks; collapse multi-spaces normally */
}
.nk-pdp-block-text h2 {
	font-size: 22px;
	font-weight: 700;
	color: var(--nk-navy);
	letter-spacing: -0.02em;
	margin: 18px 0 8px;
	line-height: 1.25;
}
.nk-pdp-block-text h3 {
	font-size: 17px;
	font-weight: 600;
	color: var(--nk-navy);
	margin: 14px 0 6px;
	line-height: 1.35;
}
.nk-pdp-block-text strong { font-weight: 600; color: var(--nk-navy); }
.nk-pdp-block-text em     { font-style: italic; }
.nk-pdp-block-text a      { color: var(--nk-blue); text-decoration: underline; }
.nk-pdp-block-text ul,
.nk-pdp-block-text ol     { padding-left: 20px; margin: 8px 0; }
.nk-pdp-block-text li     { margin-bottom: 4px; }
.nk-pdp-block-text p      { margin: 0 0 8px; }
.nk-pdp-block-text h2:first-child,
.nk-pdp-block-text h3:first-child { margin-top: 0; }

/* Responsive video embed — 16:9 */
.nk-pdp-block-video {
	margin-top: 14px;
	position: relative;
	width: 100%;
	padding-bottom: 56.25%; /* 16:9 */
	height: 0;
	border-radius: var(--nk-r-lg);
	overflow: hidden;
	background: #000;
}
.nk-pdp-block-video iframe,
.nk-pdp-block-video video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

/* ── Mobile: single column ── */
@media (max-width: 768px) {
	.nk-pdp-blocks {
		padding: 40px 0 48px;
	}
	.nk-pdp-blocks-grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}
	.nk-pdp-block-img {
		border-radius: var(--nk-r-md);
	}
	.nk-pdp-block-text {
		margin-top: 10px;
	}
	.nk-pdp-block-video {
		border-radius: var(--nk-r-md);
	}
}

/* ── 4. PRODUCT FORMULAS ──────────────────────────────────────── */
.nk-pdp-formulas {
	padding: var(--nk-sec-pad) 0;
	background: var(--nk-f5);
}
.nk-pdp-formulas-head { margin-bottom: 52px; max-width: 640px; margin-left: auto; margin-right: auto; }
.nk-pdp-formulas-sub {
	font-size: 15px;
	font-weight: 300;
	color: var(--nk-gray);
	line-height: 1.7;
	margin: 12px 0 0;
}

/* ── Formula grid — mobile-first, count-aware ─────────────────── */
.nk-pdp-formulas-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

/* Tablet 600–959px ─────────────────────────────────────────────
   1–2 items: stay as 2-col grid
   3–4 items: horizontal scroll with snap                        */
@media (min-width: 600px) and (max-width: 959px) {
	.nk-pdp-formulas-grid--1,
	.nk-pdp-formulas-grid--2 {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
	.nk-pdp-formulas-grid--3,
	.nk-pdp-formulas-grid--4 {
		display: flex;
		flex-wrap: nowrap;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		gap: 16px;
		padding-bottom: 16px;
		scrollbar-width: thin;
		scrollbar-color: rgba(37,99,235,0.25) transparent;
	}
	.nk-pdp-formulas-grid--3 > .nk-pdp-formula,
	.nk-pdp-formulas-grid--4 > .nk-pdp-formula {
		flex: 0 0 72%;
		max-width: 300px;
		scroll-snap-align: start;
	}
}

/* Desktop ≥960px — match columns to count ─────────────────── */
@media (min-width: 960px) {
	.nk-pdp-formulas-grid--1 { grid-template-columns: 1fr; max-width: 360px; margin-inline: auto; }
	.nk-pdp-formulas-grid--2 { grid-template-columns: repeat(2, 1fr); gap: 28px; }
	.nk-pdp-formulas-grid--3 { grid-template-columns: repeat(3, 1fr); gap: 28px; }
	.nk-pdp-formulas-grid--4 { grid-template-columns: repeat(4, 1fr); gap: 22px; }
}

/* Card */
.nk-pdp-formula {
	background: #fff;
	border-radius: 2rem;
	overflow: hidden;
	border: 1px solid var(--nk-border);
	box-shadow: 0 4px 20px rgba(10,22,40,0.06);
	transition: transform .35s cubic-bezier(.25,.46,.45,.94),
	            box-shadow .35s cubic-bezier(.25,.46,.45,.94);
	display: flex;
	flex-direction: column;
}
.nk-pdp-formula:hover {
	transform: translateY(-7px);
	box-shadow: 0 24px 60px rgba(10,22,40,0.13);
}

/* Image block 1:1 */
.nk-pdp-formula-img {
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: var(--nk-f5);
	flex-shrink: 0;
}
.nk-pdp-formula-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .55s ease;
}
.nk-pdp-formula:hover .nk-pdp-formula-img img { transform: scale(1.05); }
.nk-pdp-formula-img-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--nk-f5) 0%, var(--nk-blue-pale) 100%);
	font-size: 40px;
	opacity: .5;
}

/* Text body */
.nk-pdp-formula-body {
	padding: 22px 24px 28px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1;
}
.nk-pdp-formula-name {
	font-size: 17px;
	font-weight: 700;
	color: var(--nk-navy);
	letter-spacing: -0.01em;
	line-height: 1.3;
	margin: 0;
}
.nk-pdp-formula-desc {
	font-size: 13px;
	font-weight: 300;
	color: var(--nk-gray);
	line-height: 1.72;
	margin: 0;
}

/* Closing tagline below the formula grid */
.nk-pdp-formulas-closing {
	margin: 56px auto 0;
	max-width: 820px;
	text-align: center;
	padding: 36px 32px;
	background: #fff;
	border-radius: var(--nk-r-lg);
	border: 1px solid var(--nk-border);
	position: relative;
}
.nk-pdp-formulas-quote-mark {
	color: var(--nk-pdp-accent, var(--nk-blue));
	opacity: .35;
	margin-bottom: 8px;
}
.nk-pdp-formulas-closing-text {
	font-size: clamp(16px, 1.6vw, 19px);
	font-weight: 400;
	font-style: italic;
	color: var(--nk-navy);
	line-height: 1.65;
	letter-spacing: -0.005em;
	margin: 0;
}

/* ── 4. SLOGAN / MAGAZINE SPLIT ───────────────────────────────── */
.nk-pdp-slogan {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 460px;
}
.nk-pdp-slogan-dark {
	background: var(--nk-navy);
	display: flex;
	align-items: center;
	padding: 64px 56px;
}
.nk-pdp-slogan-kicker {
	display: block;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--nk-blue);
	margin-bottom: 20px;
}
.nk-pdp-slogan-body {
	font-size: 15px;
	font-weight: 300;
	color: rgba(255,255,255,0.75);
	line-height: 1.75;
}
.nk-pdp-slogan-body p { margin: 0 0 1em; }
.nk-pdp-slogan-body h2,
.nk-pdp-slogan-body h3 { color: #fff; font-weight: 600; margin-bottom: .5em; }
.nk-pdp-slogan-body a { color: #93C5FD; }
.nk-pdp-slogan-img {
	background: var(--nk-f5) center/cover no-repeat;
}
.nk-pdp-slogan-img--empty { background: var(--nk-f0); }

/* ── 5. RELATED PRODUCTS ──────────────────────────────────────── */
.nk-pdp-related {
	padding: var(--nk-sec-pad) 0;
	background: var(--nk-white);
}
.nk-pdp-related-head { margin-bottom: 36px; }
.nk-pdp-related-grid {
	display: grid;
	/* 2 cards fetched — 2 equal columns, generous cards */
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

/* Card — whole card is a link */
.nk-pdp-rel-card {
	display: flex;
	flex-direction: column;
	background: var(--nk-white);
	border-radius: var(--nk-r-lg);
	overflow: hidden;
	border: 1px solid var(--nk-border);
	text-decoration: none;
	color: inherit;
	transition: transform .35s cubic-bezier(.25,.46,.45,.94),
	            box-shadow .35s cubic-bezier(.25,.46,.45,.94);
}
.nk-pdp-rel-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 24px 64px rgba(0,0,0,0.10);
	border-color: transparent;
}

/* Image — full-width cover */
.nk-pdp-rel-img {
	width: 100%;
	aspect-ratio: 3 / 4;
	overflow: hidden;
	background: var(--nk-f5);
	flex-shrink: 0;
}
.nk-pdp-rel-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .5s ease;
}
.nk-pdp-rel-card:hover .nk-pdp-rel-img img { transform: scale(1.04); }
.nk-pdp-rel-img-placeholder { width: 100%; height: 100%; background: var(--nk-f0); }

/* Text body */
.nk-pdp-rel-body {
	padding: 16px 18px 20px;
	display: flex;
	flex-direction: column;
	flex: 1;
}
.nk-pdp-rel-ey {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
	display: block;
	margin-bottom: 6px;
}
.nk-pdp-rel-title {
	font-size: 15px;
	font-weight: 700;
	color: var(--nk-navy);
	letter-spacing: -0.01em;
	line-height: 1.25;
	margin: 0 0 10px;
}
.nk-pdp-rel-desc {
	font-size: 12px;
	font-weight: 300;
	color: var(--nk-gray);
	line-height: 1.65;
	flex: 1;
	margin: 0 0 14px;
}
.nk-pdp-rel-link {
	font-size: 12px;
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	transition: gap .2s;
}
.nk-pdp-rel-card:hover .nk-pdp-rel-link { gap: 8px; }

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 900px) {
	.nk-pdp-main-grid {
		grid-template-columns: 1fr;
		gap: 36px;
	}
	.nk-pdp-img-col  { max-width: 480px; margin: 0 auto; width: 100%; }
	.nk-pdp-slogan   { grid-template-columns: 1fr; }
	.nk-pdp-slogan-img { min-height: 260px; }
	.nk-pdp-related-grid { gap: 12px; }

}
@media (max-width: 600px) {
	.nk-pdp-banner { height: 320px; }
	.nk-pdp-slogan-dark { padding: 48px 24px; }
	.nk-pdp-rel-body { padding: 16px 18px 20px; }
	.nk-pdp-badges { gap: 12px; }
	.nk-pdp-related-grid { grid-template-columns: 1fr; gap: 14px; }

	/* Thumbnails: smaller on mobile */
	.nk-pdp-thumbs { grid-template-columns: repeat(auto-fill, minmax(60px, 1fr)); gap: 8px; }

	/* Formulas: force 1 column + cancel horizontal scroll on mobile */
	.nk-pdp-formulas-grid,
	.nk-pdp-formulas-grid--1,
	.nk-pdp-formulas-grid--2,
	.nk-pdp-formulas-grid--3,
	.nk-pdp-formulas-grid--4 {
		display: grid;
		grid-template-columns: 1fr;
		max-width: 100%;
		overflow-x: visible;
	}
	.nk-pdp-formulas-grid--3 > .nk-pdp-formula,
	.nk-pdp-formulas-grid--4 > .nk-pdp-formula {
		flex: unset;
		max-width: 100%;
	}
	.nk-pdp-formula { padding: 26px 22px 22px; }
	.nk-pdp-formula-name { font-size: 18px; }
	.nk-pdp-formulas-closing { margin-top: 36px; padding: 26px 22px; }
}

/* ══════════════════════════════════════════════════════════════════
   CEO BIO PAGE  (page-ake-nakorn-kornherun.php)
══════════════════════════════════════════════════════════════════ */

/* ── 1. HERO ────────────────────────────────────────────────────── */
.nk-bio-hero {
	position: relative;
	overflow: hidden;
	padding: 72px 0 80px;
	/* Aurora multi-radial-gradient — same palette as .nk-ceo-bg */
	background:
		radial-gradient(ellipse at 20% 50%, rgba(37, 99, 235, 0.45) 0%, transparent 60%),
		radial-gradient(ellipse at 80% 20%, rgba(30, 58, 138, 0.55) 0%, transparent 60%),
		radial-gradient(ellipse at 60% 80%, rgba(59, 130, 246, 0.35) 0%, transparent 50%),
		var(--nk-navy-mid);
}
.nk-bio-hero .nk-container { position: relative; z-index: 2; }
.nk-bio-hero-grid {
	display: grid;
	grid-template-columns: 420px 1fr;
	gap: 72px;
	align-items: center;
	position: relative;
	z-index: 2;
}

/* Portrait column */
.nk-bio-portrait {
	position: relative;
	border-radius: var(--nk-r-lg);
	overflow: hidden;
	aspect-ratio: 3/4;
	background: #122040;
	box-shadow: 0 32px 80px rgba(0,0,0,0.35);
}
.nk-bio-portrait-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
	display: block;
}
.nk-bio-portrait-placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #0A1628, #1E3A8A);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 72px;
	font-weight: 700;
	color: rgba(255,255,255,0.15);
}
.nk-bio-role-badge {
	position: absolute;
	bottom: 20px;
	left: 20px;
	background: rgba(255,255,255,0.95);
	backdrop-filter: blur(8px);
	border-radius: var(--nk-r-pill);
	padding: 8px 18px;
	font-size: 12px;
	font-weight: 600;
	color: var(--nk-navy);
	display: flex;
	align-items: center;
	gap: 8px;
	letter-spacing: .04em;
}
.nk-bio-role-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--nk-blue);
	flex-shrink: 0;
	animation: nk-pulse 2s ease infinite;
}
@keyframes nk-pulse {
	0%,100% { opacity: 1; transform: scale(1); }
	50%      { opacity: .5; transform: scale(1.3); }
}

/* Text column — on dark navy bg */
.nk-bio-tagline {
	display: block;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: #60A5FA;
	margin-bottom: 16px;
}
.nk-bio-h1 {
	font-size: clamp(36px, 5vw, 60px);
	font-weight: 700;
	color: #fff;
	letter-spacing: -0.03em;
	line-height: 1.05;
	margin: 0 0 6px;
}
.nk-bio-h1 span { color: #60A5FA; }
.nk-bio-position {
	font-size: 14px;
	font-weight: 400;
	color: rgba(255,255,255,0.5);
	margin: 0 0 28px;
	letter-spacing: .01em;
}
.nk-bio-hero-quote {
	font-size: 17px;
	font-weight: 300;
	font-style: italic;
	color: rgba(255,255,255,0.65);
	line-height: 1.7;
	border-left: 3px solid #3B82F6;
	padding-left: 20px;
	margin: 0 0 32px;
}
.nk-bio-hero-links {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}
.nk-bio-link {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 10px 22px;
	border-radius: var(--nk-r-pill);
	border: 1.5px solid rgba(255,255,255,0.2);
	font-size: 13px;
	font-weight: 500;
	color: rgba(255,255,255,0.85);
	text-decoration: none;
	background: rgba(255,255,255,0.06);
	transition: border-color .2s, color .2s, background .2s;
}
.nk-bio-link:hover {
	border-color: rgba(255,255,255,0.5);
	color: #fff;
	background: rgba(255,255,255,0.12);
}

/* ── 2. BIOGRAPHY PROSE ─────────────────────────────────────────── */
.nk-bio-prose-sec {
	position: relative;
	padding: var(--nk-sec-pad) 0;
	background: var(--nk-f5);
}
/* Full-width cover image + soft overlay when bg is set */
.nk-bio-prose-sec.has-bg {
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	background-color: var(--nk-f5);
}
.nk-bio-prose-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(255,255,255,0.92) 0%,
		rgba(255,255,255,0.86) 50%,
		rgba(255,255,255,0.95) 100%
	);
	backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(2px);
	z-index: 1;
}
.nk-bio-prose-sec .nk-container { position: relative; z-index: 2; }
.nk-bio-prose-wrap { max-width: 760px; }
/* Frosted card around prose so text always reads cleanly */
.nk-bio-prose-sec.has-bg .nk-bio-prose-wrap {
	background: rgba(255,255,255,0.72);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	padding: 48px 56px;
	border-radius: var(--nk-r-lg);
	box-shadow: 0 24px 64px rgba(10,22,40,0.08);
	border: 1px solid rgba(255,255,255,0.6);
}
@media (max-width: 768px) {
	.nk-bio-prose-sec.has-bg { background-attachment: scroll; }
	.nk-bio-prose-sec.has-bg .nk-bio-prose-wrap { padding: 32px 24px; }
}
.nk-bio-sec-h {
	font-size: clamp(24px, 3vw, 38px);
	font-weight: 700;
	color: var(--nk-navy);
	letter-spacing: -0.02em;
	margin: 8px 0 32px;
}
.nk-bio-prose p {
	font-size: 16px;
	font-weight: 300;
	color: #374151;
	line-height: 1.85;
	margin: 0 0 1.4em;
}
.nk-bio-prose strong {
	font-weight: 600;
	color: var(--nk-navy);
}

/* ── 3. MILESTONES ──────────────────────────────────────────────── */
.nk-bio-milestones {
	padding: var(--nk-sec-pad) 0;
	background: var(--nk-white);
}
.nk-bio-ms-head { margin-bottom: 52px; }
.nk-bio-ms-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.nk-bio-ms-card {
	background: var(--nk-f5);
	border-radius: var(--nk-r-lg);
	padding: 32px 26px;
	border: 1px solid var(--nk-border);
	transition: transform .3s ease, box-shadow .3s ease;
}
.nk-bio-ms-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 48px rgba(0,0,0,0.07);
	border-color: transparent;
}
.nk-bio-ms-icon {
	width: 52px;
	height: 52px;
	background: #EFF6FF;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	margin-bottom: 18px;
}
.nk-bio-ms-card h3 {
	font-size: 15px;
	font-weight: 600;
	color: var(--nk-navy);
	letter-spacing: -0.01em;
	margin: 0 0 10px;
	line-height: 1.3;
}
.nk-bio-ms-card p {
	font-size: 13px;
	font-weight: 300;
	color: var(--nk-gray);
	line-height: 1.65;
	margin: 0;
}

/* ── 4. COMMITMENT / BRAND PORTFOLIO ────────────────────────────── */
.nk-bio-commit {
	padding: var(--nk-sec-pad) 0;
	background: var(--nk-navy);
}
.nk-bio-commit-inner {
	display: grid;
	grid-template-columns: 1fr 280px;
	gap: 72px;
	align-items: start;
}
.nk-bio-commit-lead {
	font-size: 17px;
	font-style: italic;
	font-weight: 300;
	color: rgba(255,255,255,0.65);
	line-height: 1.7;
	margin: 16px 0 32px;
	border-left: 3px solid var(--nk-blue);
	padding-left: 18px;
}
.nk-bio-commit-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.nk-bio-commit-list li {
	display: flex;
	align-items: baseline;
	gap: 12px;
	font-size: 14px;
	font-weight: 300;
	color: rgba(255,255,255,0.65);
	padding-bottom: 16px;
	border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nk-bio-commit-list li:last-child { border-bottom: none; padding-bottom: 0; }
.nk-bio-commit-cat {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--nk-blue);
	white-space: nowrap;
	flex-shrink: 0;
	padding: 3px 10px;
	background: rgba(37,99,235,0.15);
	border-radius: var(--nk-r-pill);
}

/* Stats column */
.nk-bio-commit-stat-col {
	display: flex;
	flex-direction: column;
	gap: 0;
}
.nk-bio-commit-stat {
	padding: 24px 0;
	border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nk-bio-commit-stat:last-child { border-bottom: none; }
.nk-bio-commit-stat-n {
	font-size: 42px;
	font-weight: 700;
	color: var(--nk-blue);
	letter-spacing: -0.04em;
	line-height: 1;
}
.nk-bio-commit-stat-l {
	font-size: 12px;
	color: rgba(255,255,255,0.45);
	margin-top: 6px;
	letter-spacing: .04em;
}

/* ── 5. CTA ─────────────────────────────────────────────────────── */
.nk-bio-cta {
	padding: var(--nk-sec-pad) 0;
	background: var(--nk-white);
}
.nk-bio-cta-h {
	font-size: clamp(28px, 4vw, 44px);
	font-weight: 700;
	color: var(--nk-navy);
	letter-spacing: -0.025em;
	line-height: 1.15;
	margin: 8px 0 16px;
}
.nk-bio-cta-sub {
	font-size: 16px;
	font-weight: 300;
	color: var(--nk-gray);
	line-height: 1.7;
	margin: 0 0 40px;
}
.nk-bio-cta-btns {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
}

/* ── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
	.nk-bio-hero-grid { grid-template-columns: 320px 1fr; gap: 48px; }
	.nk-bio-ms-grid   { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
	.nk-bio-hero-grid      { grid-template-columns: 1fr; gap: 36px; }
	.nk-bio-portrait       { max-width: 320px; margin: 0 auto; aspect-ratio: 3/4; }
	.nk-bio-commit-inner   { grid-template-columns: 1fr; gap: 48px; }
	.nk-bio-commit-stat-col { flex-direction: row; flex-wrap: wrap; }
	.nk-bio-commit-stat    { flex: 1 1 calc(50% - 1px); border-bottom: 1px solid rgba(255,255,255,0.08); border-right: 1px solid rgba(255,255,255,0.08); padding: 20px; }
	.nk-bio-commit-stat:nth-child(even) { border-right: none; }
	.nk-bio-commit-stat:nth-last-child(-n+2) { border-bottom: none; }
	.nk-bio-ms-grid        { grid-template-columns: 1fr; }
}
