/* No Brother Limited — main stylesheet. All block/component styles append below, BEM + nbl- prefix. */

/* Shared button style: gold gradient fill. Whole colored face (background + text + icon together) slides up on hover to reveal a duplicate face underneath — not just the text. Any button adds .nbl-gradient-btn and two direct children: .nbl-flip-face--front (normal flow, sizes the button) and .nbl-flip-face--back (absolute, overlays it exactly). Each button's own selector sets padding/gap on .nbl-flip-face. */

.nbl-gradient-btn {
	position: relative;
	overflow: hidden;
	background: none !important;
	padding: 0 !important;
	border-color: transparent !important;
	color: var(--px-color-white) !important;
}

.nbl-flip-face {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	box-sizing: border-box;
	background-image: var(--px-gradient-gold);
	background-size: 200% 100%;
	background-position: right center;
	transition: transform 350ms ease, background-position 600ms ease;
}

.nbl-flip-face--back {
	position: absolute;
	inset: 0;
	transform: translateY( 100% );
}

.nbl-gradient-btn:hover .nbl-flip-face,
.nbl-gradient-btn:focus-visible .nbl-flip-face {
	background-position: left center;
}

.nbl-gradient-btn:hover .nbl-flip-face--front,
.nbl-gradient-btn:focus-visible .nbl-flip-face--front {
	transform: translateY( -100% );
}

.nbl-gradient-btn:hover .nbl-flip-face--back,
.nbl-gradient-btn:focus-visible .nbl-flip-face--back {
	transform: translateY( 0 );
}

@media (prefers-reduced-motion: reduce) {
	.nbl-flip-face {
		transition: background-position 600ms ease;
	}
}

body {
	background-color: var(--px-color-bg);
	color: var(--px-color-black);
	font-family: var(--px-font-body);
	font-weight: var(--px-font-body-weight);
	font-size: var(--px-font-body-size);
	line-height: var(--px-font-body-line-height);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--px-font-heading);
	font-weight: var(--px-font-heading-weight);
	color: var(--px-color-black);
}

h1 {
	font-size: var(--px-font-h1-size);
	line-height: var(--px-font-h1-line-height);
}

.nbl-eyebrow,
.nbl-subtitle {
	display: block;
	font-family: var(--px-font-subtitle);
	font-weight: var(--px-font-subtitle-weight);
	font-size: var(--px-font-subtitle-size);
	line-height: var(--px-font-subtitle-line-height);
	color: var(--px-font-subtitle-color);
}

.nbl-icon {
	display: inline-block;
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.nbl-topbar {
	background-color: var(--px-color-gold);
	width: 100%;
}

.nbl-topbar__inner {
	display: flex;
	flex: 1 1 auto;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	align-items: center;
	justify-content: flex-end;
	gap: var(--px-gap-lg);
	padding: var(--px-gap-sm) var(--px-gap-md);
}

.nbl-topbar__item {
	display: inline-flex;
	align-items: center;
	gap: var(--px-gap-sm);
	font-family: var(--px-font-topbar);
	font-weight: var(--px-font-topbar-weight);
	font-size: var(--px-font-topbar-size);
	line-height: var(--px-font-topbar-line-height);
	color: var(--px-font-topbar-color);
	text-decoration: none;
	transition: color var(--px-transition-fast);
}

.nbl-topbar__item:hover,
.nbl-topbar__item:focus-visible {
	color: var(--px-font-topbar-color-hover);
}

.nbl-topbar__icon {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}

@media (max-width: 480px) {
	.nbl-topbar__inner {
		justify-content: center;
		flex-wrap: wrap;
		gap: var(--px-gap-sm);
	}
}

/* Header */

.nbl-header {
	background-color: var(--px-color-bg-dark);
	width: 100%;
}

.nbl-header__inner {
	display: flex;
	flex: 1 1 auto;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	align-items: center;
	gap: var(--px-gap-lg);
	padding: var(--px-gap-md) var(--px-gap-xl);
}

.nbl-header__logo {
	display: inline-flex;
	align-items: center;
	flex-shrink: 0;
	margin-right: var(--px-gap-xl);
}

.nbl-header__logo img {
	max-height: 74px;
	width: auto;
	display: block;
}

.nbl-header__logo-text {
	font-family: var(--px-font-heading);
	font-weight: var(--px-font-heading-weight);
	font-size: var(--px-font-size-md);
	color: var(--px-color-white);
}

.nbl-header__nav {
	flex: 1 1 auto;
	display: flex;
	justify-content: center;
	padding-right: 0;
	transition: padding-right var(--px-transition-base);
}

.nbl-header--search-open .nbl-header__nav {
	padding-right: 340px;
}

.nbl-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--px-gap-lg);
	list-style: none;
	margin: 0;
	padding: 0;
}

.nbl-nav li {
	position: relative;
}

.nbl-nav a {
	display: inline-flex;
	align-items: center;
	gap: var(--px-gap-xs);
	font-family: var(--px-font-nav);
	font-weight: var(--px-font-nav-weight);
	font-size: var(--px-font-nav-size);
	line-height: var(--px-font-nav-line-height);
	color: var(--px-font-nav-color);
	text-decoration: none;
	text-transform: uppercase;
	padding: var(--px-gap-sm) 0;
	transition: color var(--px-transition-fast);
}

.nbl-nav a:hover,
.nbl-nav a:focus-visible,
.nbl-nav .current-menu-item > a {
	color: var(--px-font-nav-color-hover);
}

.nbl-nav .menu-item-has-children > a::after {
	content: '';
	width: 8px;
	height: 8px;
	margin-left: 2px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
	transition: transform var(--px-transition-fast);
}

.nbl-nav .menu-item-has-children:hover > a::after,
.nbl-nav .menu-item-has-children.nbl-nav__item--open > a::after {
	transform: rotate(225deg);
}

.nbl-nav .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 20;
	min-width: 220px;
	background-color: var(--px-color-bg-dark);
	border-top: 2px solid var(--px-color-gold);
	box-shadow: var(--px-shadow-md);
	list-style: none;
	margin: 0;
	padding: var(--px-gap-xs) 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(4px);
	transition: opacity var(--px-transition-fast), transform var(--px-transition-fast), visibility var(--px-transition-fast);
}

.nbl-nav .menu-item-has-children:hover > .sub-menu,
.nbl-nav .menu-item-has-children:focus-within > .sub-menu,
.nbl-nav .menu-item-has-children.nbl-nav__item--open > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.nbl-nav .sub-menu a {
	display: block;
	padding: var(--px-gap-sm) var(--px-gap-md);
	text-transform: none;
}

.nbl-header__actions {
	display: flex;
	align-items: center;
	gap: var(--px-gap-md);
	flex-shrink: 0;
}

.nbl-header__search-toggle,
.nbl-header__menu-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: 0;
	color: var(--px-color-white);
	cursor: pointer;
	padding: var(--px-gap-xs);
	transition: color var(--px-transition-fast);
}

.nbl-header__search-toggle:hover,
.nbl-header__search-toggle:focus-visible,
.nbl-header__menu-toggle:hover,
.nbl-header__menu-toggle:focus-visible {
	color: var(--px-color-gold);
}

.nbl-header__action-icon {
	width: 20px;
	height: 20px;
}

.nbl-header__menu-toggle {
	display: none;
}

.nbl-header__action-icon--close {
	display: none;
}

.nbl-header__menu-toggle[aria-expanded='true'] .nbl-header__action-icon--open {
	display: none;
}

.nbl-header__menu-toggle[aria-expanded='true'] .nbl-header__action-icon--close {
	display: block;
}

.nbl-header__search-toggle[aria-expanded='true'] .nbl-header__action-icon--open {
	display: none;
}

.nbl-header__search-toggle[aria-expanded='true'] .nbl-header__action-icon--close {
	display: block;
}

.nbl-header {
	position: relative;
	overflow: hidden;
}

.nbl-header__inner {
	position: relative;
}

.nbl-header__actions {
	position: relative;
	z-index: 30;
}

.nbl-header__search-form {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: min(320px, 85%);
	z-index: 20;
	display: flex;
	align-items: center;
	background-color: var(--px-color-bg-dark);
	padding: 0 var(--px-gap-md);
	padding-right: 90px;
	transform: translateX(100%);
	opacity: 0;
	visibility: hidden;
	transition: transform var(--px-transition-base), opacity var(--px-transition-base), visibility var(--px-transition-base);
}

.nbl-header__search-form--open {
	transform: translateX(0);
	opacity: 1;
	visibility: visible;
}

.nbl-header__search-input {
	width: 100%;
	display: block;
	background-color: var(--px-color-white);
	border: 0;
	border-radius: var(--px-radius-sm);
	padding: var(--px-gap-sm) var(--px-gap-md);
	font-family: var(--px-font-body);
	font-size: var(--px-font-body-size);
	color: var(--px-color-black);
}

@media (max-width: 1024px) {
	.nbl-header__nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background-color: var(--px-color-bg-dark);
		border-top: 2px solid var(--px-color-gold);
		max-height: 0;
		overflow: hidden;
		transition: max-height var(--px-transition-base);
	}

	.nbl-header__nav--open {
		max-height: 80vh;
		overflow-y: auto;
	}

	.nbl-nav {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: var(--px-gap-sm) var(--px-gap-md);
	}

	.nbl-nav li {
		border-bottom: 1px solid var(--px-color-border);
	}

	.nbl-nav .sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		border-top: 0;
		max-height: 0;
		overflow: hidden;
		transition: max-height var(--px-transition-base);
	}

	.nbl-nav .menu-item-has-children.nbl-nav__item--open > .sub-menu {
		max-height: 500px;
	}

	.nbl-header__menu-toggle {
		display: inline-flex;
	}
}

/* Buttons */

.nbl-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--px-font-nav);
	font-weight: var(--px-font-nav-weight);
	font-size: var(--px-font-nav-size);
	text-decoration: none;
	text-transform: uppercase;
	border-radius: var(--px-radius-sm);
	border: 2px solid transparent;
	transform: translateY( 0 );
	transition: border-color var(--px-transition-fast), transform var(--px-transition-fast);
}

.nbl-btn:hover,
.nbl-btn:focus-visible {
	transform: translateY( -3px );
}

.nbl-btn .nbl-flip-face {
	gap: var(--px-gap-sm);
	padding: var(--px-gap-md) var(--px-gap-xl);
}

.nbl-btn__icon {
	width: 16px;
	height: 16px;
}

.nbl-btn--primary {
	background-color: var(--px-color-gold);
	color: var(--px-color-black);
	border-color: var(--px-color-gold);
}

.nbl-btn--primary:hover,
.nbl-btn--primary:focus-visible {
	border-color: var(--px-color-gold-dark);
}

.nbl-btn--secondary {
	background-color: transparent;
	color: var(--px-color-white);
	border-color: var(--px-color-gold);
}

/* Hero */

.nbl-hero {
	position: relative;
	background-color: var(--px-color-bg-dark);
	overflow: hidden;
	min-height: 620px;
	display: flex;
	align-items: center;
	box-sizing: border-box;
}

.nbl-hero--border {
	border-style: solid;
}

.nbl-hero--border-gold {
	border-color: var(--px-color-gold);
}

.nbl-hero--border-white {
	border-color: var(--px-color-white);
}

.nbl-hero--border-width-thin {
	border-width: 4px;
}

.nbl-hero--border-width-medium {
	border-width: 10px;
}

.nbl-hero--border-width-thick {
	border-width: 16px;
}

.nbl-hero--border-width-extra {
	border-width: 24px;
}

.nbl-hero__media {
	position: absolute;
	inset: 0;
	z-index: 1;
	display: flex;
	gap: var(--px-gap-sm);
	background-color: var(--px-color-white);
}

.nbl-hero__panel {
	position: relative;
	overflow: hidden;
	background-color: var(--px-color-bg-dark);
	flex: 1 1 0%;
	transition: flex-grow var(--px-transition-slow);
}

.nbl-hero__panel:nth-child( 1 ) {
	flex-grow: 60;
}

.nbl-hero__panel:nth-child( 2 ),
.nbl-hero__panel:nth-child( 3 ),
.nbl-hero__panel:nth-child( 4 ) {
	flex-grow: 13.33;
}

@media ( hover: hover ) and ( pointer: fine ) {
	.nbl-hero__panel:nth-child( 2 ):hover,
	.nbl-hero__panel:nth-child( 3 ):hover,
	.nbl-hero__panel:nth-child( 4 ):hover {
		flex-grow: 23.33;
	}
}

.nbl-hero__panel-media {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.nbl-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 2;
	background: linear-gradient( 90deg, rgba( 0, 0, 0, 0.85 ) 0%, rgba( 0, 0, 0, 0.65 ) 30%, rgba( 0, 0, 0, 0.25 ) 50%, rgba( 0, 0, 0, 0.05 ) 62%, rgba( 0, 0, 0, 0.05 ) 100% );
	pointer-events: none;
}

.nbl-hero__panel-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background-color: var(--px-color-black);
	pointer-events: none;
}

.nbl-hero__panel-overlay--light {
	opacity: 0.2;
}

.nbl-hero__panel-overlay--medium {
	opacity: 0.4;
}

.nbl-hero__panel-overlay--dark {
	opacity: 0.6;
}

.nbl-hero__panel-overlay--darker {
	opacity: 0.8;
}

.nbl-hero__inner {
	position: relative;
	z-index: 3;
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	padding: var(--px-gap-2xl) var(--px-gap-xl);
	pointer-events: none;
}

.nbl-hero__content {
	max-width: 640px;
	pointer-events: auto;
	text-shadow: 0 2px 12px rgba( 0, 0, 0, 0.5 );
}

.nbl-hero__eyebrow {
	color: var(--px-color-gold);
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: var(--px-gap-md);
}

.nbl-hero__heading {
	font-family: var(--px-font-heading);
	font-weight: 800;
	font-size: var(--px-font-hero-heading-size);
	line-height: var(--px-font-hero-heading-line-height);
	text-transform: uppercase;
	margin: 0 0 var(--px-gap-lg);
}

.nbl-hero__heading-line {
	display: block;
	color: var(--px-color-white);
}

.nbl-hero__heading-line--accent {
	color: var(--px-color-gold);
}

.nbl-hero__subtitle {
	color: rgba( 255, 255, 255, 0.75 );
	font-family: var(--px-font-body);
	font-size: var(--px-font-body-size);
	line-height: var(--px-font-body-line-height);
	max-width: 480px;
	margin: 0 0 var(--px-gap-xl);
}

.nbl-hero__features {
	display: flex;
	flex-wrap: wrap;
	gap: var(--px-gap-lg);
	list-style: none;
	margin: 0 0 var(--px-gap-xl);
	padding: 0;
}

.nbl-hero__feature {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--px-gap-sm);
	padding-right: var(--px-gap-lg);
	border-right: 1px solid rgba( 255, 255, 255, 0.25 );
}

.nbl-hero__feature:last-child {
	border-right: 0;
	padding-right: 0;
}

.nbl-hero__feature-icon {
	width: 28px;
	height: 28px;
	color: var(--px-color-gold);
}

.nbl-hero__feature-label {
	font-family: var(--px-font-nav);
	font-weight: var(--px-font-nav-weight);
	font-size: var(--px-font-topbar-size);
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: var(--px-color-white);
}

.nbl-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--px-gap-md);
}

@media (max-width: 768px) {
	.nbl-hero {
		min-height: 520px;
	}

	.nbl-hero__inner {
		padding: var(--px-gap-xl) var(--px-gap-md);
	}

	.nbl-hero__panel:nth-child( 1 ),
	.nbl-hero__panel:nth-child( 2 ),
	.nbl-hero__panel:nth-child( 3 ),
	.nbl-hero__panel:nth-child( 4 ) {
		flex-grow: 1;
	}
}

/* Why Choose Us */

.nbl-wcu {
	position: relative;
	background-color: var(--px-color-white);
	padding: var(--px-gap-2xl) 120px;
}

.nbl-wcu__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-size: cover;
	background-position: center;
}

.nbl-wcu__box {
	position: relative;
	z-index: 1;
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}

.nbl-wcu__eyebrow {
	color: var(--px-color-gold);
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: var(--px-gap-sm);
}

.nbl-wcu__heading {
	font-family: var(--px-font-heading);
	font-weight: var(--px-font-heading-weight);
	font-size: var(--px-font-h1-size);
	line-height: var(--px-font-h1-line-height);
	color: var(--px-color-black);
	max-width: 760px;
	margin: 0 auto var(--px-gap-md);
}

.nbl-wcu__subtitle {
	color: var(--px-color-secondary);
	font-family: var(--px-font-body);
	font-size: var(--px-font-body-size);
	line-height: var(--px-font-body-line-height);
	max-width: 620px;
	margin: 0 auto var(--px-gap-2xl);
}

.nbl-richtext p {
	margin: 0;
}

.nbl-richtext strong {
	color: inherit;
	font-weight: 700;
}

.nbl-richtext a {
	color: var(--px-color-gold);
	text-decoration: underline;
	transition: color var(--px-transition-fast);
}

.nbl-richtext a:hover,
.nbl-richtext a:focus-visible {
	color: var(--px-color-black);
}

.nbl-wcu__carousel {
	position: relative;
	margin-bottom: var(--px-gap-xl);
}

.nbl-slider__track {
	display: flex;
	align-items: stretch;
	gap: var(--px-gap-lg);
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	padding: 44px 0 var(--px-gap-2xl);
}

.nbl-slider__track::-webkit-scrollbar {
	display: none;
}

.nbl-slider__item {
	scroll-snap-align: start;
	flex: 0 0 auto;
	display: flex;
	width: calc( ( 100% - 3 * var(--px-gap-lg) ) / 3.5 );
}

@media (max-width: 1024px) {
	.nbl-slider__item {
		width: calc( ( 100% - 1 * var(--px-gap-lg) ) / 2.5 );
	}
}

@media (max-width: 768px) {
	.nbl-slider__track {
		gap: var(--px-gap-md);
	}

	.nbl-slider__item {
		width: 92vw;
	}
}

.nbl-wcu__card {
	position: relative;
	height: 100%;
	background-color: var(--px-color-white);
	background-clip: padding-box, border-box;
	background-origin: padding-box, border-box;
	background-image: linear-gradient( var(--px-color-white), var(--px-color-white) ), var(--px-gradient-gold);
	border: 2px solid transparent;
	border-radius: var(--px-radius-lg);
	box-shadow: var(--px-shadow-md);
	padding: 56px var(--px-gap-lg) var(--px-gap-xl);
	margin-top: 44px;
	text-align: center;
	box-sizing: border-box;
}

.nbl-wcu__card-media {
	position: absolute;
	top: -44px;
	left: 50%;
	transform: translateX( -50% );
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 88px;
	height: 88px;
	border-radius: var(--px-radius-full);
	background-image: linear-gradient( var(--px-color-white), var(--px-color-white) ), var(--px-gradient-gold);
	background-clip: padding-box, border-box;
	background-origin: padding-box, border-box;
	border: 2px solid transparent;
	box-shadow: var(--px-shadow-sm);
}

.nbl-wcu__card-icon {
	width: 40px;
	height: 40px;
	color: var(--px-color-gold);
}

.nbl-wcu__card-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: var(--px-radius-full);
}

.nbl-wcu__card-title {
	position: relative;
	font-family: var(--px-font-heading);
	font-weight: var(--px-font-heading-weight);
	font-size: var(--px-font-size-md);
	color: var(--px-color-black);
	margin: var(--px-gap-md) 0;
	padding-bottom: var(--px-gap-md);
}

.nbl-wcu__card-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX( -50% );
	width: 32px;
	height: 2px;
	background: var(--px-gradient-gold);
}

.nbl-wcu__card-description {
	color: var(--px-color-secondary);
	font-family: var(--px-font-body);
	font-size: var(--px-font-size-sm);
	line-height: var(--px-font-body-line-height);
	margin: 0;
}

.nbl-slider__controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--px-gap-md);
	margin-top: var(--px-gap-xl);
}

.nbl-slider__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: var(--px-radius-full);
	border: 2px solid transparent !important;
	background: var(--px-gradient-gold) !important;
	background-size: 200% 100% !important;
	background-position: right center !important;
	color: var(--px-color-white) !important;
	cursor: pointer;
	outline: none;
	transform: translateY( 0 );
	transition: background-position 600ms ease, box-shadow var(--px-transition-fast), transform var(--px-transition-fast);
}

.nbl-slider__arrow:hover,
.nbl-slider__arrow:focus-visible,
.nbl-slider__arrow:active,
.nbl-slider__arrow:focus {
	background-position: left center !important;
	transform: translateY( -3px );
}

.nbl-slider__arrow:focus-visible {
	box-shadow: 0 0 0 3px rgba( 245, 166, 35, 0.35 );
}

.nbl-slider__arrow-icon {
	width: 20px;
	height: 20px;
}

.nbl-slider__dots {
	display: flex;
	align-items: center;
	gap: var(--px-gap-sm);
}

.nbl-slider__dot {
	display: inline-block;
	width: 8px;
	height: 8px;
	padding: 0;
	border: 0;
	border-radius: var(--px-radius-full);
	background: var(--px-color-border);
	cursor: pointer;
	transition: background var(--px-transition-fast), transform var(--px-transition-fast);
}

.nbl-slider__dot.is-active {
	background: var(--px-gradient-gold);
	transform: scale( 1.25 );
}

.nbl-wcu__stats {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: var(--px-gap-xl);
	list-style: none;
	margin: 0;
	padding: var(--px-gap-lg) var(--px-gap-xl);
	border: 1px solid var(--px-color-gold);
	border-radius: var(--px-radius-md);
}

.nbl-wcu__stat {
	display: inline-flex;
	align-items: center;
	gap: var(--px-gap-sm);
}

.nbl-wcu__stat-icon {
	width: 24px;
	height: 24px;
	color: var(--px-color-gold);
}

.nbl-wcu__stat-text {
	font-family: var(--px-font-heading);
	font-weight: var(--px-font-heading-weight);
	font-size: var(--px-font-size-sm);
	color: var(--px-color-black);
}

@media (max-width: 768px) {
	.nbl-wcu {
		padding: var(--px-gap-xl) var(--px-gap-md);
	}

	.nbl-wcu__box {
		padding: var(--px-gap-xl) var(--px-gap-md);
	}

	.nbl-wcu__stats {
		gap: var(--px-gap-md) var(--px-gap-lg);
		padding: var(--px-gap-md) var(--px-gap-lg);
	}
}

/* Brands Intro */

.nbl-brands-intro {
	position: relative;
	background-color: var(--px-color-white);
	overflow: hidden;
}

.nbl-brands-intro__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-size: cover;
	background-position: 85% 45%;
}

.nbl-brands-intro__dark-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background-color: var(--px-color-black);
}

.nbl-brands-intro__dark-overlay--light {
	opacity: 0.2;
}

.nbl-brands-intro__dark-overlay--medium {
	opacity: 0.4;
}

.nbl-brands-intro__dark-overlay--dark {
	opacity: 0.6;
}

.nbl-brands-intro__dark-overlay--darker {
	opacity: 0.8;
}

.nbl-brands-intro__inner {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	min-height: 420px;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: var(--px-gap-2xl) 120px;
}

.nbl-brands-intro__content {
	max-width: 560px;
	text-shadow: 0 1px 8px rgba( 255, 255, 255, 0.6 );
}

.nbl-brands-intro__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: var(--px-gap-md);
	color: var(--px-color-gold);
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: var(--px-gap-md);
}

.nbl-brands-intro__eyebrow::before,
.nbl-brands-intro__eyebrow::after {
	content: '';
	width: 32px;
	height: 2px;
	background: var(--px-gradient-gold);
}

.nbl-brands-intro__heading {
	font-family: var(--px-font-heading);
	font-weight: var(--px-font-heading-weight);
	font-size: var(--px-font-h1-size);
	line-height: var(--px-font-h1-line-height);
	text-transform: uppercase;
	margin: 0 0 var(--px-gap-lg);
}

.nbl-brands-intro__heading-line {
	display: block;
	color: var(--px-color-black);
}

.nbl-brands-intro__heading-line--accent {
	color: var(--px-color-gold);
}

.nbl-brands-intro__subtitle {
	color: var(--px-color-secondary);
	font-family: var(--px-font-body);
	font-size: var(--px-font-body-size);
	line-height: var(--px-font-body-line-height);
	max-width: 440px;
	padding-left: var(--px-gap-md);
	border-left: 3px solid var(--px-color-gold);
}

.nbl-brands-intro__logos-inner {
	position: relative;
	z-index: 2;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 120px var(--px-gap-2xl);
	text-align: center;
}

.nbl-brands-intro__logos-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: var(--px-gap-md);
	color: var(--px-color-gold);
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: var(--px-gap-sm);
}

.nbl-brands-intro__logos-eyebrow::before,
.nbl-brands-intro__logos-eyebrow::after {
	content: '';
	width: 32px;
	height: 2px;
	background: var(--px-gradient-gold);
}

.nbl-brands-intro__logos-heading {
	font-family: var(--px-font-heading);
	font-weight: var(--px-font-heading-weight);
	font-size: var(--px-font-size-xl);
	color: var(--px-color-black);
	margin: 0 0 var(--px-gap-xl);
}

.nbl-brands-intro__logos-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--px-gap-lg);
}

.nbl-bi-brand {
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex: 0 1 160px;
	padding: 0 var(--px-gap-md) var(--px-gap-lg);
	border-radius: var(--px-radius-lg);
}

.nbl-bi-brand__logo {
	width: calc( 100% + var(--px-gap-md) * 2 );
	margin: 0 calc( var(--px-gap-md) * -1 );
	max-height: 60px;
	height: auto;
	object-fit: contain;
}

.nbl-bi-brand__reveal {
	max-height: 0;
	opacity: 0;
	margin-top: 0;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--px-gap-md);
	width: 100%;
	transition: max-height 900ms ease, opacity 700ms ease, margin-top 900ms ease;
}

@media ( hover: hover ) and ( pointer: fine ) {
	.nbl-bi-brand:hover .nbl-bi-brand__reveal {
		max-height: 340px;
		opacity: 1;
		margin-top: var(--px-gap-lg);
	}
}

.nbl-bi-brand__reveal-image {
	width: calc( 100% + var(--px-gap-md) * 2 );
	margin: 0 calc( var(--px-gap-md) * -1 );
	max-height: 230px;
	height: auto;
	object-fit: contain;
}

.nbl-bi-brand__reveal-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	font-family: var(--px-font-nav);
	font-weight: var(--px-font-nav-weight);
	font-size: var(--px-font-topbar-size);
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: var(--px-color-white);
	text-decoration: none;
	border-radius: var(--px-radius-md);
	transform: translateY( 0 );
	transition: transform var(--px-transition-fast);
}

.nbl-bi-brand__reveal-link:hover,
.nbl-bi-brand__reveal-link:focus-visible {
	transform: translateY( -3px );
}

.nbl-bi-brand__reveal-link .nbl-flip-face {
	gap: var(--px-gap-xs);
	padding: var(--px-gap-sm) var(--px-gap-lg);
}

.nbl-bi-brand__reveal-link-icon {
	width: 14px;
	height: 14px;
}

@media (max-width: 1024px) {
	.nbl-brands-intro__inner {
		padding: var(--px-gap-xl) var(--px-gap-lg);
	}

	.nbl-brands-intro__logos-inner {
		padding: 0 var(--px-gap-lg) var(--px-gap-xl);
	}
}

@media (max-width: 768px) {
	.nbl-brands-intro__inner {
		padding: var(--px-gap-xl) var(--px-gap-md);
	}

	.nbl-brands-intro__logos-inner {
		padding: 0 var(--px-gap-md) var(--px-gap-xl);
	}

	.nbl-bi-brand {
		flex: 0 1 calc( 50% - var(--px-gap-lg) / 2 );
	}
}

/* Delivery Coverage */

.nbl-dc {
	background-color: var(--px-color-white);
}

.nbl-dc__inner {
	display: flex;
	align-items: stretch;
	gap: var(--px-gap-2xl);
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 120px;
}

.nbl-dc__content {
	flex: 1 1 58%;
	padding: var(--px-gap-2xl) 0;
}

.nbl-dc__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: var(--px-gap-md);
	color: var(--px-color-gold);
	text-transform: uppercase;
	letter-spacing: 2px;
	font-family: var(--px-font-nav);
	font-weight: var(--px-font-nav-weight);
	font-size: var(--px-font-topbar-size);
	margin-bottom: var(--px-gap-md);
}

.nbl-dc__eyebrow::before,
.nbl-dc__eyebrow::after {
	content: '';
	width: 32px;
	height: 2px;
	background: var(--px-gradient-gold);
}

.nbl-dc__heading {
	font-family: var(--px-font-heading);
	font-weight: var(--px-font-heading-weight);
	font-size: clamp( 30px, 3vw, 44px );
	line-height: 1.15;
	margin: 0 0 var(--px-gap-lg);
}

.nbl-dc__heading-line {
	display: block;
	color: var(--px-color-black);
}

.nbl-dc__heading-line--accent {
	color: var(--px-color-gold);
}

.nbl-dc__subtitle {
	color: var(--px-color-secondary);
	font-family: var(--px-font-body);
	font-size: var(--px-font-body-size);
	line-height: var(--px-font-body-line-height);
	max-width: 480px;
	margin-bottom: var(--px-gap-xl);
}

.nbl-dc__features {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--px-gap-lg) var(--px-gap-xl);
	margin-bottom: var(--px-gap-xl);
}

.nbl-dc__feature {
	display: flex;
	align-items: flex-start;
	gap: var(--px-gap-md);
	padding-bottom: var(--px-gap-lg);
}

.nbl-dc__feature:nth-child( -n+2 ) {
	border-bottom: 1px solid var(--px-color-border);
}

.nbl-dc__feature:nth-child( odd ) {
	border-right: 1px solid var(--px-color-border);
	padding-right: var(--px-gap-lg);
}

.nbl-dc__feature-icon-wrap {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	border-radius: var(--px-radius-full);
	border: 2px solid var(--px-color-gold);
}

.nbl-dc__feature-icon {
	width: 22px;
	height: 22px;
	color: var(--px-color-gold);
}

.nbl-dc__feature-title {
	font-family: var(--px-font-heading);
	font-weight: var(--px-font-heading-weight);
	font-size: var(--px-font-size-base);
	color: var(--px-color-black);
	margin: 0 0 var(--px-gap-xs);
}

.nbl-dc__feature-description {
	color: var(--px-color-secondary);
	font-family: var(--px-font-body);
	font-size: var(--px-font-size-sm);
	line-height: var(--px-font-body-line-height);
}

.nbl-dc__banner {
	display: flex;
	align-items: center;
	gap: var(--px-gap-lg);
	border: 1px solid var(--px-color-border);
	border-radius: var(--px-radius-md);
	padding: var(--px-gap-lg);
}

.nbl-dc__banner-icon-wrap {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 64px;
	height: 64px;
	border-radius: var(--px-radius-full);
	background: var(--px-color-gold-light);
}

.nbl-dc__banner-icon {
	width: 30px;
	height: 30px;
	color: var(--px-color-gold);
}

.nbl-dc__banner-text {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
}

.nbl-dc__banner-line {
	font-family: var(--px-font-heading);
	font-weight: var(--px-font-heading-weight);
	font-size: var(--px-font-size-base);
}

.nbl-dc__banner-line--primary {
	color: var(--px-color-black);
}

.nbl-dc__banner-line--accent {
	color: var(--px-color-gold);
}

.nbl-dc__banner-btn {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	font-family: var(--px-font-nav);
	font-weight: var(--px-font-nav-weight);
	font-size: var(--px-font-topbar-size);
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: var(--px-color-white);
	text-decoration: none;
	border-radius: var(--px-radius-sm);
	transform: translateY( 0 );
	transition: transform var(--px-transition-fast);
}

.nbl-dc__banner-btn .nbl-flip-face {
	gap: var(--px-gap-xs);
	padding: var(--px-gap-md) var(--px-gap-lg);
}

.nbl-dc__banner-btn:hover,
.nbl-dc__banner-btn:focus-visible {
	transform: translateY( -3px );
}

.nbl-dc__banner-btn-icon {
	width: 14px;
	height: 14px;
}

.nbl-dc__media {
	flex: 1 1 42%;
	align-self: stretch;
}

.nbl-dc__map-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	filter: grayscale( 100% );
	transition: filter var(--px-transition-slow);
}

@media ( hover: hover ) and ( pointer: fine ) {
	.nbl-dc__media:hover .nbl-dc__map-image {
		filter: grayscale( 0% );
	}
}

@media (max-width: 1024px) {
	.nbl-dc__inner {
		padding: var(--px-gap-xl) var(--px-gap-lg);
	}
}

@media (max-width: 900px) {
	.nbl-dc__inner {
		flex-direction: column;
	}

	.nbl-dc__content {
		padding: var(--px-gap-xl) 0;
	}

	.nbl-dc__media {
		width: 100%;
		min-height: 320px;
	}
}

@media (max-width: 768px) {
	.nbl-dc__inner {
		padding: var(--px-gap-xl) var(--px-gap-md);
	}

	.nbl-dc__features {
		grid-template-columns: 1fr;
	}

	.nbl-dc__feature:nth-child( odd ) {
		border-right: 0;
		padding-right: 0;
	}

	.nbl-dc__feature:nth-child( -n+2 ) {
		border-bottom: 1px solid var(--px-color-border);
	}

	.nbl-dc__banner {
		flex-wrap: wrap;
	}
}

/* Best Sellers */

.nbl-bs {
	background-color: var(--px-color-white);
	border-top: 1px solid var(--px-color-border);
	border-bottom: 1px solid var(--px-color-border);
	padding: var(--px-gap-2xl) 0;
}

.nbl-bs__inner {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 120px;
}

.nbl-bs__top {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: var(--px-gap-lg);
	margin-bottom: var(--px-gap-xl);
}

.nbl-bs__eyebrow {
	display: block;
	color: var(--px-color-gold);
	font-family: var(--px-font-nav);
	font-weight: var(--px-font-nav-weight);
	font-size: var(--px-font-topbar-size);
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: var(--px-gap-sm);
}

.nbl-bs__heading {
	font-family: var(--px-font-heading);
	font-weight: var(--px-font-heading-weight);
	font-size: clamp( 28px, 2.4vw + 1rem, 40px );
	line-height: 1.15;
	color: var(--px-color-black);
	margin: 0;
}

.nbl-bs__view-all {
	display: inline-flex;
	align-items: center;
	font-family: var(--px-font-nav);
	font-weight: var(--px-font-nav-weight);
	font-size: var(--px-font-nav-size);
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: var(--px-color-black);
	text-decoration: none;
	border: 2px solid var(--px-color-black);
	border-radius: var(--px-radius-full);
	transition: border-color var(--px-transition-fast);
}

.nbl-bs__view-all .nbl-flip-face {
	gap: var(--px-gap-sm);
	padding: var(--px-gap-sm) var(--px-gap-xl);
}

.nbl-bs__view-all-icon {
	width: 16px;
	height: 16px;
	transition: transform var(--px-transition-fast), color var(--px-transition-fast);
}

.nbl-bs__view-all:hover .nbl-bs__view-all-icon,
.nbl-bs__view-all:focus-visible .nbl-bs__view-all-icon {
	transform: translateX( 4px );
}

.nbl-bs__grid {
	display: grid;
	grid-template-columns: repeat( 4, 1fr );
	gap: var(--px-gap-lg);
}

.nbl-bs__grid--count-1 {
	grid-template-columns: 1fr;
	max-width: 320px;
	margin: 0 auto;
}

.nbl-bs__grid--count-2 {
	grid-template-columns: repeat( 2, 1fr );
	max-width: 660px;
	margin: 0 auto;
}

.nbl-bs__grid--count-3 {
	grid-template-columns: repeat( 3, 1fr );
}

.nbl-bs__card {
	position: relative;
	display: flex;
	flex-direction: column;
	background-color: var(--px-color-white);
	border: 1px solid var(--px-color-border);
	border-radius: var(--px-radius-lg);
	padding: var(--px-gap-lg);
	overflow: hidden;
	opacity: 0;
	transform: translateY( 28px );
	transition: transform 0.3s ease, border-color 0.3s ease, opacity 0.5s ease;
}

.nbl-bs__card.is-visible {
	opacity: 1;
	transform: translateY( 0 );
}

.nbl-bs__card:hover {
	border-color: var(--px-color-gold);
}

.nbl-bs__card-link {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.nbl-bs__badge {
	position: absolute;
	top: var(--px-gap-md);
	left: var(--px-gap-md);
	z-index: 2;
	background-color: var(--px-color-black);
	color: var(--px-color-gold);
	font-family: var(--px-font-nav);
	font-weight: var(--px-font-nav-weight);
	font-size: var(--px-font-topbar-size);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	padding: var(--px-gap-xs) var(--px-gap-md);
	border-radius: var(--px-radius-full);
}

.nbl-bs__image-wrap {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 220px;
	margin: calc( -1 * var(--px-gap-lg) ) calc(-1 * var(--px-gap-lg)) var(--px-gap-md);
	overflow: hidden;
	text-decoration: none;
}

.nbl-bs__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	box-shadow:
		inset 2px 2px 4px rgba( 255, 255, 255, 0.6 ),
		inset -3px -3px 8px rgba( 0, 0, 0, 0.25 );
	transition: box-shadow 0.35s ease;
}

.nbl-bs__card:hover .nbl-bs__image {
	box-shadow:
		inset -2px -2px 4px rgba( 255, 255, 255, 0.45 ),
		inset 3px 3px 8px rgba( 0, 0, 0, 0.45 );
}

.nbl-bs__brand {
	display: block;
	color: var(--px-color-gold-dark);
	font-family: var(--px-font-nav);
	font-weight: var(--px-font-nav-weight);
	font-size: var(--px-font-topbar-size);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: var(--px-gap-xs);
}

.nbl-bs__name-row {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: var(--px-gap-sm);
	margin: 0 0 var(--px-gap-xs);
}

.nbl-bs__name {
	font-family: var(--px-font-heading);
	font-weight: var(--px-font-heading-weight);
	font-size: var(--px-font-size-base);
	color: var(--px-color-black);
	margin: 0;
}

.nbl-bs__favorite-btn {
	flex-shrink: 0;
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	background: transparent !important;
	border: 0 !important;
	padding: 0;
	color: var(--px-color-black);
	cursor: pointer;
	transition: transform var(--px-transition-fast), color var(--px-transition-fast);
}

.nbl-bs__favorite-btn:hover,
.nbl-bs__favorite-btn:focus-visible,
.nbl-bs__favorite-btn:active,
.nbl-bs__favorite-btn:focus {
	background: transparent !important;
	color: var(--px-color-gold);
	transform: scale( 1.08 );
}

.nbl-bs__favorite-icon {
	position: absolute;
	width: 20px;
	height: 20px;
	transition: opacity var(--px-transition-fast);
}

.nbl-bs__favorite-icon--outline {
	opacity: 1;
}

.nbl-bs__favorite-icon--solid {
	opacity: 0;
}

.nbl-bs__favorite-btn.is-active .nbl-bs__favorite-icon--outline {
	opacity: 0;
}

.nbl-bs__favorite-btn.is-active .nbl-bs__favorite-icon--solid {
	opacity: 1;
}

.nbl-bs__favorite-btn.is-loading {
	opacity: 0.6;
	pointer-events: none;
}

.nbl-bs__empty {
	text-align: center;
	padding: var(--px-gap-2xl) var(--px-gap-md);
}

.nbl-bs__empty p {
	color: var(--px-color-secondary);
	margin: 0 0 var(--px-gap-lg);
}

.nbl-bs__spec {
	display: block;
	color: var(--px-color-secondary);
	font-family: var(--px-font-nav);
	font-size: var(--px-font-topbar-size);
	margin-bottom: var(--px-gap-md);
}

.nbl-bs__rating {
	display: flex;
	align-items: center;
	gap: var(--px-gap-sm);
	margin-bottom: var(--px-gap-lg);
}

.nbl-bs__stars {
	display: inline-flex;
	gap: 2px;
}

.nbl-bs__star {
	width: 14px;
	height: 14px;
	color: var(--px-color-gold);
}

.nbl-bs__rating-text {
	color: var(--px-color-secondary);
	font-family: var(--px-font-body);
	font-size: var(--px-font-topbar-size);
}

.nbl-bs__bottom {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--px-gap-md);
	margin-top: auto;
	padding-top: var(--px-gap-md);
	border-top: 1px solid var(--px-color-border);
}

.nbl-bs__actions {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	gap: var(--px-gap-sm);
}

.nbl-bs__price-wrap {
	display: flex;
	flex-direction: column;
}

.nbl-bs__price {
	font-family: var(--px-font-heading);
	font-weight: var(--px-font-heading-weight);
	font-size: var(--px-font-size-md);
	color: var(--px-color-black);
}

.nbl-bs__price del {
	display: block;
	font-family: var(--px-font-body);
	font-weight: var(--px-font-body-weight);
	font-size: var(--px-font-topbar-size);
	color: var(--px-color-gold);
}

.nbl-bs__price ins {
	display: block;
	text-decoration: none;
}

.nbl-bs__basket-btn {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: var(--px-radius-full) !important;
	background-color: var(--px-color-black) !important;
	color: var(--px-color-white) !important;
	border: 0 !important;
	transition: background-color var(--px-transition-fast), color var(--px-transition-fast), transform var(--px-transition-fast);
}

.nbl-bs__basket-btn:hover,
.nbl-bs__basket-btn:focus-visible {
	background-color: var(--px-color-gold) !important;
	color: var(--px-color-black) !important;
	transform: scale( 1.08 );
}

.nbl-bs__basket-icon {
	width: 16px;
	height: 16px;
}

.nbl-bs__buynow-btn {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	height: 36px;
	border-radius: var(--px-radius-full);
	color: var(--px-color-black);
	border: 2px solid var(--px-color-black);
	font-family: var(--px-font-nav);
	font-weight: var(--px-font-nav-weight);
	font-size: 11px;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	text-decoration: none;
	white-space: nowrap;
	transition: border-color var(--px-transition-fast);
}

.nbl-bs__buynow-btn .nbl-flip-face {
	height: 100%;
	padding: 0 var(--px-gap-md);
}

@media (max-width: 1000px) {
	.nbl-bs__grid {
		grid-template-columns: repeat( 2, 1fr );
	}
}

@media (max-width: 768px) {
	.nbl-bs {
		padding: var(--px-gap-xl) 0;
	}

	.nbl-bs__inner {
		padding: 0 var(--px-gap-md);
	}
}

@media (max-width: 560px) {
	.nbl-bs__grid {
		grid-template-columns: 1fr;
	}
}

/* Shop by Category */

.nbl-cat {
	background-color: var(--px-color-white);
	padding: var(--px-gap-2xl) 0;
}

.nbl-cat__inner {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 120px;
}

.nbl-cat__header {
	max-width: 680px;
	margin: 0 auto var(--px-gap-2xl);
	text-align: center;
}

.nbl-cat__eyebrow {
	display: block;
	color: var(--px-color-gold-dark);
	font-family: var(--px-font-nav);
	font-weight: var(--px-font-nav-weight);
	font-size: var(--px-font-topbar-size);
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: var(--px-gap-sm);
}

.nbl-cat__heading {
	font-family: var(--px-font-heading);
	font-weight: var(--px-font-heading-weight);
	font-size: clamp( 28px, 2.4vw + 1rem, 40px );
	line-height: 1.15;
	color: var(--px-color-black);
	margin: 0 0 var(--px-gap-md);
}

.nbl-cat__subtext {
	color: var(--px-color-secondary);
	font-family: var(--px-font-body);
	font-size: var(--px-font-body-size);
	line-height: var(--px-font-body-line-height);
}

.nbl-cat__grid {
	display: grid;
	grid-template-columns: repeat( 3, 1fr );
	gap: var(--px-gap-lg);
}

.nbl-cat__card {
	position: relative;
	overflow: hidden;
	background-color: var(--px-color-surface);
	border: 1px solid var(--px-color-border);
	border-radius: var(--px-radius-lg);
	padding: var(--px-gap-xl) var(--px-gap-lg) var(--px-gap-lg);
	opacity: 0;
	transform: translateY( 28px );
	transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, opacity 0.5s ease;
}

.nbl-cat__card.is-visible {
	opacity: 1;
	transform: translateY( 0 );
}

.nbl-cat__card:hover {
	transform: translateY( -8px );
	border-color: var(--px-color-gold);
	box-shadow: var(--px-shadow-lg);
}

.nbl-cat__card.is-visible:hover {
	transform: translateY( -8px );
}

.nbl-cat__bg-image {
	position: absolute;
	right: -30px;
	bottom: -30px;
	z-index: 0;
	width: 150px;
	height: auto;
	opacity: 0.14;
	transition: transform 0.5s ease, opacity 0.5s ease;
}

.nbl-cat__card:hover .nbl-cat__bg-image {
	transform: rotate( 18deg ) scale( 1.08 );
	opacity: 0.22;
}

.nbl-cat__icon-wrap {
	position: relative;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	border-radius: var(--px-radius-full);
	background: var(--px-gradient-gold);
	box-shadow: var(--px-shadow-md);
	margin-bottom: var(--px-gap-md);
}

.nbl-cat__icon {
	width: 26px;
	height: 26px;
	object-fit: contain;
}

.nbl-cat__name {
	position: relative;
	z-index: 2;
	font-family: var(--px-font-heading);
	font-weight: var(--px-font-heading-weight);
	font-size: var(--px-font-size-md);
	color: var(--px-color-black);
	margin: 0 0 var(--px-gap-sm);
}

.nbl-cat__description {
	position: relative;
	z-index: 2;
	color: var(--px-color-secondary);
	font-family: var(--px-font-body);
	font-size: var(--px-font-size-sm);
	line-height: var(--px-font-body-line-height);
	margin-bottom: var(--px-gap-md);
}

.nbl-cat__link {
	position: relative;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	gap: var(--px-gap-xs);
	color: var(--px-color-gold-dark);
	font-family: var(--px-font-nav);
	font-weight: var(--px-font-nav-weight);
	font-size: var(--px-font-topbar-size);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	text-decoration: none;
}

.nbl-cat__link-icon {
	width: 14px;
	height: 14px;
	transition: transform 0.25s ease;
}

.nbl-cat__link:hover .nbl-cat__link-icon,
.nbl-cat__link:focus-visible .nbl-cat__link-icon {
	transform: translateX( 4px );
}

@media (max-width: 900px) {
	.nbl-cat__grid {
		grid-template-columns: repeat( 2, 1fr );
	}
}

@media (max-width: 768px) {
	.nbl-cat {
		padding: var(--px-gap-xl) 0;
	}

	.nbl-cat__inner {
		padding: 0 var(--px-gap-md);
	}
}

@media (max-width: 560px) {
	.nbl-cat__grid {
		grid-template-columns: 1fr;
	}
}

/* Voyage Banner */

.nbl-voyage {
	width: 100vw;
	margin-left: calc( 50% - 50vw );
	margin-right: calc( 50% - 50vw );
	min-height: 100vh;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--px-gradient-gold);
}

.nbl-voyage__marquee {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	overflow: hidden;
	z-index: 1;
	pointer-events: none;
	user-select: none;
}

.nbl-voyage__marquee-track {
	display: flex;
	gap: 80px;
	transform: translateX( var(--vy-tag-x, 0px) );
	will-change: transform;
}

.nbl-voyage__tagline {
	font-family: var(--px-font-heading);
	font-weight: var(--px-font-heading-weight);
	font-size: 120px;
	line-height: 1;
	color: var(--px-color-black);
	white-space: nowrap;
	letter-spacing: -2px;
	flex-shrink: 0;
}

.nbl-voyage__decor {
	position: absolute;
	top: 6%;
	right: 3%;
	width: 38%;
	max-width: 520px;
	object-fit: contain;
	pointer-events: none;
	z-index: 2;
	transform: translateX( var(--vy-decor-x, 0px) );
	will-change: transform;
}

.nbl-voyage__arc {
	position: absolute;
	width: 68%;
	max-width: 700px;
	top: 50%;
	left: 50%;
	transform: translate( -50%, -50% );
	pointer-events: none;
	z-index: 2;
	color: rgba( 0, 0, 0, 0.15 );
}

.nbl-voyage__image-wrap {
	position: absolute;
	top: 30px;
	bottom: 0;
	left: 50%;
	transform: translateX( calc( -50% + var(--vy-img-x, 0px) ) );
	z-index: 3;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	pointer-events: none;
	will-change: transform;
}

.nbl-voyage__image {
	height: 100%;
	width: auto;
	max-width: none;
	object-fit: contain;
	object-position: bottom;
	display: block;
}

@media (max-width: 768px) {
	.nbl-voyage {
		min-height: 620px;
	}

	.nbl-voyage__marquee {
		z-index: 5;
		align-items: flex-start;
		padding-top: 100px;
	}

	.nbl-voyage__tagline {
		font-size: 72px;
	}

	.nbl-voyage__image-wrap {
		top: auto;
		bottom: 0;
		height: 80%;
		z-index: 2;
	}

	.nbl-voyage__image {
		height: 100%;
		width: auto;
	}

	.nbl-voyage__decor {
		width: 85%;
		top: 4%;
	}
}

@media (max-width: 480px) {
	.nbl-voyage {
		min-height: 420px;
	}

	.nbl-voyage__tagline {
		font-size: 52px;
	}

	.nbl-voyage__image-wrap {
		height: 65%;
	}

	.nbl-voyage__marquee {
		padding-top: 36px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.nbl-cat__card {
		opacity: 1;
		transform: none;
	}

	.nbl-cat__card:hover,
	.nbl-cat__card.is-visible:hover {
		transform: none;
	}

	.nbl-cat__card:hover .nbl-cat__bg-image {
		transform: none;
	}

	.nbl-cat__link:hover .nbl-cat__link-icon,
	.nbl-cat__link:focus-visible .nbl-cat__link-icon {
		transform: none;
	}

	.nbl-bs__card {
		opacity: 1;
		transform: none;
	}

	.nbl-bs__card:hover .nbl-bs__image {
		transform: none;
	}

	.nbl-bs__basket-btn:hover,
	.nbl-bs__basket-btn:focus-visible {
		transform: none;
	}

	.nbl-bs__view-all:hover .nbl-bs__view-all-icon,
	.nbl-bs__view-all:focus-visible .nbl-bs__view-all-icon {
		transform: none;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}
