/* Buttons */
.nmp-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	min-height: 42px;
	padding: 0 1.25rem;
	font-family: inherit;
	font-size: 0.9375rem;
	font-weight: 700;
	line-height: 1.2;
	border-radius: var(--nmp-radius-sm);
	border: 1px solid transparent;
	cursor: pointer;
	text-decoration: none;
	transition: background-color var(--nmp-transition), color var(--nmp-transition), border-color var(--nmp-transition);
}

.nmp-btn--primary {
	background: var(--nmp-color-primary);
	color: #fff;
	box-shadow: var(--nmp-shadow-sm);
}

.nmp-btn--primary:hover {
	background: var(--nmp-color-primary-hover);
	color: #fff;
}

.nmp-btn--outline {
	background: #fff;
	color: var(--nmp-color-text);
	border-color: var(--nmp-color-border-input);
}

.nmp-btn--outline:hover {
	border-color: var(--nmp-color-primary);
	color: var(--nmp-color-primary);
}

/* Promo bar */
.screen-reader-text {
	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;
}

.nmp-promo-bar {
	min-height: 26px;
	background: var(--nmp-color-primary);
	color: #fff;
	font-size: 12px;
	font-weight: 600;
}

.nmp-promo-bar p {
	margin: 0;
}

.nmp-promo-bar__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem 1rem;
	padding-top: 0.25rem;
	padding-bottom: 0.25rem;
}

.nmp-promo-bar a {
	color: #fff;
	text-decoration: none;
}

.nmp-promo-bar a:hover {
	text-decoration: underline;
}

/* Site header */
.nmp-header {
	background: #fff;
	border-top: 1px solid var(--nmp-color-primary);
	border-bottom: 1px solid var(--nmp-color-border);
	position: sticky;
	top: 0;
	z-index: 100;
	box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04);
}

.nmp-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	min-height: 66px;
	padding-top: 0.45rem;
	padding-bottom: 0.45rem;
}

.nmp-header__brand {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	text-decoration: none;
	color: inherit;
	flex: 0 0 auto;
}

.nmp-header__logo-mark {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: #fff;
	border: 2px solid var(--nmp-color-primary);
	flex-shrink: 0;
	position: relative;
}

.nmp-header__logo-img {
	width: 34px;
	height: 34px;
	object-fit: contain;
	flex-shrink: 0;
}

.nmp-header__logo-mark::before,
.nmp-header__logo-mark::after {
	content: "";
	position: absolute;
	left: 50%;
	width: 0;
	height: 0;
	transform: translateX(-50%);
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
}

.nmp-header__logo-mark::before {
	top: 7px;
	border-bottom: 8px solid var(--nmp-color-primary);
}

.nmp-header__logo-mark::after {
	bottom: 7px;
	border-top: 8px solid var(--nmp-color-primary);
}

.nmp-header__title {
	font-size: 1.15rem;
	font-weight: 800;
	line-height: 1.1;
	margin: 0;
}

.nmp-header__title span {
	color: var(--nmp-color-primary);
}

.nmp-header__tagline {
	margin: 0;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0;
	text-transform: uppercase;
	color: var(--nmp-color-muted);
}

/* Desktop: primary nav + Select Model cluster; mobile uses drawer */
.nmp-header__cluster {
	display: none;
}

.nmp-header__nav {
	display: none;
}

@media (min-width: 1024px) {
	.nmp-header__cluster {
		display: flex;
		flex: 1;
		align-items: center;
		justify-content: center;
		gap: 1.15rem;
		flex-wrap: nowrap;
		min-width: 0;
	}

	.nmp-header__nav {
		display: block;
		flex: 0 1 auto;
	}
}

.nmp-header__nav-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.55rem;
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 0.86rem;
	font-weight: 500;
}

.nmp-header__nav-list a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	text-decoration: none;
	color: var(--nmp-color-navy);
	padding: 0 0.85rem;
	border-radius: 8px;
	transition: background-color 160ms ease, color 160ms ease;
}

.nmp-header__nav-list a:hover,
.nmp-header__nav-list a:focus-visible,
.nmp-header__nav-list .current-menu-item > a,
.nmp-header__nav-list .current_page_item > a,
.nmp-header__nav-list .current-menu-ancestor > a,
.nmp-header__nav-list .current_page_ancestor > a,
.nmp-header__nav-list a[aria-current="page"] {
	color: var(--nmp-color-primary);
	background: #fff1f1;
	outline: 0;
}

.nmp-header__model-dropdown {
	position: relative;
	flex: 0 0 auto;
	order: -1;
}

.nmp-header__model-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	min-height: 36px;
	padding: 0 0.8rem;
	font-family: inherit;
	font-size: 0.86rem;
	font-weight: 500;
	color: var(--nmp-color-navy);
	background: #fff;
	border: 0;
	border-radius: 8px;
	cursor: pointer;
	transition: background var(--nmp-transition), color var(--nmp-transition);
}

.nmp-header__model-btn:hover,
.nmp-header__model-btn[aria-expanded='true'] {
	background: var(--nmp-color-surface-red-tint);
	color: var(--nmp-color-primary);
}

.nmp-header__model-chevron {
	width: 7px;
	height: 7px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: translateY(-2px) rotate(45deg);
	line-height: 1;
	opacity: 0.85;
	transition: transform var(--nmp-transition);
}

.nmp-header__model-btn[aria-expanded='true'] .nmp-header__model-chevron {
	transform: translateY(2px) rotate(225deg);
}

.nmp-header__model-list {
	position: absolute;
	z-index: 200;
	top: calc(100% + 9px);
	left: 0;
	width: min(640px, calc(100vw - 32px));
	margin: 0;
	padding: 1.35rem 0 0;
	background: #fff;
	border: 1px solid var(--nmp-color-border);
	border-radius: 12px;
	box-shadow: 0 18px 44px rgba(15, 23, 42, 0.14);
	overflow: hidden;
}

.nmp-header__model-list[hidden] {
	display: none !important;
}

.nmp-header__model-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem 2.4rem;
	padding: 0 1.8rem 1.45rem;
}

.nmp-header__model-column {
	display: flex;
	flex-direction: column;
	gap: 0.9rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nmp-header__model-link {
	display: block;
	padding: 0.08rem 0;
	font-size: 0.95rem;
	font-weight: 500;
	line-height: 1.35;
	color: #465366;
	text-decoration: none;
}

.nmp-header__model-link:hover {
	color: var(--nmp-color-primary);
	background: transparent;
}

.nmp-header__model-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.8rem 1.25rem 0.8rem 1.8rem;
	border-top: 1px solid var(--nmp-color-border);
	color: #98a2b3;
	font-size: 0.78rem;
	font-weight: 600;
}

.nmp-header__model-all {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 32px;
	padding: 0 1rem;
	border-radius: 7px;
	background: var(--nmp-color-primary);
	color: #fff;
	font-size: 0.78rem;
	font-weight: 800;
	text-decoration: none;
	white-space: nowrap;
}

.nmp-header__model-all:hover {
	background: var(--nmp-color-primary-hover);
	color: #fff;
}

.nmp-header__drawer-heading {
	margin: 0 0 0.35rem;
	font-size: 0.6875rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--nmp-color-muted);
}

.nmp-header__model-links-drawer {
	list-style: none;
	margin: 0 0 1rem;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem 0.75rem;
}

.nmp-header__model-links-drawer a {
	font-size: 0.875rem;
	font-weight: 700;
	text-decoration: none;
	color: var(--nmp-color-navy);
	padding: 0.25rem 0.5rem;
	border-radius: var(--nmp-radius-sm);
}

.nmp-header__model-links-drawer a:hover {
	color: var(--nmp-color-primary);
	background: rgba(0, 114, 198, 0.06);
}

.nmp-header__actions {
	display: flex;
	align-items: center;
	gap: 1rem;
}

@media (min-width: 1024px) {
	.nmp-header__actions {
		flex: 0 0 auto;
	}
}

.nmp-header__icon-link,
.nmp-header__login-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #344054;
	text-decoration: none;
}

.nmp-header__icon-link svg,
.nmp-header__login-link svg {
	display: block;
	width: 18px;
	height: 18px;
}

.nmp-header__login-link {
	gap: 0.35rem;
	font-size: 0.86rem;
	font-weight: 500;
	white-space: nowrap;
}

.nmp-header__icon-link:hover,
.nmp-header__login-link:hover {
	color: var(--nmp-color-primary);
}

.nmp-header__cart-link {
	position: relative;
	min-width: 24px;
}

.nmp-header__cart-count {
	position: absolute;
	top: -9px;
	right: -10px;
	display: inline-grid;
	min-width: 17px;
	height: 17px;
	padding: 0 4px;
	place-items: center;
	border-radius: 999px;
	background: var(--nmp-color-primary);
	color: #fff;
	font-size: 0.62rem;
	font-weight: 800;
	line-height: 1;
	box-shadow: 0 8px 18px rgba(0, 114, 198, 0.22);
}

.nmp-header__cta {
	min-height: 40px;
	padding: 0 1.1rem;
	border-radius: 7px;
	font-size: 0.86rem;
	font-weight: 800;
}

.nmp-header__toggle {
	display: inline-flex;
	width: 40px;
	height: 40px;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--nmp-color-border);
	border-radius: var(--nmp-radius-sm);
	background: #fff;
	cursor: pointer;
}

@media (min-width: 1024px) {
	.nmp-header__toggle {
		display: none;
	}
}

/* Mobile nav panel */
.nmp-header__drawer {
	display: none;
	border-top: 1px solid var(--nmp-color-border);
	padding: 1rem 0;
}

.nmp-header__drawer.is-open {
	display: block;
}

@media (min-width: 1024px) {
	.nmp-header__drawer {
		display: none !important;
	}
}

.nmp-header__drawer .nmp-header__nav-list {
	flex-direction: column;
	align-items: flex-start;
}

/* Footer */
.nmp-footer {
	background: var(--nmp-color-navy);
	color: rgba(255, 255, 255, 0.78);
	padding: 4.2rem 0 2rem;
	margin-top: 0;
	font-size: 0.875rem;
	border-top: 4px solid var(--nmp-color-primary);
}

.nmp-header__toggle span[aria-hidden='true'] {
	position: relative;
	width: 18px;
	height: 2px;
	background: currentColor;
}

.nmp-header__toggle span[aria-hidden='true']::before,
.nmp-header__toggle span[aria-hidden='true']::after {
	content: "";
	position: absolute;
	left: 0;
	width: 18px;
	height: 2px;
	background: currentColor;
}

.nmp-header__toggle span[aria-hidden='true']::before {
	top: -6px;
}

.nmp-header__toggle span[aria-hidden='true']::after {
	top: 6px;
}

.nmp-footer a {
	color: rgba(219, 234, 254, 0.86);
	text-decoration: none;
}

.nmp-footer a:hover {
	text-decoration: underline;
}

.nmp-footer__grid {
	display: grid;
	gap: 3.75rem;
}

@media (min-width: 768px) {
	.nmp-footer__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.nmp-footer__grid {
		grid-template-columns: 1.5fr 1fr 1fr 1.35fr;
	}
}

.nmp-footer__col h3 {
	color: #fff;
	font-size: 0.8rem;
	font-weight: 800;
	margin: 0 0 1.25rem;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.nmp-footer__col ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.nmp-footer__col li {
	margin-bottom: 0.9rem;
}

.nmp-footer__disclaimer {
	margin-top: 1.35rem;
	font-size: 0.8125rem;
	line-height: 1.55;
	color: rgba(191, 219, 254, 0.72);
	max-width: 24rem;
}

.nmp-footer__brand {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	margin: 0;
	color: #fff;
	font-size: 1rem;
	font-weight: 800;
}

.nmp-footer__brand b {
	color: var(--nmp-color-primary);
}

.nmp-footer__brand small {
	display: block;
	margin-top: 0.12rem;
	font-size: 0.57rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	color: rgba(191, 219, 254, 0.52);
}

.nmp-footer__brand-mark {
	display: grid;
	place-items: center;
	width: 24px;
	height: 24px;
	border: 1.5px solid var(--nmp-color-primary);
	border-radius: 50%;
	color: var(--nmp-color-primary);
	font-size: 0.82rem;
	line-height: 1;
}

.nmp-footer__social {
	display: flex;
	gap: 0.55rem;
	margin: 1.35rem 0 0;
}

.nmp-footer__social a {
	display: grid;
	place-items: center;
	width: 32px;
	height: 32px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.08);
	color: #22c55e;
	text-decoration: none;
}

.nmp-footer__social a:nth-child(2) {
	color: rgba(219, 234, 254, 0.72);
}

.nmp-footer__contact li {
	display: grid;
	grid-template-columns: 18px 1fr;
	gap: 0.65rem;
	align-items: start;
	margin-bottom: 1.15rem;
}

.nmp-footer__contact li > span {
	color: rgba(219, 234, 254, 0.62);
	font-weight: 800;
}

.nmp-footer__contact li:first-child > span {
	color: #22c55e;
}

.nmp-footer__contact small {
	display: block;
	margin-top: 0.12rem;
	color: rgba(191, 219, 254, 0.45);
	font-size: 0.7rem;
}

.nmp-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	margin-top: 3.15rem;
	padding-top: 1.8rem;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	font-size: 0.68rem;
	color: rgba(255, 255, 255, 0.5);
}

.nmp-footer__bottom > p:first-child {
	max-width: 760px;
	line-height: 1.5;
}

.nmp-footer__payments {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.nmp-footer__payments b {
	display: inline-grid;
	place-items: center;
	min-width: 32px;
	height: 22px;
	padding: 0 0.45rem;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 4px;
	font-size: 0.58rem;
	font-weight: 700;
	color: rgba(219, 234, 254, 0.45);
}

.nmp-cart-open {
	overflow: hidden;
}

.nmp-cart-drawer {
	position: fixed;
	inset: 0;
	z-index: 99999;
	pointer-events: none;
	visibility: hidden;
}

.nmp-cart-drawer.is-open {
	pointer-events: auto;
	visibility: visible;
}

.nmp-cart-drawer__backdrop {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	background: rgba(7, 13, 24, 0.42);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	opacity: 0;
	transition: opacity 180ms ease;
	cursor: pointer;
}

.nmp-cart-drawer.is-open .nmp-cart-drawer__backdrop {
	opacity: 1;
}

.nmp-cart-drawer__panel {
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	flex-direction: column;
	width: min(100vw, 386px);
	height: 100%;
	background: #fff;
	box-shadow: -28px 0 70px rgba(15, 23, 42, 0.16);
	transform: translateX(105%);
	transition: transform 220ms ease;
}

.nmp-cart-drawer.is-open .nmp-cart-drawer__panel {
	transform: translateX(0);
}

.nmp-cart-drawer__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	min-height: 70px;
	padding: 1.15rem 1.25rem;
	border-bottom: 1px solid #eef2f7;
}

.nmp-cart-drawer__header h2 {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0;
	color: #111827;
	font-size: 1rem;
	font-weight: 800;
	letter-spacing: -0.01em;
}

.nmp-cart-drawer__header svg {
	width: 19px;
	height: 19px;
	color: var(--nmp-color-primary);
}

.nmp-cart-drawer__count {
	color: #667085;
	font-size: 0.85rem;
	font-weight: 700;
}

.nmp-cart-drawer__close {
	display: inline-grid;
	width: 32px;
	height: 32px;
	place-items: center;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: #98a2b3;
	font-size: 1.65rem;
	line-height: 1;
	cursor: pointer;
	transition: background-color 160ms ease, color 160ms ease;
}

.nmp-cart-drawer__close:hover,
.nmp-cart-drawer__close:focus-visible {
	background: #f2f4f7;
	color: var(--nmp-color-primary);
	outline: 0;
}

.nmp-cart-drawer__body {
	flex: 1 1 auto;
	overflow-y: auto;
	padding: 1rem 1.25rem;
}

.nmp-cart-drawer__item {
	padding: 0.95rem 0 1.1rem;
	border-bottom: 1px solid #eef2f7;
}

.nmp-cart-drawer__item:first-child {
	padding-top: 0.4rem;
}

.nmp-cart-drawer__item-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 0.85rem;
}

.nmp-cart-drawer__product {
	display: inline-block;
	color: #111827;
	font-size: 0.9rem;
	font-weight: 800;
	line-height: 1.25;
	text-decoration: none;
}

.nmp-cart-drawer__product:hover {
	color: var(--nmp-color-primary);
}

.nmp-cart-drawer__item p {
	margin: 0.2rem 0 0;
	color: #667085;
	font-size: 0.78rem;
	line-height: 1.35;
}

.nmp-cart-drawer__remove {
	color: #cbd5e1;
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	transition: color 160ms ease;
}

.nmp-cart-drawer__remove:hover {
	color: var(--nmp-color-primary);
}

.nmp-cart-drawer__meta {
	display: grid;
	gap: 0.34rem;
	margin-top: 0.8rem;
	color: #667085;
	font-size: 0.78rem;
}

.nmp-cart-drawer__meta dl,
.nmp-cart-drawer__meta .variation {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 0.35rem 1rem;
	margin: 0;
}

.nmp-cart-drawer__meta dt,
.nmp-cart-drawer__meta dd {
	margin: 0;
}

.nmp-cart-drawer__meta dt {
	color: #98a2b3;
	font-weight: 700;
}

.nmp-cart-drawer__meta dd,
.nmp-cart-drawer__meta dd p {
	color: #344054;
	text-align: right;
	font-weight: 600;
}

.nmp-cart-drawer__line {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-top: 0.9rem;
}

.nmp-cart-drawer__qty {
	display: inline-grid;
	grid-template-columns: 28px 34px 28px;
	align-items: center;
	height: 31px;
	border: 1px solid #d9e0ea;
	border-radius: 8px;
	color: #111827;
	text-align: center;
	font-size: 0.85rem;
	background: #fff;
}

.nmp-cart-drawer__qty button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	padding: 0;
	border: 0;
	border-radius: 7px;
	background: transparent;
	color: #98a2b3;
	font-size: 1.05rem;
	line-height: 1;
	cursor: pointer;
	transition: background-color 0.16s ease, color 0.16s ease;
}

.nmp-cart-drawer__qty button:hover,
.nmp-cart-drawer__qty button:focus-visible {
	background: #f2f4f7;
	color: #0072C6;
	outline: none;
}

.nmp-cart-drawer__qty button:disabled {
	color: #cbd5e1;
	cursor: not-allowed;
	background: transparent;
}

.nmp-cart-drawer__qty strong {
	font-weight: 800;
}

.nmp-cart-drawer__line > strong {
	color: #111827;
	font-size: 0.98rem;
	font-weight: 900;
}

.nmp-cart-drawer__footer {
	padding: 1rem 1.25rem 1.25rem;
	border-top: 1px solid #eef2f7;
	background: #fff;
	box-shadow: 0 -18px 38px rgba(15, 23, 42, 0.03);
}

.nmp-cart-drawer__total {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1rem;
	color: #344054;
	font-size: 0.88rem;
	font-weight: 700;
}

.nmp-cart-drawer__total strong {
	color: var(--nmp-color-primary);
	font-size: 1.2rem;
	font-weight: 900;
}

.nmp-cart-drawer__checkout,
.nmp-cart-drawer__view-cart,
.nmp-cart-drawer__empty a {
	display: inline-flex;
	width: 100%;
	min-height: 44px;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
	border-radius: 7px;
	font-weight: 900;
	text-decoration: none;
	transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.nmp-cart-drawer__checkout,
.nmp-cart-drawer__empty a {
	background: var(--nmp-color-primary);
	color: #fff;
	box-shadow: 0 16px 32px rgba(0, 114, 198, 0.14);
}

.nmp-cart-drawer__checkout:hover,
.nmp-cart-drawer__empty a:hover {
	transform: translateY(-1px);
	background: #005A9E;
	box-shadow: 0 20px 38px rgba(0, 114, 198, 0.2);
}

.nmp-cart-drawer__view-cart {
	margin-top: 0.55rem;
	border: 1px solid #d9e0ea;
	color: #111827;
	background: #fff;
}

.nmp-cart-drawer__view-cart:hover {
	border-color: var(--nmp-color-primary);
	color: var(--nmp-color-primary);
}

.nmp-cart-drawer__footer p {
	margin: 0.85rem 0 0;
	color: #98a2b3;
	font-size: 0.72rem;
	text-align: center;
}

.nmp-cart-drawer__empty {
	display: grid;
	min-height: 280px;
	align-content: center;
	gap: 0.75rem;
	text-align: center;
}

.nmp-cart-drawer__empty strong {
	color: #111827;
	font-size: 1.05rem;
}

.nmp-cart-drawer__empty p {
	margin: 0 auto;
	max-width: 260px;
	color: #667085;
	font-size: 0.9rem;
	line-height: 1.5;
}

.single-product .woocommerce-message .wc-forward {
	display: none;
}

@media (max-width: 559px) {
	html,
	body {
		max-width: 100%;
		overflow-x: hidden;
	}

	.nmp-promo-bar__inner {
		display: block;
	}

	.nmp-promo-bar__msg,
	.nmp-promo-bar__contact {
		overflow-wrap: anywhere;
	}

	.nmp-header__inner {
		gap: 0.45rem;
		min-width: 0;
	}

	.nmp-header__brand {
		flex: 1 1 auto;
		min-width: 0;
	}

	.nmp-header__brand > span:last-child {
		min-width: 0;
	}

	.nmp-header__title,
	.nmp-header__tagline {
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.nmp-header__actions {
		flex: 0 0 auto;
		gap: 0.55rem;
	}
}
