:root {
	--b66-bg: #031312;
	--b66-bg-deep: #071918;
	--b66-bg-elevated: #0e2322;
	--b66-surface: rgba(18, 42, 40, 0.78);
	--b66-surface-strong: rgba(17, 39, 37, 0.92);
	--b66-surface-soft: rgba(14, 31, 30, 0.62);
	--b66-line: rgba(143, 231, 217, 0.16);
	--b66-line-strong: rgba(143, 231, 217, 0.28);
	--b66-text: #eef9f4;
	--b66-text-muted: #a4c8c1;
	--b66-accent: #29c9b4;
	--b66-accent-soft: #88f2e2;
	--b66-accent-hot: #d8fff8;
	--b66-warning: #f1c66f;
	--b66-danger: #f77d74;
	--b66-shadow-lg: 0 28px 70px rgba(0, 0, 0, 0.34);
	--b66-shadow-md: 0 20px 50px rgba(0, 0, 0, 0.28);
	--b66-shadow-sm: 0 14px 26px rgba(0, 0, 0, 0.2);
	--b66-radius-sm: 0px;
	--b66-radius-md: 0px;
	--b66-radius-lg: 0px;
	--b66-radius-xl: 0px;
	--b66-cut-sm: 10px;
	--b66-cut-md: 14px;
	--b66-cut-lg: 22px;
	--b66-shell: min(1280px, calc(100vw - 2rem));
	--b66-shell-tight: min(1100px, calc(100vw - 2rem));
	--b66-transition: 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
	--b66-transition-slow: 520ms cubic-bezier(0.22, 1, 0.36, 1);
	--b66-pointer-x: 50vw;
	--b66-pointer-y: 35vh;
	--b66-mesh-x: 0px;
	--b66-mesh-y: 0px;
	--b66-grid-x: 0px;
	--b66-grid-y: 0px;
	--b66-beam-x: 0px;
	--b66-beam-y: 0px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	min-height: 100vh;
	background:
		radial-gradient(circle at top, rgba(109, 244, 225, 0.14), transparent 28%),
		radial-gradient(circle at 85% 10%, rgba(41, 201, 180, 0.16), transparent 22%),
		linear-gradient(180deg, #051716 0%, #020a0a 100%);
	color: var(--b66-text);
	font-family: "Outfit", sans-serif;
	line-height: 1.6;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	position: relative;
	overflow-x: hidden;
}

body::before,
body::after {
	content: "";
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: -1;
}

body::before {
	background:
		linear-gradient(135deg, rgba(32, 128, 117, 0.24), transparent 42%),
		radial-gradient(circle at 22% 18%, rgba(136, 242, 226, 0.16), transparent 24%),
		radial-gradient(circle at 76% 22%, rgba(41, 201, 180, 0.12), transparent 20%),
		repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.025) 0, rgba(255, 255, 255, 0.025) 1px, transparent 1px, transparent 6px);
	opacity: 0.8;
	mix-blend-mode: screen;
}

body::after {
	inset: auto -12vw -12vh auto;
	width: 55vw;
	height: 55vw;
	background: radial-gradient(circle, rgba(82, 225, 208, 0.14), rgba(82, 225, 208, 0.04) 34%, transparent 60%);
	filter: blur(38px);
	animation: b66Caustic 16s ease-in-out infinite alternate;
}

@keyframes b66Caustic {
	0% {
		transform: translate3d(0, 0, 0) scale(1);
	}
	100% {
		transform: translate3d(-8vw, -5vh, 0) scale(1.14);
	}
}

.b66-ambient {
	position: fixed;
	inset: 0;
	z-index: 0;
	overflow: hidden;
	pointer-events: none;
	contain: strict;
	background:
		radial-gradient(circle at 14% 18%, rgba(70, 187, 171, 0.24), transparent 25rem),
		radial-gradient(circle at 86% 12%, rgba(41, 201, 180, 0.15), transparent 24rem),
		linear-gradient(180deg, rgba(3, 19, 18, 0.18), rgba(2, 10, 10, 0.78));
}

.b66-ambient > span {
	position: absolute;
	inset: 0;
	display: block;
	will-change: transform, opacity;
}

.b66-ambient__mesh {
	inset: -20vh -16vw;
	background:
		radial-gradient(circle at calc(var(--b66-pointer-x) + 7vw) calc(var(--b66-pointer-y) - 8vh), rgba(136, 242, 226, 0.34), transparent 18rem),
		radial-gradient(circle at 18% 76%, rgba(41, 201, 180, 0.2), transparent 22rem),
		radial-gradient(circle at 78% 62%, rgba(70, 187, 171, 0.17), transparent 25rem),
		conic-gradient(from 120deg at 52% 44%, transparent, rgba(41, 201, 180, 0.11), transparent 34%, rgba(136, 242, 226, 0.08), transparent 62%);
	filter: blur(28px) saturate(1.08);
	opacity: 0.9;
	transform: translate3d(var(--b66-mesh-x), var(--b66-mesh-y), 0) scale(1.04);
	animation: b66AmbientMesh 18s cubic-bezier(0.45, 0, 0.2, 1) infinite alternate;
}

.b66-ambient__grid {
	background:
		linear-gradient(115deg, transparent 0 45%, rgba(136, 242, 226, 0.11) 45.2%, transparent 45.6% 100%),
		repeating-linear-gradient(90deg, rgba(143, 231, 217, 0.045) 0 1px, transparent 1px 86px),
		repeating-linear-gradient(0deg, rgba(143, 231, 217, 0.035) 0 1px, transparent 1px 86px);
	-webkit-mask-image: radial-gradient(circle at 50% 30%, #000 0%, rgba(0, 0, 0, 0.82) 38%, transparent 78%);
	mask-image: radial-gradient(circle at 50% 30%, #000 0%, rgba(0, 0, 0, 0.82) 38%, transparent 78%);
	opacity: 0.52;
	transform: translate3d(var(--b66-grid-x), var(--b66-grid-y), 0);
	animation: b66AmbientGrid 24s linear infinite;
}

.b66-ambient__beams {
	inset: -10vh -24vw;
	background:
		linear-gradient(105deg, transparent 0 36%, rgba(136, 242, 226, 0.09) 38%, transparent 42% 100%),
		linear-gradient(105deg, transparent 0 54%, rgba(41, 201, 180, 0.12) 55%, transparent 59% 100%),
		linear-gradient(105deg, transparent 0 72%, rgba(216, 255, 248, 0.07) 73%, transparent 76% 100%);
	mix-blend-mode: screen;
	opacity: 0.66;
	transform: translate3d(var(--b66-beam-x), var(--b66-beam-y), 0);
	animation: b66AmbientBeams 14s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
}

.b66-ambient__cursor {
	width: 32rem;
	height: 32rem;
	inset: 0 auto auto 0;
	border-radius: 50%;
	background:
		radial-gradient(circle, rgba(216, 255, 248, 0.24) 0%, rgba(136, 242, 226, 0.15) 24%, rgba(41, 201, 180, 0.06) 48%, transparent 70%);
	filter: blur(16px);
	opacity: 0.78;
	transform: translate3d(calc(var(--b66-pointer-x) - 16rem), calc(var(--b66-pointer-y) - 16rem), 0);
	transition: opacity var(--b66-transition-slow);
}

.b66-ambient__grain {
	background:
		radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.05) 0 1px, transparent 1.4px),
		radial-gradient(circle at 70% 65%, rgba(136, 242, 226, 0.055) 0 1px, transparent 1.5px);
	background-size: 34px 34px, 46px 46px;
	opacity: 0.22;
	mix-blend-mode: screen;
	animation: b66AmbientGrain 9s steps(4, end) infinite;
}

@keyframes b66AmbientMesh {
	0% {
		transform: translate3d(var(--b66-mesh-x), var(--b66-mesh-y), 0) scale(1.04) rotate(0deg);
	}

	100% {
		transform: translate3d(calc(var(--b66-mesh-x) - 5vw), calc(var(--b66-mesh-y) + 4vh), 0) scale(1.16) rotate(6deg);
	}
}

@keyframes b66AmbientGrid {
	0% {
		background-position: 0 0, 0 0, 0 0;
	}

	100% {
		background-position: 180px -120px, 86px 0, 0 86px;
	}
}

@keyframes b66AmbientBeams {
	0% {
		opacity: 0.48;
		transform: translate3d(calc(var(--b66-beam-x) - 3vw), var(--b66-beam-y), 0) skewX(-4deg);
	}

	100% {
		opacity: 0.78;
		transform: translate3d(calc(var(--b66-beam-x) + 5vw), calc(var(--b66-beam-y) - 3vh), 0) skewX(-4deg);
	}
}

@keyframes b66AmbientGrain {
	0%,
	100% {
		transform: translate3d(0, 0, 0);
	}

	25% {
		transform: translate3d(-1.5rem, 0.8rem, 0);
	}

	50% {
		transform: translate3d(1rem, -1.2rem, 0);
	}

	75% {
		transform: translate3d(0.7rem, 1.5rem, 0);
	}
}

@media (prefers-reduced-motion: reduce) {
	.b66-ambient__mesh,
	.b66-ambient__grid,
	.b66-ambient__beams,
	.b66-ambient__grain,
	body::after {
		animation: none !important;
	}

	.b66-ambient__cursor {
		opacity: 0.36;
	}
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

button,
input,
select,
textarea {
	font: inherit;
}

button {
	cursor: pointer;
}

:focus-visible {
	outline: 3px solid rgba(136, 242, 226, 0.9);
	outline-offset: 3px;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

.b66-site-shell {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: 2;
}

.site-content {
	flex: 1 0 auto;
}

.b66-shell {
	width: var(--b66-shell);
	margin: 0 auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 1rem;
	font-family: "Bricolage Grotesque", sans-serif;
	line-height: 0.98;
	letter-spacing: -0.04em;
	font-weight: 700;
}

h1 {
	font-size: clamp(3rem, 7vw, 6rem);
	max-width: 12ch;
}

h2 {
	font-size: clamp(2rem, 4vw, 3.6rem);
	max-width: 16ch;
}

h3 {
	font-size: clamp(1.35rem, 2.6vw, 2rem);
}

p {
	margin: 0 0 1rem;
}

.b66-lead,
.b66-page-header p,
.b66-shop-hero__copy p:last-child {
	max-width: 62ch;
	color: var(--b66-text-muted);
	font-size: clamp(1rem, 2vw, 1.15rem);
}

.b66-hero__mark {
	margin: 0 0 1.4rem;
	max-width: 240px;
}

.b66-hero__mark img {
	width: 100%;
	height: auto;
}

.b66-inline-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.9rem;
}

.b66-button,
.button,
button,
input[type="submit"],
input[type="button"] {
	appearance: none;
	border: 1px solid transparent;
	border-radius: 0;
	padding: 0.95rem 1.3rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	clip-path: polygon(0 0, calc(100% - var(--b66-cut-sm)) 0, 100% var(--b66-cut-sm), 100% 100%, var(--b66-cut-sm) 100%, 0 calc(100% - var(--b66-cut-sm)));
	transition:
		transform var(--b66-transition),
		border-color var(--b66-transition),
		box-shadow var(--b66-transition),
		background-color var(--b66-transition),
		color var(--b66-transition);
}

.b66-button,
.button,
button,
input[type="submit"],
input[type="button"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.55rem;
}

.b66-button--primary,
.button,
button,
input[type="submit"],
input[type="button"] {
	background: linear-gradient(135deg, var(--b66-accent-hot) 0%, var(--b66-accent) 58%, #17927f 100%);
	color: #051311;
	box-shadow: 0 18px 34px rgba(41, 201, 180, 0.18);
}

.b66-button--secondary {
	background: linear-gradient(180deg, rgba(25, 58, 55, 0.9), rgba(10, 23, 22, 0.96));
	border-color: var(--b66-line);
	color: var(--b66-text);
}

.b66-button--ghost {
	background: transparent;
	border-color: var(--b66-line);
	color: var(--b66-text-muted);
}

.b66-button:hover,
.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
	transform: translateY(-2px);
	box-shadow: 0 24px 40px rgba(11, 22, 21, 0.34);
}

.b66-header {
	position: sticky;
	top: 0;
	z-index: 40;
	padding: 0;
	border-bottom: 1px solid rgba(143, 231, 217, 0.12);
	background: linear-gradient(180deg, rgba(6, 15, 15, 0.9), rgba(6, 15, 15, 0.52));
	backdrop-filter: blur(16px);
}

.b66-header__inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 1rem;
	padding: 1rem 0;
	border: 0;
	background: transparent;
	box-shadow: none;
}

.b66-header.is-scrolled .b66-header__inner {
	background: transparent;
}

.b66-brand {
	display: inline-flex;
	align-items: center;
	gap: 0.85rem;
}

.b66-brand__pulse {
	width: 0.8rem;
	height: 0.8rem;
	border-radius: 0;
	background: radial-gradient(circle, var(--b66-accent-hot) 0%, var(--b66-accent) 55%, rgba(41, 201, 180, 0.12) 100%);
	box-shadow: 0 0 18px rgba(41, 201, 180, 0.6);
	flex: 0 0 auto;
	transform: rotate(45deg);
}

.b66-brand__logo .custom-logo-link,
.b66-brand__logo img {
	display: block;
	max-height: 52px;
	width: auto;
}

.b66-brand__name {
	font-family: "Bricolage Grotesque", sans-serif;
	font-size: 1.3rem;
	letter-spacing: -0.04em;
}

.b66-nav__list {
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.45rem;
	padding: 0;
	margin: 0;
}

.b66-nav__list a {
	display: inline-flex;
	align-items: center;
	padding: 0.8rem 1rem;
	border-radius: 12px;
	color: var(--b66-text-muted);
	transition:
		color var(--b66-transition),
		background-color var(--b66-transition);
}

.b66-nav__list a:hover,
.b66-nav__list .current-menu-item > a,
.b66-nav__list .current_page_item > a {
	color: var(--b66-text);
	background: rgba(136, 242, 226, 0.08);
}

.b66-header__actions {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.b66-header__account,
.b66-cart-button {
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	padding: 0.8rem 1rem;
	border-radius: 0;
	background: rgba(8, 19, 18, 0.75);
	border: 1px solid var(--b66-line);
	color: var(--b66-text);
	clip-path: polygon(0 0, calc(100% - var(--b66-cut-sm)) 0, 100% var(--b66-cut-sm), 100% 100%, var(--b66-cut-sm) 100%, 0 calc(100% - var(--b66-cut-sm)));
}

.b66-cart-button {
	position: relative;
}

.b66-cart-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 1.85rem;
	height: 1.85rem;
	padding: 0 0.45rem;
	border-radius: 0;
	background: rgba(136, 242, 226, 0.14);
	color: var(--b66-accent-hot);
	font-size: 0.82rem;
	font-weight: 700;
	clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.b66-cart-total {
	color: var(--b66-text-muted);
	font-size: 0.92rem;
}

.b66-header__toggle {
	display: none;
	flex-direction: column;
	gap: 0.22rem;
	padding: 0.85rem;
	background: transparent;
	border: 1px solid var(--b66-line);
	border-radius: 0;
	clip-path: polygon(0 0, calc(100% - var(--b66-cut-sm)) 0, 100% var(--b66-cut-sm), 100% 100%, var(--b66-cut-sm) 100%, 0 calc(100% - var(--b66-cut-sm)));
}

.b66-header__toggle span {
	width: 1.25rem;
	height: 2px;
	background: currentColor;
	display: block;
}

.b66-cart-drawer {
	position: fixed;
	inset: 0;
	z-index: 80;
	display: none;
}

.b66-cart-drawer.is-open {
	display: block;
}

.b66-cart-drawer__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.56);
	backdrop-filter: blur(4px);
}

.b66-cart-drawer__panel {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: min(430px, 100vw);
	background: linear-gradient(180deg, rgba(15, 35, 33, 0.98), rgba(4, 10, 10, 0.99));
	border-left: 1px solid var(--b66-line);
	box-shadow: var(--b66-shadow-lg);
	display: flex;
	flex-direction: column;
	padding: 1.2rem;
}

.b66-cart-drawer__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--b66-line);
}

.b66-cart-drawer__close {
	width: 2.5rem;
	height: 2.5rem;
	padding: 0;
	border-radius: 0;
	background: transparent;
	border: 1px solid var(--b66-line);
	color: var(--b66-text);
	clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.b66-cart-drawer__body {
	flex: 1 1 auto;
	overflow: auto;
	padding-top: 1rem;
}

.b66-hero {
	padding: 4.2rem 0 2.2rem;
}

.b66-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	align-items: center;
	gap: 3rem;
}

.b66-hero__copy {
	position: relative;
	z-index: 1;
}

.b66-hero__visual {
	position: relative;
}

.b66-hero__stack {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	grid-template-rows: repeat(7, minmax(34px, 1fr));
	min-height: 640px;
	gap: 1rem;
}

.b66-hero-card {
	position: relative;
	overflow: hidden;
	border-radius: 24px;
	border: 1px solid var(--b66-line);
	background: linear-gradient(180deg, rgba(12, 33, 31, 0.7), rgba(4, 10, 10, 0.96));
	box-shadow: var(--b66-shadow-lg);
}

.b66-hero-card--1 {
	grid-column: 1 / span 4;
	grid-row: 2 / span 5;
}

.b66-hero-card--2 {
	grid-column: 4 / span 3;
	grid-row: 1 / span 3;
}

.b66-hero-card--3 {
	grid-column: 4 / span 3;
	grid-row: 4 / span 3;
}

.b66-hero-card__media,
.b66-hero-card__media img {
	width: 100%;
	height: 100%;
}

.b66-hero-card__media img {
	object-fit: cover;
	filter: saturate(0.92) contrast(1.05);
}

.b66-hero-card__body {
	position: absolute;
	inset: auto 0 0 0;
	padding: 1.35rem;
	background: linear-gradient(180deg, transparent 0%, rgba(2, 8, 8, 0.22) 14%, rgba(2, 8, 8, 0.92) 100%);
}

.b66-hero-card__label {
	font-size: 0.72rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--b66-accent-soft);
}

.b66-hero-card__body h2 {
	font-size: clamp(1.1rem, 2vw, 1.7rem);
	max-width: none;
}

.b66-hero-card__price {
	color: var(--b66-text-muted);
	font-weight: 600;
}

.b66-section {
	padding: 2.4rem 0;
}

.b66-section__header {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	margin-bottom: 1.8rem;
}

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

.b66-category-card {
	display: grid;
	background: linear-gradient(180deg, rgba(15, 34, 32, 0.92), rgba(7, 15, 15, 0.96));
	border: 1px solid var(--b66-line);
	border-radius: var(--b66-radius-lg);
	overflow: hidden;
	box-shadow: var(--b66-shadow-sm);
	transition:
		transform var(--b66-transition),
		border-color var(--b66-transition),
		box-shadow var(--b66-transition);
}

.b66-category-card:hover {
	transform: translateY(-4px);
	border-color: var(--b66-line-strong);
	box-shadow: var(--b66-shadow-md);
}

.b66-category-card__media,
.b66-category-card__media img {
	aspect-ratio: 4 / 5;
	width: 100%;
}

.b66-category-card__media img {
	object-fit: cover;
}

.b66-category-card__fallback {
	display: block;
	width: 100%;
	height: 100%;
	background:
		radial-gradient(circle at top, rgba(136, 242, 226, 0.14), transparent 40%),
		linear-gradient(180deg, rgba(17, 42, 39, 0.88), rgba(4, 10, 10, 0.96));
}

.b66-category-card__body {
	padding: 1.15rem;
	display: grid;
	gap: 0.35rem;
}

.b66-category-card__name {
	font-family: "Bricolage Grotesque", sans-serif;
	font-size: 1.3rem;
	letter-spacing: -0.03em;
}

.b66-category-card__meta {
	color: var(--b66-text-muted);
	font-size: 0.94rem;
}

.b66-split-callout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(340px, 0.7fr);
	gap: 1.4rem;
	align-items: stretch;
}

.b66-split-callout__copy,
.b66-split-callout__panel,
.b66-entry-card,
.b66-page-article,
.b66-newsletter-banner {
	padding: clamp(1.3rem, 3vw, 2rem);
	border: 1px solid var(--b66-line);
	border-radius: 0;
	background: linear-gradient(180deg, rgba(15, 34, 32, 0.78), rgba(6, 14, 14, 0.94));
	box-shadow: var(--b66-shadow-md);
	backdrop-filter: blur(14px);
	clip-path: polygon(0 0, calc(100% - var(--b66-cut-lg)) 0, 100% var(--b66-cut-lg), 100% 100%, var(--b66-cut-lg) 100%, 0 calc(100% - var(--b66-cut-lg)));
}

.b66-split-callout__panel {
	display: grid;
	gap: 1rem;
}

.b66-stat-block {
	padding: 1rem 0;
	border-bottom: 1px solid var(--b66-line);
}

.b66-stat-block:last-child {
	border-bottom: 0;
}

.b66-stat-block__kicker,
.b66-assurance-card__kicker {
	display: inline-block;
	margin-bottom: 0.55rem;
	font-size: 0.76rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--b66-text-muted);
}

.b66-newsletter-banner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.b66-page-shell,
.b66-content-grid {
	padding: 3.2rem 0 4rem;
}

.b66-page-shell--centered {
	text-align: center;
}

.b66-page-header {
	margin-bottom: 1.8rem;
}

.b66-content-stack {
	display: grid;
	gap: 1rem;
}

.b66-entry-card__title {
	font-size: clamp(1.25rem, 2vw, 1.65rem);
	max-width: none;
	margin-bottom: 0.85rem;
}

.b66-entry-card__copy,
.b66-entry-copy {
	color: var(--b66-text-muted);
}

.b66-entry-copy > *:last-child {
	margin-bottom: 0;
}

.search-form {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-bottom: 1.5rem;
}

.search-form label {
	flex: 1 1 260px;
}

.search-field,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
select,
textarea {
	width: 100%;
	padding: 0.92rem 1rem;
	border-radius: 0;
	border: 1px solid rgba(143, 231, 217, 0.14);
	background: rgba(6, 15, 15, 0.86);
	color: var(--b66-text);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
	clip-path: polygon(0 0, calc(100% - var(--b66-cut-sm)) 0, 100% var(--b66-cut-sm), 100% 100%, var(--b66-cut-sm) 100%, 0 calc(100% - var(--b66-cut-sm)));
	transition:
		border-color var(--b66-transition),
		box-shadow var(--b66-transition),
		background-color var(--b66-transition);
}

select {
	appearance: none;
	background-image:
		linear-gradient(45deg, transparent 50%, var(--b66-accent-soft) 50%),
		linear-gradient(135deg, var(--b66-accent-soft) 50%, transparent 50%);
	background-position:
		calc(100% - 18px) calc(50% - 3px),
		calc(100% - 12px) calc(50% - 3px);
	background-size: 6px 6px, 6px 6px;
	background-repeat: no-repeat;
	padding-right: 2.7rem;
}

textarea {
	min-height: 160px;
	resize: vertical;
}

input::placeholder,
textarea::placeholder {
	color: rgba(162, 197, 190, 0.72);
}

input:focus,
select:focus,
textarea:focus {
	border-color: rgba(136, 242, 226, 0.38);
	box-shadow: 0 0 0 4px rgba(41, 201, 180, 0.12);
}

table {
	width: 100%;
	border-collapse: collapse;
}

th,
td {
	padding: 1rem 1rem;
	border-bottom: 1px solid rgba(143, 231, 217, 0.12);
	text-align: left;
	vertical-align: top;
}

.b66-footer {
	margin-top: 2rem;
	padding: 0 0 2rem;
	border-top: 1px solid var(--b66-line);
	background: linear-gradient(180deg, rgba(8, 18, 18, 0.5), rgba(4, 10, 10, 0.92));
}

.b66-footer__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
	gap: 2rem;
	padding: 2rem 0;
	border: 0;
	border-radius: 0;
	background: transparent;
}

.b66-footer__brand h2 {
	font-size: clamp(1.7rem, 3vw, 2.5rem);
	max-width: 16ch;
}

.b66-footer__logo {
	margin: 0 0 1rem;
	max-width: 220px;
}

.b66-footer__menus {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.4rem;
}

.b66-footer__menus > div {
	padding-left: 1.25rem;
	border-left: 1px solid rgba(143, 231, 217, 0.12);
}

.b66-footer__menus h3 {
	margin-bottom: 0.9rem;
	font-size: 1rem;
	letter-spacing: 0;
	font-family: "Outfit", sans-serif;
	color: var(--b66-text-muted);
}

.b66-footer__menu {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 0.65rem;
}

.b66-footer__menu a {
	color: var(--b66-text);
	opacity: 0.8;
	display: inline-flex;
	padding-bottom: 0.2rem;
	border-bottom: 1px solid transparent;
	transition:
		opacity var(--b66-transition),
		border-color var(--b66-transition),
		color var(--b66-transition);
}

.b66-footer__menu a:hover {
	opacity: 1;
	color: var(--b66-accent-hot);
	border-color: currentColor;
}

.b66-footer__meta {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	padding-top: 1rem;
	border-top: 1px solid var(--b66-line);
	color: var(--b66-text-muted);
	font-size: 0.88rem;
}

[data-reveal] {
	opacity: 0;
	transform: translateY(18px);
	transition:
		opacity var(--b66-transition-slow),
		transform var(--b66-transition-slow);
}

[data-reveal].is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 1120px) {
	.b66-hero__grid,
	.b66-split-callout,
	.b66-footer__grid {
		grid-template-columns: 1fr;
	}

	.b66-category-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 960px) {
	.b66-header__inner {
		grid-template-columns: auto auto auto;
	}

	.b66-header__toggle {
		display: inline-flex;
	}

	.b66-nav {
		position: fixed;
		inset: 5.8rem 1rem auto 1rem;
		padding: 1rem;
		border: 1px solid var(--b66-line);
		border-radius: 0;
		background: linear-gradient(180deg, rgba(15, 34, 32, 0.96), rgba(6, 15, 14, 0.98));
		backdrop-filter: blur(18px);
		box-shadow: var(--b66-shadow-md);
		clip-path: polygon(0 0, calc(100% - var(--b66-cut-lg)) 0, 100% var(--b66-cut-lg), 100% 100%, var(--b66-cut-lg) 100%, 0 calc(100% - var(--b66-cut-lg)));
		transform: translateY(-10px);
		opacity: 0;
		pointer-events: none;
		transition:
			transform var(--b66-transition),
			opacity var(--b66-transition);
	}

	.menu-open .b66-nav {
		transform: translateY(0);
		opacity: 1;
		pointer-events: auto;
	}

	.b66-nav__list {
		flex-direction: column;
		align-items: stretch;
	}

	.b66-nav__list a {
		width: 100%;
	}

	.b66-hero__stack {
		min-height: 520px;
	}
}

@media (max-width: 720px) {
	.b66-shell {
		width: min(100vw - 1.25rem, 1280px);
	}

	.b66-header {
		padding-top: 0;
	}

	.b66-header__inner {
		padding: 0.85rem 0;
	}

	.b66-header__account {
		display: none;
	}

	.b66-hero {
		padding-top: 2.2rem;
	}

	.b66-hero__stack {
		grid-template-columns: 1fr;
		grid-template-rows: none;
		min-height: 0;
	}

	.b66-hero-card,
	.b66-hero-card--1,
	.b66-hero-card--2,
	.b66-hero-card--3 {
		grid-column: auto;
		grid-row: auto;
		min-height: 320px;
	}

	.b66-category-grid,
	.b66-footer__menus {
		grid-template-columns: 1fr;
	}

	.b66-newsletter-banner,
	.b66-footer__meta {
		flex-direction: column;
		align-items: flex-start;
	}
}

.b66-button,
.button,
button,
input[type="submit"],
input[type="button"],
.b66-header__account,
.b66-cart-button,
.b66-header__toggle,
.b66-cart-count {
	border-radius: 0;
	clip-path: polygon(0 0, calc(100% - var(--b66-cut-sm)) 0, 100% var(--b66-cut-sm), 100% 100%, var(--b66-cut-sm) 100%, 0 calc(100% - var(--b66-cut-sm)));
}

.b66-header {
	padding: 0;
	border-bottom: 1px solid rgba(143, 231, 217, 0.12);
	background: linear-gradient(180deg, rgba(6, 15, 15, 0.9), rgba(6, 15, 15, 0.52));
	backdrop-filter: blur(16px);
}

.b66-header__inner {
	padding: 1rem 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.b66-header.is-scrolled .b66-header__inner {
	background: transparent;
}

.b66-brand__pulse {
	border-radius: 0;
	transform: rotate(45deg);
}

.b66-nav__list a {
	position: relative;
	padding: 0.8rem 0.95rem 0.7rem;
	border-radius: 0;
	background: transparent;
}

.b66-nav__list a::after {
	content: "";
	position: absolute;
	left: 0.95rem;
	right: 0.95rem;
	bottom: 0.45rem;
	height: 1px;
	background: currentColor;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform var(--b66-transition);
}

.b66-nav__list a:hover::after,
.b66-nav__list .current-menu-item > a::after,
.b66-nav__list .current_page_item > a::after {
	transform: scaleX(1);
}

.b66-nav__list a:hover,
.b66-nav__list .current-menu-item > a,
.b66-nav__list .current_page_item > a {
	background: transparent;
}

.b66-cart-drawer__panel {
	border-radius: 0;
	clip-path: polygon(0 0, 100% 0, 100% 100%, 18px 100%, 0 calc(100% - 18px));
}

.b66-cart-drawer__close {
	border-radius: 0;
	clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.b66-hero {
	position: relative;
	padding: 0;
	min-height: calc(100svh - 84px);
	display: flex;
	align-items: stretch;
	overflow: hidden;
}

.b66-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(90deg, rgba(2, 10, 10, 0.92) 0%, rgba(2, 10, 10, 0.58) 42%, rgba(2, 10, 10, 0.28) 100%),
		linear-gradient(180deg, rgba(10, 39, 36, 0.28), rgba(2, 10, 10, 0.86)),
		var(--b66-hero-image);
	background-size: cover;
	background-position: center 22%;
	filter: saturate(0.92) contrast(1.04) brightness(0.76);
}

.b66-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 72% 24%, rgba(136, 242, 226, 0.16), transparent 22%),
		linear-gradient(180deg, transparent 0%, rgba(2, 10, 10, 0.34) 50%, rgba(2, 10, 10, 0.86) 100%);
}

.b66-hero__grid {
	position: relative;
	z-index: 1;
	min-height: calc(100svh - 84px);
	grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
	align-items: end;
	gap: 2rem;
	padding: clamp(6rem, 10vw, 8rem) 0 2.4rem;
}

.b66-hero__copy {
	max-width: 38rem;
}

.b66-hero__copy h1 {
	max-width: 10ch;
}

.b66-hero__visual {
	display: flex;
	justify-content: flex-end;
	align-self: end;
}

.b66-hero__rail {
	display: grid;
	gap: 1.5rem;
	width: min(420px, 100%);
	padding-left: 1.4rem;
	border-left: 1px solid rgba(143, 231, 217, 0.16);
}

.b66-hero__feature {
	display: grid;
	gap: 0.35rem;
}

.b66-hero__feature h2 {
	margin-bottom: 0;
	font-size: clamp(1.35rem, 2.1vw, 2rem);
	max-width: none;
}

.b66-hero__feature-price {
	color: var(--b66-accent-soft);
	font-weight: 700;
}

.b66-hero__collections {
	display: grid;
}

.b66-hero__collections a {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 0.75rem;
	padding: 0.9rem 0;
	border-top: 1px solid rgba(143, 231, 217, 0.14);
}

.b66-hero__collections a:last-child {
	border-bottom: 1px solid rgba(143, 231, 217, 0.14);
}

.b66-text-link {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-weight: 700;
	color: var(--b66-accent-soft);
	transition: color var(--b66-transition);
}

.b66-text-link::after {
	content: "\2197";
	font-size: 0.9em;
}

.b66-text-link:hover,
.b66-hero__collections a:hover {
	color: var(--b66-accent-hot);
}

.b66-collection-list {
	border-top: 1px solid var(--b66-line);
}

.b66-collection-strip {
	display: grid;
	grid-template-columns: 180px minmax(0, 1fr) auto;
	align-items: center;
	gap: 1.4rem;
	padding: 1.3rem 0;
	border-bottom: 1px solid var(--b66-line);
}

.b66-collection-strip--text {
	grid-template-columns: minmax(0, 1fr) auto;
}

.b66-collection-strip__media {
	display: block;
	width: 100%;
	max-width: 180px;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	clip-path: polygon(0 0, calc(100% - var(--b66-cut-md)) 0, 100% var(--b66-cut-md), 100% 100%, var(--b66-cut-md) 100%, 0 calc(100% - var(--b66-cut-md)));
	background: linear-gradient(180deg, rgba(18, 42, 40, 0.78), rgba(5, 10, 10, 0.96));
}

.b66-collection-strip__media img,
.b66-category-card__fallback {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.b66-collection-strip__body h3 {
	margin: 0 0 0.45rem;
	font-size: clamp(1.4rem, 2.4vw, 2rem);
}

.b66-collection-strip__body p:last-child {
	margin-bottom: 0;
	color: var(--b66-text-muted);
}

.b66-feature-band {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(260px, 0.8fr);
	align-items: end;
	gap: 1.5rem;
	padding: 1.6rem 0;
	border-top: 1px solid var(--b66-line);
	border-bottom: 1px solid var(--b66-line);
}

.b66-feature-band__aside {
	padding-left: 1.4rem;
	border-left: 1px solid var(--b66-line);
}

.b66-feature-band__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.7rem;
}

.b66-newsletter-banner {
	padding: 1.6rem 0;
	border-top: 1px solid var(--b66-line);
	border-bottom: 1px solid var(--b66-line);
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.b66-footer {
	margin-top: 2rem;
	padding: 0 0 2rem;
	border-top: 1px solid var(--b66-line);
	background: linear-gradient(180deg, rgba(8, 18, 18, 0.5), rgba(4, 10, 10, 0.92));
}

.b66-footer__grid {
	padding: 2rem 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.b66-footer__meta {
	padding-top: 1rem;
	border-top: 1px solid var(--b66-line);
}

@media (max-width: 1120px) {
	.b66-hero {
		min-height: auto;
	}

	.b66-hero__grid {
		min-height: auto;
		grid-template-columns: 1fr;
		padding-top: 5.75rem;
	}

	.b66-hero__rail,
	.b66-feature-band__aside {
		width: 100%;
		padding-left: 0;
		padding-top: 1rem;
		border-left: 0;
		border-top: 1px solid var(--b66-line);
	}

	.b66-feature-band {
		grid-template-columns: 1fr;
	}

	.b66-collection-strip {
		grid-template-columns: 160px minmax(0, 1fr);
	}

	.b66-collection-strip__action {
		grid-column: 2;
	}

	.b66-collection-strip--text {
		grid-template-columns: 1fr auto;
	}

	.b66-collection-strip--text .b66-collection-strip__action {
		grid-column: auto;
	}

	.b66-footer__menus > div {
		padding-left: 0;
		border-left: 0;
	}
}

@media (max-width: 720px) {
	.b66-collection-strip {
		grid-template-columns: 1fr;
	}

	.b66-collection-strip--text .b66-collection-strip__action {
		grid-column: auto;
	}

	.b66-collection-strip__media {
		max-width: none;
	}
}

/* Reference-driven neon retail refresh */
:root {
	--b66-bg: #16161b;
	--b66-bg-deep: #101015;
	--b66-bg-elevated: #1c1c23;
	--b66-surface: rgba(31, 31, 38, 0.92);
	--b66-surface-strong: rgba(38, 38, 48, 0.96);
	--b66-surface-soft: rgba(26, 26, 33, 0.82);
	--b66-line: rgba(255, 255, 255, 0.08);
	--b66-line-strong: rgba(255, 255, 255, 0.16);
	--b66-text: #f7f3ff;
	--b66-text-muted: #b7b1c8;
	--b66-accent: #ff4fd8;
	--b66-accent-soft: #9d6cff;
	--b66-accent-hot: #59d0ff;
	--b66-shadow-lg: 0 38px 90px rgba(0, 0, 0, 0.45);
	--b66-shadow-md: 0 24px 56px rgba(0, 0, 0, 0.32);
	--b66-shadow-sm: 0 14px 28px rgba(0, 0, 0, 0.22);
	--b66-radius-sm: 12px;
	--b66-radius-md: 16px;
	--b66-radius-lg: 22px;
	--b66-radius-xl: 28px;
	--b66-shell: min(1400px, calc(100vw - 2rem));
}

body {
	background:
		radial-gradient(circle at 20% 0%, rgba(255, 79, 216, 0.16), transparent 18%),
		radial-gradient(circle at 78% 0%, rgba(89, 208, 255, 0.16), transparent 18%),
		linear-gradient(180deg, #18181d 0%, #101015 100%);
}

body::before {
	background:
		radial-gradient(circle at 18% 10%, rgba(255, 79, 216, 0.16), transparent 18%),
		radial-gradient(circle at 82% 4%, rgba(89, 208, 255, 0.16), transparent 18%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 32%);
	opacity: 1;
}

body::after {
	inset: auto auto -12vh -8vw;
	width: 38vw;
	height: 38vw;
	background: radial-gradient(circle, rgba(157, 108, 255, 0.16), rgba(157, 108, 255, 0.03) 40%, transparent 66%);
	filter: blur(42px);
}

.b66-button,
.button,
button,
input[type="submit"],
input[type="button"],
.b66-header__account,
.b66-cart-button,
.b66-header__toggle,
.b66-cart-count,
.b66-page-article,
.b66-entry-card,
.b66-newsletter-banner,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
select,
textarea {
	clip-path: none;
	border-radius: var(--b66-radius-md);
}

.b66-button--primary,
.button,
button,
input[type="submit"],
input[type="button"] {
	background: linear-gradient(135deg, #ff4fd8 0%, #9d6cff 55%, #59d0ff 100%);
	box-shadow: 0 18px 34px rgba(255, 79, 216, 0.24);
}

.b66-button--secondary {
	background: rgba(255, 255, 255, 0.04);
	border-color: rgba(255, 255, 255, 0.1);
}

.b66-button--ghost {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.08);
}

.b66-header {
	background: rgba(16, 16, 21, 0.86);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.b66-header__inner {
	gap: 1.5rem;
}

.b66-brand__pulse {
	background: linear-gradient(135deg, var(--b66-accent), var(--b66-accent-hot));
	box-shadow: 0 0 22px rgba(255, 79, 216, 0.3);
}

.b66-nav__list a {
	border-radius: 10px;
	padding: 0.65rem 0.9rem;
	background: transparent;
	color: var(--b66-text-muted);
}

.b66-nav__list a::after {
	display: none;
}

.b66-nav__list a:hover,
.b66-nav__list .current-menu-item > a,
.b66-nav__list .current_page_item > a {
	background: rgba(255, 255, 255, 0.05);
	color: var(--b66-text);
}

.b66-footer {
	background: #121218;
}

.b66-footer__grid {
	grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
	gap: 2.5rem;
}

.b66-footer__brand h2 {
	max-width: 14ch;
}

.b66-footer__menu a {
	color: var(--b66-text-muted);
}

.b66-footer__menu a:hover {
	color: var(--b66-text);
}

.b66-section__header--center {
	align-items: center;
	text-align: center;
}

.b66-section__header--center h2 {
	max-width: none;
}

.b66-hero__mark {
	max-width: 180px;
}

.b66-arcade-hero {
	padding: 2rem 0 0;
	min-height: auto;
}

.b66-arcade-hero::before,
.b66-arcade-hero::after {
	display: none;
}

.b66-arcade-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
	gap: 2rem;
	align-items: center;
}

.b66-arcade-hero__copy {
	max-width: 35rem;
	padding: 2rem 0 1rem;
}

.b66-arcade-hero__copy h1 {
	max-width: 8.5ch;
	font-size: clamp(3.1rem, 6vw, 5.6rem);
}

.b66-arcade-hero__feature {
	margin-top: 1.6rem;
	padding: 1rem 1.1rem;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 18px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
	backdrop-filter: blur(12px);
	width: min(100%, 30rem);
}

.b66-arcade-hero__feature-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.85rem;
	font-weight: 600;
}

.b66-arcade-hero__feature-row span:last-child {
	color: var(--b66-accent-hot);
}

.b66-arcade-hero__stage {
	position: relative;
	min-height: 620px;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: var(--b66-radius-xl);
	overflow: hidden;
	isolation: isolate;
	background:
		radial-gradient(circle at 26% 18%, rgba(255, 79, 216, 0.28), transparent 24%),
		radial-gradient(circle at 80% 16%, rgba(89, 208, 255, 0.22), transparent 20%),
		linear-gradient(180deg, #21212a 0%, #17171e 100%);
	box-shadow: var(--b66-shadow-lg);
}

.b66-arcade-hero__wordmark {
	position: absolute;
	right: 1.5rem;
	top: 50%;
	transform: translateY(-50%);
	font-family: "Bricolage Grotesque", sans-serif;
	font-size: clamp(4rem, 13vw, 9rem);
	letter-spacing: 0.08em;
	color: rgba(255, 255, 255, 0.05);
	text-transform: uppercase;
	z-index: 0;
}

.b66-arcade-hero__glow {
	position: absolute;
	inset: auto auto 3rem 3rem;
	width: 14rem;
	height: 14rem;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 79, 216, 0.28), rgba(255, 79, 216, 0) 72%);
	filter: blur(18px);
}

.b66-arcade-hero__product {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding: 2rem 1rem 1rem;
	z-index: 1;
}

.b66-arcade-hero__image {
	width: min(560px, 82%);
	height: auto;
	object-fit: contain;
	filter: drop-shadow(0 28px 60px rgba(0, 0, 0, 0.42));
}

.b66-arcade-hero__stats {
	position: absolute;
	left: 1.5rem;
	bottom: 1.5rem;
	display: grid;
	gap: 0.65rem;
	width: min(240px, 42%);
	z-index: 1;
}

.b66-arcade-hero__stat {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.85rem;
	padding: 0.8rem 0.95rem;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 14px;
	background: rgba(15, 15, 20, 0.74);
	backdrop-filter: blur(12px);
	color: var(--b66-text-muted);
}

.b66-arcade-hero__stat strong {
	color: var(--b66-text);
}

.b66-arcade-highlights-section {
	padding-top: 1.25rem;
}

.b66-arcade-highlights {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1rem;
}

.b66-arcade-highlight {
	padding: 1.2rem;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 18px;
	background: linear-gradient(180deg, rgba(31, 31, 38, 0.96), rgba(23, 23, 29, 0.98));
	box-shadow: var(--b66-shadow-sm);
}

.b66-arcade-highlight__dot {
	display: inline-block;
	width: 0.95rem;
	height: 0.95rem;
	border-radius: 50%;
	margin-bottom: 0.9rem;
	background: linear-gradient(135deg, var(--b66-accent), var(--b66-accent-hot));
	box-shadow: 0 0 18px rgba(255, 79, 216, 0.25);
}

.b66-arcade-highlight h2 {
	font-size: 1.05rem;
	max-width: none;
	margin-bottom: 0.45rem;
}

.b66-arcade-highlight p {
	margin: 0;
	color: var(--b66-text-muted);
	font-size: 0.95rem;
}

.b66-arcade-story-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
	gap: 1rem;
}

.b66-arcade-story-card {
	position: relative;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: var(--b66-radius-lg);
	overflow: hidden;
	box-shadow: var(--b66-shadow-md);
}

.b66-arcade-story-card--media {
	min-height: 360px;
	background: linear-gradient(180deg, rgba(31, 31, 38, 0.98), rgba(20, 20, 26, 0.98));
}

.b66-arcade-story-card__image,
.b66-arcade-story-card__image img {
	width: 100%;
	height: 100%;
}

.b66-arcade-story-card__image img {
	object-fit: cover;
}

.b66-arcade-story-card__overlay {
	position: absolute;
	left: 1.5rem;
	right: 1.5rem;
	bottom: 1.5rem;
}

.b66-arcade-story-card__overlay h2 {
	font-size: clamp(2rem, 4vw, 3.1rem);
	max-width: 10ch;
	margin-bottom: 0;
}

.b66-arcade-story-card--copy {
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 360px;
	background:
		radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 30%),
		linear-gradient(135deg, rgba(98, 73, 255, 0.96), rgba(255, 68, 180, 0.94));
}

.b66-arcade-story-card--copy p:last-of-type {
	color: rgba(255, 255, 255, 0.82);
}

.b66-arcade-category-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1rem;
}

.b66-arcade-category {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 20px;
	overflow: hidden;
	background: linear-gradient(180deg, rgba(31, 31, 38, 0.98), rgba(21, 21, 27, 0.98));
	box-shadow: var(--b66-shadow-sm);
}

.b66-arcade-category__media {
	display: block;
	aspect-ratio: 1.05 / 0.9;
	background:
		radial-gradient(circle at top, rgba(255, 79, 216, 0.16), transparent 35%),
		linear-gradient(180deg, rgba(31, 31, 38, 0.98), rgba(21, 21, 27, 0.98));
}

.b66-arcade-category__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.b66-arcade-category__body {
	display: grid;
	gap: 0.55rem;
	flex: 1 1 auto;
	padding: 1.15rem;
}

.b66-arcade-category__body h3 {
	margin: 0;
	max-width: none;
	font-size: 1.18rem;
}

.b66-arcade-category__body p:last-of-type {
	margin: 0 0 0.1rem;
	color: var(--b66-text-muted);
}

.b66-arcade-category--text {
	background:
		radial-gradient(circle at 22% 18%, rgba(255, 79, 216, 0.2), transparent 22%),
		linear-gradient(135deg, rgba(99, 72, 255, 0.62), rgba(255, 79, 216, 0.34));
}

.b66-arcade-category--text .b66-arcade-category__body {
	justify-content: end;
}

.b66-arcade-products-section {
	padding-top: 2.6rem;
}

.b66-arcade-product-grid {
	margin-top: 0.35rem;
}

.b66-arcade-promo {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(300px, 1.2fr);
	align-items: center;
	gap: 1rem;
	padding: 1.6rem;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: var(--b66-radius-xl);
	background:
		radial-gradient(circle at 18% 20%, rgba(255, 79, 216, 0.18), transparent 24%),
		radial-gradient(circle at 82% 20%, rgba(89, 208, 255, 0.16), transparent 20%),
		linear-gradient(180deg, rgba(31, 31, 39, 0.98), rgba(21, 21, 27, 0.98));
	box-shadow: var(--b66-shadow-md);
	overflow: hidden;
}

.b66-arcade-promo__copy h2 {
	max-width: 12ch;
}

.b66-arcade-chip-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	margin: 1rem 0 1.3rem;
}

.b66-arcade-chip {
	display: inline-flex;
	align-items: center;
	padding: 0.45rem 0.75rem;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.04);
	color: var(--b66-text);
	font-size: 0.78rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.b66-arcade-promo__media {
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	min-height: 340px;
}

.b66-arcade-promo__media img {
	width: min(560px, 100%);
	height: auto;
	object-fit: contain;
	filter: drop-shadow(0 28px 60px rgba(0, 0, 0, 0.4));
}

.b66-arcade-strip {
	padding: 1rem 0 0;
	text-align: center;
}

.b66-arcade-strip__items {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.85rem 1.1rem;
	padding-top: 0.65rem;
}

.b66-arcade-strip__items span {
	padding: 0.75rem 1rem;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.03);
	color: var(--b66-text-muted);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.b66-arcade-panorama {
	position: relative;
	min-height: 320px;
	display: flex;
	align-items: flex-end;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 24px;
	overflow: hidden;
	background-image:
		linear-gradient(180deg, rgba(8, 8, 12, 0.08), rgba(8, 8, 12, 0.86)),
		var(--b66-panorama-image);
	background-size: cover;
	background-position: center;
}

.b66-arcade-panorama__overlay {
	padding: 1.6rem;
	max-width: 36rem;
}

.b66-arcade-panorama__overlay h2 {
	max-width: 13ch;
}

.b66-arcade-journal-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1rem;
}

.b66-arcade-journal-card {
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 18px;
	overflow: hidden;
	background: linear-gradient(180deg, rgba(31, 31, 38, 0.98), rgba(21, 21, 27, 0.98));
	box-shadow: var(--b66-shadow-sm);
}

.b66-arcade-journal-card__media {
	display: block;
	aspect-ratio: 16 / 10;
	background: linear-gradient(180deg, rgba(31, 31, 38, 0.98), rgba(21, 21, 27, 0.98));
}

.b66-arcade-journal-card__media img,
.b66-arcade-journal-card__media .b66-category-card__fallback {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.b66-arcade-journal-card__body {
	display: grid;
	gap: 0.65rem;
	padding: 1rem;
}

.b66-arcade-journal-card__body h3 {
	margin: 0;
	max-width: none;
	font-size: 1.15rem;
}

.b66-arcade-journal-card__body p {
	margin: 0;
	color: var(--b66-text-muted);
	font-size: 0.95rem;
}

.b66-arcade-newsletter {
	padding: 1.45rem 1.6rem;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 22px;
	background:
		radial-gradient(circle at left top, rgba(255, 79, 216, 0.14), transparent 24%),
		radial-gradient(circle at right top, rgba(89, 208, 255, 0.12), transparent 22%),
		linear-gradient(180deg, rgba(31, 31, 38, 0.98), rgba(21, 21, 27, 0.98));
	box-shadow: var(--b66-shadow-sm);
}

@media (max-width: 1180px) {
	.b66-arcade-hero__grid,
	.b66-arcade-story-grid,
	.b66-arcade-promo,
	.b66-footer__grid {
		grid-template-columns: 1fr;
	}

	.b66-arcade-highlights,
	.b66-arcade-category-grid,
	.b66-arcade-journal-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.b66-arcade-hero__stage {
		min-height: 500px;
	}
}

@media (max-width: 820px) {
	.b66-arcade-hero__copy {
		padding-top: 1rem;
	}

	.b66-arcade-hero__stage {
		min-height: 420px;
	}

	.b66-arcade-hero__wordmark {
		font-size: clamp(3rem, 16vw, 6rem);
		right: 1rem;
	}

	.b66-arcade-highlights,
	.b66-arcade-category-grid,
	.b66-arcade-journal-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.b66-arcade-hero {
		padding-top: 1.2rem;
	}

	.b66-arcade-hero__stage {
		min-height: 360px;
	}

	.b66-arcade-hero__stats {
		position: static;
		width: 100%;
		padding: 0 1rem 1rem;
	}

	.b66-arcade-promo {
		padding: 1.2rem;
	}

	.b66-arcade-promo__media,
	.b66-arcade-story-card--media {
		min-height: 260px;
	}
}

/* Complementary site palette alignment */
:root {
	--b66-bg: #021110;
	--b66-bg-deep: #071917;
	--b66-bg-elevated: #0b2623;
	--b66-surface: rgba(7, 24, 23, 0.7);
	--b66-surface-strong: rgba(7, 27, 25, 0.86);
	--b66-surface-soft: rgba(11, 38, 35, 0.56);
	--b66-line: rgba(188, 242, 236, 0.15);
	--b66-line-strong: rgba(188, 242, 236, 0.26);
	--b66-text: #effcf9;
	--b66-text-muted: #b9d8d4;
	--b66-accent: #2ec4b6;
	--b66-accent-soft: #75e2d7;
	--b66-accent-hot: #d6fff9;
	--b66-warning: #f1c66f;
	--b66-radius-sm: 10px;
	--b66-radius-md: 16px;
	--b66-radius-lg: 22px;
	--b66-radius-xl: 30px;
	--b66-shadow-lg: 0 28px 80px rgba(0, 0, 0, 0.34);
	--b66-shadow-md: 0 22px 56px rgba(0, 0, 0, 0.3);
	--b66-shadow-sm: 0 14px 32px rgba(0, 0, 0, 0.24);
	--b66-site-backdrop: url("../images/becca66-site-backdrop.jpg");
}

body {
	background: linear-gradient(180deg, #041514 0%, #020a0a 100%);
}

body::before,
body::after {
	content: "";
	position: fixed;
	inset: 0;
	pointer-events: none;
}

body::before {
	inset: -4%;
	z-index: -3;
	background-image:
		linear-gradient(180deg, rgba(2, 14, 13, 0.24) 0%, rgba(2, 10, 10, 0.76) 100%),
		linear-gradient(128deg, rgba(34, 130, 120, 0.42) 0%, rgba(6, 28, 27, 0.12) 40%, rgba(32, 124, 114, 0.34) 100%),
		radial-gradient(circle at 50% 18%, rgba(117, 226, 215, 0.24), transparent 34%),
		radial-gradient(circle at 18% 22%, rgba(46, 196, 182, 0.16), transparent 28%),
		var(--b66-site-backdrop);
	background-size: cover;
	background-position: center 28%;
	background-repeat: no-repeat;
	background-blend-mode: multiply, screen, screen, normal, normal;
	filter: saturate(0.9) contrast(1.06) brightness(0.38);
	transform: scale(1.06);
	mix-blend-mode: normal;
	opacity: 1;
}

body::after {
	inset: 0;
	z-index: -2;
	width: auto;
	height: auto;
	background-image:
		repeating-linear-gradient(
			180deg,
			rgba(239, 252, 249, 0.055) 0,
			rgba(239, 252, 249, 0.055) 1px,
			transparent 1px,
			transparent 4px
		),
		radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0 1px, transparent 1.3px),
		radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.08) 0 1px, transparent 1.3px),
		radial-gradient(circle at 35% 75%, rgba(255, 255, 255, 0.06) 0 1px, transparent 1.2px);
	background-size: 100% 4px, 5px 5px, 6px 6px, 4px 4px;
	opacity: 0.16;
	mix-blend-mode: soft-light;
	filter: none;
	animation: b66TextureDrift 14s steps(8) infinite;
}

@keyframes b66TextureDrift {
	from {
		transform: translate3d(0, 0, 0);
	}
	to {
		transform: translate3d(0, 6px, 0);
	}
}

.b66-site-shell {
	position: relative;
	isolation: isolate;
}

.b66-site-shell::before,
.b66-site-shell::after {
	content: "";
	position: fixed;
	inset: -16%;
	pointer-events: none;
	z-index: 0;
}

.b66-site-shell::before {
	background:
		linear-gradient(
			118deg,
			transparent 12%,
			rgba(228, 255, 251, 0.04) 19%,
			rgba(175, 255, 246, 0.18) 24%,
			rgba(104, 234, 221, 0.32) 28%,
			rgba(239, 252, 249, 0.08) 31%,
			transparent 40%
		),
		linear-gradient(
			95deg,
			transparent 32%,
			rgba(188, 255, 248, 0.08) 38%,
			rgba(102, 233, 220, 0.2) 42%,
			rgba(228, 255, 251, 0.06) 46%,
			transparent 54%
		),
		radial-gradient(ellipse at 16% 18%, rgba(149, 255, 245, 0.18) 0%, transparent 30%),
		radial-gradient(ellipse at 84% 16%, rgba(117, 226, 215, 0.14) 0%, transparent 26%),
		radial-gradient(ellipse at 56% 78%, rgba(46, 196, 182, 0.14) 0%, transparent 30%);
	filter: blur(24px);
	mix-blend-mode: screen;
	opacity: 0.88;
	animation: b66CausticSweep 18s cubic-bezier(0.44, 0, 0.24, 1) infinite alternate;
}

.b66-site-shell::after {
	background:
		radial-gradient(
			ellipse at 24% 28%,
			rgba(214, 255, 251, 0.12) 0%,
			rgba(129, 244, 233, 0.1) 14%,
			transparent 34%
		),
		radial-gradient(
			ellipse at 72% 22%,
			rgba(212, 255, 251, 0.1) 0%,
			rgba(95, 231, 217, 0.08) 16%,
			transparent 30%
		),
		linear-gradient(
			126deg,
			transparent 18%,
			rgba(202, 255, 250, 0.05) 24%,
			rgba(115, 238, 225, 0.16) 29%,
			rgba(239, 252, 249, 0.06) 33%,
			transparent 42%
		);
	filter: blur(46px);
	mix-blend-mode: screen;
	opacity: 0.72;
	animation: b66CausticFloat 26s ease-in-out infinite alternate;
}

@keyframes b66CausticSweep {
	from {
		transform: translate3d(-2vw, 0, 0);
	}
	to {
		transform: translate3d(2vw, -2vh, 0);
	}
}

@keyframes b66CausticFloat {
	from {
		transform: translate3d(0, 0, 0) scale(1);
	}
	to {
		transform: translate3d(-2vw, 2vh, 0) scale(1.05);
	}
}

.site-content,
.b66-header,
.b66-footer {
	position: relative;
	z-index: 1;
}

.b66-button--primary,
.button,
button,
input[type="submit"],
input[type="button"] {
	background: linear-gradient(135deg, #2ec4b6 0%, #75e2d7 100%);
	box-shadow: 0 18px 34px rgba(46, 196, 182, 0.24);
	color: #03201d;
}

.b66-button--secondary {
	background: rgba(255, 255, 255, 0.04);
	border-color: rgba(188, 242, 236, 0.16);
}

.b66-button--ghost {
	border-color: rgba(188, 242, 236, 0.14);
	color: var(--b66-text-muted);
}

.b66-header {
	background: rgba(7, 24, 23, 0.72);
	border-bottom: 1px solid rgba(188, 242, 236, 0.12);
	backdrop-filter: blur(18px) saturate(120%);
}

.b66-brand__pulse {
	background: linear-gradient(135deg, var(--b66-accent-soft), var(--b66-accent));
	box-shadow: 0 0 22px rgba(46, 196, 182, 0.24);
}

.b66-nav__list a {
	color: var(--b66-text-muted);
}

.b66-nav__list a:hover,
.b66-nav__list .current-menu-item > a,
.b66-nav__list .current_page_item > a {
	background: rgba(255, 255, 255, 0.04);
	color: var(--b66-text);
}

.b66-header__account,
.b66-cart-button,
.b66-header__toggle {
	border-color: rgba(188, 242, 236, 0.14);
	background: rgba(7, 24, 23, 0.46);
}

.b66-arcade-hero__stage,
.b66-arcade-hero__feature,
.b66-arcade-hero__stat,
.b66-arcade-highlight,
.b66-arcade-story-card--copy,
.b66-arcade-category,
.b66-arcade-promo,
.b66-arcade-chip,
.b66-arcade-strip__items span,
.b66-arcade-journal-card,
.b66-arcade-newsletter {
	border-color: rgba(188, 242, 236, 0.12);
	background: linear-gradient(180deg, rgba(11, 38, 35, 0.88), rgba(7, 24, 23, 0.94));
	box-shadow: var(--b66-shadow-sm);
}

.b66-arcade-story-card--copy {
	background:
		radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 30%),
		linear-gradient(180deg, rgba(14, 51, 48, 0.88) 0%, rgba(8, 23, 22, 0.94) 100%);
}

.b66-arcade-category__media,
.b66-arcade-promo,
.b66-arcade-newsletter {
	background:
		radial-gradient(circle at top, rgba(46, 196, 182, 0.14), transparent 34%),
		linear-gradient(180deg, rgba(11, 38, 35, 0.88), rgba(7, 24, 23, 0.94));
}

.b66-arcade-category--text {
	background:
		radial-gradient(circle at 22% 18%, rgba(117, 226, 215, 0.2), transparent 22%),
		linear-gradient(135deg, rgba(14, 51, 48, 0.88), rgba(7, 24, 23, 0.94));
}

.b66-arcade-hero__stage {
	background:
		radial-gradient(circle at 18% 18%, rgba(46, 196, 182, 0.14), transparent 24%),
		radial-gradient(circle at 80% 16%, rgba(214, 255, 251, 0.08), transparent 20%),
		linear-gradient(180deg, rgba(10, 30, 29, 0.82), rgba(4, 14, 14, 0.94));
}

.b66-arcade-hero__wordmark {
	color: rgba(239, 252, 249, 0.08);
	text-shadow: none;
}

.b66-arcade-hero__glow {
	background: radial-gradient(circle, rgba(46, 196, 182, 0.24), rgba(46, 196, 182, 0) 72%);
}

.b66-arcade-highlight__dot {
	background: linear-gradient(135deg, var(--b66-accent-soft), var(--b66-accent));
	box-shadow: 0 0 18px rgba(46, 196, 182, 0.2);
}

.b66-text-link {
	color: var(--b66-accent-soft);
}

.b66-footer {
	margin-top: clamp(3rem, 7vw, 5.5rem);
	padding: 0 0 2.75rem;
	border-top: 0;
	background: transparent;
}

.b66-footer__panel {
	position: relative;
	width: min(100%, 72rem);
	margin: 0 auto;
	padding: clamp(2rem, 4vw, 3rem);
	border: 1px solid rgba(193, 247, 241, 0.18);
	border-radius: 1.9rem;
	background:
		radial-gradient(circle at 92% 110%, rgba(46, 196, 182, 0.12), transparent 28%),
		linear-gradient(180deg, rgba(14, 51, 48, 0.88) 0%, rgba(8, 23, 22, 0.94) 100%);
	box-shadow:
		0 32px 90px rgba(0, 0, 0, 0.34),
		inset 0 1px 0 rgba(255, 255, 255, 0.04);
	overflow: hidden;
	text-align: center;
}

.b66-footer__panel::before {
	content: "";
	position: absolute;
	top: -20%;
	left: 58%;
	width: 13rem;
	height: 13rem;
	border-radius: 50%;
	background: rgba(46, 196, 182, 0.14);
	filter: blur(60px);
	pointer-events: none;
}

.b66-footer__eyebrow,
.b66-footer__logo,
.b66-footer__panel h2,
.b66-footer__copy,
.b66-footer__actions,
.b66-footer__quicklinks {
	position: relative;
	z-index: 1;
}

.b66-footer__eyebrow {
	margin: 0 0 0.8rem;
	font-size: 0.8rem;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--b66-accent-soft);
}

.b66-footer__logo {
	margin: 0 auto 1rem;
	width: min(220px, 54vw);
}

.b66-footer__panel h2 {
	margin: 0 auto;
	max-width: 14ch;
	font-size: clamp(1.9rem, 4vw, 2.8rem);
	line-height: 0.98;
	letter-spacing: -0.045em;
	text-wrap: balance;
}

.b66-footer__copy {
	width: min(100%, 34rem);
	margin: 0.95rem auto 0;
	color: var(--b66-text-muted);
}

.b66-footer__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.8rem;
	margin-top: 1.6rem;
}

.b66-footer__quicklinks {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.8rem;
	margin-top: 1.35rem;
}

.b66-footer__quicklinks a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 1rem;
	border: 1px solid rgba(188, 242, 236, 0.14);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.03);
	color: var(--b66-text-muted);
	font-size: 0.88rem;
	font-weight: 600;
	transition:
		transform var(--b66-transition),
		border-color var(--b66-transition),
		color var(--b66-transition),
		background-color var(--b66-transition);
}

.b66-footer__quicklinks a:hover {
	transform: translateY(-1px);
	border-color: rgba(188, 242, 236, 0.26);
	background: rgba(255, 255, 255, 0.05);
	color: var(--b66-text);
}

.b66-footer__meta {
	width: min(calc(100% - 2rem), 72rem);
	margin: 1rem auto 0;
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	padding-top: 0.85rem;
	border-top: 1px solid rgba(188, 242, 236, 0.12);
	color: rgba(239, 252, 249, 0.68);
	font-size: 0.96rem;
	line-height: 1.6;
}

.b66-footer__meta p {
	margin: 0;
}

@media (max-width: 820px) {
	.b66-footer__meta {
		flex-direction: column;
		text-align: center;
	}
}

/* Home layout enforcement */
body.home .b66-arcade-highlights {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	align-items: stretch;
}

body.home .b66-arcade-story-grid {
	display: grid !important;
	grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr) !important;
	align-items: stretch;
}

body.home .b66-arcade-category-grid {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	align-items: start;
}

body.home ul.b66-arcade-product-grid {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	align-items: stretch;
}

body.home ul.b66-arcade-product-grid li.product {
	float: none !important;
	width: auto !important;
	margin: 0 !important;
}

body.home .b66-arcade-journal-grid {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	align-items: stretch;
}

body.home .b66-arcade-category,
body.home .b66-arcade-journal-card,
body.home .b66-product-card {
	min-width: 0;
}

@media (max-width: 1180px) {
	body.home .b66-arcade-highlights,
	body.home .b66-arcade-category-grid,
	body.home ul.b66-arcade-product-grid,
	body.home .b66-arcade-journal-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}

	body.home .b66-arcade-story-grid {
		grid-template-columns: 1fr !important;
	}
}

@media (max-width: 820px) {
	body.home .b66-arcade-highlights,
	body.home .b66-arcade-category-grid,
	body.home ul.b66-arcade-product-grid,
	body.home .b66-arcade-journal-grid {
		grid-template-columns: 1fr !important;
	}
}

/* Editorial storefront reset */
:root {
	--b66-radius-sm: 4px;
	--b66-radius-md: 8px;
	--b66-radius-lg: 12px;
	--b66-radius-xl: 16px;
	--b66-line: rgba(188, 242, 236, 0.14);
	--b66-line-strong: rgba(188, 242, 236, 0.24);
}

.b66-button,
.button,
button,
input[type="submit"],
input[type="button"],
.b66-header__account,
.b66-cart-button,
.b66-header__toggle {
	border-radius: 6px;
}

.b66-button--primary,
.button,
button,
input[type="submit"],
input[type="button"] {
	background: var(--b66-accent-soft);
	box-shadow: none;
	color: #06211e;
}

.b66-button--secondary,
.b66-button--ghost {
	background: transparent;
}

.b66-header {
	background: rgba(3, 16, 15, 0.58);
	border-bottom: 1px solid var(--b66-line);
	backdrop-filter: blur(18px) saturate(120%);
}

.b66-header__inner {
	min-height: 78px;
	gap: 1.25rem;
}

.b66-nav__list {
	gap: 1.1rem;
}

.b66-nav__list a {
	padding: 0;
	background: transparent;
	border-radius: 0;
}

.b66-nav__list a:hover,
.b66-nav__list .current-menu-item > a,
.b66-nav__list .current_page_item > a {
	background: transparent;
	color: var(--b66-text);
}

.b66-header__account,
.b66-cart-button {
	padding: 0.2rem 0 0.2rem 1rem;
	border: 0;
	border-left: 1px solid var(--b66-line);
	background: transparent;
	box-shadow: none;
}

.b66-header__toggle {
	background: transparent;
	box-shadow: none;
}

.b66-showroom-hero {
	position: relative;
	min-height: min(100svh, 860px);
	padding: clamp(7.5rem, 10vw, 9.5rem) 0 3rem;
	overflow: clip;
}

.b66-showroom-hero__backdrop {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(2, 10, 10, 0.9) 0%, rgba(2, 10, 10, 0.72) 38%, rgba(2, 10, 10, 0.2) 100%),
		radial-gradient(circle at 70% 18%, rgba(117, 226, 215, 0.12), transparent 22%);
	pointer-events: none;
}

.b66-showroom-hero__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 0.72fr) minmax(340px, 0.88fr);
	gap: clamp(2rem, 5vw, 5rem);
	align-items: end;
	min-height: calc(min(100svh, 860px) - 10rem);
}

.b66-showroom-hero__copy {
	max-width: 31rem;
}

.b66-showroom-hero__copy h1 {
	margin: 0;
	max-width: 8ch;
	font-family: "Bricolage Grotesque", sans-serif;
	font-size: clamp(3.35rem, 7vw, 6rem);
	line-height: 0.92;
	letter-spacing: -0.05em;
	text-wrap: balance;
}

.b66-showroom-hero__current {
	max-width: 26rem;
	margin-top: 1.4rem;
	padding-top: 1rem;
	border-top: 1px solid var(--b66-line);
}

.b66-showroom-hero__current-row {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	color: var(--b66-text-muted);
	font-size: 0.95rem;
}

.b66-showroom-hero__current-row span:last-child {
	color: var(--b66-text);
}

.b66-showroom-hero__visual {
	position: relative;
	min-height: 34rem;
	display: flex;
	align-items: end;
	justify-content: center;
}

.b66-showroom-hero__visual::before {
	content: "";
	position: absolute;
	inset: 12% 0 0 16%;
	border: 1px solid rgba(188, 242, 236, 0.16);
	background:
		linear-gradient(180deg, rgba(11, 38, 35, 0.38), rgba(7, 24, 23, 0.14)),
		radial-gradient(circle at 70% 18%, rgba(117, 226, 215, 0.14), transparent 28%);
}

.b66-showroom-hero__object {
	position: relative;
	z-index: 1;
	width: min(42rem, 100%);
	padding: 0 1rem 0 0;
}

.b66-showroom-hero__object img {
	width: 100%;
	max-height: 74vh;
	object-fit: contain;
	filter: drop-shadow(0 34px 60px rgba(0, 0, 0, 0.34));
}

.b66-showroom-section {
	padding-top: clamp(3rem, 5vw, 5rem);
}

.b66-showroom-section--first {
	padding-top: clamp(1.5rem, 3vw, 2.6rem);
}

.b66-showroom-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1.25rem;
	padding-bottom: 0.85rem;
	border-bottom: 1px solid var(--b66-line);
}

.b66-showroom-heading h2 {
	margin: 0;
	font-family: "Bricolage Grotesque", sans-serif;
	font-size: clamp(1.6rem, 2.8vw, 2.35rem);
	letter-spacing: -0.04em;
}

.b66-showroom-collections {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1px;
	background: var(--b66-line);
}

.b66-showroom-collection {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 24rem;
	background: rgba(3, 16, 15, 0.42);
	transition:
		background-color var(--b66-transition),
		transform var(--b66-transition);
}

.b66-showroom-collection:hover {
	background: rgba(7, 24, 23, 0.62);
	transform: translateY(-2px);
}

.b66-showroom-collection__media {
	display: block;
	aspect-ratio: 4 / 5;
	overflow: hidden;
}

.b66-showroom-collection__media img,
.b66-showroom-collection__media .b66-category-card__fallback {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.b66-showroom-collection__meta {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem 1.1rem 1.15rem;
	border-top: 1px solid var(--b66-line);
}

.b66-showroom-collection__meta strong {
	font-size: 1.15rem;
	font-weight: 600;
}

.b66-showroom-collection__meta span {
	color: var(--b66-text-muted);
	font-size: 0.84rem;
}

.b66-showroom-collection--text {
	padding: 1.15rem;
	background:
		linear-gradient(180deg, rgba(8, 23, 22, 0.74), rgba(8, 23, 22, 0.96)),
		radial-gradient(circle at 76% 24%, rgba(117, 226, 215, 0.12), transparent 24%);
}

.b66-showroom-collection--text .b66-showroom-collection__meta {
	margin-top: auto;
	padding: 0;
	border-top: 0;
}

.b66-showroom-products {
	gap: 1px !important;
	margin: 0 !important;
	background: var(--b66-line);
}

.b66-showroom-products li.product {
	margin: 0 !important;
	float: none !important;
	width: auto !important;
	background: rgba(3, 16, 15, 0.44);
}

.b66-showroom-products .b66-product-card__panel {
	display: grid;
	grid-template-rows: auto 1fr;
	min-height: 100%;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.b66-showroom-products .b66-product-card__media {
	padding: 1.35rem 1.15rem 0.6rem;
	aspect-ratio: 1 / 1.04;
	background: transparent;
}

.b66-showroom-products .b66-product-card__media::after {
	display: none;
}

.b66-showroom-products .b66-product-card__body {
	display: grid;
	align-content: start;
	gap: 0.65rem;
	padding: 0.9rem 1.15rem 1.15rem;
	border-top: 1px solid var(--b66-line);
	text-align: left;
}

.b66-showroom-products .b66-product-card__meta,
.b66-showroom-products .star-rating {
	display: none;
}

.b66-showroom-products .b66-product-card__title,
.b66-showroom-products .woocommerce-loop-product__title {
	min-height: 0;
	font-size: 1.05rem;
}

.b66-showroom-products .b66-product-card__price {
	margin-top: auto;
}

.b66-showroom-products .b66-product-card__cta .button,
.b66-showroom-products .woocommerce ul.products li.product .button {
	width: auto;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--b66-accent-soft);
	box-shadow: none;
}

.b66-showroom-members {
	display: grid;
	grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1.42fr);
	align-items: stretch;
	gap: 1px;
	background: var(--b66-line);
}

.b66-showroom-members__copy,
.b66-showroom-members__media {
	background: rgba(3, 16, 15, 0.44);
}

.b66-showroom-members__copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 1rem;
	padding: clamp(1.5rem, 3vw, 2.5rem);
}

.b66-showroom-members__copy h2,
.b66-showroom-members__copy p {
	margin: 0;
}

.b66-showroom-members__copy h2 {
	font-family: "Bricolage Grotesque", sans-serif;
	font-size: clamp(2rem, 4vw, 3rem);
	line-height: 0.95;
	letter-spacing: -0.05em;
}

.b66-showroom-members__copy p {
	max-width: 18rem;
	color: var(--b66-text-muted);
}

.b66-showroom-members__media {
	min-height: 26rem;
}

.b66-showroom-members__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.b66-footer {
	margin-top: clamp(3.5rem, 7vw, 6rem);
	padding: 0 0 1.5rem;
	background: transparent;
	border-top: 0;
}

.b66-footer__rail {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 1.25rem;
	padding: 1.15rem 0;
	border-top: 1px solid var(--b66-line);
	border-bottom: 1px solid var(--b66-line);
}

.b66-footer__brand img {
	width: min(170px, 42vw);
}

.b66-footer__links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.8rem 1.2rem;
}

.b66-footer__links a,
.b66-footer__account,
.b66-footer__meta a {
	color: var(--b66-text-muted);
	font-size: 0.92rem;
	transition: color var(--b66-transition);
}

.b66-footer__links a:hover,
.b66-footer__account:hover,
.b66-footer__meta a:hover {
	color: var(--b66-text);
}

.b66-footer__account {
	padding-left: 1rem;
	border-left: 1px solid var(--b66-line);
}

.b66-footer__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-top: 0.8rem;
	padding-top: 0;
	border-top: 0;
	color: rgba(239, 252, 249, 0.62);
	font-size: 0.84rem;
	line-height: 1.5;
}

@media (max-width: 1180px) {
	.b66-showroom-hero__inner,
	.b66-showroom-members {
		grid-template-columns: 1fr;
	}

	.b66-showroom-collections,
	.b66-showroom-products {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}

	.b66-showroom-hero__visual {
		min-height: 28rem;
	}
}

@media (max-width: 820px) {
	.b66-showroom-hero {
		padding-top: 6.5rem;
		min-height: auto;
	}

	.b66-showroom-hero__copy h1 {
		max-width: 9ch;
	}

	.b66-showroom-collections,
	.b66-showroom-products {
		grid-template-columns: 1fr !important;
	}

	.b66-showroom-heading,
	.b66-footer__rail,
	.b66-footer__meta {
		grid-template-columns: 1fr;
		flex-direction: column;
		text-align: center;
	}

	.b66-footer__account {
		padding-left: 0;
		border-left: 0;
	}
}

/* Editorial home enforcement */
body.home .b66-showroom-hero__inner {
	display: grid !important;
	grid-template-columns: minmax(0, 0.72fr) minmax(340px, 0.88fr) !important;
}

body.home .b66-showroom-collections {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

body.home ul.b66-showroom-products {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

body.home .b66-showroom-members {
	display: grid !important;
	grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1.42fr) !important;
}

body.home ul.b66-showroom-products li.product {
	float: none !important;
	width: auto !important;
	margin: 0 !important;
}

@media (max-width: 1180px) {
	body.home .b66-showroom-hero__inner,
	body.home .b66-showroom-members {
		grid-template-columns: 1fr !important;
	}

	body.home .b66-showroom-collections,
	body.home ul.b66-showroom-products {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}
}

@media (max-width: 820px) {
	body.home .b66-showroom-collections,
	body.home ul.b66-showroom-products {
		grid-template-columns: 1fr !important;
	}
}

/* Final Teal Commerce Override */

:root {
	--b66-bg: #020506;
	--b66-bg-deep: #000203;
	--b66-bg-elevated: #0a0f11;
	--b66-surface: rgba(10, 15, 18, 0.88);
	--b66-surface-strong: rgba(11, 18, 22, 0.96);
	--b66-surface-soft: rgba(7, 11, 14, 0.72);
	--b66-line: rgba(56, 212, 194, 0.18);
	--b66-line-strong: rgba(120, 251, 238, 0.44);
	--b66-text: #f5fffd;
	--b66-text-muted: #8ea8a3;
	--b66-accent: #1fd1c1;
	--b66-accent-soft: #82f6eb;
	--b66-accent-hot: #d4fffb;
	--b66-warning: #48e6d7;
	--b66-danger: #ff7b77;
	--b66-shadow-lg: 0 42px 92px rgba(0, 0, 0, 0.58);
	--b66-shadow-md: 0 28px 56px rgba(0, 0, 0, 0.42);
	--b66-shadow-sm: 0 16px 28px rgba(0, 0, 0, 0.28);
	--b66-cut-sm: 12px;
	--b66-cut-md: 18px;
	--b66-cut-lg: 26px;
}

html {
	background: var(--b66-bg-deep);
}

body {
	background:
		radial-gradient(circle at 16% 12%, rgba(31, 209, 193, 0.12), transparent 24%),
		radial-gradient(circle at 86% 10%, rgba(31, 209, 193, 0.08), transparent 18%),
		linear-gradient(180deg, #030607 0%, #010203 100%);
	color: var(--b66-text);
}

body::before {
	background:
		repeating-linear-gradient(125deg, rgba(255, 255, 255, 0.036) 0 1px, transparent 1px 84px),
		repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.024) 0 1px, transparent 1px 96px),
		linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, transparent 22%);
	opacity: 0.32;
	mix-blend-mode: screen;
}

body::after {
	inset: auto -8vw -18vh auto;
	width: 42vw;
	height: 42vw;
	background: radial-gradient(circle, rgba(31, 209, 193, 0.2), rgba(31, 209, 193, 0.05) 40%, transparent 68%);
	filter: blur(64px);
	opacity: 0.85;
}

body.menu-open,
body.cart-open {
	overflow: hidden;
}

a {
	transition: color var(--b66-transition), opacity var(--b66-transition);
}

a:hover {
	color: var(--b66-accent-hot);
}

h1,
h2,
h3,
h4,
h5,
h6,
.b66-nav__list a,
.b66-page-header h1,
.b66-entry-card__title,
.b66-showroom-heading h2,
.b66-footer__newsletter h2,
.b66-search-hero h1 {
	font-family: "Barlow Condensed", sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.b66-showroom-hero__copy h1,
.b66-page-header h1,
.b66-footer__newsletter h2,
.b66-search-hero h1,
.b66-showroom-members__copy h2 {
	font-style: italic;
}

.b66-text-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: "Barlow Condensed", sans-serif;
	font-size: 0.98rem;
	font-style: italic;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--b66-accent-soft);
}

.b66-text-link::after {
	content: ">";
	color: var(--b66-accent);
}

.b66-button,
.button,
button,
input[type="submit"],
input[type="button"] {
	min-height: 3.25rem;
	padding: 0.9rem 1.25rem;
	border: 1px solid var(--b66-line);
	border-radius: 0;
	background: linear-gradient(180deg, rgba(14, 20, 24, 0.94), rgba(5, 8, 10, 0.96));
	box-shadow: none;
	font-family: "Barlow Condensed", sans-serif;
	font-size: 1rem;
	font-style: italic;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.b66-button:hover,
.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
	transform: translateY(-2px);
	border-color: var(--b66-line-strong);
	color: var(--b66-text);
}

.b66-button--primary,
.button,
button,
input[type="submit"],
input[type="button"] {
	background: linear-gradient(135deg, var(--b66-accent-hot) 0%, var(--b66-accent) 56%, #0c6861 100%);
	color: #02110f;
	border-color: transparent;
	box-shadow: 0 16px 30px rgba(31, 209, 193, 0.2);
}

.b66-button--secondary,
.b66-button--ghost {
	background: linear-gradient(180deg, rgba(14, 20, 24, 0.96), rgba(5, 8, 10, 0.98));
	color: var(--b66-text);
	border-color: var(--b66-line);
	box-shadow: none;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="number"],
select,
textarea {
	border: 1px solid rgba(82, 246, 231, 0.18);
	border-radius: 0;
	background: linear-gradient(180deg, rgba(11, 16, 19, 0.96), rgba(4, 7, 9, 0.98));
	color: var(--b66-text);
	clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

input::placeholder,
textarea::placeholder {
	color: rgba(142, 168, 163, 0.76);
}

input:focus,
select:focus,
textarea:focus {
	border-color: var(--b66-line-strong);
	box-shadow: 0 0 0 4px rgba(31, 209, 193, 0.1);
}

table {
	background: transparent;
}

th,
td {
	border-bottom-color: rgba(82, 246, 231, 0.12);
}

.b66-header {
	position: sticky;
	top: 0;
	z-index: 60;
	background: rgba(3, 6, 7, 0.84);
	border-bottom: 1px solid rgba(82, 246, 231, 0.1);
	backdrop-filter: blur(18px) saturate(130%);
}

.b66-header::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(82, 246, 231, 0.6), transparent);
}

.b66-header__inner {
	display: grid;
	gap: 0.85rem;
	padding: 0.95rem 0 0.8rem;
}

.b66-header__mast {
	display: grid;
	grid-template-columns: auto auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 1rem;
}

.b66-brand {
	display: inline-flex;
	align-items: center;
	gap: 0.9rem;
}

.b66-brand__pulse {
	width: 0.75rem;
	height: 0.75rem;
	border: 1px solid var(--b66-line-strong);
	background: radial-gradient(circle, var(--b66-accent-soft) 0%, var(--b66-accent) 55%, transparent 56%);
	box-shadow: 0 0 18px rgba(31, 209, 193, 0.28);
	clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

.b66-brand__logo img {
	width: clamp(132px, 15vw, 188px);
}

.b66-header__toggle,
.b66-header__account,
.b66-cart-button {
	min-height: 3.2rem;
	border: 1px solid var(--b66-line);
	background: linear-gradient(180deg, rgba(12, 18, 21, 0.94), rgba(4, 7, 9, 0.98));
	box-shadow: none;
}

.b66-header__toggle {
	width: 3.2rem;
	padding: 0;
}

.b66-header__toggle span {
	display: block;
	width: 1.3rem;
	height: 1px;
	margin: 0.26rem auto;
	background: var(--b66-text);
}

.b66-header__search {
	min-width: 0;
}

.b66-searchform {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 0.75rem;
	min-height: 3.3rem;
	padding: 0.18rem 0.18rem 0.18rem 0.95rem;
	border: 1px solid var(--b66-line);
	background:
		radial-gradient(circle at 100% 0, rgba(31, 209, 193, 0.12), transparent 26%),
		linear-gradient(180deg, rgba(12, 18, 21, 0.94), rgba(4, 7, 9, 0.98));
	clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}

.b66-searchform__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--b66-accent);
}

.b66-searchform__icon svg,
.b66-header__action-icon svg {
	width: 1rem;
	height: 1rem;
	fill: currentColor;
}

.b66-searchform__input {
	width: 100%;
	border: 0;
	background: transparent;
	box-shadow: none;
	clip-path: none;
	padding: 0.85rem 0;
}

.b66-searchform__submit {
	min-width: 3.35rem;
	padding-inline: 1rem;
}

.b66-header__actions {
	display: flex;
	align-items: center;
	gap: 0.8rem;
}

.b66-header__account,
.b66-cart-button {
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	padding: 0 1rem;
	color: var(--b66-text);
}

.b66-header__account:hover,
.b66-cart-button:hover {
	color: var(--b66-accent-hot);
}

.b66-cart-button__label {
	white-space: nowrap;
}

.b66-cart-total {
	color: var(--b66-accent-soft);
	font-size: 0.92rem;
}

.b66-cart-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 1.45rem;
	height: 1.45rem;
	padding: 0 0.35rem;
	background: linear-gradient(135deg, var(--b66-accent-hot), var(--b66-accent));
	color: #03100d;
	font-family: "Barlow Condensed", sans-serif;
	font-size: 0.85rem;
	font-weight: 700;
	line-height: 1;
	clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

.b66-nav {
	display: flex;
	align-items: center;
	padding-top: 0.75rem;
	border-top: 1px solid rgba(82, 246, 231, 0.08);
}

.b66-nav__list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	list-style: none;
	padding: 0;
	margin: 0;
}

.b66-nav__list a {
	display: inline-flex;
	align-items: center;
	min-height: 2.7rem;
	padding: 0.65rem 0.95rem;
	color: var(--b66-text-muted);
	font-size: 0.98rem;
	font-style: italic;
	font-weight: 700;
	letter-spacing: 0.12em;
	background: rgba(255, 255, 255, 0.02);
	clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.b66-nav__list a:hover,
.b66-nav__list .current-menu-item > a,
.b66-nav__list .current_page_item > a {
	background: linear-gradient(180deg, rgba(22, 53, 49, 0.88), rgba(8, 17, 19, 0.96));
	color: var(--b66-accent-hot);
}

.b66-cart-drawer__backdrop {
	background: rgba(0, 0, 0, 0.68);
	backdrop-filter: blur(6px);
}

.b66-cart-drawer__panel {
	width: min(460px, calc(100vw - 1rem));
	border-left: 1px solid var(--b66-line-strong);
	background:
		radial-gradient(circle at 100% 0, rgba(31, 209, 193, 0.14), transparent 26%),
		linear-gradient(180deg, rgba(8, 12, 15, 0.98), rgba(3, 5, 7, 1));
	box-shadow: var(--b66-shadow-lg);
}

.b66-cart-drawer__header {
	padding-bottom: 1rem;
	border-bottom: 1px solid rgba(82, 246, 231, 0.12);
}

.b66-cart-drawer__close {
	min-width: 3rem;
	min-height: 3rem;
	padding: 0;
	border: 1px solid var(--b66-line);
	background: linear-gradient(180deg, rgba(12, 18, 21, 0.94), rgba(4, 7, 9, 0.98));
	color: var(--b66-text);
}

.b66-cart-drawer__close:hover {
	border-color: var(--b66-line-strong);
	color: var(--b66-accent-hot);
}

.b66-page-shell,
.b66-content-grid,
.b66-search-shell {
	padding: 3rem 0 4.5rem;
}

.b66-page-header,
.b66-search-hero,
.b66-entry-card,
.b66-page-article {
	position: relative;
	border: 1px solid var(--b66-line);
	background:
		radial-gradient(circle at 100% 0, rgba(31, 209, 193, 0.12), transparent 28%),
		linear-gradient(180deg, rgba(12, 18, 21, 0.96), rgba(4, 7, 9, 0.98));
	box-shadow: var(--b66-shadow-sm);
	clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
}

.b66-page-header,
.b66-search-hero {
	display: grid;
	gap: 0.85rem;
	padding: clamp(1.4rem, 3vw, 2rem);
	margin-bottom: 1.25rem;
}

.b66-page-article,
.b66-entry-card {
	padding: 1.4rem;
}

.b66-content-stack {
	display: grid;
	gap: 1rem;
}

.b66-entry-card__title a:hover {
	color: var(--b66-accent-hot);
}

.b66-entry-card__copy,
.b66-entry-copy,
.b66-footer__copy,
.b66-search-hero__copy p,
.b66-showroom-hero__lead {
	color: var(--b66-text-muted);
}

.b66-search-hero {
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: end;
}

.b66-search-hero__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	justify-content: flex-end;
}

.b66-search-hero__stat {
	display: inline-flex;
	align-items: center;
	padding: 0.7rem 0.95rem;
	border: 1px solid rgba(82, 246, 231, 0.18);
	background: rgba(255, 255, 255, 0.02);
	font-family: "Barlow Condensed", sans-serif;
	font-size: 0.92rem;
	font-style: italic;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--b66-accent-soft);
	clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.b66-search-panel {
	margin-bottom: 1rem;
}

.b66-showroom-hero {
	min-height: min(100svh, 880px);
	padding: 8.6rem 0 3.4rem;
}

.b66-showroom-hero__backdrop {
	background:
		linear-gradient(90deg, rgba(1, 3, 4, 0.96) 0%, rgba(1, 3, 4, 0.8) 40%, rgba(1, 3, 4, 0.22) 100%),
		repeating-linear-gradient(125deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 92px),
		radial-gradient(circle at 74% 18%, rgba(31, 209, 193, 0.12), transparent 22%);
}

.b66-showroom-hero__inner {
	grid-template-columns: minmax(0, 0.68fr) minmax(360px, 0.92fr);
	align-items: end;
	min-height: calc(min(100svh, 880px) - 11rem);
}

.b66-showroom-hero__copy {
	max-width: 34rem;
}

.b66-showroom-hero__copy h1 {
	max-width: 7ch;
	font-size: clamp(4.2rem, 10vw, 7.8rem);
	line-height: 0.84;
	letter-spacing: 0.04em;
}

.b66-showroom-hero__lead {
	max-width: 30rem;
	font-size: 1.08rem;
}

.b66-showroom-hero__signals {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.15rem;
}

.b66-showroom-hero__signal {
	display: inline-flex;
	align-items: center;
	padding: 0.78rem 1rem;
	border: 1px solid rgba(82, 246, 231, 0.18);
	background: rgba(255, 255, 255, 0.02);
	font-family: "Barlow Condensed", sans-serif;
	font-size: 0.92rem;
	font-style: italic;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--b66-accent-soft);
	clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.b66-showroom-hero__current {
	margin-top: 1.5rem;
	padding-top: 1.1rem;
	border-top: 1px solid rgba(82, 246, 231, 0.12);
}

.b66-showroom-hero__current-row {
	align-items: baseline;
	font-size: 1rem;
}

.b66-showroom-hero__visual::before {
	inset: 10% 4% 0 10%;
	border: 1px solid rgba(82, 246, 231, 0.12);
	background:
		repeating-linear-gradient(125deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 78px),
		linear-gradient(180deg, rgba(12, 18, 21, 0.38), rgba(4, 7, 9, 0.2)),
		radial-gradient(circle at 76% 18%, rgba(31, 209, 193, 0.14), transparent 26%);
}

.b66-showroom-hero__object {
	padding: 1rem 0 0 0;
	border: 1px solid rgba(82, 246, 231, 0.16);
	background: linear-gradient(180deg, rgba(11, 17, 20, 0.72), rgba(3, 5, 7, 0.28));
	clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
}

.b66-showroom-collections,
.b66-showroom-products {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	gap: 1rem !important;
	background: transparent;
}

.b66-showroom-collection {
	position: relative;
	min-height: 25rem;
	border: 1px solid var(--b66-line);
	background:
		linear-gradient(180deg, rgba(11, 17, 20, 0.96), rgba(4, 7, 9, 0.98)),
		radial-gradient(circle at 100% 0, rgba(31, 209, 193, 0.12), transparent 26%);
	clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
	overflow: hidden;
}

.b66-showroom-collection::after {
	content: "";
	position: absolute;
	top: -6%;
	right: 18%;
	width: 1px;
	height: 112%;
	background: linear-gradient(180deg, transparent, rgba(82, 246, 231, 0.38), transparent);
	transform: skewX(-18deg);
}

.b66-showroom-collection:hover {
	transform: translateY(-4px);
	border-color: var(--b66-line-strong);
}

.b66-showroom-collection__index {
	position: absolute;
	top: 0.9rem;
	left: 1rem;
	z-index: 2;
	font-family: "Barlow Condensed", sans-serif;
	font-size: clamp(3rem, 4vw, 4.2rem);
	font-style: italic;
	font-weight: 700;
	line-height: 0.9;
	color: rgba(255, 255, 255, 0.08);
}

.b66-showroom-collection__media {
	position: relative;
	aspect-ratio: 4 / 4.5;
	overflow: hidden;
	isolation: isolate;
	-webkit-clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 18px, calc(100% - 18px) 100%, 0 100%);
	clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 18px, calc(100% - 18px) 100%, 0 100%);
	background:
		linear-gradient(180deg, rgba(11, 17, 20, 0.34), rgba(4, 7, 9, 0.14)),
		linear-gradient(135deg, rgba(82, 246, 231, 0.12), transparent 42%);
}

.b66-showroom-collection__media::before {
	content: "";
	position: absolute;
	inset: 0;
	border: 1px solid rgba(82, 246, 231, 0.14);
	-webkit-clip-path: inherit;
	clip-path: inherit;
	pointer-events: none;
}

.b66-showroom-collection__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, transparent 22%, rgba(3, 5, 7, 0.86) 100%),
		radial-gradient(circle at 70% 0, rgba(31, 209, 193, 0.1), transparent 24%);
}

.b66-category-card__fallback {
	display: block;
	background:
		repeating-linear-gradient(125deg, rgba(255, 255, 255, 0.036) 0 1px, transparent 1px 42px),
		linear-gradient(180deg, rgba(11, 17, 20, 0.96), rgba(4, 7, 9, 0.98));
}

.b66-showroom-collection__media img,
.b66-showroom-collection__media .b66-category-card__fallback {
	display: block;
	margin: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 22%;
}

.b66-showroom-collection__meta {
	position: relative;
	z-index: 2;
	display: grid;
	gap: 0.2rem;
	padding: 1.1rem 1.15rem 1.2rem;
	border-top: 1px solid rgba(82, 246, 231, 0.08);
}

.b66-showroom-collection__meta strong {
	font-family: "Barlow Condensed", sans-serif;
	font-size: 1.38rem;
	font-style: italic;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.b66-showroom-collection__meta span {
	font-size: 0.88rem;
}

.b66-showroom-collection__action {
	margin-top: 0.3rem;
	color: var(--b66-accent-soft);
	font-family: "Barlow Condensed", sans-serif;
	font-style: italic;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.b66-showroom-members {
	gap: 1rem;
	background: transparent;
}

.b66-showroom-members__copy,
.b66-showroom-members__media {
	border: 1px solid var(--b66-line);
	background:
		radial-gradient(circle at 100% 0, rgba(31, 209, 193, 0.12), transparent 28%),
		linear-gradient(180deg, rgba(11, 17, 20, 0.96), rgba(4, 7, 9, 0.98));
	clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
}

.b66-showroom-members__copy h2 {
	font-size: clamp(2.4rem, 5vw, 4rem);
	line-height: 0.9;
}

.b66-showroom-members__copy p {
	max-width: 28rem;
}

.b66-showroom-members__media img {
	filter: saturate(0.96) contrast(1.02);
}

.b66-footer {
	margin-top: clamp(4rem, 8vw, 7rem);
	padding-bottom: 1.7rem;
}

.b66-footer__newsletter {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 1.4rem;
	align-items: center;
	padding: clamp(1.7rem, 4vw, 2.8rem);
	border: 1px solid var(--b66-line-strong);
	background:
		radial-gradient(circle at 100% 0, rgba(31, 209, 193, 0.16), transparent 28%),
		repeating-linear-gradient(125deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 78px),
		linear-gradient(180deg, rgba(11, 17, 20, 0.98), rgba(4, 7, 9, 1));
	box-shadow: var(--b66-shadow-md);
	clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
}

.b66-footer__newsletter h2 {
	max-width: 15ch;
	font-size: clamp(2.2rem, 4vw, 3.7rem);
	line-height: 0.92;
}

.b66-footer__newsletter-copy p:last-child {
	max-width: 34rem;
	color: var(--b66-text-muted);
}

.b66-footer__newsletter-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	justify-content: flex-end;
}

.b66-footer__rail {
	display: grid;
	grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1fr) minmax(260px, 0.9fr);
	align-items: start;
	gap: 1.4rem;
	margin-top: 1.1rem;
	padding: 1.7rem 0 1.2rem;
	border-top: 1px solid rgba(82, 246, 231, 0.1);
	border-bottom: 1px solid rgba(82, 246, 231, 0.1);
}

.b66-footer__brandblock {
	display: grid;
	gap: 0.85rem;
}

.b66-footer__brand img {
	width: min(188px, 48vw);
}

.b66-footer__links {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.65rem 1rem;
	align-content: start;
}

.b66-footer__links a,
.b66-footer__account,
.b66-footer__meta a {
	display: inline-flex;
	align-items: center;
	min-height: 2.8rem;
	padding: 0.75rem 0.95rem;
	border: 1px solid rgba(82, 246, 231, 0.12);
	background: rgba(255, 255, 255, 0.02);
	font-family: "Barlow Condensed", sans-serif;
	font-size: 0.92rem;
	font-style: italic;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--b66-text-muted);
	clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.b66-footer__actions {
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
}

.b66-footer__meta {
	color: var(--b66-text-muted);
}

.b66-footer__meta {
	margin-top: 0.9rem;
}

.wp-block-quote,
blockquote,
.wp-block-table table,
.wp-block-search__inside-wrapper {
	border: 1px solid rgba(82, 246, 231, 0.14);
	background: linear-gradient(180deg, rgba(11, 17, 20, 0.94), rgba(4, 7, 9, 0.98));
	clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

blockquote,
.wp-block-quote {
	padding: 1.2rem 1.35rem;
}

@media (max-width: 1180px) {
	.b66-showroom-collections,
	.b66-showroom-products {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}

	.b66-footer__rail {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 960px) {
	.b66-header__mast {
		grid-template-columns: auto 1fr auto;
	}

	.b66-header__search {
		grid-column: 1 / -1;
		order: 4;
	}

	.b66-nav {
		position: fixed;
		top: 6.4rem;
		left: 1rem;
		right: 1rem;
		z-index: 59;
		padding: 1rem;
		border: 1px solid var(--b66-line);
		background: linear-gradient(180deg, rgba(10, 15, 18, 0.98), rgba(3, 5, 7, 1));
		box-shadow: var(--b66-shadow-lg);
		clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
		opacity: 0;
		pointer-events: none;
		transform: translateY(-10px);
		transition: opacity var(--b66-transition), transform var(--b66-transition);
	}

	body.menu-open .b66-nav {
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
	}

	.b66-nav__list {
		display: grid;
		width: 100%;
	}

	.b66-nav__list a {
		width: 100%;
	}

	.b66-showroom-hero__inner,
	.b66-showroom-members,
	.b66-search-hero,
	.b66-footer__newsletter {
		grid-template-columns: 1fr;
	}

	.b66-footer__newsletter-actions,
	.b66-search-hero__meta {
		justify-content: flex-start;
	}
}

@media (max-width: 720px) {
	.b66-header__actions {
		gap: 0.55rem;
	}

	.b66-header__account span:last-child,
	.b66-cart-button__label,
	.b66-cart-total {
		display: none;
	}

	.b66-showroom-hero {
		padding-top: 7.5rem;
		min-height: auto;
	}

	.b66-showroom-hero__copy h1 {
		font-size: clamp(3.3rem, 16vw, 5rem);
	}

	.b66-showroom-collections,
	.b66-showroom-products,
	body.home .b66-showroom-collections,
	body.home ul.b66-showroom-products {
		grid-template-columns: 1fr !important;
	}

	.b66-footer__links {
		grid-template-columns: 1fr;
	}
}

/* Slanted Showroom Grid Refinement */
.b66-showroom-collection {
	display: grid;
	grid-template-rows: minmax(0, 1fr) auto;
	align-content: stretch;
	-webkit-clip-path: polygon(10.5% 0, 100% 0, 89.5% 100%, 0 100%);
	clip-path: polygon(10.5% 0, 100% 0, 89.5% 100%, 0 100%);
}

.b66-showroom-collection::after {
	top: -9%;
	right: 19%;
	height: 118%;
}

.b66-showroom-collection__index {
	top: 1rem;
	left: 1.55rem;
}

.b66-showroom-collection__media {
	aspect-ratio: 1 / 1.1;
	min-height: 0;
	-webkit-clip-path: none;
	clip-path: none;
	background: transparent;
}

.b66-showroom-collection__media::before {
	display: none;
}

.b66-showroom-collection__media::after {
	background:
		linear-gradient(180deg, rgba(3, 5, 7, 0.04) 0, rgba(3, 5, 7, 0.2) 46%, rgba(3, 5, 7, 0.92) 100%),
		radial-gradient(circle at 72% 0, rgba(31, 209, 193, 0.08), transparent 26%);
}

.b66-showroom-collection__media img,
.b66-showroom-collection__media .b66-category-card__fallback {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 24%;
}

.b66-showroom-collection__meta {
	gap: 0.32rem;
	padding: 1.1rem 1.3rem 1.2rem 1.55rem;
	background:
		linear-gradient(180deg, rgba(8, 12, 15, 0.16), rgba(4, 7, 9, 0.98) 18%),
		linear-gradient(180deg, rgba(9, 14, 17, 0.94), rgba(4, 7, 9, 0.99));
}

.b66-showroom-products .b66-product-card__panel {
	display: grid;
	grid-template-rows: minmax(0, 1fr) auto;
	border: 1px solid var(--b66-line);
	background:
		radial-gradient(circle at 100% 0, rgba(31, 209, 193, 0.1), transparent 25%),
		linear-gradient(180deg, rgba(11, 17, 20, 0.98), rgba(4, 7, 9, 1));
	box-shadow: var(--b66-shadow-sm);
	-webkit-clip-path: polygon(10.5% 0, 100% 0, 89.5% 100%, 0 100%);
	clip-path: polygon(10.5% 0, 100% 0, 89.5% 100%, 0 100%);
	overflow: hidden;
}

.b66-showroom-products .b66-product-card__media {
	padding: 0;
	aspect-ratio: 1 / 1.08;
	background: transparent;
}

.b66-showroom-products .b66-product-card__body {
	gap: 0.5rem;
	padding: 0.95rem 1.3rem 1.15rem 1.55rem;
	background:
		linear-gradient(180deg, rgba(8, 12, 15, 0.18), rgba(4, 7, 9, 0.98) 18%),
		linear-gradient(180deg, rgba(9, 14, 17, 0.94), rgba(4, 7, 9, 0.99));
}

.b66-showroom-products .b66-product-card__title,
.b66-showroom-products .woocommerce-loop-product__title {
	max-width: 10ch;
}

@media (max-width: 720px) {
	.b66-showroom-collection,
	.b66-showroom-products .b66-product-card__panel {
		-webkit-clip-path: polygon(6% 0, 100% 0, 94% 100%, 0 100%);
		clip-path: polygon(6% 0, 100% 0, 94% 100%, 0 100%);
	}

	.b66-showroom-collection__index {
		left: 1.2rem;
	}

	.b66-showroom-collection__meta,
	.b66-showroom-products .b66-product-card__body {
		padding-left: 1.25rem;
		padding-right: 1.1rem;
	}
}

/* Hero Scale Refinement */
.b66-showroom-hero {
	min-height: clamp(35rem, 82svh, 46rem);
	padding: 7.4rem 0 2.6rem;
}

.b66-showroom-hero__inner,
body.home .b66-showroom-hero__inner {
	grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.78fr) !important;
	align-items: center;
	gap: clamp(1.5rem, 3vw, 3rem);
	min-height: calc(clamp(35rem, 82svh, 46rem) - 10rem);
}

.b66-showroom-hero__copy {
	max-width: 30rem;
}

.b66-showroom-hero__copy h1 {
	max-width: 9.5ch;
	font-size: clamp(3.45rem, 7.2vw, 5.95rem);
	line-height: 0.86;
}

.b66-showroom-hero__lead {
	max-width: 27rem;
	font-size: 1rem;
}

.b66-showroom-hero__signals {
	gap: 0.6rem;
	margin-top: 0.95rem;
}

.b66-showroom-hero__signal {
	padding: 0.7rem 0.9rem;
	font-size: 0.86rem;
}

.b66-showroom-hero__current {
	margin-top: 1.1rem;
	padding-top: 0.9rem;
}

.b66-showroom-hero__visual {
	width: min(34rem, 100%);
	justify-self: end;
}

.b66-showroom-hero__visual::before {
	inset: 8% 5% 0 11%;
}

.b66-showroom-hero__object {
	padding-top: 0.7rem;
}

.b66-showroom-hero__object img {
	max-height: 58svh;
}

@media (max-width: 960px) {
	.b66-showroom-hero {
		min-height: auto;
		padding: 7.25rem 0 2.3rem;
	}

	.b66-showroom-hero__inner,
	body.home .b66-showroom-hero__inner {
		grid-template-columns: 1fr !important;
		min-height: auto;
	}

	.b66-showroom-hero__visual {
		width: min(30rem, 100%);
		justify-self: stretch;
	}

	.b66-showroom-hero__copy h1 {
		max-width: 10ch;
		font-size: clamp(3.2rem, 10vw, 4.9rem);
	}
}

/* Sheared Rail Grid Alignment */
:root {
	--b66-rail-angle: -8deg;
	--b66-rail-unshear: 8deg;
	--b66-rail-gap: 0.42rem;
	--b66-rail-expand: 2.8rem;
}

.b66-showroom-collections,
body.home .b66-showroom-collections,
.b66-showroom-products,
body.home ul.b66-showroom-products {
	gap: var(--b66-rail-gap) !important;
}

.b66-showroom-collection {
	min-height: 24.8rem;
	-webkit-clip-path: none;
	clip-path: none;
	transform: skewX(var(--b66-rail-angle));
	transform-origin: bottom left;
}

.b66-showroom-collection:hover {
	transform: skewX(var(--b66-rail-angle)) translateY(-4px);
}

.b66-showroom-collection::after {
	top: -14%;
	right: 14%;
	height: 126%;
	transform: none;
}

.b66-showroom-collection__index,
.b66-showroom-collection__media,
.b66-showroom-collection__meta {
	transform: skewX(var(--b66-rail-unshear));
	transform-origin: bottom left;
}

.b66-showroom-collection__index {
	top: 1rem;
	left: 1.8rem;
}

.b66-showroom-collection__media,
.b66-showroom-collection__meta {
	width: calc(100% + var(--b66-rail-expand));
	margin-left: calc(var(--b66-rail-expand) * -0.58);
}

.b66-showroom-collection__media {
	aspect-ratio: 0.95;
}

.b66-showroom-collection__meta {
	padding: 1.05rem 1.5rem 1.15rem 1.8rem;
}

.b66-showroom-products .b66-product-card__panel {
	transform: skewX(var(--b66-rail-angle));
	transform-origin: bottom left;
}

.b66-showroom-products .b66-product-card__body {
	padding: 0.95rem 1.4rem 1.15rem 1.75rem;
}

@media (max-width: 720px) {
	:root {
		--b66-rail-angle: -5.5deg;
		--b66-rail-unshear: 5.5deg;
		--b66-rail-gap: 0.32rem;
		--b66-rail-expand: 1.5rem;
	}

	.b66-showroom-collection__index {
		left: 1.25rem;
	}

	.b66-showroom-collection__meta,
	.b66-showroom-products .b66-product-card__body {
		padding-left: 1.25rem;
		padding-right: 1.1rem;
	}
}

/* Header Cleanup Refinement */
.b66-header__mast {
	grid-template-columns: auto minmax(0, 1fr) auto;
}

.b66-header__brand {
	min-width: 0;
}

.b66-brand {
	gap: 0;
}

.b66-brand__pulse {
	display: none;
}

.b66-brand__logo {
	display: block;
	width: clamp(152px, 16vw, 188px);
}

.b66-brand__logo img {
	width: 100%;
	height: auto;
	max-height: none;
	object-fit: contain;
}

.b66-header__actions {
	margin-left: auto;
	justify-self: end;
	gap: 0.55rem;
}

.b66-header__account {
	min-height: 3rem;
	padding: 0 0.95rem;
}

.b66-cart-button--icon {
	position: relative;
	width: 3rem;
	min-width: 3rem;
	min-height: 3rem;
	padding: 0;
	justify-content: center;
	gap: 0;
}

.b66-cart-button--icon .b66-header__action-icon svg {
	width: 1.1rem;
	height: 1.1rem;
}

.b66-cart-button--icon .b66-cart-button__label,
.b66-cart-button--icon .b66-cart-total {
	display: none;
}

.b66-cart-button--icon .b66-cart-count {
	position: absolute;
	top: -0.25rem;
	right: -0.22rem;
	min-width: 1.15rem;
	height: 1.15rem;
	padding: 0 0.25rem;
	font-size: 0.72rem;
}

@media (max-width: 960px) {
	.b66-header__mast {
		grid-template-columns: auto minmax(0, 1fr) auto;
	}
}

@media (max-width: 720px) {
	.b66-brand__logo {
		width: clamp(136px, 34vw, 164px);
	}

	.b66-header__actions {
		gap: 0.45rem;
	}

	.b66-header__account {
		padding: 0 0.82rem;
	}
}

/* Clipped Panel Correction */
:root {
	--b66-panel-slant: 13.5%;
	--b66-panel-gap: 0.48rem;
}

.b66-showroom-collections,
body.home .b66-showroom-collections,
.b66-showroom-products,
body.home ul.b66-showroom-products {
	gap: var(--b66-panel-gap) !important;
}

.b66-showroom-collection {
	min-height: 24.8rem;
	transform: none;
	-webkit-clip-path: polygon(var(--b66-panel-slant) 0, 100% 0, calc(100% - var(--b66-panel-slant)) 100%, 0 100%);
	clip-path: polygon(var(--b66-panel-slant) 0, 100% 0, calc(100% - var(--b66-panel-slant)) 100%, 0 100%);
	overflow: hidden;
}

.b66-showroom-collection:hover {
	transform: translateY(-4px);
}

.b66-showroom-collection::after {
	top: -6%;
	right: 16%;
	height: 112%;
	transform: skewX(-7deg);
}

.b66-showroom-collection__index,
.b66-showroom-collection__media,
.b66-showroom-collection__meta {
	transform: none;
}

.b66-showroom-collection__index {
	left: 1.35rem;
}

.b66-showroom-collection__media,
.b66-showroom-collection__meta {
	width: 100%;
	margin-left: 0;
}

.b66-showroom-collection__media {
	aspect-ratio: 0.94;
	background: transparent;
}

.b66-showroom-collection__media::before {
	display: none;
}

.b66-showroom-collection__media::after {
	background:
		linear-gradient(180deg, rgba(3, 5, 7, 0.06) 0, rgba(3, 5, 7, 0.16) 52%, rgba(3, 5, 7, 0.86) 100%),
		radial-gradient(circle at 72% 0, rgba(31, 209, 193, 0.06), transparent 24%);
}

.b66-showroom-collection__meta {
	padding: 1.05rem 1.55rem 1.2rem 1.15rem;
	background:
		linear-gradient(180deg, rgba(8, 12, 15, 0.1), rgba(4, 7, 9, 0.98) 18%),
		linear-gradient(180deg, rgba(9, 14, 17, 0.94), rgba(4, 7, 9, 0.99));
}

.b66-showroom-products .b66-product-card__panel {
	transform: none;
}

.b66-showroom-products .b66-product-card__body {
	padding: 1rem 1.5rem 1.2rem 1.15rem;
}

.b66-showroom-products .b66-product-card__title,
.b66-showroom-products .woocommerce-loop-product__title {
	max-width: none;
}

@media (max-width: 720px) {
	:root {
		--b66-panel-slant: 8%;
		--b66-panel-gap: 0.34rem;
	}

	.b66-showroom-collection__index {
		left: 1.05rem;
	}

	.b66-showroom-collection__meta,
	.b66-showroom-products .b66-product-card__body {
		padding-left: 1rem;
		padding-right: 1.15rem;
	}
}

/* Home Product Grid Artifact Cleanup */
.b66-showroom-products,
body.home ul.b66-showroom-products {
	list-style: none !important;
	padding: 0 !important;
	background: transparent !important;
}

.b66-showroom-products li.product,
body.home ul.b66-showroom-products li.product {
	list-style: none !important;
	list-style-type: none !important;
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	padding: 0 !important;
	-webkit-clip-path: polygon(var(--b66-panel-slant, 13.5%) 0, 100% 0, calc(100% - var(--b66-panel-slant, 13.5%)) 100%, 0 100%);
	clip-path: polygon(var(--b66-panel-slant, 13.5%) 0, 100% 0, calc(100% - var(--b66-panel-slant, 13.5%)) 100%, 0 100%);
	overflow: hidden;
}

.b66-showroom-products li.product::before,
.b66-showroom-products li.product::after,
body.home ul.b66-showroom-products li.product::before,
body.home ul.b66-showroom-products li.product::after {
	content: none !important;
	display: none !important;
}

.b66-showroom-products li.product::marker,
body.home ul.b66-showroom-products li.product::marker {
	content: "" !important;
	font-size: 0 !important;
}

/* Compact Header Scroll State */
:root {
	--b66-header-logo-width: clamp(128px, 13vw, 160px);
	--b66-header-logo-width-scrolled: clamp(84px, 8.6vw, 106px);
	--b66-header-transition: 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.b66-header {
	box-shadow: 0 0 0 rgba(0, 0, 0, 0);
	transition:
		background-color var(--b66-header-transition),
		border-color var(--b66-header-transition),
		box-shadow var(--b66-header-transition),
		backdrop-filter var(--b66-header-transition);
	will-change: background-color, box-shadow, backdrop-filter;
}

.b66-header__inner,
.b66-header__mast,
.b66-brand__logo,
.b66-header__toggle,
.b66-header__account,
.b66-cart-button--icon,
.b66-header__action-icon svg {
	transition:
		padding var(--b66-header-transition),
		gap var(--b66-header-transition),
		width var(--b66-header-transition),
		min-height var(--b66-header-transition),
		min-width var(--b66-header-transition),
		transform var(--b66-header-transition);
	will-change: padding, gap, width, min-height, min-width, transform;
}

.b66-header__inner {
	gap: 0.55rem;
	padding: 0.62rem 0 0.58rem;
}

.b66-header__mast {
	gap: 0.78rem;
}

.b66-brand__logo {
	width: var(--b66-header-logo-width);
}

.b66-header__toggle,
.b66-header__account,
.b66-cart-button--icon {
	min-height: 2.7rem;
}

.b66-header__toggle {
	width: 2.7rem;
}

.b66-header__account {
	padding: 0 0.82rem;
}

.b66-cart-button--icon {
	width: 2.7rem;
	min-width: 2.7rem;
}

.b66-header.is-scrolled {
	background: rgba(3, 7, 9, 0.94);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.b66-header.is-scrolled .b66-header__inner {
	padding: 0.34rem 0 0.3rem;
}

.b66-header.is-scrolled .b66-header__mast {
	gap: 0.5rem;
}

.b66-header.is-scrolled .b66-brand__logo {
	width: var(--b66-header-logo-width-scrolled);
}

.b66-header.is-scrolled .b66-header__toggle,
.b66-header.is-scrolled .b66-header__account,
.b66-header.is-scrolled .b66-cart-button--icon {
	min-height: 1.95rem;
}

.b66-header.is-scrolled .b66-header__toggle {
	width: 1.95rem;
}

.b66-header.is-scrolled .b66-header__account {
	padding: 0 0.56rem;
}

.b66-header.is-scrolled .b66-cart-button--icon {
	width: 1.95rem;
	min-width: 1.95rem;
}

.b66-header.is-scrolled .b66-cart-button--icon .b66-cart-count {
	top: -0.18rem;
	right: -0.16rem;
	transform: scale(0.88);
	transform-origin: top right;
}

.b66-header.is-scrolled .b66-header__action-icon svg {
	transform: scale(0.82);
}

@media (max-width: 720px) {
	:root {
		--b66-header-logo-width: clamp(120px, 31vw, 148px);
		--b66-header-logo-width-scrolled: clamp(82px, 22vw, 104px);
	}

	.b66-header__inner {
		padding: 0.54rem 0 0.5rem;
	}

	.b66-header.is-scrolled .b66-header__inner {
		padding: 0.3rem 0 0.26rem;
	}

	.b66-header__account {
		padding: 0 0.72rem;
	}
}

/* Collection Card Refinement */
:root {
	--b66-card-slant: 10.5%;
	--b66-card-notch: 16px;
	--b66-card-rail-width: 5px;
	--b66-card-rail-offset: clamp(0.8rem, 3vw, 1.15rem);
}

.b66-showroom-collection {
	position: relative;
	isolation: isolate;
	min-height: 25.4rem;
	background:
		linear-gradient(180deg, rgba(7, 12, 15, 0.82), rgba(3, 7, 9, 0.96)),
		radial-gradient(circle at 78% 0, rgba(82, 246, 231, 0.12), transparent 26%);
	-webkit-clip-path: polygon(var(--b66-card-slant) 0, calc(100% - var(--b66-card-notch)) 0, 100% var(--b66-card-notch), calc(100% - var(--b66-card-slant)) 100%, var(--b66-card-notch) 100%, 0 calc(100% - var(--b66-card-notch)));
	clip-path: polygon(var(--b66-card-slant) 0, calc(100% - var(--b66-card-notch)) 0, 100% var(--b66-card-notch), calc(100% - var(--b66-card-slant)) 100%, var(--b66-card-notch) 100%, 0 calc(100% - var(--b66-card-notch)));
	overflow: hidden;
}

.b66-showroom-collection:hover {
	transform: translateY(-4px);
}

.b66-showroom-collection::before {
	content: "";
	position: absolute;
	inset: 0;
	border: 1px solid rgba(174, 255, 249, 0.18);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.058), rgba(255, 255, 255, 0.016) 30%, rgba(255, 255, 255, 0.024) 100%),
		linear-gradient(135deg, rgba(82, 246, 231, 0.026), transparent 42%);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.1),
		inset 0 0 0 1px rgba(255, 255, 255, 0.015),
		0 18px 38px rgba(0, 0, 0, 0.15);
	pointer-events: none;
	z-index: 0;
}

.b66-showroom-collection::after {
	display: none;
}

.b66-showroom-collection__index,
.b66-showroom-collection__media,
.b66-showroom-collection__meta {
	position: relative;
	z-index: 1;
}

.b66-showroom-collection__index {
	left: 1.15rem;
	top: 1.15rem;
	font-size: clamp(3.7rem, 7vw, 5.6rem);
	line-height: 0.8;
}

.b66-showroom-collection__media {
	aspect-ratio: 0.92;
	background:
		linear-gradient(180deg, rgba(6, 11, 13, 0.32), rgba(4, 7, 9, 0.12)),
		radial-gradient(circle at 78% 0, rgba(82, 246, 231, 0.08), transparent 24%);
	-webkit-clip-path: none;
	clip-path: none;
}

.b66-showroom-collection__media::before {
	display: none;
}

.b66-showroom-collection__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(3, 5, 7, 0.04) 0, rgba(3, 5, 7, 0.1) 54%, rgba(3, 5, 7, 0.34) 100%),
		linear-gradient(135deg, rgba(82, 246, 231, 0.06), transparent 42%);
	pointer-events: none;
}

.b66-showroom-collection__media img,
.b66-showroom-collection__media .b66-category-card__fallback {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.b66-showroom-collection__media .b66-category-card__fallback {
	display: block;
	background:
		linear-gradient(180deg, rgba(7, 11, 14, 0.8), rgba(4, 7, 9, 0.94)),
		repeating-linear-gradient(125deg, rgba(255, 255, 255, 0.02) 0, rgba(255, 255, 255, 0.02) 2px, transparent 2px, transparent 44px);
}

.b66-showroom-collection__meta {
	--b66-collection-meta-pad-top: 1.15rem;
	--b66-collection-meta-pad-right: 1.55rem;
	--b66-collection-meta-pad-bottom: 1.25rem;
	--b66-collection-meta-pad-left: 1.15rem;
	display: grid;
	align-content: end;
	justify-items: stretch;
	gap: 0.72rem;
	min-height: 8.2rem;
	padding:
		var(--b66-collection-meta-pad-top)
		var(--b66-collection-meta-pad-right)
		var(--b66-collection-meta-pad-bottom)
		var(--b66-collection-meta-pad-left);
	border-top: 1px solid rgba(174, 255, 249, 0.1);
	background:
		linear-gradient(180deg, rgba(8, 12, 15, 0.26), rgba(5, 8, 10, 0.68)),
		linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02) 42%, rgba(255, 255, 255, 0.012) 100%);
	-webkit-backdrop-filter: blur(18px) saturate(145%);
	backdrop-filter: blur(18px) saturate(145%);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.b66-showroom-collection__meta strong {
	justify-self: start;
	font-family: "Barlow Condensed", sans-serif;
	font-size: clamp(1.16rem, 1.6vw, 1.42rem);
	font-style: normal;
	font-weight: 700;
	line-height: 0.92;
	letter-spacing: 0.055em;
	text-transform: uppercase;
	text-shadow: 0 1px 18px rgba(0, 0, 0, 0.22);
}

.b66-showroom-collection__meta span {
	color: inherit;
	font-size: inherit;
}

.b66-showroom-collection__cta {
	display: grid;
	margin-top: auto;
	margin-right: calc(var(--b66-collection-meta-pad-right) * -1);
	margin-bottom: calc(var(--b66-collection-meta-pad-bottom) * -1);
	margin-left: calc(var(--b66-collection-meta-pad-left) * -1);
	padding-top: 0.72rem;
	overflow: hidden;
	isolation: isolate;
}

.b66-showroom-collection__action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 4.35rem;
	margin: 0;
	padding: 0.98rem 1.35rem 0.94rem;
	border: 0;
	background: linear-gradient(135deg, rgba(216, 255, 248, 0.98) 0%, rgba(133, 242, 228, 0.96) 20%, rgba(41, 201, 180, 0.98) 63%, #14887a 100%);
	font-family: "Barlow Condensed", sans-serif;
	font-size: 0.96rem;
	font-style: normal;
	font-weight: 700;
	line-height: 0.96;
	letter-spacing: 0.18em;
	text-align: center;
	text-transform: uppercase;
	color: #04110f;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24);
	-webkit-clip-path: none;
	clip-path: none;
	text-shadow: none;
}

.b66-showroom-collection__action::after {
	display: none;
}

.b66-showroom-collection:hover .b66-showroom-collection__action {
	box-shadow: 0 20px 38px rgba(41, 201, 180, 0.22);
	filter: saturate(1.05) brightness(1.03);
}

.b66-showroom-collection--text {
	background:
		linear-gradient(180deg, rgba(8, 14, 17, 0.82), rgba(4, 7, 9, 0.96)),
		radial-gradient(circle at 76% 16%, rgba(82, 246, 231, 0.1), transparent 24%);
}

.b66-showroom-collection--text .b66-showroom-collection__meta {
	margin-top: 0;
}

@media (max-width: 720px) {
	:root {
		--b66-card-slant: 6%;
		--b66-card-notch: 12px;
		--b66-card-rail-offset: 0.72rem;
	}

	.b66-showroom-collection {
		min-height: 22.8rem;
	}

	.b66-showroom-collection__index {
		left: 0.92rem;
		top: 0.95rem;
		font-size: clamp(3rem, 15vw, 4.2rem);
	}

	.b66-showroom-collection__meta {
		--b66-collection-meta-pad-top: 1rem;
		--b66-collection-meta-pad-right: 1.2rem;
		--b66-collection-meta-pad-bottom: 1.08rem;
		--b66-collection-meta-pad-left: 0.95rem;
		padding:
			var(--b66-collection-meta-pad-top)
			var(--b66-collection-meta-pad-right)
			var(--b66-collection-meta-pad-bottom)
			var(--b66-collection-meta-pad-left);
	}

	.b66-showroom-collection__action {
		min-height: 4.2rem;
		padding-inline: 1.1rem;
	}
}

/* Background Motion Amplifier */
:root {
	--b66-bg-motion-grid: 20s;
	--b66-bg-motion-bloom: 12s;
	--b66-bg-motion-caustic-a: 14s;
	--b66-bg-motion-caustic-b: 18s;
}

body::before,
body::after,
.b66-site-shell::before,
.b66-site-shell::after {
	will-change: transform, opacity;
}

body::before {
	background:
		radial-gradient(circle at 18% 14%, rgba(82, 246, 231, 0.12), transparent 18%),
		radial-gradient(circle at 82% 18%, rgba(174, 255, 249, 0.08), transparent 16%),
		repeating-linear-gradient(125deg, rgba(255, 255, 255, 0.056) 0 1px, transparent 1px 70px),
		repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 88px),
		linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 24%);
	opacity: 0.56;
	filter: blur(0.3px);
	animation: b66BackdropLattice var(--b66-bg-motion-grid) linear infinite alternate;
}

body::after {
	inset: auto -14vw -22vh auto;
	width: 58vw;
	height: 58vw;
	background:
		radial-gradient(circle at 44% 42%, rgba(82, 246, 231, 0.42) 0, rgba(82, 246, 231, 0.18) 22%, rgba(82, 246, 231, 0.08) 42%, transparent 70%),
		radial-gradient(circle at 68% 30%, rgba(214, 255, 251, 0.14) 0, transparent 34%);
	filter: blur(78px);
	opacity: 1;
	animation: b66BackdropBloom var(--b66-bg-motion-bloom) cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}

.b66-site-shell::before {
	filter: blur(30px);
	opacity: 1;
	animation: b66CausticSweepAmplified var(--b66-bg-motion-caustic-a) cubic-bezier(0.44, 0, 0.24, 1) infinite alternate;
}

.b66-site-shell::after {
	filter: blur(56px);
	opacity: 0.94;
	animation: b66CausticFloatAmplified var(--b66-bg-motion-caustic-b) ease-in-out infinite alternate;
}

@keyframes b66BackdropLattice {
	from {
		transform: translate3d(-1vw, -1vh, 0) scale(1);
	}
	to {
		transform: translate3d(2.2vw, 1.6vh, 0) scale(1.03);
	}
}

@keyframes b66BackdropBloom {
	from {
		transform: translate3d(0, 0, 0) scale(1);
		opacity: 0.82;
	}
	to {
		transform: translate3d(-14vw, -10vh, 0) scale(1.24);
		opacity: 1;
	}
}

@keyframes b66CausticSweepAmplified {
	from {
		transform: translate3d(-6vw, -1vh, 0) rotate(-0.5deg) scale(1);
		opacity: 0.72;
	}
	to {
		transform: translate3d(7vw, -5vh, 0) rotate(0.7deg) scale(1.08);
		opacity: 1;
	}
}

@keyframes b66CausticFloatAmplified {
	from {
		transform: translate3d(3vw, 1vh, 0) scale(1);
		opacity: 0.62;
	}
	to {
		transform: translate3d(-4vw, 5vh, 0) scale(1.12);
		opacity: 0.94;
	}
}

@media (prefers-reduced-motion: reduce) {
	body::before,
	body::after,
	.b66-site-shell::before,
	.b66-site-shell::after {
		animation: none !important;
		transform: none !important;
	}
}

/* Header Order Refinement */
.b66-header__inner {
	display: block;
}

.b66-header__mast {
	display: grid;
	grid-template-columns: auto auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 0.78rem;
}

.b66-header__brand {
	order: 1;
}

.b66-header__toggle {
	order: 2;
	justify-self: start;
}

.b66-header__nav {
	order: 3;
	min-width: 0;
	padding-top: 0;
	border-top: 0;
	justify-self: start;
}

.b66-nav__list {
	align-items: center;
}

.b66-header__actions {
	order: 4;
	margin-left: auto;
	justify-self: end;
	justify-content: flex-end;
}

.b66-header__account--icon,
.b66-cart-button--icon {
	position: relative;
	width: 2.7rem;
	min-width: 2.7rem;
	min-height: 2.7rem;
	padding: 0;
	justify-content: center;
	gap: 0;
}

.b66-header__account--icon {
	border-left: 0;
}

.b66-header__account--icon .b66-header__action-icon svg,
.b66-cart-button--icon .b66-header__action-icon svg {
	width: 1.1rem;
	height: 1.1rem;
}

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

	.b66-header__nav {
		position: static;
		inset: auto;
		opacity: 1;
		pointer-events: auto;
		transform: none;
	}
}

@media (max-width: 960px) {
	.b66-header__mast {
		grid-template-columns: auto auto 1fr auto;
	}

	.b66-header__nav {
		position: fixed;
		top: 5.2rem;
		left: 1rem;
		right: 1rem;
		z-index: 59;
		padding: 1rem;
		border: 1px solid var(--b66-line);
		background: linear-gradient(180deg, rgba(10, 15, 18, 0.98), rgba(3, 5, 7, 1));
		box-shadow: var(--b66-shadow-lg);
		clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
		opacity: 0;
		pointer-events: none;
		transform: translateY(-10px);
		transition: opacity var(--b66-transition), transform var(--b66-transition);
	}

	body.menu-open .b66-header__nav {
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
	}
}

@media (max-width: 720px) {
	.b66-header__mast {
		grid-template-columns: auto auto 1fr auto;
		gap: 0.55rem;
	}

	.b66-header__account--icon,
	.b66-cart-button--icon {
		width: 2.35rem;
		min-width: 2.35rem;
		min-height: 2.35rem;
	}
}

/* Global visible list marker cleanup */
.b66-site-shell ul,
.b66-footer ul,
.b66-header__nav ul {
	list-style: none !important;
	padding-left: 0 !important;
	margin-left: 0 !important;
}

.b66-site-shell ul > li,
.b66-footer ul > li,
.b66-header__nav ul > li {
	list-style: none !important;
}

.b66-site-shell ul > li::marker,
.b66-footer ul > li::marker,
.b66-header__nav ul > li::marker {
	content: "" !important;
	font-size: 0 !important;
}

.b66-showroom-collection__index {
	display: none !important;
}

.b66-footer__meta {
	align-items: flex-start;
	flex-wrap: wrap;
}

.b66-footer__meta p {
	flex: 1 1 46rem;
	max-width: 82ch;
}

.b66-footer__meta a {
	flex: 0 0 auto;
	margin-left: auto;
}

@media (max-width: 720px) {
	.b66-showroom-collections,
	body.home .b66-showroom-collections {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: 0.42rem !important;
	}

	.b66-showroom-collection {
		min-height: clamp(18.75rem, 58vw, 22.8rem);
	}
}

.b66-page-shell,
.b66-search-shell,
.b66-woo-shell,
.b66-shop-shell {
	width: min(1400px, calc(100vw - clamp(2rem, 4vw, 4rem)));
}

@media (max-width: 960px) {
	.b66-page-shell,
	.b66-search-shell,
	.b66-woo-shell,
	.b66-shop-shell {
		width: min(1400px, calc(100vw - 2rem));
	}
}

/* 2026 Storefront Reset */
:root {
	--b66-bg: #060708;
	--b66-bg-soft: #0c0f12;
	--b66-panel: #0f1215;
	--b66-panel-soft: #12161a;
	--b66-line: rgba(255, 255, 255, 0.08);
	--b66-line-strong: rgba(255, 255, 255, 0.12);
	--b66-copy: rgba(241, 244, 247, 0.94);
	--b66-copy-muted: rgba(205, 211, 217, 0.72);
	--b66-accent: #19dbe0;
	--b66-accent-soft: #98fbff;
	--b66-radius: 16px;
	--b66-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

body,
body.becca66-20-theme {
	background:
		radial-gradient(circle at top center, rgba(23, 219, 224, 0.12), transparent 32%),
		linear-gradient(180deg, #07090a 0%, #050607 100%);
	color: var(--b66-copy);
	font-family: "Outfit", sans-serif;
}

.b66-site-shell {
	background: transparent;
}

.b66-shell,
.b66-page-shell,
.b66-search-shell,
.b66-woo-shell,
.b66-shop-shell {
	width: min(1400px, calc(100vw - clamp(2rem, 4vw, 4rem))) !important;
	margin-inline: auto;
}

.b66-button,
a.b66-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.65rem;
	min-height: 3.25rem;
	padding: 0.85rem 1.4rem;
	border: 1px solid var(--b66-line);
	border-radius: 999px;
	font-family: "Outfit", sans-serif;
	font-size: 0.88rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-decoration: none;
	transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease, color 180ms ease;
}

.b66-button--primary,
a.b66-button--primary {
	background: var(--b66-accent);
	border-color: transparent;
	color: #071014;
}

.b66-button--secondary,
a.b66-button--secondary {
	background: rgba(255, 255, 255, 0.02);
	color: var(--b66-copy);
}

.b66-button:hover,
a.b66-button:hover {
	transform: translateY(-1px);
}

.b66-text-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--b66-accent-soft);
	font-size: 0.88rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-decoration: none;
	text-transform: uppercase;
}

.b66-text-link::after {
	content: "\2192";
	font-size: 0.95em;
}

.b66-header {
	position: sticky;
	top: 0;
	z-index: 100;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	background: rgba(5, 7, 8, 0.88);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
}

.b66-header.is-scrolled {
	background: rgba(5, 7, 8, 0.96);
}

.b66-header__promo {
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.b66-header__promo-inner {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 2.1rem;
}

.b66-header__promo p {
	margin: 0;
	color: var(--b66-copy-muted);
	font-size: 0.74rem;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.b66-header__inner {
	padding-block: 1rem;
}

.b66-header__mast {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 1.35rem;
}

.b66-brand--wordmark {
	display: inline-flex;
	align-items: center;
	color: #f6f7f8;
	font-family: "Barlow Condensed", sans-serif;
	font-size: 2rem;
	font-weight: 600;
	letter-spacing: 0.24em;
	line-height: 1;
	text-decoration: none;
	text-transform: uppercase;
}

.b66-header__nav {
	display: flex;
	justify-content: center;
}

.b66-nav__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: clamp(1rem, 2vw, 2rem);
	margin: 0;
	padding: 0;
	list-style: none;
}

.b66-nav__list a {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 2.5rem;
	color: rgba(240, 242, 245, 0.84);
	font-size: 0.9rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	text-decoration: none;
	text-transform: uppercase;
}

.b66-nav__list .current-menu-item > a,
.b66-nav__list .current_page_item > a,
.b66-nav__list a:hover {
	color: #fff;
}

.b66-nav__list .current-menu-item > a::after,
.b66-nav__list .current_page_item > a::after,
.b66-nav__list a:hover::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: -0.25rem;
	left: 0;
	height: 2px;
	background: var(--b66-accent);
}

.b66-header__actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 0.85rem;
}

.b66-header__action,
.b66-header__account,
.b66-cart-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.85rem;
	min-height: 2.85rem;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.02);
	color: #fff;
	text-decoration: none;
}

.b66-header__action-icon {
	display: inline-flex;
	width: 1.1rem;
	height: 1.1rem;
}

.b66-header__action-icon svg {
	width: 100%;
	height: 100%;
	fill: currentColor;
}

.b66-cart-button {
	gap: 0.7rem;
	padding-inline: 0.95rem 1.1rem;
}

.b66-cart-button__total,
.b66-cart-total {
	color: #fff;
	font-size: 0.95rem;
	font-weight: 600;
}

.b66-cart-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.35rem;
	height: 1.35rem;
	border-radius: 999px;
	background: var(--b66-accent);
	color: #061014;
	font-size: 0.7rem;
	font-weight: 700;
}

.b66-header__toggle {
	display: none;
}

.b66-home-hero {
	padding: clamp(1rem, 2vw, 1.5rem) 0 0;
}

.b66-home-hero__inner {
	display: grid;
	grid-template-columns: minmax(18rem, 30rem) minmax(0, 1fr);
	align-items: stretch;
	border: 1px solid var(--b66-line);
	border-radius: var(--b66-radius);
	background: linear-gradient(180deg, rgba(12, 15, 17, 0.96), rgba(7, 9, 10, 0.98));
	overflow: hidden;
	box-shadow: var(--b66-shadow);
}

.b66-home-hero__copy {
	display: grid;
	align-content: center;
	gap: 1rem;
	padding: clamp(2rem, 5vw, 4rem);
	background:
		linear-gradient(180deg, rgba(8, 10, 11, 0.94), rgba(6, 7, 8, 0.98)),
		radial-gradient(circle at top left, rgba(23, 219, 224, 0.12), transparent 35%);
}

.b66-home-hero__kicker,
.b66-section-heading p,
.b66-shop-hero__kicker {
	margin: 0;
	color: var(--b66-accent);
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.b66-home-hero__copy h1 {
	margin: 0;
	font-family: "Outfit", sans-serif;
	font-size: clamp(2.8rem, 5.6vw, 5rem);
	font-weight: 500;
	letter-spacing: -0.04em;
	line-height: 0.95;
	text-wrap: balance;
}

.b66-home-hero__copy p:last-of-type {
	max-width: 30rem;
	margin: 0;
	color: var(--b66-copy-muted);
	font-size: 1.04rem;
	line-height: 1.8;
}

.b66-home-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.9rem;
	padding-top: 0.6rem;
}

.b66-home-hero__visual,
.b66-home-hero__media {
	min-height: 100%;
}

.b66-home-hero__media {
	position: relative;
	background: linear-gradient(180deg, rgba(10, 12, 13, 0.8), rgba(5, 6, 7, 0.98));
}

.b66-home-hero__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(5, 7, 8, 0.8), rgba(5, 7, 8, 0.1) 28%, rgba(5, 7, 8, 0.22) 100%),
		linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.2));
}

.b66-home-hero__media img,
.b66-home-hero__fallback {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.b66-home-hero__fallback {
	background:
		radial-gradient(circle at center, rgba(255, 255, 255, 0.08), transparent 20%),
		linear-gradient(135deg, rgba(18, 23, 26, 0.96), rgba(6, 8, 9, 1));
}

.b66-catalog-section {
	padding: clamp(2rem, 4vw, 3.2rem) 0 0;
}

.b66-catalog-section--first {
	padding-top: clamp(2.2rem, 4.5vw, 3.5rem);
}

.b66-section-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1.3rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.b66-section-heading h2 {
	margin: 0.35rem 0 0;
	font-family: "Barlow Condensed", sans-serif;
	font-size: clamp(2rem, 4vw, 3.1rem);
	font-weight: 600;
	letter-spacing: 0.08em;
	line-height: 0.94;
	text-transform: uppercase;
}

.b66-showroom-collections,
body.home .b66-showroom-collections {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	gap: 1.2rem !important;
}

.b66-showroom-collection {
	position: relative;
	display: block;
	min-height: 21rem;
	border: 1px solid var(--b66-line);
	border-radius: var(--b66-radius);
	overflow: hidden;
	background: linear-gradient(180deg, rgba(10, 12, 13, 0.96), rgba(5, 7, 8, 1));
	box-shadow: var(--b66-shadow);
	transform: none !important;
	clip-path: none !important;
	text-decoration: none;
}

.b66-showroom-collection:hover {
	transform: translateY(-3px) !important;
}

.b66-showroom-collection::before,
.b66-showroom-collection::after,
.b66-showroom-collection__index {
	display: none !important;
}

.b66-showroom-collection__media,
.b66-showroom-collection__meta {
	position: static;
	width: 100% !important;
	margin: 0 !important;
	padding: 0;
	transform: none !important;
}

.b66-showroom-collection__media {
	position: relative;
	height: 100%;
	min-height: 21rem;
	aspect-ratio: auto;
	background: linear-gradient(180deg, rgba(8, 10, 11, 0.8), rgba(8, 10, 11, 0.98));
}

.b66-showroom-collection__media::before,
.b66-showroom-collection__media::after {
	display: none !important;
}

.b66-showroom-collection__media img,
.b66-showroom-collection__media .b66-category-card__fallback {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.b66-showroom-collection__meta {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	display: grid;
	gap: 0.35rem;
	padding: 3.75rem 1.2rem 1.2rem;
	background: linear-gradient(180deg, rgba(5, 7, 8, 0) 0%, rgba(5, 7, 8, 0.52) 52%, rgba(5, 7, 8, 0.92) 82%, rgba(5, 7, 8, 0.98) 100%);
}

.b66-showroom-collection__meta em {
	color: var(--b66-copy-muted);
	font-size: 0.78rem;
	font-style: normal;
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.b66-showroom-collection__meta strong {
	color: #fff;
	font-family: "Barlow Condensed", sans-serif;
	font-size: clamp(1.45rem, 1.9vw, 1.9rem);
	font-style: normal;
	font-weight: 600;
	letter-spacing: 0.05em;
	line-height: 0.95;
	text-transform: uppercase;
}

.b66-showroom-collection__action,
.b66-showroom-collection__cta {
	display: none !important;
}

.b66-footer {
	margin-top: clamp(3rem, 6vw, 5rem);
	padding-bottom: 1.8rem;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	background: linear-gradient(180deg, rgba(8, 10, 11, 0.92), rgba(5, 6, 7, 1));
}

.b66-footer__benefits {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1rem;
	padding-block: 1.6rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.b66-footer__benefit {
	display: grid;
	gap: 0.35rem;
	padding-right: 1rem;
}

.b66-footer__benefit strong,
.b66-footer__column h2,
.b66-footer__brand--wordmark {
	font-family: "Barlow Condensed", sans-serif;
	font-size: 1.1rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	line-height: 1;
	text-transform: uppercase;
}

.b66-footer__benefit span,
.b66-footer__copy,
.b66-footer__column p,
.b66-footer__meta p {
	color: var(--b66-copy-muted);
	font-size: 0.96rem;
	line-height: 1.75;
}

.b66-footer__rail {
	display: grid;
	grid-template-columns: minmax(15rem, 1.2fr) minmax(0, 2.2fr);
	gap: 2rem;
	padding-block: 2rem;
}

.b66-footer__brandblock {
	display: grid;
	align-content: start;
	gap: 1rem;
}

.b66-footer__brand--wordmark {
	color: #f7f8fa;
	font-size: 2rem;
	text-decoration: none;
}

.b66-footer__columns {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.25rem;
}

.b66-footer__column {
	display: grid;
	align-content: start;
	gap: 0.7rem;
}

.b66-footer__column h2 {
	margin: 0 0 0.2rem;
	color: #fff;
}

.b66-footer__column a {
	color: rgba(240, 242, 245, 0.82);
	font-size: 0.95rem;
	text-decoration: none;
}

.b66-footer__column a:hover {
	color: var(--b66-accent-soft);
}

.b66-footer__signup {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 3rem;
	padding: 0.8rem 1.2rem;
	border: 1px solid var(--b66-line);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.03);
	color: #fff;
	font-size: 0.9rem;
	font-weight: 600;
	text-decoration: none;
	text-transform: uppercase;
}

.b66-footer__meta {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
	padding-top: 1.4rem;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.b66-footer__meta a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.9rem;
	padding: 0.75rem 1.2rem;
	border: 1px solid var(--b66-line);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.02);
	color: #fff;
	font-size: 0.84rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-decoration: none;
	text-transform: uppercase;
}

@media (max-width: 960px) {
	.b66-header__mast {
		grid-template-columns: auto auto 1fr auto;
	}

	.b66-header__toggle {
		display: inline-flex;
		flex-direction: column;
		justify-content: center;
		gap: 0.3rem;
		width: 2.85rem;
		height: 2.85rem;
		padding: 0;
		border: 1px solid rgba(255, 255, 255, 0.08);
		border-radius: 999px;
		background: rgba(255, 255, 255, 0.02);
		color: #fff;
	}

	.b66-header__toggle span:not(.screen-reader-text) {
		display: block;
		width: 1rem;
		height: 1px;
		margin-inline: auto;
		background: currentColor;
	}

	.b66-header__nav {
		position: absolute;
		top: 100%;
		right: 1rem;
		left: 1rem;
		display: none;
		padding: 1rem;
		border: 1px solid rgba(255, 255, 255, 0.08);
		border-radius: 20px;
		background: rgba(8, 10, 11, 0.98);
		box-shadow: var(--b66-shadow);
	}

	body.menu-open .b66-header__nav {
		display: block;
	}

	.b66-nav__list {
		flex-direction: column;
		align-items: flex-start;
	}

	.b66-home-hero__inner,
	.b66-footer__rail,
	.b66-footer__meta {
		grid-template-columns: 1fr;
	}

	.b66-home-hero__visual {
		order: -1;
	}

	.b66-footer__columns,
	.b66-footer__benefits {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 720px) {
	.b66-shell,
	.b66-page-shell,
	.b66-search-shell,
	.b66-woo-shell,
	.b66-shop-shell {
		width: min(1400px, calc(100vw - 1.25rem)) !important;
	}

	.b66-home-hero__copy {
		padding: 1.35rem;
	}

	.b66-home-hero__copy h1 {
		font-size: clamp(2.3rem, 12vw, 3.4rem);
	}

	.b66-section-heading {
		flex-direction: column;
		align-items: flex-start;
	}

	.b66-showroom-collections,
	body.home .b66-showroom-collections,
	.b66-footer__benefits,
	.b66-footer__columns {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}

	.b66-showroom-collection {
		min-height: clamp(15rem, 54vw, 18.5rem);
	}

	.b66-showroom-collection__media {
		min-height: clamp(15rem, 54vw, 18.5rem);
	}

	.b66-showroom-collection__meta {
		padding: 2.5rem 0.9rem 0.9rem;
	}

	.b66-showroom-collection__meta strong {
		font-size: 1.18rem;
	}

	.b66-header__actions {
		gap: 0.55rem;
	}

	.b66-cart-button__total {
		display: none;
	}

	.b66-footer__meta {
		padding-bottom: 1rem;
	}
}

@media (max-width: 720px) {
	.b66-page-shell,
	.b66-search-shell,
	.b66-woo-shell,
	.b66-shop-shell {
		width: min(1400px, calc(100vw - 1.25rem));
	}
}

/* 2026 Reference Rebuild */
:root {
	--b66-rebuild-bg: #070809;
	--b66-rebuild-surface: #0f1113;
	--b66-rebuild-surface-soft: #15181b;
	--b66-rebuild-line: rgba(255, 255, 255, 0.08);
	--b66-rebuild-line-strong: rgba(255, 255, 255, 0.12);
	--b66-rebuild-copy: rgba(244, 246, 248, 0.94);
	--b66-rebuild-copy-soft: rgba(194, 201, 208, 0.72);
	--b66-rebuild-accent: #12d5dc;
	--b66-rebuild-accent-strong: #0ef1f8;
	--b66-rebuild-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
	--b66-rebuild-radius: 14px;
}

body,
body.becca66-20-theme {
	background:
		radial-gradient(circle at top center, rgba(18, 213, 220, 0.09), transparent 34%),
		linear-gradient(180deg, #090a0b 0%, #060708 100%);
	color: var(--b66-rebuild-copy);
	font-family: "Outfit", sans-serif;
}

.b66-site-shell {
	background: transparent;
}

.b66-shell,
.b66-page-shell,
.b66-search-shell,
.b66-woo-shell,
.b66-shop-shell {
	width: min(1400px, calc(100vw - clamp(2rem, 4vw, 4rem))) !important;
}

.b66-header {
	position: sticky;
	top: 0;
	z-index: 100;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	background: rgba(7, 8, 9, 0.96);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
}

body.promo-dismissed .b66-header__promo {
	display: none;
}

.b66-header__promo {
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.b66-header__promo-inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 2.2rem;
}

.b66-header__promo p {
	margin: 0;
	color: var(--b66-rebuild-copy-soft);
	font-size: 0.74rem;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.b66-header__promo-dismiss {
	position: absolute;
	top: 50%;
	right: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.8rem;
	height: 1.8rem;
	padding: 0;
	border: 0;
	background: transparent;
	color: rgba(255, 255, 255, 0.54);
	font-size: 1.25rem;
	line-height: 1;
	transform: translateY(-50%);
	cursor: pointer;
}

.b66-header__inner {
	padding-block: 1.1rem;
}

.b66-header__mast {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 1.35rem;
}

.b66-brand {
	display: inline-flex;
	align-items: center;
}

.b66-brand__logo img {
	display: block;
	width: auto;
	height: clamp(2rem, 3vw, 2.6rem);
	max-width: min(16rem, 26vw);
	object-fit: contain;
}

.b66-header__nav {
	display: flex;
	justify-content: center;
}

.b66-nav__list {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(0.85rem, 1.9vw, 1.75rem);
	margin: 0;
	padding: 0;
	list-style: none;
}

.b66-nav__list a {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 2.3rem;
	color: rgba(241, 244, 247, 0.8);
	font-size: 0.83rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-decoration: none;
	text-transform: uppercase;
}

.b66-nav__list a:hover,
.b66-nav__list .current-menu-item > a,
.b66-nav__list .current_page_item > a {
	color: #fff;
}

.b66-nav__list a:hover::after,
.b66-nav__list .current-menu-item > a::after,
.b66-nav__list .current_page_item > a::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: -0.72rem;
	left: 0;
	height: 2px;
	background: var(--b66-rebuild-accent);
}

.b66-header__actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 0.7rem;
}

.b66-header__action,
.b66-header__account,
.b66-cart-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.7rem;
	min-height: 2.7rem;
	padding: 0;
	border: 0;
	background: transparent;
	color: #fff;
	text-decoration: none;
}

.b66-header__action-icon {
	display: inline-flex;
	width: 1.16rem;
	height: 1.16rem;
}

.b66-header__action-icon svg {
	width: 100%;
	height: 100%;
	fill: currentColor;
}

.b66-cart-button {
	gap: 0.55rem;
	padding-left: 0.15rem;
}

.b66-cart-button__total,
.b66-cart-total {
	color: #fff;
	font-size: 1rem;
	font-weight: 600;
}

.b66-cart-count {
	position: relative;
	top: -0.4rem;
	left: -0.3rem;
	width: 1.2rem;
	height: 1.2rem;
	background: var(--b66-rebuild-accent);
	color: #081013;
	font-size: 0.66rem;
	font-weight: 700;
}

.b66-header__toggle {
	display: none;
}

.b66-home-hero {
	padding-top: 0;
}

.b66-home-hero__inner {
	display: grid;
	grid-template-columns: minmax(17rem, 28rem) minmax(0, 1fr);
	align-items: stretch;
	border: 1px solid var(--b66-rebuild-line);
	border-radius: 0 0 var(--b66-rebuild-radius) var(--b66-rebuild-radius);
	background: #090b0d;
	overflow: hidden;
	box-shadow: var(--b66-rebuild-shadow);
}

.b66-home-hero__copy {
	display: grid;
	align-content: center;
	gap: 1rem;
	padding: clamp(1.8rem, 4vw, 3.4rem);
	background: linear-gradient(180deg, rgba(8, 9, 10, 0.98), rgba(7, 8, 9, 0.98));
}

.b66-home-hero__kicker,
.b66-section-heading p,
.b66-shop-hero__kicker {
	margin: 0;
	color: var(--b66-rebuild-accent);
	font-size: 0.88rem;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.b66-home-hero__copy h1 {
	margin: 0;
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(3.25rem, 6vw, 5.4rem);
	font-weight: 500;
	line-height: 0.92;
	letter-spacing: -0.04em;
}

.b66-home-hero__copy p:last-of-type {
	max-width: 26rem;
	margin: 0;
	color: var(--b66-rebuild-copy-soft);
	font-size: 1.02rem;
	line-height: 1.8;
}

.b66-home-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	padding-top: 0.55rem;
}

.b66-button,
a.b66-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 3.1rem;
	padding: 0.82rem 1.3rem;
	border: 1px solid var(--b66-rebuild-line-strong);
	border-radius: 999px;
	font-family: "Outfit", sans-serif;
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-decoration: none;
	text-transform: uppercase;
	transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.b66-button:hover,
a.b66-button:hover {
	transform: translateY(-1px);
}

.b66-button--primary,
a.b66-button--primary {
	background: var(--b66-rebuild-accent);
	border-color: var(--b66-rebuild-accent);
	color: #091014;
}

.b66-button--secondary,
a.b66-button--secondary {
	background: rgba(255, 255, 255, 0.02);
	color: #fff;
}

.b66-home-hero__media {
	position: relative;
	background: #0a0c0d;
}

.b66-home-hero__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(6, 7, 8, 0.82), rgba(6, 7, 8, 0.08) 28%, rgba(6, 7, 8, 0.18) 100%),
		linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.18));
}

.b66-home-hero__media img,
.b66-home-hero__fallback {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.b66-home-hero__fallback {
	background:
		radial-gradient(circle at center, rgba(255, 255, 255, 0.08), transparent 20%),
		linear-gradient(135deg, rgba(17, 20, 22, 0.98), rgba(8, 9, 10, 1));
}

.b66-catalog-section {
	padding: 2rem 0 0;
}

.b66-section-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1rem;
	padding-bottom: 0.9rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.b66-section-heading h2 {
	margin: 0.2rem 0 0;
	font-family: "Barlow Condensed", sans-serif;
	font-size: clamp(1.95rem, 4vw, 3rem);
	font-weight: 600;
	letter-spacing: 0.09em;
	line-height: 0.95;
	text-transform: uppercase;
}

.b66-text-link {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	color: var(--b66-rebuild-accent);
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-decoration: none;
	text-transform: uppercase;
}

.b66-text-link::after {
	content: "\2192";
	font-size: 1em;
}

.b66-showroom-collections,
body.home .b66-showroom-collections {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	gap: 1rem !important;
}

.b66-showroom-collection {
	position: relative;
	display: block;
	min-height: 24rem;
	border: 1px solid var(--b66-rebuild-line);
	border-radius: var(--b66-rebuild-radius);
	overflow: hidden;
	background: #0d0f11;
	box-shadow: none;
	transform: none !important;
	clip-path: none !important;
	text-decoration: none;
}

.b66-showroom-collection::before,
.b66-showroom-collection::after,
.b66-showroom-collection__index {
	display: none !important;
}

.b66-showroom-collection__media,
.b66-showroom-collection__meta {
	position: static;
	width: 100% !important;
	margin: 0 !important;
	padding: 0;
	transform: none !important;
}

.b66-showroom-collection__media {
	position: relative;
	min-height: 24rem;
	background: #101214;
}

.b66-showroom-collection__media img,
.b66-showroom-collection__media .b66-category-card__fallback {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.b66-showroom-collection__media::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 46%;
	background: linear-gradient(180deg, rgba(6, 7, 8, 0) 0%, rgba(6, 7, 8, 0.24) 44%, rgba(6, 7, 8, 0.82) 76%, rgba(6, 7, 8, 0.96) 100%);
}

.b66-showroom-collection__meta {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	display: grid;
	gap: 0.3rem;
	padding: 3.1rem 1rem 1rem;
	background: transparent;
}

.b66-showroom-collection__meta em {
	color: rgba(255, 255, 255, 0.62);
	font-size: 0.75rem;
	font-style: normal;
	font-weight: 500;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}

.b66-showroom-collection__meta strong {
	color: #fff;
	font-family: "Barlow Condensed", sans-serif;
	font-size: clamp(1.4rem, 1.8vw, 1.8rem);
	font-style: normal;
	font-weight: 600;
	letter-spacing: 0.05em;
	line-height: 0.95;
	text-transform: uppercase;
}

.b66-footer {
	margin-top: 3.2rem;
	padding-bottom: 1.6rem;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	background: #090a0b;
}

.b66-footer__benefits {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1rem;
	padding-block: 1.5rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.b66-footer__benefit {
	display: grid;
	gap: 0.35rem;
}

.b66-footer__benefit strong,
.b66-footer__column h2 {
	color: #fff;
	font-family: "Barlow Condensed", sans-serif;
	font-size: 1.02rem;
	font-weight: 600;
	letter-spacing: 0.11em;
	line-height: 1;
	text-transform: uppercase;
}

.b66-footer__benefit span,
.b66-footer__copy,
.b66-footer__column p,
.b66-footer__meta p {
	color: var(--b66-rebuild-copy-soft);
	font-size: 0.92rem;
	line-height: 1.7;
}

.b66-footer__rail {
	display: grid;
	grid-template-columns: minmax(14rem, 1fr) minmax(0, 2.2fr);
	gap: 2rem;
	padding-block: 1.9rem;
}

.b66-footer__brandblock {
	display: grid;
	align-content: start;
	gap: 1rem;
}

.b66-footer__brand img {
	display: block;
	width: auto;
	height: 2.3rem;
	max-width: 13rem;
	object-fit: contain;
}

.b66-footer__columns {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.25rem;
}

.b66-footer__column {
	display: grid;
	align-content: start;
	gap: 0.65rem;
}

.b66-footer__column h2 {
	margin: 0 0 0.2rem;
}

.b66-footer__column a {
	color: rgba(241, 244, 247, 0.82);
	font-size: 0.92rem;
	text-decoration: none;
}

.b66-footer__column a:hover {
	color: var(--b66-rebuild-accent);
}

.b66-footer__signup-form {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 0.55rem;
	margin-top: 0.25rem;
}

.b66-footer__signup-form input {
	min-height: 3rem;
	padding: 0 1rem;
	border: 1px solid var(--b66-rebuild-line);
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.02);
	color: #fff;
	font-family: "Outfit", sans-serif;
}

.b66-footer__signup-form button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	min-height: 3rem;
	padding: 0;
	border: 1px solid var(--b66-rebuild-accent);
	border-radius: 10px;
	background: var(--b66-rebuild-accent);
	color: #081014;
	font-size: 1.15rem;
	cursor: pointer;
}

.b66-footer__meta {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
	padding-top: 1.25rem;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.b66-footer__meta a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.85rem;
	padding: 0.72rem 1.15rem;
	border: 1px solid var(--b66-rebuild-line);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.02);
	color: #fff;
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-decoration: none;
	text-transform: uppercase;
}

.b66-search-panel {
	margin-bottom: 1rem;
}

.b66-searchform {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	gap: 0;
	align-items: center;
	border: 1px solid var(--b66-rebuild-line);
	border-radius: 12px;
	background: #101214;
	overflow: hidden;
}

.b66-searchform__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.5rem;
	color: var(--b66-rebuild-accent);
}

.b66-searchform__input {
	min-height: 3.6rem;
	border: 0;
	background: transparent;
	color: #fff;
}

.b66-searchform__submit {
	min-width: 8rem;
	min-height: 3.6rem;
	border: 0;
	background: var(--b66-rebuild-accent);
	color: #081014;
	font-family: "Outfit", sans-serif;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

@media (max-width: 960px) {
	.b66-header__mast {
		grid-template-columns: auto auto 1fr auto;
	}

	.b66-header__toggle {
		display: inline-flex;
		flex-direction: column;
		justify-content: center;
		gap: 0.28rem;
		width: 2.7rem;
		height: 2.7rem;
		padding: 0;
		border: 1px solid rgba(255, 255, 255, 0.08);
		border-radius: 999px;
		background: rgba(255, 255, 255, 0.02);
		color: #fff;
	}

	.b66-header__toggle span:not(.screen-reader-text) {
		display: block;
		width: 1rem;
		height: 1px;
		margin-inline: auto;
		background: currentColor;
	}

	.b66-header__nav {
		position: absolute;
		top: 100%;
		right: 1rem;
		left: 1rem;
		display: none;
		padding: 1rem;
		border: 1px solid rgba(255, 255, 255, 0.08);
		border-radius: 14px;
		background: rgba(10, 11, 12, 0.98);
	}

	body.menu-open .b66-header__nav {
		display: block;
	}

	.b66-nav__list {
		flex-direction: column;
		align-items: flex-start;
	}

	.b66-home-hero__inner,
	.b66-footer__rail,
	.b66-footer__meta {
		grid-template-columns: 1fr;
	}

	.b66-home-hero__visual {
		order: -1;
	}

	.b66-footer__columns,
	.b66-footer__benefits {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 720px) {
	.b66-shell,
	.b66-page-shell,
	.b66-search-shell,
	.b66-woo-shell,
	.b66-shop-shell {
		width: min(1400px, calc(100vw - 1rem)) !important;
	}

	.b66-header__promo-inner {
		min-height: 2rem;
		padding-right: 1.8rem;
	}

	.b66-home-hero__copy {
		padding: 1.35rem;
	}

	.b66-home-hero__copy h1 {
		font-size: clamp(2.7rem, 12vw, 3.8rem);
	}

	.b66-section-heading {
		flex-direction: column;
		align-items: flex-start;
	}

	.b66-showroom-collections,
	body.home .b66-showroom-collections,
	.b66-footer__benefits,
	.b66-footer__columns {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}

	.b66-showroom-collection,
	.b66-showroom-collection__media {
		min-height: clamp(14rem, 54vw, 17rem);
	}

	.b66-showroom-collection__meta {
		padding: 2.4rem 0.85rem 0.85rem;
	}

	.b66-showroom-collection__meta strong {
		font-size: 1.18rem;
	}

	.b66-cart-button__total {
		display: none;
	}

	.b66-footer__signup-form {
		grid-template-columns: 1fr auto;
	}
}

/* 2026 Card Glass Refinement */
.b66-showroom-collection__media::after {
	height: 29%;
	background:
		linear-gradient(180deg, rgba(7, 9, 10, 0) 0%, rgba(7, 9, 10, 0.08) 38%, rgba(11, 14, 16, 0.28) 64%, rgba(11, 14, 16, 0.5) 100%);
}

.b66-showroom-collection__meta {
	gap: 0.18rem;
	padding: 1.28rem 1rem 0.92rem;
	background: linear-gradient(180deg, rgba(22, 27, 31, 0.1) 0%, rgba(22, 27, 31, 0.3) 34%, rgba(22, 27, 31, 0.56) 100%);
	backdrop-filter: blur(18px) saturate(140%);
	-webkit-backdrop-filter: blur(18px) saturate(140%);
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.b66-showroom-collection__meta em {
	display: none;
}

.b66-showroom-collection__meta strong {
	font-size: clamp(1.28rem, 1.55vw, 1.56rem);
	line-height: 0.94;
	text-shadow: 0 1px 12px rgba(0, 0, 0, 0.22);
}

@media (max-width: 720px) {
	.b66-showroom-collection__meta {
		padding: 1rem 0.8rem 0.78rem;
	}

	.b66-showroom-collection__meta strong {
		font-size: 1.06rem;
	}
}

/* 2026 Floating Island Header Rebuild */
.b66-header {
	--b66-header-progress: 0;
	position: sticky;
	top: 0;
	z-index: 140;
	border: 0;
	background: transparent;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
}

body.promo-dismissed .b66-header__promo {
	display: none;
}

.b66-header__promo {
	border-bottom: 0;
	background: rgba(8, 10, 12, 0.72);
	backdrop-filter: blur(14px) saturate(135%);
	-webkit-backdrop-filter: blur(14px) saturate(135%);
}

.b66-header__promo-inner {
	min-height: 2.1rem;
}

.b66-header__promo p {
	color: rgba(243, 246, 248, 0.74);
	font-size: 0.68rem;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.b66-header__promo-dismiss {
	color: rgba(255, 255, 255, 0.52);
}

.b66-header__inner {
	padding-block: calc(0.95rem - (0.38rem * var(--b66-header-progress)));
}

.b66-header__mast {
	position: relative;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: calc(1.4rem - (0.28rem * var(--b66-header-progress)));
	min-height: calc(4.8rem - (1rem * var(--b66-header-progress)));
	padding: calc(0.96rem - (0.28rem * var(--b66-header-progress))) calc(1.45rem - (0.18rem * var(--b66-header-progress)));
	border: 1px solid rgba(130, 232, 221, calc(0.18 + (0.08 * var(--b66-header-progress))));
	background: linear-gradient(135deg, rgba(11, 14, 16, 0.78), rgba(11, 14, 16, 0.56));
	backdrop-filter: blur(22px) saturate(150%);
	-webkit-backdrop-filter: blur(22px) saturate(150%);
	box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.05);
	clip-path: polygon(24px 0, 100% 0, calc(100% - 24px) 100%, 0 100%);
	transform: translateY(calc(0.24rem * (1 - var(--b66-header-progress))));
	will-change: transform;
}

.b66-header__mast::before {
	content: "";
	position: absolute;
	inset: 1px;
	border: 1px solid rgba(255, 255, 255, 0.04);
	clip-path: polygon(23px 0, 100% 0, calc(100% - 23px) 100%, 0 100%);
	pointer-events: none;
}

.b66-header__brand {
	position: relative;
	z-index: 2;
}

.b66-brand {
	display: inline-flex;
	align-items: center;
}

.b66-brand__logo img {
	display: block;
	width: auto;
	height: calc(2.42rem - (0.52rem * var(--b66-header-progress)));
	max-width: min(15rem, 24vw);
	object-fit: contain;
}

.b66-header__nav {
	position: relative;
	z-index: 2;
	display: flex;
	justify-content: center;
}

.b66-nav__list {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(1rem, 1.9vw, 1.7rem);
	margin: 0;
	padding: 0;
	list-style: none;
}

.b66-nav__list a {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: auto;
	padding: 0;
	background: transparent !important;
	color: rgba(241, 245, 247, 0.78);
	font-size: calc(0.79rem - (0.03rem * var(--b66-header-progress)));
	font-weight: 500;
	letter-spacing: 0.13em;
	text-decoration: none;
	text-transform: uppercase;
}

.b66-nav__list a::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: -0.7rem;
	left: 0;
	height: 1px;
	background: var(--b66-rebuild-accent);
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 180ms ease, opacity 180ms ease;
	opacity: 0.95;
}

.b66-nav__list a:hover,
.b66-nav__list .current-menu-item > a,
.b66-nav__list .current_page_item > a {
	color: #fff;
}

.b66-nav__list a:hover::after,
.b66-nav__list .current-menu-item > a::after,
.b66-nav__list .current_page_item > a::after {
	transform: scaleX(1);
}

.b66-header__actions {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: calc(0.68rem - (0.08rem * var(--b66-header-progress)));
}

.b66-header__action,
.b66-header__account,
.b66-cart-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: calc(2.35rem - (0.15rem * var(--b66-header-progress)));
	min-height: calc(2.35rem - (0.15rem * var(--b66-header-progress)));
	padding: 0;
	border: 0;
	background: transparent;
	color: rgba(244, 247, 249, 0.76);
	text-decoration: none;
	box-shadow: none;
	clip-path: none;
	transform: none !important;
}

.b66-header__action:hover,
.b66-header__account:hover,
.b66-cart-button:hover {
	color: #fff;
	box-shadow: none;
}

.b66-header__action-icon {
	display: inline-flex;
	width: calc(1.02rem - (0.06rem * var(--b66-header-progress)));
	height: calc(1.02rem - (0.06rem * var(--b66-header-progress)));
}

.b66-header__action-icon svg {
	width: 100%;
	height: 100%;
	fill: currentColor;
}

.b66-cart-button {
	position: relative;
	gap: 0;
}

.b66-cart-button__total,
.b66-cart-total {
	display: none;
}

.b66-cart-count {
	position: absolute;
	top: 0.18rem;
	right: -0.22rem;
	left: auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1rem;
	height: 1rem;
	min-width: 1rem;
	padding: 0;
	border-radius: 999px;
	background: var(--b66-rebuild-accent);
	color: #081013;
	font-size: 0.58rem;
	font-weight: 700;
	line-height: 1;
	clip-path: none;
}

.b66-header__toggle {
	display: none;
	position: relative;
	z-index: 2;
	padding: 0;
	border: 0;
	background: transparent;
	color: rgba(244, 247, 249, 0.86);
	box-shadow: none;
	clip-path: none;
	transform: none !important;
}

.b66-header__toggle span:not(.screen-reader-text) {
	display: block;
	width: 1.1rem;
	height: 1.5px;
	margin-inline: auto;
	background: currentColor;
	border-radius: 999px;
}

.b66-nav__mobile-meta {
	display: none;
}

@media (max-width: 960px) {
	.b66-header__promo-inner {
		min-height: 1.95rem;
	}

	.b66-header__promo p {
		padding-inline: 1.8rem;
		font-size: 0.62rem;
		letter-spacing: 0.14em;
		text-align: center;
	}

	.b66-header__inner {
		padding-block: calc(0.76rem - (0.22rem * var(--b66-header-progress)));
	}

	.b66-header__mast {
		grid-template-columns: auto 1fr auto;
		gap: 0.7rem;
		min-height: calc(3.9rem - (0.62rem * var(--b66-header-progress)));
		padding: calc(0.82rem - (0.16rem * var(--b66-header-progress))) 1rem;
		clip-path: polygon(16px 0, 100% 0, calc(100% - 16px) 100%, 0 100%);
	}

	.b66-header__mast::before {
		clip-path: polygon(15px 0, 100% 0, calc(100% - 15px) 100%, 0 100%);
	}

	.b66-header__brand {
		grid-column: 2;
		justify-self: center;
	}

	.b66-brand__logo img {
		height: calc(1.92rem - (0.24rem * var(--b66-header-progress)));
		max-width: min(11rem, 42vw);
	}

	.b66-header__toggle {
		display: inline-flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 0.24rem;
		grid-column: 1;
		justify-self: start;
		width: 2rem;
		height: 2rem;
	}

	.b66-header__actions {
		grid-column: 3;
		justify-self: end;
	}

	.b66-header__account {
		display: none;
	}

	.b66-cart-button {
		min-width: 2rem;
		min-height: 2rem;
	}

	.b66-header__nav {
		position: absolute;
		top: calc(100% + 0.6rem);
		right: 0;
		left: 0;
		display: none;
		padding: 1rem;
		border: 1px solid rgba(130, 232, 221, 0.16);
		background: linear-gradient(135deg, rgba(11, 14, 16, 0.9), rgba(11, 14, 16, 0.76));
		backdrop-filter: blur(22px) saturate(150%);
		-webkit-backdrop-filter: blur(22px) saturate(150%);
		box-shadow: 0 20px 44px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
		clip-path: polygon(16px 0, 100% 0, calc(100% - 16px) 100%, 0 100%);
	}

	body.menu-open .b66-header__nav {
		display: block;
	}

	.b66-nav__list {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.92rem;
	}

	.b66-nav__list a {
		font-size: 0.88rem;
		letter-spacing: 0.1em;
	}

	.b66-nav__list a::after {
		bottom: -0.34rem;
	}

	.b66-nav__mobile-meta {
		display: flex;
		margin-top: 0.95rem;
		padding-top: 0.95rem;
		border-top: 1px solid rgba(255, 255, 255, 0.08);
	}

	.b66-nav__mobile-account {
		display: inline-flex;
		align-items: center;
		color: rgba(241, 245, 247, 0.76);
		font-size: 0.79rem;
		font-weight: 500;
		letter-spacing: 0.12em;
		text-decoration: none;
		text-transform: uppercase;
	}
}

/* 2026 Mobile QA Pass */
html,
body {
	max-width: 100%;
	overflow-x: clip;
}

@media (max-width: 820px) {
	.b66-shell,
	.b66-page-shell,
	.b66-search-shell,
	.b66-woo-shell,
	.b66-shop-shell {
		width: min(1400px, calc(100vw - 1.5rem)) !important;
	}

	.b66-section {
		padding-block: 2.2rem;
	}

	.b66-section-heading {
		gap: 0.65rem;
	}

	.b66-home-hero__inner,
	.b66-footer__rail,
	.b66-footer__meta {
		grid-template-columns: 1fr;
	}

	.b66-home-hero__copy {
		padding: 1.28rem;
	}

	.b66-home-hero__visual {
		order: -1;
	}

	.b66-showroom-collections,
	body.home .b66-showroom-collections,
	.b66-footer__benefits,
	.b66-footer__columns {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: 0.8rem;
	}

	.b66-showroom-collection,
	.b66-showroom-collection__media {
		min-height: clamp(13.4rem, 54vw, 16rem);
	}

	.b66-showroom-collection__meta {
		padding: 0.95rem 0.78rem 0.74rem;
	}

	.b66-showroom-collection__meta strong {
		font-size: 1.02rem;
	}

	.b66-footer__signup-form {
		grid-template-columns: 1fr auto;
	}
}

/* 2026 Header Scroll Cleanup */
.b66-header.is-scrolled {
	background: transparent !important;
	box-shadow: none !important;
}

.b66-header.is-scrolled .b66-header__inner {
	padding-block: calc(0.95rem - (0.38rem * var(--b66-header-progress))) !important;
}

.b66-header.is-scrolled .b66-header__mast {
	gap: calc(1.4rem - (0.28rem * var(--b66-header-progress))) !important;
}

.b66-header.is-scrolled .b66-brand__logo {
	width: auto !important;
}

.b66-header.is-scrolled .b66-header__toggle,
.b66-header.is-scrolled .b66-header__account,
.b66-header.is-scrolled .b66-cart-button--icon {
	min-height: calc(2.35rem - (0.15rem * var(--b66-header-progress))) !important;
	width: auto !important;
	min-width: calc(2.35rem - (0.15rem * var(--b66-header-progress))) !important;
}

.b66-header.is-scrolled .b66-cart-button--icon .b66-cart-count {
	top: 0.18rem !important;
	right: -0.22rem !important;
	transform: none !important;
}

.b66-header.is-scrolled .b66-header__action-icon svg {
	transform: none !important;
}

.b66-header__nav ul,
.b66-header__nav li,
.b66-header__nav .menu-item,
.b66-nav__list li {
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	clip-path: none !important;
	-webkit-clip-path: none !important;
}

.b66-nav__list a,
.b66-nav__list .current-menu-item > a,
.b66-nav__list .current_page_item > a,
.b66-nav__list a:hover {
	padding: 0 !important;
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	clip-path: none !important;
	-webkit-clip-path: none !important;
}

/* 2026 Header Icon Refresh */
.b66-header__account,
.b66-cart-button {
	min-width: calc(2.7rem - (0.2rem * var(--b66-header-progress))) !important;
	min-height: calc(2.7rem - (0.2rem * var(--b66-header-progress))) !important;
}

.b66-header__action-icon {
	width: calc(1.28rem - (0.08rem * var(--b66-header-progress))) !important;
	height: calc(1.28rem - (0.08rem * var(--b66-header-progress))) !important;
}

.b66-header__account--icon .b66-header__action-icon svg,
.b66-cart-button--icon .b66-header__action-icon svg {
	fill: none !important;
	stroke: currentColor;
	stroke-width: 1.85;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.b66-cart-count {
	top: 0.12rem !important;
	right: -0.28rem !important;
}

@media (max-width: 960px) {
	.b66-header__account,
	.b66-cart-button {
		min-width: calc(2.3rem - (0.16rem * var(--b66-header-progress))) !important;
		min-height: calc(2.3rem - (0.16rem * var(--b66-header-progress))) !important;
	}

	.b66-header__action-icon {
		width: calc(1.3rem - (0.06rem * var(--b66-header-progress))) !important;
		height: calc(1.3rem - (0.06rem * var(--b66-header-progress))) !important;
	}

	.b66-cart-count {
		top: 0.06rem !important;
		right: -0.24rem !important;
	}
}

/* 2026 Mobile Header Row Lock */
@media (max-width: 960px) {
	.b66-header__mast {
		grid-template-columns: 2.4rem minmax(0, 1fr) 2.4rem !important;
		grid-template-rows: 1fr !important;
		align-items: center !important;
		column-gap: 0.72rem !important;
		row-gap: 0 !important;
		min-height: calc(3.35rem - (0.46rem * var(--b66-header-progress))) !important;
		padding: calc(0.72rem - (0.12rem * var(--b66-header-progress))) 0.95rem !important;
	}

	.b66-header__brand {
		grid-column: 2 !important;
		grid-row: 1 !important;
		align-self: center !important;
		justify-self: center !important;
		line-height: 0;
		margin: 0 !important;
	}

	.b66-brand,
	.b66-brand__logo {
		display: inline-flex !important;
		align-items: center !important;
		justify-content: center !important;
	}

	.b66-brand__logo img {
		display: block;
		height: calc(1.48rem - (0.16rem * var(--b66-header-progress))) !important;
		max-width: min(8.8rem, 34vw) !important;
		margin: 0 !important;
	}

	.b66-header__toggle {
		grid-column: 1 !important;
		grid-row: 1 !important;
		align-self: center !important;
		justify-self: start !important;
		display: inline-flex !important;
		flex-direction: column !important;
		align-items: center !important;
		justify-content: center !important;
		gap: 0.22rem !important;
		width: 2.4rem !important;
		height: 2.4rem !important;
		min-width: 2.4rem !important;
		min-height: 2.4rem !important;
		padding: 0 !important;
		border: 0 !important;
		border-radius: 0 !important;
		background: transparent !important;
		box-shadow: none !important;
		clip-path: none !important;
		-webkit-clip-path: none !important;
		appearance: none;
	}

	.b66-header__toggle span:not(.screen-reader-text) {
		display: block !important;
		width: 1.18rem !important;
		height: 2px !important;
		margin: 0 !important;
		border-radius: 999px !important;
		background: rgba(244, 247, 249, 0.92) !important;
	}

	.b66-header__actions {
		grid-column: 3 !important;
		grid-row: 1 !important;
		align-self: center !important;
		justify-self: end !important;
		display: flex !important;
		align-items: center !important;
		justify-content: flex-end !important;
		gap: 0 !important;
		margin: 0 !important;
	}

	.b66-header__account {
		display: none !important;
	}

	.b66-cart-button {
		width: 2.4rem !important;
		height: 2.4rem !important;
		min-width: 2.4rem !important;
		min-height: 2.4rem !important;
	}

	.b66-header__action-icon {
		width: calc(1.26rem - (0.05rem * var(--b66-header-progress))) !important;
		height: calc(1.26rem - (0.05rem * var(--b66-header-progress))) !important;
	}

	.b66-cart-count {
		top: 0.02rem !important;
		right: -0.22rem !important;
	}

	.b66-header__nav {
		top: calc(100% + 0.55rem) !important;
		right: 0 !important;
		left: 0 !important;
		padding: 0.95rem !important;
	}
}

/* 2026 Global Shell Width Reset */
.b66-shell,
.b66-page-shell,
.b66-search-shell,
.b66-woo-shell,
.b66-shop-shell {
	width: min(1400px, calc(100vw - clamp(2rem, 4vw, 4rem))) !important;
	max-width: 1400px !important;
	margin-inline: auto !important;
	box-sizing: border-box;
}

@media (max-width: 960px) {
	.b66-shell,
	.b66-page-shell,
	.b66-search-shell,
	.b66-woo-shell,
	.b66-shop-shell {
		width: min(1400px, calc(100vw - 2rem)) !important;
	}
}

@media (max-width: 720px) {
	.b66-shell,
	.b66-page-shell,
	.b66-search-shell,
	.b66-woo-shell,
	.b66-shop-shell {
		width: min(1400px, calc(100vw - 1rem)) !important;
	}
}

/* 2026 Type Scale Rebalance */
.b66-nav__list a {
	font-size: calc(0.72rem - (0.02rem * var(--b66-header-progress))) !important;
	letter-spacing: 0.11em !important;
}

.b66-section-heading {
	margin-bottom: 0.8rem !important;
	padding-bottom: 0.7rem !important;
}

.b66-section-heading h2 {
	font-size: clamp(1.55rem, 3vw, 2.35rem) !important;
	letter-spacing: 0.07em !important;
	line-height: 0.96 !important;
}

.b66-text-link {
	font-size: 0.74rem !important;
	letter-spacing: 0.07em !important;
}

.b66-showroom-collection__meta {
	gap: 0.16rem !important;
	min-height: 0 !important;
	height: auto !important;
	padding: 2.35rem 0.9rem 0.86rem !important;
}

.b66-showroom-collection__meta strong {
	font-size: clamp(1rem, 1.15vw, 1.18rem) !important;
	letter-spacing: 0.035em !important;
	line-height: 0.98 !important;
	white-space: normal !important;
	overflow-wrap: anywhere;
	text-wrap: balance;
}

.b66-footer__benefit strong,
.b66-footer__column h2 {
	font-size: 0.86rem !important;
	letter-spacing: 0.1em !important;
}

.b66-footer__benefit span,
.b66-footer__copy,
.b66-footer__column p,
.b66-footer__column a,
.b66-footer__meta p {
	font-size: 0.84rem !important;
	line-height: 1.55 !important;
}

/* 2026 Home Intro Reset */
.b66-home-intro {
	padding: clamp(1rem, 2vw, 1.5rem) 0 0;
}

.b66-home-intro__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: end;
	gap: 1.2rem 2rem;
	padding: clamp(1.2rem, 2vw, 1.8rem) 0 clamp(1.3rem, 2vw, 1.9rem);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.b66-home-intro__copy {
	display: grid;
	gap: 0.65rem;
	max-width: 44rem;
}

.b66-home-intro__copy h1 {
	margin: 0;
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(2.35rem, 4.2vw, 4.2rem);
	font-weight: 500;
	line-height: 0.94;
	letter-spacing: -0.035em;
	text-wrap: balance;
}

.b66-home-intro__copy p {
	margin: 0;
	max-width: 34rem;
	color: var(--b66-copy-muted);
	font-size: 0.98rem;
	line-height: 1.7;
}

.b66-home-intro__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 0.75rem;
}

.b66-catalog-section--first {
	padding-top: clamp(1.35rem, 2.5vw, 2rem) !important;
}

@media (max-width: 960px) {
	.b66-home-intro__inner {
		grid-template-columns: 1fr;
		align-items: start;
	}

	.b66-home-intro__actions {
		justify-content: flex-start;
	}
}

@media (max-width: 720px) {
	.b66-home-intro {
		padding-top: 0.55rem;
	}

	.b66-home-intro__inner {
		gap: 0.95rem;
		padding: 0.95rem 0 1.1rem;
	}

	.b66-home-intro__copy h1 {
		font-size: clamp(2rem, 9vw, 2.9rem);
	}

	.b66-home-intro__copy p {
		font-size: 0.92rem;
		line-height: 1.6;
	}

	.b66-home-intro__actions {
		width: 100%;
	}

	.b66-home-intro__actions .b66-button {
		flex: 1 1 calc(50% - 0.4rem);
		min-width: 0;
	}
}

/* 2026 Mobile Footer Accordion Cleanup */
.b66-footer__accordion {
	border: 0;
}

.b66-footer__accordion-toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	cursor: pointer;
	list-style: none;
}

.b66-footer__accordion-toggle::-webkit-details-marker {
	display: none;
}

.b66-footer__accordion-toggle::marker {
	display: none;
	content: "";
}

.b66-footer__accordion-toggle h2 {
	margin: 0;
}

.b66-footer__accordion-icon {
	display: inline-flex;
	flex: 0 0 auto;
	width: 0.72rem;
	height: 0.72rem;
	border-right: 1.5px solid rgba(241, 244, 247, 0.78);
	border-bottom: 1.5px solid rgba(241, 244, 247, 0.78);
	transform: rotate(45deg);
	transition: transform 180ms ease, border-color 180ms ease;
}

.b66-footer__accordion[open] .b66-footer__accordion-icon {
	transform: rotate(225deg);
}

@media (min-width: 721px) {
	.b66-footer__accordion {
		display: grid;
		align-content: start;
		gap: 0.65rem;
	}

	.b66-footer__accordion-toggle {
		cursor: default;
		pointer-events: none;
	}

	.b66-footer__accordion-icon {
		display: none;
	}

	.b66-footer__accordion-panel {
		display: grid !important;
		gap: 0.65rem;
	}
}

@media (max-width: 720px) {
	.b66-footer {
		margin-top: 2.2rem !important;
		padding-bottom: 1rem !important;
	}

	.b66-footer__rail {
		grid-template-columns: 1fr !important;
		gap: 1.2rem !important;
		padding-block: 1.35rem !important;
	}

	.b66-footer__brandblock {
		gap: 0.75rem !important;
	}

	.b66-footer__columns {
		grid-template-columns: 1fr !important;
		gap: 0.25rem !important;
	}

	.b66-footer__column {
		min-height: auto !important;
		margin: 0 !important;
	}

	.b66-footer__accordion {
		border-top: 1px solid rgba(255, 255, 255, 0.08);
	}

	.b66-footer__accordion:last-of-type {
		border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	}

	.b66-footer__accordion-toggle {
		padding: 0.95rem 0 !important;
	}

	.b66-footer__accordion-panel {
		display: grid;
		gap: 0.72rem;
		padding: 0 0 0.95rem;
	}

	.b66-footer__accordion:not([open]) .b66-footer__accordion-panel {
		display: none;
	}

	.b66-footer__column--signup {
		gap: 0.75rem !important;
		min-height: auto !important;
		padding-top: 0.55rem !important;
	}

	.b66-footer__signup-form {
		margin-top: 0 !important;
	}

	.b66-footer__meta {
		display: grid !important;
		grid-template-columns: 1fr !important;
		gap: 0.75rem !important;
		align-items: start !important;
		justify-content: start !important;
		min-height: auto !important;
		margin-top: 0 !important;
		padding-top: 1rem !important;
		padding-bottom: 0 !important;
	}

	.b66-footer__meta > * {
		margin: 0 !important;
	}

	.b66-footer__meta p {
		max-width: none !important;
	}

	.b66-footer__meta a {
		position: static !important;
		justify-self: start !important;
		align-self: start !important;
		width: auto !important;
		max-width: 100%;
	}
}

/* 2026 Footer Signup Inline Lock */
.b66-footer__signup-form {
	display: flex !important;
	flex-wrap: nowrap !important;
	align-items: stretch !important;
	gap: 0.55rem !important;
	width: 100% !important;
	max-width: 100% !important;
}

.b66-footer__signup-form input {
	flex: 1 1 auto !important;
	width: auto !important;
	min-width: 0 !important;
	margin: 0 !important;
}

.b66-footer__signup-form button {
	flex: 0 0 3rem !important;
	width: 3rem !important;
	min-width: 3rem !important;
	margin: 0 !important;
	align-self: stretch !important;
}

/* 2026 Collection Card Geometry Reset */
.b66-showroom-collection {
	--b66-collection-slant: 10.5%;
	--b66-collection-notch: 16px;
	border: 0 !important;
	border-radius: 0 !important;
	background:
		linear-gradient(180deg, rgba(7, 12, 15, 0.82), rgba(3, 7, 9, 0.98)),
		radial-gradient(circle at 78% 0, rgba(82, 246, 231, 0.08), transparent 24%) !important;
	-webkit-clip-path: polygon(var(--b66-collection-slant) 0, calc(100% - var(--b66-collection-notch)) 0, 100% var(--b66-collection-notch), calc(100% - var(--b66-collection-slant)) 100%, var(--b66-collection-notch) 100%, 0 calc(100% - var(--b66-collection-notch))) !important;
	clip-path: polygon(var(--b66-collection-slant) 0, calc(100% - var(--b66-collection-notch)) 0, 100% var(--b66-collection-notch), calc(100% - var(--b66-collection-slant)) 100%, var(--b66-collection-notch) 100%, 0 calc(100% - var(--b66-collection-notch))) !important;
	box-shadow:
		inset 0 0 0 1px rgba(174, 255, 249, 0.16),
		inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
}

.b66-showroom-collection__media {
	background:
		linear-gradient(180deg, rgba(6, 11, 13, 0.28), rgba(4, 7, 9, 0.08)),
		radial-gradient(circle at 78% 0, rgba(82, 246, 231, 0.06), transparent 24%) !important;
}

.b66-showroom-collection__media::after {
	height: 10% !important;
	background:
		linear-gradient(180deg, rgba(7, 9, 10, 0) 0%, rgba(7, 9, 10, 0.06) 38%, rgba(11, 14, 16, 0.2) 64%, rgba(11, 14, 16, 0.38) 100%) !important;
}

.b66-showroom-collection__meta {
	display: grid !important;
	align-content: end !important;
	gap: 0.04rem !important;
	min-height: 0 !important;
	height: auto !important;
	padding: 0.62rem 0.9rem 0.66rem !important;
	background:
		linear-gradient(180deg, rgba(22, 27, 31, 0.06) 0%, rgba(22, 27, 31, 0.28) 36%, rgba(22, 27, 31, 0.68) 100%) !important;
	backdrop-filter: blur(16px) saturate(138%) !important;
	-webkit-backdrop-filter: blur(16px) saturate(138%) !important;
	border-top: 1px solid rgba(255, 255, 255, 0.07) !important;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
}

.b66-showroom-collection__meta strong {
	font-size: clamp(0.98rem, 1.18vw, 1.18rem) !important;
	letter-spacing: 0.03em !important;
	line-height: 0.97 !important;
	white-space: normal !important;
	overflow-wrap: anywhere;
	text-wrap: balance;
}

@media (max-width: 720px) {
	.b66-showroom-collection {
		--b66-collection-slant: 9.5%;
		--b66-collection-notch: 13px;
	}

	.b66-showroom-collection,
	.b66-showroom-collection__media {
		min-height: clamp(12.4rem, 46vw, 14.2rem) !important;
	}

	.b66-showroom-collection__media::after {
		height: 9% !important;
	}

	.b66-showroom-collection__meta {
		min-height: 0 !important;
		height: auto !important;
		padding: 0.56rem 0.72rem 0.6rem !important;
	}

	.b66-showroom-collection__meta strong {
		font-size: 0.9rem !important;
		letter-spacing: 0.025em !important;
		line-height: 0.96 !important;
	}
}

/* 2026 Page Heading Refinement */
.b66-page-header,
.b66-search-hero {
	padding: clamp(1rem, 2vw, 1.35rem) !important;
	margin-bottom: 0.95rem !important;
}

.b66-page-header h1,
.b66-search-hero h1 {
	margin-bottom: 0 !important;
	max-width: 16ch !important;
	font-size: clamp(1.85rem, 3.2vw, 2.9rem) !important;
	letter-spacing: 0.02em !important;
	line-height: 0.92 !important;
}

@media (max-width: 720px) {
	.b66-page-header h1,
	.b66-search-hero h1 {
		font-size: clamp(1.55rem, 7vw, 2.2rem) !important;
		max-width: 12ch !important;
	}
}

/* 2026 Mobile Menu Popover */
.b66-header__menu-backdrop {
	display: none;
}

@media (max-width: 960px) {
	.b66-header__inner {
		position: relative;
		z-index: 160;
	}

	.b66-header__menu-backdrop {
		position: fixed;
		inset: 0;
		display: block;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		border: 0;
		background:
			linear-gradient(180deg, rgba(2, 6, 8, 0.36), rgba(2, 6, 8, 0.8)),
			radial-gradient(circle at 18% 10%, rgba(88, 245, 232, 0.12), transparent 34%);
		backdrop-filter: blur(24px) saturate(138%);
		-webkit-backdrop-filter: blur(24px) saturate(138%);
		transition: opacity 180ms ease, visibility 0s linear 180ms;
		z-index: 150;
	}

	body.menu-open .b66-header__menu-backdrop {
		opacity: 1 !important;
		visibility: visible !important;
		pointer-events: auto !important;
		transition-delay: 0s !important;
	}

	.b66-header__mast {
		z-index: 170;
	}

	body.menu-open .b66-header__mast,
	body.menu-open .b66-header__mast::before {
		clip-path: none;
		-webkit-clip-path: none;
	}

	.b66-header__nav {
		position: fixed !important;
		top: var(--b66-mobile-menu-top, 6.1rem) !important;
		left: 5vw !important;
		right: auto !important;
		width: 90vw !important;
		max-width: 90vw !important;
		display: block !important;
		padding: 1.15rem 1.15rem 1.05rem !important;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transform: translateY(-0.45rem) scale(0.985);
		transform-origin: top center;
		transition:
			opacity 180ms ease,
			transform 220ms ease,
			visibility 0s linear 220ms !important;
		max-height: calc(100svh - var(--b66-mobile-menu-top, 6.1rem) - 1.25rem);
		overflow: auto;
		border: 1px solid rgba(170, 251, 243, 0.16) !important;
		border-radius: 22px !important;
		background:
			linear-gradient(180deg, rgba(7, 11, 13, 0.94), rgba(3, 7, 9, 0.92)),
			radial-gradient(circle at 76% 0, rgba(82, 246, 231, 0.1), transparent 26%) !important;
		backdrop-filter: blur(28px) saturate(155%) !important;
		-webkit-backdrop-filter: blur(28px) saturate(155%) !important;
		box-shadow:
			0 26px 72px rgba(0, 0, 0, 0.44),
			0 0 0 1px rgba(255, 255, 255, 0.03),
			inset 0 1px 0 rgba(255, 255, 255, 0.07) !important;
		clip-path: none !important;
		-webkit-clip-path: none !important;
		z-index: 180;
	}

	body.menu-open .b66-header__nav {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translateY(0) scale(1);
		transition-delay: 0s !important;
	}

	.b66-nav__list {
		gap: 0.85rem !important;
	}

	.b66-nav__list a {
		display: block !important;
		padding: 0.5rem 0 !important;
		font-size: 1rem !important;
		letter-spacing: 0.12em !important;
	}

	.b66-nav__mobile-meta {
		margin-top: 1rem !important;
		padding-top: 1rem !important;
		border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
	}

	.b66-header__toggle span:not(.screen-reader-text) {
		transition: transform 180ms ease, opacity 180ms ease;
		transform-origin: center;
	}

	body.menu-open .b66-header__toggle span:not(.screen-reader-text):nth-child(1) {
		transform: translateY(0.39rem) rotate(45deg);
	}

	body.menu-open .b66-header__toggle span:not(.screen-reader-text):nth-child(2) {
		opacity: 0;
	}

body.menu-open .b66-header__toggle span:not(.screen-reader-text):nth-child(3) {
		transform: translateY(-0.39rem) rotate(-45deg);
	}
}

/* 2026 Mobile Menu Focus Layer */
@media (max-width: 960px) {
	body.menu-open .b66-header {
		z-index: 99970 !important;
	}

	body.menu-open .b66-header__inner {
		z-index: 99980 !important;
	}

	body.menu-open .b66-header__menu-backdrop {
		background:
			linear-gradient(180deg, rgba(0, 3, 5, 0.74), rgba(0, 3, 5, 0.88)),
			radial-gradient(circle at 18% 8%, rgba(88, 245, 232, 0.18), transparent 32%),
			radial-gradient(circle at 86% 24%, rgba(20, 191, 178, 0.1), transparent 30%) !important;
		backdrop-filter: blur(30px) saturate(108%) brightness(0.62) !important;
		-webkit-backdrop-filter: blur(30px) saturate(108%) brightness(0.62) !important;
		z-index: 99971 !important;
	}

	body.menu-open .b66-header__mast {
		z-index: 99982 !important;
	}

	body.menu-open .b66-header__nav {
		z-index: 99990 !important;
	}

	body.menu-open .site-content,
	body.menu-open .b66-footer,
	body.menu-open .b66-cart-drawer {
		filter: blur(8px) brightness(0.46) saturate(0.78);
		transition: filter 180ms ease;
		pointer-events: none;
		user-select: none;
	}

	body.menu-open .b66-ambient {
		opacity: 0.48;
		filter: blur(2px) brightness(0.58);
		transition: opacity 180ms ease, filter 180ms ease;
	}
}

/* 2026 Desktop Action Scale Pass */
@media (min-width: 961px) {
	.b66-nav__list {
		gap: clamp(1.25rem, 2.15vw, 2.1rem) !important;
	}

	.b66-nav__list a {
		font-size: calc(0.92rem - (0.025rem * var(--b66-header-progress))) !important;
		letter-spacing: 0.12em !important;
		line-height: 1.1 !important;
	}

	.b66-header__mast {
		min-height: calc(5.05rem - (0.92rem * var(--b66-header-progress))) !important;
	}

	.b66-header__account,
	.b66-cart-button {
		min-width: calc(3.05rem - (0.22rem * var(--b66-header-progress))) !important;
		min-height: calc(3.05rem - (0.22rem * var(--b66-header-progress))) !important;
	}

	.b66-header.is-scrolled .b66-header__account,
	.b66-header.is-scrolled .b66-cart-button--icon {
		min-width: calc(3.05rem - (0.22rem * var(--b66-header-progress))) !important;
		min-height: calc(3.05rem - (0.22rem * var(--b66-header-progress))) !important;
	}

	.b66-header__action-icon {
		width: calc(1.48rem - (0.08rem * var(--b66-header-progress))) !important;
		height: calc(1.48rem - (0.08rem * var(--b66-header-progress))) !important;
	}

	.b66-cart-count {
		top: 0.04rem !important;
		right: -0.32rem !important;
		width: 1.16rem !important;
		height: 1.16rem !important;
		min-width: 1.16rem !important;
		font-size: 0.66rem !important;
	}

	.b66-button,
	a.b66-button,
	.button,
	input[type="submit"],
	input[type="button"] {
		padding: 1.04rem 1.5rem !important;
		font-size: 1rem !important;
		line-height: 1.1 !important;
	}

	.b66-text-link,
	.b66-footer__column a,
	.b66-footer__meta a {
		font-size: 0.96rem !important;
	}
}

/* 2026 Customer Polish Pass */
.b66-footer__column--signup {
	gap: 0.68rem !important;
}

.b66-footer__signup-link {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.9rem;
	width: min(100%, 17.5rem);
	min-height: 3.1rem;
	margin-top: 0.1rem;
	padding: 0.88rem 1.05rem;
	border: 1px solid rgba(82, 246, 231, 0.22);
	background:
		linear-gradient(135deg, rgba(82, 246, 231, 0.12), rgba(255, 255, 255, 0.025) 42%, rgba(82, 246, 231, 0.08)),
		rgba(6, 12, 14, 0.72);
	color: rgba(241, 255, 252, 0.92) !important;
	font-family: "Barlow Condensed", sans-serif;
	font-size: 0.94rem !important;
	font-weight: 700;
	letter-spacing: 0.14em;
	line-height: 1;
	text-transform: uppercase;
	text-decoration: none;
	-webkit-clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
	clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.08),
		0 16px 34px rgba(0, 0, 0, 0.22);
	transition:
		background var(--b66-transition),
		border-color var(--b66-transition),
		color var(--b66-transition),
		transform var(--b66-transition);
}

.b66-footer__signup-link::after {
	content: "\2192";
	font-family: "Outfit", sans-serif;
	font-size: 1.15rem;
	font-weight: 700;
	letter-spacing: 0;
	color: var(--b66-accent-hot);
	transform: translateY(-0.03rem);
}

.b66-footer__signup-link:hover,
.b66-footer__signup-link:focus-visible {
	border-color: rgba(82, 246, 231, 0.42);
	background:
		linear-gradient(135deg, rgba(216, 255, 248, 0.96), rgba(82, 246, 231, 0.94) 48%, rgba(28, 178, 162, 0.96)),
		rgba(82, 246, 231, 0.9);
	color: #031312 !important;
	outline: none;
	transform: translateY(-1px);
}

.b66-footer__signup-link:hover::after,
.b66-footer__signup-link:focus-visible::after {
	color: #031312;
}

.b66-footer__meta {
	min-height: 0 !important;
	margin-bottom: 0 !important;
	padding-bottom: 0 !important;
}

.b66-footer__meta p {
	max-width: 92ch;
}

.b66-footer__rail,
.b66-footer__columns,
.b66-footer__column,
.b66-footer__column--signup {
	min-height: 0 !important;
}

.b66-section-heading h2 {
	font-size: clamp(1.34rem, 2.25vw, 2.05rem) !important;
	letter-spacing: 0.08em !important;
	line-height: 0.98 !important;
}

.b66-catalog-section--first {
	padding-top: clamp(1rem, 2vw, 1.55rem) !important;
}

body.home .b66-section,
.b66-catalog-section {
	padding-block: clamp(1.1rem, 2.6vw, 2.2rem) !important;
}

.b66-showroom-collection__meta strong {
	font-size: clamp(0.92rem, 1.05vw, 1.08rem) !important;
	line-height: 1 !important;
}

/* 2026 Compact Home Featured Hero */
body.home .b66-home-featured-hero {
	position: relative;
	isolation: isolate;
	display: grid;
	align-items: stretch;
	min-height: clamp(17.5rem, 30vw, 25.5rem);
	margin-top: clamp(0.35rem, 1vw, 0.85rem);
	overflow: hidden;
	border-block: 1px solid rgba(255, 255, 255, 0.07);
	background: #050809;
}

body.home .b66-home-featured-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -2;
	background-image:
		radial-gradient(circle at 78% 46%, rgba(25, 219, 224, 0.1), transparent 28rem),
		linear-gradient(90deg, rgba(5, 8, 9, 0.96) 0%, rgba(5, 8, 9, 0.84) 27%, rgba(5, 8, 9, 0.2) 58%, rgba(5, 8, 9, 0.86) 100%),
		linear-gradient(180deg, rgba(5, 8, 9, 0.1) 0%, rgba(5, 8, 9, 0.4) 100%),
		var(--b66-featured-hero-image);
	background-position: center;
	background-size: cover;
	transform: scale(1.018);
	animation: b66FeaturedHeroDrift 18s cubic-bezier(0.16, 1, 0.3, 1) infinite alternate;
	will-change: transform;
}

body.home .b66-home-featured-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	background:
		linear-gradient(112deg, transparent 0 48%, rgba(152, 251, 255, 0.08) 48.1%, transparent 48.45% 100%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 34%, rgba(0, 0, 0, 0.22));
	opacity: 0.74;
}

body.home .b66-home-featured-hero__inner {
	display: grid;
	align-items: center;
	min-height: inherit;
	padding-block: clamp(2rem, 4.8vw, 3.75rem);
}

body.home .b66-home-featured-hero__copy {
	display: grid;
	gap: clamp(0.72rem, 1.4vw, 1rem);
	width: min(100%, 28rem);
}

body.home .b66-home-featured-hero__copy h1 {
	margin: 0;
	color: rgba(246, 251, 250, 0.98);
	font-family: "Barlow Condensed", "Outfit", sans-serif;
	font-size: clamp(2.3rem, 5vw, 4.55rem);
	font-style: italic;
	font-weight: 800;
	letter-spacing: 0.05em;
	line-height: 0.9;
	text-transform: uppercase;
	text-wrap: balance;
}

body.home .b66-home-featured-hero__copy p {
	max-width: 24rem;
	margin: 0;
	color: rgba(226, 238, 235, 0.76);
	font-size: clamp(0.9rem, 1.2vw, 1.02rem);
	line-height: 1.65;
}

body.home .b66-home-featured-hero__cta {
	justify-self: start;
	min-height: 2.95rem;
	margin-top: 0.2rem;
	padding-inline: 1.35rem;
	border-radius: 0;
	-webkit-clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
	clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}

body.home .b66-catalog-section--featured-grid {
	padding-top: clamp(1rem, 2.1vw, 1.6rem) !important;
}

@keyframes b66FeaturedHeroDrift {
	from {
		transform: scale(1.018) translate3d(-0.35%, 0, 0);
	}

	to {
		transform: scale(1.045) translate3d(0.55%, -0.35%, 0);
	}
}

@media (max-width: 720px) {
	body.home .b66-home-featured-hero {
		min-height: 16rem;
		margin-top: 0.2rem;
	}

	body.home .b66-home-featured-hero::before {
		background-image:
			radial-gradient(circle at 66% 42%, rgba(25, 219, 224, 0.12), transparent 18rem),
			linear-gradient(90deg, rgba(5, 8, 9, 0.95) 0%, rgba(5, 8, 9, 0.78) 44%, rgba(5, 8, 9, 0.42) 70%, rgba(5, 8, 9, 0.86) 100%),
			linear-gradient(180deg, rgba(5, 8, 9, 0.12) 0%, rgba(5, 8, 9, 0.48) 100%),
			var(--b66-featured-hero-image);
		background-position: 55% center;
	}

	body.home .b66-home-featured-hero__inner {
		padding-block: 1.7rem;
	}

	body.home .b66-home-featured-hero__copy {
		width: min(100%, 17.5rem);
		gap: 0.68rem;
	}

	body.home .b66-home-featured-hero__copy h1 {
		font-size: clamp(2rem, 11vw, 3rem);
		letter-spacing: 0.045em;
	}

	body.home .b66-home-featured-hero__copy p {
		max-width: 15.5rem;
		font-size: 0.86rem;
		line-height: 1.5;
	}

	body.home .b66-home-featured-hero__cta {
		min-height: 2.72rem;
		padding-inline: 1.05rem;
		font-size: 0.82rem;
	}

	body.home .b66-catalog-section--featured-grid {
		padding-top: 0.95rem !important;
	}
}

@media (max-width: 720px) {
	body.home .b66-section,
	.b66-catalog-section {
		padding-block: 1.2rem !important;
	}

	.b66-section-heading {
		align-items: center !important;
		margin-bottom: 0.75rem !important;
		padding-bottom: 0.65rem !important;
	}

	.b66-section-heading h2 {
		font-size: clamp(1.26rem, 6vw, 1.7rem) !important;
		max-width: 12ch;
	}

	.b66-footer__brand img {
		height: 2.05rem !important;
	}

	.b66-footer__copy {
		margin: 0 !important;
	}

	.b66-footer__column--signup {
		padding-bottom: 0 !important;
	}

	.b66-footer__signup-link {
		width: 100%;
		min-height: 2.95rem;
		font-size: 0.86rem !important;
	}

	.b66-footer__meta {
		padding-top: 0.9rem !important;
	}
}
