/*
 * NaamHuren.nl front-end design system
 * Scope: visual presentation only.
 */

@font-face {
	font-family: "Plus Jakarta Sans";
	font-style: normal;
	font-weight: 400 800;
	font-display: swap;
	src: url("../fonts/plus-jakarta-sans-latin-ext.woff2") format("woff2");
	unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
	font-family: "Plus Jakarta Sans";
	font-style: normal;
	font-weight: 400 800;
	font-display: swap;
	src: url("../fonts/plus-jakarta-sans-latin.woff2") format("woff2");
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
	--nh-primary: #0f9488;
	--nh-primary-dark: #0b746c;
	--nh-navy: #102a43;
	--nh-body: #52657a;
	--nh-surface: #f5fafa;
	--nh-border: #dce8e8;
	--nh-accent: #f2b84b;
	--nh-white: #fff;
	--nh-card-radius: 18px;
	--nh-button-radius: 10px;
	--nh-font: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--nh-shadow-xs: 0 1px 2px rgba(16, 42, 67, 0.04);
	--nh-shadow-sm: 0 8px 30px rgba(16, 42, 67, 0.07);
	--nh-shadow-md: 0 20px 55px rgba(16, 42, 67, 0.1);
	--nh-container: min(1180px, calc(100vw - 40px));
	--nh-transition: 180ms ease;
}

/* Reset and global type. */

body.nh-brand-active {
	color: var(--nh-body);
	font-family: var(--nh-font);
	font-size: 16px;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

.nh-brand-active *,
.nh-brand-active *::before,
.nh-brand-active *::after {
	box-sizing: border-box;
}

.nh-brand-active ::selection {
	color: var(--nh-white);
	background: var(--nh-primary);
}

.nh-brand-active :where(h1, h2, h3, h4, h5, h6) {
	color: var(--nh-navy);
	font-family: var(--nh-font);
	font-weight: 750;
	line-height: 1.18;
	letter-spacing: -0.035em;
}

.nh-brand-active h1 {
	font-size: clamp(2.25rem, 5vw, 4.5rem);
}

.nh-brand-active h2 {
	font-size: clamp(1.75rem, 3.4vw, 3rem);
}

.nh-brand-active h3 {
	font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.nh-brand-active :where(p, li, input, textarea, select, button) {
	font-family: var(--nh-font);
}

.nh-brand-active a {
	color: var(--nh-primary-dark);
	text-decoration-thickness: 1.5px;
	text-underline-offset: 3px;
	transition: color var(--nh-transition), background var(--nh-transition), border-color var(--nh-transition), transform var(--nh-transition), box-shadow var(--nh-transition);
}

.nh-brand-active a:hover {
	color: var(--nh-primary);
}

.nh-brand-active :where(a, button, input, select, textarea):focus-visible {
	outline: 3px solid color-mix(in srgb, var(--nh-primary) 35%, transparent);
	outline-offset: 3px;
}

.nh-shell-container {
	width: var(--nh-container);
	margin-inline: auto;
}

.nh-brand-active #main-container {
	background: var(--nh-white);
}

.nh-brand-active .entry-content > :where(.alignwide) {
	max-width: 1180px;
}

/* Buttons. */

.nh-brand-active :where(
	.wp-element-button,
	.wp-block-button__link,
	.woocommerce a.button,
	.woocommerce button.button,
	.woocommerce input.button,
	.woocommerce #respond input#submit,
	button[type="submit"],
	input[type="submit"],
	.ct-button
) {
	display: inline-flex;
	min-height: 48px;
	align-items: center;
	justify-content: center;
	padding: 0.78rem 1.3rem;
	border: 1px solid var(--nh-primary);
	border-radius: var(--nh-button-radius);
	color: var(--nh-white);
	background: var(--nh-primary);
	box-shadow: 0 8px 20px rgba(15, 148, 136, 0.16);
	font-size: 0.92rem;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
	letter-spacing: -0.01em;
	cursor: pointer;
	transition: color var(--nh-transition), background var(--nh-transition), border-color var(--nh-transition), transform var(--nh-transition), box-shadow var(--nh-transition);
}

.nh-brand-active :where(
	.wp-element-button,
	.wp-block-button__link,
	.woocommerce a.button,
	.woocommerce button.button,
	.woocommerce input.button,
	.woocommerce #respond input#submit,
	button[type="submit"],
	input[type="submit"],
	.ct-button
):hover {
	color: var(--nh-white);
	background: var(--nh-primary-dark);
	border-color: var(--nh-primary-dark);
	box-shadow: 0 11px 24px rgba(15, 148, 136, 0.23);
	transform: translateY(-1px);
}

.nh-button {
	display: inline-flex;
	min-height: 46px;
	align-items: center;
	justify-content: center;
	padding: 0.72rem 1.22rem;
	border: 1px solid var(--nh-primary);
	border-radius: var(--nh-button-radius);
	color: var(--nh-white) !important;
	background: var(--nh-primary);
	font-size: 0.88rem;
	font-weight: 750;
	line-height: 1.2;
	text-decoration: none !important;
	box-shadow: 0 8px 20px rgba(15, 148, 136, 0.15);
}

.nh-button:hover {
	background: var(--nh-primary-dark);
	border-color: var(--nh-primary-dark);
	box-shadow: 0 11px 24px rgba(15, 148, 136, 0.22);
	transform: translateY(-1px);
}

.nh-button--full {
	width: 100%;
}

.nh-brand-active .is-style-nh-outline .wp-block-button__link {
	color: var(--nh-navy);
	background: transparent;
	border-color: var(--nh-border);
	box-shadow: none;
}

.nh-brand-active .is-style-nh-outline .wp-block-button__link:hover {
	color: var(--nh-primary-dark);
	background: var(--nh-surface);
	border-color: var(--nh-primary);
}

.nh-brand-active .is-style-nh-light .wp-block-button__link {
	color: var(--nh-navy);
	background: var(--nh-white);
	border-color: var(--nh-white);
	box-shadow: var(--nh-shadow-sm);
}

/* Forms. */

.nh-brand-active :where(
	input[type="text"],
	input[type="email"],
	input[type="tel"],
	input[type="url"],
	input[type="password"],
	input[type="search"],
	input[type="number"],
	input[type="date"],
	select,
	textarea,
	.select2-container .select2-selection
) {
	min-height: 50px;
	padding: 0.72rem 0.95rem;
	border: 1px solid var(--nh-border);
	border-radius: 10px;
	color: var(--nh-navy);
	background: var(--nh-white);
	box-shadow: 0 1px 2px rgba(16, 42, 67, 0.02);
	font-size: 0.95rem;
	transition: border-color var(--nh-transition), box-shadow var(--nh-transition);
}

.nh-brand-active textarea {
	min-height: 130px;
	resize: vertical;
}

.nh-brand-active :where(
	input[type="text"],
	input[type="email"],
	input[type="tel"],
	input[type="url"],
	input[type="password"],
	input[type="search"],
	input[type="number"],
	input[type="date"],
	select,
	textarea,
	.select2-container .select2-selection
):focus {
	border-color: var(--nh-primary);
	outline: none;
	box-shadow: 0 0 0 4px color-mix(in srgb, var(--nh-primary) 12%, transparent);
}

.nh-brand-active :where(label, legend) {
	color: var(--nh-navy);
	font-size: 0.9rem;
	font-weight: 650;
}

.nh-brand-active ::placeholder {
	color: #8b9cac;
	opacity: 1;
}

.nh-brand-active :where(input[type="checkbox"], input[type="radio"]) {
	accent-color: var(--nh-primary);
}

/* Logo. */

.nh-brand-logo-link {
	display: inline-flex;
	align-items: center;
	text-decoration: none !important;
}

.nh-brand-logo {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.nh-brand-logo__mark {
	display: block;
	width: 38px;
	height: 42px;
	flex: 0 0 auto;
}

.nh-brand-logo__word {
	color: var(--nh-primary);
	font-size: 1.35rem;
	font-weight: 760;
	line-height: 1;
	letter-spacing: -0.055em;
	white-space: nowrap;
}

.nh-brand-logo__word b {
	color: var(--nh-navy);
	font-weight: 760;
}

.nh-brand-logo__word small {
	margin-left: 1px;
	color: var(--nh-body);
	font-size: 0.62em;
	font-weight: 650;
	letter-spacing: -0.025em;
}

.nh-brand-logo--light .nh-brand-logo__word {
	color: #6fe0d5;
}

.nh-brand-logo--light .nh-brand-logo__word b {
	color: var(--nh-white);
}

.nh-brand-logo--light .nh-brand-logo__word small {
	color: #bbd0dd;
}

.nh-brand-logo__custom {
	display: block;
	width: auto;
	max-width: 240px;
	height: 48px;
	object-fit: contain;
}

/* Full brand header. */

body.nh-custom-shell :where(header#header, footer.ct-footer, footer#footer) {
	display: none !important;
}

.nh-site-shell {
	display: contents;
}

.nh-announcement {
	color: #dcedf2;
	background: var(--nh-navy);
	font-size: 0.78rem;
	font-weight: 550;
	line-height: 1.4;
}

.nh-announcement .nh-shell-container {
	display: flex;
	min-height: 35px;
	align-items: center;
	justify-content: center;
	gap: 9px;
	text-align: center;
}

.nh-announcement__dot {
	width: 7px;
	height: 7px;
	border-radius: 999px;
	background: #5bd6ca;
	box-shadow: 0 0 0 4px rgba(91, 214, 202, 0.12);
}

.nh-announcement strong {
	color: var(--nh-white);
	font-weight: 750;
}

.nh-site-header {
	position: sticky;
	z-index: 999;
	top: 0;
	width: 100%;
	border-bottom: 1px solid rgba(220, 232, 232, 0.88);
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 1px 0 rgba(16, 42, 67, 0.02);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	transition: box-shadow var(--nh-transition), background var(--nh-transition);
}

.nh-site-header.is-scrolled {
	box-shadow: 0 12px 35px rgba(16, 42, 67, 0.08);
}

.admin-bar .nh-site-header {
	top: 32px;
}

.nh-site-header__inner {
	display: grid;
	min-height: 76px;
	grid-template-columns: auto minmax(300px, 1fr) auto;
	align-items: center;
	gap: clamp(25px, 4vw, 64px);
}

.nh-site-header__brand {
	display: flex;
}

.nh-desktop-nav {
	display: flex;
	align-items: center;
	justify-content: center;
}

.nh-primary-menu,
.nh-mobile-menu {
	padding: 0;
	margin: 0;
	list-style: none;
}

.nh-primary-menu {
	display: flex;
	align-items: center;
	gap: clamp(18px, 2.3vw, 34px);
}

.nh-primary-menu > li {
	position: relative;
	margin: 0;
}

.nh-primary-menu > li > a {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 76px;
	color: var(--nh-navy);
	font-size: 0.86rem;
	font-weight: 650;
	text-decoration: none;
	white-space: nowrap;
}

.nh-primary-menu > li > a::after {
	position: absolute;
	right: 0;
	bottom: 16px;
	left: 0;
	height: 2px;
	border-radius: 2px;
	background: var(--nh-primary);
	content: "";
	transform: scaleX(0);
	transform-origin: center;
	transition: transform var(--nh-transition);
}

.nh-primary-menu > li:hover > a,
.nh-primary-menu > .current-menu-item > a,
.nh-primary-menu > .current-menu-ancestor > a {
	color: var(--nh-primary-dark);
}

.nh-primary-menu > li:hover > a::after,
.nh-primary-menu > .current-menu-item > a::after,
.nh-primary-menu > .current-menu-ancestor > a::after {
	transform: scaleX(1);
}

.nh-primary-menu .sub-menu {
	position: absolute;
	z-index: 20;
	top: calc(100% - 10px);
	left: -18px;
	width: 230px;
	padding: 10px;
	margin: 0;
	border: 1px solid var(--nh-border);
	border-radius: 14px;
	background: var(--nh-white);
	box-shadow: var(--nh-shadow-md);
	list-style: none;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity var(--nh-transition), visibility var(--nh-transition), transform var(--nh-transition);
}

.nh-primary-menu li:hover > .sub-menu,
.nh-primary-menu li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.nh-primary-menu .sub-menu a {
	display: block;
	padding: 10px 11px;
	border-radius: 8px;
	color: var(--nh-navy);
	font-size: 0.84rem;
	font-weight: 600;
	text-decoration: none;
}

.nh-primary-menu .sub-menu a:hover {
	color: var(--nh-primary-dark);
	background: var(--nh-surface);
}

.nh-header-actions {
	display: flex;
	align-items: center;
	gap: 9px;
}

.nh-icon-link {
	position: relative;
	display: inline-flex;
	height: 42px;
	align-items: center;
	gap: 7px;
	padding-inline: 8px;
	color: var(--nh-navy) !important;
	font-size: 0.78rem;
	font-weight: 650;
	text-decoration: none !important;
}

.nh-icon-link svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.nh-icon-link:hover {
	color: var(--nh-primary) !important;
}

.nh-cart-count {
	display: inline-flex;
	min-width: 19px;
	height: 19px;
	align-items: center;
	justify-content: center;
	padding-inline: 4px;
	border: 2px solid var(--nh-white);
	border-radius: 999px;
	color: var(--nh-white);
	background: var(--nh-primary);
	font-size: 0.65rem;
	font-weight: 800;
	line-height: 1;
}

.nh-cart-link .nh-cart-count {
	position: absolute;
	top: 1px;
	right: 0;
}

.nh-button--header {
	margin-left: 2px;
}

.nh-menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
	padding: 0;
	border: 1px solid var(--nh-border);
	border-radius: 10px;
	background: var(--nh-white);
	box-shadow: none;
	cursor: pointer;
}

.nh-menu-toggle:hover {
	background: var(--nh-surface);
	border-color: var(--nh-primary);
}

.nh-menu-toggle span:not(.screen-reader-text) {
	display: block;
	width: 19px;
	height: 2px;
	border-radius: 2px;
	background: var(--nh-navy);
	transition: transform var(--nh-transition), opacity var(--nh-transition);
}

.nh-menu-toggle[aria-expanded="true"] span:nth-last-child(3) {
	transform: translateY(7px) rotate(45deg);
}

.nh-menu-toggle[aria-expanded="true"] span:nth-last-child(2) {
	opacity: 0;
}

.nh-menu-toggle[aria-expanded="true"] span:last-child {
	transform: translateY(-7px) rotate(-45deg);
}

.nh-mobile-panel {
	position: absolute;
	z-index: 10;
	top: 100%;
	right: 0;
	left: 0;
	overflow: auto;
	max-height: calc(100vh - 80px);
	border-top: 1px solid var(--nh-border);
	background: var(--nh-white);
	box-shadow: var(--nh-shadow-md);
}

.nh-mobile-panel[hidden] {
	display: none;
}

.nh-mobile-panel > .nh-shell-container {
	padding-block: 15px 22px;
}

.nh-mobile-menu li {
	margin: 0;
}

.nh-mobile-menu a {
	display: flex;
	min-height: 48px;
	align-items: center;
	padding: 8px 2px;
	border-bottom: 1px solid var(--nh-border);
	color: var(--nh-navy);
	font-size: 0.96rem;
	font-weight: 650;
	text-decoration: none;
}

.nh-mobile-menu .sub-menu {
	padding: 0 0 4px 17px;
	margin: 0;
	list-style: none;
}

.nh-mobile-menu .sub-menu a {
	min-height: 40px;
	color: var(--nh-body);
	font-size: 0.88rem;
}

.nh-mobile-panel__actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
	margin: 16px 0 12px;
}

.nh-mobile-panel__actions a {
	display: flex;
	min-height: 44px;
	align-items: center;
	justify-content: center;
	gap: 7px;
	border: 1px solid var(--nh-border);
	border-radius: 9px;
	color: var(--nh-navy);
	font-size: 0.82rem;
	font-weight: 650;
	text-decoration: none;
}

.nh-mobile-panel__actions .nh-cart-count {
	position: static;
	border: 0;
}

body.nh-menu-open {
	overflow: hidden;
}

/* Page and Gutenberg components. */

.nh-brand-active .entry-content .is-style-nh-card,
.nh-brand-active .nh-card {
	padding: clamp(22px, 3vw, 36px);
	border: 1px solid var(--nh-border);
	border-radius: var(--nh-card-radius);
	background: var(--nh-white);
	box-shadow: var(--nh-shadow-sm);
}

.nh-brand-active .entry-content .is-style-nh-soft-panel,
.nh-brand-active .nh-soft-panel {
	padding: clamp(28px, 5vw, 64px);
	border: 1px solid color-mix(in srgb, var(--nh-border) 70%, transparent);
	border-radius: calc(var(--nh-card-radius) + 6px);
	background: var(--nh-surface);
}

.nh-brand-active .entry-content .is-style-nh-navy-panel,
.nh-brand-active .nh-navy-panel {
	padding: clamp(28px, 5vw, 64px);
	border-radius: calc(var(--nh-card-radius) + 6px);
	color: #d9e8ee;
	background: var(--nh-navy);
}

.nh-brand-active .is-style-nh-navy-panel :where(h1, h2, h3, h4, h5, h6),
.nh-brand-active .nh-navy-panel :where(h1, h2, h3, h4, h5, h6) {
	color: var(--nh-white);
}

.nh-brand-active .is-style-nh-display {
	max-width: 900px;
	font-size: clamp(2.5rem, 6vw, 5.4rem);
	line-height: 1.04;
	letter-spacing: -0.055em;
}

.nh-brand-active .wp-block-separator {
	border-color: var(--nh-border);
	opacity: 1;
}

.nh-brand-active .wp-block-quote {
	padding: 5px 0 5px 24px;
	border-left: 3px solid var(--nh-primary);
	color: var(--nh-navy);
	font-size: 1.1rem;
}

.nh-badge,
.nh-brand-active .onsale,
.nh-brand-active .wc-block-components-product-badge {
	display: inline-flex;
	min-height: 26px;
	align-items: center;
	padding: 4px 9px;
	border: 0;
	border-radius: 999px;
	color: var(--nh-primary-dark);
	background: color-mix(in srgb, var(--nh-primary) 11%, var(--nh-white));
	font-size: 0.68rem;
	font-style: normal;
	font-weight: 750;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: 0.055em;
}

.nh-badge--navy {
	color: var(--nh-white);
	background: var(--nh-navy);
}

.nh-badge--gold {
	color: #6d4c0d;
	background: #fff4d8;
}

.nh-badge--soft {
	color: var(--nh-body);
	background: var(--nh-surface);
}

/* Blocksy alignment and defaults. */

.nh-brand-active {
	--theme-font-family: var(--nh-font);
	--theme-text-color: var(--nh-body);
	--theme-link-initial-color: var(--nh-primary-dark);
	--theme-link-hover-color: var(--nh-primary);
	--theme-button-background-initial-color: var(--nh-primary);
	--theme-button-background-hover-color: var(--nh-primary-dark);
	--theme-button-border-radius: var(--nh-button-radius);
	--theme-form-field-border-initial-color: var(--nh-border);
	--theme-form-field-border-focus-color: var(--nh-primary);
	--theme-border-color: var(--nh-border);
	--theme-selection-background-color: var(--nh-primary);
}

.nh-brand-active .hero-section {
	background: var(--nh-surface);
}

.nh-brand-active .hero-section .page-title {
	color: var(--nh-navy);
}

.nh-brand-active .ct-breadcrumbs {
	color: var(--nh-body);
	font-size: 0.76rem;
}

.nh-brand-active .ct-breadcrumbs a {
	color: var(--nh-primary-dark);
}

/* WooCommerce catalog. */

.nh-brand-active .woocommerce .woocommerce-result-count,
.nh-brand-active .woocommerce .woocommerce-ordering {
	margin-bottom: 28px;
}

.nh-brand-active .woocommerce .woocommerce-ordering select {
	min-width: 220px;
}

.nh-brand-active :where(.woocommerce ul.products, .wc-block-product-template) {
	gap: clamp(16px, 2.5vw, 28px);
}

.nh-brand-active :where(.woocommerce ul.products li.product, .wc-block-product) {
	position: relative;
	overflow: hidden;
	padding: 0 0 20px;
	border: 1px solid var(--nh-border);
	border-radius: var(--nh-card-radius);
	background: var(--nh-white);
	box-shadow: var(--nh-shadow-xs);
	transition: transform var(--nh-transition), box-shadow var(--nh-transition), border-color var(--nh-transition);
}

.nh-brand-active :where(.woocommerce ul.products li.product, .wc-block-product):hover {
	border-color: color-mix(in srgb, var(--nh-primary) 48%, var(--nh-border));
	box-shadow: var(--nh-shadow-sm);
	transform: translateY(-3px);
}

.nh-brand-active .woocommerce ul.products li.product .woocommerce-loop-product__link {
	text-decoration: none;
}

.nh-brand-active :where(.woocommerce ul.products li.product img, .wc-block-components-product-image img) {
	width: 100%;
	aspect-ratio: 16 / 10;
	margin: 0 0 18px;
	background: var(--nh-surface);
	object-fit: cover;
}

.nh-brand-active .woocommerce ul.products li.product .onsale {
	top: 12px;
	right: 12px;
	left: auto;
	margin: 0;
}

.nh-brand-active :where(
	.woocommerce ul.products li.product .woocommerce-loop-product__title,
	.wc-block-components-product-name,
	.wc-block-grid__product-title
) {
	padding: 0 20px;
	margin: 0 0 9px;
	color: var(--nh-navy);
	font-size: clamp(1.04rem, 2vw, 1.28rem);
	font-weight: 740;
	line-height: 1.3;
	letter-spacing: -0.03em;
}

.nh-brand-active :where(
	.woocommerce ul.products li.product .price,
	.wc-block-components-product-price,
	.wc-block-grid__product-price
) {
	display: block;
	padding: 0 20px;
	margin: 0 0 16px;
	color: var(--nh-primary-dark);
	font-size: 1rem;
	font-weight: 750;
}

.nh-brand-active .woocommerce ul.products li.product .price del {
	color: #8b9cac;
	font-size: 0.82rem;
	opacity: 1;
}

.nh-brand-active .woocommerce ul.products li.product .price ins {
	text-decoration: none;
}

.nh-brand-active .woocommerce ul.products li.product .button {
	width: calc(100% - 40px);
	margin: 0 20px;
}

.nh-brand-active .star-rating {
	color: var(--nh-accent);
}

/* WooCommerce single product. */

.nh-brand-active .single-product div.product {
	display: grid;
	grid-template-columns: minmax(0, 1.03fr) minmax(350px, 0.97fr);
	gap: clamp(30px, 5vw, 72px);
	align-items: start;
}

.nh-brand-active .single-product div.product .woocommerce-product-gallery,
.nh-brand-active .single-product div.product .summary {
	width: auto;
	float: none;
	margin: 0;
}

.nh-brand-active .single-product div.product .woocommerce-product-gallery {
	overflow: hidden;
	border: 1px solid var(--nh-border);
	border-radius: calc(var(--nh-card-radius) + 4px);
	background: var(--nh-surface);
}

.nh-brand-active .single-product div.product .woocommerce-product-gallery img {
	display: block;
}

.nh-brand-active .single-product div.product .summary {
	padding: clamp(24px, 3vw, 38px);
	border: 1px solid var(--nh-border);
	border-radius: calc(var(--nh-card-radius) + 4px);
	background: var(--nh-white);
	box-shadow: var(--nh-shadow-sm);
}

.nh-brand-active .single-product .product_title {
	margin: 0 0 13px;
	color: var(--nh-navy);
	font-size: clamp(2rem, 4vw, 3.4rem);
	overflow-wrap: anywhere;
}

.nh-brand-active .single-product div.product p.price,
.nh-brand-active .single-product div.product span.price {
	margin: 0 0 20px;
	color: var(--nh-primary-dark);
	font-size: clamp(1.35rem, 3vw, 1.8rem);
	font-weight: 770;
}

.nh-brand-active .single-product .woocommerce-product-details__short-description {
	padding-bottom: 10px;
	color: var(--nh-body);
	font-size: 1rem;
}

.nh-brand-active .single-product form.cart {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding-top: 18px;
	border-top: 1px solid var(--nh-border);
}

.nh-brand-active .single-product form.cart .quantity {
	margin: 0;
}

.nh-brand-active .single-product .quantity input.qty {
	min-height: 48px;
	border: 1px solid var(--nh-border);
	border-radius: var(--nh-button-radius);
}

.nh-brand-active .single-product form.cart .single_add_to_cart_button {
	flex: 1;
}

.nh-brand-active .single-product .product_meta {
	display: grid;
	gap: 4px;
	padding-top: 18px;
	border-top: 1px solid var(--nh-border);
	color: var(--nh-body);
	font-size: 0.8rem;
}

.nh-brand-active .single-product .woocommerce-tabs,
.nh-brand-active .single-product .related,
.nh-brand-active .single-product .upsells {
	grid-column: 1 / -1;
	width: 100%;
}

.nh-brand-active .woocommerce div.product .woocommerce-tabs ul.tabs {
	display: flex;
	gap: 8px;
	padding: 0;
	margin: 55px 0 0;
	border-bottom: 1px solid var(--nh-border);
}

.nh-brand-active .woocommerce div.product .woocommerce-tabs ul.tabs::before,
.nh-brand-active .woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.nh-brand-active .woocommerce div.product .woocommerce-tabs ul.tabs li::after {
	display: none;
}

.nh-brand-active .woocommerce div.product .woocommerce-tabs ul.tabs li {
	padding: 0;
	margin: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
}

.nh-brand-active .woocommerce div.product .woocommerce-tabs ul.tabs li a {
	display: block;
	padding: 14px 16px;
	border-bottom: 2px solid transparent;
	color: var(--nh-body);
	font-size: 0.84rem;
	font-weight: 700;
	text-decoration: none;
}

.nh-brand-active .woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
	color: var(--nh-primary-dark);
	border-color: var(--nh-primary);
}

.nh-brand-active .woocommerce div.product .woocommerce-tabs .panel {
	padding: clamp(22px, 4vw, 44px);
	border: 1px solid var(--nh-border);
	border-top: 0;
	border-radius: 0 0 var(--nh-card-radius) var(--nh-card-radius);
}

.nh-brand-active.nh-product-no-image .single-product div.product {
	display: block;
	max-width: 860px;
	margin-inline: auto;
}

.nh-brand-active.nh-product-no-image .single-product .woocommerce-product-gallery {
	display: none;
}

.nh-brand-active.nh-product-no-image .single-product div.product .summary {
	width: 100%;
	text-align: left;
}

/* Tables, cart and checkout. */

.nh-brand-active :where(
	.woocommerce table.shop_table,
	.wc-block-cart-items,
	.wc-block-components-totals-wrapper,
	.wc-block-checkout__order-notes
) {
	overflow: hidden;
	border: 1px solid var(--nh-border);
	border-radius: var(--nh-card-radius);
	background: var(--nh-white);
	border-collapse: separate;
}

.nh-brand-active .woocommerce table.shop_table th {
	padding: 15px 16px;
	color: var(--nh-navy);
	background: var(--nh-surface);
	font-size: 0.76rem;
	font-weight: 750;
	text-transform: uppercase;
	letter-spacing: 0.045em;
}

.nh-brand-active .woocommerce table.shop_table td {
	padding: 16px;
	border-color: var(--nh-border);
	color: var(--nh-body);
}

.nh-brand-active .woocommerce-cart .cart-collaterals .cart_totals,
.nh-brand-active .woocommerce-checkout #order_review,
.nh-brand-active .woocommerce-checkout .woocommerce-checkout-review-order {
	padding: clamp(20px, 3vw, 32px);
	border: 1px solid var(--nh-border);
	border-radius: var(--nh-card-radius);
	background: var(--nh-surface);
}

.nh-brand-active .woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.nh-brand-active #place_order {
	width: 100%;
	min-height: 54px;
	font-size: 0.98rem;
}

.nh-brand-active .woocommerce-checkout .col2-set {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
}

.nh-brand-active .woocommerce-checkout .col2-set .col-1,
.nh-brand-active .woocommerce-checkout .col2-set .col-2 {
	width: auto;
	float: none;
	padding: clamp(20px, 3vw, 30px);
	border: 1px solid var(--nh-border);
	border-radius: var(--nh-card-radius);
	background: var(--nh-white);
}

.nh-brand-active .woocommerce form .form-row {
	margin: 0 0 14px;
}

.nh-brand-active .woocommerce form .form-row label {
	margin-bottom: 6px;
}

.nh-brand-active .woocommerce form .form-row .required {
	color: var(--nh-primary-dark);
	text-decoration: none;
}

.nh-brand-active .select2-container--default .select2-selection--single .select2-selection__rendered {
	padding: 9px 14px;
	color: var(--nh-navy);
	line-height: 30px;
}

.nh-brand-active .select2-container--default .select2-selection--single .select2-selection__arrow {
	top: 11px;
	right: 8px;
}

.nh-brand-active #payment {
	border: 1px solid var(--nh-border);
	border-radius: var(--nh-card-radius);
	background: var(--nh-surface);
}

.nh-brand-active #payment div.payment_box {
	color: var(--nh-body);
	background: var(--nh-white);
}

.nh-brand-active #payment div.payment_box::before {
	border-bottom-color: var(--nh-white);
}

/* WooCommerce Blocks. */

.nh-brand-active :where(.wc-block-cart, .wc-block-checkout) {
	color: var(--nh-body);
	font-family: var(--nh-font);
}

.nh-brand-active .wc-block-components-sidebar-layout .wc-block-components-main {
	padding-right: clamp(20px, 4vw, 48px);
}

.nh-brand-active .wc-block-components-sidebar {
	padding: clamp(18px, 3vw, 30px);
	border: 1px solid var(--nh-border);
	border-radius: var(--nh-card-radius);
	background: var(--nh-surface);
}

.nh-brand-active .wc-block-components-title {
	color: var(--nh-navy);
	font-family: var(--nh-font);
	font-weight: 750;
}

.nh-brand-active .wc-block-components-text-input input[type="text"],
.nh-brand-active .wc-block-components-text-input input[type="email"],
.nh-brand-active .wc-block-components-text-input input[type="tel"] {
	border-color: var(--nh-border);
	border-radius: 10px;
}

.nh-brand-active .wc-block-components-button {
	border-radius: var(--nh-button-radius);
	background: var(--nh-primary);
	font-weight: 750;
}

.nh-brand-active .wc-block-components-button:hover {
	background: var(--nh-primary-dark);
}

/* Account area. */

.nh-brand-active .woocommerce-account .woocommerce {
	display: grid;
	grid-template-columns: minmax(210px, 0.28fr) minmax(0, 1fr);
	gap: clamp(25px, 5vw, 64px);
}

.nh-brand-active .woocommerce-account .woocommerce-MyAccount-navigation,
.nh-brand-active .woocommerce-account .woocommerce-MyAccount-content {
	width: auto;
	float: none;
}

.nh-brand-active .woocommerce-account .woocommerce-MyAccount-navigation ul {
	overflow: hidden;
	padding: 8px;
	margin: 0;
	border: 1px solid var(--nh-border);
	border-radius: var(--nh-card-radius);
	background: var(--nh-surface);
	list-style: none;
}

.nh-brand-active .woocommerce-account .woocommerce-MyAccount-navigation li {
	margin: 0;
}

.nh-brand-active .woocommerce-account .woocommerce-MyAccount-navigation a {
	display: block;
	padding: 11px 13px;
	border-radius: 9px;
	color: var(--nh-body);
	font-size: 0.86rem;
	font-weight: 650;
	text-decoration: none;
}

.nh-brand-active .woocommerce-account .woocommerce-MyAccount-navigation a:hover,
.nh-brand-active .woocommerce-account .woocommerce-MyAccount-navigation .is-active a {
	color: var(--nh-primary-dark);
	background: var(--nh-white);
	box-shadow: var(--nh-shadow-xs);
}

.nh-brand-active .woocommerce-account .woocommerce-MyAccount-content {
	min-width: 0;
	padding: clamp(20px, 3vw, 34px);
	border: 1px solid var(--nh-border);
	border-radius: var(--nh-card-radius);
	background: var(--nh-white);
}

.nh-brand-active .woocommerce form.login,
.nh-brand-active .woocommerce form.register {
	padding: clamp(22px, 4vw, 38px);
	border: 1px solid var(--nh-border);
	border-radius: var(--nh-card-radius);
	box-shadow: var(--nh-shadow-sm);
}

/* Notices and statuses. */

.nh-brand-active :where(
	.woocommerce-message,
	.woocommerce-info,
	.woocommerce-error,
	.wc-block-components-notice-banner
) {
	padding: 16px 18px 16px 48px;
	border: 1px solid var(--nh-border);
	border-radius: 12px;
	color: var(--nh-navy);
	background: var(--nh-surface);
	box-shadow: none;
	font-size: 0.88rem;
}

.nh-brand-active .woocommerce-message {
	border-color: color-mix(in srgb, var(--nh-primary) 35%, var(--nh-border));
}

.nh-brand-active .woocommerce-info {
	border-color: #cddfec;
	background: #f3f8fc;
}

.nh-brand-active .woocommerce-error {
	border-color: #f0caca;
	background: #fff7f7;
}

.nh-brand-active .woocommerce-message::before,
.nh-brand-active .woocommerce-info::before {
	color: var(--nh-primary);
}

.nh-brand-active .stock.in-stock {
	color: var(--nh-primary-dark);
	font-size: 0.82rem;
	font-weight: 700;
}

.nh-brand-active .stock.out-of-stock {
	color: #a94747;
	font-size: 0.82rem;
	font-weight: 700;
}

/* Footer. */

.nh-site-footer {
	position: relative;
	z-index: 2;
	margin-top: clamp(60px, 9vw, 120px);
	color: #bbd0dd;
	background: var(--nh-navy);
}

.nh-trust-strip {
	border-top: 1px solid var(--nh-border);
	border-bottom: 1px solid var(--nh-border);
	color: var(--nh-body);
	background: var(--nh-surface);
}

.nh-trust-strip__inner {
	display: grid;
	min-height: 106px;
	grid-template-columns: repeat(3, 1fr);
	align-items: center;
}

.nh-trust-strip__inner > div {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 13px;
	padding: 12px 30px;
}

.nh-trust-strip__inner > div + div {
	border-left: 1px solid var(--nh-border);
}

.nh-trust-strip svg {
	width: 30px;
	height: 30px;
	flex: 0 0 auto;
	fill: none;
	stroke: var(--nh-primary);
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.nh-trust-strip span {
	display: grid;
	font-size: 0.76rem;
	line-height: 1.45;
}

.nh-trust-strip strong {
	color: var(--nh-navy);
	font-size: 0.84rem;
	font-weight: 730;
}

.nh-site-footer__main {
	padding-block: clamp(55px, 7vw, 88px);
}

.nh-footer-grid {
	display: grid;
	grid-template-columns: minmax(260px, 1.65fr) repeat(3, minmax(140px, 0.8fr));
	gap: clamp(30px, 5vw, 72px);
}

.nh-footer-brand p {
	max-width: 390px;
	margin: 22px 0 19px;
	color: #bbd0dd;
	font-size: 0.86rem;
	line-height: 1.75;
}

.nh-footer-tagline {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #6fe0d5;
	font-size: 0.72rem;
	font-weight: 750;
	text-transform: uppercase;
	letter-spacing: 0.09em;
}

.nh-footer-tagline::before {
	width: 18px;
	height: 1px;
	background: #6fe0d5;
	content: "";
}

.nh-footer-column h2 {
	margin: 3px 0 18px;
	color: var(--nh-white);
	font-size: 0.84rem;
	font-weight: 720;
	letter-spacing: -0.01em;
}

.nh-footer-column ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.nh-footer-column li {
	margin: 0 0 9px;
}

.nh-footer-column a {
	color: #bbd0dd;
	font-size: 0.8rem;
	text-decoration: none;
}

.nh-footer-column a:hover {
	color: var(--nh-white);
}

.nh-footer-contact p {
	margin: 0 0 14px;
	color: #bbd0dd;
	font-size: 0.8rem;
	line-height: 1.65;
}

.nh-footer-contact > a {
	display: block;
	margin-top: 7px;
	color: #6fe0d5;
	font-weight: 650;
}

.nh-site-footer__bottom {
	border-top: 1px solid rgba(187, 208, 221, 0.15);
}

.nh-site-footer__bottom .nh-shell-container {
	display: flex;
	min-height: 74px;
	align-items: center;
	justify-content: space-between;
	gap: 25px;
}

.nh-site-footer__bottom p {
	margin: 0;
	color: #8ea8b8;
	font-size: 0.7rem;
}

.nh-site-footer__bottom nav {
	display: flex;
	gap: 20px;
}

.nh-site-footer__bottom a {
	color: #8ea8b8;
	font-size: 0.7rem;
	text-decoration: none;
}

.nh-site-footer__bottom a:hover {
	color: var(--nh-white);
}

/* Responsive design. */

@media (max-width: 1100px) {
	.nh-site-header__inner {
		grid-template-columns: auto 1fr auto;
		gap: 24px;
	}

	.nh-desktop-nav {
		justify-content: flex-end;
	}

	.nh-primary-menu {
		gap: 17px;
	}

	.nh-account-link span {
		display: none;
	}

	.nh-footer-grid {
		grid-template-columns: 1.5fr repeat(3, 0.8fr);
		gap: 32px;
	}
}

@media (max-width: 900px) {
	:root {
		--nh-container: min(100% - 32px, 1180px);
	}

	.nh-desktop-nav,
	.nh-button--header,
	.nh-header-actions > .nh-icon-link {
		display: none;
	}

	.nh-site-header__inner {
		min-height: 68px;
		grid-template-columns: 1fr auto;
	}

	.nh-menu-toggle {
		display: flex;
	}

	.nh-brand-active .single-product div.product {
		grid-template-columns: 1fr;
		gap: 25px;
	}

	.nh-brand-active .woocommerce-checkout .col2-set {
		grid-template-columns: 1fr;
	}

	.nh-brand-active .woocommerce-account .woocommerce {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.nh-brand-active .woocommerce-account .woocommerce-MyAccount-navigation ul {
		display: flex;
		overflow-x: auto;
		gap: 4px;
	}

	.nh-brand-active .woocommerce-account .woocommerce-MyAccount-navigation a {
		white-space: nowrap;
	}

	.nh-trust-strip__inner {
		min-height: 94px;
	}

	.nh-trust-strip__inner > div {
		padding-inline: 15px;
	}

	.nh-footer-grid {
		grid-template-columns: 1.5fr 1fr 1fr;
	}

	.nh-footer-contact {
		grid-column: 2 / -1;
	}
}

@media (max-width: 782px) {
	.admin-bar .nh-site-header {
		top: 46px;
	}
}

@media (max-width: 600px) {
	.admin-bar .nh-site-header {
		top: 0;
	}
}

@media (max-width: 680px) {
	:root {
		--nh-container: calc(100% - 28px);
	}

	body.nh-brand-active {
		font-size: 15px;
	}

	.nh-announcement .nh-shell-container {
		min-height: 39px;
		gap: 7px;
		font-size: 0.7rem;
	}

	.nh-announcement strong {
		display: none;
	}

	.nh-site-header__inner {
		min-height: 64px;
	}

	.nh-brand-logo__mark {
		width: 34px;
		height: 38px;
	}

	.nh-brand-logo__word {
		font-size: 1.18rem;
	}

	.nh-brand-active :where(.woocommerce ul.products, .wc-block-product-template) {
		grid-template-columns: 1fr !important;
	}

	.nh-brand-active .woocommerce div.product .woocommerce-tabs ul.tabs {
		overflow-x: auto;
	}

	.nh-brand-active .woocommerce div.product .woocommerce-tabs ul.tabs li a {
		padding-inline: 12px;
		white-space: nowrap;
	}

	.nh-brand-active .woocommerce table.shop_table_responsive tr {
		padding: 12px;
		border-bottom: 1px solid var(--nh-border);
	}

	.nh-brand-active .woocommerce table.shop_table_responsive tr td {
		padding: 9px 4px;
	}

	.nh-brand-active .wc-block-components-sidebar-layout {
		display: block;
	}

	.nh-brand-active .wc-block-components-sidebar-layout .wc-block-components-main {
		width: 100%;
		padding-right: 0;
	}

	.nh-brand-active .wc-block-components-sidebar {
		width: 100%;
		margin-top: 24px;
	}

	.nh-trust-strip__inner {
		display: block;
		padding-block: 13px;
	}

	.nh-trust-strip__inner > div {
		justify-content: flex-start;
		padding: 12px 3px;
	}

	.nh-trust-strip__inner > div + div {
		border-top: 1px solid var(--nh-border);
		border-left: 0;
	}

	.nh-site-footer__main {
		padding-block: 48px;
	}

	.nh-footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 38px 22px;
	}

	.nh-footer-brand {
		grid-column: 1 / -1;
	}

	.nh-footer-contact {
		grid-column: 1 / -1;
	}

	.nh-site-footer__bottom .nh-shell-container {
		align-items: flex-start;
		flex-direction: column;
		justify-content: center;
		gap: 8px;
		padding-block: 18px;
	}

	.nh-site-footer__bottom nav {
		flex-wrap: wrap;
		gap: 9px 16px;
	}
}

@media (max-width: 380px) {
	.nh-brand-logo__word {
		font-size: 1.05rem;
	}

	.nh-brand-logo {
		gap: 7px;
	}

	.nh-footer-grid {
		grid-template-columns: 1fr;
	}

	.nh-footer-brand,
	.nh-footer-contact {
		grid-column: auto;
	}
}

@media (prefers-reduced-motion: reduce) {
	.nh-brand-active *,
	.nh-brand-active *::before,
	.nh-brand-active *::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}
