/**
 * New Wave Europe — base styles + responsive
 */

:root {
	/* SPA: --primary = hsl(231 78% 14%), --secondary = hsl(220 69% 44%) */
	--newave-brand-dark: hsl(231, 78%, 14%);
	--newave-brand: hsl(220, 69%, 44%);
	--newave-primary: var(--newave-brand);
	--newave-secondary: #1987f5;
	--newave-contrast: var(--newave-brand-dark);
	--newave-muted: #f4f6fb;
	--newave-border: #e2e8f0;
	--newave-accent-light: #93c5fd;
	--newave-radius: 2px;
	--newave-container: 1280px;
	--newave-fixed-header-gap: 1.25rem;
	--newave-page-header-pt: clamp(2.5rem, 5vw, 3.5rem);
	--newave-page-header-pb: clamp(2rem, 4vw, 3rem);
	--newave-header-offset: calc(var(--newave-header-bar-height, 5rem) + var(--newave-fixed-header-gap));
	--newave-hero-padding-top: calc(var(--newave-header-offset) + clamp(3rem, 8vw, 5rem));
	--newave-hero-padding-bottom: clamp(4rem, 10vh, 6rem);
}

html {
	overflow-x: clip;
}

body {
	overflow-x: clip;
}

/* WP root block gap — hero flush under header */
.wp-site-blocks > main,
.wp-site-blocks > .wp-block-group:has(.wp-block-post-content) {
	margin-block-start: 0 !important;
}

.wp-block-post-content > .newave-hero:first-child,
.wp-block-post-content > .alignfull.newave-hero:first-child,
main .wp-block-post-content > *:first-child.newave-hero,
main .entry-content > .newave-hero:first-child {
	margin-block-start: 0 !important;
}

.is-layout-flow.wp-block-post-content > .newave-hero + *,
.is-layout-constrained.wp-block-post-content > .newave-hero + * {
	margin-block-start: 0;
}

/* ── WooCommerce store notice (scrolls away) + fixed main header bar only ── */
.woocommerce-store-notice.demo_store,
p.demo_store {
	position: static !important;
	top: auto !important;
	left: auto !important;
	right: auto !important;
	margin: 0 !important;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	overflow-x: hidden;
	padding: 0.5rem 0.75rem;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.4;
	text-align: center;
	background: var(--newave-primary) !important;
	color: #fff !important;
	box-shadow: none !important;
	z-index: auto !important;
	letter-spacing: 0.02em;
}

.woocommerce-store-notice.demo_store .woocommerce-store-notice__dismiss-link,
p.demo_store a {
	color: #fff !important;
	text-decoration: underline;
	white-space: nowrap;
	margin-left: 0.5rem;
}

.newave-header-shell {
	position: fixed;
	left: 0;
	right: 0;
	width: auto;
	max-width: 100%;
	z-index: 100;
	background: #fff;
	transition: box-shadow 0.3s ease, top 0s;
}

body.newave-has-fixed-header .wp-site-blocks {
	padding-top: 0;
}

/* Breadcrumb bar: background from top; clearance on inner row (no white gap under header) */
.wp-site-blocks > header + .newave-product-breadcrumb-bar {
	margin-top: 0;
}

.newave-product-breadcrumb-bar > .wp-block-group.alignwide,
.newave-product-breadcrumb-bar > .alignwide {
	padding-top: var(--newave-header-offset);
}

.wp-site-blocks > header + .newave-page-header,
.wp-site-blocks > header + .newave-shop-header {
	margin-top: var(--newave-header-offset);
	padding-top: var(--newave-page-header-pt);
	padding-bottom: var(--newave-page-header-pb);
}

body.newave-has-fixed-header .wp-site-blocks > main {
	margin-top: 0 !important;
	padding-top: 0;
}

body.newave-has-fixed-header .wp-site-blocks > main:has(.newave-hero),
body.newave-has-fixed-header .wp-site-blocks > main:has(.newave-contact-page) {
	padding-top: 0 !important;
}

/* Default pages (Privacy, Terms, etc.) — title clears fixed header */
.wp-site-blocks > header + main.newave-page {
	margin-top: 0 !important;
	padding-top: calc(var(--newave-header-offset) + var(--newave-page-header-pt)) !important;
}

/* Section directly under breadcrumbs — no double header offset */
.newave-product-breadcrumb-bar + .newave-shop-header,
.newave-product-breadcrumb-bar + .newave-page-header,
.newave-product-breadcrumb-bar + .newave-section,
.newave-product-breadcrumb-bar + .newave-search-results,
.newave-product-breadcrumb-bar + .newave-shop-layout,
.newave-product-breadcrumb-bar + .newave-single-product {
	margin-top: 0;
}

.newave-product-breadcrumb-bar + .newave-shop-header,
.newave-product-breadcrumb-bar + .newave-page-header {
	padding-top: var(--newave-page-header-pt);
}

.newave-header-shell.is-scrolled {
	box-shadow: 0 1px 8px rgba(8, 16, 63, 0.06);
}

.newave-header-shell > .newave-header {
	padding-left: 0 !important;
	padding-right: 0 !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
	max-width: none !important;
}

/* ── Header bar ── */
.newave-header {
	background: #fff;
	border-bottom: 1px solid var(--newave-border);
	width: 100%;
}

.newave-header.is-scrolled {
	box-shadow: none;
}

.newave-header__inner {
	min-height: 4.5rem;
	max-width: var(--newave-container);
	margin: 0 auto;
	padding: 0 0.75rem;
	display: flex !important;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
}

.newave-header__inner > .wp-block-woocommerce-customer-account {
	display: none !important;
}

@media (min-width: 992px) {
	.woocommerce-store-notice.demo_store,
	p.demo_store {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}

	.newave-header__inner {
		min-height: 5rem;
		padding: 0 1.5rem;
		gap: 1.5rem;
	}
}

.newave-header__left {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	flex-shrink: 0;
}

.newave-header__mobile-menu {
	display: none;
	align-items: center;
	justify-content: center;
	padding: 0.5rem;
	margin-left: -0.5rem;
	color: var(--newave-contrast);
	background: transparent;
	border: none;
	cursor: pointer;
}

.newave-header__logo {
	display: block;
	text-decoration: none;
	color: inherit;
	line-height: 1;
}

.newave-header__logo-mark {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	line-height: 1;
	user-select: none;
}

.newave-header__logo-mark svg {
	display: block;
	width: 160px;
	height: 40px;
	max-width: min(160px, 42vw);
}

.newave-custom-logo {
	display: block;
	width: auto;
	height: auto;
	max-height: 40px;
	max-width: min(160px, 42vw);
}

.newave-footer__brand-mark .newave-custom-logo {
	max-height: 48px;
	max-width: 180px;
}

.newave-logo-tagline {
	margin: 2px 0 0;
	color: var(--newave-primary);
	font-family: Barlow, "DM Sans", sans-serif;
	font-size: 9px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	line-height: 1;
}

.newave-header__nav {
	flex-shrink: 0;
}

.newave-header__nav .wp-block-navigation-item__content {
	color: rgba(8, 16, 63, 0.8);
	font-weight: 600;
	font-size: 0.875rem;
	letter-spacing: 0.025em;
	text-decoration: none;
	transition: color 0.15s;
}

.newave-header__nav .wp-block-navigation-item__content:hover,
.newave-header__nav .current-menu-item .wp-block-navigation-item__content {
	color: var(--newave-secondary);
}

.newave-header__actions {
	display: flex;
	align-items: center;
	gap: 0.375rem;
	flex-shrink: 0;
	margin: 0;
}

@media (min-width: 992px) {
	.newave-header__actions {
		gap: 1rem;
	}
}

.newave-header__actions.wp-block-group {
	flex-wrap: nowrap;
}

.newave-header__actions > .wp-block-html {
	display: contents;
}

.newave-header__actions > .wp-block-woocommerce-mini-cart {
	display: flex;
	align-items: center;
	margin: 0;
}

.newave-header__icon-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 2.25rem;
	height: 2.25rem;
	padding: 0.5rem;
	color: rgba(8, 16, 63, 0.7);
	text-decoration: none;
	border: none;
	background: transparent;
	border-radius: 0;
	transition: color 0.15s;
	cursor: pointer;
	font: inherit;
	line-height: 1;
	box-sizing: border-box;
}

.newave-header__icon-btn:hover {
	color: var(--newave-secondary);
}

.newave-header__icon-btn svg {
	width: 1.25rem;
	height: 1.25rem;
}

.newave-header__icon-btn--search,
.newave-header__icon-btn--account {
	display: inline-flex;
}

.newave-header__actions .newave-header__mini-cart,
.newave-header__actions .wc-block-mini-cart {
	display: inline-flex;
	align-items: center;
	line-height: 1;
	margin: 0;
}

/* Desktop: inline nav from 992px */
@media (min-width: 992px) {
	.newave-header__nav .wp-block-navigation__responsive-container-open {
		display: none !important;
	}

	.newave-header__nav .wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open) {
		display: block !important;
		position: static !important;
		width: auto !important;
		background: transparent !important;
	}

	.newave-header__nav .wp-block-navigation__responsive-container-content {
		display: flex !important;
		padding: 0 !important;
		gap: 2rem;
	}

	.newave-header__nav .wp-block-navigation-item {
		border: none !important;
	}
}

/* Mobile navigation below 992px */
@media (max-width: 991px) {
	.newave-header__mobile-menu {
		display: inline-flex;
	}

	.newave-header__inner {
		min-height: 4.5rem;
	}

	.newave-header__left {
		gap: 0.5rem;
		min-width: 0;
		flex: 1 1 auto;
	}

	.newave-header__nav {
		flex: 0 0 0;
		width: 0;
		overflow: visible;
		position: relative;
	}

	.newave-header__nav .wp-block-navigation__responsive-container-open {
		position: absolute !important;
		width: 1px !important;
		height: 1px !important;
		padding: 0 !important;
		margin: -1px !important;
		overflow: hidden !important;
		clip: rect(0, 0, 0, 0) !important;
		white-space: nowrap !important;
		border: 0 !important;
	}

	.newave-header__nav .wp-block-navigation__responsive-container.is-menu-open {
		background: #fff;
	}

	.newave-header__nav .wp-block-navigation__responsive-container-content {
		padding: 1.5rem;
	}

	.newave-header__nav .wp-block-navigation-item {
		border-bottom: 1px solid var(--newave-border);
	}

	.newave-header__nav .wp-block-navigation-item__content {
		padding: 0.875rem 0;
		font-size: 1rem;
		display: block;
	}

	.newave-header__icon-btn {
		width: 2rem;
		height: 2rem;
		padding: 0.375rem;
	}
}

/* ── Hero ── */
.newave-hero {
	position: relative;
	overflow: hidden;
	color: #fff;
}

/* Homepage hero — matches SPA */
.newave-hero--home {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 90vh;
	padding: var(--newave-hero-padding-top) 1rem var(--newave-hero-padding-bottom);
	text-align: center;
}

.newave-hero--home .newave-hero__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.newave-hero--home .newave-hero__bg-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.newave-hero--home .newave-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		rgba(8, 16, 63, 0.82) 0%,
		rgba(34, 86, 188, 0.55) 60%,
		rgba(25, 135, 245, 0.25) 100%
	);
}

.newave-hero--home .newave-hero__content {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 1rem;
}

.newave-hero--home .newave-badge--hero {
	display: inline-block;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #fff;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	padding: 0.25rem 1rem;
	border-radius: 9999px;
	margin: 0 auto 1.5rem;
	animation: newave-hero-fade-up 0.7s ease both;
}

.newave-hero--home .newave-hero__title,
.newave-hero--home h1.newave-hero__title {
	color: #fff !important;
	font-family: var(--wp--preset--font-family--barlow), Barlow, sans-serif;
	font-size: clamp(3rem, 8vw, 6rem) !important;
	font-weight: 900 !important;
	line-height: 1.05 !important;
	letter-spacing: -0.025em;
	margin: 0 0 1.5rem;
	animation: newave-hero-fade-up 1s ease 0.15s both;
}

.newave-hero--home .newave-hero__accent {
	color: rgb(147, 197, 253);
}

.newave-hero--home .newave-hero__subtitle {
	color: rgba(255, 255, 255, 0.85);
	font-size: clamp(1.0625rem, 2.5vw, 1.25rem);
	font-weight: 300;
	max-width: 42rem;
	margin: 0 auto 2.5rem;
	line-height: 1.625;
	animation: newave-hero-fade-up 1s ease 0.3s both;
}

.newave-hero--home .newave-hero__actions {
	animation: newave-hero-fade-up 1s ease 0.5s both;
}

.newave-hero--home .newave-btn-hero-primary .wp-block-button__link {
	background: var(--newave-secondary, #1987f5) !important;
	color: #fff !important;
	border: none !important;
	border-radius: 0 !important;
	padding: 0 2rem !important;
	font-weight: 700 !important;
	font-size: 1rem !important;
	min-height: 3.5rem;
	line-height: 3.5rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.newave-hero--home .newave-btn-hero-primary .wp-block-button__link:hover {
	background: rgba(25, 135, 245, 0.9) !important;
}

.newave-hero--home .newave-btn-hero-secondary .wp-block-button__link {
	background: rgba(255, 255, 255, 0.1) !important;
	color: #fff !important;
	border: 1px solid rgba(255, 255, 255, 0.3) !important;
	border-radius: 0 !important;
	padding: 0 2rem !important;
	font-weight: 600 !important;
	font-size: 1rem !important;
	min-height: 3.5rem;
	line-height: 3.5rem;
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.newave-hero--home .newave-btn-hero-secondary .wp-block-button__link:hover {
	background: rgba(255, 255, 255, 0.2) !important;
}

@keyframes newave-hero-fade-up {
	from {
		opacity: 0;
		transform: translateY(1rem);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Legacy homepage hero (page saved before v2 — still uses --centered) */
.home .newave-hero.newave-hero--centered:not(.newave-hero--home),
.blog.home .newave-hero.newave-hero--centered:not(.newave-hero--home) {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 90vh;
	padding: var(--newave-hero-padding-top) 1rem var(--newave-hero-padding-bottom);
	background-image:
		linear-gradient(
			135deg,
			rgba(8, 16, 63, 0.82) 0%,
			rgba(34, 86, 188, 0.55) 60%,
			rgba(25, 135, 245, 0.25) 100%
		),
		url("../images/hero-home.png");
	background-size: cover;
	background-position: center;
}

.home .newave-hero.newave-hero--centered:not(.newave-hero--home)::before {
	display: none;
}

.home .newave-hero.newave-hero--centered:not(.newave-hero--home) .newave-badge {
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #fff;
	font-weight: 700;
	letter-spacing: 0.14em;
}

.home .newave-hero.newave-hero--centered:not(.newave-hero--home) .newave-hero__title,
.home .newave-hero.newave-hero--centered:not(.newave-hero--home) h1 {
	font-size: clamp(3rem, 8vw, 6rem) !important;
}

.home .newave-hero.newave-hero--centered:not(.newave-hero--home) .newave-hero__accent {
	color: rgb(147, 197, 253);
}

/* Inner pages hero (Opportunity, etc.) */
.newave-hero--centered {
	text-align: center;
	background: var(--newave-contrast);
	padding: var(--newave-hero-padding-top) 1.5rem clamp(4rem, 10vw, 7rem);
}

.newave-hero--centered::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 30% 70%, rgba(34, 86, 188, 0.55) 0%, transparent 50%),
		radial-gradient(circle at 60% 40%, rgba(25, 135, 245, 0.35) 0%, transparent 60%);
	pointer-events: none;
}

.newave-hero--centered > .wp-block-group,
.newave-hero--centered .alignwide {
	position: relative;
	z-index: 1;
}

.newave-hero--centered .newave-hero__title,
.newave-hero--centered h1 {
	color: #fff !important;
	font-family: var(--wp--preset--font-family--barlow), Barlow, sans-serif;
	font-size: clamp(2.75rem, 7vw, 5rem) !important;
	font-weight: 900 !important;
	line-height: 1.05 !important;
	letter-spacing: -0.03em;
	margin-bottom: 1.5rem;
}

.newave-hero--centered .newave-hero__accent {
	color: var(--newave-accent-light);
}

.newave-hero--centered .newave-hero__subtitle,
.newave-hero--centered p:not(.newave-badge) {
	color: rgba(255, 255, 255, 0.85);
	font-size: clamp(1rem, 2.5vw, 1.25rem);
	font-weight: 300;
	max-width: 42rem;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.7;
}

.newave-badge {
	display: inline-block;
	background: rgba(25, 135, 245, 0.15);
	border: 1px solid rgba(147, 197, 253, 0.35);
	color: var(--newave-accent-light);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 0.375rem 1rem;
	border-radius: 9999px;
	margin-bottom: 1.5rem;
}

.newave-btn-primary .wp-block-button__link {
	background: var(--newave-secondary) !important;
	color: #fff !important;
	border-radius: 0 !important;
	padding: 0.875rem 2rem !important;
	font-weight: 700 !important;
	font-size: 1rem !important;
	min-height: 3.5rem;
}

.newave-btn-outline-light .wp-block-button__link {
	background: rgba(255, 255, 255, 0.1) !important;
	color: #fff !important;
	border: 1px solid rgba(255, 255, 255, 0.3) !important;
	border-radius: 0 !important;
	padding: 0.875rem 2rem !important;
	font-weight: 600 !important;
	min-height: 3.5rem;
	backdrop-filter: blur(4px);
}

/* ── Opportunity hero ── */
.newave-hero--opportunity {
	position: relative;
	overflow: hidden;
	background: var(--newave-brand-dark);
	color: #fff;
	text-align: center;
	padding: var(--newave-hero-padding-top) 1rem clamp(4rem, 8vw, 6rem);
}

@media (min-width: 782px) {
	.newave-hero--opportunity {
		padding: calc(var(--newave-header-offset) + clamp(4rem, 8vw, 6rem)) 1.5rem clamp(5rem, 8vw, 7rem);
	}
}

.newave-hero__glow--opportunity {
	position: absolute;
	inset: 0;
	opacity: 0.05;
	pointer-events: none;
	background-image: radial-gradient(circle at 60% 40%, rgb(25, 135, 245) 0%, transparent 60%);
	background-size: cover;
}

.newave-hero--opportunity .newave-hero__content {
	position: relative;
	z-index: 1;
	max-width: 56rem;
	margin: 0 auto;
	text-align: center;
}

.newave-hero__badge--opportunity,
.newave-hero--opportunity .newave-hero__badge {
	display: inline-block;
	margin: 0 0 1.5rem !important;
	padding: 0.25rem 1rem;
	border-radius: 9999px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #fff;
	line-height: 1.4;
}

.newave-hero--opportunity .newave-hero__title,
.newave-hero--opportunity h1.newave-hero__title {
	margin: 0 0 1.5rem;
	color: #fff !important;
	font-family: var(--wp--preset--font-family--barlow), Barlow, sans-serif;
	font-size: clamp(3rem, 8vw, 4.5rem) !important;
	font-weight: 900 !important;
	line-height: 1.1 !important;
	letter-spacing: -0.025em;
}

.newave-hero--opportunity .newave-hero__accent {
	color: rgb(147, 197, 253);
}

.newave-hero--opportunity .newave-hero__subtitle {
	margin: 0 auto 2.5rem !important;
	max-width: 42rem;
	color: rgba(255, 255, 255, 0.8);
	font-size: 1.25rem;
	font-weight: 300;
	line-height: 1.625;
}

.newave-hero__actions--opportunity {
	justify-content: center;
	gap: 1rem;
}

.newave-hero--opportunity .newave-btn-opportunity-primary .wp-block-button__link {
	background: var(--newave-brand) !important;
	color: #fff !important;
	border: 1px solid transparent !important;
	border-radius: 0 !important;
	min-height: 3.5rem;
	padding: 0 2.5rem !important;
	font-size: 1rem !important;
	font-weight: 700 !important;
	transition: background 0.15s;
}

.newave-hero--opportunity .newave-btn-opportunity-primary .wp-block-button__link:hover {
	background: hsla(220, 69%, 44%, 0.9) !important;
	color: #fff !important;
}

.newave-hero--opportunity .newave-btn-opportunity-secondary .wp-block-button__link {
	background: transparent !important;
	color: #fff !important;
	border: 1px solid rgba(255, 255, 255, 0.3) !important;
	border-radius: 0 !important;
	min-height: 3.5rem;
	padding: 0 2.5rem !important;
	font-size: 1rem !important;
	font-weight: 600 !important;
	transition: background 0.15s;
}

.newave-hero--opportunity .newave-btn-opportunity-secondary .wp-block-button__link:hover {
	background: rgba(255, 255, 255, 0.1) !important;
	color: #fff !important;
}

/* ── Why New Wave (Opportunity) ── */
.newave-why-new-wave {
	background: #fff;
	padding: 6rem 1rem;
}

@media (min-width: 782px) {
	.newave-why-new-wave {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
}

.newave-why-new-wave__header {
	max-width: 48rem;
	margin: 0 auto 4rem;
	text-align: center;
}

.newave-why-new-wave__title,
.newave-why-new-wave h2 {
	margin: 0 0 1rem !important;
	font-family: var(--wp--preset--font-family--barlow), Barlow, sans-serif;
	font-size: 2.25rem !important;
	font-weight: 900 !important;
	line-height: 1.15 !important;
	color: var(--newave-brand-dark);
}

.newave-why-new-wave__intro {
	margin: 0 !important;
	font-size: 1.125rem;
	line-height: 1.5;
	color: rgba(7, 16, 63, 0.65);
}

.newave-why-new-wave__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	max-width: var(--newave-container);
	margin: 0 auto;
}

@media (min-width: 782px) {
	.newave-why-new-wave__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.newave-why-new-wave__grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.newave-why-card {
	padding: 2rem;
	background: #fff;
	border: 1px solid rgba(226, 232, 240, 0.5);
	border-radius: var(--newave-radius);
	box-shadow: 0 1px 2px rgba(7, 16, 63, 0.05);
	transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.newave-why-card:hover {
	border-color: hsla(220, 69%, 44%, 0.3);
	box-shadow: 0 4px 6px -1px rgba(7, 16, 63, 0.08), 0 2px 4px -2px rgba(7, 16, 63, 0.05);
}

.newave-why-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	margin-bottom: 1.5rem;
	border-radius: var(--newave-radius);
	background: var(--newave-brand-dark);
	color: #fff;
}

.newave-why-card__title {
	margin: 0 0 0.75rem;
	font-family: var(--wp--preset--font-family--barlow), Barlow, sans-serif;
	font-size: 1.125rem;
	font-weight: 900;
	line-height: 1.3;
	color: var(--newave-brand-dark);
}

.newave-why-card__text {
	margin: 0;
	font-size: 0.875rem;
	line-height: 1.625;
	color: rgba(7, 16, 63, 0.65);
}

/* ── Income / commissions (Opportunity) ── */
.newave-income-section {
	background: hsla(220, 30%, 96%, 0.4);
	padding: 6rem 1rem;
}

@media (min-width: 782px) {
	.newave-income-section {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
}

.newave-income-section__header {
	max-width: 48rem;
	margin: 0 auto 4rem;
	text-align: center;
}

.newave-income-section__title,
.newave-income-section h2 {
	margin: 0 0 1rem !important;
	font-family: var(--wp--preset--font-family--barlow), Barlow, sans-serif;
	font-size: 2.25rem !important;
	font-weight: 900 !important;
	line-height: 1.15 !important;
	color: var(--newave-brand-dark);
}

.newave-income-section__intro {
	margin: 0 !important;
	font-size: 1.125rem;
	line-height: 1.5;
	color: rgba(7, 16, 63, 0.65);
}

.newave-income-section__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	max-width: 56rem;
	margin: 0 auto;
}

@media (min-width: 782px) {
	.newave-income-section__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

.newave-income-card {
	display: flex;
	align-items: flex-start;
	gap: 1.5rem;
	padding: 2rem;
	background: #fff;
	border: 1px solid rgba(226, 232, 240, 0.5);
	border-radius: var(--newave-radius);
	box-shadow: 0 1px 2px rgba(7, 16, 63, 0.05);
}

.newave-income-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 3rem;
	height: 3rem;
	border-radius: var(--newave-radius);
	background: var(--newave-brand);
	color: #fff;
}

.newave-income-card__body {
	min-width: 0;
}

.newave-income-card__title {
	margin: 0 0 0.5rem;
	font-family: var(--wp--preset--font-family--barlow), Barlow, sans-serif;
	font-size: 1.125rem;
	font-weight: 900;
	line-height: 1.3;
	color: var(--newave-brand-dark);
}

.newave-income-card__text {
	margin: 0;
	font-size: 0.875rem;
	line-height: 1.625;
	color: rgba(7, 16, 63, 0.65);
}

/* ── How It Works steps (Opportunity) ── */
.newave-steps-section {
	position: relative;
	overflow: hidden;
	background: var(--newave-brand-dark);
	color: #fff;
	padding: 6rem 1rem;
}

@media (min-width: 782px) {
	.newave-steps-section {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
}

.newave-steps-section__glow {
	position: absolute;
	inset: 0;
	opacity: 0.05;
	pointer-events: none;
	background-image: radial-gradient(circle at 30% 70%, rgb(34, 86, 188) 0%, transparent 50%);
}

.newave-steps-section__inner {
	position: relative;
	z-index: 1;
}

.newave-steps-section__header {
	max-width: 48rem;
	margin: 0 auto 4rem;
	text-align: center;
}

.newave-steps-section__title,
.newave-steps-section h2 {
	margin: 0 0 1rem !important;
	font-family: var(--wp--preset--font-family--barlow), Barlow, sans-serif;
	font-size: 2.25rem !important;
	font-weight: 900 !important;
	line-height: 1.15 !important;
	color: #fff !important;
}

.newave-steps-section__intro {
	margin: 0 !important;
	font-size: 1.125rem;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.75);
}

.newave-steps-section__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	max-width: 72rem;
	margin: 0 auto;
}

@media (min-width: 782px) {
	.newave-steps-section__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.newave-steps-section__grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.newave-step-card {
	position: relative;
}

.newave-step-card__ghost {
	position: absolute;
	top: -1rem;
	left: -0.5rem;
	font-family: var(--wp--preset--font-family--barlow), Barlow, sans-serif;
	font-size: 6rem;
	font-weight: 900;
	line-height: 1;
	color: rgba(255, 255, 255, 0.05);
	user-select: none;
	pointer-events: none;
}

.newave-step-card__content {
	position: relative;
	z-index: 1;
	padding-top: 2rem;
}

.newave-step-card__label {
	margin: 0 0 0.75rem;
	font-family: var(--wp--preset--font-family--barlow), Barlow, sans-serif;
	font-size: 0.875rem;
	font-weight: 900;
	line-height: 1;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--newave-accent-light);
}

.newave-step-card__title {
	margin: 0 0 0.75rem;
	font-family: var(--wp--preset--font-family--barlow), Barlow, sans-serif;
	font-size: 1.25rem;
	font-weight: 900;
	line-height: 1.3;
	color: #fff;
}

.newave-step-card__text {
	margin: 0;
	font-size: 0.875rem;
	line-height: 1.625;
	color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 640px) {
	.newave-hero--home .newave-hero__actions,
	.newave-hero .wp-block-buttons {
		flex-direction: column;
		width: 100%;
		align-items: stretch;
	}

	.newave-hero--home .wp-block-button,
	.newave-hero .wp-block-button {
		width: 100%;
	}

	.newave-hero--home .wp-block-button__link,
	.newave-hero .wp-block-button__link {
		width: 100%;
		text-align: center;
	}
}

/* ── Trust strip ── */
.newave-trust-strip {
	padding: 5rem 1rem;
	background: #fff;
	border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

@media (min-width: 782px) {
	.newave-trust-strip {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
}

.newave-trust-strip__grid {
	max-width: 64rem;
	margin: 0 auto;
	gap: 3rem !important;
}

.newave-trust-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 1rem;
}

.newave-trust-card__icon {
	display: flex !important;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 4rem;
	height: 4rem;
	margin: 0 0 0.5rem;
	background: var(--newave-primary);
	color: #fff;
	border-radius: var(--newave-radius);
}

.newave-trust-card__icon svg {
	display: block;
	width: 2rem;
	height: 2rem;
}

.newave-trust-card__title,
.newave-trust-card h3 {
	margin: 0;
	font-family: var(--wp--preset--font-family--barlow), Barlow, sans-serif;
	font-size: 1.5rem;
	font-weight: 900;
	line-height: 1.2;
	color: var(--newave-contrast);
}

.newave-trust-card__text,
.newave-trust-card p {
	margin: 0;
	max-width: 22rem;
	color: rgba(8, 16, 63, 0.65);
	font-size: 1rem;
	line-height: 1.625;
}

@media (max-width: 781px) {
	.newave-trust-strip__grid {
		flex-direction: column;
		gap: 3rem !important;
	}
}

/* ── Sections ── */
.newave-section {
	padding: clamp(3rem, 6vw, 6rem) 1.5rem;
}

.newave-section--muted {
	background: rgba(244, 246, 251, 0.6);
}

.newave-section--categories {
	padding: 6rem 1rem;
	background: rgba(244, 246, 251, 0.4);
}

@media (min-width: 782px) {
	.newave-section--categories {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
}

.newave-section__label {
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--newave-primary);
	margin-bottom: 0.75rem;
}

.newave-section h2 {
	font-family: var(--wp--preset--font-family--barlow), Barlow, sans-serif;
	font-size: clamp(1.75rem, 4vw, 3rem);
	font-weight: 900;
	letter-spacing: -0.02em;
	margin-bottom: 1rem;
	line-height: 1.1;
}

/* ── Category grid (home) ── */
.newave-section--categories .newave-section__header-row {
	margin-bottom: 3rem;
	gap: 1.5rem;
}

.newave-section__header-copy {
	max-width: 42rem;
}

.newave-section--categories .newave-section__title,
.newave-section--categories h2.newave-section__title {
	margin: 0 0 1rem;
	font-size: clamp(2.25rem, 5vw, 3rem);
	font-weight: 900;
	line-height: 1.1;
}

.newave-section__intro {
	margin: 0;
	font-size: 1.125rem;
	line-height: 1.5;
	color: rgba(8, 16, 63, 0.65);
}

.newave-view-all-link {
}

.newave-view-all-link a {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--newave-secondary);
	font-weight: 700;
	font-size: 1rem;
	text-decoration: none;
	transition: color 0.15s;
}

.newave-view-all-link a:hover {
	color: rgba(25, 135, 245, 0.8);
}

.newave-view-all-link a svg {
	flex-shrink: 0;
	transition: transform 0.15s;
}

.newave-view-all-link a:hover svg {
	transform: translateX(0.25rem);
}

.newave-category-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
	margin: 0;
}

.newave-category-card {
	position: relative;
	display: block;
	height: 24rem;
	overflow: hidden;
	background: #fff;
	border-radius: var(--newave-radius);
	box-shadow: 0 1px 3px rgba(8, 16, 63, 0.08);
	text-decoration: none;
	color: #fff;
	transition: box-shadow 0.3s ease;
}

.newave-category-card:hover {
	box-shadow: 0 12px 40px rgba(8, 16, 63, 0.14);
	color: #fff;
}

.newave-category-card__media {
	position: absolute;
	inset: 0;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem;
}

.newave-category-card__image {
	width: 12rem;
	height: 12rem;
	object-fit: contain;
	filter: drop-shadow(0 20px 25px rgba(0, 0, 0, 0.15));
	transition: transform 0.5s ease;
}

.newave-category-card:hover .newave-category-card__image {
	transform: scale(1.1);
}

.newave-category-card__overlay {
	position: absolute;
	inset: 0;
	z-index: 20;
	background: linear-gradient(
		to top,
		rgba(34, 86, 188, 0.9) 0%,
		rgba(34, 86, 188, 0.3) 45%,
		transparent 100%
	);
	pointer-events: none;
}

.newave-category-card__footer {
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 30;
	width: 100%;
	padding: 1.5rem;
}

.newave-category-card__eyebrow {
	margin: 0 0 0.25rem;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: rgba(255, 255, 255, 0.7);
}

.newave-category-card__title {
	margin: 0;
	font-family: var(--wp--preset--font-family--barlow), Barlow, sans-serif;
	font-size: 1.5rem;
	font-weight: 900;
	line-height: 1.2;
	color: #fff;
	transition: color 0.15s;
}

.newave-category-card:hover .newave-category-card__title {
	color: var(--newave-accent-light);
}

@media (max-width: 781px) {
	.newave-category-grid {
		grid-template-columns: 1fr;
	}

	.newave-section--categories .newave-section__header-row {
		flex-direction: column;
		align-items: flex-start !important;
	}
}

@media (min-width: 782px) and (max-width: 1024px) {
	.newave-category-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* ── Featured products section ── */
.newave-section--featured {
	padding: 6rem 1rem;
	background: #fff;
}

@media (min-width: 782px) {
	.newave-section--featured {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
}

.newave-section__header--centered {
	max-width: 48rem;
	margin: 0 auto 4rem;
	text-align: center;
}

.newave-section--featured .newave-section__title {
	margin: 0 0 1.5rem;
	font-size: clamp(2.25rem, 5vw, 3rem);
	font-weight: 900;
	line-height: 1.1;
}

.newave-section--featured .newave-section__intro {
	margin: 0;
	font-size: 1.125rem;
	line-height: 1.5;
	color: rgba(8, 16, 63, 0.65);
}

.newave-featured-cta {
	margin-top: 3rem !important;
}

.newave-btn-explore .wp-block-button__link {
	min-height: 3.5rem;
	padding: 0 3rem !important;
	font-weight: 700;
	font-size: 0.875rem;
	border-radius: 0 !important;
	border: 1px solid var(--newave-primary) !important;
	color: var(--newave-primary) !important;
	background: transparent !important;
	box-shadow: 0 1px 2px rgba(8, 16, 63, 0.06);
	transition: background 0.15s, color 0.15s;
}

.newave-btn-explore .wp-block-button__link:hover {
	background: var(--newave-primary) !important;
	color: #fff !important;
}

/* ── Feature / category cards ── */
.newave-feature-grid {
	gap: 1.5rem !important;
}

.newave-feature-grid .wp-block-column {
	background: #fff;
	border: 1px solid var(--newave-border);
	border-radius: var(--newave-radius);
	padding: 2rem;
}

.newave-feature-grid .wp-block-heading {
	font-size: 1.125rem;
	margin-bottom: 0.5rem;
}

@media (max-width: 781px) {
	.newave-feature-grid:not(.is-not-stacked-on-mobile) {
		flex-direction: column;
	}
}

@media (min-width: 782px) and (max-width: 1024px) {
	.newave-section .newave-feature-grid {
		flex-wrap: wrap !important;
	}

	.newave-section .newave-feature-grid > .wp-block-column {
		flex-basis: calc(50% - 0.75rem) !important;
		flex-grow: 0;
	}
}

/* ── International quality ── */
.newave-intl-quality {
	background: var(--newave-primary);
	color: #fff;
	padding: 6rem 1rem;
	position: relative;
	overflow: hidden;
}

@media (min-width: 782px) {
	.newave-intl-quality {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
}

.newave-intl-quality::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
	background-size: 40px 40px;
	pointer-events: none;
}

.newave-intl-quality__grid,
.newave-intl-quality > .wp-block-columns {
	position: relative;
	z-index: 1;
	max-width: var(--newave-container);
	margin: 0 auto;
	gap: 4rem !important;
}

.newave-intl-quality__content {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.newave-intl-quality__title,
.newave-intl-quality h2 {
	margin: 0;
	color: #fff !important;
	font-family: var(--wp--preset--font-family--barlow), Barlow, sans-serif;
	font-size: clamp(2.25rem, 5vw, 3rem) !important;
	font-weight: 900 !important;
	line-height: 1.15;
}

.newave-intl-quality__accent {
	color: rgb(147, 197, 253);
}

.newave-intl-quality__intro,
.newave-intl-quality p.newave-intl-quality__intro {
	margin: 0;
	font-size: 1.125rem;
	line-height: 1.625;
	color: rgba(255, 255, 255, 0.75);
}

.newave-checklist {
	list-style: none;
	padding: 0;
	margin: 0;
}

.newave-checklist--intl {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.newave-checklist--intl li {
	position: relative;
	margin: 0;
	padding: 0 0 0 2.25rem;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.5;
}

.newave-checklist--intl li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.125rem;
	width: 1.5rem;
	height: 1.5rem;
	background: rgba(25, 135, 245, 0.3);
	border-radius: var(--newave-radius);
}

.newave-checklist--intl li::after {
	content: "";
	position: absolute;
	left: 0.5rem;
	top: 0.625rem;
	width: 0.5rem;
	height: 0.5rem;
	background: var(--newave-accent-light);
	border-radius: var(--newave-radius);
}

.newave-checklist li {
	position: relative;
	padding: 0.5rem 0 0.5rem 2rem;
	color: rgba(255, 255, 255, 0.9);
}

.newave-checklist li::before {
	content: "✓";
	position: absolute;
	left: 0;
	width: 1.5rem;
	height: 1.5rem;
	background: rgba(25, 135, 245, 0.3);
	border-radius: var(--newave-radius);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--newave-accent-light);
}

.newave-intl-quality .newave-checklist:not(.newave-checklist--intl) li::before {
	background: rgba(25, 135, 245, 0.3);
}

.newave-section .newave-checklist li {
	color: var(--newave-contrast);
}

.newave-section .newave-checklist li::before {
	background: var(--newave-muted);
	color: var(--newave-primary);
}

.newave-intl-quality__cta {
	padding-top: 0.5rem;
}

.newave-intl-quality .newave-btn-intl-story .wp-block-button__link,
.newave-intl-quality .newave-btn-outline-light .wp-block-button__link {
	background: transparent !important;
	color: #fff !important;
	border: 1px solid #fff !important;
	border-radius: 0 !important;
	min-height: 3rem;
	padding: 0 2rem !important;
	font-weight: 700 !important;
	font-size: 0.875rem !important;
	backdrop-filter: none;
	box-shadow: 0 1px 2px rgba(8, 16, 63, 0.06);
	transition: background 0.15s, color 0.15s;
}

.newave-intl-quality .newave-btn-intl-story .wp-block-button__link:hover,
.newave-intl-quality .newave-btn-outline-light .wp-block-button__link:hover {
	background: #fff !important;
	color: var(--newave-primary) !important;
}

.newave-intl-quality__image {
	aspect-ratio: 4 / 5;
	overflow: hidden;
	border-radius: var(--newave-radius);
	margin: 0;
}

.newave-intl-quality__image img {
	display: block;
	border-radius: var(--newave-radius);
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media (max-width: 992px) {
	.newave-intl-quality__grid,
	.newave-intl-quality > .wp-block-columns {
		flex-direction: column;
	}
}

/* ── Business CTA ── */
.newave-business-cta {
	background: var(--newave-secondary);
	color: #fff;
	padding: 6rem 1rem;
	text-align: center;
}

@media (min-width: 782px) {
	.newave-business-cta {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
}

.newave-business-cta__inner {
	max-width: 56rem;
	margin: 0 auto;
	text-align: center;
}

.newave-business-cta__icon {
	display: block;
	width: 3rem;
	height: 3rem;
	margin: 0 auto 1.5rem;
	opacity: 0.8;
	color: #fff;
}

.newave-business-cta__title,
.newave-business-cta h2 {
	margin: 0 0 1.5rem;
	color: #fff !important;
	font-family: var(--wp--preset--font-family--barlow), Barlow, sans-serif;
	font-weight: 900;
	font-size: clamp(2.25rem, 5vw, 3rem) !important;
	line-height: 1.15;
}

.newave-business-cta__intro,
.newave-business-cta p.newave-business-cta__intro {
	margin: 0 auto 2.5rem;
	max-width: 42rem;
	color: rgba(255, 255, 255, 0.85);
	font-size: 1.25rem;
	font-weight: 300;
	line-height: 1.625;
}

.newave-business-cta__actions {
	justify-content: center;
	gap: 1rem;
}

.newave-business-cta .newave-btn-business-primary .wp-block-button__link {
	background: var(--newave-primary) !important;
	color: #fff !important;
	border: 1px solid transparent !important;
	border-radius: 0 !important;
	min-height: 3.5rem;
	padding: 0 2.5rem !important;
	font-weight: 700 !important;
	font-size: 0.875rem !important;
	transition: background 0.15s;
}

.newave-business-cta .newave-btn-business-primary .wp-block-button__link:hover {
	background: rgba(34, 86, 188, 0.9) !important;
	color: #fff !important;
}

.newave-business-cta .newave-btn-business-secondary .wp-block-button__link {
	background: transparent !important;
	color: #fff !important;
	border: 1px solid rgba(255, 255, 255, 0.4) !important;
	border-radius: 0 !important;
	min-height: 3.5rem;
	padding: 0 2.5rem !important;
	font-weight: 600 !important;
	font-size: 0.875rem !important;
	backdrop-filter: none;
	box-shadow: none;
	transition: background 0.15s;
}

.newave-business-cta .newave-btn-business-secondary .wp-block-button__link:hover {
	background: rgba(255, 255, 255, 0.1) !important;
	color: #fff !important;
}

@media (max-width: 639px) {
	.newave-business-cta__actions {
		flex-direction: column;
		align-items: stretch;
		width: 100%;
	}

	.newave-business-cta__actions .wp-block-button {
		width: 100%;
	}
}

/* ── Testimonials ── */
.newave-section--testimonials {
	padding: 6rem 1rem;
	background: rgba(244, 246, 251, 0.4);
}

@media (min-width: 782px) {
	.newave-section--testimonials {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
}

.newave-section--testimonials .newave-section__header--centered {
	margin-bottom: 4rem;
}

.newave-section--testimonials .newave-section__title {
	margin: 0 0 1.5rem;
	font-size: clamp(2.25rem, 5vw, 3rem);
	font-weight: 900;
	line-height: 1.1;
}

.newave-section--testimonials .newave-section__intro {
	margin: 0;
	font-size: 1.125rem;
	color: rgba(8, 16, 63, 0.65);
}

.newave-testimonials {
	gap: 2rem !important;
}

.newave-testimonial-card {
	background: #fff;
	border: 1px solid rgba(226, 232, 240, 0.5);
	border-radius: var(--newave-radius);
	box-shadow: 0 1px 3px rgba(8, 16, 63, 0.06);
	padding: 2rem;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.newave-testimonial-stars {
	display: flex;
	align-items: center;
	gap: 0.125rem;
	margin-bottom: 1.5rem;
	color: var(--newave-secondary);
}

.newave-testimonial-stars svg {
	display: block;
	width: 1.25rem;
	height: 1.25rem;
	flex-shrink: 0;
}

.newave-testimonial-text {
	margin: 0 0 2rem !important;
	font-style: italic;
	color: rgba(8, 16, 63, 0.65);
	font-size: 1.125rem;
	line-height: 1.625;
	flex: 1;
}

.newave-testimonial-author-row {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-top: auto;
}

.newave-testimonial-avatar {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 2.5rem;
	height: 2.5rem;
	background: var(--newave-primary);
	color: #fff;
	font-family: var(--wp--preset--font-family--barlow), Barlow, sans-serif;
	font-weight: 900;
	font-size: 0.875rem;
	border-radius: var(--newave-radius);
	line-height: 1;
}

.newave-testimonial-author {
	margin: 0;
}

.newave-testimonial-author__name {
	margin: 0;
	font-family: var(--wp--preset--font-family--barlow), Barlow, sans-serif;
	font-weight: 900;
	font-size: 1rem;
	line-height: 1.3;
	color: var(--newave-contrast);
}

.newave-testimonial-author__location {
	margin: 0;
	font-size: 0.875rem;
	line-height: 1.4;
	color: rgba(8, 16, 63, 0.65);
}

@media (max-width: 781px) {
	.newave-testimonials {
		flex-direction: column;
	}
}

.newave-step-number {
	font-size: 1.25rem !important;
	font-family: var(--wp--preset--font-family--barlow), Barlow, sans-serif;
}

.newave-steps--numbered .newave-step-number {
	width: auto;
	height: auto;
	background: transparent;
	color: var(--newave-primary) !important;
	font-size: 2rem !important;
	font-weight: 900;
	padding: 0;
	margin-bottom: 0.5rem !important;
}

/* ── Shop layout ── */
.newave-shop-layout {
	background: #fff;
}

.newave-shop-layout__columns {
	align-items: flex-start;
}

.newave-shop-layout__sidebar-col {
	flex-shrink: 0;
	max-width: 16rem;
}

.newave-shop-sidebar {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

.newave-shop-sidebar__search {
	display: flex;
	align-items: center;
	gap: 0.625rem;
}

.newave-shop-sidebar__search-icon {
	position: static;
	flex-shrink: 0;
	transform: none;
	color: rgba(7, 16, 63, 0.45);
	pointer-events: none;
}

.newave-shop-sidebar__search-input {
	flex: 1;
	min-width: 0;
	width: auto;
	height: 2.25rem;
	padding: 0 0.75rem;
	border: 1px solid var(--newave-border);
	border-radius: var(--newave-radius);
	background: #fff;
	font-size: 0.875rem;
	color: var(--newave-brand-dark);
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.newave-shop-sidebar__search-input::placeholder {
	color: rgba(7, 16, 63, 0.45);
}

.newave-shop-sidebar__search-input:focus-visible {
	outline: none;
	box-shadow: 0 0 0 1px var(--newave-brand);
}

.newave-shop-sidebar__categories {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.newave-shop-sidebar__heading {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0 0 1rem !important;
	font-size: 0.875rem !important;
	font-weight: 700 !important;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--newave-brand-dark);
}

.newave-shop-sidebar__heading-icon {
	flex-shrink: 0;
	color: var(--newave-brand-dark);
}

.newave-shop-sidebar__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.newave-shop-sidebar__link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	color: rgba(7, 16, 63, 0.65);
	font-size: 0.875rem;
	text-decoration: none;
	text-align: left;
	transition: color 0.15s;
}

.newave-shop-sidebar__item a:hover,
.newave-shop-sidebar__link:hover {
	color: var(--newave-brand-dark);
}

.newave-shop-sidebar__item.is-active .newave-shop-sidebar__link {
	color: var(--newave-brand-dark);
	font-weight: 500;
}

.newave-shop-sidebar__count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 1.5rem;
	padding: 0.125rem 0.5rem;
	border-radius: 9999px;
	background: var(--newave-muted);
	font-size: 0.75rem;
	font-weight: 500;
	color: rgba(7, 16, 63, 0.65);
	line-height: 1.2;
}

.newave-shop-sidebar__quiz {
	margin-top: 0 !important;
	padding: 1.5rem !important;
	background: hsla(231, 78%, 14%, 0.05) !important;
	border: 1px solid hsla(231, 78%, 14%, 0.1) !important;
	border-radius: var(--newave-radius);
}

.newave-shop-sidebar__quiz-title {
	margin: 0 0 0.5rem !important;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1rem !important;
	font-weight: 500 !important;
	color: var(--newave-brand-dark) !important;
}

.newave-shop-sidebar__quiz-text {
	margin: 0 0 1rem !important;
	font-size: 0.875rem !important;
	color: rgba(7, 16, 63, 0.65) !important;
}

.newave-shop-sidebar__quiz-actions {
	margin: 0 !important;
	width: 100%;
}

.newave-shop-sidebar__quiz-btn .wp-block-button__link {
	width: 100%;
	min-height: 2.25rem;
	border: 1px solid var(--newave-brand-dark) !important;
	border-radius: var(--newave-radius) !important;
	background: transparent !important;
	color: var(--newave-brand-dark) !important;
	font-size: 0.875rem !important;
	font-weight: 500 !important;
	transition: background 0.15s, color 0.15s;
}

.newave-shop-sidebar__quiz-btn .wp-block-button__link:hover {
	background: var(--newave-brand-dark) !important;
	color: #fff !important;
}

.newave-shop-toolbar {
	width: 100%;
	gap: 1rem;
}

.newave-shop-toolbar__sort {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.newave-shop-toolbar__sort-icon {
	flex-shrink: 0;
	color: rgba(7, 16, 63, 0.45);
}

@media (max-width: 992px) {
	.newave-shop-layout__columns {
		flex-direction: column;
	}

	.newave-shop-layout__sidebar-col,
	.newave-shop-layout__main-col {
		flex-basis: 100% !important;
		max-width: none;
	}

	.newave-shop-sidebar {
		gap: 2rem;
	}
}

/* ── Shop sidebar (legacy nav selectors) ── */
.newave-shop-sidebar__nav .wp-block-navigation-item__content {
	color: var(--newave-contrast);
	font-size: 0.9375rem;
	text-decoration: none;
	padding: 0.375rem 0;
}

.newave-shop-sidebar__nav .wp-block-navigation-item__content:hover,
.newave-shop-sidebar__nav .current-menu-item .wp-block-navigation-item__content {
	color: var(--newave-secondary);
}

.newave-shop-sidebar__item a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: var(--newave-contrast);
	font-size: 0.9375rem;
	text-decoration: none;
	padding: 0.375rem 0;
	transition: color 0.15s;
}

.newave-shop-sidebar__item a:hover,
.newave-shop-sidebar__item.is-active a {
	color: var(--newave-secondary);
}

/* ── Product trust icons ── */
.newave-product-trust {
	padding: 2rem 0;
	border-top: 1px solid var(--newave-border);
	border-bottom: 1px solid var(--newave-border);
	margin: 2rem 0;
}

.newave-product-trust__grid {
	gap: 1.5rem !important;
}

.newave-product-trust__item {
	text-align: center;
	padding: 1rem;
}

.newave-product-trust__item h4 {
	font-weight: 700;
	margin-bottom: 0.25rem !important;
	color: var(--newave-contrast);
}

.newave-product-trust__item p {
	color: #64748b;
	margin: 0;
}

@media (max-width: 781px) {
	.newave-product-trust__grid {
		flex-direction: column;
	}
}

/* ── Light CTA ── */
.newave-cta-light {
	padding: 5rem 1rem;
	background: #fff;
	text-align: center;
	border-top: 1px solid var(--newave-border);
}

@media (min-width: 782px) {
	.newave-cta-light {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
}

.newave-cta-light__inner {
	max-width: 56rem;
	margin: 0 auto;
	text-align: center;
}

.newave-cta-light__title,
.newave-cta-light h2 {
	margin: 0 0 1.5rem;
	font-family: var(--wp--preset--font-family--barlow), Barlow, sans-serif;
	font-size: 2.25rem;
	font-weight: 900;
	line-height: 1.15;
	color: var(--newave-contrast);
}

.newave-cta-light__intro,
.newave-cta-light p.newave-cta-light__intro {
	margin: 0 0 2.5rem;
	font-size: 1.125rem;
	line-height: 1.5;
	color: rgba(8, 16, 63, 0.65);
}

.newave-cta-light__actions {
	justify-content: center;
}

.newave-cta-light .newave-btn-cta-shop .wp-block-button__link {
	background: var(--newave-secondary) !important;
	color: #fff !important;
	border: 1px solid transparent !important;
	border-radius: 0 !important;
	min-height: 3.5rem;
	padding: 0 3rem !important;
	font-size: 1rem !important;
	font-weight: 700 !important;
	transition: background 0.15s;
}

.newave-cta-light .newave-btn-cta-shop .wp-block-button__link:hover {
	background: rgba(25, 135, 245, 0.9) !important;
	color: #fff !important;
}

/* ── Opportunity CTA (bottom) ── */
.newave-opportunity-cta {
	padding: 5rem 1rem;
	background: var(--newave-muted);
	text-align: center;
	border-top: 1px solid var(--newave-border);
}

@media (min-width: 782px) {
	.newave-opportunity-cta {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
}

.newave-opportunity-cta__inner {
	max-width: 56rem;
	margin: 0 auto;
	text-align: center;
}

.newave-opportunity-cta__title,
.newave-opportunity-cta h2 {
	margin: 0 auto !important;
	margin-bottom: 1rem!important;
	font-family: var(--wp--preset--font-family--barlow), Barlow, sans-serif;
	font-size: 1.875rem !important;
	font-weight: 900 !important;
	line-height: 1.2 !important;
	color: var(--newave-brand-dark);
}

.newave-opportunity-cta__intro,
.newave-opportunity-cta p.newave-opportunity-cta__intro {
	max-width: 36rem;
	margin: 0 auto 2rem !important;
	font-size: 1rem;
	line-height: 1.5;
	color: rgba(7, 16, 63, 0.65);
}

.newave-opportunity-cta__actions {
	justify-content: center;
	gap: 1rem;
}

.newave-opportunity-cta .newave-btn-opportunity-cta-primary .wp-block-button__link {
	background: var(--newave-brand) !important;
	color: #fff !important;
	border: 1px solid transparent !important;
	border-radius: 0 !important;
	min-height: 3.5rem;
	padding: 0 2.5rem !important;
	font-size: 0.875rem !important;
	font-weight: 700 !important;
	transition: background 0.15s;
}

.newave-opportunity-cta .newave-btn-opportunity-cta-primary .wp-block-button__link:hover {
	background: hsla(220, 69%, 44%, 0.9) !important;
	color: #fff !important;
}

.newave-opportunity-cta .newave-btn-opportunity-cta-secondary .wp-block-button__link {
	background: transparent !important;
	color: var(--newave-brand-dark) !important;
	border: 1px solid var(--newave-brand-dark) !important;
	border-radius: 0 !important;
	min-height: 3.5rem;
	padding: 0 2.5rem !important;
	font-size: 0.875rem !important;
	font-weight: 700 !important;
	box-shadow: 0 1px 2px rgba(7, 16, 63, 0.05);
	transition: background 0.15s, color 0.15s;
}

.newave-opportunity-cta .newave-btn-opportunity-cta-secondary .wp-block-button__link:hover {
	background: var(--newave-brand-dark) !important;
	color: #fff !important;
}

@media (max-width: 640px) {
	.newave-opportunity-cta__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.newave-opportunity-cta__actions .wp-block-button {
		width: 100%;
	}

	.newave-opportunity-cta__actions .wp-block-button__link {
		width: 100%;
		text-align: center;
	}
}

/* ── Dark CTA ── */
.newave-cta {
	background: var(--newave-contrast);
	color: #fff;
	text-align: center;
	padding: clamp(3rem, 6vw, 5rem) 1.5rem;
}

.newave-cta h2 { color: #fff; }
.newave-cta p {
	color: rgba(255, 255, 255, 0.8);
	max-width: 560px;
	margin: 0 auto 2rem;
}

/* ── Stats bars ── */
.newave-stats-bar {
	padding: 5rem 1rem;
}

@media (min-width: 782px) {
	.newave-stats-bar {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
}

.newave-stats-bar--primary {
	background: var(--newave-brand-dark);
	color: #fff;
}

.newave-stats-bar--secondary {
	background: var(--newave-brand);
	color: #fff;
}

.newave-stats-bar .newave-stats,
.newave-stats-bar .newave-stats--row {
	max-width: var(--newave-container);
	margin: 0 auto;
	gap: 2rem !important;
}

.newave-stats-bar--primary .newave-stats__item {
	text-align: center;
	padding: 0 1rem;
}

.newave-stats-bar--primary .newave-stats__item + .newave-stats__item {
	border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.newave-stats-bar--primary .newave-stats__number,
.newave-stats-bar--primary .stat-number {
	margin: 0 0 0.5rem !important;
	font-family: var(--wp--preset--font-family--barlow), Barlow, sans-serif;
	font-size: clamp(2.25rem, 5vw, 3rem);
	font-weight: 900;
	line-height: 1;
	color: var(--newave-accent-light);
}

.newave-stats-bar--primary .newave-stats__label,
.newave-stats-bar--primary .stat-label {
	margin: 0 !important;
	font-size: 0.875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.3;
}

.newave-stats-bar--secondary .newave-stats--row {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
	text-align: center;
}

@media (min-width: 782px) {
	.newave-stats-bar--secondary .newave-stats--row {
		grid-template-columns: repeat(4, 1fr);
	}
}

.newave-stats-bar--secondary .newave-stats__item {
	padding: 0 1rem;
}

.newave-stats-bar--secondary .newave-stats__item + .newave-stats__item {
	border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.newave-stats-bar--secondary .newave-stats__number {
	margin: 0 0 0.5rem;
	font-family: var(--wp--preset--font-family--barlow), Barlow, sans-serif;
	font-size: clamp(2.25rem, 5vw, 3rem);
	font-weight: 900;
	line-height: 1;
	color: #fff;
}

.newave-stats-bar--secondary .newave-stats__label {
	margin: 0;
	font-size: 0.875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.3;
}

@media (max-width: 781px) {
	.newave-stats-bar--secondary .newave-stats__item:nth-child(odd) {
		border-left: none;
	}

	.newave-stats-bar--secondary .newave-stats__item:nth-child(even) {
		border-left: 1px solid rgba(255, 255, 255, 0.2);
	}

	.newave-stats-bar--secondary .newave-stats__item:nth-child(n + 3) {
		margin-top: 0;
	}
}

.newave-stats .wp-block-column {
	text-align: center;
	padding: 1.5rem;
}

.newave-stats .stat-number {
	font-family: var(--wp--preset--font-family--barlow), Barlow, sans-serif;
	font-size: clamp(2rem, 5vw, 2.5rem);
	font-weight: 900;
	color: var(--newave-brand);
	line-height: 1;
	margin-bottom: 0 !important;
}

.newave-stats .stat-label {
	font-size: 0.875rem;
	color: #64748b;
	margin-top: 0.5rem;
}

@media (max-width: 781px) {
	.newave-stats-bar--primary .newave-stats--row {
		flex-wrap: wrap !important;
	}

	.newave-stats-bar--primary .newave-stats__item {
		flex-basis: calc(50% - 1rem) !important;
		padding: 0 0.5rem;
	}

	.newave-stats-bar--primary .newave-stats__item + .newave-stats__item {
		border-left: none;
	}

	.newave-stats-bar--primary .newave-stats__item:nth-child(even) {
		border-left: 1px solid rgba(255, 255, 255, 0.2);
	}

	.newave-stats-bar--primary .newave-stats__item:nth-child(n + 3) {
		margin-top: 2rem;
	}
}

@media (max-width: 600px) {
	.newave-stats {
		flex-wrap: wrap;
	}

	.newave-stats .wp-block-column {
		flex-basis: 50% !important;
	}
}

/* ── About page hero ── */
.newave-hero--about {
	position: relative;
	overflow: hidden;
	background: var(--newave-brand-dark);
	color: #fff;
	text-align: center;
	padding: var(--newave-hero-padding-top) 1rem clamp(4rem, 8vw, 6rem);
}

@media (min-width: 782px) {
	.newave-hero--about {
		padding: calc(var(--newave-header-offset) + clamp(4rem, 8vw, 6rem)) 1.5rem clamp(5rem, 8vw, 7rem);
	}
}

.newave-hero--about .newave-hero__bg--about {
	position: absolute;
	inset: 0;
	opacity: 0.15;
	background-size: cover;
	background-position: center;
	mix-blend-mode: luminosity;
	pointer-events: none;
}

.newave-hero--about .newave-hero__content {
	position: relative;
	z-index: 1;
	max-width: 48rem;
	margin: 0 auto;
	text-align: center;
}

.newave-hero--about .newave-hero__title,
.newave-hero--about h1.newave-hero__title {
	margin: 0 0 1.5rem;
	color: #fff !important;
	font-family: var(--wp--preset--font-family--barlow), Barlow, sans-serif;
	font-size: clamp(3rem, 8vw, 4.5rem) !important;
	font-weight: 900 !important;
	line-height: 1.05 !important;
	letter-spacing: -0.025em;
}

.newave-hero--about .newave-hero__subtitle {
	margin: 0;
	color: rgba(255, 255, 255, 0.75);
	font-size: clamp(1.25rem, 3vw, 1.5rem);
	font-weight: 300;
	line-height: 1.625;
	max-width: 48rem;
	margin-left: auto;
	margin-right: auto;
}

/* ── About heritage ── */
.newave-about-heritage {
	background: #fff;
	padding: 5rem 1rem;
}

@media (min-width: 782px) {
	.newave-about-heritage {
		padding: 7rem 1.5rem;
	}
}

.newave-about-heritage__grid {
	align-items: center !important;
	gap: 4rem !important;
	max-width: var(--newave-container);
	margin: 0 auto;
}

@media (max-width: 991px) {
	.newave-about-heritage__grid {
		flex-direction: column !important;
	}

	.newave-about-heritage__media-col {
		order: 2;
	}

	.newave-about-heritage__content-col {
		order: 1;
	}
}

.newave-about-heritage__media {
	position: relative;
}

.newave-about-heritage__image {
	margin: 0;
	aspect-ratio: 4 / 5;
	background: var(--newave-muted);
	border-radius: var(--newave-radius);
	overflow: hidden;
}

.newave-about-heritage__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.newave-about-heritage__glow {
	position: absolute;
	bottom: -2rem;
	right: -2rem;
	width: 16rem;
	height: 16rem;
	background: hsla(220, 69%, 44%, 0.1);
	border-radius: 9999px;
	filter: blur(48px);
	z-index: -1;
	pointer-events: none;
}

.newave-about-heritage__content {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.newave-about-heritage__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.25rem 0.75rem;
	background: hsla(220, 69%, 44%, 0.1);
	color: var(--newave-brand);
	border-radius: 9999px;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	line-height: 1.2;
}

.newave-about-heritage__badge svg {
	flex-shrink: 0;
}

.newave-about-heritage__title,
.newave-about-heritage h2 {
	margin: 0;
	font-family: var(--wp--preset--font-family--barlow), Barlow, sans-serif;
	font-size: clamp(2.25rem, 5vw, 3rem) !important;
	font-weight: 900 !important;
	line-height: 1.15 !important;
	color: var(--newave-brand-dark);
}

.newave-about-heritage__copy {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.newave-about-heritage__copy p {
	margin: 0 !important;
	font-size: 1.125rem;
	line-height: 1.625;
	color: rgba(7, 16, 63, 0.65);
}

.newave-about-heritage__copy strong {
	color: var(--newave-brand-dark);
	font-weight: 700;
}

/* ── Manufacturing ── */
.newave-manufacturing {
	background: hsla(220, 30%, 96%, 0.4);
	padding: 6rem 1rem;
}

@media (min-width: 782px) {
	.newave-manufacturing {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
}

.newave-manufacturing__header {
	max-width: 48rem;
	margin: 0 auto 4rem;
	text-align: center;
}

.newave-manufacturing__title,
.newave-manufacturing h2 {
	margin: 0 0 1rem !important;
	font-family: var(--wp--preset--font-family--barlow), Barlow, sans-serif;
	font-size: 2.25rem !important;
	font-weight: 900 !important;
	line-height: 1.15 !important;
	color: var(--newave-brand-dark);
}

.newave-manufacturing__intro {
	margin: 0 !important;
	font-size: 1.125rem;
	line-height: 1.5;
	color: rgba(7, 16, 63, 0.65);
}

.newave-manufacturing__grid {
	max-width: 56rem;
	margin: 0 auto;
	gap: 2rem !important;
}

.newave-manufacturing-card {
	background: #fff;
	border: 1px solid rgba(226, 232, 240, 0.5);
	border-radius: var(--newave-radius);
	padding: 2.5rem;
	height: 100%;
	box-shadow: 0 1px 2px rgba(7, 16, 63, 0.05);
}

.newave-manufacturing-card__head {
	display: flex !important;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.5rem !important;
}

.newave-manufacturing-card__code {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 3.5rem;
	height: 3.5rem;
	min-width: 3.5rem;
	margin: 0 !important;
	border-radius: var(--newave-radius);
	font-family: var(--wp--preset--font-family--barlow), Barlow, sans-serif;
	font-weight: 900;
	font-size: 1.125rem;
	line-height: 1;
	color: #fff !important;
	flex-shrink: 0;
}

.newave-manufacturing-card__code--primary {
	background: var(--newave-brand-dark);
	font-size: 1.125rem;
}

.newave-manufacturing-card__code--secondary {
	background: var(--newave-brand);
	font-size: 0.875rem;
}

.newave-manufacturing-card__name,
.newave-manufacturing-card h3 {
	margin: 0 !important;
	font-family: var(--wp--preset--font-family--barlow), Barlow, sans-serif;
	font-size: 1.25rem !important;
	font-weight: 900 !important;
	line-height: 1.2 !important;
	color: var(--newave-brand-dark);
}

.newave-manufacturing-card__subtitle {
	margin: 0 !important;
	font-size: 0.875rem;
	line-height: 1.4;
	color: rgba(7, 16, 63, 0.65);
}

.newave-manufacturing-card__text {
	margin: 0 0 1.5rem !important;
	font-size: 1rem;
	line-height: 1.625;
	color: rgba(7, 16, 63, 0.65);
}

.newave-checklist--manufacturing {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.newave-checklist--manufacturing li {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0;
	padding: 0;
	font-size: 0.875rem;
	line-height: 1.4;
	color: var(--newave-brand-dark);
}

.newave-checklist--manufacturing li::before {
	display: none;
	content: none;
}

.newave-checklist--manufacturing li svg {
	flex-shrink: 0;
	color: var(--newave-brand);
}

@media (max-width: 781px) {
	.newave-manufacturing__grid {
		flex-direction: column;
	}
}

/* ── Quality standards (About) ── */
.newave-quality-standards {
	background: #fff;
	padding: 6rem 1rem;
}

@media (min-width: 782px) {
	.newave-quality-standards {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
}

.newave-quality-standards__header {
	max-width: 48rem;
	margin: 0 auto 4rem;
	text-align: center;
}

.newave-quality-standards__title,
.newave-quality-standards h2 {
	margin: 0 0 1rem !important;
	font-family: var(--wp--preset--font-family--barlow), Barlow, sans-serif;
	font-size: 2.25rem !important;
	font-weight: 900 !important;
	line-height: 1.15 !important;
	color: var(--newave-brand-dark);
}

.newave-quality-standards__intro {
	margin: 0 !important;
	font-size: 1.125rem;
	line-height: 1.5;
	color: rgba(7, 16, 63, 0.65);
}

.newave-quality-standards__grid {
	gap: 2rem !important;
}

.newave-quality-card {
	position: relative;
	overflow: hidden;
	background: #fff;
	border: 1px solid rgba(226, 232, 240, 0.5);
	border-radius: var(--newave-radius);
	padding: 2.5rem;
	height: 100%;
	text-align: center;
	box-shadow: 0 1px 2px rgba(7, 16, 63, 0.05);
}

.newave-quality-card--featured {
	overflow: hidden;
}

.newave-quality-card__accent-bar {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 0.25rem;
	background: var(--newave-brand);
}

.newave-quality-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 4rem;
	height: 4rem;
	margin: 0 auto 1.5rem;
	border-radius: 9999px;
}

.newave-quality-card__icon--soft {
	background: hsla(231, 78%, 14%, 0.1);
	color: var(--newave-brand-dark);
}

.newave-quality-card__icon--solid {
	background: var(--newave-brand-dark);
	color: #fff;
}

.newave-quality-card__title,
.newave-quality-card h3 {
	margin: 0 0 1rem !important;
	font-family: var(--wp--preset--font-family--barlow), Barlow, sans-serif;
	font-size: 1.5rem !important;
	font-weight: 900 !important;
	line-height: 1.2 !important;
	color: var(--newave-brand-dark);
	text-align: center;
}

.newave-quality-card__text,
.newave-quality-card p {
	margin: 0 !important;
	font-size: 1rem;
	line-height: 1.625;
	color: rgba(7, 16, 63, 0.65);
	text-align: center;
}

@media (max-width: 781px) {
	.newave-quality-standards__grid {
		flex-direction: column;
	}
}

/* ── Ingredients list ── */
.newave-ingredients-list {
	list-style: none;
	padding: 0;
	margin: 1rem 0 0;
	border: 1px solid var(--newave-border);
	border-radius: var(--newave-radius);
	overflow: hidden;
}

.newave-ingredients-list li {
	padding: 0.75rem 1.25rem;
	border-bottom: 1px solid var(--newave-border);
}

.newave-ingredients-list li:last-child {
	border-bottom: none;
}

/* ── FAQ ── */
.newave-faq-section {
	background: #fff;
	padding: 6rem 1rem;
}

@media (min-width: 782px) {
	.newave-faq-section {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
}

.newave-faq-section__inner {
	max-width: 48rem;
	margin: 0 auto;
}

.newave-faq-section__title,
.newave-faq-section h2 {
	margin: 0 0 2.5rem !important;
	font-family: var(--wp--preset--font-family--barlow), Barlow, sans-serif;
	font-size: 1.875rem !important;
	font-weight: 900 !important;
	line-height: 1.2 !important;
	text-align: center;
	color: var(--newave-brand-dark);
}

.newave-faq-accordion {
	width: 100%;
}

.newave-faq-item {
	border-bottom: 1px solid var(--newave-border);
}

.newave-faq-item__trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	width: 100%;
	padding: 1rem 0;
	font-family: var(--wp--preset--font-family--barlow), Barlow, sans-serif;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.4;
	text-align: left;
	color: var(--newave-brand-dark);
	cursor: pointer;
	list-style: none;
	transition: color 0.15s;
}

.newave-faq-item__trigger::-webkit-details-marker {
	display: none;
}

.newave-faq-item__trigger::marker {
	content: '';
}

.newave-faq-item__trigger:hover {
	color: var(--newave-brand);
	text-decoration: underline;
}

.newave-faq-item__question {
	flex: 1;
	min-width: 0;
}

.newave-faq-item__chevron {
	flex-shrink: 0;
	width: 1rem;
	height: 1rem;
	color: rgba(7, 16, 63, 0.45);
	transition: transform 0.2s ease;
}

.newave-faq-item[open] .newave-faq-item__chevron {
	transform: rotate(180deg);
}

.newave-faq-item__content {
	overflow: hidden;
}

.newave-faq-item__content p {
	margin: 0 0 1rem;
	padding-bottom: 0.25rem;
	font-size: 0.875rem;
	line-height: 1.625;
	color: rgba(7, 16, 63, 0.65);
}

/* Legacy FAQ block styles */
.newave-faq details {
	border: 1px solid var(--newave-border);
	border-radius: var(--newave-radius);
	margin-bottom: 0.75rem;
	background: #fff;
}

.newave-faq summary {
	padding: 1.25rem 1.5rem;
	font-weight: 600;
	cursor: pointer;
	list-style: none;
}

.newave-faq summary::-webkit-details-marker { display: none; }

.newave-faq details[open] summary {
	border-bottom: 1px solid var(--newave-border);
	color: var(--newave-primary);
}

.newave-faq details p {
	padding: 1.25rem 1.5rem;
	margin: 0;
	color: #475569;
}

/* ── Kits ── */
.newave-kit-grid { gap: 1.5rem !important; }

.newave-kit-grid--dynamic {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.5rem;
}

a.newave-kit-card {
	display: block;
	text-decoration: none;
	color: inherit;
	transition: box-shadow 0.2s, transform 0.2s;
}

a.newave-kit-card:hover {
	box-shadow: 0 8px 32px rgba(8, 16, 63, 0.08);
	transform: translateY(-2px);
}

a.newave-kit-card h3 {
	font-family: Barlow, sans-serif;
	font-weight: 700;
	font-size: 1.0625rem;
	margin: 0 0 0.5rem;
	color: var(--newave-contrast);
}

.newave-kit-card {
	background: #fff;
	border: 1px solid var(--newave-border);
	border-radius: var(--newave-radius);
	padding: 1.5rem;
	height: 100%;
}

.newave-kit-card__badge {
	display: inline-block;
	background: var(--newave-secondary);
	color: #fff;
	font-size: 0.6875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	padding: 0.25rem 0.625rem;
	border-radius: var(--newave-radius);
	margin-bottom: 0.75rem !important;
}

.newave-kit-card__price {
	font-family: var(--wp--preset--font-family--barlow), Barlow, sans-serif;
	font-weight: 900;
	font-size: 1.25rem;
	color: var(--newave-primary);
	margin-top: 1rem !important;
}

@media (max-width: 781px) {
	.newave-kit-grid { flex-direction: column; }

	.newave-kit-grid--dynamic {
		grid-template-columns: 1fr;
	}
}

@media (min-width: 782px) and (max-width: 1024px) {
	.newave-kit-grid--dynamic {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

/* ── Quiz banner ── */
.newave-quiz-banner {
	background: var(--newave-muted);
	border-top: 1px solid var(--newave-border);
	border-bottom: 1px solid var(--newave-border);
	padding: 2rem 1.5rem;
}

@media (max-width: 781px) {
	.newave-quiz-banner .wp-block-columns {
		flex-direction: column;
		gap: 1rem;
	}

	.newave-quiz-banner .wp-block-buttons {
		justify-content: flex-start !important;
	}
}

/* ── Shop header ── */
.newave-shop-header {
	background: var(--newave-muted);
	border-bottom: 1px solid var(--newave-border);
	padding: var(--newave-page-header-pt) 0 var(--newave-page-header-pb);
}

.newave-shop-header > .wp-block-group.alignwide,
.newave-shop-header > .alignwide {
	box-sizing: border-box;
	width: 100%;
	max-width: var(--newave-container, 1280px);
	margin-left: auto;
	margin-right: auto;
	padding-left: 1rem;
	padding-right: 1rem;
}

@media (min-width: 782px) {
	.newave-shop-header > .wp-block-group.alignwide,
	.newave-shop-header > .alignwide {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
}

.newave-shop-header h1,
.newave-shop-header .wp-block-heading {
	font-family: var(--wp--preset--font-family--barlow), Barlow, sans-serif;
	font-weight: 900;
	font-size: clamp(2rem, 4vw, 2.75rem);
	margin: 0;
}

.newave-shop-header .wp-block-paragraph {
	margin: 0.75rem 0 0;
	font-size: 1rem;
	line-height: 1.5;
	color: rgba(8, 16, 63, 0.65);
	max-width: 42rem;
}

/* ── Contact ── */
.newave-contact-page {
	background: #fff;
	padding: calc(var(--newave-header-offset) + clamp(2.5rem, 5vw, 3.5rem)) 1rem 4rem;
}

@media (min-width: 782px) {
	.newave-contact-page {
		padding: calc(var(--newave-header-offset) + clamp(3rem, 6vw, 4rem)) 1.5rem 6rem;
	}
}

.newave-contact-page__inner {
	max-width: var(--newave-container);
	margin: 0 auto;
}

.newave-contact-page__header {
	max-width: 48rem;
	margin: 0 auto 4rem;
	text-align: center;
}

.newave-contact-page__title,
.newave-contact-page h1 {
	margin: 0 0 1rem !important;
	font-family: var(--wp--preset--font-family--barlow), Barlow, sans-serif;
	font-size: clamp(2.25rem, 5vw, 3rem) !important;
	font-weight: 500 !important;
	line-height: 1.15 !important;
	color: var(--newave-brand-dark);
}

.newave-contact-page__intro {
	margin: 0 !important;
	font-size: 1.125rem;
	line-height: 1.5;
	color: rgba(7, 16, 63, 0.65);
}

.newave-contact-page__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 4rem;
	max-width: 72rem;
	margin: 0 auto;
}

@media (min-width: 1024px) {
	.newave-contact-page__grid {
		grid-template-columns: repeat(2, 1fr);
		align-items: start;
	}
}

.newave-contact-hq {
	padding: 2rem;
	background: hsla(220, 69%, 44%, 0.08);
	border: 1px solid var(--newave-border);
	border-radius: var(--newave-radius);
}

@media (min-width: 782px) {
	.newave-contact-hq {
		padding: 3rem;
	}
}

.newave-contact-hq__title,
.newave-contact-form-wrap__title {
	margin: 0 0 2rem;
	font-family: var(--wp--preset--font-family--barlow), Barlow, sans-serif;
	font-size: 1.875rem;
	font-weight: 500;
	line-height: 1.2;
	color: var(--newave-brand-dark);
}

.newave-contact-form-wrap__title {
	margin-bottom: 1.5rem;
}

.newave-contact-hq__items {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.newave-contact-info {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}

.newave-contact-info__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	padding: 0.75rem;
	border-radius: 9999px;
	background: #fff;
	border: 1px solid var(--newave-border);
	color: var(--newave-brand-dark);
}

.newave-contact-info__icon svg {
	width: 1.5rem;
	height: 1.5rem;
}

.newave-contact-info__title {
	margin: 0;
	font-size: 1rem;
	font-weight: 700;
	color: var(--newave-brand-dark);
}

.newave-contact-info__text {
	margin: 0.25rem 0 0;
	font-size: 0.875rem;
	line-height: 1.625;
	color: rgba(7, 16, 63, 0.65);
}

.newave-contact-info__note {
	font-size: 0.75rem;
}

.newave-contact-form-wrap {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	min-width: 0;
}

.newave-contact-card {
	background: #fff;
	border: 1px solid var(--newave-border);
	border-radius: var(--newave-radius);
	padding: 2.5rem;
}

.newave-form-placeholder {
	text-align: center;
	background: var(--newave-muted);
	border: 2px dashed var(--newave-border) !important;
}

@media (max-width: 781px) {
	.newave-contact-card { padding: 1.5rem; }
}

/* ── Steps ── */
.newave-steps .wp-block-column {
	text-align: center;
	padding: 1rem;
}

.newave-step-number {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	background: var(--newave-primary);
	color: #fff !important;
	font-family: var(--wp--preset--font-family--barlow), Barlow, sans-serif;
	font-weight: 900;
	font-size: 1.25rem;
	border-radius: var(--newave-radius);
	margin-bottom: 1rem !important;
}

@media (max-width: 781px) {
	.newave-steps {
		flex-wrap: wrap;
	}

	.newave-steps .wp-block-column {
		flex-basis: 50% !important;
	}
}

@media (max-width: 480px) {
	.newave-steps .wp-block-column {
		flex-basis: 100% !important;
	}
}

/* ── Newsletter ── */
.newave-newsletter { text-align: center; }

.newave-newsletter__form {
	max-width: 480px;
	margin: 0 auto;
}

/* ── Footer ── */
.newave-footer {
	background: var(--newave-brand-dark);
	color: rgba(255, 255, 255, 0.75);
	padding: 4rem 1rem 2rem;
}

@media (min-width: 782px) {
	.newave-footer {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
}

.newave-footer .wp-block-heading {
	color: #fff !important;
}

.newave-footer__brand-mark {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	line-height: 1;
	user-select: none;
}

.newave-footer__brand-mark svg {
	display: block;
	width: 160px;
	height: 40px;
	max-width: min(160px, 42vw);
}

.newave-footer__logo-tagline {
	margin-top: 2px;
	color: rgba(255, 255, 255, 0.65) !important;
}

.newave-footer__about {
	margin: 0 !important;
	max-width: 20rem;
	font-size: 0.875rem !important;
	line-height: 1.625;
	color: rgba(255, 255, 255, 0.75) !important;
}

.newave-footer__heading {
	font-size: 0.75rem !important;
	font-weight: 700 !important;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #fff !important;
	margin: 0 0 1.5rem !important;
}

.newave-footer__nav .wp-block-navigation-item__content,
.newave-footer__legal .wp-block-navigation-item__content {
	color: rgba(255, 255, 255, 0.75);
	font-size: 0.875rem;
	text-decoration: none;
	transition: color 0.15s;
}

.newave-footer__nav .wp-block-navigation-item__content:hover,
.newave-footer__legal .wp-block-navigation-item__content:hover {
	color: #fff;
}

.newave-footer__newsletter-intro {
	margin: 0 0 1rem !important;
	font-size: 0.875rem !important;
	color: rgba(255, 255, 255, 0.75) !important;
}

.newave-footer__newsletter-form {
	position: relative;
	width: 100%;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
}

.newave-footer__newsletter-fields {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	width: 100%;
}

.newave-footer__newsletter-form input[type="email"],
.newave-footer__newsletter-input,
.newave-footer__newsletter-form button[type="submit"],
.newave-footer__newsletter-submit {
	box-sizing: border-box;
	height: 2.25rem;
	min-height: 2.25rem;
	max-height: 2.25rem;
	margin: 0;
	border-radius: 0.375rem;
}

.newave-footer__newsletter-form input[type="email"],
.newave-footer__newsletter-input {
	flex: 1 1 auto;
	width: 100%;
	min-width: 0;
	padding: 0 0.75rem;
	font: inherit;
	font-size: 1rem;
	line-height: 1;
	color: #fff;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
	transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
	-webkit-appearance: none;
	appearance: none;
}

@media (min-width: 782px) {
	.newave-footer__newsletter-form input[type="email"],
	.newave-footer__newsletter-input {
		font-size: 0.875rem;
	}
}

.newave-footer__newsletter-form input[type="email"]::placeholder,
.newave-footer__newsletter-input::placeholder {
	color: rgba(255, 255, 255, 0.4);
	opacity: 1;
}

.newave-footer__newsletter-form input[type="email"]:focus-visible,
.newave-footer__newsletter-input:focus-visible {
	outline: none;
	border-color: rgba(255, 255, 255, 0.2);
	box-shadow: 0 0 0 1px var(--newave-accent-light);
}

.newave-footer__newsletter-form button[type="submit"],
.newave-footer__newsletter-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 2.25rem;
	width: 2.25rem;
	min-width: 2.25rem;
	padding: 0;
	background: var(--newave-secondary) !important;
	border: 1px solid rgba(255, 255, 255, 0.15) !important;
	color: #fff !important;
	box-shadow: none !important;
	cursor: pointer;
	transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.newave-footer__newsletter-form button[type="submit"]:hover,
.newave-footer__newsletter-submit:hover {
	background: rgba(25, 135, 245, 0.8) !important;
	color: #fff !important;
}

.newave-footer__newsletter-form button[type="submit"] svg,
.newave-footer__newsletter-submit svg {
	width: 1rem;
	height: 1rem;
	flex-shrink: 0;
	pointer-events: none;
}

.newave-footer__social {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.newave-footer__social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.6);
	transition: color 0.15s;
}

.newave-footer__social-link:hover {
	color: #fff;
}

.newave-newsletter-placeholder {
	background: rgba(255, 255, 255, 0.08) !important;
	border: 1px dashed rgba(255, 255, 255, 0.2);
	border-radius: var(--newave-radius);
	padding: 0.75rem 1rem !important;
	color: rgba(255, 255, 255, 0.5) !important;
	margin: 0 !important;
}

.newave-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	margin-top: 0;
	padding-top: 2rem;
	gap: 1rem;
}

.newave-footer__bottom p {
	margin: 0;
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.75rem;
}

@media (min-width: 782px) {
	.newave-footer__grid {
		flex-wrap: nowrap !important;
	}

	.newave-footer__grid > .wp-block-column {
		flex-basis: 0 !important;
		flex-grow: 1 !important;
	}
}

@media (min-width: 782px) and (max-width: 1023px) {
	.newave-footer__grid {
		flex-wrap: wrap !important;
	}

	.newave-footer__grid > .wp-block-column {
		flex-basis: calc(50% - 1.5rem) !important;
		flex-grow: 0 !important;
	}
}

@media (max-width: 781px) {
	.newave-footer__grid {
		flex-direction: column;
	}

	.newave-footer__grid .wp-block-column {
		flex-basis: 100% !important;
	}

	.newave-footer__bottom {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.newave-footer__legal .wp-block-navigation {
		justify-content: center !important;
	}
}

/* ── Search overlay ── */
.newave-search-overlay {
	position: fixed;
	inset: 0;
	z-index: 1000;
	background: rgba(8, 16, 63, 0.55);
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding: 6rem 1rem 2rem;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s, visibility 0.2s;
}

.newave-search-overlay.is-open {
	opacity: 1;
	visibility: visible;
}

.newave-search-overlay__panel {
	background: #fff;
	width: 100%;
	max-width: 640px;
	padding: 1rem 1.5rem 1.5rem;
	border-radius: var(--newave-radius);
	box-shadow: 0 20px 60px rgba(8, 16, 63, 0.2);
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0.75rem;
}

.newave-search-overlay__close {
	position: static;
	align-self: flex-end;
	flex-shrink: 0;
	background: none;
	border: none;
	font-size: 1.75rem;
	line-height: 1;
	cursor: pointer;
	color: #64748b;
	padding: 0.125rem 0.25rem;
	margin: 0;
	width: auto;
	min-height: 0;
}

.newave-search-overlay__close:hover {
	color: var(--newave-brand-dark, #08103f);
}

.newave-search-overlay__form {
	display: flex;
	gap: 0.5rem;
	margin-top: 0;
	width: 100%;
}

.newave-search-overlay__form input[type="search"] {
	flex: 1;
	border: 1px solid var(--newave-border);
	border-radius: var(--newave-radius);
	padding: 0.875rem 1rem;
	font-size: 1rem;
	min-width: 0;
}

.newave-search-overlay__form button[type="submit"] {
	background: var(--newave-primary);
	color: #fff;
	border: none;
	border-radius: var(--newave-radius);
	padding: 0 1.5rem;
	font-weight: 600;
	cursor: pointer;
}

.newave-search-overlay__form button[type="submit"]:hover {
	background: var(--newave-secondary);
}

body.newave-search-open {
	overflow: hidden;
}

/* ── Editor preview ── */
.editor-styles-wrapper .newave-hero--home h1,
.editor-styles-wrapper .newave-hero h1,
.editor-styles-wrapper .newave-hero .wp-block-heading {
	color: #fff;
}

.editor-styles-wrapper .newave-intl-quality h2 {
	color: #fff;
}

/* ── Forms & notices ── */
.newave-hp-field {
	position: absolute;
	left: -9999px;
	opacity: 0;
	pointer-events: none;
}

.newave-form-notice {
	position: fixed;
	top: 1rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 100001;
	background: #fff;
	border: 1px solid var(--newave-border);
	border-left: 4px solid var(--newave-primary);
	padding: 0.875rem 1.25rem;
	border-radius: var(--newave-radius);
	box-shadow: 0 8px 32px rgba(8, 16, 63, 0.12);
	font-size: 0.9375rem;
	max-width: min(90vw, 32rem);
}

.newave-form-notice--error {
	border-left-color: #dc2626;
}

.newave-newsletter__form-inner {
	display: flex;
	width: 100%;
	max-width: 28rem;
	gap: 0;
}

.newave-newsletter__form-inner input[type="email"] {
	flex: 1;
	min-width: 0;
}

.newave-contact-form {
	display: grid;
	gap: 1.5rem;
	width: 100%;
	max-width: 100%;
}

.newave-contact-form__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	width: 100%;
}

@media (min-width: 782px) {
	.newave-contact-form__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.newave-contact-form__row,
.newave-contact-form__actions {
	display: grid;
	gap: 0.5rem;
	width: 100%;
	max-width: 100%;
	margin: 0;
}

.newave-contact-form label {
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--newave-brand-dark);
}

.newave-contact-form input,
.newave-contact-form select,
.newave-contact-form textarea {
	display: block;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	border: 1px solid var(--newave-border);
	border-radius: var(--newave-radius);
	padding: 0.5rem 0.75rem;
	font: inherit;
	font-size: 0.875rem;
	background: #fff;
	box-shadow: 0 1px 2px rgba(7, 16, 63, 0.05);
	transition: border-color 0.15s, box-shadow 0.15s;
}

.newave-contact-form input:focus,
.newave-contact-form select:focus,
.newave-contact-form textarea:focus {
	outline: none;
	border-color: var(--newave-brand);
	box-shadow: 0 0 0 1px var(--newave-brand);
}

.newave-contact-form select {
	min-height: 2.75rem;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2307103f' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 0.75rem center;
	padding-right: 2.25rem;
}

.newave-contact-form textarea {
	min-height: 9.375rem;
	resize: vertical;
}

.newave-contact-form__actions {
	display: block;
}

.newave-contact-form__submit {
	display: flex !important;
	align-items: center;
	justify-content: center;
	width: 100% !important;
	max-width: 100% !important;
	box-sizing: border-box;
	min-height: 3.5rem;
	background: var(--newave-brand-dark);
	color: #fff;
	border: 1px solid transparent;
	border-radius: var(--newave-radius);
	padding: 0 2rem;
	font-size: 1rem;
	font-weight: 500;
	cursor: pointer;
	transition: background 0.15s;
}

.newave-contact-form__submit:hover {
	background: hsla(231, 78%, 14%, 0.9);
}

/* ── Wellness Quiz ── */
.newave-quiz {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.2s;
}

.newave-quiz.is-open {
	pointer-events: auto;
	opacity: 1;
}

.newave-quiz__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(8, 16, 63, 0.55);
}

.newave-quiz__panel {
	position: relative;
	z-index: 1;
	background: #fff;
	border-radius: var(--newave-radius);
	max-width: 32rem;
	width: 100%;
	box-shadow: 0 24px 64px rgba(8, 16, 63, 0.2);
}

.newave-quiz__close {
	position: absolute;
	top: 0.75rem;
	right: 0.75rem;
	background: transparent;
	border: none;
	font-size: 1.75rem;
	line-height: 1;
	cursor: pointer;
	color: var(--newave-contrast);
	padding: 0.25rem 0.5rem;
}

.newave-quiz__body {
	padding: 2rem;
}

.newave-quiz__step {
	display: none;
}

.newave-quiz__step--active {
	display: block;
}

.newave-quiz__label {
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--newave-primary);
	margin: 0 0 0.5rem;
}

.newave-quiz__title {
	font-family: Barlow, sans-serif;
	font-weight: 800;
	font-size: 1.375rem;
	margin: 0 0 1.25rem;
	color: var(--newave-contrast);
}

.newave-quiz__options {
	display: grid;
	gap: 0.625rem;
}

.newave-quiz__option {
	text-align: left;
	background: #fff;
	border: 1px solid var(--newave-border);
	border-radius: var(--newave-radius);
	padding: 0.875rem 1rem;
	font-size: 0.9375rem;
	font-weight: 500;
	cursor: pointer;
	transition: border-color 0.15s, background 0.15s;
}

.newave-quiz__option:hover {
	border-color: var(--newave-primary);
	background: var(--newave-muted);
}

.newave-quiz__result-desc {
	color: #64748b;
	line-height: 1.6;
	margin: 0 0 1.5rem;
}

.newave-quiz__result-actions {
	display: grid;
	gap: 0.75rem;
}

.newave-quiz__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 1.25rem;
	font-weight: 600;
	font-size: 0.875rem;
	border-radius: var(--newave-radius);
	text-decoration: none;
	text-align: center;
}

.newave-quiz__btn--primary {
	background: var(--newave-primary);
	color: #fff;
}

.newave-quiz__btn--primary:hover {
	background: var(--newave-secondary);
	color: #fff;
}

.newave-quiz__btn--outline {
	background: transparent;
	color: var(--newave-contrast);
	border: 1px solid var(--newave-border);
}

.newave-quiz__btn--outline:hover {
	border-color: var(--newave-primary);
	color: var(--newave-primary);
}

body.newave-quiz-open {
	overflow: hidden;
}
