/*
Theme Name: JAVENZA
Author: JAVENZA
Description: Custom product catalogue and editorial theme for JAVENZA.
Version: 1.0.0
Requires at least: 6.5
Tested up to: 7.0
Requires PHP: 7.4
Text Domain: luxstruk
*/

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
}

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

/* Header */
.marble-header {
	--header-gutter: clamp(1.5rem, 2.6vw, 3.25rem);
	--header-line: rgba(255, 255, 255, 0.2);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 100;
	width: 100%;
	color: #fff;
	font-size: 0.625rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.marble-header a {
	color: inherit;
	text-decoration: none;
}

.marble-header a,
.marble-header summary {
	transition: opacity 180ms ease;
}

.marble-header a:hover,
.marble-header a:focus-visible,
.marble-header summary:hover,
.marble-header summary:focus-visible {
	opacity: 0.68;
}

.marble-header a:focus-visible,
.marble-header summary:focus-visible {
	outline: 1px solid currentColor;
	outline-offset: 0.35rem;
}

.marble-header__utility {
	min-height: 2.9rem;
	background: rgba(79, 91, 86, 0.82);
	backdrop-filter: blur(5px);
}

.marble-header__utility-inner {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	width: 100%;
	min-height: 2.9rem;
	padding-inline: var(--header-gutter);
}

.marble-header__email {
	display: inline-flex;
	align-items: center;
	gap: 0.32rem;
	text-decoration: underline !important;
	text-underline-offset: 0.12rem;
}

.marble-header__email svg {
	width: 0.8rem;
	height: 0.8rem;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.6;
}

.marble-header__review {
	justify-self: end;
}

.marble-header__nav-wrap {
	border-bottom: 1px solid var(--header-line);
	background: linear-gradient(180deg, rgba(20, 23, 22, 0.24), rgba(20, 23, 22, 0.08));
}

.marble-header__nav {
	display: grid;
	grid-template-columns: minmax(9rem, 1fr) auto minmax(22rem, 1fr);
	align-items: center;
	width: 100%;
	min-height: 4.1rem;
	padding-inline: var(--header-gutter);
}

.marble-header__brand {
	justify-self: start;
	font-size: clamp(1rem, 1.15vw, 1.25rem);
	font-weight: 600;
	line-height: 1;
	letter-spacing: -0.045em;
	text-transform: none;
}

.marble-header__menu,
.marble-header__actions {
	display: flex;
	align-items: center;
}

.marble-header__menu {
	justify-content: center;
	gap: clamp(1.1rem, 1.6vw, 2rem);
}

.marble-header__menu .has-submenu::after {
	content: "";
	display: inline-block;
	width: 0.28rem;
	height: 0.28rem;
	margin: 0 0 0.16rem 0.42rem;
	border-right: 1px solid currentColor;
	border-bottom: 1px solid currentColor;
	transform: rotate(45deg);
}

.marble-header__actions {
	justify-content: flex-end;
	gap: clamp(0.8rem, 1.15vw, 1.45rem);
}

.marble-header__actions > a:not(.marble-header__country) {
	display: inline-flex;
	align-items: center;
	gap: 0.38rem;
}

.marble-header__actions svg {
	width: 0.95rem;
	height: 0.95rem;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.55;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.marble-header__country,
.marble-header__mobile-country {
	padding: 0;
	border: 0;
	background: transparent;
	color: inherit;
	font: inherit;
	letter-spacing: inherit;
	text-align: left;
	text-transform: inherit;
	cursor: pointer;
	transition: opacity 180ms ease;
}
.marble-header__country:hover,
.marble-header__country:focus-visible,
.marble-header__mobile-country:hover,
.marble-header__mobile-country:focus-visible { opacity: .68; }
.marble-header__country:focus-visible,
.marble-header__mobile-country:focus-visible { outline: 1px solid currentColor; outline-offset: .35rem; }

body.country-drawer-open { overflow: hidden; }
.country-drawer {
	position: fixed;
	inset: 0;
	z-index: 1000;
	visibility: hidden;
	pointer-events: none;
}
.country-drawer.is-open { visibility: visible; pointer-events: auto; }
.country-drawer__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(17, 20, 19, .52);
	opacity: 0;
	transition: opacity 360ms ease;
}
.country-drawer.is-open .country-drawer__backdrop { opacity: 1; }
.country-drawer__panel {
	position: absolute;
	top: 0;
	right: 0;
	width: min(600px, 100%);
	height: 100dvh;
	padding: 70px 48px 48px;
	overflow-y: auto;
	background: #fff;
	color: #111;
	outline: 0;
	box-shadow: -20px 0 55px rgba(0,0,0,.08);
	transform: translateX(100%);
	transition: transform 420ms cubic-bezier(.22, 1, .36, 1);
}
.country-drawer.is-open .country-drawer__panel { transform: translateX(0); }
.country-drawer__close {
	position: absolute;
	top: 28px;
	right: 28px;
	display: grid;
	width: 32px;
	height: 32px;
	padding: 0;
	place-items: center;
	border: 0;
	background: transparent;
	color: #111;
	cursor: pointer;
}
.country-drawer__close svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.25; stroke-linecap: round; }
.country-drawer__close:hover,
.country-drawer__close:focus-visible { opacity: .58; }
.country-drawer__close:focus-visible { outline: 1px solid currentColor; outline-offset: 3px; }
.country-drawer h2 {
	margin: 0;
	font-size: clamp(34px, 2.75vw, 43px);
	font-weight: 400;
	line-height: 1.08;
	letter-spacing: -.045em;
}
.country-drawer__panel > p {
	max-width: 480px;
	margin: 26px 0 28px;
	font-size: 16px;
	line-height: 1.45;
}
.country-drawer__field { position: relative; margin-top: 16px; }
.country-drawer__field select {
	width: 100%;
	height: 60px;
	padding: 0 52px 0 16px;
	border: 1px solid #e2e2df;
	border-radius: 9px;
	outline: 0;
	appearance: none;
	background: #fff;
	color: #111;
	font: inherit;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: .16em;
	text-transform: uppercase;
	cursor: pointer;
	transition: border-color 180ms ease, box-shadow 180ms ease;
}
.country-drawer__field select:hover { border-color: #b8bbb7; }
.country-drawer__field select:focus { border-color: #777d7a; box-shadow: 0 0 0 2px rgba(95,105,101,.12); }
.country-drawer__chevron {
	position: absolute;
	top: 50%;
	right: 19px;
	width: 7px;
	height: 7px;
	border-right: 1px solid #111;
	border-bottom: 1px solid #111;
	pointer-events: none;
	transform: translateY(-70%) rotate(45deg);
}
@media (max-width: 640px) {
	.country-drawer__panel { width: 100%; padding: 68px 22px 36px; }
	.country-drawer__close { top: 20px; right: 18px; }
	.country-drawer h2 { font-size: 34px; }
	.country-drawer__panel > p { margin-top: 20px; font-size: 14px; }
}
@media (prefers-reduced-motion: reduce) {
	.country-drawer__backdrop,
	.country-drawer__panel { transition: none; }
}

.marble-header__mobile-menu {
	display: none;
}

@media (max-width: 1180px) {
	.marble-header__nav {
		grid-template-columns: minmax(8rem, 1fr) auto minmax(16rem, 1fr);
	}

	.marble-header__actions {
		gap: 0.75rem;
	}

	.marble-header__actions > a span {
		display: none;
	}
}

@media (max-width: 860px) {
	.marble-header {
		--header-gutter: 1.25rem;
	}

	.marble-header__utility,
	.marble-header__utility-inner {
		min-height: 2.25rem;
	}

	.marble-header__utility-inner {
		display: flex;
		justify-content: center;
	}

	.marble-header__utility-inner > a:first-child,
	.marble-header__review {
		display: none;
	}

	.marble-header__nav {
		grid-template-columns: 1fr auto;
		min-height: 4rem;
	}

	.marble-header__menu,
	.marble-header__actions {
		display: none;
	}

	.marble-header__mobile-menu {
		display: block;
		justify-self: end;
	}

	.marble-header__mobile-menu summary {
		display: flex;
		flex-direction: column;
		justify-content: center;
		gap: 0.27rem;
		width: 1.75rem;
		height: 1.75rem;
		cursor: pointer;
		list-style: none;
	}

	.marble-header__mobile-menu summary::-webkit-details-marker {
		display: none;
	}

	.marble-header__mobile-menu summary span {
		display: block;
		width: 100%;
		height: 1px;
		background: currentColor;
		transition: transform 180ms ease, opacity 180ms ease;
	}

	.marble-header__mobile-menu[open] summary span:first-child {
		transform: translateY(0.33rem) rotate(45deg);
	}

	.marble-header__mobile-menu[open] summary span:nth-child(2) {
		opacity: 0;
	}

	.marble-header__mobile-menu[open] summary span:last-child {
		transform: translateY(-0.33rem) rotate(-45deg);
	}

	.marble-header__mobile-panel {
		position: absolute;
		top: 100%;
		left: 0;
		display: grid;
		width: 100%;
		padding: 1.5rem var(--header-gutter) 2rem;
		background: rgba(66, 75, 72, 0.97);
		box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.16);
	}

	.marble-header__mobile-panel a,
	.marble-header__mobile-panel button {
		padding: 0.9rem 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.16);
	}

	.marble-header__mobile-country { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
	.marble-header *,
	.marble-header *::before,
	.marble-header *::after {
		transition-duration: 0.01ms !important;
	}
}

/* Keep the overlay header visible while previewing as a logged-in administrator. */
.admin-bar .marble-header {
	top: 32px;
}

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

/* Classic theme navigation resets */
.marble-header__brand-wrap {
	justify-self: start;
}

.marble-header__brand-wrap .custom-logo-link {
	display: block;
}

.marble-header__brand-wrap .custom-logo {
	display: block;
	width: auto;
	max-width: 12rem;
	max-height: 2.25rem;
}

.marble-header__menu,
.marble-header__menu ul,
.marble-header__mobile-links,
.marble-header__mobile-links ul,
.site-footer__menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

.marble-header__menu > li {
	position: relative;
}

.marble-header__menu .sub-menu {
	position: absolute;
	top: calc(100% + 1rem);
	left: 50%;
	display: none;
	min-width: 12rem;
	padding: 0.75rem;
	background: rgba(66, 75, 72, 0.98);
	box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.18);
	transform: translateX(-50%);
}

.marble-header__menu .sub-menu a {
	display: block;
	padding: 0.65rem 0.75rem;
	white-space: nowrap;
}

.marble-header__menu li:hover > .sub-menu,
.marble-header__menu li:focus-within > .sub-menu {
	display: block;
}

.marble-header__menu .menu-item-has-children > a::after {
	content: "";
	display: inline-block;
	width: 0.28rem;
	height: 0.28rem;
	margin: 0 0 0.16rem 0.42rem;
	border-right: 1px solid currentColor;
	border-bottom: 1px solid currentColor;
	transform: rotate(45deg);
}

.marble-header__mobile-links li,
.marble-header__mobile-actions a {
	border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.marble-header__mobile-links a,
.marble-header__mobile-actions a {
	display: block;
	padding: 0.9rem 0;
}

.marble-header__mobile-links .sub-menu {
	padding-left: 1rem;
}

.marble-header__mobile-actions {
	display: grid;
}

/* General classic-theme content */
body {
	background: #fff;
	color: #171a19;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.65;
}

body:not(.home) .marble-header {
	position: relative;
	top: auto;
	background: #4f5b56;
}

body:not(.home).admin-bar .marble-header {
	top: auto;
}

/* Homepage header overlays the full-screen slider. */
body.home.blog .marble-header {
	position: absolute;
	top: 0;
	background: transparent;
}

body.home.blog.admin-bar .marble-header {
	top: 32px;
}

body.home.blog .marble-header__utility {
	display: none;
}

body.home.blog .marble-header__nav-wrap {
	background: linear-gradient(180deg, rgba(11, 14, 13, 0.48), rgba(11, 14, 13, 0.04));
}

.site-main {
	width: min(100% - 3rem, 1200px);
	min-height: 55vh;
	margin-inline: auto;
	padding-block: clamp(8rem, 12vw, 11rem) clamp(4rem, 8vw, 8rem);
}

body:not(.home) .site-main {
	padding-top: clamp(3rem, 7vw, 6rem);
}

.site-main.site-main--slider {
	width: 100%;
	max-width: none;
	min-height: 100vh;
	margin: 0;
	padding: 0;
}

.site-main--narrow,
.entry--single,
.entry--page,
.comments-area,
.post-navigation {
	max-width: 760px;
	margin-inline: auto;
}

.page-header {
	margin-bottom: 3rem;
}

.page-title,
.entry-title {
	margin: 0 0 1rem;
	font-weight: 500;
	line-height: 1.12;
	letter-spacing: -0.035em;
}

.page-title,
.entry > .entry-header .entry-title {
	font-size: clamp(2.4rem, 6vw, 5rem);
}

.entry-title a {
	color: inherit;
	text-decoration: none;
}

.entry-title a:hover,
.entry-title a:focus-visible {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

.entry-meta {
	display: flex;
	gap: 1rem;
	margin-bottom: 1.5rem;
	color: #69706d;
	font-size: 0.82rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.entry-featured-image,
.entry-card__thumbnail {
	display: block;
	margin-bottom: 2rem;
}

.entry-featured-image img,
.entry-card__thumbnail img {
	display: block;
	width: 100%;
}

.entry-content > * {
	max-width: 100%;
}

.entry-content a,
.entry-summary a {
	color: inherit;
	text-underline-offset: 0.15em;
}

.entry-content .alignwide {
	width: min(100vw - 3rem, 1200px);
	max-width: none;
	margin-left: 50%;
	transform: translateX(-50%);
}

.entry-content .alignfull {
	width: 100vw;
	max-width: none;
	margin-left: 50%;
	transform: translateX(-50%);
}

.post-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(2rem, 5vw, 5rem);
}

.entry-card {
	padding-bottom: 2.5rem;
	border-bottom: 1px solid #d9dddb;
}

.entry-card .entry-title {
	font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.navigation.pagination,
.post-navigation {
	margin-top: 3rem;
}

.nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.nav-links a,
.nav-links .current,
.button {
	display: inline-flex;
	padding: 0.65rem 1rem;
	border: 1px solid #4f5b56;
	color: #25302c;
	text-decoration: none;
}

.button {
	background: #4f5b56;
	color: #fff;
}

.comments-area {
	margin-top: 4rem;
	padding-top: 2rem;
	border-top: 1px solid #d9dddb;
}

.comment-list {
	padding-left: 1.25rem;
}

.error-404 {
	text-align: center;
}

.error-404__code {
	margin: 0;
	color: #76807c;
	font-size: clamp(5rem, 18vw, 12rem);
	font-weight: 300;
	line-height: 0.9;
}

.site-footer {
	padding: 3rem clamp(1.5rem, 4vw, 4rem);
	background: #202725;
	color: #fff;
}

.site-footer a {
	color: inherit;
	text-decoration: none;
}

.site-footer__inner {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 1.5rem 3rem;
	max-width: 1200px;
	margin-inline: auto;
}

.site-footer__brand {
	font-size: 1.35rem;
	font-weight: 600;
}

.site-footer__menu {
	display: flex;
	flex-wrap: wrap;
	gap: 1.25rem;
}

.site-footer__copyright {
	grid-column: 1 / -1;
	margin: 0;
	color: rgba(255, 255, 255, 0.65);
	font-size: 0.8rem;
}

@media (max-width: 860px) {
	.site-main {
		width: min(100% - 2rem, 1200px);
	}

	.post-list {
		grid-template-columns: 1fr;
	}

	.site-footer__inner {
		grid-template-columns: 1fr;
	}

	.site-footer__copyright {
		grid-column: auto;
	}
}

/* Homepage slideshow */
.luxstruk-slider {
	position: relative;
	isolation: isolate;
	width: 100%;
	height: 80vh;
	min-height: 38rem;
	overflow: hidden;
	background: #777b79;
	color: #fff;
	touch-action: pan-y;
}

.admin-bar .luxstruk-slider {
	height: 80vh;
}

.luxstruk-slider__slides,
.luxstruk-slider__slide {
	position: absolute;
	inset: 0;
}

.luxstruk-slider__slide {
	z-index: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity 900ms cubic-bezier(0.22, 1, 0.36, 1), visibility 900ms;
}

.luxstruk-slider__slide::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, transparent 24%, transparent 72%, rgba(0, 0, 0, 0.1) 100%);
	pointer-events: none;
}

.luxstruk-slider__slide.is-active {
	z-index: 1;
	opacity: 1;
	visibility: visible;
}

.luxstruk-slider__slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transform: scale(1.025);
	transition: transform 7s linear;
}

.luxstruk-slider__slide.is-active img {
	transform: scale(1);
}

.luxstruk-slider__arrow {
	position: absolute;
	top: 50%;
	z-index: 3;
	display: grid;
	place-items: center;
	width: 3.5rem;
	height: 4.5rem;
	padding: 0;
	border: 0;
	background: transparent;
	color: rgba(255, 255, 255, 0.92);
	cursor: pointer;
	transform: translateY(-50%);
	transition: color 180ms ease, background-color 180ms ease;
}

.luxstruk-slider__arrow:hover,
.luxstruk-slider__arrow:focus-visible {
	background: rgba(0, 0, 0, 0.14);
	color: #fff;
}

.luxstruk-slider__arrow:focus-visible,
.luxstruk-slider__dot:focus-visible {
	outline: 1px solid currentColor;
	outline-offset: 0.25rem;
}

.luxstruk-slider__arrow svg {
	width: 1.15rem;
	height: 1.15rem;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.25;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.luxstruk-slider__arrow--previous {
	left: 1rem;
}

.luxstruk-slider__arrow--next {
	right: 1rem;
}

.luxstruk-slider__pagination {
	position: absolute;
	right: clamp(1.5rem, 2.6vw, 3.25rem);
	bottom: clamp(1.7rem, 3vw, 3rem);
	z-index: 3;
	display: flex;
	align-items: center;
	gap: 0.38rem;
}

.luxstruk-slider__progress {
	position: relative;
	display: grid;
	flex: 0 0 auto;
	place-items: center;
	width: 1.1rem;
	height: 1.1rem;
	margin-right: 0.08rem;
	color: #fff;
}

.luxstruk-slider__progress svg {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	fill: none;
	stroke-width: 1;
	transform: rotate(-90deg);
}

.luxstruk-slider__progress-track {
	stroke: rgba(255, 255, 255, 0.35);
}

.luxstruk-slider__progress-value {
	stroke: currentColor;
	stroke-linecap: round;
	stroke-dasharray: 53.41;
	stroke-dashoffset: 53.41;
}

.luxstruk-slider__progress.is-running .luxstruk-slider__progress-value {
	animation: luxstruk-slider-progress 6500ms linear forwards;
}

.luxstruk-slider__progress-dot {
	width: 0.22rem;
	height: 0.22rem;
	border-radius: 50%;
	background: currentColor;
}

@keyframes luxstruk-slider-progress {
	to {
		stroke-dashoffset: 0;
	}
}

.luxstruk-slider__dot {
	display: inline-flex;
	align-items: center;
	min-width: 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: rgba(255, 255, 255, 0.42);
	font: inherit;
	font-size: 0.65rem;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.06em;
	cursor: pointer;
	transition: color 180ms ease;
}

.luxstruk-slider__dot:hover,
.luxstruk-slider__dot:focus-visible,
.luxstruk-slider__dot.is-active {
	color: #fff;
}

@media (max-width: 782px) {
	body.home.blog.admin-bar .marble-header {
		top: 46px;
	}

	.admin-bar .luxstruk-slider {
		height: 80vh;
	}
}

@media (max-width: 860px) {
	.luxstruk-slider {
		min-height: 32rem;
	}

	.luxstruk-slider__arrow {
		width: 2.75rem;
		height: 3.5rem;
	}

	.luxstruk-slider__arrow--previous {
		left: 0.25rem;
	}

	.luxstruk-slider__arrow--next {
		right: 0.25rem;
	}

	.luxstruk-slider__pagination {
		right: 1.25rem;
		bottom: 1.5rem;
		gap: 0.5rem;
	}

}

@media (prefers-reduced-motion: reduce) {
	.luxstruk-slider__slide,
	.luxstruk-slider__slide img {
		transition: none;
	}

	.luxstruk-slider__progress-value {
		animation: none !important;
	}
}

/* Marblebee-inspired homepage content below the existing hero. */
.marble-home {
	--home-gutter: clamp(1.5rem, 2.1vw, 2.4rem);
	background: #fff;
	color: #111;
	font-family: Arial, Helvetica, sans-serif;
	line-height: 1.35;
}
.marble-home *, .marble-home *::before, .marble-home *::after { box-sizing: border-box; }
.marble-home a { color: inherit; text-decoration: none; }
.home-product-feed { height: 37.55rem; padding: 1.7rem var(--home-gutter) 1.35rem; overflow: hidden; background: #fff; }
.home-section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-bottom: 1.55rem; }
.home-section-head h2, .home-collections > h2, .home-blog h2 { margin: 0; font-size: clamp(2rem, 2.7vw, 3rem); font-weight: 400; line-height: 1; letter-spacing: -.045em; }
.home-section-actions { display: flex; align-items: center; gap: .8rem; padding-right: .25rem; font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; }
.home-section-actions > a, .home-underlined-link { border-bottom: 1px solid currentColor; }
.home-section-actions button, .home-track-float { display: grid; place-items: center; width: 1.75rem; height: 1.75rem; padding: 0; border: 0; background: transparent; color: #111; font: inherit; font-size: 1rem; cursor: pointer; }
.home-product-track, .home-collection-track, .home-review-track, .home-blog-track { display: flex; gap: .75rem; overflow-x: auto; overscroll-behavior-inline: contain; scroll-behavior: smooth; scroll-snap-type: x mandatory; scrollbar-width: none; }
.home-product-track::-webkit-scrollbar, .home-collection-track::-webkit-scrollbar, .home-review-track::-webkit-scrollbar, .home-blog-track::-webkit-scrollbar { display: none; }
.home-product-card { flex: 0 0 calc((100% - 2.25rem) / 4.28); min-width: 0; scroll-snap-align: start; }
.home-product-card__media { position: relative; display: block; overflow: hidden; aspect-ratio: 1 / 1; border-radius: .42rem; background: #f3f3f1; }
.home-product-card__media img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.home-product-card:hover .home-product-card__media img { transform: scale(1.025); }
.home-product-card__media > span { position: absolute; right: .75rem; bottom: .7rem; padding: .42rem .75rem; border-radius: 1.2rem; background: rgba(255,255,255,.91); font-size: .65rem; opacity: 0; transform: translateY(.3rem); transition: .2s ease; }
.home-product-card:hover .home-product-card__media > span { opacity: 1; transform: none; }
.home-product-card h3 { min-height: 2.15rem; margin: .75rem 0 .2rem; font-size: .69rem; font-weight: 700; line-height: 1.35; letter-spacing: .035em; text-transform: uppercase; }
.home-product-card__label { margin: 0; color: #777; font-size: .58rem; letter-spacing: .07em; text-transform: uppercase; }
.home-product-card__price { margin: .08rem 0 0; font-size: .75rem; }
.home-visual-banner { position: relative; width: 100%; overflow: hidden; background: #ddd; }
.home-visual-banner > img { display: block; width: 100%; height: 100%; object-fit: cover; }
.home-visual-banner--fireplace, .home-visual-banner--tub, .home-visual-banner--slabs { aspect-ratio: 1.496 / 1; }
.home-visual-banner__button { position: absolute; left: 5.5%; bottom: 8.5%; }
.home-pill { display: inline-flex; align-items: center; justify-content: center; min-height: 2.8rem; padding: .65rem 1.6rem; border: 1px solid currentColor; border-radius: 99rem; color: #111; font-size: .72rem; letter-spacing: .03em; }
.home-pill--dark, .home-fountain-grid .home-pill { border-color: #111; background: #111; color: #fff; }
.home-collections { position: relative; min-height: 50.95rem; padding: 2.5rem clamp(2rem,10.4vw,11.3rem) 2.6rem; background: #f8f8f8; text-align: center; }
.home-collections > h2 { padding-bottom: 3rem; border-bottom: 1px solid #ddd; font-size: clamp(2.3rem,3vw,3.35rem); }
.home-collection-track { margin-top: 2rem; gap: .7rem; text-align: left; }
.home-collection-card { flex: 0 0 calc((100% - 2.1rem)/4); overflow: hidden; min-width: 0; border-radius: .45rem; background: #bdc3c1; scroll-snap-align: start; }
.home-collection-card img { display: block; width: 100%; aspect-ratio: .93/1.22; object-fit: cover; }
.home-collection-card span { display: block; overflow: hidden; padding: .08rem .08rem .16rem; white-space: nowrap; font-size: clamp(1.35rem,2.25vw,2.55rem); line-height: 1.15; letter-spacing: -.05em; }
.home-collection-card sup { margin-left: .18rem; font-size: .48em; letter-spacing: .02em; vertical-align: super; }
.home-collections .home-underlined-link { display: inline-block; margin-top: 3rem; font-size: .72rem; letter-spacing: .08em; }
.home-track-float { position: absolute; top: 47%; right: 10.8%; z-index: 2; width: 2.8rem; height: 2.8rem; border-radius: .4rem; background: rgba(255,255,255,.88); }
.home-puddingstone { display: grid; grid-template-columns: 40% 60%; min-height: 44.57rem; background: #fff; }
.home-puddingstone__product { padding: 3.1rem 4% 2rem 14%; }
.home-puddingstone__product > h2 { margin: 0; font-size: clamp(2.2rem,2.8vw,3.3rem); font-weight: 400; letter-spacing: -.045em; }
.home-puddingstone__product > p { margin: .35rem 0 1.7rem 2.5rem; font-size: 1rem; }
.home-product-card--feature { width: min(100%, 23.5rem); max-width: none; }
.home-product-card--feature .home-product-card__media { border-radius: 0; }
.home-product-card--feature .home-product-card__media strong { position: absolute; top: .8rem; left: .8rem; padding: .45rem .65rem; border-radius: .2rem; background: #666; color: #fff; font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; }
.home-puddingstone__stone { overflow: hidden; }
.home-puddingstone__stone img { display: block; width: 100%; height: 100%; object-fit: cover; }
.home-visual-banner__caption { position: absolute; left: 5.5%; bottom: 8.5%; color: #fff; }
.home-visual-banner__caption h2 { margin: 0 0 1.4rem; font-size: clamp(1.7rem,2.2vw,2.6rem); font-weight: 400; letter-spacing: -.04em; }
.home-visual-banner__caption .home-pill { color: #111; }
.home-fountain-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: .75rem; min-height: 75.15rem; padding: 1.6rem 0 2rem; background: #fff; }
.home-fountain-grid > a { position: relative; display: block; overflow: hidden; border-radius: .45rem; }
.home-fountain-grid img { display: block; width: 100%; height: 100%; object-fit: cover; }
.home-fountain-grid .home-pill { position: absolute; left: 50%; bottom: 2rem; transform: translateX(-50%); white-space: nowrap; }
.home-bespoke { display: grid; grid-template-columns: 1fr 1fr; min-height: 72.1rem; overflow: hidden; border-radius: .4rem; background: #77827f; }
.home-bespoke__copy { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 3rem; text-align: center; color: #fff; }
.home-bespoke__copy h2 { margin: 0 0 2.4rem; font-size: clamp(2.4rem,3.25vw,4.1rem); font-weight: 400; line-height: 1.08; letter-spacing: -.05em; }
.home-bespoke > img { display: block; width: 100%; height: 100%; object-fit: cover; }
.home-reviews { min-height: 48.7rem; padding: 3rem clamp(2rem,19vw,20rem) 3.5rem; background: #fff; text-align: center; }
.home-reviews header h2 { margin: 0; font-size: clamp(2.6rem,4vw,4.6rem); font-weight: 400; line-height: 1; letter-spacing: -.05em; }
.home-reviews header p { margin: .4rem 0 1.1rem; font-size: .9rem; }
.home-review-track { gap: 1.2rem; }
.home-review-card { flex: 0 0 calc((100% - 2.4rem)/3); min-width: 0; min-height: 30rem; overflow: hidden; border: 1px solid #eee; border-radius: .45rem; background: #fff; box-shadow: 0 .2rem .8rem rgba(0,0,0,.09); scroll-snap-align: start; }
.home-review-card img { display: block; width: 100%; height: 15.5rem; object-fit: contain; background: #f7f7f7; }
.home-stars { margin-top: 2rem; color: #129b87; font-size: 1.25rem; letter-spacing: .05em; }
.home-review-card h3 { margin: .8rem 0 1.4rem; color: #159a87; font-size: 1rem; font-weight: 400; }
.home-review-card p { margin: 0; font-size: .9rem; }
.home-blog { min-height: 52.95rem; padding: 2.2rem var(--home-gutter) 3rem; }
.home-blog-track { gap: 1.45rem; }
.home-blog-card { flex: 0 0 calc((100% - 2.9rem)/3.12); min-width: 0; scroll-snap-align: start; }
.home-blog-card img { display: block; width: 100%; aspect-ratio: 1.36/1; border-radius: .35rem; object-fit: cover; }
.home-blog-card h3 { margin: 1rem 0 .5rem; font-size: 1.15rem; font-weight: 500; line-height: 1.35; text-transform: capitalize; }
.home-blog-card p { margin: 0 0 .8rem; color: #666; font-size: .75rem; }
.home-blog-card__more { border-bottom: 1px solid currentColor; font-size: .67rem; letter-spacing: .1em; text-transform: uppercase; }
.home-footer { display: grid; grid-template-columns: 1.5fr repeat(3,1fr) 1.1fr; gap: 2rem; min-height: 25.8rem; padding: 3rem var(--home-gutter) 1.2rem; border-top: 0; background: #65706e; color: #fff; }
.home-footer h2, .home-footer h3 { margin: 0 0 1.1rem; font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.home-footer__newsletter p, .home-footer__brand p { max-width: 18rem; margin: 0 0 1.6rem; font-size: .85rem; }
.home-footer__newsletter label { display: block; margin-bottom: .4rem; font-size: .65rem; letter-spacing: .09em; text-transform: uppercase; }
.home-footer__newsletter form > div { display: flex; max-width: 23rem; overflow: hidden; border: 0; border-radius: .45rem; background: #fff; }
.home-footer__newsletter input { min-width: 0; flex: 1; padding: .85rem 1rem; border: 0; outline: 0; background: #fff; color: #111; }
.home-footer__newsletter button { padding: .85rem 1.2rem; border: 0; background: #fff; color: #111; font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; }
.home-footer__column { display: flex; flex-direction: column; align-items: flex-start; gap: .55rem; font-size: .75rem; }
.home-footer__brand h2 { font-size: 1.4rem; letter-spacing: -.04em; text-transform: none; }
.home-footer__bottom { grid-column: 1/-1; align-self: end; display: flex; justify-content: space-between; gap: 1rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.78); font-size: .68rem; }

@media (max-width: 900px) {
 .marble-home { --home-gutter: 1rem; }
 .home-product-feed { height: auto; min-height: 31rem; padding-block: 1.5rem; }
 .home-section-head h2, .home-blog h2 { font-size: 2rem; }
 .home-section-actions > a { display: none; }
 .home-product-card { flex-basis: 72vw; }
 .home-product-card h3 { min-height: 0; }
 .home-product-card__media > span { display: none; }
 .home-visual-banner--fireplace, .home-visual-banner--tub, .home-visual-banner--slabs { aspect-ratio: .84 / 1; }
 .home-visual-banner > img { object-position: center; }
 .home-collections { min-height: 37rem; padding: 2rem 1rem 2.5rem; }
 .home-collections > h2 { padding-bottom: 2rem; font-size: 2.25rem; }
 .home-collection-card { flex-basis: 77vw; }
 .home-collection-card img { aspect-ratio: 1/1.05; }
 .home-track-float { display: none; }
 .home-puddingstone { grid-template-columns: 1fr; }
 .home-puddingstone__product { padding: 2rem 1rem 1rem; }
 .home-puddingstone__product > p { margin-left: 0; }
 .home-product-card--feature { width: 78vw; }
 .home-puddingstone__stone { min-height: 28rem; }
 .home-fountain-grid { grid-template-columns: 1fr; min-height: 0; padding: .5rem; gap: .5rem; }
 .home-fountain-grid > a { height: 85vh; min-height: 34rem; }
 .home-bespoke { grid-template-columns: 1fr; min-height: 0; }
 .home-bespoke__copy { min-height: 31rem; padding: 2rem 1.2rem; }
 .home-bespoke__copy h2 { font-size: 2.35rem; }
 .home-bespoke > img { height: 75vh; min-height: 32rem; }
 .home-reviews { min-height: 0; padding: 3rem 1rem; }
 .home-reviews header h2 { font-size: 2.65rem; }
 .home-review-card { flex-basis: 82vw; min-height: 27rem; }
 .home-blog { min-height: 0; }
 .home-blog-card { flex-basis: 82vw; }
 .home-footer { grid-template-columns: 1fr 1fr; min-height: 0; }
 .home-footer__newsletter, .home-footer__brand { grid-column: 1/-1; }
}
@media (max-width: 520px) {
 .home-section-actions { gap: .35rem; }
 .home-product-card { flex-basis: 82vw; }
 .home-collection-card { flex-basis: 84vw; }
 .home-footer { grid-template-columns: 1fr; }
 .home-footer__column, .home-footer__newsletter, .home-footer__brand { grid-column: 1; }
 .home-footer__bottom { flex-direction: column; }
}
.home-visual-banner--fireplace .home-visual-banner__button { color: #fff; }

/* Marblebee-style customer review carousel */
.home-reviews {
 min-height: 48.7rem;
 padding: 5rem max(2rem,calc((100% - 66.25rem)/2)) 5.5rem;
 background: #fff;
 text-align: center;
}
.home-reviews header h2 {
 margin: 0;
 font-size: clamp(2.8rem,3.55vw,3.85rem);
 font-weight: 400;
 line-height: 1;
 letter-spacing: -.055em;
}
.home-reviews header p {
 margin: .42rem 0 1.05rem;
 font-size: .9rem;
 line-height: 1.2;
}
.home-review-carousel {
 position: relative;
 width: 100%;
 max-width: 66.25rem;
 margin: 0 auto;
}
.home-review-track {
 display: flex;
 gap: 1.25rem;
 width: 100%;
 padding: 0;
 overflow-x: auto;
 overscroll-behavior-inline: contain;
 scroll-behavior: smooth;
 scroll-snap-type: x mandatory;
 scrollbar-width: none;
}
.home-review-track::-webkit-scrollbar { display: none; }
.home-review-card {
 display: flex;
 flex: 0 0 calc((100% - 2.5rem)/3);
 min-width: 0;
 height: 30.35rem;
 min-height: 0;
 flex-direction: column;
 overflow: hidden;
 border: 0;
 border-radius: .5rem;
 background: #fff;
 box-shadow: 0 .2rem .85rem rgba(0,0,0,.11);
 scroll-snap-align: start;
}
.home-review-card__media {
 flex: 0 0 15.625rem;
 height: 15.625rem;
 overflow: hidden;
 background: #f5f5f3;
}
.home-review-card__media img,
.home-review-card img {
 display: block;
 width: 100%;
 height: 100%;
 object-fit: cover;
 background: transparent;
}
.home-review-card__body {
 min-height: 0;
 flex: 1;
 padding: 1.8rem 2rem 1.5rem;
 overflow: hidden;
 text-align: center;
}
.home-review-card.is-text-only .home-review-card__body {
 padding-top: 2rem;
}
.home-stars {
 margin: 0;
 color: #078f7c;
 font-size: 1.22rem;
 line-height: 1;
 letter-spacing: .015em;
}
.home-reviewer {
 display: flex;
 align-items: center;
 justify-content: center;
 gap: .45rem;
 margin-top: 1.35rem;
 color: #078f7c;
 font-size: 1rem;
 line-height: 1;
}
.home-reviewer small {
 display: inline-flex;
 align-items: center;
 min-height: 1.45rem;
 padding: .15rem .45rem;
 border-radius: .2rem;
 background: #078f7c;
 color: #fff;
 font-size: .64rem;
 font-weight: 700;
 line-height: 1;
}
.home-review-title,
.home-review-card h3.home-review-title {
 max-width: 100%;
 margin: 1.25rem 0 .45rem;
 overflow: hidden;
 color: #111;
 font-size: .92rem;
 font-weight: 700;
 line-height: 1.3;
 text-overflow: ellipsis;
 white-space: nowrap;
}
.home-review-excerpt,
.home-review-card p.home-review-excerpt {
 display: -webkit-box;
 margin: 0;
 overflow: hidden;
 color: #111;
 font-size: .92rem;
 line-height: 1.38;
 text-align: center;
 -webkit-box-orient: vertical;
 -webkit-line-clamp: 3;
}
.home-review-card:not(.is-text-only) .home-review-title + .home-review-excerpt {
 -webkit-line-clamp: 3;
}
.home-review-card.is-text-only .home-review-title {
 margin-top: 1.35rem;
}
.home-review-card.is-text-only .home-review-excerpt {
 -webkit-line-clamp: 4;
}
.home-review-arrow {
 position: absolute;
 z-index: 3;
 top: 50%;
 display: grid;
 place-items: center;
 width: 2rem;
 height: 4rem;
 padding: 0;
 border: 0;
 background: transparent;
 color: #ddd;
 font-family: Arial,sans-serif;
 font-size: 3.2rem;
 font-weight: 200;
 line-height: 1;
 transform: translateY(-50%);
 cursor: pointer;
}
.home-review-arrow--previous { left: -3rem; }
.home-review-arrow--next { right: -3rem; }
.home-review-arrow:hover,
.home-review-arrow:focus-visible { color: #aaa; }

@media (max-width: 1180px) {
 .home-reviews { padding-inline: 3rem; }
 .home-review-arrow--previous { left: -2.55rem; }
 .home-review-arrow--next { right: -2.55rem; }
}
@media (max-width: 760px) {
 .home-reviews { min-height: 0; padding: 3rem 1rem 4rem; }
 .home-reviews header h2 { font-size: clamp(2.3rem,10vw,3rem); }
 .home-reviews header p { margin-bottom: 1.35rem; }
 .home-review-carousel { max-width: none; }
 .home-review-track { gap: 1rem; padding: .15rem .15rem 1rem; }
 .home-review-card { flex-basis: 82vw; height: 29rem; }
 .home-review-card__media { flex-basis: 14rem; height: 14rem; }
 .home-review-card__body { padding: 1.55rem 1.4rem 1.3rem; }
 .home-review-arrow { display: none; }
}
.home-footer a { color: #fff; }
.home-footer input::placeholder { color: #777; opacity: 1; }

/* Interactive Puddingstone shop-the-look */
.home-puddingstone__viewport {
 width: min(100%,23.5rem);
 overflow: hidden;
}
.home-puddingstone__track {
 display: flex;
 width: 100%;
 transform: translate3d(var(--pudding-offset,0%),0,0);
 transition: transform .55s cubic-bezier(.73,0,.34,1);
 will-change: transform;
}
.home-pudding-card {
 flex: 0 0 100%;
 min-width: 0;
 text-align: left;
}
.home-pudding-card__media {
 position: relative;
 display: block;
 width: 100%;
 overflow: hidden;
 aspect-ratio: 1/1;
 background: #f4f2ee;
}
.home-pudding-card__image {
 position: absolute;
 inset: 0;
 display: block;
 width: 100%;
 height: 100%;
 object-fit: cover;
 transition: opacity .42s ease,transform .65s cubic-bezier(.2,.65,.3,1);
}
.home-pudding-card__image--primary { z-index: 1; opacity: 1; }
.home-pudding-card__image--hover { z-index: 0; opacity: 0; }
.home-pudding-card__media strong {
 position: absolute;
 z-index: 3;
 top: .8rem;
 left: .8rem;
 padding: .45rem .65rem;
 border-radius: .2rem;
 background: #666;
 color: #fff;
 font-size: .62rem;
 letter-spacing: .08em;
 text-transform: uppercase;
}
@media (hover:hover) {
 .home-pudding-card__media:hover .home-pudding-card__image--primary,
 .home-pudding-card__media:focus-visible .home-pudding-card__image--primary { opacity: 0; transform: scale(1.015); }
 .home-pudding-card__media:hover .home-pudding-card__image--hover,
 .home-pudding-card__media:focus-visible .home-pudding-card__image--hover { z-index: 2; opacity: 1; transform: scale(1.015); }
}
.home-pudding-card h3 {
 margin: 1rem 0 .55rem;
 font-size: .72rem;
 font-weight: 650;
 letter-spacing: .035em;
 line-height: 1.35;
 text-transform: uppercase;
}
.home-pudding-card__price {
 margin: 0;
 font-size: .8rem;
 letter-spacing: .025em;
}
.home-puddingstone__controls {
 display: flex;
 align-items: center;
 justify-content: space-between;
 width: min(100%,23.5rem);
 margin-top: 3.45rem;
}
.home-puddingstone__progress {
 position: relative;
 display: block;
 width: 3.15rem;
 height: 1px;
 overflow: hidden;
 background: #d5d5d5;
}
.home-puddingstone__progress > span {
 position: absolute;
 inset: 0;
 background: #111;
 transform: scaleX(.5);
 transform-origin: left center;
 transition: transform .5s cubic-bezier(.73,0,.34,1);
}
.home-puddingstone__controls > div { display: flex; gap: .95rem; }
.home-puddingstone__controls button {
 display: grid;
 place-items: center;
 width: 1rem;
 height: 1.7rem;
 padding: 0;
 border: 0;
 background: transparent;
 color: #111;
 font-family: Arial,sans-serif;
 font-size: 1.45rem;
 font-weight: 300;
 line-height: 1;
 cursor: pointer;
 transition: color .2s ease,opacity .2s ease;
}
.home-puddingstone__controls button:disabled { color: #aaa; opacity: .55; cursor: default; }
.home-puddingstone__stone { position: relative; }
@media (prefers-reduced-motion:reduce) {
 .home-puddingstone__track,
 .home-pudding-card__image,
 .home-puddingstone__progress > span { transition: none; }
}
@media (max-width:900px) {
 .home-puddingstone__viewport,
 .home-puddingstone__controls { width: min(82vw,23.5rem); }
 .home-puddingstone__controls { margin-top: 2rem; }
 .home-puddingstone__stone { min-height: 28rem; }
}

/* Marblebee-style homepage hover interactions. */
.home-product-card__media .home-product-card__image {
 position: absolute;
 inset: 0;
 display: block;
 width: 100%;
 height: 100%;
 object-fit: cover;
 transform: none;
 transition: opacity .7s ease;
 will-change: opacity;
}
.home-product-card__image--primary { z-index: 1; opacity: 1; }
.home-product-card__image--hover { z-index: 2; opacity: 0; }
.home-product-card__media > span {
 z-index: 3;
 isolation: isolate;
 overflow: hidden;
 pointer-events: none;
 transition: opacity .3s ease, transform .3s ease;
}
.home-product-card__media > span::before {
 content: "";
 position: absolute;
 z-index: -1;
 inset: 0;
 border-radius: inherit;
 background: rgba(101,112,110,.2);
 transform: translateY(105%);
 transition: transform .4s cubic-bezier(.45,1.45,.8,1);
}
.home-section-actions > a,
.home-underlined-link,
.home-blog-card__more {
 position: relative;
 display: inline-block;
 border-bottom: 0;
}
.home-section-actions > a::after,
.home-underlined-link::after,
.home-blog-card__more::after {
 content: "";
 position: absolute;
 right: 0;
 bottom: -.18rem;
 left: 0;
 height: 1px;
 background: currentColor;
 transform: scaleX(1);
 transform-origin: left center;
 transition: transform .4s ease;
}
.home-collection-card img,
.home-fountain-grid img,
.home-bespoke > img,
.home-blog-card > a:first-child img {
 transition: transform .6s ease;
 will-change: transform;
}
.home-blog-card > a:first-child {
 display: block;
 overflow: hidden;
 border-radius: .35rem;
}
.home-section-actions button,
.home-track-float,
.home-review-arrow {
 transition: opacity .3s ease, color .3s ease;
}
.home-pill {
 transition: color .35s ease, background-color .35s ease, border-color .35s ease;
}
.home-footer a,
.home-footer__newsletter button {
 transition: color .3s ease, opacity .3s ease, background-color .3s ease;
}
.marble-header__menu > li > a {
 position: relative;
 opacity: 1;
}
.marble-header__menu > li > a::before {
 content: "";
 position: absolute;
 right: 0;
 bottom: -.28rem;
 left: 0;
 height: 1px;
 background: currentColor;
 transform: scaleX(0);
 transform-origin: right center;
 transition: transform .35s ease;
}

@media (hover:hover) {
 .home-product-card:hover .home-product-card__media img,
 .home-product-card:focus-within .home-product-card__media img { transform: none; }
 .home-product-card:hover .home-product-card__image--primary,
 .home-product-card:focus-within .home-product-card__image--primary { opacity: 0; }
 .home-product-card:hover .home-product-card__image--hover,
 .home-product-card:focus-within .home-product-card__image--hover { opacity: 1; }
 .home-product-card:hover .home-product-card__media > span,
 .home-product-card:focus-within .home-product-card__media > span {
  opacity: 1;
  transform: none;
 }
 .home-product-card:hover .home-product-card__media > span::before,
 .home-product-card:focus-within .home-product-card__media > span::before { transform: translateY(0); }
 .home-section-actions > a:hover::after,
 .home-section-actions > a:focus-visible::after,
 .home-underlined-link:hover::after,
 .home-underlined-link:focus-visible::after,
 .home-blog-card__more:hover::after,
 .home-blog-card__more:focus-visible::after {
  transform: scaleX(.3);
  transform-origin: right center;
 }
 .home-section-actions button:hover,
 .home-section-actions button:focus-visible,
 .home-track-float:hover,
 .home-track-float:focus-visible { opacity: .7; }
 .home-collection-card:hover img,
 .home-collection-card:focus-visible img,
 .home-fountain-grid > a:hover img,
 .home-fountain-grid > a:focus-visible img,
 .home-bespoke:hover > img,
 .home-bespoke:focus-within > img,
 .home-blog-card > a:first-child:hover img,
 .home-blog-card > a:first-child:focus-visible img { transform: scale(1.05); }
 .home-visual-banner--fireplace:hover .home-visual-banner__button,
 .home-visual-banner--fireplace:focus-within .home-visual-banner__button {
  border-color: #fff;
  background: #fff;
  color: #65706e;
 }
 .home-visual-banner--slabs:hover .home-pill,
 .home-visual-banner--slabs:focus-within .home-pill {
  border-color: #111;
  background: #111;
  color: #fff;
 }
 .home-fountain-grid > a:hover .home-pill,
 .home-fountain-grid > a:focus-visible .home-pill,
 .home-bespoke:hover .home-pill--dark,
 .home-bespoke:focus-within .home-pill--dark {
  border-color: #111;
  background: transparent;
  color: #111;
 }
 .home-footer__column a:hover,
 .home-footer__column a:focus-visible,
 .home-footer__brand a:hover,
 .home-footer__brand a:focus-visible { opacity: .7; }
 .home-footer__newsletter button:hover,
 .home-footer__newsletter button:focus-visible { background: #eceeed; }
 .marble-header__menu > li > a:hover,
 .marble-header__menu > li > a:focus-visible { opacity: 1; }
 .marble-header__menu > li > a:hover::before,
 .marble-header__menu > li > a:focus-visible::before {
  transform: scaleX(1);
  transform-origin: left center;
 }
}

@media (prefers-reduced-motion:reduce) {
 .home-product-card__media .home-product-card__image,
 .home-product-card__media > span,
 .home-product-card__media > span::before,
 .home-section-actions > a::after,
 .home-underlined-link::after,
 .home-blog-card__more::after,
 .home-collection-card img,
 .home-fountain-grid img,
 .home-bespoke > img,
 .home-blog-card > a:first-child img,
 .home-pill,
 .home-section-actions button,
 .home-track-float,
 .home-review-arrow,
 .home-footer a,
 .home-footer__newsletter button,
 .marble-header__menu > li > a::before { transition: none !important; }
}

/* Tighter mobile spacing between homepage product collections. */
@media (max-width: 900px) {
 .home-product-feed {
  min-height: 0;
  padding-top: 1.35rem;
  padding-bottom: 1.5rem;
 }
 .home-section-head { margin-bottom: 1.2rem; }
}

/* Keep every product collection only as tall as its content on all screen sizes. */
.home-product-feed {
 height: auto;
 min-height: 0;
 padding-bottom: 1.5rem;
}


/* Marblebee footer replica */
.home-footer {
 display: block;
 min-height: 0;
 padding: 0;
 background: #65706e;
 color: #fff;
 font-size: 14px;
 line-height: 1.6;
}
.home-footer__main {
 display: flex;
 min-height: 362.625px;
 flex-direction: column;
 justify-content: space-between;
 box-sizing: border-box;
 padding: 33px 36px 32px;
}
.home-footer__top,
.home-footer__identity,
.home-footer__bottom {
 display: grid;
 grid-template-columns: repeat(6,minmax(0,1fr));
 column-gap: 32px;
}
.home-footer__newsletter { grid-column: span 3; width: 100%; max-width: 420px; }
.home-footer h2,
.home-footer h3 {
 margin: 0 0 12px;
 padding: 6.25px 0;
 color: rgba(255,255,255,.75);
 font-size: 10px;
 font-weight: 400;
 line-height: 10px;
 letter-spacing: 1.6px;
 text-transform: uppercase;
}
.home-footer__newsletter > p {
 max-width: none;
 margin: 0 0 16px;
 color: #fff;
 font-size: 14px;
 line-height: 22.4px;
}
.home-footer__newsletter form { margin: 0; }
.home-footer__newsletter .home-footer__field {
 position: relative;
 display: block;
 width: 100%;
 max-width: none;
 height: 48px;
 overflow: hidden;
 border-radius: 6px;
 background: #fff;
}
.home-footer__newsletter input {
 position: relative;
 display: block;
 width: 100%;
 height: 48px;
 box-sizing: border-box;
 padding: 0 128px 0 16px;
 border: 1px solid #ebebeb;
 border-radius: 6px;
 outline: 0;
 background: #fff;
 color: #111;
 font: 12px/18px Poppins,sans-serif;
}
.home-footer__newsletter input::placeholder { color: #777; opacity: 1; }
.home-footer__newsletter button {
 position: absolute;
 top: 1px;
 right: 1px;
 height: 46px;
 padding: 16px;
 border: 0;
 background: transparent;
 color: #111;
 font: 12px/15px Poppins,sans-serif;
 letter-spacing: 2px;
 text-transform: uppercase;
 cursor: pointer;
}
.home-footer__column {
 display: flex;
 min-width: 0;
 flex-direction: column;
 align-items: flex-start;
 gap: 0;
 font-size: 14px;
 line-height: 22.4px;
}
.home-footer__column a {
 display: block;
 width: 100%;
 padding: 1px 0;
 color: #fff;
 text-decoration: none;
}
.home-footer__identity { align-items: end; }
.home-footer__brand { grid-column: span 3; }
.home-footer__brand > a {
 display: inline-block;
 padding: 1px 0;
 color: #fff;
 font-size: 14px;
 font-weight: 400;
 line-height: 22.4px;
 text-decoration: none;
}
.home-footer__brand > p {
 max-width: none;
 margin: 24px 0 0;
 color: #fff;
 font-size: 14px;
 line-height: 22.4px;
}
.home-footer__socials {
 grid-column: span 3;
 display: flex;
 align-items: center;
 align-self: end;
 gap: 16px;
 min-height: 24px;
}
.home-footer__socials a {
 display: inline-flex;
 width: 24px;
 height: 24px;
 align-items: center;
 justify-content: center;
 color: #fff;
}
.home-footer__socials svg { display: block; width: 24px; height: 24px; }
.home-footer__bottom {
 min-height: 73px;
 box-sizing: border-box;
 align-items: center;
 padding: 16px 36px;
 border-top: 1px solid rgba(255,255,255,.13);
 background: #65706e;
}
.home-footer__copyright {
 grid-column: span 3;
 color: rgba(255,255,255,.7);
 font-size: 12px;
 line-height: 19.2px;
}
.home-footer__payments {
 grid-column: span 3;
 display: flex;
 align-items: center;
 justify-content: flex-end;
 gap: 8px;
 min-width: 0;
}
.home-footer__payment-icon,
.home-footer__payment-icon svg {
 display: block;
 width: 28px;
 height: 24px;
 flex: 0 0 28px;
}
@media (hover:hover) {
 .home-footer__column a:hover,
 .home-footer__column a:focus-visible,
 .home-footer__brand > a:hover,
 .home-footer__brand > a:focus-visible,
 .home-footer__socials a:hover,
 .home-footer__socials a:focus-visible { opacity: .7; }
 .home-footer__newsletter button:hover,
 .home-footer__newsletter button:focus-visible { background: #eceeed; }
}
@media (max-width: 900px) {
 .home-footer__main { min-height: 0; padding: 32px 20px; }
 .home-footer__top { grid-template-columns: repeat(2,minmax(0,1fr)); row-gap: 32px; }
 .home-footer__newsletter { grid-column: 1/-1; }
 .home-footer__column { grid-column: span 1; }
 .home-footer__identity { grid-template-columns: 1fr; row-gap: 24px; margin-top: 48px; }
 .home-footer__brand,
 .home-footer__socials { grid-column: 1; }
 .home-footer__bottom { grid-template-columns: 1fr; row-gap: 16px; padding: 20px; }
 .home-footer__copyright,
 .home-footer__payments { grid-column: 1; }
 .home-footer__payments { justify-content: flex-start; flex-wrap: wrap; }
}
@media (max-width: 520px) {
 .home-footer__top { grid-template-columns: 1fr; }
 .home-footer__newsletter,
 .home-footer__column { grid-column: 1; }
 .home-footer__field { max-width: 420px; }
 .home-footer__bottom { display: grid; }
}

/* Marblebee-style desktop mega menus. */
@media (min-width: 861px) {
	.marble-header__nav-wrap {
		position: relative;
		color: inherit;
		transition: color 220ms ease, background-color 220ms ease, border-color 220ms ease;
	}

	.marble-header__nav {
		position: static;
	}

	.marble-header__menu {
		align-self: stretch;
	}

	.marble-header__menu > li {
		position: static;
		display: flex;
		align-items: center;
		align-self: stretch;
	}

	.marble-header__menu > li > a {
		display: flex;
		align-items: center;
		height: 100%;
		padding-block: 0.35rem;
		opacity: 1;
	}

	.marble-header__menu .sub-menu.marble-mega-menu {
		position: absolute;
		top: 100%;
		left: 0;
		display: block;
		width: 100%;
		min-width: 0;
		max-height: calc(100vh - 4.1rem);
		padding: 0;
		overflow-y: auto;
		color: #111;
		text-align: left;
		text-transform: none;
		background: #fff;
		border-top: 1px solid #e2e2e2;
		box-shadow: 0 1.2rem 2.4rem rgba(15, 18, 17, 0.09);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transform: translateY(-0.45rem);
		transition: opacity 220ms cubic-bezier(.85, 0, .28, 1), transform 220ms cubic-bezier(.85, 0, .28, 1), visibility 220ms;
		z-index: 120;
	}

	.marble-header__menu > li:hover > .marble-mega-menu,
	.marble-header__menu > li:focus-within > .marble-mega-menu {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translateY(0);
	}

	.marble-header:has(.marble-header__menu > .menu-item-has-children:hover) .marble-header__nav-wrap,
	.marble-header:has(.marble-header__menu > .menu-item-has-children:focus-within) .marble-header__nav-wrap {
		color: #111;
		background: #fff;
		border-bottom-color: #e2e2e2;
	}

	.marble-header__menu .menu-item-has-children > a::after {
		transition: transform 220ms ease;
	}

	.marble-header__menu .menu-item-has-children:hover > a::after,
	.marble-header__menu .menu-item-has-children:focus-within > a::after {
		transform: translateY(0.09rem) rotate(225deg);
	}

	.marble-mega-menu__inner {
		display: grid;
		grid-template-columns: minmax(28rem, 1.05fr) minmax(31rem, 0.95fr);
		gap: clamp(1.75rem, 2.7vw, 3.5rem);
		align-items: start;
		width: 100%;
		padding: 2rem var(--header-gutter);
	}

	.marble-mega-menu__groups,
	.marble-mega-menu__groups ul {
		margin: 0;
		padding: 0;
		list-style: none;
	}

	.marble-mega-menu__groups {
		display: grid;
		align-items: start;
		gap: 2rem 1.2rem;
		padding-bottom: 2rem;
	}

	.marble-menu-item--architectural .marble-mega-menu__groups {
		grid-template-columns: repeat(2, minmax(10rem, 1fr));
	}

	.marble-menu-item--indoor .marble-mega-menu__groups,
	.marble-menu-item--outdoor .marble-mega-menu__groups,
	.marble-menu-item--instock .marble-mega-menu__groups {
		grid-template-columns: repeat(3, minmax(8.5rem, 1fr));
	}

	.marble-mega-menu__group,
	.marble-mega-menu__sublinks li {
		margin: 0;
		padding: 0;
	}

	.marble-header .marble-mega-menu a {
		color: #111;
		opacity: 1;
	}

	.marble-mega-menu__title {
		display: inline-flex !important;
		margin-bottom: 1rem;
		padding: 0 !important;
		font-family: Poppins, Arial, sans-serif;
		font-size: 0.875rem;
		font-weight: 600;
		line-height: 1.25;
		letter-spacing: 0.02em;
		text-transform: none;
	}

	.marble-mega-menu__sublinks a {
		position: relative;
		display: inline-flex !important;
		padding: 0 !important;
		font-family: Poppins, Arial, sans-serif;
		font-size: 0.875rem;
		font-weight: 400;
		line-height: 2.25;
		letter-spacing: -0.04em;
		white-space: normal !important;
	}

	.marble-mega-menu__sublinks a::after {
		content: "";
		position: absolute;
		right: 0;
		bottom: 0.42rem;
		left: 0;
		height: 1px;
		background: currentColor;
		transform: scaleX(0);
		transform-origin: right center;
		transition: transform 300ms cubic-bezier(.85, 0, .28, 1);
	}

	.marble-mega-menu__sublinks a:hover::after,
	.marble-mega-menu__sublinks a:focus-visible::after {
		transform: scaleX(1);
		transform-origin: left center;
	}

	.marble-mega-menu__cards {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 0.75rem;
		align-self: start;
	}

	.marble-mega-menu__cards--5 {
		grid-template-columns: repeat(5, minmax(0, 1fr));
	}

	.marble-mega-menu__card {
		position: relative;
		display: block !important;
		aspect-ratio: 9 / 16;
		padding: 0 !important;
		overflow: hidden;
		background: #ececea;
	}

	.marble-mega-menu__card::after {
		content: "";
		position: absolute;
		inset: 0;
		background: rgba(0, 0, 0, 0.08);
		opacity: 0;
		transition: opacity 280ms ease;
	}

	.marble-mega-menu__card img {
		display: block;
		width: 100%;
		height: 100%;
		object-fit: cover;
		transform: scale(1.001);
		transition: transform 600ms cubic-bezier(.22, .61, .36, 1);
	}

	.marble-mega-menu__card:hover img,
	.marble-mega-menu__card:focus-visible img {
		transform: scale(1.035);
	}

	.marble-mega-menu__card:hover::after,
	.marble-mega-menu__card:focus-visible::after {
		opacity: 1;
	}
}

@media (min-width: 861px) and (max-width: 1080px) {
	.marble-mega-menu__inner {
		grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.72fr);
		gap: 1.5rem;
	}

	.marble-menu-item--indoor .marble-mega-menu__groups,
	.marble-menu-item--outdoor .marble-mega-menu__groups,
	.marble-menu-item--instock .marble-mega-menu__groups {
		grid-template-columns: repeat(2, minmax(8rem, 1fr));
	}
}

/* Final desktop mega-menu alignment: match Marblebee's compact header and 50/50 menu layout. */
@media (min-width: 861px) {
	.marble-header {
		--header-gutter: 2rem;
	}

	.marble-header__nav {
		min-height: 3.6rem;
	}

	.marble-header__menu .sub-menu.marble-mega-menu {
		max-height: calc(100vh - 3.6rem);
	}

	.marble-mega-menu__inner {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		gap: 0.75rem;
		padding: 2rem var(--header-gutter);
	}

	.marble-menu-item--instock .marble-mega-menu__groups {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 1.4rem;
		padding-bottom: 0;
	}

	.marble-menu-item--instock .marble-mega-menu__group {
		width: 100%;
	}

	.marble-menu-item--instock .marble-mega-menu__title {
		margin: 0;
		font-size: 1rem;
		font-weight: 400;
		line-height: 1.25;
		letter-spacing: -0.04em;
	}

	.marble-menu-item--instock .marble-mega-menu__cards {
		gap: 0.75rem;
	}
}

@media (min-width: 861px) and (max-width: 1080px) {
	.marble-mega-menu__inner {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		gap: 0.75rem;
	}

	.marble-menu-item--instock .marble-mega-menu__groups {
		display: flex;
	}
}

/* Article detail page ? based on the shared Marblebee article layout. */
body.single-post {
	color: #111;
	font-family: Poppins, Arial, Helvetica, sans-serif;
}

body.single-post .marble-header {
	position: relative;
	top: auto;
	background: #fff;
	color: #111;
}

body.single-post .marble-header__utility {
	background: #66716e;
	color: #fff;
}

body.single-post .marble-header__nav-wrap {
	border-bottom-color: #e4e6e5;
	background: #fff;
}

body.single-post .marble-header__mobile-panel {
	background: rgba(66, 75, 72, 0.98);
	color: #fff;
}

body.single-post .site-main.article-detail-page {
	width: 100%;
	max-width: none;
	min-height: 60vh;
	margin: 0;
	padding: 0 0 clamp(4rem, 7vw, 6rem);
}

.article-detail {
	--article-wide: 60rem;
	--article-narrow: 42.25rem;
	--article-reading: 37.75rem;
	font-size: 0.875rem;
	line-height: 1.6;
}

.article-detail__breadcrumbs {
	width: min(100%, 74.5rem);
	margin-inline: auto;
	padding: 2.25rem 2.25rem 4rem;
	font-size: 0.625rem;
	font-weight: 500;
	line-height: 1.25;
	letter-spacing: 0.045em;
}

.article-detail__breadcrumbs ol {
	display: flex;
	align-items: center;
	gap: 0.72rem;
	margin: 0;
	padding: 0;
	list-style: none;
	white-space: nowrap;
}

.article-detail__breadcrumbs li:last-child {
	overflow: hidden;
	text-overflow: ellipsis;
}

.article-detail__breadcrumbs a {
	color: #65706e;
	text-decoration: underline;
	text-underline-offset: 0.22em;
}

.article-detail__head {
	width: min(100%, var(--article-narrow));
	margin-inline: auto;
	padding: 0 2.25rem 4rem;
	text-align: center;
}

.article-detail__title {
	margin: 0 0 1.5rem;
	font-size: clamp(2.75rem, 4.82vw, 3.8125rem);
	font-weight: 400;
	line-height: 1;
	letter-spacing: -0.04em;
}

.article-detail__meta {
	margin: 0;
	color: #65706e;
	font-size: 0.875rem;
	line-height: 1.25;
}

.article-detail__hero {
	width: min(calc(100% - 3rem), var(--article-wide));
	aspect-ratio: 16 / 9;
	margin: 0 auto 1.25rem;
	overflow: hidden;
	background: #eceeec;
}

.article-detail__hero img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.article-detail__body-shell {
	position: relative;
	width: min(100%, 74.5rem);
	margin-inline: auto;
}

.article-detail__content,
.article-detail__comments-wrap {
	width: min(100%, var(--article-narrow));
	margin-inline: auto;
	padding-inline: 2.25rem;
}

.article-detail__content {
	padding-top: 1.75rem;
	padding-bottom: 3rem;
}

.article-detail__content > *:first-child {
	margin-top: 0;
}

.article-detail__content p {
	margin: 0 0 3rem;
}

.article-detail__content h2,
.article-detail__content h3,
.article-detail__content h4 {
	font-weight: 400;
	letter-spacing: -0.04em;
}

.article-detail__content h2 {
	margin: 3.5rem 0 0.75rem;
	font-size: clamp(1.85rem, 3vw, 1.96875rem);
	line-height: 1;
}

.article-detail__content h3 {
	margin: 2.75rem 0 0.75rem;
	font-size: 1.45rem;
	line-height: 1.15;
}

.article-detail__content h4 {
	margin: 2.25rem 0 0.65rem;
	font-size: 1.15rem;
	line-height: 1.25;
}

.article-detail__content h2 + p,
.article-detail__content h3 + p,
.article-detail__content h4 + p {
	margin-top: 0;
}

.article-detail__content figure,
.article-detail__content .wp-block-image,
.article-detail__content .wp-block-gallery {
	margin-block: 0 3rem;
}

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

.article-detail__content figcaption {
	margin-top: 0.65rem;
	color: #65706e;
	font-size: 0.75rem;
	line-height: 1.5;
	text-align: center;
}

.article-detail__content ul,
.article-detail__content ol {
	margin: 0 0 3rem;
	padding-left: 1.35rem;
}

.article-detail__content li + li {
	margin-top: 0.55rem;
}

.article-detail__content blockquote {
	margin: 0 0 3rem;
	padding: 0.2rem 0 0.2rem 1.4rem;
	border-left: 1px solid #65706e;
	font-size: 1.1rem;
}

.article-detail__content a {
	color: inherit;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

.article-detail__content .alignwide,
.article-detail__content .alignfull {
	width: 100%;
	max-width: 100%;
	margin-left: 0;
	transform: none;
}

.article-detail__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin: 0 0 2.25rem;
}

.article-detail__tags a {
	padding: 0.35rem 0.65rem;
	border: 1px solid #d9dddb;
	font-size: 0.7rem;
	letter-spacing: 0.04em;
	text-decoration: none;
	text-transform: uppercase;
}

.article-detail__back {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	margin-top: 0.5rem;
	color: #111;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.07em;
	text-decoration: none;
	text-transform: uppercase;
}

.article-detail__back span {
	font-size: 1rem;
	transition: transform 180ms ease;
}

.article-detail__back:hover span,
.article-detail__back:focus-visible span {
	transform: translateX(-0.2rem);
}

.article-detail__share {
	position: absolute;
	top: 1.75rem;
	right: 3rem;
}

.article-detail__share ul {
	display: grid;
	gap: 0.65rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.article-detail__share a {
	display: grid;
	place-items: center;
	width: 2rem;
	height: 2rem;
	border: 1px solid #cbd0ce;
	border-radius: 50%;
	color: #65706e;
	font-size: 0.72rem;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	transition: border-color 180ms ease, color 180ms ease, background-color 180ms ease;
}

.article-detail__share a:hover,
.article-detail__share a:focus-visible {
	border-color: #111;
	background: #111;
	color: #fff;
}

.article-detail__comments-wrap {
	padding-top: 1rem;
}

.article-comments.comments-area {
	max-width: none;
	margin: 0;
	padding: 0;
	border: 0;
}

.article-comments .comments-title,
.article-comments .comment-reply-title {
	margin: 0 0 2rem;
	font-size: clamp(1.85rem, 3vw, 1.96875rem);
	font-weight: 400;
	line-height: 1;
	letter-spacing: -0.04em;
}

.article-comments .comment-list {
	margin: 0 0 3.5rem;
	padding: 0;
	list-style: none;
}

.article-comments .comment-list li {
	margin-top: 1.5rem;
}

.article-comments .comment-body {
	padding-bottom: 1.5rem;
	border-bottom: 1px solid #dfe2e1;
}

.article-comments .comment-form {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.article-comments .comment-form > * {
	margin: 0;
}

.article-comments .comment-reply-title,
.article-comments .logged-in-as,
.article-comments .comment-form-comment,
.article-comments .comment-form-cookies-consent,
.article-comments .article-comments__note,
.article-comments .form-submit {
	grid-column: 1 / -1;
}

.article-comments label {
	display: block;
	margin-bottom: 0.45rem;
	font-size: 0.75rem;
	font-weight: 500;
}

.article-comments input[type="text"],
.article-comments input[type="email"],
.article-comments input[type="url"],
.article-comments textarea {
	width: 100%;
	border: 1px solid #cbd0ce;
	border-radius: 0;
	background: #fff;
	color: #111;
	font: inherit;
}

.article-comments input[type="text"],
.article-comments input[type="email"],
.article-comments input[type="url"] {
	height: 3rem;
	padding: 0 0.85rem;
}

.article-comments textarea {
	min-height: 9rem;
	padding: 0.85rem;
	resize: vertical;
}

.article-comments input:focus,
.article-comments textarea:focus {
	outline: 1px solid #111;
	outline-offset: 1px;
}

.article-comments__note {
	color: #65706e;
	font-size: 0.75rem;
}

.article-comments__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.9rem;
	padding: 0.7rem 1.35rem;
	border: 1px solid #111;
	border-radius: 0;
	background: #111;
	color: #fff;
	font: inherit;
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	cursor: pointer;
}

.article-comments__submit:hover,
.article-comments__submit:focus-visible {
	background: #fff;
	color: #111;
}

@media (max-width: 920px) {
	.article-detail__share {
		position: static;
		width: min(100%, var(--article-narrow));
		margin: -1.5rem auto 0;
		padding: 0 2.25rem 2rem;
	}

	.article-detail__share ul {
		display: flex;
	}
}

@media (max-width: 640px) {
	.article-detail__breadcrumbs {
		padding: 1.5rem 1.25rem 3rem;
		overflow: hidden;
	}

	.article-detail__head {
		padding: 0 1.25rem 3rem;
	}

	.article-detail__title {
		font-size: clamp(2.35rem, 12vw, 3.2rem);
	}

	.article-detail__hero {
		width: calc(100% - 2rem);
	}

	.article-detail__content,
	.article-detail__comments-wrap,
	.article-detail__share {
		padding-inline: 1.25rem;
	}

	.article-detail__content p,
	.article-detail__content figure,
	.article-detail__content .wp-block-image,
	.article-detail__content .wp-block-gallery,
	.article-detail__content ul,
	.article-detail__content ol,
	.article-detail__content blockquote {
		margin-bottom: 2rem;
	}

	.article-comments .comment-form {
		grid-template-columns: 1fr;
	}

	.article-comments .comment-form > * {
		grid-column: 1;
	}
}


/* Product detail page — Marblebee reference layout */
.product-detail-page {
	background: #fff;
	color: #111;
	font-family: Poppins, Arial, sans-serif;
}
.product-detail-page .marble-header {
	position: sticky;
	top: 0;
	z-index: 150;
	background: #fff;
	color: #111;
}
.product-detail-page.admin-bar .marble-header { top: 32px; }
.product-detail-page .marble-header__utility { background: #65706e; color: #fff; }
.product-detail-page .marble-header__nav-wrap { background: #fff; border-bottom-color: #e6e6e6; }
.product-detail-page .marble-header__nav { min-height: 65px; }
.product-detail-page .marble-header__brand { font-size: 18px; }
.product-page { width: 100%; overflow: clip; background: #fff; }
.product-page button,
.product-page input,
.product-page textarea { font: inherit; }
.product-hero {
	display: grid;
	grid-template-columns: minmax(0, 58.5%) minmax(360px, 41.5%);
	gap: 0;
	padding: 32px 36px 48px;
}
.product-gallery {
	display: grid;
	grid-template-columns: 114px minmax(0, 1fr);
	gap: 16px;
	min-width: 0;
	padding-right: 32px;
}
.product-gallery__thumbs {
	display: flex;
	max-height: calc(100vh - 180px);
	flex-direction: column;
	gap: 16px;
	overflow-y: auto;
	scrollbar-width: none;
}
.product-gallery__thumbs::-webkit-scrollbar { display: none; }
.product-gallery__thumb {
	position: relative;
	width: 100%;
	aspect-ratio: 115 / 77;
	flex: 0 0 auto;
	padding: 0;
	overflow: hidden;
	border: 1px solid transparent;
	background: #f4f4f2;
	cursor: pointer;
	opacity: .92;
	transition: border-color 180ms ease, box-shadow 180ms ease, opacity 180ms ease, transform 180ms ease;
}
.product-gallery__thumb:hover { opacity: .78; }
.product-gallery__thumb.is-active {
	border-color: #111;
	box-shadow: inset 0 0 0 1px #111;
	opacity: 1;
	transform: scale(.985);
}
.product-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-gallery__stage {
	position: relative;
	min-width: 0;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: #f2f2ef;
}
.product-gallery__stage > img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 1;
	transform: scale(1);
	transition: opacity 220ms ease, transform 520ms cubic-bezier(.22, 1, .36, 1);
	will-change: opacity, transform;
}
.product-gallery__stage > img.is-leaving {
	opacity: 0;
	transform: scale(.992);
}
.product-gallery__stage > img.is-entering {
	opacity: 0;
	transform: scale(1.012);
}
@media (prefers-reduced-motion: reduce) {
	.product-gallery__thumb,
	.product-gallery__stage > img { transition: none; }
}
.product-gallery__zoom {
	position: absolute;
	right: 16px;
	bottom: 16px;
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	border: 0;
	border-radius: 50%;
	background: rgba(255,255,255,.9);
	cursor: pointer;
}
.product-gallery__zoom svg { width: 19px; fill: none; stroke: #111; stroke-width: 1.4; }
.product-summary { min-width: 0; padding: 10px 0 0 0; }
.product-summary > h1 {
	max-width: 600px;
	margin: 0 0 14px;
	font-size: clamp(20px, 1.55vw, 28px);
	font-weight: 600;
	line-height: 1.25;
	letter-spacing: -.035em;
}
.product-summary__price { margin: 0 0 25px; font-size: 14px; line-height: 1.5; }
.product-summary__intro { max-width: 640px; font-size: 14px; line-height: 1.55; }
.product-summary__intro h2 { margin: 0 0 2px; font-size: 14px; font-weight: 600; line-height: 1.55; }
.product-summary__intro p { margin: 0 0 2px; }
.product-summary__extra { display: none; padding-top: 12px; }
.product-summary__intro.is-expanded .product-summary__extra { display: block; }
.product-summary__read-more {
	margin: 20px 0 0;
	padding: 0 0 6px;
	border: 0;
	border-bottom: 1px solid #111;
	background: transparent;
	color: #111;
	font-size: 11px;
	letter-spacing: .08em;
	text-transform: uppercase;
	cursor: pointer;
}
.product-purchase { display: grid; grid-template-columns: 160px 1fr; gap: 12px; margin-top: 55px; }
.product-quantity {
	display: grid;
	grid-template-columns: 44px 1fr 44px;
	height: 48px;
	overflow: hidden;
	border: 1px solid #e8e8e5;
	border-radius: 28px;
}
.product-quantity button,
.product-quantity input { min-width: 0; border: 0; background: #fff; text-align: center; }
.product-quantity button { cursor: pointer; }
.product-quantity input { width: 100%; appearance: textfield; }
.product-quantity input::-webkit-inner-spin-button { appearance: none; }
.product-button {
	min-height: 48px;
	padding: 0 28px;
	border: 1px solid #111;
	border-radius: 28px;
	background: #717d7a;
	color: #fff;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .08em;
	cursor: pointer;
	transition: background .2s ease, color .2s ease;
}
.product-button:hover,
.product-button:focus-visible { background: #111; }
.product-expert-contact {
	margin-top: 47px;
	padding: 28px;
	border: 1px solid #e1e5df;
	border-radius: 16px;
	background: #f4f6f2;
}
.product-expert-contact__eyebrow {
	margin: 0 0 12px;
	color: #60706a;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
}
.product-expert-contact h2 {
	max-width: 430px;
	margin: 0;
	font-size: clamp(18px, 1.35vw, 22px);
	font-weight: 500;
	line-height: 1.28;
	letter-spacing: -.025em;
}
.product-expert-contact__intro {
	max-width: 500px;
	margin: 14px 0 0;
	color: #55605d;
	font-size: 12px;
	line-height: 1.65;
}
.product-expert-contact__services {
	display: grid;
	gap: 8px;
	margin: 20px 0 22px;
	padding: 0;
	list-style: none;
}
.product-expert-contact__services li {
	display: flex;
	gap: 9px;
	align-items: center;
	color: #29332f;
	font-size: 11px;
	line-height: 1.4;
}
.product-expert-contact__services li span {
	display: inline-grid;
	width: 18px;
	height: 18px;
	flex: 0 0 auto;
	place-items: center;
	border-radius: 50%;
	background: #dfe9e1;
	color: #1d6947;
	font-size: 10px;
	font-weight: 700;
}
.product-expert-contact__services li span svg { width: 11px; height: 11px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.product-whatsapp-button {
	display: grid;
	grid-template-columns: 42px 1fr auto;
	gap: 13px;
	align-items: center;
	min-height: 68px;
	padding: 10px 16px 10px 12px;
	border-radius: 12px;
	background: #1f7a53;
	color: #fff;
	text-decoration: none;
	box-shadow: 0 8px 24px rgba(24, 88, 60, .14);
	transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}
.product-whatsapp-button:hover,
.product-whatsapp-button:focus-visible {
	background: #176442;
	box-shadow: 0 12px 28px rgba(24, 88, 60, .2);
	transform: translateY(-1px);
}
.product-whatsapp-button__icon {
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	border-radius: 50%;
	background: rgba(255,255,255,.15);
}
.product-whatsapp-button__icon svg { width: 25px; height: 25px; fill: currentColor; }
.product-whatsapp-button__copy { display: flex; min-width: 0; flex-direction: column; gap: 3px; }
.product-whatsapp-button__copy small { color: rgba(255,255,255,.72); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.product-whatsapp-button__copy strong { font-size: 13px; font-weight: 600; letter-spacing: .01em; }
.product-whatsapp-button__arrow { display: grid; width: 24px; height: 24px; place-items: center; }
.product-whatsapp-button__arrow svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.product-expert-contact__meta {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 8px 16px;
	margin-top: 14px;
	color: #6d7773;
	font-size: 9px;
	line-height: 1.5;
}
.product-expert-contact__meta a { color: #38433f; text-underline-offset: 3px; }
.product-sticky-buy {
	position: sticky;
	top: 111px;
	z-index: 120;
	display: none;
	grid-template-columns: 44px 1fr auto;
	gap: 14px;
	align-items: center;
	min-height: 80px;
	padding: 10px 36px;
	border-top: 1px solid #e8e8e5;
	border-bottom: 1px solid #e8e8e5;
	background: rgba(255,255,255,.97);
}
.product-sticky-buy.is-visible { display: grid; }
.product-sticky-buy img { width: 44px; height: 44px; object-fit: cover; }
.product-sticky-buy div { display: flex; flex-direction: column; gap: 3px; font-size: 12px; }
.product-sticky-buy strong { font-size: 13px; }
.product-sticky-buy .product-button { min-width: 118px; background: #111; }
.product-more-info { padding: 70px 36px 54px; border-top: 1px solid #eee; }
.product-more-info > h2,
.product-related__head > h2 {
	margin: 0 0 52px;
	font-size: clamp(30px, 3.1vw, 48px);
	font-weight: 400;
	line-height: 1.05;
	letter-spacing: -.04em;
}
.product-more-info details { border-bottom: 1px solid #e7e7e4; }
.product-more-info details:first-of-type { border-top: 1px solid #e7e7e4; }
.product-more-info summary {
	position: relative;
	padding: 30px 40px 30px 0;
	list-style: none;
	font-size: 15px;
	cursor: pointer;
}
.product-more-info summary::-webkit-details-marker { display: none; }
.product-more-info summary::after { content: '+'; position: absolute; right: 6px; top: 27px; font-size: 22px; font-weight: 300; }
.product-more-info details[open] summary::after { content: '−'; }
.product-more-info__content { max-width: 100%; padding: 5px 0 36px; color: #555; font-size: 14px; line-height: 1.75; }
.product-more-info__content h3 { margin: 28px 0 10px; color: #111; font-size: 14px; }
.product-more-info__content h3:first-child { margin-top: 0; }
.product-more-info__content p { max-width: 1360px; margin: 0 0 16px; }
.product-related { padding: 90px 36px 110px; }
.product-related__head { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.product-related__head > h2 { margin-bottom: 44px; }
.product-related__head > div { display: flex; align-items: center; gap: 20px; margin-bottom: 44px; }
.product-related__head a {
	padding: 13px 25px;
	border-radius: 25px;
	background: #e8eae9;
	color: #111;
	font-size: 11px;
	text-decoration: none;
}
.product-related__head button { padding: 0; border: 0; background: none; font-size: 20px; cursor: pointer; }
.product-related__track {
	display: grid;
	grid-auto-columns: calc((100% - 36px) / 4);
	grid-auto-flow: column;
	gap: 12px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}
.product-related__track::-webkit-scrollbar { display: none; }
.product-related-card { min-width: 0; scroll-snap-align: start; }
.product-related-card__media { position: relative; display: block; aspect-ratio: 1 / 1; overflow: hidden; background: #f2f2ef; }
.product-related-card__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: opacity .35s ease, transform .45s ease; }
.product-related-card__hover { opacity: 0; }
.product-related-card__media span {
	position: absolute;
	left: 50%;
	bottom: 18px;
	z-index: 3;
	min-width: 120px;
	padding: 12px 18px;
	border-radius: 24px;
	background: #fff;
	color: #111;
	font-size: 11px;
	text-align: center;
	transform: translate(-50%, 20px);
	opacity: 0;
	transition: .3s ease;
}
.product-related-card__media:hover .product-related-card__hover { opacity: 1; }
.product-related-card__media:hover img { transform: scale(1.015); }
.product-related-card__media:hover span { transform: translate(-50%,0); opacity: 1; }
.product-related-card h3 { min-height: 38px; margin: 16px 0 8px; font-size: 12px; font-weight: 500; line-height: 1.55; text-transform: uppercase; }
.product-related-card h3 a { color: #111; text-decoration: none; }
.product-related-card p { margin: 0; font-size: 12px; }
.product-related-card__label { margin-bottom: 3px !important; color: #777; font-size: 9px !important; letter-spacing: .08em; text-transform: uppercase; }
.product-toast {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 300;
	padding: 14px 20px;
	border-radius: 8px;
	background: #111;
	color: #fff;
	font-size: 12px;
	transform: translateY(30px);
	opacity: 0;
	pointer-events: none;
	transition: .25s ease;
}
.product-toast.is-visible { transform: translateY(0); opacity: 1; }
.product-lightbox {
	position: fixed;
	inset: 0;
	z-index: 500;
	display: grid;
	place-items: center;
	padding: 50px;
	background: rgba(0,0,0,.92);
}
.product-lightbox[hidden] { display: none; }
.product-lightbox img { max-width: min(1100px, 90vw); max-height: 88vh; object-fit: contain; }
.product-lightbox button { position: absolute; top: 18px; right: 24px; border: 0; background: none; color: #fff; font-size: 38px; cursor: pointer; }
.product-lightbox-open { overflow: hidden; }
.product-footer .home-footer__socials a { border: 1px solid rgba(255,255,255,.5); border-radius: 50%; font-size: 12px; text-decoration: none; }
.product-footer .home-footer__payments span { display: inline-grid; min-width: 36px; height: 24px; place-items: center; padding: 0 5px; border-radius: 3px; background: #fff; color: #27302e; font-size: 8px; font-weight: 700; }

@media (max-width: 1180px) {
	.product-hero { grid-template-columns: minmax(0, 56%) minmax(340px, 44%); padding-inline: 24px; }
	.product-gallery { grid-template-columns: 90px minmax(0,1fr); gap: 12px; padding-right: 24px; }
	.product-gallery__thumbs { gap: 12px; }
	.product-purchase { margin-top: 36px; }
	.product-expert-contact { margin-top: 36px; }
}
@media (max-width: 900px) {
	.product-detail-page.admin-bar .marble-header { top: 46px; }
	.product-hero { grid-template-columns: 1fr; padding: 20px 20px 48px; }
	.product-gallery { grid-template-columns: 1fr; padding: 0; }
	.product-gallery__stage { grid-row: 1; }
	.product-gallery__thumbs { grid-row: 2; flex-direction: row; max-height: none; overflow-x: auto; }
	.product-gallery__thumb { width: 78px; }
	.product-summary { padding-top: 36px; }
	.product-sticky-buy { top: 111px; padding-inline: 20px; }
	.product-more-info,
	.product-related { padding-inline: 20px; }
	.product-related__track { grid-auto-columns: calc((100% - 12px) / 2); }
}
@media (max-width: 580px) {
	.product-detail-page .marble-header { position: relative; }
	.product-hero { padding: 12px 12px 42px; }
	.product-gallery__thumb { width: 64px; }
	.product-summary > h1 { font-size: 22px; }
	.product-purchase { grid-template-columns: 1fr; margin-top: 34px; }
	.product-expert-contact { padding: 22px; }
	.product-whatsapp-button { grid-template-columns: 40px 1fr auto; }
	.product-sticky-buy { position: fixed; top: auto; right: 0; bottom: 0; left: 0; grid-template-columns: 36px 1fr auto; min-height: 68px; padding: 8px 12px; }
	.product-sticky-buy img { width: 36px; height: 36px; }
	.product-sticky-buy div { overflow: hidden; }
	.product-sticky-buy strong { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
	.product-sticky-buy .product-button { min-width: 98px; padding-inline: 16px; }
	.product-more-info { padding-top: 54px; }
	.product-more-info > h2,
	.product-related__head > h2 { font-size: 32px; }
	.product-related { padding-top: 62px; padding-bottom: 80px; }
	.product-related__head { align-items: flex-end; }
	.product-related__head > div { gap: 12px; }
	.product-related__head button { display: none; }
	.product-related__track { grid-auto-columns: 78%; }
}
body.product-detail-page .marble-header { position: sticky !important; top: 0; background: #fff; color: #111; }
body.product-detail-page.admin-bar .marble-header { top: 32px; }
body.product-detail-page .marble-header__utility,
body.product-detail-page .marble-header__utility-inner { min-height: 38px; }
body.product-detail-page .product-hero { grid-template-columns: minmax(0, 60.2%) minmax(360px, 39.8%); }
body.product-detail-page .product-summary__price { margin-bottom: 20px; }
body.product-detail-page .product-summary__read-more { margin-top: 16px; }
body.product-detail-page .product-purchase { margin-top: 55px; }
@media (max-width: 1180px) {
	body.product-detail-page .product-hero { grid-template-columns: minmax(0, 58%) minmax(340px, 42%); }
}
@media (max-width: 900px) {
	body.product-detail-page .product-hero { grid-template-columns: 1fr; }
}
body.product-detail-page .product-hero { grid-template-columns: minmax(0, 60.7%) minmax(360px, 39.3%); }
@media (max-width: 1180px) { body.product-detail-page .product-hero { grid-template-columns: minmax(0, 58%) minmax(340px, 42%); } }
@media (max-width: 900px) { body.product-detail-page .product-hero { grid-template-columns: 1fr; } }


/* Collection pages — reusable Marblebee reference layout */
.collection-page-body {
	background: #fff;
	color: #111;
	font-family: Poppins, Arial, sans-serif;
}
body.collection-page-body .marble-header {
	position: sticky !important;
	top: 0;
	z-index: 150;
	background: #fff;
	color: #111;
}
body.collection-page-body.admin-bar .marble-header { top: 32px; }
body.collection-page-body .marble-header__utility { background: #65706e; color: #fff; }
body.collection-page-body .marble-header__utility,
body.collection-page-body .marble-header__utility-inner { min-height: 38px; }
body.collection-page-body .marble-header__nav-wrap { background: #fff; border-bottom-color: #e6e6e6; }
body.collection-page-body .marble-header__nav { min-height: 65px; }
body.collection-page-body .marble-header__brand { font-size: 18px; }
.collection-page { width: 100%; overflow: clip; background: #fff; }
.collection-page button,
.collection-page input,
.collection-page select { font: inherit; }
.collection-shop { padding: 31px clamp(18px, 2.35vw, 36px) 0; }
.collection-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	min-height: 78px;
	margin-bottom: 22px;
	border-top: 1px solid #ececec;
}
.collection-toolbar__left { display: flex; align-items: center; min-width: 0; }
.collection-filter-button,
.collection-sort {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	height: 52px;
	border: 1px solid #e4e4e4;
	border-radius: 8px;
	background: #fff;
	color: #171717;
	font-size: 13px;
	line-height: 1;
}
.collection-filter-button {
	min-width: 110px;
	padding: 0 20px;
	cursor: pointer;
}
.collection-filter-button svg,
.collection-sort > svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.4; }
.collection-filter-button:hover,
.collection-filter-button:focus-visible,
.collection-sort:focus-within { border-color: #999; }
.collection-filter-button:focus-visible,
.collection-sort select:focus-visible { outline: 2px solid #111; outline-offset: 2px; }
.collection-count {
	display: grid;
	gap: 3px;
	min-width: 160px;
	margin-left: 25px;
	padding-left: 24px;
	border-left: 1px solid #e6e6e6;
	font-size: 12px;
	line-height: 1.35;
}
.collection-count span { color: #8a8a8a; }
.collection-count strong { font-size: 13px; font-weight: 400; color: #111; }
.collection-sort { position: relative; min-width: 150px; padding: 0 17px 0 0; }
.collection-sort select {
	width: 100%;
	height: 100%;
	padding: 0 38px 0 20px;
	border: 0;
	outline: 0;
	appearance: none;
	background: transparent;
	color: inherit;
	cursor: pointer;
}
.collection-sort > svg { position: absolute; right: 17px; pointer-events: none; }
.collection-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	column-gap: 12px;
	row-gap: 39px;
}
.collection-card { min-width: 0; }
.collection-card[hidden] { display: none !important; }
.collection-card__media {
	position: relative;
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: #f5f5f5;
	color: #fff;
}
.collection-card__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity 380ms ease, transform 700ms cubic-bezier(.22,.61,.36,1);
}
.collection-card__image.is-loaded { opacity: 1; }
.collection-card__image--hover { opacity: 0 !important; }
.collection-card:hover .collection-card__image--primary { opacity: 0; }
.collection-card:hover .collection-card__image--hover { opacity: 1 !important; transform: scale(1.015); }
.collection-card__quick-action {
	position: absolute;
	left: 12px;
	right: 12px;
	bottom: 12px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 44px;
	padding: 0 16px;
	background: rgba(17,17,17,.94);
	color: #fff;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
	opacity: 0;
	transform: translateY(8px);
	transition: opacity 220ms ease, transform 220ms ease;
}
.collection-card__quick-action svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.4; }
.collection-card:hover .collection-card__quick-action,
.collection-card__media:focus-visible .collection-card__quick-action { opacity: 1; transform: translateY(0); }
.collection-card__title { margin: 15px 0 0; font-size: 12px; font-weight: 650; line-height: 1.35; letter-spacing: .015em; text-transform: uppercase; }
.collection-card__title a { color: inherit; text-decoration: none; }
.collection-card__title a:hover { opacity: .62; }
.collection-card__price { margin: 6px 0 0; font-size: 12px; line-height: 1.4; color: #252525; }
.collection-card__placeholder {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	gap: 12px;
	padding: 24px;
	background: linear-gradient(135deg,#eceae5,#d8d4cb);
	color: #393733;
	font-size: 11px;
	letter-spacing: .08em;
	text-transform: uppercase;
}
.collection-card__placeholder span { font-size: 23px; letter-spacing: -.04em; text-transform: none; }
.collection-card--editorial {
	display: grid;
	place-items: end start;
	aspect-ratio: 1 / 1;
	padding: clamp(24px, 3vw, 44px);
	background: linear-gradient(145deg, rgba(19,22,21,.45), rgba(19,22,21,.88)), url('https://marblebee.com/cdn/shop/files/column4.jpg?v=1705996104&width=720') center/cover;
	color: #fff;
}
.collection-card--editorial p { margin: 0 0 8px; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.collection-card--editorial h2 { margin: 0 0 22px; font-size: clamp(27px, 2.6vw, 42px); font-weight: 400; line-height: 1.05; }
.collection-card--editorial a { display: inline-flex; gap: 12px; color: inherit; font-size: 11px; letter-spacing: .1em; text-decoration: none; text-transform: uppercase; }
.collection-empty { padding: 100px 20px 130px; text-align: center; }
.collection-empty h2 { margin: 0 0 8px; font-size: 30px; font-weight: 400; }
.collection-empty p { margin: 0 0 24px; color: #666; }
.collection-empty button { padding: 14px 24px; border: 1px solid #111; background: #111; color: #fff; cursor: pointer; }
.collection-story { padding: clamp(120px, 13vw, 205px) 20px clamp(145px, 14vw, 220px); text-align: center; }
.collection-breadcrumb { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 90px; font-size: 11px; color: #5f5f5f; }
.collection-breadcrumb a { color: inherit; text-underline-offset: 5px; }
.collection-story__intro { width: min(1090px, 100%); margin: 0 auto; }
.collection-story__intro h1 { margin: 0 0 25px; font-size: clamp(38px, 3.3vw, 53px); font-weight: 400; line-height: 1.06; letter-spacing: -.035em; }
.collection-story__intro p { margin: 0; font-size: 14px; line-height: 1.7; }
.collection-story--extended { padding-bottom: 130px; }
.collection-story--extended .collection-story__intro { width: min(1150px, 100%); }
.collection-story__content { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 55px; width: min(1180px, 100%); margin: 110px auto 0; padding-top: 75px; border-top: 1px solid #e4e4e4; text-align: left; }
.collection-story__content h2 { margin: 0 0 18px; font-size: 23px; font-weight: 400; line-height: 1.25; }
.collection-story__content p { margin: 0; color: #3d3d3d; font-size: 13px; line-height: 1.85; }
.collection-faq { width: min(980px, 100%); margin: 120px auto 0; text-align: left; }
.collection-faq > h2 { margin: 0 0 34px; font-size: clamp(30px, 3vw, 44px); font-weight: 400; text-align: center; }
.collection-faq__items { border-top: 1px solid #dcdcdc; }
.collection-faq details { border-bottom: 1px solid #dcdcdc; }
.collection-faq summary { position: relative; padding: 24px 52px 24px 0; cursor: pointer; list-style: none; font-size: 14px; font-weight: 500; }
.collection-faq summary::-webkit-details-marker { display: none; }
.collection-faq summary span,
.collection-faq summary span::after { position: absolute; top: 50%; right: 4px; width: 15px; height: 1px; background: #111; content: ''; transition: transform 180ms ease; }
.collection-faq summary span::after { top: 0; right: 0; transform: rotate(90deg); }
.collection-faq details[open] summary span::after { transform: rotate(0); }
.collection-faq details p { margin: -4px 0 26px; padding-right: 55px; color: #4d4d4d; font-size: 13px; line-height: 1.75; }
body.collection-filter-open { overflow: hidden; }
.collection-filter-drawer { position: fixed; inset: 0; z-index: 300; visibility: hidden; transition: visibility 360ms; }
.collection-filter-drawer.is-open { visibility: visible; }
.collection-filter-drawer__backdrop { position: absolute; inset: 0; background: rgba(20,22,21,.48); opacity: 0; transition: opacity 360ms ease; }
.collection-filter-drawer.is-open .collection-filter-drawer__backdrop { opacity: 1; }
.collection-filter-drawer__panel {
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	width: min(455px, 92vw);
	height: 100%;
	background: #fff;
	box-shadow: 16px 0 48px rgba(0,0,0,.13);
	transform: translateX(-102%);
	transition: transform 360ms cubic-bezier(.22,.61,.36,1);
}
.collection-filter-drawer.is-open .collection-filter-drawer__panel { transform: translateX(0); }
.collection-filter-drawer__panel:focus { outline: none; }
.collection-filter-drawer__panel > header { display: flex; align-items: center; justify-content: space-between; min-height: 86px; padding: 0 30px; border-bottom: 1px solid #e4e4e4; }
.collection-filter-drawer__panel > header h2 { margin: 0; font-size: 24px; font-weight: 400; }
.collection-filter-drawer__panel > header button { display: grid; place-items: center; width: 38px; height: 38px; padding: 0; border: 0; background: transparent; cursor: pointer; }
.collection-filter-drawer__panel > header svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.2; }
.collection-filter-drawer form { display: flex; flex-direction: column; min-height: 0; overflow-y: auto; }
.collection-filter-drawer fieldset { margin: 0; padding: 28px 30px; border: 0; border-bottom: 1px solid #e4e4e4; }
.collection-filter-drawer legend { width: 100%; margin-bottom: 18px; font-size: 14px; font-weight: 550; }
.collection-filter-drawer fieldset > label { display: grid; grid-template-columns: 20px 1fr auto; align-items: center; gap: 10px; margin: 13px 0; color: #3e3e3e; font-size: 13px; cursor: pointer; }
.collection-filter-drawer fieldset > label input { width: 16px; height: 16px; margin: 0; accent-color: #111; }
.collection-filter-drawer fieldset > label em { color: #888; font-style: normal; font-size: 11px; }
.collection-filter-drawer__price-note { margin: -4px 0 17px; color: #777; font-size: 11px; }
.collection-filter-drawer__price { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.collection-filter-drawer__price label { display: grid; gap: 8px; color: #666; font-size: 11px; }
.collection-price-input { position: relative; display: block; }
.collection-price-input i { position: absolute; top: 50%; left: 13px; transform: translateY(-50%); font-style: normal; font-size: 13px; }
.collection-price-input input { width: 100%; height: 46px; padding: 0 10px 0 28px; border: 1px solid #d9d9d9; border-radius: 0; }
.collection-filter-drawer__actions { position: sticky; bottom: 0; display: grid; grid-template-columns: 1fr 2fr; gap: 10px; margin-top: auto; padding: 20px 30px; background: #fff; border-top: 1px solid #e4e4e4; }
.collection-filter-drawer__actions button { min-height: 48px; cursor: pointer; }
.collection-filter-drawer__clear { border: 1px solid #cfcfcf; background: #fff; color: #111; }
.collection-filter-drawer__apply { border: 1px solid #111; background: #111; color: #fff; }
@media (max-width: 1050px) {
	.collection-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.collection-story__content { grid-template-columns: 1fr; gap: 42px; max-width: 760px; }
}
@media (max-width: 782px) {
	body.collection-page-body.admin-bar .marble-header { top: 46px; }
	.collection-shop { padding-top: 18px; }
	.collection-toolbar { min-height: 70px; margin-bottom: 14px; }
	.collection-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px 10px; }
	.collection-card__title { margin-top: 11px; font-size: 10px; }
	.collection-card__price { font-size: 11px; }
	.collection-card__quick-action { display: none; }
	.collection-story { padding-top: 100px; padding-bottom: 125px; }
	.collection-breadcrumb { margin-bottom: 60px; }
	.collection-story__intro p { font-size: 13px; }
	.collection-story__content { margin-top: 75px; padding-top: 55px; }
	.collection-faq { margin-top: 85px; }
}
@media (max-width: 580px) {
	body.collection-page-body .marble-header { position: relative !important; }
	.collection-shop { padding-inline: 12px; }
	.collection-toolbar { align-items: stretch; gap: 8px; }
	.collection-toolbar__left { flex: 1; }
	.collection-filter-button { min-width: 96px; height: 48px; padding-inline: 14px; }
	.collection-count { min-width: 0; margin-left: 10px; padding-left: 10px; }
	.collection-count span { display: none; }
	.collection-count strong { max-width: 72px; font-size: 10px; }
	.collection-sort { min-width: 48px; width: 48px; height: 48px; padding: 0; }
	.collection-sort select { position: absolute; inset: 0; width: 100%; padding: 0; opacity: 0; }
	.collection-sort > svg { right: 15px; width: 17px; height: 17px; }
	.collection-card--editorial { padding: 18px; }
	.collection-card--editorial h2 { font-size: 24px; }
	.collection-card--editorial p { display: none; }
	.collection-card--editorial a { font-size: 9px; }
	.collection-story { padding-inline: 18px; }
	.collection-story__intro h1 { font-size: 37px; }
	.collection-story__content h2 { font-size: 21px; }
	.collection-filter-drawer__panel { width: 100%; max-width: none; }
}
@media (prefers-reduced-motion: reduce) {
	.collection-card__image,
	.collection-card__quick-action,
	.collection-filter-drawer,
	.collection-filter-drawer__backdrop,
	.collection-filter-drawer__panel { transition: none !important; }
}
/* Final Marblebee-aligned mobile homepage */
.marble-header__inquiry { display: none !important; }

@media (max-width: 600px) {
	body.home.blog .marble-header {
		position: fixed;
		top: 0;
		z-index: 180;
		background: transparent;
		transition: color 220ms ease;
	}
	body.home.blog.admin-bar .marble-header { top: var(--lux-mobile-admin-offset, 0px); }
	body.home.blog .marble-header__utility {
		display: block;
		min-height: 42px;
		background: #65706e;
		backdrop-filter: none;
	}
	body.home.blog .marble-header__utility-inner {
		min-height: 42px;
		padding-inline: 16px;
	}
	body.home.blog .marble-header__email {
		gap: 5px;
		font-size: 9px;
		letter-spacing: .08em;
	}
	body.home.blog .marble-header__email svg { width: 12px; height: 12px; }
	body.home.blog .marble-header__nav-wrap {
		border-bottom-color: rgba(255,255,255,.22);
		background: linear-gradient(180deg,rgba(11,14,13,.44),rgba(11,14,13,.03));
		color: #fff;
		transition: background-color 220ms ease,color 220ms ease,border-color 220ms ease,box-shadow 220ms ease;
	}
	body.home.blog .marble-header__nav {
		position: relative;
		grid-template-columns: 44px minmax(0,1fr) 58px;
		min-height: 65px;
		padding-inline: 16px;
	}
	body.home.blog .marble-header__mobile-menu {
		grid-column: 1;
		grid-row: 1;
		justify-self: start;
	}
	body.home.blog .marble-header__mobile-menu summary {
		width: 22px;
		height: 30px;
		gap: 5px;
	}
	body.home.blog .marble-header__mobile-menu summary span { width: 22px; }
	body.home.blog .marble-header__brand-wrap {
		grid-column: 2;
		grid-row: 1;
		justify-self: center;
	}
	body.home.blog .marble-header__brand { font-size: 19px; }
	body.home.blog .marble-header__brand-wrap .custom-logo { max-width: 132px; max-height: 28px; }
	body.home.blog .marble-header__actions {
		grid-column: 3;
		grid-row: 1;
		display: flex;
		justify-self: end;
		gap: 13px;
	}
	body.home.blog .marble-header__actions .marble-header__country { display: none; }
	body.home.blog .marble-header__actions > a {
		display: inline-grid !important;
		width: 18px;
		height: 28px;
		place-items: center;
	}
	body.home.blog .marble-header__actions > a span { display: none; }
	body.home.blog .marble-header__actions svg { width: 18px; height: 18px; stroke-width: 1.45; }
	body.home.blog .marble-header__actions .marble-header__inquiry { display: inline-grid !important; }
	body.home.blog .marble-header__mobile-panel {
		top: 65px;
		padding: 18px 20px 24px;
		background: rgba(66,75,72,.98);
		color: #fff;
	}
	body.home.blog .marble-header.is-scrolled .marble-header__nav-wrap {
		border-bottom-color: #e8e8e8;
		background: #fff;
		box-shadow: 0 1px 8px rgba(0,0,0,.06);
		color: #111;
	}
	body.home.blog .marble-header.is-scrolled .marble-header__brand-wrap .custom-logo { filter: brightness(0); }
	body.home.blog .marble-header.is-scrolled .marble-header__mobile-panel {
		background: #fff;
		color: #111;
		box-shadow: 0 12px 22px rgba(0,0,0,.12);
	}
	body.home.blog .marble-header.is-scrolled .marble-header__mobile-panel a,
	body.home.blog .marble-header.is-scrolled .marble-header__mobile-panel button { border-bottom-color: #e8e8e8; }

	.marble-home { --home-gutter: 16px; }
	.home-product-feed {
		height: auto;
		min-height: 0;
		padding: 23px 16px 24px;
	}
	.home-section-head {
		align-items: center;
		margin-bottom: 20px;
	}
	.home-section-head h2,
	.home-collections > h2,
	.home-blog h2 {
		font-size: 27px;
		line-height: 1.05;
		letter-spacing: -.045em;
	}
	.home-section-actions {
		gap: 0;
		padding-right: 0;
		font-size: 10px;
		letter-spacing: .1em;
	}
	.home-section-actions > a { display: inline-block; }
	.home-section-actions button { display: none; }
	.home-product-track { gap: 12px; }
	.home-product-card { flex: 0 0 min(73.1vw,274px); }
	.home-product-card h3 {
		min-height: 0;
		margin-top: 11px;
		font-size: 10px;
	}
	.home-product-card__label { font-size: 8px; }
	.home-product-card__price { font-size: 11px; }
	.home-product-card__media > span { display: none; }

	.home-collections {
		min-height: 621px;
		padding: 32px 16px 28px;
		background: #fff;
		text-align: left;
	}
	.home-collections > h2 {
		padding-bottom: 30px;
		white-space: nowrap;
		text-align: center;
	}
	.home-collection-track {
		gap: 12px;
		margin-top: 24px;
	}
	.home-collection-card {
		flex: 0 0 min(69.6vw,261px);
		border-radius: 6px;
	}
	.home-collection-card img { aspect-ratio: 261 / 348; }
	.home-collection-card span {
		padding: 8px 2px 4px;
		font-size: 23px;
	}
	.home-collections .home-underlined-link {
		margin-top: 25px;
		font-size: 10px;
	}
	.home-track-float { display: none; }

	.home-puddingstone__product { padding: 32px 16px 18px; }
	.home-puddingstone__product > h2 { font-size: 32px; }
	.home-puddingstone__viewport,
	.home-puddingstone__controls { width: min(73.1vw,274px); }
	.home-puddingstone__stone { min-height: 410px; }

	.home-fountain-grid {
		padding: 6px 0;
		gap: 6px;
	}
	.home-fountain-grid > a {
		height: 570px;
		min-height: 0;
	}
	.home-bespoke__copy { min-height: 400px; }
	.home-bespoke__copy h2 { font-size: 34px; }
	.home-bespoke > img {
		height: 520px;
		min-height: 0;
	}

	.home-reviews {
		min-height: 804px;
		padding: 67px 16px 54px;
	}
	.home-reviews header h2 { font-size: 36px; }
	.home-review-carousel { margin-top: 18px; }
	.home-review-track { gap: 12px; padding: 0 0 16px; }
	.home-review-card {
		flex-basis: 235px;
		height: 545px;
		min-height: 0;
	}
	.home-review-card__media { flex-basis: 250px; height: 250px; }
	.home-review-arrow { display: none; }

	.home-blog {
		min-height: 701px;
		padding: 34px 16px 48px;
	}
	.home-blog-track { gap: 12px; }
	.home-blog-card { flex-basis: 310px; }
	.home-blog-card img { aspect-ratio: 310 / 232; }
	.home-blog .home-section-actions button { display: none; }
}
/* Accessible mobile menu drawer and accordions */
@media (max-width: 860px) {
	html.mobile-menu-open,
	html.mobile-menu-open body { overflow: hidden; }

	.marble-header__mobile-menu { z-index: 5; }
	.marble-header__mobile-menu > summary { position: relative; z-index: 7; }
	.marble-header__mobile-panel {
		z-index: 6;
		inset-inline: 0;
		top: 100%;
		display: block;
		width: 100%;
		max-height: calc(100dvh - var(--lux-mobile-admin-offset, 0px) - 100px);
		padding: 14px 20px 28px;
		overflow-x: hidden;
		overflow-y: auto;
		overscroll-behavior: contain;
		background: #fff;
		box-shadow: 0 16px 28px rgba(0,0,0,.14);
		color: #111;
	}
	body.home.blog .marble-header__mobile-panel {
		max-height: calc(100dvh - var(--lux-mobile-admin-offset, 0px) - 107px);
		background: #fff;
		color: #111;
	}
	.marble-header.has-open-menu .marble-header__nav-wrap {
		border-bottom-color: #e7e7e7 !important;
		background: #fff !important;
		box-shadow: 0 1px 8px rgba(0,0,0,.06);
		color: #111 !important;
	}
	.marble-header.has-open-menu .marble-header__brand-wrap .custom-logo { filter: brightness(0); }

	.marble-header__mobile-links,
	.marble-header__mobile-links ul {
		width: 100%;
		margin: 0;
		padding: 0;
		list-style: none;
	}
	.marble-header__mobile-links li {
		position: relative;
		border-bottom: 1px solid #e8e8e8;
	}
	.marble-header__mobile-links li:last-child { border-bottom: 0; }
	.marble-header__mobile-links a {
		display: block;
		min-height: 50px;
		padding: 17px 52px 15px 0;
		color: inherit;
		font-size: 12px;
		font-weight: 600;
		line-height: 18px;
		letter-spacing: .08em;
		text-transform: uppercase;
	}
	.marble-header__mobile-links .sub-menu {
		margin: 0 0 10px;
		padding: 0 0 2px 14px;
		border-left: 1px solid #dedede;
	}
	.marble-header__mobile-links .sub-menu[hidden] { display: none !important; }
	.marble-header__mobile-links .sub-menu li { border-bottom-color: #ededed; }
	.marble-header__mobile-links .sub-menu a {
		min-height: 42px;
		padding-top: 12px;
		padding-bottom: 12px;
		font-size: 11px;
		font-weight: 500;
		letter-spacing: .045em;
		text-transform: none;
	}
	.mobile-submenu-toggle {
		position: absolute;
		top: 0;
		right: 0;
		display: grid;
		width: 48px;
		height: 50px;
		padding: 0 !important;
		place-items: center;
		border: 0 !important;
		background: transparent !important;
		color: inherit;
		cursor: pointer;
	}
	.mobile-submenu-toggle::before,
	.mobile-submenu-toggle::after {
		content: "";
		position: absolute;
		width: 13px;
		height: 1px;
		background: currentColor;
		transition: transform 180ms ease, opacity 180ms ease;
	}
	.mobile-submenu-toggle::after { transform: rotate(90deg); }
	.mobile-submenu-toggle[aria-expanded="true"]::after { opacity: 0; transform: rotate(0); }
	.mobile-submenu-toggle[aria-expanded="true"]::before { transform: rotate(180deg); }

	.marble-header__mobile-actions {
		margin-top: 12px;
		border-top: 1px solid #e8e8e8;
	}
	.marble-header__mobile-actions a,
	.marble-header__mobile-actions button {
		border-bottom-color: #e8e8e8;
		color: inherit;
	}
}
/* Final full-screen Marblebee mobile navigation */
@media (max-width: 860px) {
	html.mobile-menu-open,
	html.mobile-menu-open body { overflow: hidden !important; }

	.marble-header__nav {
		position: relative;
		grid-template-columns: 44px minmax(0, 1fr) 72px;
		min-height: 65px;
		padding-inline: 18px;
	}
	.marble-header__mobile-menu {
		grid-column: 1;
		grid-row: 1;
		justify-self: start;
	}
	.marble-header__mobile-menu > summary {
		width: 20px;
		height: 30px;
		gap: 4px;
		color: inherit;
	}
	.marble-header__mobile-menu > summary span {
		width: 18px;
		height: 1.5px;
	}
	.marble-header__brand-wrap {
		grid-column: 2;
		grid-row: 1;
		justify-self: center;
	}
	.marble-header__brand { font-size: 17px; }
	.marble-header__brand-wrap .custom-logo {
		max-width: 125px;
		max-height: 27px;
	}
	.marble-header__actions {
		grid-column: 3;
		grid-row: 1;
		display: flex;
		align-items: center;
		justify-self: end;
		gap: 15px;
	}
	.marble-header__actions .marble-header__country { display: none; }
	.marble-header__actions > a {
		display: inline-grid !important;
		width: 18px;
		height: 30px;
		padding: 0;
		place-items: center;
	}
	.marble-header__actions > a span { display: none; }
	.marble-header__actions svg {
		width: 18px;
		height: 18px;
		stroke-width: 1.45;
	}
	.marble-header__actions .marble-header__inquiry { display: inline-grid !important; }

	.marble-header.has-open-menu {
		position: fixed !important;
		top: var(--lux-mobile-admin-offset, 0px) !important;
		left: 0;
		right: 0;
		z-index: 1000 !important;
		width: 100%;
		background: #fff !important;
		color: #111 !important;
	}
	.marble-header.has-open-menu .marble-header__utility { display: block !important; }
	.marble-header.has-open-menu .marble-header__nav-wrap {
		border-bottom: 1px solid #e3e3e3 !important;
		background: #fff !important;
		box-shadow: none !important;
		color: #111 !important;
	}
	.marble-header.has-open-menu .marble-header__brand-wrap .custom-logo { filter: brightness(0) !important; }
	.marble-header.has-open-menu .marble-header__mobile-menu > summary span { background: #111; }
	.marble-header__mobile-menu[open] > summary span:first-child {
		transform: translateY(5.5px) rotate(45deg);
	}
	.marble-header__mobile-menu[open] > summary span:nth-child(2) { opacity: 0; }
	.marble-header__mobile-menu[open] > summary span:last-child {
		transform: translateY(-5.5px) rotate(-45deg);
	}

	.marble-header.has-open-menu .marble-header__mobile-panel,
	body.home.blog .marble-header.has-open-menu .marble-header__mobile-panel {
		position: fixed !important;
		top: calc(var(--lux-mobile-admin-offset, 0px) + 104px) !important;
		right: 0 !important;
		bottom: 0 !important;
		left: 0 !important;
		display: flex !important;
		width: 100% !important;
		height: auto !important;
		max-height: none !important;
		padding: 0 16px 17px !important;
		flex-direction: column;
		overflow: hidden;
		background: #fff !important;
		box-shadow: none !important;
		color: #111 !important;
	}

	.marble-header__mobile-navigation {
		position: relative;
		min-height: 0;
		flex: 1 1 auto;
		overflow: hidden;
	}
	.marble-header__mobile-navigation .mobile-menu-level {
		position: absolute;
		inset: 0;
		z-index: 1;
		display: block;
		width: 100%;
		height: 100%;
		margin: 0 !important;
		padding: 6px 0 16px !important;
		overflow-x: hidden;
		overflow-y: auto;
		list-style: none;
		background: #fff;
		opacity: 0;
		pointer-events: none;
		transform: translateX(102%);
		transition: transform 260ms cubic-bezier(.25,.7,.25,1), opacity 180ms ease;
	}
	.marble-header__mobile-navigation .mobile-menu-level.is-active {
		z-index: 3;
		opacity: 1;
		pointer-events: auto;
		transform: translateX(0);
	}
	.marble-header__mobile-navigation .mobile-menu-level.is-behind {
		z-index: 2;
		opacity: 0;
		transform: translateX(-24%);
	}
	.marble-header__mobile-navigation .mobile-menu-level.is-ahead {
		opacity: 0;
		transform: translateX(102%);
	}
	.marble-header__mobile-navigation .mobile-menu-level[aria-hidden="true"] { visibility: visible; }
	.marble-header__mobile-links .sub-menu,
	.marble-header__mobile-navigation .sub-menu {
		margin: 0 !important;
		padding: 6px 0 16px !important;
		border: 0 !important;
	}
	.marble-header__mobile-navigation .mobile-menu-level > li {
		position: relative;
		margin: 0;
		border: 0;
		border-bottom: 1px solid #e2e2e2;
	}
	.marble-header__mobile-navigation .mobile-menu-level > li:last-child { border-bottom: 0; }
	.marble-header__mobile-navigation .mobile-menu-level > li > a {
		display: flex;
		min-height: 61px;
		align-items: center;
		padding: 16px 36px 15px 0;
		color: #111;
		font-size: 20px;
		font-weight: 400;
		line-height: 1.25;
		letter-spacing: -.025em;
		text-decoration: none;
		text-transform: none;
	}
	.marble-header__mobile-navigation .mobile-menu-level:not(.marble-header__mobile-links) > li > a {
		font-size: 20px;
		letter-spacing: -.025em;
	}
	.marble-header__mobile-navigation .mobile-submenu-toggle {
		position: absolute;
		top: 0;
		right: 0;
		display: grid;
		width: 36px;
		height: 61px;
		padding: 0 !important;
		place-items: center;
		border: 0 !important;
		background: transparent !important;
		color: #111;
		cursor: pointer;
	}
	.marble-header__mobile-navigation .mobile-submenu-toggle::before {
		content: "";
		position: absolute;
		width: 8px;
		height: 8px;
		border-top: 1.6px solid currentColor;
		border-right: 1.6px solid currentColor;
		background: transparent;
		transform: rotate(45deg);
	}
	.marble-header__mobile-navigation .mobile-submenu-toggle::after { display: none; }
	.marble-header__mobile-navigation .mobile-menu-back-item { border-bottom-color: #cfcfcf; }
	.marble-header__mobile-navigation .mobile-menu-back {
		position: relative;
		display: flex;
		width: 100%;
		min-height: 55px;
		align-items: center;
		padding: 15px 10px 14px 24px !important;
		border: 0 !important;
		background: transparent !important;
		color: #111;
		font: inherit;
		font-size: 12px;
		font-weight: 600;
		letter-spacing: .17em;
		text-transform: uppercase;
		text-align: left;
		cursor: pointer;
	}
	.marble-header__mobile-navigation .mobile-menu-back::before {
		content: "";
		position: absolute;
		left: 2px;
		width: 6px;
		height: 6px;
		border-bottom: 1.6px solid currentColor;
		border-left: 1.6px solid currentColor;
		transform: rotate(45deg);
	}
	.marble-header__mobile-navigation .mobile-menu-view-all > a {
		min-height: 52px;
		color: #666;
		font-size: 13px !important;
		font-weight: 500;
		letter-spacing: .03em !important;
		text-transform: uppercase;
	}

	.marble-header__mobile-footer {
		position: relative;
		min-height: 62px;
		padding: 11px 78px 0 0;
		flex: 0 0 62px;
		border-top: 1px solid #dedede;
		background: #fff;
	}
	.marble-header__mobile-meta {
		display: flex;
		align-items: center;
		gap: 25px;
	}
	.marble-header__mobile-meta a,
	.marble-header__mobile-meta button {
		display: inline-flex;
		width: auto;
		min-height: 22px;
		padding: 0 !important;
		border: 0 !important;
		background: transparent !important;
		color: #111;
		font: inherit;
		font-size: 14px;
		line-height: 22px;
		text-decoration: none;
		cursor: pointer;
	}
	.marble-header__mobile-socials {
		display: flex;
		align-items: center;
		gap: 20px;
		margin-top: 7px;
	}
	.marble-header__mobile-socials a {
		display: grid;
		width: 14px;
		height: 14px;
		padding: 0 !important;
		place-items: center;
		border: 0 !important;
		color: #111;
	}
	.marble-header__mobile-socials svg {
		width: 14px;
		height: 14px;
		fill: none;
		stroke: currentColor;
		stroke-width: 1.6;
	}
	.marble-header__mobile-socials svg path:not(.is-white),
	.marble-header__mobile-socials svg .is-filled { fill: currentColor; stroke: none; }
	.marble-header__mobile-socials svg .is-white { fill: #fff; stroke: none; }
	.marble-header__mobile-chat {
		position: absolute;
		right: 5px;
		bottom: 0;
		display: grid;
		width: 60px;
		height: 60px;
		padding: 0 !important;
		place-items: center;
		border: 0 !important;
		border-radius: 50%;
		background: #000;
		color: #fff;
		box-shadow: 0 3px 9px rgba(0,0,0,.14);
	}
	.marble-header__mobile-chat svg {
		width: 39px;
		height: 39px;
		fill: #fff;
		stroke: none;
	}
	.marble-header__mobile-chat svg circle { fill: #000; }
	.marble-header__mobile-chat > span {
		position: absolute;
		top: -5px;
		right: -5px;
		display: grid;
		width: 22px;
		height: 22px;
		place-items: center;
		border-radius: 50%;
		background: #ec2f4f;
		color: #fff;
		font-size: 12px;
		font-weight: 600;
	}
}

@media (prefers-reduced-motion: reduce) {
	.marble-header__mobile-navigation .mobile-menu-level { transition: none !important; }
}
/* Mobile menu visual refinements from the reference drawer */
@media (max-width: 860px) {
	.marble-header__mobile-menu > summary,
	.marble-header__mobile-menu > summary:focus,
	.marble-header__mobile-menu > summary:focus-visible,
	.marble-header__mobile-navigation .mobile-menu-back:focus,
	.marble-header__mobile-navigation .mobile-menu-back:focus-visible {
		border: 0 !important;
		outline: 0 !important;
		box-shadow: none !important;
	}
	.marble-header__brand,
	.marble-header__mobile-panel,
	.marble-header__mobile-panel a,
	.marble-header__mobile-panel button {
		letter-spacing: normal;
		text-transform: none;
	}
	.marble-header__brand { font-weight: 400; }
	.marble-header__mobile-meta a,
	.marble-header__mobile-meta button {
		font-weight: 400 !important;
		letter-spacing: 0 !important;
		text-transform: none !important;
	}
}

/* Final mobile drawer alignment with the reference storefront. */
@media (max-width: 860px) {
	/* The front-end editor bar changes every vertical measurement; keep the storefront preview clean. */
	html { margin-top: 0 !important; }
	#wpadminbar { display: none !important; }
	body.admin-bar .marble-header { top: 0 !important; }

	body.home.blog .marble-header__utility,
	.marble-header.has-open-menu .marble-header__utility {
		display: block !important;
		background: #65706e;
		color: #fff;
	}

	.marble-header__utility,
	.marble-header__utility-inner {
		min-height: 39px;
	}

	.marble-header .marble-header__brand {
		font-size: 17px;
	}

	.marble-header__mobile-panel.has-child-level .marble-header__mobile-footer {
		border-top-color: transparent;
	}
	.marble-header__mobile-panel.has-child-level .marble-header__mobile-meta,
	.marble-header__mobile-panel.has-child-level .marble-header__mobile-socials {
		visibility: hidden;
		pointer-events: none;
	}
}
