/* =========================================================
   NJ Shop Accessories — Main Stylesheet
   Tema: sporty / racing / modern / dark accent
   ========================================================= */

:root {
	--nj-black: #0b0b0d;
	--nj-dark: #16171a;
	--nj-gray: #2a2c31;
	--nj-gray-2: #3a3d44;
	--nj-soft: #f4f5f7;
	--nj-soft-2: #e9ebef;
	--nj-line: #e3e5ea;
	--nj-line-dark: #2a2c31;
	--nj-white: #ffffff;

	/* Brand colors — derived from logo */
	--nj-red: #d92027;          /* primary red, vivid like logo */
	--nj-red-dk: #7d1620;       /* maroon shadow from logo */
	--nj-red-soft: #ed2934;
	--nj-blue: #1f2eb5;         /* royal blue from logo "J" accent */
	--nj-blue-dk: #151f87;
	--nj-blue-soft: #2c3dc7;
	--nj-silver: #c0c5cc;       /* metallic silver from "SHOP" */
	--nj-silver-dk: #8a909c;
	--nj-yellow: #ffd60a;

	--nj-text: #16171a;
	--nj-text-mute: #5c6068;
	--nj-text-inverse: #ffffff;

	--nj-radius-sm: 8px;
	--nj-radius: 14px;
	--nj-radius-lg: 22px;
	--nj-shadow-sm: 0 2px 8px rgba(11, 11, 13, .06);
	--nj-shadow: 0 12px 30px rgba(11, 11, 13, .10);
	--nj-shadow-lg: 0 24px 60px rgba(11, 11, 13, .18);

	--nj-font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
	--nj-font-display: 'Barlow Condensed', 'Inter', sans-serif;

	--nj-section-y: clamp(48px, 6vw, 80px);
	--nj-section-y-sm: clamp(32px, 4.5vw, 56px);
	--nj-section-head-mb: clamp(28px, 4vw, 44px);
	--nj-container: 1200px;
}

/* ---------- Base ---------- */
/* overflow-x: clip prevents horizontal scroll WITHOUT breaking position:sticky.
   Falls back to nothing on old browsers (acceptable — drawer is display:none anyway). */
html { overflow-x: clip; }
.njshop-site,
body.njshop-site {
	font-family: var(--nj-font-sans);
	color: var(--nj-text);
	background: var(--nj-white);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	margin: 0;
	overflow-x: clip;
}

:where(body.njshop-site) img { max-width: 100%; height: auto; display: block; }
body.njshop-site a { text-decoration: none; }
/* Non-button links inherit color from parent. Buttons keep their own color rules. */
body.njshop-site a:not(.nj-btn) { color: inherit; }
body.njshop-site h1, body.njshop-site h2, body.njshop-site h3, body.njshop-site h4 {
	font-family: var(--nj-font-display);
	font-weight: 800;
	letter-spacing: -.01em;
	line-height: 1.08;
	margin: 0 0 .4em;
	color: inherit;
}
:where(body.njshop-site) p { margin: 0 0 1em; }
:where(body.njshop-site) ul { margin: 0; padding: 0; list-style: none; }
body.nj-no-scroll { overflow: hidden; }

.nj-container {
	width: 100%;
	max-width: var(--nj-container);
	margin: 0 auto;
	padding: 0 clamp(16px, 4vw, 28px);
	box-sizing: border-box;
}

.nj-skip-link { position: absolute; left: -9999px; }
.nj-skip-link:focus { left: 16px; top: 16px; background: var(--nj-red); color: #fff; padding: 8px 14px; border-radius: 6px; z-index: 9999; }

.nj-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 1.1em;
	height: 1.1em;
	line-height: 0;
}
.nj-icon svg { width: 100%; height: 100%; display: block; }

/* ---------- Buttons ---------- */
.nj-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 12px 22px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 14px;
	letter-spacing: .02em;
	border: 2px solid transparent;
	cursor: pointer;
	transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s ease, border-color .2s ease;
	text-decoration: none !important;
	line-height: 1;
	font-family: var(--nj-font-sans);
}
.nj-btn .nj-icon { font-size: 18px; }
.nj-btn:hover { transform: translateY(-1px); }
.nj-btn:active { transform: translateY(0); }
.nj-btn--lg { padding: 16px 28px; font-size: 15px; }
.nj-btn--block { width: 100%; }
.nj-btn--primary {
	background: var(--nj-red);
	color: #fff;
	box-shadow: 0 8px 20px -8px rgba(225, 11, 27, .55);
}
.nj-btn--primary:hover { background: var(--nj-red-dk); box-shadow: 0 14px 28px -10px rgba(225, 11, 27, .65); }
.nj-btn--ghost {
	background: var(--nj-white);
	color: var(--nj-black);
	border-color: var(--nj-black);
}
.nj-btn--ghost:hover { background: var(--nj-black); color: #fff; }
.nj-btn--ghost-light {
	background: rgba(255, 255, 255, .12);
	color: #fff;
	border-color: rgba(255, 255, 255, .35);
	backdrop-filter: blur(4px);
}
.nj-btn--ghost-light:hover { background: #fff; color: var(--nj-black); border-color: #fff; }
.nj-btn--outline {
	background: transparent;
	color: #fff;
	border-color: rgba(255, 255, 255, .4);
}
.nj-btn--outline:hover { background: #fff; color: var(--nj-black); border-color: #fff; }
.nj-btn--tiktok {
	background: #fff;
	color: var(--nj-black);
}
.nj-btn--tiktok:hover { background: var(--nj-yellow); }

/* ==========================================================
   PROMO BAR
   ========================================================== */
.nj-promo-bar {
	background: var(--nj-black);
	color: #d8d9dc;
	font-size: 12.5px;
	border-bottom: 1px solid #1c1d20;
}
.nj-promo-bar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 36px;
	gap: 12px;
}
.nj-promo-bar__text {
	font-weight: 500;
	letter-spacing: .01em;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	min-width: 0;
	flex: 1;
}
.nj-promo-bar__links {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
}
.nj-promo-bar__links a {
	color: #fff;
	font-weight: 600;
	transition: color .2s ease;
	white-space: nowrap;
}
.nj-promo-bar__links a:hover { color: var(--nj-yellow); }
.nj-promo-bar__dot {
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: #5c6068;
	display: inline-block;
}

@media (max-width: 720px) {
	.nj-promo-bar__text { display: none; }
	.nj-promo-bar__inner { justify-content: center; }
}

/* ==========================================================
   HEADER
   ========================================================== */
.nj-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 255, 255, .96);
	backdrop-filter: saturate(180%) blur(10px);
	border-bottom: 1px solid var(--nj-line);
	transition: box-shadow .2s ease;
}
.nj-header.is-scrolled {
	box-shadow: 0 1px 0 rgba(0,0,0,.04), 0 8px 20px -10px rgba(0,0,0,.08);
}
.nj-header__inner {
	display: flex;
	align-items: center;
	gap: clamp(12px, 2vw, 28px);
	min-height: 70px;
}

/* Logo */
.nj-logo {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
	min-width: 0;
	max-width: 280px;
}
/* High-specificity logo image sizing to override WP <img width/height> attrs and any base img rule */
.njshop-site .nj-logo .nj-logo__img,
.njshop-site .nj-drawer .nj-logo__img,
.njshop-site .nj-footer .nj-logo__img {
	display: block;
	width: auto;
	height: 40px;
	max-height: 40px;
	max-width: 200px;
	object-fit: contain;
}
@media (min-width: 880px) {
	.njshop-site .nj-header .nj-logo__img {
		height: 46px;
		max-height: 46px;
		max-width: 240px;
	}
}
.njshop-site .nj-logo__img--footer {
	height: 48px;
	max-height: 48px;
	max-width: 200px;
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .25));
}
.njshop-site .nj-logo__img--drawer {
	height: 36px;
	max-height: 36px;
	max-width: 170px;
}
.nj-logo__mark {
	width: 40px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--nj-red) 0%, var(--nj-red) 48%, var(--nj-blue) 52%, var(--nj-blue) 100%);
	color: #fff;
	border-radius: 10px;
	font-weight: 900;
	font-family: var(--nj-font-display);
	font-size: 17px;
	letter-spacing: .02em;
	box-shadow: inset 0 -3px 0 rgba(0, 0, 0, .35), 0 4px 14px -4px rgba(31, 46, 181, .45);
	flex-shrink: 0;
	border: 1.5px solid #fff;
}
.nj-logo__text {
	display: inline-flex;
	flex-direction: column;
	line-height: 1;
}
.nj-logo__name {
	font-family: var(--nj-font-display);
	font-weight: 900;
	font-size: 19px;
	color: var(--nj-black);
	letter-spacing: -.005em;
	white-space: nowrap;
}
.nj-logo__sub {
	font-size: 10.5px;
	letter-spacing: .14em;
	color: var(--nj-text-mute);
	text-transform: uppercase;
	margin-top: 3px;
	white-space: nowrap;
}

/* Desktop nav (hidden on mobile) */
.nj-nav {
	display: none;
	flex: 1;
	justify-content: center;
	min-width: 0;
}
.nj-nav__list {
	display: flex;
	gap: clamp(16px, 2vw, 28px);
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
}
.nj-nav__list li {
	margin: 0;
	padding: 0;
}
.nj-nav__list li a,
.nj-nav .menu-item a {
	font-size: 14px;
	font-weight: 600;
	color: var(--nj-text);
	padding: 8px 0;
	position: relative;
	transition: color .2s ease;
	white-space: nowrap;
	display: inline-block;
}
.nj-nav__list li a:hover,
.nj-nav .menu-item a:hover { color: var(--nj-red); }
.nj-nav__list li a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -4px;
	height: 2px;
	background: var(--nj-red);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .25s ease;
}
.nj-nav__list li a:hover::after,
.nj-nav__list .current-menu-item > a::after,
.nj-nav__list .current-menu-ancestor > a::after { transform: scaleX(1); }

/* Header actions (right side) */
.nj-header__actions {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-left: auto;
	flex-shrink: 0;
}
/* ---------- Header account dropdown ---------- */
.nj-header__account {
	position: relative;
	display: none;
}
.nj-header__account-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 6px 12px 6px 6px;
	background: transparent;
	border: 1px solid var(--nj-line);
	border-radius: 999px;
	color: var(--nj-text);
	cursor: pointer;
	transition: background .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease;
	font-family: inherit;
	line-height: 1;
	min-height: 44px;
}
.nj-header__account-btn:hover {
	border-color: var(--nj-black);
	background: var(--nj-soft);
	box-shadow: 0 4px 14px -8px rgba(11, 11, 13, .25);
}
.nj-header__account-icon {
	display: inline-flex;
	width: 32px; height: 32px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--nj-black);
	color: #fff;
	flex-shrink: 0;
}
.nj-header__account-icon .nj-icon { font-size: 15px; }
.nj-header__account-text {
	display: inline-flex;
	flex-direction: column;
	line-height: 1.15;
	text-align: left;
	min-width: 0;
	gap: 1px;
	white-space: nowrap;
}
.nj-header__account-hi {
	font-size: 10.5px;
	color: var(--nj-text-mute);
	font-weight: 500;
	letter-spacing: .04em;
	text-transform: uppercase;
}
.nj-header__account-name {
	font-size: 13px;
	color: var(--nj-black);
	font-weight: 700;
	max-width: 170px;
	overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
	letter-spacing: -.005em;
}
.nj-header__account-caret {
	display: inline-flex;
	color: var(--nj-text-mute);
	font-size: 14px;
	transition: transform .2s ease;
	flex-shrink: 0;
}
.nj-header__account.is-open .nj-header__account-caret { transform: rotate(180deg); }

.nj-header__account-menu {
	position: absolute;
	top: calc(100% + 12px);
	right: 0;
	min-width: 300px;
	background: var(--nj-white);
	border: 1px solid var(--nj-line);
	border-radius: 16px;
	box-shadow: 0 24px 60px -12px rgba(11, 11, 13, .25);
	padding: 20px;
	opacity: 0;
	transform: translateY(-8px);
	pointer-events: none;
	transition: opacity .2s ease, transform .2s ease;
	z-index: 60;
}
.nj-header__account-menu::before {
	content: "";
	position: absolute;
	top: -6px;
	right: 22px;
	width: 12px;
	height: 12px;
	background: var(--nj-white);
	border-top: 1px solid var(--nj-line);
	border-left: 1px solid var(--nj-line);
	transform: rotate(45deg);
}
.nj-header__account.is-open .nj-header__account-menu {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}
.nj-header__account-head {
	padding: 0 2px 14px;
	margin-bottom: 14px;
	border-bottom: 1px solid var(--nj-line);
	display: flex;
	flex-direction: column;
}
.nj-header__account-head-hi,
.nj-header__account-head span {
	font-size: 12.5px;
	color: var(--nj-text-mute);
	margin-bottom: 4px;
	line-height: 1.4;
}
.nj-header__account-head strong {
	color: var(--nj-black);
	font-size: 15.5px;
	font-weight: 800;
	font-family: var(--nj-font-display);
	letter-spacing: -.005em;
	margin-bottom: 4px;
}
.nj-header__account-buttons {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.nj-header__account-buttons .nj-btn {
	box-sizing: border-box;
	padding: 12px 16px;
	font-size: 13.5px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	line-height: 1.2;
}
.nj-header__account-buttons .nj-btn .nj-icon { font-size: 15px; }
.nj-header__account-buttons .nj-btn--primary {
	background: linear-gradient(135deg, var(--nj-red) 0%, #b81a20 100%);
	color: #fff;
	border: 0;
	box-shadow: 0 6px 16px -8px rgba(217, 32, 39, .55);
}
.nj-header__account-buttons .nj-btn--primary:hover {
	filter: brightness(1.05);
	transform: translateY(-1px);
}
.nj-header__account-buttons .nj-btn--ghost {
	background: #fff;
	color: var(--nj-black);
	border: 1.5px solid var(--nj-line);
}
.nj-header__account-buttons .nj-btn--ghost:hover {
	border-color: var(--nj-black);
	background: var(--nj-soft);
}
.nj-header__account-foot {
	margin: 14px 2px 0;
	font-size: 11.5px;
	color: var(--nj-text-mute);
	line-height: 1.5;
	text-align: center;
}
.nj-header__account-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.nj-header__account-list li a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 12px;
	font-size: 13.5px;
	font-weight: 600;
	color: var(--nj-text);
	border-radius: 8px;
	transition: background .15s ease, color .15s ease;
}
.nj-header__account-list li a .nj-icon {
	font-size: 16px;
	color: var(--nj-text-mute);
}
.nj-header__account-list li a:hover {
	background: var(--nj-soft);
	color: var(--nj-red);
}
.nj-header__account-list li a:hover .nj-icon { color: var(--nj-red); }
.nj-header__account-list li a.nj-header__account-logout {
	margin-top: 6px;
	padding-top: 12px;
	border-top: 1px solid var(--nj-line);
	border-radius: 0 0 8px 8px;
}

/* ---------- Header cart pill ---------- */
.nj-header__cart {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px 8px 12px;
	background: var(--nj-red);
	color: #fff;
	border-radius: 12px;
	font-weight: 700;
	font-size: 13px;
	transition: background .2s ease, transform .15s ease, box-shadow .2s ease;
	box-shadow: 0 8px 18px -8px rgba(217, 32, 39, .55);
}
.nj-header__cart:hover {
	background: var(--nj-red-dk);
	transform: translateY(-1px);
	box-shadow: 0 12px 24px -10px rgba(217, 32, 39, .65);
	color: #fff;
}
.nj-header__cart-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px; height: 28px;
	border-radius: 8px;
	background: rgba(255, 255, 255, .18);
}
.nj-header__cart-icon .nj-icon { font-size: 16px; }
.nj-header__cart-text {
	display: none;
}
.nj-header__cart-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 22px;
	height: 22px;
	padding: 0 6px;
	border-radius: 999px;
	background: var(--nj-yellow);
	color: var(--nj-black);
	font-size: 11.5px;
	font-weight: 800;
	font-variant-numeric: tabular-nums;
	line-height: 1;
}
.nj-header__cart-count:not(.is-active) {
	background: rgba(255, 255, 255, .25);
	color: rgba(255, 255, 255, .9);
}

/* Hamburger toggle (mobile only) */
.nj-menu-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	background: var(--nj-black);
	color: #fff;
	border: 0;
	border-radius: 10px;
	cursor: pointer;
	font-size: 20px;
	transition: background .2s ease;
	padding: 0;
}
.nj-menu-toggle:hover { background: var(--nj-red); }
.nj-menu-toggle .nj-icon { width: 22px; height: 22px; }

@media (min-width: 880px) {
	.nj-header__inner { min-height: 76px; gap: clamp(20px, 3vw, 36px); }
	.nj-nav { display: flex; }
	.nj-header__account { display: inline-block; }
	.nj-header__cart-text { display: inline; }
	.nj-menu-toggle { display: none; }
}
@media (max-width: 879px) {
	.nj-header__cart { padding: 8px 12px; }
	.nj-header__cart-icon { width: 24px; height: 24px; }
	.nj-header__cart-count { min-width: 20px; height: 20px; font-size: 11px; }
}

/* ==========================================================
   MOBILE DRAWER
   ========================================================== */
.nj-drawer {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 200;
}
.nj-drawer.is-open { display: block; }
.nj-drawer.is-animating { display: block; }

.nj-drawer__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, .55);
	opacity: 0;
	transition: opacity .3s ease;
	cursor: pointer;
}
.nj-drawer.is-open .nj-drawer__backdrop { opacity: 1; }

.nj-drawer__panel {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: min(340px, 88vw);
	background: var(--nj-black);
	color: #fff;
	transform: translateX(100%);
	transition: transform .3s cubic-bezier(.4, 0, .2, 1);
	display: flex;
	flex-direction: column;
	box-shadow: -20px 0 50px rgba(0, 0, 0, .35);
}
.nj-drawer.is-open .nj-drawer__panel { transform: translateX(0); }

.nj-drawer__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 20px;
	border-bottom: 1px solid rgba(255, 255, 255, .08);
	flex-shrink: 0;
}
.nj-drawer__brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: #fff;
}
.nj-drawer__brand .nj-logo__mark {
	width: 36px;
	height: 36px;
	font-size: 15px;
}
.nj-drawer__brand-text {
	display: inline-flex;
	flex-direction: column;
	line-height: 1;
}
.nj-drawer__brand-name {
	font-family: var(--nj-font-display);
	font-weight: 900;
	font-size: 17px;
	color: #fff;
}
.nj-drawer__brand-sub {
	font-size: 10px;
	color: #888a90;
	text-transform: uppercase;
	letter-spacing: .14em;
	margin-top: 2px;
}
.nj-drawer__close {
	width: 38px;
	height: 38px;
	border-radius: 10px;
	background: rgba(255, 255, 255, .08);
	color: #fff;
	border: 0;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background .2s ease;
	padding: 0;
}
.nj-drawer__close:hover { background: var(--nj-red); }
.nj-drawer__close .nj-icon { width: 20px; height: 20px; }

.nj-drawer__nav {
	flex: 1;
	overflow-y: auto;
	padding: 8px 0;
	-webkit-overflow-scrolling: touch;
}
.nj-drawer__list {
	display: flex;
	flex-direction: column;
	margin: 0;
	padding: 0;
	list-style: none;
}
.nj-drawer__list li { margin: 0; padding: 0; }
.nj-drawer__list li a,
.nj-drawer .menu-item a {
	display: flex;
	align-items: center;
	padding: 15px 20px;
	font-family: var(--nj-font-display);
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	letter-spacing: .04em;
	text-transform: uppercase;
	border-bottom: 1px solid rgba(255, 255, 255, .06);
	transition: background .15s ease, color .15s ease, padding-left .2s ease;
}
.nj-drawer__list li a:hover,
.nj-drawer .menu-item a:hover {
	color: var(--nj-red);
	background: rgba(255, 255, 255, .03);
	padding-left: 26px;
}
.nj-drawer__list .current-menu-item > a,
.nj-drawer__list .current-menu-ancestor > a {
	color: var(--nj-red-soft);
	background: rgba(225, 11, 27, .12);
	border-left: 3px solid var(--nj-red);
	padding-left: 17px;
}

.nj-drawer__footer {
	padding: 18px 20px 22px;
	border-top: 1px solid rgba(255, 255, 255, .08);
	background: rgba(255, 255, 255, .02);
	flex-shrink: 0;
}
.nj-drawer__quick {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-bottom: 16px;
}
.nj-drawer__quick-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px;
	background: rgba(255, 255, 255, .05);
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: 12px;
	color: #fff;
	transition: background .18s ease, border-color .18s ease, transform .15s ease;
}
.nj-drawer__quick-item:hover {
	background: rgba(255, 255, 255, .1);
	border-color: var(--nj-red);
	transform: translateY(-1px);
}
.nj-drawer__quick-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px; height: 36px;
	border-radius: 10px;
	background: var(--nj-red);
	color: #fff;
	flex-shrink: 0;
}
.nj-drawer__quick-icon .nj-icon { font-size: 16px; }
.nj-drawer__quick-text {
	display: flex;
	flex-direction: column;
	min-width: 0;
}
.nj-drawer__quick-text strong {
	font-size: 13px;
	font-weight: 700;
	color: #fff;
	line-height: 1.2;
}
.nj-drawer__quick-text small {
	font-size: 10.5px;
	color: #888a90;
	margin-top: 2px;
}
.nj-drawer__footer-label {
	display: block;
	font-size: 11px;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: #888a90;
	margin-bottom: 12px;
	font-weight: 700;
}
.nj-drawer__cta {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.nj-drawer__cta .nj-btn {
	padding: 12px 16px;
	font-size: 13.5px;
}

/* Force drawer hidden on desktop */
@media (min-width: 880px) {
	.nj-drawer,
	.nj-drawer.is-open,
	.nj-drawer.is-animating { display: none !important; }
}

/* ---------- Hero ---------- */
.nj-hero {
	position: relative; overflow: hidden;
	background: var(--nj-black); color: #fff;
	padding: clamp(60px, 9vw, 120px) 0 clamp(70px, 10vw, 130px);
	isolation: isolate;
}
.nj-hero__bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.nj-hero__stripe {
	position: absolute; height: 220%; width: 80px;
	background: linear-gradient(180deg, transparent, var(--nj-red) 35%, var(--nj-red-dk) 65%, transparent);
	opacity: .12; transform: rotate(18deg); top: -50%;
}
.nj-hero__stripe--1 { left: 10%; }
.nj-hero__stripe--2 {
	left: 38%; width: 30px; opacity: .12;
	background: linear-gradient(180deg, transparent, var(--nj-blue) 35%, var(--nj-blue-dk) 65%, transparent);
}
.nj-hero__stripe--3 { left: 70%; width: 130px; opacity: .06; }
.nj-hero::before {
	content: ""; position: absolute; inset: 0;
	background:
		radial-gradient(800px 400px at 80% 30%, rgba(225,11,27,.18), transparent 60%),
		radial-gradient(600px 300px at 10% 80%, rgba(255,255,255,.04), transparent 60%);
	z-index: 0;
}

.nj-hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
.nj-hero__eyebrow {
	display: inline-flex; align-items: center; gap: 10px;
	padding: 8px 14px; border-radius: 999px;
	background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
	font-size: 12px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
	margin-bottom: 18px;
}
.nj-hero__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--nj-red); box-shadow: 0 0 0 4px rgba(225,11,27,.25); animation: nj-pulse 2s ease-in-out infinite; }
@keyframes nj-pulse { 0%, 100% { box-shadow: 0 0 0 4px rgba(225,11,27,.25); } 50% { box-shadow: 0 0 0 8px rgba(225,11,27,0); } }
.nj-hero__title {
	font-size: clamp(36px, 6.5vw, 76px);
	letter-spacing: -.02em;
	line-height: .98;
	color: #fff;
	text-transform: uppercase;
	font-weight: 900;
}
.nj-hero__title-accent {
	background: linear-gradient(120deg, var(--nj-red) 30%, var(--nj-red-soft));
	-webkit-background-clip: text; background-clip: text;
	-webkit-text-fill-color: transparent;
	position: relative;
}
.nj-hero__desc {
	font-size: clamp(15px, 1.4vw, 18px); color: #c8cad0;
	max-width: 560px; margin-top: 14px;
}
.nj-hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.nj-hero__highlights {
	display: flex; flex-wrap: wrap; gap: 18px 26px;
	margin-top: 28px; padding-top: 22px;
	border-top: 1px solid rgba(255,255,255,.12);
}
.nj-hero__highlights li {
	display: inline-flex; align-items: center; gap: 8px;
	font-size: 13.5px; color: #d8d9dc; font-weight: 500;
}
.nj-hero__highlights .nj-icon { color: var(--nj-red); font-size: 16px; }

.nj-hero__visual { position: relative; display: none; }
.nj-hero__card {
	position: relative; aspect-ratio: 4 / 5;
	background: linear-gradient(135deg, #1a1c20 0%, #0e0f12 100%);
	border: 1px solid rgba(255,255,255,.08);
	border-radius: var(--nj-radius-lg);
	overflow: hidden;
	display: flex; flex-direction: column;
	box-shadow: var(--nj-shadow-lg);
}
.nj-hero__card-glow {
	position: absolute; inset: -2px;
	background: conic-gradient(from 90deg at 50% 50%, rgba(225,11,27,.6), transparent 40%, transparent 60%, rgba(225,11,27,.6));
	filter: blur(40px); opacity: .35; z-index: 0;
}
.nj-hero__card-shape {
	flex: 1; position: relative; z-index: 1;
	display: flex; align-items: center; justify-content: center;
	background:
		radial-gradient(closest-side, rgba(225,11,27,.25), transparent 70%),
		linear-gradient(135deg, rgba(255,255,255,.03), rgba(255,255,255,0));
}
.nj-hero__card-icon { font-size: clamp(120px, 14vw, 180px); color: #fff; opacity: .92; filter: drop-shadow(0 8px 24px rgba(225,11,27,.4)); }
.nj-hero__card-meta {
	position: relative; z-index: 1;
	padding: 22px 26px;
	border-top: 1px solid rgba(255,255,255,.08);
	background: rgba(0,0,0,.4);
	backdrop-filter: blur(8px);
	display: flex; flex-direction: column; gap: 4px;
}
.nj-hero__card-label { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--nj-red-soft); font-weight: 700; }
.nj-hero__card-title { font-family: var(--nj-font-display); font-size: 22px; font-weight: 800; color: #fff; }

.nj-hero__badge {
	position: absolute; padding: 10px 14px;
	background: #fff; color: var(--nj-black);
	border-radius: 999px; font-size: 13px; font-weight: 700;
	box-shadow: var(--nj-shadow);
	display: inline-flex; align-items: center; gap: 8px;
}
.nj-hero__badge .nj-icon { color: var(--nj-red); }
.nj-hero__badge--1 {
	top: 18px;
	left: 18px;
	z-index: 2;
}

/* ---------- Marquee ---------- */
.nj-marquee {
	background: var(--nj-red); color: #fff;
	overflow: hidden; padding: 14px 0;
	border-top: 1px solid #c10918;
	border-bottom: 1px solid #c10918;
}
.nj-marquee__track {
	display: inline-flex; gap: 18px; align-items: center;
	white-space: nowrap;
	animation: nj-marquee 28s linear infinite;
	font-family: var(--nj-font-display);
	font-size: 22px; font-weight: 800; letter-spacing: .04em;
	text-transform: uppercase;
}
.nj-marquee__sep { opacity: .55; }
@keyframes nj-marquee {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}

/* ---------- Sections shared ---------- */
.nj-section { padding: var(--nj-section-y) 0; }
.nj-section--dark {
	background: var(--nj-black); color: #fff;
}

/* Section heading container */
.nj-section__head {
	text-align: center;
	margin-bottom: var(--nj-section-head-mb);
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
}
.nj-section__head--row {
	display: flex;
	align-items: end;
	justify-content: space-between;
	text-align: left;
	gap: 20px;
	flex-wrap: wrap;
	max-width: 100%;
	margin-left: 0;
	margin-right: 0;
}
.nj-section__head--row > div:first-child { max-width: 640px; }
.nj-section__head-actions { display: flex; gap: 10px; }

/* Eyebrow — chip variant (default, used in row layouts and tight contexts) */
.nj-section__eyebrow {
	display: inline-block;
	padding: 6px 12px;
	background: var(--nj-soft);
	border-radius: 999px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--nj-red);
	margin-bottom: 14px;
}
.nj-section__eyebrow--light {
	background: rgba(255, 255, 255, .08);
	color: var(--nj-red-soft);
}

/* Eyebrow — refined variant for centered standalone heads (cleaner: ── TEXT ──) */
.nj-section__head:not(.nj-section__head--row) .nj-section__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	padding: 0;
	background: transparent;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .22em;
	color: var(--nj-red);
	margin-bottom: 18px;
}
.nj-section__head:not(.nj-section__head--row) .nj-section__eyebrow::before,
.nj-section__head:not(.nj-section__head--row) .nj-section__eyebrow::after {
	content: "";
	display: inline-block;
	width: 28px;
	height: 2px;
	background: currentColor;
	flex-shrink: 0;
}
.nj-section__head:not(.nj-section__head--row) .nj-section__eyebrow--light {
	background: transparent;
	color: var(--nj-red-soft);
}

/* Title */
.nj-section__title {
	font-size: clamp(26px, 3.6vw, 42px);
	color: var(--nj-black);
	text-transform: uppercase;
	letter-spacing: -.005em;
	line-height: 1.1;
	margin: 0;
	text-wrap: balance;
}
.nj-section__title--light { color: #fff; }

/* Description */
.nj-section__desc {
	font-size: clamp(14.5px, 1.1vw, 16px);
	color: var(--nj-text-mute);
	max-width: 540px;
	margin: 14px auto 0;
	line-height: 1.65;
	text-wrap: balance;
}
.nj-section--dark .nj-section__desc { color: #c8cad0; }
.nj-section__desc--light { color: #c8cad0; }
.nj-section__head--row .nj-section__desc {
	margin: 14px 0 0;
	max-width: 640px;
}

/* ---------- Categories ---------- */
.nj-cat-grid {
	display: grid; gap: 16px;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
.nj-cat-card {
	position: relative; display: flex; align-items: center; gap: 18px;
	padding: 22px;
	background: #fff;
	border: 1px solid var(--nj-line);
	border-radius: var(--nj-radius);
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
	overflow: hidden;
	isolation: isolate;
}
.nj-cat-card::before {
	content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
	background: var(--nj-red); transform: scaleY(0); transform-origin: bottom; transition: transform .3s ease;
	z-index: 1;
}
.nj-cat-card:hover {
	transform: translateY(-4px); box-shadow: var(--nj-shadow);
	border-color: var(--nj-black);
}
.nj-cat-card:hover::before { transform: scaleY(1); }
.nj-cat-card__icon {
	width: 58px; height: 58px; border-radius: 14px;
	background: var(--nj-soft); color: var(--nj-black);
	display: inline-flex; align-items: center; justify-content: center;
	font-size: 26px; flex-shrink: 0;
	transition: background .25s ease, color .25s ease;
}
.nj-cat-card:hover .nj-cat-card__icon { background: var(--nj-red); color: #fff; }
.nj-cat-card__body { flex: 1; min-width: 0; }
.nj-cat-card__title { font-size: 20px; margin: 0 0 4px; color: var(--nj-black); font-family: var(--nj-font-display); text-transform: uppercase; }
.nj-cat-card__desc { font-size: 13.5px; color: var(--nj-text-mute); margin: 0; line-height: 1.45; }
.nj-cat-card__arrow {
	display: inline-flex; align-items: center; justify-content: center;
	width: 36px; height: 36px; border-radius: 50%;
	background: var(--nj-soft); color: var(--nj-black);
	font-size: 16px; flex-shrink: 0;
	transition: transform .25s ease, background .25s ease, color .25s ease;
}
.nj-cat-card:hover .nj-cat-card__arrow { background: var(--nj-black); color: #fff; transform: translateX(4px); }

/* ---------- Product grid / empty state ---------- */
.nj-product-grid {
	display: grid; gap: 18px;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
.nj-product-card {
	background: #fff; color: var(--nj-text);
	border-radius: var(--nj-radius);
	overflow: hidden;
	border: 1px solid rgba(255,255,255,.08);
	transition: transform .25s ease, box-shadow .25s ease;
	display: flex; flex-direction: column;
}
.nj-product-card:hover { transform: translateY(-4px); box-shadow: var(--nj-shadow-lg); }
.nj-product-card__media { aspect-ratio: 1; background: var(--nj-soft); position: relative; overflow: hidden; }
.nj-product-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.nj-product-card:hover .nj-product-card__media img { transform: scale(1.06); }
.nj-product-card__placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 60px; color: #c8cad0; }
.nj-product-card__body { padding: 16px 16px 18px; }
.nj-product-card__title { font-size: 15px; font-family: var(--nj-font-sans); font-weight: 600; color: var(--nj-black); margin: 0 0 8px; line-height: 1.35;
	display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.nj-product-card__price { font-size: 15px; font-weight: 700; color: var(--nj-red); }
.nj-product-card__price .amount { color: var(--nj-red); }
.nj-product-card__price del { color: var(--nj-text-mute); font-weight: 500; margin-right: 6px; font-size: 13px; }

/* ---------- Compact ecommerce product cards (nj-prod) ---------- */
.nj-prod-grid {
	display: grid; gap: 14px;
}
.nj-prod-grid--4 { grid-template-columns: repeat(2, 1fr); }
.nj-prod-grid--6 { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 540px) {
	.nj-prod-grid--4 { grid-template-columns: repeat(3, 1fr); }
	.nj-prod-grid--6 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 880px) {
	.nj-prod-grid--4 { grid-template-columns: repeat(4, 1fr); }
	.nj-prod-grid--6 { grid-template-columns: repeat(4, 1fr); gap: 16px; }
}
@media (min-width: 1100px) {
	.nj-prod-grid--6 { grid-template-columns: repeat(6, 1fr); }
}

.nj-prod {
	position: relative;
	display: flex; flex-direction: column;
	background: #fff;
	border: 1px solid var(--nj-line);
	border-radius: var(--nj-radius);
	overflow: hidden;
	color: var(--nj-text);
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
	isolation: isolate;
}
/* Force card content color regardless of section (parent may set white text on dark section) */
.nj-section--dark .nj-prod,
.nj-flash .nj-prod {
	color: var(--nj-text);
}
.nj-section--dark .nj-prod { border-color: transparent; }
.nj-prod:hover {
	transform: translateY(-3px);
	box-shadow: var(--nj-shadow);
	border-color: var(--nj-black);
}
.nj-prod__media {
	aspect-ratio: 1;
	background: var(--nj-soft);
	overflow: hidden;
	position: relative;
}
.nj-prod__media img {
	width: 100%; height: 100%; object-fit: cover;
	transition: transform .35s ease;
}
.nj-prod:hover .nj-prod__media img { transform: scale(1.06); }
.nj-prod__badge {
	position: absolute; top: 10px; left: 10px;
	padding: 5px 10px;
	border-radius: 999px;
	font-size: 11px; font-weight: 800;
	letter-spacing: .02em;
	display: inline-flex; align-items: center; gap: 4px;
	z-index: 2;
}
.nj-prod__badge--sale {
	background: var(--nj-red); color: #fff;
	box-shadow: 0 4px 12px -2px rgba(225,11,27,.5);
}
.nj-prod__badge--hot {
	background: var(--nj-black); color: #fff;
}
.nj-prod__badge--hot .nj-icon { font-size: 12px; color: var(--nj-yellow); }
.nj-prod__body { padding: 12px 12px 14px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.nj-prod__cat {
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--nj-text-mute);
}
/* Higher specificity (.njshop-site prefix) to beat base h3 rule */
.njshop-site .nj-prod__title,
.nj-prod h3.nj-prod__title {
	font-family: var(--nj-font-sans);
	font-size: 14px;
	font-weight: 600;
	color: var(--nj-black);
	line-height: 1.35;
	margin: 0;
	min-height: 2.7em;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-transform: none;
	letter-spacing: 0;
}
.nj-prod__price {
	font-size: 15px;
	font-weight: 800;
	color: var(--nj-red);
	line-height: 1.2;
	margin-top: 2px;
}
.nj-prod__price .amount { color: var(--nj-red); }
.nj-prod__price ins { background: transparent; text-decoration: none; }
.nj-prod__price del {
	color: var(--nj-text-mute);
	font-weight: 500;
	font-size: 12px;
	margin-right: 6px;
	display: inline-block;
}
.nj-prod__meta {
	display: flex; align-items: center; gap: 10px;
	margin-top: auto; padding-top: 6px;
	font-size: 11.5px;
	color: var(--nj-text-mute);
}
.nj-prod__rating {
	display: inline-flex; align-items: center; gap: 4px;
	font-weight: 600;
}
.nj-prod__rating .nj-icon { color: var(--nj-yellow); font-size: 13px; }
.nj-prod__sold { display: inline-flex; align-items: center; gap: 4px; }
.nj-prod__sold::before {
	content: ""; width: 3px; height: 3px; background: var(--nj-text-mute); border-radius: 50%; display: inline-block;
}

/* ---------- Hero SLIDER ---------- */
.nj-hero--slider {
	padding: 0;
	position: relative;
}
.nj-hero__slides {
	position: relative;
	width: 100%;
	min-height: clamp(440px, 58vh, 540px);
	display: grid;
}
.nj-hero__slide {
	grid-area: 1 / 1;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px) scale(.998);
	transition: opacity .55s ease, transform .55s ease, visibility 0s linear .55s;
	display: flex;
	align-items: center;
	padding: clamp(48px, 6.5vw, 80px) 0 clamp(56px, 7.5vw, 92px);
	pointer-events: none;
}
.nj-hero__slide.is-active {
	opacity: 1;
	visibility: visible;
	transform: translateY(0) scale(1);
	pointer-events: auto;
	transition: opacity .55s ease, transform .55s ease, visibility 0s;
}
.nj-hero__slide-inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
	align-items: center;
	width: 100%;
}
@media (min-width: 880px) {
	.nj-hero__slide-inner {
		grid-template-columns: 1.05fr .95fr;
		gap: 56px;
	}
}

/* Title accent (em → span) */
.nj-hero__slide .nj-hero__title {
	font-size: clamp(30px, 5vw, 56px);
	letter-spacing: -.02em;
	line-height: 1;
	color: #fff;
	text-transform: uppercase;
	font-weight: 900;
	font-family: var(--nj-font-display);
	margin: 0;
}

/* Slider navigation arrows */
.nj-hero__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .08);
	border: 1px solid rgba(255, 255, 255, .15);
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	z-index: 5;
	transition: background .2s ease, border-color .2s ease, transform .2s ease;
	padding: 0;
	backdrop-filter: blur(6px);
}
.nj-hero__nav:hover {
	background: var(--nj-red);
	border-color: var(--nj-red);
	transform: translateY(-50%) scale(1.06);
}
.nj-hero__nav .nj-icon { width: 22px; height: 22px; }
.nj-hero__nav--prev { left: clamp(12px, 2vw, 28px); }
.nj-hero__nav--next { right: clamp(12px, 2vw, 28px); }

/* Slider dots */
.nj-hero__dots {
	position: absolute;
	left: 50%;
	bottom: clamp(20px, 3vw, 30px);
	transform: translateX(-50%);
	display: flex;
	gap: 8px;
	z-index: 5;
	padding: 0;
	margin: 0;
}
.nj-hero__dot {
	width: 28px;
	height: 4px;
	border-radius: 99px;
	background: rgba(255, 255, 255, .25);
	border: 0;
	cursor: pointer;
	padding: 0;
	transition: background .3s ease, width .3s ease;
}
.nj-hero__dot:hover { background: rgba(255, 255, 255, .45); }
.nj-hero__dot.is-active {
	background: var(--nj-red);
	width: 44px;
}

/* Hide arrows on small screens (swipe instead) */
@media (max-width: 720px) {
	.nj-hero__nav { display: none; }
	.nj-hero__slides { min-height: clamp(420px, 75vh, 520px); }
}

/* Slide-specific visual variants */
.nj-hero__card--flash {
	background: linear-gradient(135deg, #1a0307 0%, #2a0a0e 100%);
}
.nj-hero__card--flash .nj-hero__card-icon { color: var(--nj-yellow); }
.nj-hero__card--flash .nj-hero__card-label { color: var(--nj-yellow); }
.nj-hero__card--tiktok {
	background: linear-gradient(135deg, #0e0f12 0%, #1a1c20 100%);
}
.nj-hero__card--tiktok .nj-hero__card-icon { color: #fff; }
.nj-hero__card--tiktok .nj-hero__card-label { color: #ff2738; }

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
	.nj-hero__slide { transition: opacity .15s ease; transform: none; }
	.nj-hero__slide.is-active { transform: none; }
}

/* ---------- Counter band (below hero) ---------- */
.nj-counter-band {
	background: var(--nj-dark);
	color: #fff;
	padding: clamp(22px, 3vw, 32px) 0;
	border-bottom: 1px solid #1c1d20;
}
.nj-counter-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: clamp(16px, 3vw, 28px);
	text-align: center;
}
@media (min-width: 700px) { .nj-counter-grid { grid-template-columns: repeat(4, 1fr); } }

.nj-counter {
	position: relative;
}
.nj-counter:not(:last-child)::after {
	display: none;
	content: "";
	position: absolute;
	top: 10%;
	bottom: 10%;
	right: -14px;
	width: 1px;
	background: rgba(255, 255, 255, .08);
}
@media (min-width: 700px) {
	.nj-counter:not(:last-child)::after { display: block; }
}

.nj-counter strong {
	display: block;
	font-family: var(--nj-font-display);
	font-size: clamp(28px, 4.2vw, 44px);
	color: #fff;
	font-weight: 900;
	line-height: 1;
	letter-spacing: -.01em;
	font-variant-numeric: tabular-nums;
}
.nj-counter strong::after {
	content: attr(data-suffix);
	color: var(--nj-red);
}
/* Alternate counter accent: blue for 2nd & 4th items */
.nj-counter:nth-child(2) strong::after,
.nj-counter:nth-child(4) strong::after {
	color: var(--nj-blue-soft);
}
.nj-counter span {
	display: block;
	margin-top: 8px;
	font-size: 12px;
	color: #c8cad0;
	text-transform: uppercase;
	letter-spacing: .08em;
	font-weight: 600;
}

/* ---------- Category strip ---------- */
.nj-cat-strip {
	padding: var(--nj-section-y-sm) 0;
	background: var(--nj-soft);
	border-bottom: 1px solid var(--nj-line);
}
.nj-cat-strip__head {
	display: flex; align-items: end; justify-content: space-between; gap: 16px;
	margin-bottom: 22px; flex-wrap: wrap;
}
.nj-cat-strip__title {
	font-size: clamp(22px, 3vw, 30px);
	color: var(--nj-black);
	text-transform: uppercase;
	margin: 0;
}
.nj-cat-strip__more {
	font-size: 13.5px; font-weight: 700; color: var(--nj-black);
	display: inline-flex; align-items: center; gap: 6px;
	transition: color .2s ease;
}
.nj-cat-strip__more:hover { color: var(--nj-red); }
.nj-cat-strip__more .nj-icon { font-size: 16px; }

.nj-cat-strip__grid {
	display: grid; gap: 12px;
	grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 540px) { .nj-cat-strip__grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 880px) { .nj-cat-strip__grid { grid-template-columns: repeat(8, 1fr); } }

.nj-cat-pill {
	background: #fff;
	border: 1px solid var(--nj-line);
	border-radius: var(--nj-radius);
	padding: 18px 12px 14px;
	display: flex; flex-direction: column; align-items: center; gap: 8px;
	text-align: center;
	transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
	color: var(--nj-text);
}
.nj-cat-pill:hover {
	transform: translateY(-3px);
	border-color: var(--nj-black);
	box-shadow: var(--nj-shadow);
}
.nj-cat-pill__icon {
	width: 52px; height: 52px;
	border-radius: 14px;
	background: var(--nj-black);
	color: #fff;
	display: inline-flex; align-items: center; justify-content: center;
	font-size: 22px;
	box-shadow: inset 0 -3px 0 var(--nj-red);
}
.nj-cat-pill:hover .nj-cat-pill__icon {
	background: var(--nj-red);
	box-shadow: inset 0 -3px 0 var(--nj-black);
}
.nj-cat-pill__name {
	font-family: var(--nj-font-display);
	font-size: 16px;
	font-weight: 800;
	color: var(--nj-black);
	text-transform: uppercase;
	letter-spacing: .01em;
}
.nj-cat-pill__count {
	font-size: 11px;
	color: var(--nj-text-mute);
	font-weight: 600;
}

/* ---------- Flash sale section ---------- */
.nj-flash {
	background: linear-gradient(135deg, #1a0307 0%, #0b0b0d 60%, #16171a 100%);
	color: #fff;
	position: relative;
	overflow: hidden;
}
.nj-flash::before {
	content: ""; position: absolute; right: -100px; top: -100px;
	width: 360px; height: 360px;
	background: radial-gradient(closest-side, rgba(225,11,27,.35), transparent 70%);
	pointer-events: none;
}
.nj-flash__head {
	display: flex; align-items: center; justify-content: space-between;
	gap: 20px; flex-wrap: wrap;
	margin-bottom: 28px;
}

/* Unified "List Product" section — single grid replacing best/new/by-cat blocks. */
.nj-products-list { padding: var(--nj-section-y) 0; }
.nj-products-list__foot {
	display: flex;
	justify-content: center;
	margin-top: clamp(28px, 3.5vw, 44px);
}
.nj-products-list__foot .nj-btn--lg {
	padding: 16px 36px;
	min-width: 260px;
}
.nj-flash__title-box {
	display: flex; align-items: center; gap: 14px;
}
.nj-flash__icon {
	width: 56px; height: 56px;
	border-radius: 14px;
	background: linear-gradient(135deg, var(--nj-red), var(--nj-red-dk));
	display: inline-flex; align-items: center; justify-content: center;
	font-size: 30px; color: var(--nj-yellow);
	box-shadow: 0 12px 24px -8px rgba(225,11,27,.6);
}
.nj-flash__title {
	font-family: var(--nj-font-display);
	font-size: clamp(28px, 4vw, 40px);
	text-transform: uppercase;
	margin: 0;
	color: #fff;
	letter-spacing: -.01em;
}
.nj-flash__desc { margin: 4px 0 0; font-size: 14px; color: #c8cad0; }

.nj-flash__timer { display: flex; flex-direction: column; align-items: end; gap: 8px; }
.nj-flash__timer-label {
	display: inline-flex; align-items: center; gap: 6px;
	font-size: 12px; color: #c8cad0; font-weight: 600;
	text-transform: uppercase; letter-spacing: .08em;
}
.nj-flash__timer-blocks { display: flex; gap: 8px; }
.nj-flash__timer-block {
	background: rgba(255,255,255,.08);
	border: 1px solid rgba(255,255,255,.12);
	border-radius: 10px;
	padding: 10px 12px 8px;
	text-align: center;
	min-width: 54px;
}
.nj-flash__timer-block span {
	display: block;
	font-family: var(--nj-font-display);
	font-size: 22px;
	font-weight: 800;
	color: #fff;
	font-variant-numeric: tabular-nums;
	line-height: 1;
}
.nj-flash__timer-block small {
	display: block; margin-top: 4px;
	font-size: 10px; color: #888a90;
	text-transform: uppercase; letter-spacing: .08em;
}

/* ---------- By-category section ---------- */
.nj-by-cat__head {
	display: flex; align-items: center; gap: 16px; max-width: 100%;
}
.nj-by-cat__icon {
	width: 56px; height: 56px;
	border-radius: 14px;
	background: var(--nj-black);
	color: #fff;
	display: inline-flex; align-items: center; justify-content: center;
	font-size: 24px;
	box-shadow: inset 0 -3px 0 var(--nj-red);
	flex-shrink: 0;
}
.nj-section--dark .nj-by-cat__icon { background: #fff; color: var(--nj-black); box-shadow: inset 0 -3px 0 var(--nj-red); }

/* ---------- Reasons compact ---------- */
.nj-reasons--compact { background: var(--nj-soft); padding: var(--nj-section-y-sm) 0; }
.nj-reason-grid--row {
	display: grid; gap: 14px;
	grid-template-columns: 1fr;
}
@media (min-width: 700px) { .nj-reason-grid--row { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .nj-reason-grid--row { grid-template-columns: repeat(4, 1fr); } }

.nj-reason-card--row {
	display: flex; align-items: start; gap: 14px;
	padding: 18px 18px;
	text-align: left;
	background: #fff;
}
.nj-reason-card--row .nj-reason-card__icon {
	width: 46px; height: 46px;
	font-size: 22px;
	margin-bottom: 0;
	border-radius: 12px;
	flex-shrink: 0;
}
.nj-reason-card--row .nj-reason-card__title {
	font-size: 16px;
	margin: 0 0 4px;
}
.nj-reason-card--row .nj-reason-card__desc { font-size: 13px; }

.nj-empty-state {
	background: rgba(255,255,255,.04);
	border: 1px dashed rgba(255,255,255,.15);
	border-radius: var(--nj-radius);
	padding: clamp(36px, 6vw, 64px) clamp(20px, 4vw, 40px);
	text-align: center;
}
.nj-empty-state__icon {
	width: 64px; height: 64px; border-radius: 18px;
	background: rgba(225,11,27,.15); color: var(--nj-red-soft);
	display: inline-flex; align-items: center; justify-content: center;
	font-size: 28px; margin-bottom: 18px;
}
.nj-empty-state__text { font-size: 18px; font-weight: 600; color: #fff; margin-bottom: 8px; }
.nj-empty-state__hint { color: #c8cad0; margin-bottom: 22px; }
.nj-empty-state__cta { display: inline-flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ---------- Reasons ---------- */
.nj-reason-grid {
	display: grid; gap: 18px;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
.nj-reason-card {
	background: var(--nj-white);
	border: 1px solid var(--nj-line);
	border-radius: var(--nj-radius);
	padding: 28px 24px;
	text-align: left;
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
	position: relative;
}
.nj-reason-card:hover { transform: translateY(-4px); box-shadow: var(--nj-shadow); border-color: var(--nj-black); }
.nj-reason-card__icon {
	width: 56px; height: 56px; border-radius: 14px;
	background: var(--nj-black); color: #fff;
	display: inline-flex; align-items: center; justify-content: center;
	font-size: 26px; margin-bottom: 18px;
	box-shadow: inset 0 -3px 0 var(--nj-red);
}
.nj-reason-card__title { font-size: 19px; color: var(--nj-black); margin: 0 0 6px; font-family: var(--nj-font-display); text-transform: uppercase; }
.nj-reason-card__desc { font-size: 14px; color: var(--nj-text-mute); margin: 0; line-height: 1.55; }

/* ---------- Marketplace ---------- */
.nj-market-grid {
	display: grid; gap: 22px;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.nj-market-card {
	position: relative; overflow: hidden;
	padding: 32px;
	border-radius: var(--nj-radius-lg);
	color: #fff;
	transition: transform .25s ease, box-shadow .25s ease;
	display: flex; flex-direction: column; gap: 14px;
	min-height: 280px;
	isolation: isolate;
}
.nj-market-card::before {
	content: ""; position: absolute; inset: 0; z-index: -1;
}
.nj-market-card::after {
	content: ""; position: absolute; right: -40px; bottom: -40px;
	width: 220px; height: 220px;
	background: rgba(255,255,255,.08);
	border-radius: 50%; z-index: -1;
}
.nj-market-card--shopee::before { background: linear-gradient(135deg, #ee4d2d, #ff7245); }
.nj-market-card--tokopedia::before { background: linear-gradient(135deg, #03ac0e, #06d711); }
.nj-market-card--shopee { box-shadow: 0 16px 36px -12px rgba(238, 77, 45, .35); }
.nj-market-card--tokopedia { box-shadow: 0 16px 36px -12px rgba(3, 172, 14, .35); }
.nj-market-card--shopee:hover { box-shadow: 0 22px 48px -14px rgba(238, 77, 45, .5); }
.nj-market-card--tokopedia:hover { box-shadow: 0 22px 48px -14px rgba(3, 172, 14, .5); }
.nj-market-card:hover { transform: translateY(-4px); box-shadow: var(--nj-shadow-lg); }
.nj-market-card__brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 700; letter-spacing: .02em; }
.nj-market-card__logo { font-size: 28px; }
.nj-market-card__name { font-family: var(--nj-font-display); font-size: 22px; text-transform: uppercase; }
.nj-market-card__title { font-size: 26px; font-family: var(--nj-font-display); margin: 0; text-transform: uppercase; }
.nj-market-card__desc { font-size: 14.5px; opacity: .92; line-height: 1.55; margin: 0; max-width: 380px; }
.nj-market-card__cta {
	margin-top: auto;
	display: inline-flex; align-items: center; gap: 10px;
	padding: 12px 20px; background: rgba(0,0,0,.25);
	border-radius: 999px; font-weight: 700; font-size: 14px;
	width: max-content;
	transition: background .25s ease, gap .25s ease;
}
.nj-market-card:hover .nj-market-card__cta { background: rgba(0,0,0,.4); gap: 14px; }

/* ---------- Social TikTok ---------- */
.nj-social__inner {
	display: grid; grid-template-columns: 1fr; gap: 40px;
	align-items: center;
}
.nj-social__cta { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 12px; }
.nj-social__hint { margin-top: 18px; color: #c8cad0; font-size: 13.5px; }
.nj-social__visual { display: none; justify-content: center; align-items: center; }
.nj-social__phone {
	width: 260px; aspect-ratio: 9 / 18;
	background: #1c1d20;
	border-radius: 32px; padding: 12px;
	border: 1px solid rgba(255,255,255,.1);
	box-shadow: var(--nj-shadow-lg);
	transform: rotate(-4deg);
}
.nj-social__phone-screen {
	width: 100%; height: 100%;
	background: linear-gradient(135deg, #000 0%, #1a0307 100%);
	border-radius: 22px; overflow: hidden; position: relative;
	display: flex; flex-direction: column;
}
.nj-social__phone-top {
	height: 22px; background: #0a0b0d;
	border-bottom-left-radius: 14px; border-bottom-right-radius: 14px;
	width: 110px; margin: 0 auto;
}
.nj-social__phone-content {
	flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
	color: #fff; text-align: center; padding: 20px;
}
.nj-social__phone-icon { font-size: 64px; color: var(--nj-red-soft); margin-bottom: 16px; }
.nj-social__phone-label { font-family: var(--nj-font-display); font-size: 22px; font-weight: 800; }
.nj-social__phone-sub { font-size: 12px; color: #888a90; margin-top: 4px; letter-spacing: .04em; }

/* ---------- CTA Bottom ---------- */
.nj-cta-bottom {
	padding: var(--nj-section-y) 0;
}
.nj-cta-bottom__box {
	background: linear-gradient(135deg, var(--nj-red) 0%, var(--nj-red-dk) 100%);
	color: #fff;
	border-radius: var(--nj-radius-lg);
	padding: clamp(36px, 5vw, 56px);
	display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px;
	position: relative; overflow: hidden;
	box-shadow: var(--nj-shadow-lg);
}
.nj-cta-bottom__box::before {
	content: ""; position: absolute; right: -80px; top: -80px;
	width: 320px; height: 320px;
	background: rgba(255,255,255,.07); border-radius: 50%;
}
.nj-cta-bottom__box::after {
	content: ""; position: absolute; left: -100px; bottom: -120px;
	width: 280px; height: 280px;
	background: rgba(0,0,0,.18); border-radius: 50%;
}
.nj-cta-bottom__text { position: relative; max-width: 560px; }
.nj-cta-bottom__text h2 { font-size: clamp(26px, 3.5vw, 40px); color: #fff; text-transform: uppercase; margin: 0 0 10px; }
.nj-cta-bottom__text p { margin: 0; font-size: 15.5px; opacity: .95; }
.nj-cta-bottom__buttons { position: relative; display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Footer ---------- */
.nj-footer { background: var(--nj-black); color: #c8cad0; padding-top: clamp(50px, 7vw, 80px); }
.nj-footer__top { display: grid; gap: 36px; grid-template-columns: 1fr; padding-bottom: 40px; }
.nj-footer__brand .nj-logo { margin-bottom: 16px; }
.nj-footer__brand .nj-logo__name { color: #fff; }
.nj-footer__brand .nj-logo__sub { color: #888a90; }
.nj-footer__desc { font-size: 14px; line-height: 1.65; max-width: 360px; margin-bottom: 18px; }
.nj-footer__social { display: flex; gap: 10px; }
.nj-footer__social a {
	width: 40px; height: 40px; border-radius: 12px;
	background: rgba(255,255,255,.06); color: #fff;
	display: inline-flex; align-items: center; justify-content: center;
	font-size: 18px; transition: background .2s ease, color .2s ease, transform .2s ease;
}
.nj-footer__social a:hover { background: var(--nj-red); transform: translateY(-2px); }
.nj-footer__title { color: #fff; font-family: var(--nj-font-display); font-size: 16px; text-transform: uppercase; letter-spacing: .08em; margin: 0 0 14px; }
.nj-footer__list { display: flex; flex-direction: column; gap: 10px; }
.nj-footer__list a { font-size: 14px; color: #c8cad0; transition: color .2s ease; }
.nj-footer__list a:hover { color: #fff; }
.nj-footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 22px 0; font-size: 13px; }
.nj-footer__bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; color: #888a90; }
.nj-footer__sub { margin: 0; }

/* Blue accent variants for select sections (matches logo's secondary blue) */
.nj-new .nj-section__eyebrow {
	color: var(--nj-blue);
	background: rgba(31, 46, 181, .08);
}
.nj-new .nj-section__title-accent,
.nj-new .nj-section__title strong {
	color: var(--nj-blue);
}
.nj-counter:nth-child(2) span,
.nj-counter:nth-child(4) span {
	color: rgba(255, 255, 255, .85);
}

/* ---------- Floating WA ---------- */
.nj-float-wa {
	position: fixed; bottom: 20px; right: 20px; z-index: 60;
	background: #25d366; color: #fff;
	padding: 14px 18px; border-radius: 999px;
	display: inline-flex; align-items: center; gap: 8px;
	font-weight: 700; font-size: 14px;
	box-shadow: 0 12px 30px rgba(37,211,102,.45);
	transition: transform .2s ease, box-shadow .2s ease;
}
.nj-float-wa:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(37,211,102,.55); }
.nj-float-wa .nj-icon { font-size: 22px; }

/* ---------- Single Page / Archive ---------- */
.nj-page { padding: clamp(40px, 6vw, 80px) 0; }
.nj-page__head { margin-bottom: 24px; }
.nj-page__title { font-size: clamp(28px, 4vw, 42px); color: var(--nj-black); text-transform: uppercase; }
.nj-page__content { font-size: 16px; line-height: 1.7; }
.nj-archive__item { padding: 16px 0; border-bottom: 1px solid var(--nj-line); }

/* ---------- Responsive ---------- */
@media (min-width: 640px) {
	.nj-hero__inner { grid-template-columns: 1fr; }
	.nj-section__head { margin-bottom: 56px; }
}

@media (min-width: 880px) {
	.nj-promo-bar__inner { gap: 24px; }
	.nj-nav { display: block; }
	.nj-menu-toggle { display: none; }
	.nj-header__cta-btn { display: inline-flex; }
	.nj-hero__inner { grid-template-columns: 1.05fr .95fr; gap: 56px; }
	.nj-hero__visual { display: block; }
	.nj-social__inner { grid-template-columns: 1.1fr .9fr; }
	.nj-social__visual { display: flex; }
	.nj-footer__top { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}

@media (max-width: 879px) {
	.nj-promo-bar__text { display: none; }
	.nj-promo-bar__inner { justify-content: center; }
	.nj-section__head--row { text-align: center; justify-content: center; }
	.nj-section__head--row > div:first-child { width: 100%; }
	.nj-cta-bottom__box { text-align: center; justify-content: center; }
	.nj-cta-bottom__buttons { width: 100%; justify-content: center; }
}

@media (max-width: 540px) {
	.nj-hero { padding: 56px 0 70px; }
	.nj-hero__title { font-size: 36px; }
	.nj-hero__cta .nj-btn { flex: 1 1 100%; }
	.nj-marquee__track { font-size: 18px; }
	.nj-cat-grid { grid-template-columns: 1fr; }
	.nj-product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
	.nj-product-card__title { font-size: 14px; }
	.nj-section__title { font-size: 28px; }
	.nj-float-wa span { display: none; }
	.nj-float-wa { padding: 14px; }
	.nj-footer__bottom-inner { justify-content: center; text-align: center; }
}

/* ---------- WooCommerce light overrides ---------- */
.woocommerce ul.products li.product .button {
	background: var(--nj-black); color: #fff; border-radius: 999px; padding: 10px 20px; font-weight: 700;
}
.woocommerce ul.products li.product .button:hover { background: var(--nj-red); }
.woocommerce-store-notice { background: var(--nj-black); }

/* =========================================================
   PAGE HERO / BANNER (reusable)
   ========================================================= */
.nj-page-hero {
	position: relative;
	background: var(--nj-black); color: #fff;
	padding: clamp(48px, 8vw, 100px) 0 clamp(36px, 6vw, 70px);
	overflow: hidden;
	isolation: isolate;
}
.nj-page-hero__bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.nj-page-hero::before {
	content: ""; position: absolute; inset: 0;
	background:
		radial-gradient(700px 360px at 78% 35%, rgba(225,11,27,.18), transparent 60%),
		radial-gradient(500px 260px at 8% 80%, rgba(255,255,255,.04), transparent 60%);
	z-index: 0;
}
.nj-page-hero__inner { position: relative; z-index: 1; max-width: 900px; }
.nj-page-hero__eyebrow { margin-bottom: 16px; }
.nj-page-hero__title {
	font-family: var(--nj-font-display);
	font-size: clamp(32px, 5vw, 56px);
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: -.01em;
	line-height: 1.05;
	color: #fff;
	margin: 0 0 12px;
}
.nj-page-hero__desc {
	font-size: clamp(15px, 1.4vw, 18px);
	color: #c8cad0;
	max-width: 640px;
	margin: 8px 0 0;
}

/* Breadcrumb */
.nj-breadcrumb {
	display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
	font-size: 13px;
	margin-bottom: 14px;
}
.nj-breadcrumb__link {
	color: #c8cad0; font-weight: 500;
	transition: color .2s ease;
}
.nj-breadcrumb__link:hover { color: var(--nj-red-soft); }
.nj-breadcrumb__current { color: #fff; font-weight: 600; }
.nj-breadcrumb__sep { color: #5c6068; }

/* =========================================================
   ABOUT PAGE — Modern Revamp
   ========================================================= */

/* ---------- Vision (image + statement side-by-side) ---------- */
.nj-vision {
	padding: var(--nj-section-y) 0;
}
.nj-vision__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 28px;
	align-items: center;
}
@media (min-width: 880px) {
	.nj-vision__grid {
		grid-template-columns: 5fr 7fr;
		gap: clamp(40px, 5vw, 72px);
	}
}
.nj-vision__media {
	position: relative;
	overflow: hidden;
	border-radius: var(--nj-radius-lg);
	box-shadow: 0 20px 50px -20px rgba(0, 0, 0, .25);
	aspect-ratio: 4 / 3;
	background:
		radial-gradient(circle at 28% 72%, rgba(217, 32, 39, .35), transparent 50%),
		radial-gradient(circle at 72% 28%, rgba(31, 46, 181, .22), transparent 55%),
		linear-gradient(180deg, #181c2a 0%, #2a1d27 50%, #5a2620 80%, #2a1410 100%);
}
.nj-vision__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.nj-vision__placeholder {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, .55);
	text-align: center;
	padding: 24px;
}
.nj-vision__placeholder::before {
	content: "";
	position: absolute;
	inset: 24px;
	border: 1px dashed rgba(255, 255, 255, .15);
	border-radius: 16px;
	pointer-events: none;
}
.nj-vision__placeholder-icon {
	font-size: 64px;
	opacity: .7;
	color: rgba(255, 255, 255, .9);
	filter: drop-shadow(0 6px 20px rgba(217, 32, 39, .55));
}
.nj-vision__placeholder-label {
	display: block;
	margin-top: 18px;
	font-family: var(--nj-font-display);
	font-size: 15px;
	font-weight: 800;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .8);
}
.nj-vision__placeholder-hint {
	display: block;
	margin-top: 8px;
	font-size: 11px;
	letter-spacing: .04em;
	color: rgba(255, 255, 255, .35);
	line-height: 1.6;
}
.nj-vision__placeholder-hint code {
	font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
	background: rgba(0, 0, 0, .35);
	padding: 2px 6px;
	border-radius: 4px;
	color: rgba(255, 255, 255, .55);
	font-size: 10.5px;
}

.nj-vision__content {
	padding: 0;
}
.nj-vision__content .nj-section__eyebrow { margin-bottom: 18px; }
.nj-vision__statement {
	font-family: var(--nj-font-display);
	font-size: clamp(22px, 2.6vw, 34px);
	font-weight: 700;
	color: var(--nj-black);
	line-height: 1.3;
	letter-spacing: -.01em;
	margin: 0 0 24px;
}
.nj-vision__statement em {
	font-style: normal;
	color: var(--nj-red);
	font-weight: 800;
}
.nj-vision__statement strong {
	color: var(--nj-blue);
	font-weight: 800;
}
.nj-vision__body {
	font-size: clamp(14.5px, 1.1vw, 16px);
	line-height: 1.7;
	color: var(--nj-text);
	margin: 0 0 26px;
	max-width: 560px;
}
.nj-vision__body strong {
	color: var(--nj-black);
	font-weight: 700;
}
.nj-vision__sig {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	font-size: 12.5px;
	color: var(--nj-text-mute);
	letter-spacing: .12em;
	text-transform: uppercase;
	font-weight: 700;
}
.nj-vision__sig-line {
	width: 44px;
	height: 2px;
	background: var(--nj-red);
}

/* ---------- Story (lead + body with red vertical divider) ---------- */
.nj-story {
	padding: var(--nj-section-y) 0;
}
.nj-story__grid {
	display: grid;
	gap: 36px;
	grid-template-columns: 1fr;
	align-items: start;
}
@media (min-width: 880px) {
	.nj-story__grid {
		grid-template-columns: minmax(280px, 1fr) 1.8fr;
		gap: clamp(48px, 6vw, 80px);
	}
	.nj-story__lead {
		position: relative;
		padding-right: clamp(36px, 4vw, 60px);
	}
	.nj-story__lead::after {
		content: "";
		position: absolute;
		right: 0;
		top: 14px;
		bottom: 14px;
		width: 3px;
		background: var(--nj-red);
		border-radius: 2px;
	}
}
.nj-story__lead .nj-section__eyebrow {
	display: inline-block;
	margin-bottom: 20px;
}
.nj-story__lead .nj-section__title {
	font-family: var(--nj-font-display);
	font-size: clamp(28px, 3.6vw, 44px);
	color: var(--nj-black);
	text-transform: uppercase;
	letter-spacing: -.005em;
	line-height: 1.05;
	margin: 0;
}
.nj-story__body {
	max-width: 720px;
}
.nj-story__body p {
	font-size: clamp(14.5px, 1.1vw, 16px);
	line-height: 1.75;
	color: var(--nj-text);
	margin: 0 0 18px;
}
.nj-story__body strong { color: var(--nj-black); font-weight: 700; }
.nj-story__cta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
	padding-top: 28px;
	border-top: 1px solid var(--nj-line);
}

/* Pull quote inside Story */
.nj-quote {
	position: relative;
	margin: 28px 0;
	padding: 22px 28px 22px 50px;
	background: #fff;
	border-left: 4px solid var(--nj-red);
	border-radius: 0 14px 14px 0;
	box-shadow: 0 6px 22px -16px rgba(0, 0, 0, .2);
}
.nj-quote__mark {
	position: absolute;
	top: 18px;
	left: 18px;
	font-family: Georgia, serif;
	font-size: 48px;
	line-height: .8;
	color: var(--nj-red);
	font-weight: 700;
	opacity: .9;
}
.nj-quote p {
	font-family: var(--nj-font-display);
	font-size: clamp(17px, 1.6vw, 22px);
	font-weight: 700;
	color: var(--nj-black);
	line-height: 1.4;
	letter-spacing: -.005em;
	margin: 0;
}

/* ---------- Stats Modern (bordered grid) ---------- */
.nj-stats-modern {
	padding: var(--nj-section-y) 0;
	position: relative;
	overflow: hidden;
}
.nj-stats-modern::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(700px 360px at 80% 30%, rgba(217, 32, 39, .12), transparent 60%),
		radial-gradient(500px 280px at 15% 75%, rgba(31, 46, 181, .12), transparent 60%);
	pointer-events: none;
}
.nj-stats-modern__head {
	text-align: center;
	max-width: 720px;
	margin: 0 auto var(--nj-section-head-mb);
	position: relative;
	z-index: 1;
}
.nj-stats-modern__head .nj-section__title { color: #fff; }

.nj-stats-modern__grid {
	display: grid;
	gap: 1px;
	grid-template-columns: 1fr;
	border-radius: var(--nj-radius-lg);
	overflow: hidden;
	background: rgba(255, 255, 255, .08);
	position: relative;
	z-index: 1;
}
@media (min-width: 540px) { .nj-stats-modern__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 880px) { .nj-stats-modern__grid { grid-template-columns: repeat(4, 1fr); } }

.nj-stats-modern__item {
	padding: clamp(28px, 3.5vw, 40px) clamp(20px, 2.5vw, 30px);
	text-align: center;
	background: #16171a;
	transition: background .25s ease;
}
.nj-stats-modern__item:hover { background: #1c1e22; }
.nj-stats-modern__item strong {
	display: block;
	font-family: var(--nj-font-display);
	font-size: clamp(38px, 5vw, 58px);
	font-weight: 900;
	color: #fff;
	line-height: 1;
	letter-spacing: -.02em;
	font-variant-numeric: tabular-nums;
}
.nj-stats-modern__item strong::after {
	content: attr(data-suffix);
	color: var(--nj-red);
	margin-left: 2px;
}
.nj-stats-modern__item:nth-child(2) strong::after,
.nj-stats-modern__item:nth-child(4) strong::after {
	color: var(--nj-blue-soft);
}
.nj-stats-modern__label {
	display: block;
	margin-top: 12px;
	font-family: var(--nj-font-display);
	font-size: 14px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: #fff;
}
.nj-stats-modern__desc {
	display: block;
	margin-top: 8px;
	font-size: 12.5px;
	color: #888a90;
	line-height: 1.5;
	max-width: 220px;
	margin-left: auto;
	margin-right: auto;
}

/* ---------- Values Modern (numbered cards) ---------- */
.nj-values-modern__grid {
	display: grid;
	gap: 18px;
	grid-template-columns: 1fr;
}
@media (min-width: 640px) { .nj-values-modern__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .nj-values-modern__grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }

.nj-value {
	position: relative;
	background: #fff;
	border: 1px solid var(--nj-line);
	border-radius: var(--nj-radius);
	padding: 28px 24px 26px;
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
	overflow: hidden;
}
.nj-value::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 3px;
	background: var(--nj-red);
	transform: scaleY(0);
	transform-origin: bottom;
	transition: transform .3s ease;
}
.nj-value:hover {
	transform: translateY(-4px);
	box-shadow: var(--nj-shadow);
	border-color: var(--nj-black);
}
.nj-value:hover::after { transform: scaleY(1); }
.nj-value:nth-child(even):hover::after { background: var(--nj-blue); }
.nj-value__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 18px;
}
.nj-value__num {
	font-family: var(--nj-font-display);
	font-size: 42px;
	font-weight: 900;
	line-height: 1;
	color: transparent;
	-webkit-text-stroke: 1.5px var(--nj-line);
	letter-spacing: -.02em;
	transition: -webkit-text-stroke-color .3s ease, color .3s ease;
}
.nj-value:hover .nj-value__num {
	-webkit-text-stroke-color: var(--nj-red);
}
.nj-value:nth-child(even):hover .nj-value__num {
	-webkit-text-stroke-color: var(--nj-blue);
}
.nj-value__icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: var(--nj-soft);
	color: var(--nj-black);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	transition: background .25s ease, color .25s ease;
}
.nj-value:hover .nj-value__icon {
	background: var(--nj-black);
	color: var(--nj-red);
}
.nj-value:nth-child(even):hover .nj-value__icon {
	color: var(--nj-blue-soft);
}
.nj-value__title {
	font-family: var(--nj-font-display);
	font-size: 18px;
	font-weight: 800;
	text-transform: uppercase;
	color: var(--nj-black);
	letter-spacing: -.005em;
	margin: 0 0 10px;
}
.nj-value__desc {
	font-size: 14px;
	color: var(--nj-text-mute);
	line-height: 1.6;
	margin: 0;
}

/* ---------- Process (timeline) ---------- */
.nj-process__list {
	display: grid;
	gap: 18px;
	grid-template-columns: 1fr;
	position: relative;
}
@media (min-width: 880px) {
	.nj-process__list {
		grid-template-columns: repeat(3, 1fr);
		gap: 24px;
	}
	/* Connector dashed line aligned with center of number boxes */
	.nj-process__list::before {
		content: "";
		position: absolute;
		top: 56px;
		left: 12%;
		right: 12%;
		height: 2px;
		background: repeating-linear-gradient(90deg, var(--nj-line) 0 8px, transparent 8px 16px);
		z-index: 0;
	}
}

.nj-process__step {
	background: #fff;
	border: 1px solid var(--nj-line);
	border-radius: var(--nj-radius);
	padding: 28px 24px 26px;
	position: relative;
	z-index: 1;
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.nj-process__step:hover {
	transform: translateY(-4px);
	box-shadow: var(--nj-shadow);
	border-color: var(--nj-black);
}
.nj-process__num {
	width: 56px;
	height: 56px;
	border-radius: 14px;
	background: var(--nj-black);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--nj-font-display);
	font-size: 22px;
	font-weight: 900;
	letter-spacing: 0;
	box-shadow: inset 0 -3px 0 var(--nj-red);
	margin-bottom: 20px;
}
.nj-process__step:nth-child(2) .nj-process__num { box-shadow: inset 0 -3px 0 var(--nj-blue); }
.nj-process__step:nth-child(3) .nj-process__num { box-shadow: inset 0 -3px 0 var(--nj-yellow); }
.nj-process__title {
	font-family: var(--nj-font-display);
	font-size: 20px;
	font-weight: 800;
	text-transform: uppercase;
	color: var(--nj-black);
	margin: 0 0 10px;
	letter-spacing: -.005em;
	line-height: 1.15;
}
.nj-process__desc {
	font-size: 14.5px;
	color: var(--nj-text-mute);
	line-height: 1.65;
	margin: 0;
}

/* ---------- Category Explore Tiles ---------- */
.nj-cat-explore__grid {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 700px) { .nj-cat-explore__grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }

.nj-cat-tile {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 24px 22px 26px;
	background: #fff;
	border: 1px solid var(--nj-line);
	border-radius: var(--nj-radius);
	color: var(--nj-text);
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
	overflow: hidden;
}
.nj-cat-tile::before {
	content: "";
	position: absolute;
	right: -40px;
	top: -40px;
	width: 140px;
	height: 140px;
	border-radius: 50%;
	background: var(--nj-soft);
	opacity: 0;
	transition: opacity .3s ease, transform .3s ease;
	z-index: 0;
}
.nj-cat-tile > * { position: relative; z-index: 1; }
.nj-cat-tile:hover {
	transform: translateY(-4px);
	border-color: var(--nj-black);
	box-shadow: var(--nj-shadow);
}
.nj-cat-tile:hover::before {
	opacity: 1;
	transform: scale(1.3);
}
.nj-cat-tile__icon {
	width: 46px;
	height: 46px;
	border-radius: 12px;
	background: var(--nj-black);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	box-shadow: inset 0 -3px 0 var(--nj-red);
	margin-bottom: 12px;
	transition: background .3s ease, transform .3s ease;
}
.nj-cat-tile:nth-child(even) .nj-cat-tile__icon {
	box-shadow: inset 0 -3px 0 var(--nj-blue);
}
.nj-cat-tile:hover .nj-cat-tile__icon {
	background: var(--nj-red);
	transform: rotate(-4deg);
}
.nj-cat-tile:nth-child(even):hover .nj-cat-tile__icon {
	background: var(--nj-blue);
}
.nj-cat-tile__name {
	font-family: var(--nj-font-display);
	font-size: 18px;
	font-weight: 800;
	text-transform: uppercase;
	color: var(--nj-black);
	letter-spacing: -.005em;
}
.nj-cat-tile__count {
	font-size: 12px;
	font-weight: 600;
	color: var(--nj-text-mute);
}
.nj-cat-tile__arrow {
	position: absolute;
	bottom: 18px;
	right: 18px;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	background: transparent;
	color: var(--nj-black);
	opacity: 0;
	transform: translateX(-6px);
	transition: opacity .3s ease, transform .3s ease, background .3s ease, color .3s ease;
}
.nj-cat-tile:hover .nj-cat-tile__arrow {
	opacity: 1;
	transform: translateX(0);
	background: var(--nj-black);
	color: #fff;
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.nj-contact-grid {
	display: grid; gap: 16px;
	grid-template-columns: 1fr;
}
@media (min-width: 700px) { .nj-contact-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .nj-contact-grid { grid-template-columns: repeat(4, 1fr); } }

.nj-contact-card {
	position: relative; overflow: hidden;
	background: #fff;
	border: 1px solid var(--nj-line);
	border-radius: var(--nj-radius-lg);
	padding: 26px 22px;
	display: flex; flex-direction: column; gap: 10px;
	color: var(--nj-text);
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
	min-height: 240px;
}
.nj-contact-card::before {
	content: ""; position: absolute; right: -40px; bottom: -40px;
	width: 160px; height: 160px;
	border-radius: 50%;
	background: var(--nj-soft);
	z-index: 0;
	transition: transform .35s ease;
}
.nj-contact-card:hover { transform: translateY(-4px); box-shadow: var(--nj-shadow); border-color: var(--nj-black); }
.nj-contact-card:hover::before { transform: scale(1.5); }
.nj-contact-card > * { position: relative; z-index: 1; }
.nj-contact-card__icon {
	width: 52px; height: 52px;
	border-radius: 14px;
	background: var(--nj-black); color: #fff;
	display: inline-flex; align-items: center; justify-content: center;
	font-size: 22px;
	box-shadow: inset 0 -3px 0 var(--nj-red);
	margin-bottom: 6px;
}
.nj-contact-card--wa .nj-contact-card__icon { background: #25d366; box-shadow: inset 0 -3px 0 #128c44; }
.nj-contact-card--shopee .nj-contact-card__icon { background: #ee4d2d; box-shadow: inset 0 -3px 0 #c43919; }
.nj-contact-card--tokopedia .nj-contact-card__icon { background: #03ac0e; box-shadow: inset 0 -3px 0 #028109; }
.nj-contact-card--tiktok .nj-contact-card__icon { background: #000; box-shadow: inset 0 -3px 0 var(--nj-red); }
.nj-contact-card__title {
	font-size: 20px; color: var(--nj-black);
	text-transform: uppercase;
	margin: 0;
}
.nj-contact-card__desc {
	font-size: 13.5px; color: var(--nj-text-mute);
	line-height: 1.55; margin: 0;
	flex: 1;
}
.nj-contact-card__cta {
	display: inline-flex; align-items: center; gap: 8px;
	font-size: 13px; font-weight: 700;
	color: var(--nj-black);
	margin-top: 8px;
	transition: gap .2s ease, color .2s ease;
}
.nj-contact-card:hover .nj-contact-card__cta { gap: 12px; color: var(--nj-red); }

/* =========================================================
   FAQ
   ========================================================= */
.nj-section--soft { background: var(--nj-soft); }
.nj-faq__list { display: flex; flex-direction: column; gap: 10px; max-width: 860px; margin: 0 auto; }
.nj-faq__item {
	background: #fff;
	border: 1px solid var(--nj-line);
	border-radius: var(--nj-radius);
	overflow: hidden;
	transition: border-color .2s ease, box-shadow .2s ease;
}
.nj-faq__item[open] { border-color: var(--nj-black); box-shadow: var(--nj-shadow-sm); }
.nj-faq__q {
	cursor: pointer;
	display: flex; align-items: center; justify-content: space-between; gap: 14px;
	padding: 16px 22px;
	font-size: 15.5px; font-weight: 600;
	color: var(--nj-black);
	list-style: none;
}
.nj-faq__q::-webkit-details-marker { display: none; }
.nj-faq__icon {
	width: 28px; height: 28px;
	border-radius: 8px;
	background: var(--nj-soft);
	color: var(--nj-black);
	display: inline-flex; align-items: center; justify-content: center;
	font-size: 18px; font-weight: 800;
	transition: transform .2s ease, background .2s ease, color .2s ease;
	flex-shrink: 0;
}
.nj-faq__item[open] .nj-faq__icon { transform: rotate(45deg); background: var(--nj-red); color: #fff; }
.nj-faq__a {
	padding: 0 22px 18px;
	font-size: 14.5px;
	color: var(--nj-text-mute);
	line-height: 1.65;
}

.nj-faq-page { padding-top: clamp(40px, 6vw, 70px); padding-bottom: clamp(40px, 6vw, 70px); }
.nj-faq-group { margin-bottom: 40px; }
.nj-faq-group__title {
	font-family: var(--nj-font-display);
	font-size: clamp(22px, 2.5vw, 30px);
	color: var(--nj-black);
	text-transform: uppercase;
	letter-spacing: -.005em;
	margin: 0 0 18px;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--nj-red);
	display: inline-block;
}

/* =========================================================
   CARA BELANJA (how-to)
   ========================================================= */
.nj-howto-grid {
	display: grid; gap: 18px;
	grid-template-columns: 1fr;
}
@media (min-width: 880px) { .nj-howto-grid { grid-template-columns: repeat(3, 1fr); } }

.nj-howto__card {
	background: #fff;
	border: 1px solid var(--nj-line);
	border-radius: var(--nj-radius-lg);
	padding: 32px 26px;
	position: relative;
	overflow: hidden;
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.nj-howto__card:hover { transform: translateY(-4px); box-shadow: var(--nj-shadow); border-color: var(--nj-black); }
.nj-howto__num {
	font-family: var(--nj-font-display);
	font-size: 82px; font-weight: 900;
	color: var(--nj-red);
	line-height: 1;
	letter-spacing: -.04em;
	opacity: .18;
	position: absolute; top: 10px; right: 18px;
}
.nj-howto__icon {
	width: 60px; height: 60px;
	border-radius: 16px;
	background: var(--nj-black); color: #fff;
	display: inline-flex; align-items: center; justify-content: center;
	font-size: 28px;
	box-shadow: inset 0 -3px 0 var(--nj-red);
	margin-bottom: 22px;
	position: relative;
}
.nj-howto__title {
	font-size: 20px; color: var(--nj-black);
	text-transform: uppercase;
	margin: 0 0 10px;
}
.nj-howto__desc {
	font-size: 14.5px; color: var(--nj-text-mute);
	line-height: 1.6; margin: 0 0 18px;
}
.nj-howto__btns { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.nj-howto__hint {
	font-size: 13px; color: var(--nj-red);
	font-weight: 600; margin: 8px 0 0;
}

/* Tips grid */
.nj-tip-grid {
	display: grid; gap: 16px;
	grid-template-columns: 1fr;
}
@media (min-width: 700px) { .nj-tip-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .nj-tip-grid { grid-template-columns: repeat(4, 1fr); } }

.nj-tip-card {
	background: #fff;
	border: 1px solid var(--nj-line);
	border-radius: var(--nj-radius);
	padding: 22px;
	transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.nj-tip-card:hover { transform: translateY(-3px); border-color: var(--nj-black); box-shadow: var(--nj-shadow-sm); }
.nj-tip-card__icon {
	width: 42px; height: 42px;
	border-radius: 12px;
	background: var(--nj-soft); color: var(--nj-red);
	display: inline-flex; align-items: center; justify-content: center;
	font-size: 20px;
	margin-bottom: 14px;
}
.nj-tip-card h4 {
	font-family: var(--nj-font-sans);
	font-size: 15px; font-weight: 700;
	color: var(--nj-black);
	margin: 0 0 6px;
	text-transform: none;
	letter-spacing: 0;
}
.nj-tip-card p { font-size: 13.5px; color: var(--nj-text-mute); line-height: 1.55; margin: 0; }

/* =========================================================
   BLOG
   ========================================================= */
.nj-blog-grid {
	display: grid; gap: 22px;
	grid-template-columns: 1fr;
}
@media (min-width: 640px) { .nj-blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .nj-blog-grid { grid-template-columns: repeat(3, 1fr); } }
.nj-blog-grid--3 { grid-template-columns: repeat(1, 1fr); }
@media (min-width: 640px) { .nj-blog-grid--3 { grid-template-columns: repeat(3, 1fr); } }

.nj-post-card {
	background: #fff;
	border: 1px solid var(--nj-line);
	border-radius: var(--nj-radius);
	overflow: hidden;
	display: flex; flex-direction: column;
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.nj-post-card:hover { transform: translateY(-4px); box-shadow: var(--nj-shadow); border-color: var(--nj-black); }
.nj-post-card__media {
	display: block;
	position: relative;
	aspect-ratio: 16 / 10;
	background: var(--nj-soft);
	overflow: hidden;
}
.nj-post-card__media img {
	width: 100%; height: 100%; object-fit: cover;
	transition: transform .4s ease;
}
.nj-post-card:hover .nj-post-card__media img { transform: scale(1.06); }
.nj-post-card__placeholder {
	width: 100%; height: 100%;
	display: flex; align-items: center; justify-content: center;
	color: #c8cad0; font-size: 64px;
}
.nj-post-card__cat {
	position: absolute; top: 12px; left: 12px;
	padding: 5px 11px;
	background: var(--nj-red); color: #fff;
	border-radius: 999px;
	font-size: 11px; font-weight: 800;
	text-transform: uppercase; letter-spacing: .04em;
	z-index: 1;
}
.nj-post-card__body {
	padding: 18px 20px 22px;
	display: flex; flex-direction: column; gap: 10px;
	flex: 1;
}
.nj-post-card__meta {
	display: flex; flex-wrap: wrap; gap: 14px;
	font-size: 12px; color: var(--nj-text-mute);
}
.nj-post-card__meta span { display: inline-flex; align-items: center; gap: 4px; }
.nj-post-card__meta .nj-icon { font-size: 14px; color: var(--nj-red); }
.nj-post-card__title {
	font-family: var(--nj-font-display);
	font-size: 20px; font-weight: 800;
	color: var(--nj-black);
	text-transform: uppercase;
	line-height: 1.2;
	letter-spacing: -.005em;
	margin: 0;
	display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.nj-post-card__title a { color: inherit; transition: color .2s ease; }
.nj-post-card__title a:hover { color: var(--nj-red); }
.nj-post-card__excerpt {
	font-size: 14px;
	color: var(--nj-text-mute);
	line-height: 1.55;
	margin: 0;
	display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.nj-post-card__more {
	display: inline-flex; align-items: center; gap: 6px;
	font-size: 13px; font-weight: 700;
	color: var(--nj-black);
	margin-top: auto; padding-top: 4px;
	transition: gap .2s ease, color .2s ease;
}
.nj-post-card__more:hover { gap: 10px; color: var(--nj-red); }
.nj-post-card__more .nj-icon { font-size: 14px; }

/* Pagination */
.nj-pagination { margin-top: 40px; }
.nj-pagination .nav-links {
	display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; align-items: center;
}
.nj-pagination .page-numbers {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 40px; height: 40px;
	padding: 0 12px;
	border-radius: 10px;
	background: #fff;
	border: 1px solid var(--nj-line);
	color: var(--nj-text);
	font-weight: 700; font-size: 14px;
	text-decoration: none;
	transition: all .2s ease;
}
.nj-pagination .page-numbers:hover { border-color: var(--nj-black); color: var(--nj-red); }
.nj-pagination .page-numbers.current {
	background: var(--nj-black); color: #fff; border-color: var(--nj-black);
}

/* Single post */
.nj-single { padding: clamp(36px, 6vw, 70px) 0 clamp(36px, 6vw, 70px); }
.nj-single__inner { max-width: 820px; margin: 0 auto; }
.nj-single__meta {
	display: flex; flex-wrap: wrap; gap: 16px;
	font-size: 13px; color: var(--nj-text-mute);
	margin-bottom: 26px;
}
.nj-single__meta span { display: inline-flex; align-items: center; gap: 6px; }
.nj-single__meta .nj-icon { color: var(--nj-red); font-size: 14px; }
.nj-single__featured { margin-bottom: 28px; border-radius: var(--nj-radius); overflow: hidden; }
.nj-single__featured img { width: 100%; height: auto; display: block; }
.nj-single__content { font-size: 16px; line-height: 1.75; color: var(--nj-text); }
.nj-single__content > * { margin-bottom: 1.1em; }
.nj-single__content h2 {
	font-family: var(--nj-font-display);
	font-size: clamp(22px, 2.6vw, 30px);
	color: var(--nj-black);
	text-transform: uppercase;
	letter-spacing: -.005em;
	margin: 1.6em 0 .6em;
}
.nj-single__content h3 {
	font-family: var(--nj-font-display);
	font-size: clamp(18px, 2vw, 22px);
	color: var(--nj-black);
	text-transform: uppercase;
	margin: 1.4em 0 .4em;
}
.nj-single__content p { margin: 0 0 1.2em; }
.nj-single__content ul, .nj-single__content ol { margin: 0 0 1.2em 1.4em; }
.nj-single__content li { margin-bottom: .35em; }
.nj-single__content blockquote {
	border-left: 4px solid var(--nj-red);
	padding: 6px 16px;
	background: var(--nj-soft);
	border-radius: 0 10px 10px 0;
	font-style: italic;
	color: var(--nj-text);
	margin: 1em 0;
}
.nj-single__content a { color: var(--nj-red); text-decoration: underline; }
.nj-single__content img, .nj-single__content figure { border-radius: var(--nj-radius); overflow: hidden; max-width: 100%; height: auto; }
.nj-single__content figure { margin: 1.2em 0; }
.nj-single__content code { background: var(--nj-soft); padding: 2px 6px; border-radius: 4px; font-size: 14px; }

.nj-single__tags, .nj-single__share {
	display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
	padding: 16px 0;
	border-top: 1px solid var(--nj-line);
	margin-top: 22px;
}
.nj-single__tags-label, .nj-single__share-label {
	font-size: 13px; font-weight: 700; color: var(--nj-text-mute);
	text-transform: uppercase; letter-spacing: .08em;
	margin-right: 4px;
}
.nj-single__tag {
	padding: 4px 12px;
	background: var(--nj-soft);
	border-radius: 999px;
	font-size: 12.5px; font-weight: 600;
	color: var(--nj-text);
	transition: background .2s ease, color .2s ease;
}
.nj-single__tag:hover { background: var(--nj-black); color: #fff; }
.nj-single__share a, .nj-single__share button {
	width: 38px; height: 38px;
	border-radius: 10px;
	background: var(--nj-soft);
	color: var(--nj-text);
	border: 0;
	display: inline-flex; align-items: center; justify-content: center;
	cursor: pointer;
	transition: background .2s ease, color .2s ease, transform .2s ease;
}
.nj-single__share a:hover, .nj-single__share button:hover { background: var(--nj-red); color: #fff; transform: translateY(-2px); }
.nj-single__share .nj-icon { font-size: 18px; }
.nj-copy-link.is-copied { background: #25d366; color: #fff; }

.nj-related { background: var(--nj-soft); }

/* =========================================================
   DEFAULT PAGE
   ========================================================= */
.nj-page-default { padding: clamp(40px, 6vw, 80px) 0; }
.nj-page-default__inner { max-width: 820px; margin: 0 auto; }
.nj-page-default__content { font-size: 16px; line-height: 1.7; color: var(--nj-text); }
.nj-page-default__content h2, .nj-page-default__content h3 {
	font-family: var(--nj-font-display);
	color: var(--nj-black);
	text-transform: uppercase;
	margin: 1.4em 0 .4em;
}
.nj-page-default__content p { margin: 0 0 1em; }
.nj-page-default__content a { color: var(--nj-red); text-decoration: underline; }

.nj-empty-state--light {
	background: var(--nj-soft);
	border: 1px dashed var(--nj-line);
	color: var(--nj-text);
}
.nj-empty-state--light .nj-empty-state__text { color: var(--nj-black); }
.nj-empty-state--light .nj-empty-state__hint { color: var(--nj-text-mute); }
.nj-empty-state--light .nj-empty-state__icon { background: rgba(225,11,27,.1); color: var(--nj-red); }

/* =========================================================
   SHOP LAYOUT (sidebar + product grid)
   ========================================================= */
.nj-shop {
	padding: clamp(24px, 4vw, 40px) 0 clamp(40px, 6vw, 70px);
}
.nj-shop__inner {
	display: grid;
	gap: 20px;
	grid-template-columns: 1fr;
	align-items: start;
}
@media (min-width: 880px) {
	.nj-shop__inner {
		grid-template-columns: 270px 1fr;
		gap: 28px;
	}
}

/* Sidebar */
.nj-shop__sidebar { position: relative; }
@media (min-width: 880px) {
	.nj-shop__sidebar {
		position: sticky;
		top: 100px;
		max-height: calc(100vh - 120px);
		overflow-y: auto;
		scrollbar-width: thin;
		scrollbar-color: var(--nj-line) transparent;
	}
	.nj-shop__sidebar::-webkit-scrollbar { width: 6px; }
	.nj-shop__sidebar::-webkit-scrollbar-thumb { background: var(--nj-line); border-radius: 3px; }
}
.nj-shop__sidebar-card {
	background: #fff;
	border: 1px solid var(--nj-line);
	border-radius: var(--nj-radius);
	padding: 18px;
}
.nj-shop__sidebar-title {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--nj-font-display);
	font-size: 15px;
	font-weight: 800;
	text-transform: uppercase;
	color: var(--nj-black);
	letter-spacing: .04em;
	margin: 0 0 14px;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--nj-line);
}
.nj-shop__sidebar-title .nj-icon {
	color: var(--nj-red);
	font-size: 18px;
}
.nj-shop__catlist {
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.nj-shop__catitem a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 9px 10px;
	border-radius: 10px;
	color: var(--nj-text);
	font-size: 13.5px;
	font-weight: 600;
	line-height: 1.3;
	transition: background .2s ease, color .2s ease;
}
.nj-shop__catitem a:hover {
	background: var(--nj-soft);
	color: var(--nj-red);
}
.nj-shop__catitem.is-active a {
	background: var(--nj-red);
	color: #fff;
	box-shadow: 0 6px 16px -6px rgba(225, 11, 27, .55);
}
.nj-shop__catitem.is-active a:hover { color: #fff; }
.nj-shop__caticon {
	width: 30px;
	height: 30px;
	border-radius: 8px;
	background: var(--nj-soft);
	color: var(--nj-black);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	flex-shrink: 0;
	transition: background .2s ease, color .2s ease;
}
.nj-shop__catitem a:hover .nj-shop__caticon {
	background: var(--nj-black);
	color: #fff;
}
.nj-shop__catitem.is-active .nj-shop__caticon {
	background: rgba(255, 255, 255, .18);
	color: #fff;
}
.nj-shop__catname {
	font-family: var(--nj-font-display);
	font-weight: 800;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: .03em;
	flex: 1;
	min-width: 0;
}
.nj-shop__catcount {
	font-size: 11px;
	font-weight: 700;
	opacity: .55;
	flex-shrink: 0;
	font-variant-numeric: tabular-nums;
}
.nj-shop__catitem.is-active .nj-shop__catcount { opacity: .9; }

/* Main column */
.nj-shop__main {
	min-width: 0;
	position: relative;
	transition: opacity .2s ease;
}
.nj-shop__main.is-loading {
	opacity: .55;
	pointer-events: none;
}
.nj-shop__main.is-loading::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--nj-red), transparent);
	background-size: 200% 100%;
	animation: nj-shop-load 1s linear infinite;
	z-index: 10;
}
@keyframes nj-shop-load {
	from { background-position: 200% 0; }
	to   { background-position: -200% 0; }
}
.nj-shop__bar {
	background: rgba(225, 11, 27, .07);
	border: 1px solid rgba(225, 11, 27, .18);
	border-radius: var(--nj-radius);
	padding: 14px 18px;
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 20px;
	font-size: 14px;
	color: var(--nj-text);
}
.nj-shop__bar-label { font-weight: 600; color: var(--nj-text-mute); }
.nj-shop__bar-name {
	color: var(--nj-red);
	font-family: var(--nj-font-display);
	font-weight: 800;
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: .01em;
}
.nj-shop__bar-sep { color: var(--nj-text-mute); margin: 0 2px; }
.nj-shop__bar-count { color: var(--nj-text-mute); font-weight: 600; }
.nj-shop__bar-back {
	margin-left: auto;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	background: #fff;
	border: 1px solid var(--nj-line);
	border-radius: 999px;
	color: var(--nj-text);
	font-weight: 700;
	font-size: 13px;
	transition: border-color .2s ease, color .2s ease, transform .2s ease;
}
.nj-shop__bar-back:hover {
	border-color: var(--nj-black);
	color: var(--nj-red);
	transform: translateY(-1px);
}
.nj-shop__bar-back .nj-icon { font-size: 16px; }

/* 5-col product grid for shop main */
.nj-prod-grid--5 {
	grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 540px) { .nj-prod-grid--5 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 880px) { .nj-prod-grid--5 { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
@media (min-width: 1100px) { .nj-prod-grid--5 { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1320px) { .nj-prod-grid--5 { grid-template-columns: repeat(5, 1fr); } }

/* Mobile: sidebar becomes horizontal scroll pills */
@media (max-width: 879px) {
	.nj-shop__sidebar {
		margin: 0 -16px;
		padding: 0 16px;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}
	.nj-shop__sidebar::-webkit-scrollbar { display: none; }
	.nj-shop__sidebar-card {
		display: inline-flex;
		padding: 6px;
		border-radius: 999px;
		min-width: max-content;
	}
	.nj-shop__sidebar-title { display: none; }
	.nj-shop__catlist {
		flex-direction: row;
		flex-wrap: nowrap;
		gap: 4px;
	}
	.nj-shop__catitem { flex-shrink: 0; }
	.nj-shop__catitem a {
		padding: 8px 14px 8px 8px;
		border-radius: 999px;
		gap: 8px;
		white-space: nowrap;
	}
	.nj-shop__caticon {
		width: 26px;
		height: 26px;
		font-size: 13px;
		border-radius: 50%;
	}
	.nj-shop__catname { font-size: 12px; }
	.nj-shop__catcount {
		background: rgba(0, 0, 0, .08);
		padding: 2px 8px;
		border-radius: 999px;
		font-size: 10px;
	}
	.nj-shop__catitem.is-active .nj-shop__catcount { background: rgba(255, 255, 255, .2); }
	.nj-shop__bar { padding: 12px 14px; font-size: 13px; }
	.nj-shop__bar-name { font-size: 15px; }
	.nj-shop__bar-back {
		margin-left: 0;
		width: 100%;
		justify-content: center;
		order: 99;
	}
}

/* =========================================================
   PRODUCT DETAIL PAGE (PDP) — Modern marketplace layout
   ========================================================= */
.nj-pdp-section {
	padding: clamp(20px, 3.5vw, 40px) 0 clamp(48px, 6vw, 80px);
	background: var(--nj-white);
}
/* PDP container — sized to keep gallery + info close to viewport center on
   wide screens, instead of pushing the info panel out to the right edge. */
.nj-pdp-section > .nj-container {
	max-width: 1240px;
}
.nj-pdp .woocommerce-notices-wrapper { margin-bottom: 16px; }
.nj-pdp { color: var(--nj-text); }

/* Breadcrumb (slim, marketplace-style) */
.nj-pdp__crumbs {
	display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
	font-size: 13px;
	color: var(--nj-text-mute);
	margin-bottom: clamp(16px, 2.5vw, 24px);
}
.nj-pdp__crumbs-link {
	color: var(--nj-text-mute);
	font-weight: 500;
	transition: color .2s ease;
}
.nj-pdp__crumbs-link:hover { color: var(--nj-red); }
.nj-pdp__crumbs-current {
	color: var(--nj-black);
	font-weight: 600;
	max-width: 220px;
	overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.nj-pdp__crumbs-sep { color: var(--nj-line); }

/* Hero: gallery + info.
   Gallery capped fixed width, info fills the rest. Container max-width keeps
   total layout close to viewport center on wide screens. */
.nj-pdp__hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: clamp(18px, 2.2vw, 32px);
	margin-bottom: clamp(40px, 5vw, 60px);
	align-items: start;
}
@media (min-width: 880px) {
	.nj-pdp__hero {
		grid-template-columns: minmax(0, 5fr) minmax(0, 8fr);
	}
}
@media (min-width: 1100px) {
	.nj-pdp__hero {
		grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
	}
}
@media (min-width: 1400px) {
	.nj-pdp__hero {
		grid-template-columns: minmax(0, 460px) minmax(0, 1fr);
	}
}

/* ---------- Gallery (left column) ---------- */
.nj-pdp__gallery-wrap { min-width: 0; }
@media (min-width: 880px) {
	.nj-pdp__gallery-wrap {
		position: sticky;
		top: 90px;
		align-self: start;
	}
}
.nj-pdp__gallery {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

/* Main image card frame — clean white card with subtle border + soft shadow on hover. */
.nj-pdp__gallery-frame {
	position: relative;
	background: var(--nj-white);
	border: 1px solid var(--nj-line);
	border-radius: var(--nj-radius-lg);
	padding: clamp(12px, 1.6vw, 18px);
	overflow: hidden;
	transition: border-color .25s ease, box-shadow .25s ease;
}
.nj-pdp__gallery-frame:hover {
	border-color: rgba(217, 32, 39, .18);
	box-shadow: 0 14px 32px -16px rgba(11, 11, 13, .14);
}

/* Flash badge — stacked label "DISKON / -32%" for a modern shop tag look. */
.nj-pdp__flash {
	position: absolute;
	top: 14px; left: 14px;
	z-index: 3;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1px;
	padding: 9px 12px;
	border-radius: 10px;
	font-family: var(--nj-font-display);
	font-weight: 800;
	letter-spacing: .04em;
	text-transform: uppercase;
	box-shadow: 0 8px 20px -8px rgba(217, 32, 39, .55);
	line-height: 1;
}
.nj-pdp__flash--sale {
	background: linear-gradient(135deg, var(--nj-red) 0%, #b81a20 100%);
	color: #fff;
}
.nj-pdp__flash--hot {
	background: linear-gradient(135deg, #ff7a00, #ffb800);
	color: #fff;
	flex-direction: row;
	gap: 6px;
	padding: 8px 12px;
}
.nj-pdp__flash--hot .nj-icon { font-size: 14px; }
.nj-pdp__flash-num {
	font-size: 18px;
	font-weight: 900;
	letter-spacing: -.01em;
}
.nj-pdp__flash-label {
	font-size: 9.5px;
	font-weight: 700;
	opacity: .9;
	letter-spacing: .12em;
}

/* Footer tip row — two mini hint chips: hover-zoom + click-preview. */
.nj-pdp__gallery-foot {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	flex-wrap: wrap;
	padding: 4px 6px;
}
.nj-pdp__gallery-hint {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.nj-pdp__gallery-hint-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px; height: 26px;
	border-radius: 7px;
	background: var(--nj-soft);
	border: 1px solid var(--nj-line);
	color: var(--nj-red);
	flex-shrink: 0;
}
.nj-pdp__gallery-hint-icon .nj-icon { font-size: 13px; }
.nj-pdp__gallery-hint-text {
	display: inline-flex;
	flex-direction: column;
	line-height: 1.15;
	font-size: 11.5px;
}
.nj-pdp__gallery-hint-text strong {
	color: var(--nj-black);
	font-weight: 700;
	font-size: 12px;
	letter-spacing: .01em;
}
.nj-pdp__gallery-hint-text span {
	color: var(--nj-text-mute);
	font-size: 10.5px;
	margin-top: 1px;
}
.nj-pdp__gallery-hint-sep {
	width: 1px;
	height: 22px;
	background: var(--nj-line);
}
@media (max-width: 540px) {
	.nj-pdp__gallery-foot { gap: 10px; }
	.nj-pdp__gallery-hint-text { font-size: 11px; }
	.nj-pdp__gallery-hint-text strong { font-size: 11.5px; }
	.nj-pdp__gallery-hint-text span { font-size: 10px; }
}

/* WooCommerce gallery hooks */
.nj-pdp .woocommerce-product-gallery {
	width: 100% !important;
	float: none !important;
	margin: 0 !important;
	position: relative;
	opacity: 1 !important;
}
.nj-pdp .woocommerce-product-gallery__wrapper { margin: 0; }
.nj-pdp .woocommerce-product-gallery__image {
	border-radius: var(--nj-radius);
	overflow: hidden;
	background: var(--nj-white);
}
.nj-pdp .woocommerce-product-gallery__image {
	position: relative;
	cursor: zoom-in;
}
.nj-pdp .woocommerce-product-gallery__image a {
	display: block;
	cursor: zoom-in;
}
.nj-pdp .woocommerce-product-gallery__image img {
	border-radius: var(--nj-radius);
	display: block;
	width: 100%;
	height: auto;
}
/* IMPORTANT: do not transform/scale the image — jquery.zoom overlays a
   position:absolute <img.zoomImg> whose coordinates are computed from the
   underlying image's natural box. Any transform on the image shifts the
   overlay relative to the cursor and creates the "wrong content under
   cursor" glitch when switching slides. */
.nj-pdp .woocommerce-product-gallery__image .zoomImg {
	border-radius: 0;
	background-color: var(--nj-white);
}
.nj-pdp .woocommerce-product-gallery__image--placeholder img {
	opacity: .55;
	cursor: default;
}

/* Thumbnail strip — sits below the main image card, scrollable horizontally.
   Hairline divider + generous top margin separate it from the image above. */
.nj-pdp .flex-control-thumbs {
	display: flex;
	gap: 10px;
	margin: clamp(28px, 3vw, 40px) 0 0;
	padding: clamp(20px, 2.4vw, 28px) 2px 4px;
	border-top: 1px solid var(--nj-line);
	list-style: none;
	overflow-x: auto;
	scrollbar-width: thin;
	scroll-snap-type: x mandatory;
}
.nj-pdp .flex-control-thumbs::-webkit-scrollbar { height: 4px; }
.nj-pdp .flex-control-thumbs::-webkit-scrollbar-thumb {
	background: var(--nj-line);
	border-radius: 2px;
}
.nj-pdp .flex-control-thumbs li {
	width: 72px;
	flex: 0 0 72px;
	margin: 0;
	float: none;
	scroll-snap-align: start;
}
.nj-pdp .flex-control-thumbs li img {
	width: 100%;
	height: auto;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 10px;
	background: var(--nj-white);
	cursor: pointer;
	opacity: .85;
	box-shadow: 0 0 0 1px var(--nj-line);
	transition: opacity .2s ease, box-shadow .2s ease, transform .2s ease;
}
.nj-pdp .flex-control-thumbs li img:hover {
	opacity: 1;
	box-shadow: 0 0 0 1px var(--nj-text-mute);
	transform: translateY(-1px);
}
.nj-pdp .flex-control-thumbs li img.flex-active {
	opacity: 1;
	box-shadow: 0 0 0 2px var(--nj-red), 0 4px 10px -4px rgba(217, 32, 39, .45);
	transform: translateY(-1px);
}

/* Zoom-on-hover is disabled at the theme-support level, so WC doesn't create
   the magnifier trigger button. The image itself is now the lightbox trigger. */
.nj-pdp .woocommerce-product-gallery__trigger { display: none !important; }

/* Click feedback — quick scale-down flash right before the lightbox opens. */
.nj-pdp .woocommerce-product-gallery__image.is-pressing::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, .35);
	border-radius: inherit;
	animation: nj-pdp-press-flash .22s ease;
	pointer-events: none;
	z-index: 2;
}
@keyframes nj-pdp-press-flash {
	0%   { opacity: 1; transform: scale(1); }
	100% { opacity: 0; transform: scale(.985); }
}

/* ---------- PhotoSwipe lightbox polish ----------
   Darker semi-opaque backdrop with subtle blur for a modern fullscreen feel.
   The fly-from-thumb animation is driven by getThumbBoundsFn in main.js. */
.pswp__bg {
	background: rgba(11, 11, 13, .92);
	-webkit-backdrop-filter: blur(10px) saturate(140%);
	backdrop-filter: blur(10px) saturate(140%);
}
.pswp__top-bar,
.pswp__caption {
	background: rgba(11, 11, 13, .6);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
}
.pswp__button {
	transition: transform .2s ease, opacity .2s ease, background-color .2s ease;
	border-radius: 8px;
}
.pswp__button:hover {
	transform: scale(1.08);
	opacity: 1 !important;
}
.pswp__button--close:hover { background-color: rgba(217, 32, 39, .25); }
.pswp__counter {
	font-family: var(--nj-font-display, 'Barlow Condensed', sans-serif);
	font-size: 16px;
	font-weight: 700;
	letter-spacing: .04em;
	padding: 0 18px;
	opacity: .9;
}
/* ---------- Info panel (right column) ---------- */
/* Info column flows naturally — only the gallery sticks on desktop scroll.
   (Earlier sticky + overflow:auto here caused an internal scrollbar that hid the
   title/price block — never make the whole info column scrollable on its own.) */
.nj-pdp__info-wrap { min-width: 0; }
.nj-pdp__info { padding: 0; min-width: 0; }

/* Pills (category, featured) */
.nj-pdp__pills {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 14px;
}
.nj-pdp__pill {
	display: inline-flex; align-items: center; gap: 6px;
	padding: 5px 12px;
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	border-radius: 999px;
	transition: background .2s ease, color .2s ease;
}
.nj-pdp__pill--cat {
	background: var(--nj-soft);
	color: var(--nj-text);
	border: 1px solid var(--nj-line);
}
.nj-pdp__pill--cat:hover { background: var(--nj-black); color: #fff; border-color: var(--nj-black); }
.nj-pdp__pill--featured {
	background: linear-gradient(135deg, #fff4d6, #ffe4a1);
	color: #7a5b00;
	border: 1px solid #f6d97a;
}
.nj-pdp__pill--featured .nj-icon { font-size: 12px; color: #c79100; }

/* Title */
.nj-pdp__title.product_title {
	font-family: var(--nj-font-display);
	font-weight: 800;
	text-transform: none;
	font-size: clamp(24px, 3vw, 34px);
	line-height: 1.15;
	letter-spacing: -.005em;
	color: var(--nj-black);
	margin: 0 0 14px;
}

/* Meta bar (rating, sold, sku) */
.nj-pdp__meta-bar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	font-size: 13.5px;
	color: var(--nj-text-mute);
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--nj-line);
}
.nj-pdp__rating {
	display: inline-flex; align-items: center; gap: 6px;
}
.nj-pdp__rating .nj-icon {
	color: #f5a623;
	font-size: 16px;
}
.nj-pdp__rating strong {
	color: var(--nj-black);
	font-weight: 700;
	font-size: 14px;
}
.nj-pdp__rating-link { color: var(--nj-text-mute); }
a.nj-pdp__rating-link:hover { color: var(--nj-red); text-decoration: underline; }
.nj-pdp__meta-divider {
	width: 1px;
	height: 14px;
	background: var(--nj-line);
}
.nj-pdp__sold strong { color: var(--nj-black); font-weight: 700; }
.nj-pdp__sku {
	font-size: 12.5px;
	color: var(--nj-text-mute);
	font-variant-numeric: tabular-nums;
}

/* Price card */
.nj-pdp__price-card {
	background: linear-gradient(135deg, #fff5f5 0%, #ffe9ea 100%);
	border: 1px solid #fbd2d4;
	border-radius: var(--nj-radius);
	padding: 18px 20px;
	margin-bottom: 16px;
}
.nj-pdp__price-row {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}
.nj-pdp__price-now {
	font-family: var(--nj-font-display);
	font-size: clamp(28px, 4vw, 38px);
	font-weight: 900;
	color: var(--nj-red);
	line-height: 1;
	letter-spacing: -.01em;
}
.nj-pdp__price-now .amount,
.nj-pdp__price-now bdi { color: var(--nj-red) !important; }
.nj-pdp__price-now ins { background: transparent; text-decoration: none; }
.nj-pdp__price-now del {
	display: none;
}
.nj-pdp__price-badge {
	display: inline-flex; align-items: center;
	padding: 5px 10px;
	background: var(--nj-red);
	color: #fff;
	font-weight: 800;
	font-size: 12px;
	letter-spacing: .04em;
	border-radius: 6px;
	line-height: 1;
}
.nj-pdp__price-strike {
	display: inline-block;
	margin-top: 6px;
	color: var(--nj-text-mute);
	font-size: 14px;
	font-weight: 500;
	text-decoration: line-through;
}
.nj-pdp__price-strike .amount,
.nj-pdp__price-strike bdi { color: var(--nj-text-mute) !important; }
.nj-pdp__price-note {
	display: block;
	margin-top: 12px;
	font-size: 12px;
	color: #8a5050;
	line-height: 1.5;
}

/* Stock indicator */
.nj-pdp__stock {
	display: inline-flex; align-items: center; gap: 8px;
	font-size: 13px;
	font-weight: 600;
	padding: 8px 14px;
	border-radius: 999px;
	margin-bottom: 18px;
}
.nj-pdp__stock--in {
	color: #0d7a4a;
	background: #e6f7ef;
	border: 1px solid #b7e7d0;
}
.nj-pdp__stock--out {
	color: #8a3b00;
	background: #fff1e1;
	border: 1px solid #f5d4a7;
}
.nj-pdp__stock-dot {
	width: 8px; height: 8px;
	border-radius: 50%;
	background: currentColor;
	box-shadow: 0 0 0 3px rgba(13, 122, 74, .15);
	animation: nj-pdp-pulse 2s ease-in-out infinite;
}
.nj-pdp__stock--out .nj-pdp__stock-dot {
	box-shadow: 0 0 0 3px rgba(138, 59, 0, .15);
	animation: none;
}
@keyframes nj-pdp-pulse {
	0%, 100% { box-shadow: 0 0 0 3px rgba(13, 122, 74, .15); }
	50%      { box-shadow: 0 0 0 6px rgba(13, 122, 74, .05); }
}

/* Short description */
.nj-pdp__excerpt {
	font-size: 14.5px;
	line-height: 1.65;
	color: var(--nj-text);
	margin-bottom: 22px;
}
.nj-pdp__excerpt p { margin: 0 0 .7em; }
.nj-pdp__excerpt p:last-child { margin-bottom: 0; }

/* =========================================================
   PDP BUY BLOCK — native WC checkout (qty + add to cart + buy now)
   ========================================================= */
.nj-pdp__buy {
	margin-bottom: 18px;
	padding: 18px;
	background: linear-gradient(180deg, #fff 0%, #fafbfc 100%);
	border: 1px solid var(--nj-line);
	border-radius: var(--nj-radius);
}
.nj-pdp__buy-row {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
	padding-bottom: 14px;
	margin-bottom: 14px;
	border-bottom: 1px dashed var(--nj-line);
}
.nj-pdp__buy-label {
	font-size: 13px;
	font-weight: 700;
	color: var(--nj-black);
	margin-right: auto;
}

/* Quantity stepper */
.nj-pdp__qty {
	display: inline-flex;
	align-items: stretch;
	background: var(--nj-white);
	border: 1px solid var(--nj-line);
	border-radius: 10px;
	overflow: hidden;
}
.nj-pdp__qty-btn {
	width: 40px;
	height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: 0;
	color: var(--nj-text);
	cursor: pointer;
	transition: background .15s ease, color .15s ease;
	padding: 0;
}
.nj-pdp__qty-btn:hover { background: var(--nj-soft); color: var(--nj-red); }
.nj-pdp__qty-btn:active { background: var(--nj-line); }
.nj-pdp__qty-btn .nj-icon { font-size: 14px; }
.nj-pdp__qty-input {
	width: 54px;
	height: 42px;
	border: 0;
	border-left: 1px solid var(--nj-line);
	border-right: 1px solid var(--nj-line);
	background: var(--nj-white);
	text-align: center;
	font-weight: 700;
	font-size: 15px;
	color: var(--nj-black);
	font-variant-numeric: tabular-nums;
	padding: 0;
	-moz-appearance: textfield;
}
.nj-pdp__qty-input::-webkit-outer-spin-button,
.nj-pdp__qty-input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
.nj-pdp__qty-input:focus { outline: 2px solid rgba(217, 32, 39, .25); outline-offset: -2px; }

.nj-pdp__buy-stock {
	font-size: 12.5px;
	color: var(--nj-text-mute);
}
.nj-pdp__buy-stock strong { color: var(--nj-black); font-weight: 700; }
.nj-pdp__buy-stock--ok {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #0d7a4a;
	font-weight: 600;
}
.nj-pdp__buy-stock--ok::before {
	content: "";
	width: 7px; height: 7px;
	border-radius: 50%;
	background: #0d7a4a;
}

/* Action buttons — always stacked full-width (matches Tokopedia/Shopee
   pattern). Side-by-side variant created text-overflow issues on narrow info
   columns; stacking is the safer, more familiar marketplace UX anyway. */
.nj-pdp__buy-actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.nj-pdp__buy-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	padding: 14px 20px;
	border-radius: 12px;
	font-weight: 700;
	font-size: 14.5px;
	font-family: var(--nj-font-sans);
	cursor: pointer;
	border: 1.5px solid transparent;
	transition: background .2s ease, color .2s ease, border-color .2s ease, transform .15s ease, box-shadow .2s ease;
	text-decoration: none !important;
	line-height: 1.1;
	white-space: nowrap;
}
.nj-pdp__buy-btn .nj-icon {
	font-size: 18px;
	flex-shrink: 0;
}
.nj-pdp__buy-btn:hover { transform: translateY(-1px); }
.nj-pdp__buy-btn:active { transform: translateY(0); }

.nj-pdp__buy-btn--cart {
	background: var(--nj-white);
	color: var(--nj-red);
	border-color: var(--nj-red);
}
.nj-pdp__buy-btn--cart:hover {
	background: var(--nj-red);
	color: #fff;
	box-shadow: 0 8px 20px -8px rgba(217, 32, 39, .55);
}
.nj-pdp__buy-btn--cart.loading {
	opacity: .8;
	cursor: wait;
}
.nj-pdp__buy-btn--cart.added .nj-icon {
	color: #0d7a4a;
}

.nj-pdp__buy-btn--now {
	background: linear-gradient(135deg, var(--nj-red) 0%, #b81a20 100%);
	color: #fff;
	border-color: transparent;
	box-shadow: 0 10px 24px -10px rgba(217, 32, 39, .55);
}
.nj-pdp__buy-btn--now:hover {
	box-shadow: 0 14px 30px -10px rgba(217, 32, 39, .7);
	filter: brightness(1.05);
}
.nj-pdp__buy-btn--now .nj-icon { color: var(--nj-yellow); }

/* WC's inline "added to cart" message (`.added_to_cart` link). */
.nj-pdp__buy .added_to_cart {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	margin-top: 10px;
	background: rgba(13, 122, 74, .08);
	color: #0d7a4a;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none !important;
}
.nj-pdp__buy .added_to_cart:hover {
	background: #0d7a4a;
	color: #fff;
}

/* Extras: WhatsApp inquiry + marketplace alt links. */
.nj-pdp__buy-extra {
	margin-bottom: 22px;
}
.nj-pdp__buy-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	padding: 11px 16px;
	border-radius: 10px;
	background: var(--nj-white);
	color: #128c4f;
	font-weight: 600;
	font-size: 13px;
	border: 1px solid #b8e8c8;
	text-decoration: none !important;
	transition: background .2s ease, color .2s ease, border-color .2s ease;
	margin-bottom: 14px;
}
.nj-pdp__buy-link .nj-icon { font-size: 16px; color: #25d366; }
.nj-pdp__buy-link:hover {
	background: #25d366; color: #fff; border-color: #25d366;
}
.nj-pdp__buy-link:hover .nj-icon { color: #fff; }

.nj-pdp__buy-alt {
	padding: 12px 14px;
	background: var(--nj-soft);
	border-radius: 10px;
}
.nj-pdp__buy-alt-label {
	display: block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--nj-text-mute);
	margin-bottom: 8px;
}
.nj-pdp__buy-alt-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
}
.nj-pdp__buy-alt-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 8px 12px;
	border-radius: 8px;
	font-weight: 700;
	font-size: 12.5px;
	color: #fff;
	transition: filter .15s ease, transform .15s ease;
}
.nj-pdp__buy-alt-link .nj-icon { font-size: 14px; }
.nj-pdp__buy-alt-link:hover { transform: translateY(-1px); filter: brightness(1.08); color: #fff; }
.nj-pdp__buy-alt-link--shopee { background: #ee4d2d; }
.nj-pdp__buy-alt-link--tokopedia { background: #03ac0e; }

/* Sold-out state. */
.nj-pdp__sold-out {
	padding: 22px;
	margin-bottom: 22px;
	background: linear-gradient(180deg, #fff7f0 0%, #fff1e1 100%);
	border: 1px solid #f5d4a7;
	border-radius: var(--nj-radius);
	text-align: center;
}
.nj-pdp__sold-out strong {
	display: block;
	font-family: var(--nj-font-display);
	font-size: 18px;
	color: #8a3b00;
	margin-bottom: 6px;
}
.nj-pdp__sold-out p {
	font-size: 13px;
	color: #8a3b00;
	margin: 0 0 14px;
}

/* Trust badges — single column to keep labels on one line in narrow info panel. */
.nj-pdp__trust {
	display: flex;
	flex-direction: column;
	gap: 0;
	margin: 0 0 22px;
	padding: 6px 14px;
	background: var(--nj-soft);
	border: 1px solid var(--nj-line);
	border-radius: var(--nj-radius);
}
.nj-pdp__trust li {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 0;
	border-bottom: 1px dashed var(--nj-line);
	min-width: 0;
}
.nj-pdp__trust li:last-child { border-bottom: 0; }
.nj-pdp__trust-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px; height: 32px;
	border-radius: 8px;
	background: var(--nj-white);
	border: 1px solid var(--nj-line);
	color: var(--nj-red);
	flex-shrink: 0;
}
.nj-pdp__trust-icon .nj-icon { font-size: 15px; }
.nj-pdp__trust-text {
	display: flex;
	flex-direction: column;
	min-width: 0;
	flex: 1;
}
.nj-pdp__trust-text strong {
	font-size: 13px;
	color: var(--nj-black);
	font-weight: 700;
	line-height: 1.2;
	white-space: nowrap;
}
.nj-pdp__trust-text small {
	font-size: 11.5px;
	color: var(--nj-text-mute);
	margin-top: 2px;
	line-height: 1.3;
}

/* Meta list (kategori, tag) */
.nj-pdp__meta-list {
	padding: 14px 0;
	border-top: 1px solid var(--nj-line);
	border-bottom: 1px solid var(--nj-line);
	margin-bottom: 18px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.nj-pdp__meta-item {
	display: grid;
	grid-template-columns: 90px 1fr;
	gap: 12px;
	align-items: baseline;
	font-size: 13px;
}
.nj-pdp__meta-label {
	color: var(--nj-text-mute);
	font-weight: 500;
}
.nj-pdp__meta-value { color: var(--nj-black); font-weight: 600; }
.nj-pdp__meta-value a { color: var(--nj-black); transition: color .2s ease; }
.nj-pdp__meta-value a:hover { color: var(--nj-red); }

/* Share */
.nj-pdp__share {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
}
.nj-pdp__share-label {
	font-size: 13px;
	color: var(--nj-text-mute);
	font-weight: 500;
}
.nj-pdp__share-row {
	display: inline-flex;
	gap: 8px;
}
.nj-pdp__share-row a,
.nj-pdp__share-row button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px; height: 36px;
	border-radius: 50%;
	background: var(--nj-white);
	border: 1px solid var(--nj-line);
	color: var(--nj-text-mute);
	cursor: pointer;
	transition: background .2s ease, color .2s ease, border-color .2s ease, transform .15s ease;
}
.nj-pdp__share-row a:hover,
.nj-pdp__share-row button:hover {
	background: var(--nj-black);
	border-color: var(--nj-black);
	color: #fff;
	transform: translateY(-2px);
}
.nj-pdp__share-row .nj-icon { font-size: 14px; }
.nj-pdp__share-copy.is-copied {
	background: #0d7a4a !important;
	border-color: #0d7a4a !important;
	color: #fff !important;
}

/* ---------- After-hero region (tabs, related) ---------- */
.nj-pdp__after { margin-top: clamp(32px, 4vw, 56px); }

/* =========================================================
   PDP TABS — Modern minimalist (underline-style + generous content)
   ========================================================= */
.nj-pdp .woocommerce-tabs {
	margin-bottom: clamp(40px, 5vw, 64px);
}

/* Tab nav — text-based with active underline indicator. */
.nj-pdp .woocommerce-tabs ul.tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 0;
	padding: 0;
	margin: 0 0 clamp(28px, 3.5vw, 40px);
	list-style: none;
	background: transparent;
	border: 0;
	border-bottom: 1px solid var(--nj-line);
	border-radius: 0;
	position: relative;
}
.nj-pdp .woocommerce-tabs ul.tabs::before,
.nj-pdp .woocommerce-tabs ul.tabs::after { display: none; }
.nj-pdp .woocommerce-tabs ul.tabs li {
	margin: 0;
	padding: 0;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	position: relative;
}
.nj-pdp .woocommerce-tabs ul.tabs li::before,
.nj-pdp .woocommerce-tabs ul.tabs li::after { display: none; }
.nj-pdp .woocommerce-tabs ul.tabs li a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 22px 16px;
	margin-bottom: -1px;
	font-weight: 700;
	font-size: 14.5px;
	color: var(--nj-text-mute);
	background: transparent;
	border: 0;
	border-bottom: 2px solid transparent;
	border-radius: 0;
	transition: color .2s ease, border-color .2s ease;
	font-family: var(--nj-font-sans);
	text-transform: none;
	letter-spacing: 0;
	position: relative;
}
.nj-pdp .woocommerce-tabs ul.tabs li:hover a {
	color: var(--nj-black);
}
.nj-pdp .woocommerce-tabs ul.tabs li.active a {
	color: var(--nj-red);
	border-bottom-color: var(--nj-red);
}
/* Soft tint underline on active for premium feel. */
.nj-pdp .woocommerce-tabs ul.tabs li.active::after {
	content: "";
	position: absolute;
	left: 22px; right: 22px;
	bottom: -1px;
	height: 2px;
	background: var(--nj-red);
	border-radius: 2px 2px 0 0;
}
@media (max-width: 540px) {
	.nj-pdp .woocommerce-tabs ul.tabs li a { padding: 12px 14px 14px; font-size: 13.5px; }
	.nj-pdp .woocommerce-tabs ul.tabs li.active::after { left: 14px; right: 14px; }
}

/* Tab panel content — generous typography, max-width for readability. */
.nj-pdp .woocommerce-tabs .panel,
.nj-pdp .woocommerce-tabs .woocommerce-Tabs-panel {
	font-size: 15.5px;
	line-height: 1.75;
	color: var(--nj-text);
	padding: 0;
	margin: 0;
	max-width: 860px;
}
.nj-pdp .woocommerce-tabs .panel > h2:first-child,
.nj-pdp .woocommerce-tabs .woocommerce-Tabs-panel > h2:first-child {
	display: none;
}
/* Lead paragraph — slightly larger, deeper color. */
.nj-pdp .woocommerce-tabs .panel > p:first-of-type {
	font-size: 17px;
	line-height: 1.7;
	color: var(--nj-black);
	margin: 0 0 1.1em;
	font-weight: 500;
}
.nj-pdp .woocommerce-tabs .panel p {
	margin: 0 0 1.2em;
	color: var(--nj-text);
}
.nj-pdp .woocommerce-tabs .panel p strong {
	color: var(--nj-black);
	font-weight: 700;
}
.nj-pdp .woocommerce-tabs .panel h2,
.nj-pdp .woocommerce-tabs .panel h3 {
	font-family: var(--nj-font-display);
	color: var(--nj-black);
	font-weight: 800;
	font-size: 22px;
	margin: 1.8em 0 .6em;
	letter-spacing: -.005em;
}
.nj-pdp .woocommerce-tabs .panel h3 { font-size: 18px; }

/* Checklist bullets — replace browser disc with circular checkmark badges. */
.nj-pdp .woocommerce-tabs .panel ul {
	list-style: none;
	margin: 0 0 1.5em;
	padding: 18px 22px;
	background: linear-gradient(135deg, #fafbfc 0%, #f4f5f7 100%);
	border: 1px solid var(--nj-line);
	border-radius: var(--nj-radius);
	display: grid;
	gap: 10px;
}
.nj-pdp .woocommerce-tabs .panel ul li {
	position: relative;
	padding-left: 34px;
	margin: 0;
	font-size: 14.5px;
	line-height: 1.55;
	color: var(--nj-text);
}
.nj-pdp .woocommerce-tabs .panel ul li::before {
	content: "";
	position: absolute;
	left: 0; top: 1px;
	width: 22px; height: 22px;
	border-radius: 50%;
	background: var(--nj-red);
	background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12l5 5L20 6'/%3E%3C/svg%3E");
	background-size: 14px;
	background-position: center;
	background-repeat: no-repeat;
	box-shadow: 0 4px 10px -4px rgba(217, 32, 39, .45);
}

/* Numbered lists — same card treatment as checklist, but with circular red
   number badges generated via CSS counters instead of checkmark icons. */
.nj-pdp .woocommerce-tabs .panel ol {
	list-style: none;
	margin: 0 0 1.5em;
	padding: 18px 22px;
	background: linear-gradient(135deg, #fafbfc 0%, #f4f5f7 100%);
	border: 1px solid var(--nj-line);
	border-radius: var(--nj-radius);
	display: grid;
	gap: 10px;
	counter-reset: nj-ol;
}
.nj-pdp .woocommerce-tabs .panel ol li {
	position: relative;
	padding-left: 36px;
	margin: 0;
	font-size: 14.5px;
	line-height: 1.55;
	color: var(--nj-text);
	counter-increment: nj-ol;
}
.nj-pdp .woocommerce-tabs .panel ol li::before {
	content: counter(nj-ol);
	position: absolute;
	left: 0; top: 0;
	width: 24px; height: 24px;
	border-radius: 50%;
	background: var(--nj-red);
	color: #fff;
	font-family: var(--nj-font-sans);
	font-size: 11.5px;
	font-weight: 800;
	font-variant-numeric: tabular-nums;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	box-shadow: 0 4px 10px -4px rgba(217, 32, 39, .45);
}

/* Attribute table (Additional information tab). */
.nj-pdp .woocommerce-tabs .panel table.shop_attributes {
	width: 100%;
	border-collapse: collapse;
	border: 1px solid var(--nj-line);
	border-radius: var(--nj-radius);
	overflow: hidden;
}
.nj-pdp .woocommerce-tabs .panel table.shop_attributes th,
.nj-pdp .woocommerce-tabs .panel table.shop_attributes td {
	padding: 14px 18px;
	border: 0;
	border-bottom: 1px solid var(--nj-line);
	font-style: normal;
	text-align: left;
	background: transparent;
	font-size: 14.5px;
}
.nj-pdp .woocommerce-tabs .panel table.shop_attributes tr:last-child th,
.nj-pdp .woocommerce-tabs .panel table.shop_attributes tr:last-child td {
	border-bottom: 0;
}
.nj-pdp .woocommerce-tabs .panel table.shop_attributes th {
	width: 35%;
	background: var(--nj-soft);
	font-weight: 700;
	color: var(--nj-black);
}

/* Section divider chip — small accent at the top of description for branding feel. */
.nj-pdp .woocommerce-tabs .woocommerce-Tabs-panel--description::before {
	content: "Detail Produk";
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 5px 12px;
	margin: 0 0 16px;
	font-family: var(--nj-font-sans);
	font-size: 11px;
	font-weight: 700;
	color: var(--nj-red);
	background: rgba(217, 32, 39, .08);
	border-radius: 999px;
	letter-spacing: .12em;
	text-transform: uppercase;
}

/* Reviews */
.nj-pdp #reviews #comments h2 {
	font-family: var(--nj-font-display);
	font-size: clamp(20px, 2.2vw, 26px);
	color: var(--nj-black);
	margin: 0 0 18px;
}
.nj-pdp #reviews .commentlist {
	list-style: none;
	padding: 0;
	margin: 0 0 24px;
}
.nj-pdp #reviews .commentlist li {
	padding: 16px;
	border: 1px solid var(--nj-line);
	border-radius: var(--nj-radius);
	margin-bottom: 12px;
	background: var(--nj-white);
}
.nj-pdp #review_form_wrapper {
	padding: 22px;
	background: var(--nj-soft);
	border: 1px solid var(--nj-line);
	border-radius: var(--nj-radius);
}
.nj-pdp #review_form input[type="text"],
.nj-pdp #review_form input[type="email"],
.nj-pdp #review_form textarea {
	padding: 12px 14px;
	border-radius: 10px;
	border: 1px solid var(--nj-line);
	width: 100%;
	font-family: inherit;
}
.nj-pdp #review_form .submit {
	background: var(--nj-red);
	color: #fff;
	border: 0;
	padding: 12px 22px;
	border-radius: 999px;
	font-weight: 700;
	cursor: pointer;
	transition: background .2s ease, transform .2s ease;
}
.nj-pdp #review_form .submit:hover { background: var(--nj-red-dk); transform: translateY(-1px); }

/* Related & upsells — reuse our card visual via header restyle */
.nj-pdp .related,
.nj-pdp .upsells {
	margin-top: clamp(32px, 4vw, 48px);
}
.nj-pdp .related > h2,
.nj-pdp .upsells > h2 {
	font-family: var(--nj-font-display);
	font-weight: 800;
	font-size: clamp(22px, 2.6vw, 30px);
	color: var(--nj-black);
	margin: 0 0 6px;
	letter-spacing: -.005em;
}
.nj-pdp .related::before { content: ""; display: none; }
.nj-pdp .related > h2::after,
.nj-pdp .upsells > h2::after {
	content: "";
	display: block;
	width: 44px; height: 3px;
	background: var(--nj-red);
	margin-top: 10px;
	border-radius: 2px;
}
/* Convert default WC product list to our prod-grid look */
.nj-pdp .related ul.products,
.nj-pdp .upsells ul.products {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(12px, 1.6vw, 20px);
	padding: 0;
	margin: 18px 0 0;
	list-style: none;
}
.nj-pdp .related ul.products::before,
.nj-pdp .related ul.products::after,
.nj-pdp .upsells ul.products::before,
.nj-pdp .upsells ul.products::after { display: none; }
@media (min-width: 640px) {
	.nj-pdp .related ul.products,
	.nj-pdp .upsells ul.products { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 1000px) {
	.nj-pdp .related ul.products,
	.nj-pdp .upsells ul.products { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.nj-pdp .related ul.products li.product,
.nj-pdp .upsells ul.products li.product {
	width: auto !important;
	float: none !important;
	margin: 0 !important;
	padding: 0;
	background: var(--nj-white);
	border: 1px solid var(--nj-line);
	border-radius: var(--nj-radius);
	overflow: hidden;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
	display: flex;
	flex-direction: column;
}
.nj-pdp .related ul.products li.product:hover,
.nj-pdp .upsells ul.products li.product:hover {
	transform: translateY(-3px);
	box-shadow: var(--nj-shadow);
	border-color: rgba(217, 32, 39, .25);
}
.nj-pdp .related ul.products li.product a,
.nj-pdp .upsells ul.products li.product a {
	color: inherit;
	display: block;
}
.nj-pdp .related ul.products li.product img,
.nj-pdp .upsells ul.products li.product img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	background: var(--nj-soft);
	display: block;
	margin: 0;
	border-radius: 0;
}
.nj-pdp .related ul.products li.product .woocommerce-loop-product__title,
.nj-pdp .upsells ul.products li.product .woocommerce-loop-product__title {
	padding: 12px 14px 4px;
	font-family: var(--nj-font-sans);
	font-size: 14px;
	font-weight: 600;
	color: var(--nj-black);
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	line-height: 1.35;
	min-height: 2.7em;
	text-transform: none;
	letter-spacing: 0;
}
.nj-pdp .related ul.products li.product .price,
.nj-pdp .upsells ul.products li.product .price {
	padding: 0 14px 14px;
	color: var(--nj-red);
	font-weight: 800;
	font-size: 15px;
	margin: 0;
	font-family: var(--nj-font-sans);
}
.nj-pdp .related ul.products li.product .price del,
.nj-pdp .upsells ul.products li.product .price del {
	color: var(--nj-text-mute);
	font-size: 12.5px;
	font-weight: 500;
	margin-right: 6px;
}
.nj-pdp .related ul.products li.product .price ins,
.nj-pdp .upsells ul.products li.product .price ins {
	background: transparent;
	text-decoration: none;
}
.nj-pdp .related ul.products li.product .button,
.nj-pdp .related ul.products li.product .added_to_cart,
.nj-pdp .upsells ul.products li.product .button,
.nj-pdp .upsells ul.products li.product .added_to_cart {
	display: none !important;
}
.nj-pdp .related ul.products li.product .star-rating,
.nj-pdp .upsells ul.products li.product .star-rating {
	margin: 0 14px 8px;
	font-size: 12px;
}
.nj-pdp .related ul.products li.product .onsale,
.nj-pdp .upsells ul.products li.product .onsale {
	position: absolute;
	top: 10px; left: 10px;
	background: var(--nj-red);
	color: #fff;
	font-weight: 800;
	padding: 4px 8px;
	font-size: 11px;
	border-radius: 6px;
	min-height: 0;
	min-width: 0;
	line-height: 1.2;
	margin: 0;
}
.nj-pdp .related ul.products li.product,
.nj-pdp .upsells ul.products li.product { position: relative; }


/* =========================================================
   CART PAGE — Modern marketplace 2-col layout
   ========================================================= */
.nj-cart-section {
	padding: clamp(20px, 3.5vw, 40px) 0 clamp(48px, 6vw, 80px);
	background: var(--nj-white);
}
.nj-cart-section > .nj-container { max-width: 1240px; }
.nj-cart { color: var(--nj-text); }

/* Breadcrumb + header */
.nj-cart__crumbs {
	display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
	font-size: 13px;
	color: var(--nj-text-mute);
	margin-bottom: clamp(16px, 2vw, 22px);
}
.nj-cart__crumbs-link { color: var(--nj-text-mute); font-weight: 500; transition: color .2s ease; }
.nj-cart__crumbs-link:hover { color: var(--nj-red); }
.nj-cart__crumbs-current { color: var(--nj-black); font-weight: 600; }
.nj-cart__crumbs-sep { color: var(--nj-line); }

.nj-cart__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
	padding-bottom: clamp(20px, 2.5vw, 28px);
	margin-bottom: clamp(24px, 3vw, 34px);
	border-bottom: 1px solid var(--nj-line);
}
.nj-cart__title {
	font-family: var(--nj-font-display);
	font-size: clamp(26px, 3.5vw, 36px);
	font-weight: 800;
	color: var(--nj-black);
	margin: 0 0 4px;
	letter-spacing: -.01em;
}
.nj-cart__subtitle {
	font-size: 14px;
	color: var(--nj-text-mute);
	margin: 0;
}
.nj-cart__back {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13.5px;
	font-weight: 600;
	color: var(--nj-text-mute);
	padding: 8px 14px;
	border: 1px solid var(--nj-line);
	border-radius: 999px;
	transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.nj-cart__back:hover { color: var(--nj-red); border-color: var(--nj-red); background: rgba(217,32,39,.04); }
.nj-cart__back .nj-icon { font-size: 14px; }

/* 2-col grid */
.nj-cart__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: clamp(20px, 2.5vw, 32px);
	align-items: start;
}
@media (min-width: 900px) {
	.nj-cart__grid { grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr); }
}
@media (min-width: 1100px) {
	.nj-cart__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 380px); }
}

/* ---------- Items column ---------- */
.nj-cart__items-col { min-width: 0; }
.nj-cart__list-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	padding: 0 6px 12px;
	margin-bottom: 12px;
	border-bottom: 1px solid var(--nj-line);
}
.nj-cart__list-title {
	font-family: var(--nj-font-display);
	font-size: 16px;
	font-weight: 800;
	color: var(--nj-black);
	letter-spacing: -.005em;
}
.nj-cart__list-meta {
	font-size: 12.5px;
	color: var(--nj-text-mute);
	font-weight: 600;
}

.nj-cart__items {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.nj-cart__item {
	display: grid;
	grid-template-columns: 100px minmax(0, 1fr);
	gap: 16px;
	padding: 16px;
	background: var(--nj-white);
	border: 1px solid var(--nj-line);
	border-radius: var(--nj-radius);
	transition: border-color .2s ease, box-shadow .2s ease;
}
@media (min-width: 540px) {
	.nj-cart__item { grid-template-columns: 120px minmax(0, 1fr); padding: 18px; }
}
.nj-cart__item:hover {
	border-color: rgba(217, 32, 39, .25);
	box-shadow: var(--nj-shadow-sm);
}
.nj-cart__item-thumb {
	border-radius: 10px;
	overflow: hidden;
	background: var(--nj-soft);
}
.nj-cart__item-thumb img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	display: block;
}
.nj-cart__item-body {
	display: flex;
	flex-direction: column;
	gap: 14px;
	min-width: 0;
}
.nj-cart__item-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 10px;
	min-width: 0;
}
.nj-cart__item-info {
	display: flex;
	flex-direction: column;
	gap: 3px;
	min-width: 0;
	flex: 1;
}
.nj-cart__item-cat {
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--nj-text-mute);
}
.nj-cart__item-name {
	font-family: var(--nj-font-sans);
	font-size: 15px;
	font-weight: 700;
	color: var(--nj-black);
	line-height: 1.3;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-decoration: none !important;
	transition: color .2s ease;
}
a.nj-cart__item-name:hover { color: var(--nj-red); }
.nj-cart__item-sku {
	font-size: 11.5px;
	color: var(--nj-text-mute);
	font-variant-numeric: tabular-nums;
}
.nj-cart__item-price {
	font-size: 13.5px;
	font-weight: 600;
	color: var(--nj-text);
	margin-top: 4px;
}
.nj-cart__item-price small {
	color: var(--nj-text-mute);
	font-weight: 500;
	font-size: 11px;
}
.nj-cart__item-price .amount,
.nj-cart__item-price bdi { color: var(--nj-text) !important; }
.nj-cart__item-remove {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px; height: 32px;
	border-radius: 8px;
	background: var(--nj-soft);
	color: var(--nj-text-mute);
	flex-shrink: 0;
	transition: background .2s ease, color .2s ease;
}
.nj-cart__item-remove:hover {
	background: var(--nj-red);
	color: #fff;
}
.nj-cart__item-remove .nj-icon { font-size: 14px; }

.nj-cart__item-foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
	padding-top: 12px;
	border-top: 1px dashed var(--nj-line);
}
.nj-cart__item-subtotal {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 2px;
}
.nj-cart__item-subtotal-label {
	font-size: 11px;
	color: var(--nj-text-mute);
	letter-spacing: .04em;
	text-transform: uppercase;
}
.nj-cart__item-subtotal-value {
	font-family: var(--nj-font-display);
	font-size: 18px;
	font-weight: 800;
	color: var(--nj-red);
	letter-spacing: -.005em;
}
.nj-cart__item-subtotal-value .amount,
.nj-cart__item-subtotal-value bdi { color: var(--nj-red) !important; }

.nj-cart__actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
	margin-top: 18px;
	padding: 14px 16px;
	background: var(--nj-soft);
	border-radius: var(--nj-radius);
}
.nj-cart__action-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13.5px;
	font-weight: 600;
	color: var(--nj-text);
	transition: color .2s ease;
}
.nj-cart__action-link:hover { color: var(--nj-red); }
.nj-cart__action-link .nj-icon { font-size: 16px; color: var(--nj-red); }
.nj-cart__action-update {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 18px;
	background: var(--nj-white);
	border: 1.5px solid var(--nj-line);
	border-radius: 999px;
	font-size: 13px;
	font-weight: 700;
	color: var(--nj-black);
	cursor: pointer;
	transition: border-color .2s ease, color .2s ease, background .2s ease;
	font-family: inherit;
}
.nj-cart__action-update:hover {
	border-color: var(--nj-black);
	background: var(--nj-black);
	color: #fff;
}
.nj-cart__action-update .nj-icon { font-size: 14px; }

/* ---------- Summary sidebar ---------- */
.nj-cart__summary-col { min-width: 0; }
@media (min-width: 900px) {
	.nj-cart__summary-col {
		position: sticky;
		top: 90px;
		align-self: start;
	}
}

.nj-cart-summary {
	background: var(--nj-white);
	border: 1px solid var(--nj-line);
	border-radius: var(--nj-radius-lg);
	padding: 22px;
	box-shadow: var(--nj-shadow-sm);
}
.nj-cart-summary__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
	padding-bottom: 16px;
	margin-bottom: 16px;
	border-bottom: 1px solid var(--nj-line);
}
.nj-cart-summary__title {
	font-family: var(--nj-font-display);
	font-size: 20px;
	font-weight: 800;
	color: var(--nj-black);
	margin: 0;
	letter-spacing: -.005em;
}
.nj-cart-summary__count {
	font-size: 12px;
	color: var(--nj-text-mute);
	padding: 4px 10px;
	background: var(--nj-soft);
	border-radius: 999px;
	font-weight: 700;
}

.nj-cart-summary__rows {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 18px;
}
.nj-cart-summary__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	font-size: 14px;
}
.nj-cart-summary__label {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--nj-text-mute);
}
.nj-cart-summary__label small {
	font-size: 10.5px;
	display: inline;
}
.nj-cart-summary__value {
	font-weight: 700;
	color: var(--nj-black);
	text-align: right;
}
.nj-cart-summary__value .amount,
.nj-cart-summary__value bdi { color: var(--nj-black) !important; }
.nj-cart-summary__value--mute { color: var(--nj-text-mute); font-weight: 500; }

.nj-cart-summary__row--discount .nj-cart-summary__label { color: #0d7a4a; font-weight: 600; }
.nj-cart-summary__row--discount .nj-cart-summary__label .nj-icon {
	color: #fff;
	background: #0d7a4a;
	width: 18px; height: 18px;
	border-radius: 50%;
	padding: 3px;
	font-size: 12px;
}
.nj-cart-summary__row--discount .nj-cart-summary__value { color: #0d7a4a; }
.nj-cart-summary__row--discount .nj-cart-summary__value .amount,
.nj-cart-summary__row--discount .nj-cart-summary__value bdi { color: #0d7a4a !important; }

.nj-cart-summary__row--shipping { display: block; }
.nj-cart-summary__row--shipping .woocommerce-shipping-totals {
	display: block;
	font-size: 14px;
}
.nj-cart-summary__row--shipping .woocommerce-shipping-totals th { display: none; }
.nj-cart-summary__row--shipping ul#shipping_method {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.nj-cart-summary__row--shipping ul#shipping_method li {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 10px;
	background: var(--nj-soft);
	border-radius: 8px;
}
.nj-cart-summary__row--shipping ul#shipping_method li label { color: var(--nj-text); font-size: 13px; }

.nj-cart-summary__row--total {
	padding-top: 14px;
	margin-top: 6px;
	border-top: 1px solid var(--nj-line);
	font-size: 15px;
}
.nj-cart-summary__row--total .nj-cart-summary__label { color: var(--nj-black); font-weight: 700; font-size: 14.5px; }
.nj-cart-summary__value--total {
	font-family: var(--nj-font-display);
	font-size: 24px;
	font-weight: 900;
	color: var(--nj-red) !important;
	letter-spacing: -.01em;
}
.nj-cart-summary__value--total .amount,
.nj-cart-summary__value--total bdi { color: var(--nj-red) !important; }

.nj-cart-summary__cta {
	margin-bottom: 14px;
	width: 100%;
	max-width: 100%;
}
.nj-cart-summary__cta .checkout-button,
.nj-cart-summary__cta a.button,
.nj-cart-summary__cta .button {
	box-sizing: border-box !important;
	display: flex !important;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	margin: 0 !important;
	padding: 16px 18px !important;
	background: linear-gradient(135deg, var(--nj-red) 0%, #b81a20 100%) !important;
	color: #fff !important;
	font-weight: 800 !important;
	font-size: 15px !important;
	line-height: 1.2 !important;
	border-radius: 12px !important;
	border: 0 !important;
	text-decoration: none !important;
	box-shadow: 0 8px 20px -10px rgba(217, 32, 39, .5) !important;
	transition: transform .2s ease, box-shadow .2s ease, filter .2s ease !important;
	text-transform: none !important;
	letter-spacing: 0 !important;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.nj-cart-summary__cta .checkout-button:hover,
.nj-cart-summary__cta a.button:hover,
.nj-cart-summary__cta .button:hover {
	transform: translateY(-1px);
	filter: brightness(1.05);
	box-shadow: 0 12px 26px -10px rgba(217, 32, 39, .65) !important;
}
.nj-cart-summary__cta .checkout-button::after {
	content: " →";
	font-family: var(--nj-font-sans);
	font-weight: 800;
	margin-left: 4px;
	display: inline-block;
}

/* Coupon details */
.nj-cart-promo,
.nj-cart-ship {
	border: 1px solid var(--nj-line);
	border-radius: var(--nj-radius);
	background: var(--nj-soft);
	margin-bottom: 12px;
	overflow: hidden;
}
.nj-cart-promo__summary,
.nj-cart-ship__summary {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 14px;
	cursor: pointer;
	list-style: none;
	font-size: 13.5px;
	font-weight: 700;
	color: var(--nj-black);
	transition: background .2s ease;
}
.nj-cart-promo__summary::-webkit-details-marker,
.nj-cart-ship__summary::-webkit-details-marker { display: none; }
.nj-cart-promo__summary:hover,
.nj-cart-ship__summary:hover { background: rgba(255, 255, 255, .6); }
.nj-cart-promo__icon,
.nj-cart-ship__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px; height: 28px;
	border-radius: 8px;
	background: var(--nj-red);
	color: #fff;
}
.nj-cart-promo__icon .nj-icon,
.nj-cart-ship__icon .nj-icon { font-size: 14px; color: #fff; }
.nj-cart-ship__icon { background: #0d7a4a; }
.nj-cart-promo__title,
.nj-cart-ship__title { flex: 1; }
.nj-cart-promo__caret,
.nj-cart-ship__caret {
	color: var(--nj-text-mute);
	transition: transform .2s ease;
}
.nj-cart-promo[open] .nj-cart-promo__caret,
.nj-cart-ship[open] .nj-cart-ship__caret { transform: rotate(180deg); }

.nj-cart-promo__form {
	padding: 0 14px 14px;
}
.nj-cart-promo__input-row {
	display: flex;
	gap: 8px;
	background: var(--nj-white);
	border: 1px solid var(--nj-line);
	border-radius: 10px;
	padding: 4px;
}
.nj-cart-promo__input {
	flex: 1;
	border: 0;
	background: transparent;
	padding: 8px 10px;
	font-size: 13px;
	color: var(--nj-text);
	font-family: inherit;
	outline: none;
	text-transform: uppercase;
	letter-spacing: .04em;
	font-weight: 600;
	min-width: 0;
}
.nj-cart-promo__input::placeholder {
	text-transform: none;
	letter-spacing: 0;
	font-weight: 500;
	color: var(--nj-text-mute);
}
.nj-cart-promo__btn {
	padding: 8px 16px;
	background: var(--nj-black);
	color: #fff;
	border: 0;
	border-radius: 8px;
	font-weight: 700;
	font-size: 12.5px;
	cursor: pointer;
	transition: background .2s ease;
	font-family: inherit;
}
.nj-cart-promo__btn:hover { background: var(--nj-red); }

/* Shipping calculator */
.nj-cart-ship__body {
	padding: 0 14px 14px;
}
.nj-cart-ship__body .shipping-calculator-form {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 0;
	margin: 0;
}
.nj-cart-ship__body .form-row {
	margin: 0;
	padding: 0;
	width: 100%;
}
.nj-cart-ship__body .form-row label {
	display: block;
	font-size: 11.5px;
	font-weight: 700;
	color: var(--nj-text-mute);
	letter-spacing: .04em;
	text-transform: uppercase;
	margin-bottom: 4px;
}
.nj-cart-ship__body .form-row input,
.nj-cart-ship__body .form-row select,
.nj-cart-ship__body .select2-selection {
	width: 100% !important;
	padding: 10px 12px !important;
	border: 1px solid var(--nj-line) !important;
	border-radius: 10px !important;
	background: var(--nj-white) !important;
	font-size: 13.5px !important;
	color: var(--nj-text) !important;
	font-family: inherit !important;
	min-height: 42px;
	box-sizing: border-box;
}
.nj-cart-ship__body .select2-selection__rendered {
	line-height: 22px !important;
	padding: 0 !important;
	color: var(--nj-text) !important;
}
.nj-cart-ship__body .select2-selection__arrow { top: 50% !important; transform: translateY(-50%); right: 8px !important; }
.nj-cart-ship__body button[name="calc_shipping"] {
	margin-top: 6px;
	padding: 11px 18px;
	background: #0d7a4a;
	color: #fff;
	border: 0;
	border-radius: 10px;
	font-weight: 700;
	font-size: 13px;
	cursor: pointer;
	transition: background .2s ease, transform .15s ease;
	font-family: inherit;
	width: 100%;
}
.nj-cart-ship__body button[name="calc_shipping"]:hover {
	background: #0a5d39;
	transform: translateY(-1px);
}
.nj-cart-ship__body p { margin: 6px 0; font-size: 12.5px; color: var(--nj-text-mute); }

/* Trust badges below summary */
.nj-cart__trust {
	margin-top: 16px;
	padding: 14px 16px;
	background: var(--nj-soft);
	border: 1px solid var(--nj-line);
	border-radius: var(--nj-radius);
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.nj-cart__trust-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 12.5px;
	color: var(--nj-text);
	font-weight: 500;
}
.nj-cart__trust-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px; height: 26px;
	border-radius: 50%;
	background: var(--nj-white);
	color: var(--nj-red);
	border: 1px solid var(--nj-line);
	flex-shrink: 0;
}
.nj-cart__trust-icon .nj-icon { font-size: 13px; }

/* WC notice overrides (success / error after coupon / qty update) */
.nj-cart .woocommerce-notices-wrapper,
.nj-cart-section .woocommerce-notices-wrapper { margin-bottom: 16px; }
.nj-cart-section .woocommerce-message,
.nj-cart-section .woocommerce-info,
.nj-cart-section .woocommerce-error {
	padding: 14px 16px;
	border-radius: 12px;
	font-size: 13.5px;
	border-left: 4px solid;
	display: flex;
	align-items: center;
	gap: 10px;
}
.nj-cart-section .woocommerce-message { background: #e6f7ef; border-color: #0d7a4a; color: #0a5d39; }
.nj-cart-section .woocommerce-info { background: #eef3ff; border-color: var(--nj-blue); color: var(--nj-blue-dk); }
.nj-cart-section .woocommerce-error { background: #fff1f1; border-color: var(--nj-red); color: var(--nj-red-dk); list-style: none; }

/* ---------- Empty cart state ---------- */
.nj-cart-empty {
	padding: 8px 0 0;
}
.nj-cart-empty__box {
	max-width: 560px;
	margin: clamp(32px, 5vw, 60px) auto;
	padding: clamp(28px, 4vw, 48px);
	background: linear-gradient(180deg, #fff 0%, #fafbfc 100%);
	border: 1px solid var(--nj-line);
	border-radius: var(--nj-radius-lg);
	text-align: center;
	box-shadow: var(--nj-shadow-sm);
}
.nj-cart-empty__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 80px; height: 80px;
	border-radius: 50%;
	background: rgba(217, 32, 39, .08);
	color: var(--nj-red);
	margin: 0 auto 20px;
}
.nj-cart-empty__icon .nj-icon { font-size: 36px; }
.nj-cart-empty__title {
	font-family: var(--nj-font-display);
	font-size: clamp(22px, 3vw, 28px);
	font-weight: 800;
	color: var(--nj-black);
	margin: 0 0 10px;
	letter-spacing: -.01em;
}
.nj-cart-empty__desc {
	font-size: 14.5px;
	color: var(--nj-text-mute);
	line-height: 1.6;
	margin: 0 0 24px;
}
.nj-cart-empty .return-to-shop { display: none; }
.nj-cart-empty__actions {
	display: flex;
	gap: 10px;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 28px;
}
.nj-cart-empty__hint {
	padding-top: 22px;
	border-top: 1px dashed var(--nj-line);
}
.nj-cart-empty__hint-label {
	display: block;
	font-size: 11px;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--nj-text-mute);
	margin-bottom: 12px;
	font-weight: 700;
}
.nj-cart-empty__hint-tags {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
}
.nj-cart-empty__tag {
	padding: 7px 14px;
	background: var(--nj-soft);
	border: 1px solid var(--nj-line);
	border-radius: 999px;
	font-size: 12.5px;
	font-weight: 600;
	color: var(--nj-text);
	transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.nj-cart-empty__tag:hover {
	background: var(--nj-black);
	color: #fff;
	border-color: var(--nj-black);
}

/* Cross-sells in cart — match PDP related grid styling */
.nj-cart-section .cross-sells {
	margin-top: clamp(36px, 4vw, 56px);
}
.nj-cart-section .cross-sells > h2 {
	font-family: var(--nj-font-display);
	font-size: 22px;
	font-weight: 800;
	color: var(--nj-black);
	margin: 0 0 14px;
	letter-spacing: -.005em;
}


/* ---------- Auth (Login + Register) — marketplace split-card ---------- */
.nj-auth {
	max-width: 1080px;
	margin: 0 auto;
	padding: clamp(16px, 3vw, 32px) 0 8px;
}
.nj-auth__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 22px;
	align-items: stretch;
}
.nj-auth__grid--solo {
	grid-template-columns: minmax(0, 480px);
	justify-content: center;
}
@media (max-width: 860px) {
	.nj-auth__grid { grid-template-columns: 1fr; gap: 18px; }
}

.nj-auth__card {
	background: var(--nj-white);
	border: 1px solid var(--nj-line);
	border-radius: var(--nj-radius-lg);
	padding: clamp(22px, 3vw, 32px);
	box-shadow: 0 6px 24px -16px rgba(11, 11, 13, .15);
	display: flex;
	flex-direction: column;
	transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.nj-auth__card--register {
	background: linear-gradient(180deg, #fff 0%, #fff7f7 100%);
	border-color: rgba(217, 32, 39, .18);
}
.nj-auth.is-register-focus .nj-auth__card--register {
	border-color: var(--nj-red);
	box-shadow: 0 12px 32px -14px rgba(217, 32, 39, .35);
	transform: translateY(-2px);
}
.nj-auth.is-register-focus .nj-auth__card--login { opacity: .92; }

.nj-auth__head {
	margin-bottom: 22px;
	padding-bottom: 18px;
	border-bottom: 1px dashed var(--nj-line);
}
.nj-auth__icon {
	display: inline-flex;
	width: 48px; height: 48px;
	align-items: center;
	justify-content: center;
	border-radius: 14px;
	background: var(--nj-black);
	color: #fff;
	margin-bottom: 14px;
}
.nj-auth__icon--red {
	background: linear-gradient(135deg, var(--nj-red) 0%, #b81a20 100%);
	box-shadow: 0 8px 18px -8px rgba(217, 32, 39, .5);
}
.nj-auth__icon .nj-icon { font-size: 22px; }
.nj-auth__title {
	font-family: var(--nj-font-display);
	font-size: clamp(20px, 2.2vw, 24px);
	font-weight: 800;
	color: var(--nj-black);
	margin: 0 0 6px;
	letter-spacing: -.01em;
}
.nj-auth__sub {
	font-size: 13.5px;
	color: var(--nj-text-mute);
	margin: 0;
	line-height: 1.5;
}

.nj-auth__benefits {
	list-style: none;
	margin: 0 0 20px;
	padding: 16px;
	background: rgba(217, 32, 39, .05);
	border: 1px solid rgba(217, 32, 39, .12);
	border-radius: var(--nj-radius);
	display: flex;
	flex-direction: column;
	gap: 10px;
	font-size: 13px;
	color: var(--nj-text);
	font-weight: 600;
}
.nj-auth__benefits li {
	display: flex;
	align-items: center;
	gap: 10px;
}
.nj-auth__benefit-ic {
	display: inline-flex;
	width: 22px; height: 22px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--nj-red);
	color: #fff;
	flex-shrink: 0;
}
.nj-auth__benefit-ic .nj-icon { font-size: 11px; }

.nj-auth__form {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin: 0;
}
.nj-auth__form > .form-row,
.nj-auth__form > .nj-auth__field { margin: 0 !important; padding: 0 !important; }

.nj-auth__field {
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.nj-auth__label {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 8px;
	font-size: 12.5px;
	font-weight: 700;
	color: var(--nj-black);
	letter-spacing: .01em;
	margin: 0 !important;
}
.nj-auth__forgot {
	font-size: 12px;
	font-weight: 600;
	color: var(--nj-red);
	text-decoration: none;
}
.nj-auth__forgot:hover { text-decoration: underline; }

.nj-auth__input-wrap { position: relative; display: block; }
.nj-auth__input {
	box-sizing: border-box;
	width: 100%;
	padding: 13px 16px;
	background: var(--nj-soft);
	border: 1.5px solid transparent;
	border-radius: 10px;
	font-family: inherit;
	font-size: 14px;
	font-weight: 500;
	color: var(--nj-black);
	transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
	-webkit-appearance: none;
	appearance: none;
}
.nj-auth__input::placeholder { color: var(--nj-text-mute); font-weight: 400; }
.nj-auth__input:hover { background: #f1f1f3; }
.nj-auth__input:focus {
	outline: none;
	background: #fff;
	border-color: var(--nj-red);
	box-shadow: 0 0 0 3px rgba(217, 32, 39, .12);
}
.nj-auth__input-wrap .nj-auth__input { padding-right: 46px; }

/* Suppress browser-native password reveal/autofill icons so they don't overlap our custom eye */
.nj-auth__input::-ms-reveal,
.nj-auth__input::-ms-clear,
input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear { display: none !important; width: 0 !important; height: 0 !important; visibility: hidden !important; }

.nj-auth__input::-webkit-credentials-auto-fill-button,
.nj-auth__input::-webkit-strong-password-auto-fill-button,
.nj-auth__input::-webkit-contacts-auto-fill-button,
.nj-auth__input::-webkit-caps-lock-indicator,
.nj-auth__input::-webkit-textfield-decoration-container,
input[type="password"]::-webkit-credentials-auto-fill-button,
input[type="password"]::-webkit-strong-password-auto-fill-button {
	visibility: hidden !important;
	display: none !important;
	pointer-events: none !important;
	position: absolute !important;
	right: 0 !important;
	width: 0 !important;
	height: 0 !important;
}

.nj-auth__eye {
	position: absolute;
	right: 6px;
	top: 50%;
	transform: translateY(-50%);
	width: 36px;
	height: 36px;
	padding: 0;
	background: transparent;
	border: 0;
	border-radius: 8px;
	color: var(--nj-text-mute);
	cursor: pointer;
	transition: background .3s ease, color .3s ease;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.nj-auth__eye:hover { background: rgba(11, 11, 13, .06); color: var(--nj-black); }
.nj-auth__eye:focus-visible {
	outline: 2px solid var(--nj-red);
	outline-offset: 2px;
}

.nj-auth__eye .nj-icon {
	width: 18px;
	height: 18px;
	font-size: 0;
	transition: transform .4s cubic-bezier(.5, 1.4, .4, 1), color .3s ease;
}
.nj-auth__eye .nj-icon svg { width: 18px; height: 18px; display: block; }

/* Press feedback */
.nj-auth__eye:active .nj-icon { transform: scale(.82); }

/* Password VISIBLE state — pure color + background change, NO overlay on icon */
.nj-auth__eye.is-visible {
	color: var(--nj-red);
	background: rgba(217, 32, 39, .1);
}
.nj-auth__eye.is-visible:hover {
	color: var(--nj-red);
	background: rgba(217, 32, 39, .18);
}
.nj-auth__eye.is-visible .nj-icon {
	transform: rotateY(180deg);
}
.nj-auth__eye.is-visible:active .nj-icon {
	transform: rotateY(180deg) scale(.82);
}
.nj-auth__hint {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 11.5px;
	color: var(--nj-text-mute);
	margin-top: 4px;
	line-height: 1.4;
}
.nj-auth__hint::before {
	content: "";
	width: 4px;
	height: 4px;
	background: var(--nj-text-mute);
	border-radius: 50%;
	flex-shrink: 0;
}

/* ---------- Password strength meter (WC) — branded pill + hint ---------- */
.nj-auth__field .woocommerce-password-strength {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 6px;
	padding: 7px 12px 7px 10px;
	font-size: 12px;
	font-weight: 700;
	border-radius: 999px;
	border: 1px solid transparent;
	background: var(--nj-soft);
	color: var(--nj-text);
	letter-spacing: .01em;
	font-family: inherit;
	transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.nj-auth__field .woocommerce-password-strength::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: currentColor;
	box-shadow: 0 0 0 3px rgba(255, 255, 255, .6);
	flex-shrink: 0;
}
.nj-auth__field .woocommerce-password-strength.short {
	background: rgba(217, 32, 39, .1);
	color: #b81a20;
	border-color: rgba(217, 32, 39, .25);
}
.nj-auth__field .woocommerce-password-strength.bad {
	background: rgba(241, 119, 35, .12);
	color: #c45e10;
	border-color: rgba(241, 119, 35, .3);
}
.nj-auth__field .woocommerce-password-strength.good {
	background: rgba(245, 188, 0, .15);
	color: #8a6a00;
	border-color: rgba(245, 188, 0, .35);
}
.nj-auth__field .woocommerce-password-strength.strong {
	background: rgba(34, 139, 64, .12);
	color: #1e7c3a;
	border-color: rgba(34, 139, 64, .3);
}

/* WP password hint paragraph — render under the strength pill */
.nj-auth__field .woocommerce-password-hint,
.nj-auth__field .password-input-hint,
.nj-auth__field .description {
	display: block;
	margin-top: 6px;
	padding: 10px 12px;
	font-size: 11.5px;
	font-weight: 500;
	line-height: 1.5;
	color: var(--nj-text-mute);
	background: var(--nj-soft);
	border-left: 3px solid var(--nj-line);
	border-radius: 0 8px 8px 0;
	font-family: inherit;
	font-style: normal;
}
.nj-auth__info {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 14px;
	background: rgba(11, 132, 232, .07);
	border: 1px solid rgba(11, 132, 232, .2);
	border-radius: 10px;
	font-size: 13px;
	color: var(--nj-text);
	margin: 0;
}
.nj-auth__info .nj-icon { color: #0b84e8; font-size: 16px; flex-shrink: 0; }

.nj-auth__remember { margin: 2px 0 4px !important; }
.nj-auth__check {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	font-size: 13px;
	color: var(--nj-text);
	font-weight: 500;
}
.nj-auth__check input[type="checkbox"] {
	position: absolute;
	opacity: 0;
	width: 0; height: 0;
}
.nj-auth__check-box {
	display: inline-flex;
	width: 20px; height: 20px;
	align-items: center;
	justify-content: center;
	border: 1.5px solid var(--nj-line);
	border-radius: 6px;
	background: #fff;
	color: transparent;
	transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.nj-auth__check-box .nj-icon { font-size: 13px; }
.nj-auth__check input:checked + .nj-auth__check-box {
	background: var(--nj-red);
	border-color: var(--nj-red);
	color: #fff;
}
.nj-auth__check input:focus-visible + .nj-auth__check-box {
	box-shadow: 0 0 0 3px rgba(217, 32, 39, .18);
}

.nj-auth__submit {
	box-sizing: border-box;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	padding: 14px 20px;
	margin-top: 6px !important;
	background: linear-gradient(135deg, var(--nj-red) 0%, #b81a20 100%);
	color: #fff !important;
	font-family: inherit;
	font-weight: 800;
	font-size: 14.5px;
	line-height: 1.2;
	border: 0;
	border-radius: 12px;
	cursor: pointer;
	text-transform: none;
	letter-spacing: 0;
	transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
	box-shadow: 0 8px 20px -10px rgba(217, 32, 39, .5);
}
.nj-auth__submit:hover {
	transform: translateY(-1px);
	filter: brightness(1.05);
	box-shadow: 0 12px 26px -10px rgba(217, 32, 39, .65);
}
.nj-auth__submit .nj-icon { font-size: 16px; }

.nj-auth__switch {
	margin: 18px 0 0;
	text-align: center;
	font-size: 13px;
	color: var(--nj-text-mute);
}
.nj-auth__switch-link {
	color: var(--nj-red);
	font-weight: 700;
	margin-left: 4px;
	text-decoration: none;
}
.nj-auth__switch-link:hover { text-decoration: underline; }

.nj-auth__terms {
	margin: 16px 0 0;
	font-size: 11.5px;
	color: var(--nj-text-mute);
	line-height: 1.5;
	text-align: center;
}
.nj-auth__terms a { color: var(--nj-black); font-weight: 600; }
.nj-auth__terms a:hover { color: var(--nj-red); }

/* Trust strip below cards */
.nj-auth__trust {
	margin-top: 24px;
	padding: 18px 22px;
	background: var(--nj-soft);
	border: 1px solid var(--nj-line);
	border-radius: var(--nj-radius);
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
	align-items: center;
}
@media (max-width: 720px) {
	.nj-auth__trust { grid-template-columns: 1fr; gap: 14px; padding: 16px; }
}
.nj-auth__trust-item {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 13px;
}
.nj-auth__trust-ic {
	display: inline-flex;
	width: 38px; height: 38px;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	background: #fff;
	color: var(--nj-red);
	border: 1px solid var(--nj-line);
	flex-shrink: 0;
}
.nj-auth__trust-ic .nj-icon { font-size: 18px; }
.nj-auth__trust-item strong {
	display: block;
	font-size: 13px;
	font-weight: 700;
	color: var(--nj-black);
	line-height: 1.2;
}
.nj-auth__trust-item small {
	display: block;
	font-size: 11.5px;
	color: var(--nj-text-mute);
	margin-top: 2px;
}

/* WC notices inside auth */
.nj-wc-page .woocommerce-notices-wrapper { margin-bottom: 18px; }
.nj-wc-page .woocommerce-error,
.nj-wc-page .woocommerce-info,
.nj-wc-page .woocommerce-message {
	max-width: 1080px;
	margin: 0 auto 14px;
	border-radius: var(--nj-radius);
	border: 1px solid;
	padding: 14px 18px;
	font-size: 13.5px;
	background: #fff;
	list-style: none;
}
.nj-wc-page .woocommerce-error { border-color: rgba(217, 32, 39, .3); background: rgba(217, 32, 39, .06); color: #7a1216; }
.nj-wc-page .woocommerce-info { border-color: rgba(11, 132, 232, .3); background: rgba(11, 132, 232, .06); color: #0b3a6a; }
.nj-wc-page .woocommerce-message { border-color: rgba(34, 139, 34, .3); background: rgba(34, 139, 34, .06); color: #1b4d1b; }

/* Cart / Checkout / Account page styling */
.nj-wc-page .woocommerce table.shop_table {
	border-collapse: collapse;
	border-radius: var(--nj-radius);
	overflow: hidden;
	border: 1px solid var(--nj-line);
}
.nj-wc-page .woocommerce table.shop_table th,
.nj-wc-page .woocommerce table.shop_table td {
	padding: 14px;
	border-color: var(--nj-line);
}
.nj-wc-page .woocommerce button.button,
.nj-wc-page .woocommerce input.button,
.nj-wc-page .woocommerce a.button {
	background: var(--nj-black);
	color: #fff;
	border-radius: 999px;
	padding: 12px 22px;
	font-weight: 700;
	border: 0;
}
.nj-wc-page .woocommerce button.button:hover,
.nj-wc-page .woocommerce input.button:hover,
.nj-wc-page .woocommerce a.button:hover {
	background: var(--nj-red);
}
.nj-wc-page .woocommerce form .form-row input,
.nj-wc-page .woocommerce form .form-row textarea,
.nj-wc-page .woocommerce form .form-row select {
	padding: 12px 14px;
	border-radius: 10px;
	border: 1px solid var(--nj-line);
}

