:root {
	--zl-gold: #C9A84C;
	--zl-black: #0D0D0D;
	--zl-cream: #F5F0E8;
	--zl-text: #1a1a1a;
	--zl-muted-gold: #9e7c3f;
	--zl-white: #fff;
	--zl-border: rgba(13, 13, 13, 0.12);
	--zl-shadow: 0 20px 60px rgba(13, 13, 13, 0.12);
	--zl-ease: cubic-bezier(0.22, 1, 0.36, 1);
	--zl-ease-soft: cubic-bezier(0.16, 1, 0.3, 1);
	--zl-ease-luxury: cubic-bezier(0.19, 1, 0.22, 1);
	--zl-heading-font: "Cormorant Garamond", serif;
	--zl-body-font: "Jost", sans-serif;
	--zl-logo-font: "Cinzel", serif;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--zl-text);
	background: linear-gradient(180deg, #fff 0%, #fbfaf7 48%, #fff 100%);
	font-family: var(--zl-body-font);
	font-size: 16px;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

body.drawer-open {
	overflow: hidden;
}

body.modal-open {
	overflow: hidden;
}

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

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

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

.screen-reader-text,
.skip-link {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link:focus {
	z-index: 10000;
	top: 12px;
	left: 12px;
	width: auto;
	height: auto;
	padding: 12px 18px;
	clip: auto;
	color: var(--zl-white);
	background: var(--zl-black);
}

.zl-container {
	width: min(1180px, calc(100% - 40px));
	margin: 0 auto;
}

.zl-site-main {
	min-height: 60vh;
	padding-top: 90px;
}

.zl-site-header {
	position: relative;
	z-index: 999;
	width: 100%;
	background: rgba(255, 255, 255, 0.98);
	border-bottom: 1px solid rgba(13, 13, 13, 0.05);
	box-shadow: 0 10px 28px rgba(13, 13, 13, 0.04);
	backdrop-filter: blur(14px);
	transition: background 520ms ease, box-shadow 720ms var(--zl-ease-luxury), border-color 520ms ease;
}

.zl-site-header.is-sticky {
	position: fixed;
	top: 0;
	left: 0;
}

.zl-site-header.is-scrolled {
	background: rgba(255, 255, 255, 0.93);
	border-color: rgba(13, 13, 13, 0.08);
	box-shadow: 0 18px 44px rgba(13, 13, 13, 0.08);
}

.zl-header-inner {
	display: grid;
	grid-template-columns: minmax(300px, 1fr) auto minmax(220px, 1fr);
	align-items: center;
	gap: 34px;
	width: min(1360px, calc(100% - 40px));
	min-height: 90px;
	margin: 0 auto;
	transition: min-height 720ms var(--zl-ease-luxury);
}

.zl-site-header.is-scrolled .zl-header-inner {
	min-height: 76px;
}

.zl-logo {
	display: inline-flex;
	align-items: center;
	color: var(--zl-black);
	font-family: var(--zl-logo-font);
	font-weight: 600;
	letter-spacing: 0;
	transition: color 420ms ease, transform 720ms var(--zl-ease-luxury);
}

.zl-logo:hover {
	color: var(--zl-muted-gold);
	transform: translateY(-1px);
}

.zl-brand-lockup {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	white-space: nowrap;
}

.zl-brand-emblem {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border: 2px solid var(--zl-gold);
	border-radius: 50%;
	color: var(--zl-gold);
	transition: box-shadow 620ms var(--zl-ease-luxury), transform 720ms var(--zl-ease-luxury);
}

.zl-brand-emblem-image {
	width: 46px;
	height: 46px;
	overflow: visible;
	border: 0;
	border-radius: 0;
}

.zl-brand-emblem-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.zl-brand-emblem span {
	width: 9px;
	height: 9px;
	border: 2px solid currentColor;
	transform: rotate(45deg);
}

.zl-logo:hover .zl-brand-emblem:not(.zl-brand-emblem-image) {
	box-shadow: 0 0 0 6px rgba(201, 168, 76, 0.1);
	transform: rotate(45deg) scale(1.04);
}

.zl-logo:hover .zl-brand-emblem-image {
	transform: translateY(-1px) scale(1.04);
}

.zl-brand-wordmark {
	display: inline-flex;
	align-items: baseline;
	gap: 10px;
}

.zl-logo-text {
	font-size: 25px;
	line-height: 1.1;
}

.zl-logo-subtext {
	color: var(--zl-gold);
	font-family: var(--zl-body-font);
	font-size: 8px;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
}

.zl-logo-image {
	display: block;
	width: auto;
	max-width: clamp(180px, 18vw, 245px);
	max-height: 58px;
	object-fit: contain;
}

.zl-primary-nav {
	justify-self: center;
}

.zl-menu,
.zl-mobile-menu {
	padding: 0;
	margin: 0;
	list-style: none;
}

.zl-menu {
	display: flex;
	align-items: center;
	gap: 42px;
}

.zl-menu a {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 90px;
	color: var(--zl-black);
	font-family: var(--zl-logo-font);
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0;
	text-transform: uppercase;
	transition: color 320ms ease, transform 520ms var(--zl-ease-luxury);
}

.zl-menu a::after {
	position: absolute;
	right: 0;
	bottom: 18px;
	left: 0;
	height: 1px;
	content: "";
	background: rgba(201, 168, 76, 0.22);
	transform: scaleX(1);
	transform-origin: left;
	transition: background 220ms ease, transform 220ms ease;
}

.zl-menu a:hover::after,
.zl-menu .current-menu-item > a::after,
.zl-menu .current_page_item > a::after {
	background: var(--zl-gold);
	transform: scaleX(1);
}

.zl-menu a:hover {
	color: var(--zl-muted-gold);
	transform: translateY(-1px);
}

.zl-header-actions {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 21px;
}

.zl-icon-button,
.zl-menu-toggle,
.zl-drawer-close,
.zl-slider-controls button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	padding: 0;
	border: 0;
	border-radius: 0;
	color: var(--zl-black);
	background: transparent;
	cursor: pointer;
	transition: color 200ms ease, border-color 200ms ease, background 200ms ease;
}

.zl-icon-button:hover,
.zl-menu-toggle:hover,
.zl-drawer-close:hover,
.zl-slider-controls button:hover {
	color: var(--zl-white);
	border-color: transparent;
	background: var(--zl-gold);
}

.zl-cart-link,
.zl-wishlist-link {
	position: relative;
}

.zl-cart-count,
.zl-wishlist-count {
	position: absolute;
	top: -8px;
	right: -7px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 16px;
	height: 16px;
	padding: 0 5px;
	border-radius: 99px;
	color: var(--zl-white);
	background: var(--zl-gold);
	font-size: 10px;
	font-weight: 700;
	line-height: 1;
}

.zl-wishlist-count.is-empty {
	opacity: 0;
}

.zl-menu-toggle {
	display: none;
}

.zl-menu-toggle-line,
.zl-menu-toggle-line::before,
.zl-menu-toggle-line::after {
	display: block;
	width: 23px;
	height: 2px;
	background: currentColor;
	transition: transform 220ms ease, opacity 220ms ease;
}

.zl-menu-toggle-line {
	position: relative;
}

.zl-menu-toggle-line::before,
.zl-menu-toggle-line::after {
	position: absolute;
	left: 0;
	content: "";
}

.zl-menu-toggle-line::before {
	top: -7px;
}

.zl-menu-toggle-line::after {
	top: 7px;
}

.zl-menu-toggle.is-active .zl-menu-toggle-line {
	background: transparent;
}

.zl-menu-toggle.is-active .zl-menu-toggle-line::before {
	transform: translateY(6px) rotate(45deg);
}

.zl-menu-toggle.is-active .zl-menu-toggle-line::after {
	transform: translateY(-6px) rotate(-45deg);
}

.zl-drawer-overlay {
	position: fixed;
	inset: 0;
	z-index: 1000;
	visibility: hidden;
	background: rgba(13, 13, 13, 0.58);
	opacity: 0;
	transition: opacity 220ms ease, visibility 220ms ease;
}

.zl-drawer-overlay.is-visible {
	visibility: visible;
	opacity: 1;
}

.zl-mobile-drawer {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 1001;
	width: min(380px, 88vw);
	height: 100vh;
	padding: 24px;
	background: var(--zl-white);
	box-shadow: -18px 0 45px rgba(0, 0, 0, 0.18);
	transform: translateX(100%);
	transition: transform 260ms ease;
}

.zl-mobile-drawer.is-open {
	transform: translateX(0);
}

.zl-mobile-drawer-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	margin-bottom: 34px;
}

.zl-mobile-menu {
	display: grid;
	gap: 6px;
}

.zl-mobile-menu a {
	display: block;
	padding: 14px 0;
	border-bottom: 1px solid rgba(13, 13, 13, 0.08);
	font-family: var(--zl-logo-font);
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
}

.zl-section {
	padding: 94px 0;
}

.zl-section-heading {
	display: grid;
	justify-items: center;
	gap: 12px;
	margin-bottom: 44px;
	text-align: center;
}

.zl-section-heading h2,
.zl-page-hero h1,
.zl-entry h1,
.zl-entry h2,
.zl-banner h2,
.zl-product-title,
.zl-single-product-summary .product_title {
	margin: 0;
	font-family: var(--zl-heading-font);
	font-weight: 600;
	line-height: 1.05;
}

.zl-section-heading h2 {
	font-size: clamp(38px, 5vw, 58px);
}

.zl-section-heading span {
	width: 76px;
	height: 2px;
	background: var(--zl-gold);
	transform-origin: center;
	transition: width 900ms var(--zl-ease-luxury), opacity 700ms ease;
}

.zl-section-heading.zl-motion-item span {
	width: 28px;
	opacity: 0.45;
}

.zl-section-heading.zl-motion-item.is-visible span {
	width: 76px;
	opacity: 1;
}

.zl-section-heading p {
	max-width: 560px;
	margin: 0;
	color: rgba(26, 26, 26, 0.66);
}

.zl-hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 100vh;
	padding: 122px 20px 96px;
	overflow: hidden;
	color: var(--zl-white);
	background:
		linear-gradient(135deg, #14110d 0%, #302614 45%, #090909 100%);
	background-position: center;
	background-size: cover;
}

.zl-hero::before {
	position: absolute;
	inset: 0;
	z-index: 1;
	content: "";
	background: var(--zl-hero-overlay, rgba(0, 0, 0, 0.45));
}

.zl-hero-video {
	position: absolute;
	inset: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.zl-hero-shade {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(45deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.52) 38%, rgba(0, 0, 0, 0.08) 72%),
		linear-gradient(0deg, rgba(0, 0, 0, 0.44) 0%, rgba(0, 0, 0, 0) 44%);
}

.zl-sparkle-canvas {
	position: absolute;
	inset: 0;
	z-index: 2;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.zl-hero-content {
	position: relative;
	z-index: 3;
	width: min(620px, calc(100% - 24px));
	margin-left: max(20px, calc((100vw - 1180px) / 2));
	opacity: var(--zl-hero-fade, 1);
	transform: translateY(calc(var(--zl-hero-shift, 0) - 34px));
	animation: zl-hero-copy-enter 1100ms var(--zl-ease-luxury) both;
	transition: opacity 220ms linear;
}

.zl-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin: 0 0 22px;
	color: rgba(255, 255, 255, 0.86);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.24em;
	text-transform: uppercase;
}

.zl-hero-badge span {
	width: 42px;
	height: 1px;
	background: var(--zl-gold);
}

.zl-hero h1 {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 10px;
	margin: 0;
	font-family: var(--zl-heading-font);
	font-size: clamp(32px, 5vw, 48px);
	font-weight: 600;
	line-height: 1.08;
}

.zl-hero h1 em {
	color: var(--zl-gold);
	font-style: italic;
	font-weight: 500;
}

.zl-hero-text {
	max-width: 610px;
	margin: 28px 0 36px;
	color: rgba(255, 255, 255, 0.86);
	font-size: clamp(17px, 2vw, 21px);
	font-weight: 400;
	line-height: 1.65;
}

.zl-outline-button,
.zl-gold-button,
.zl-add-to-bag,
.single_add_to_cart_button,
.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 13px 24px;
	border: 1px solid currentColor;
	border-radius: 0;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0;
	text-transform: uppercase;
	cursor: pointer;
	transition: color 360ms ease, background 360ms ease, border-color 360ms ease, transform 720ms var(--zl-ease-luxury), box-shadow 720ms var(--zl-ease-luxury);
}

.zl-outline-button {
	color: var(--zl-black);
	border-color: #fff;
	background: #fff;
}

.zl-outline-button:hover {
	color: var(--zl-white);
	border-color: var(--zl-gold);
	background: var(--zl-gold);
	box-shadow: 0 18px 40px rgba(201, 168, 76, 0.22);
	transform: translateY(-4px);
}

.zl-hero-button {
	position: relative;
	isolation: isolate;
	gap: 13px;
	min-width: min(292px, 100%);
	min-height: 52px;
	padding: 15px 34px;
	overflow: hidden;
	border: 0;
	letter-spacing: 0.18em;
}

.zl-hero-button::before {
	position: absolute;
	inset: 0;
	z-index: -1;
	content: "";
	background: var(--zl-gold);
	transform: translateX(-101%);
	transition: transform 720ms var(--zl-ease-luxury);
}

.zl-hero-button span,
.zl-hero-button svg {
	position: relative;
	z-index: 1;
}

.zl-hero-button svg {
	transition: transform 620ms var(--zl-ease-luxury);
}

.zl-hero-button:hover {
	background: #fff;
}

.zl-hero-button:hover::before {
	transform: translateX(0);
}

.zl-hero-button:hover svg {
	transform: translateX(5px);
}

@keyframes zl-hero-copy-enter {
	from {
		opacity: 0;
		transform: translateY(22px);
	}
	to {
		opacity: 1;
		transform: translateY(calc(var(--zl-hero-shift, 0) - 34px));
	}
}

.zl-gold-button,
.single_add_to_cart_button,
.woocommerce button.button.alt,
.woocommerce a.button.alt {
	color: var(--zl-black);
	border-color: var(--zl-gold);
	background: var(--zl-gold);
}

.zl-gold-button:hover,
.single_add_to_cart_button:hover,
.woocommerce button.button.alt:hover,
.woocommerce a.button.alt:hover {
	color: var(--zl-white);
	border-color: var(--zl-black);
	background: var(--zl-black);
	box-shadow: 0 18px 42px rgba(13, 13, 13, 0.18);
	transform: translateY(-3px);
}

.zl-scroll-cue {
	position: absolute;
	right: 50%;
	bottom: 28px;
	z-index: 3;
	width: 22px;
	height: 36px;
	border: 1px solid rgba(255, 255, 255, 0.66);
	border-radius: 99px;
	transform: translateX(50%);
}

.zl-scroll-cue::after {
	position: absolute;
	top: 8px;
	left: 50%;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	content: "";
	background: var(--zl-gold);
	transform: translateX(-50%);
	animation: zl-scroll-dot 1.6s infinite;
}

@keyframes zl-scroll-dot {
	0% {
		opacity: 0;
		transform: translate(-50%, 0);
	}
	35% {
		opacity: 1;
	}
	100% {
		opacity: 0;
		transform: translate(-50%, 14px);
	}
}

.zl-hero-ticker {
	position: relative;
	z-index: 4;
	display: block;
	width: 100%;
	overflow: hidden;
	min-height: 34px;
	background: #000;
	color: #fff;
	white-space: nowrap;
}

.zl-hero-ticker__track {
	display: flex;
	width: max-content;
	min-width: 200%;
	animation: zl-hero-ticker-scroll 26s linear infinite;
	will-change: transform;
}

.zl-hero-ticker__track span {
	flex: 0 0 auto;
	padding: 10px 80px 9px 0;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.1;
	white-space: nowrap;
}

@keyframes zl-hero-ticker-scroll {
	from {
		transform: translate3d(0, 0, 0);
	}
	to {
		transform: translate3d(-50%, 0, 0);
	}
}

.zl-category-grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(120px, 1fr));
	gap: 46px;
	align-items: start;
}

.zl-category-card {
	display: grid;
	justify-items: center;
	gap: 20px;
	text-align: center;
	transition: transform 760ms var(--zl-ease-luxury);
}

.zl-category-card:hover {
	transform: translateY(-8px);
}

.zl-category-image {
	position: relative;
	width: min(138px, 100%);
	aspect-ratio: 1;
	padding: 0;
	border: 4px solid var(--zl-white);
	border-radius: 50%;
	background: var(--zl-white);
	box-shadow: 0 16px 38px rgba(13, 13, 13, 0.12);
	transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.zl-category-image img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
	transition: transform 260ms ease;
}

.zl-category-card:hover .zl-category-image {
	border-color: var(--zl-gold);
	box-shadow: 0 18px 42px rgba(13, 13, 13, 0.14), 0 0 0 5px rgba(201, 168, 76, 0.13);
	transform: scale(1.025);
}

.zl-category-card:hover img {
	transform: scale(1.05);
}

.zl-category-name,
.zl-product-category {
	color: var(--zl-muted-gold);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0;
	text-transform: uppercase;
}

.zl-categories-section {
	padding: 80px 0 66px;
	background: var(--zl-white);
}

.zl-categories-section .zl-section-heading {
	gap: 13px;
	margin-bottom: 58px;
}

.zl-categories-section .zl-section-heading h2 {
	color: var(--zl-black);
	font-size: clamp(40px, 4vw, 48px);
	font-weight: 500;
}

.zl-categories-section .zl-section-heading span {
	width: 58px;
	height: 2px;
	background: var(--zl-gold);
}

.zl-categories-section .zl-section-heading p {
	color: rgba(26, 26, 26, 0.5);
	font-size: 16px;
}

.zl-category-card .zl-category-name {
	color: var(--zl-black);
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.18em;
}

.zl-trust-strip {
	padding: 72px 0;
	background:
		radial-gradient(circle at 20% 0%, rgba(201, 168, 76, 0.08), transparent 28%),
		linear-gradient(180deg, #202020 0%, #181818 100%);
}

.zl-trust-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 34px;
}

.zl-trust-card {
	display: grid;
	justify-items: center;
	gap: 16px;
	padding: 4px 12px;
	border: 0;
	background: transparent;
	text-align: center;
	box-shadow: none;
	transition: transform 760ms var(--zl-ease-luxury);
}

.zl-trust-card:hover {
	background: transparent;
	box-shadow: none;
	transform: translateY(-6px);
}

.zl-trust-icon {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	border: 1px solid rgba(201, 168, 76, 0.55);
	border-radius: 50%;
	color: var(--zl-gold);
	background: rgba(13, 13, 13, 0.34);
	box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.06), inset 0 0 18px rgba(201, 168, 76, 0.055);
	transition: color 420ms ease, background 420ms ease, box-shadow 620ms var(--zl-ease-luxury), transform 760ms var(--zl-ease-luxury);
}

.zl-trust-icon::before {
	width: 16px;
	height: 16px;
	content: "";
	border: 2px solid currentColor;
	transform: rotate(45deg);
}

.zl-trust-card:hover .zl-trust-icon {
	color: #f4d98b;
	background: rgba(201, 168, 76, 0.08);
	box-shadow: 0 0 0 7px rgba(201, 168, 76, 0.08), 0 14px 34px rgba(0, 0, 0, 0.28), inset 0 0 20px rgba(201, 168, 76, 0.08);
	transform: translateY(-4px) scale(1.04);
}

.zl-icon-box::before {
	border-radius: 3px;
	transform: none;
}

.zl-icon-return::before {
	width: 18px;
	height: 12px;
	border-top: 2px solid currentColor;
	border-right: 0;
	border-bottom: 2px solid currentColor;
	border-left: 2px solid currentColor;
	transform: none;
}

.zl-icon-chat::before {
	width: 18px;
	height: 14px;
	border-radius: 8px;
	transform: none;
}

.zl-trust-card h2 {
	margin: 0 0 4px;
	color: #fff;
	font-family: var(--zl-body-font);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.25;
	text-transform: none;
}

.zl-trust-card p {
	margin: 0;
	color: rgba(255, 255, 255, 0.58);
	font-size: 13px;
	font-weight: 500;
	line-height: 1.45;
}

.zl-section-kicker {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin: 0 0 16px;
	color: var(--zl-gold);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.zl-section-kicker::before {
	width: 42px;
	height: 1px;
	content: "";
	background: var(--zl-gold);
}

.zl-craft-section {
	position: relative;
	overflow: hidden;
	background:
		repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 78px),
		linear-gradient(135deg, #0d0d0d 0%, #1b1810 48%, #101010 100%);
	color: #fff;
}

.zl-craft-section::before {
	position: absolute;
	inset: 0;
	content: "";
	background: linear-gradient(180deg, rgba(201, 168, 76, 0.09), transparent 38%, rgba(255, 255, 255, 0.025));
	pointer-events: none;
}

.zl-craft-section .zl-container {
	position: relative;
	z-index: 1;
}

.zl-craft-head {
	display: grid;
	justify-items: center;
	max-width: 780px;
	margin: 0 auto 52px;
	text-align: center;
}

.zl-craft-head .zl-section-kicker {
	justify-content: center;
	margin-bottom: 18px;
}

.zl-craft-head h2,
.zl-faq-heading h2 {
	margin: 0;
	font-family: var(--zl-heading-font);
	font-size: clamp(40px, 5vw, 66px);
	font-weight: 500;
	line-height: 1.05;
}

.zl-craft-head > p:not(.zl-section-kicker) {
	max-width: 620px;
	margin: 22px 0 0;
	color: rgba(255, 255, 255, 0.72);
}

.zl-craft-feature-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.zl-craft-feature {
	position: relative;
	display: grid;
	align-content: start;
	gap: 15px;
	min-height: 235px;
	padding: 30px 28px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.045);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.16);
	transition: transform 760ms var(--zl-ease-luxury), border-color 420ms ease, background 420ms ease, box-shadow 760ms var(--zl-ease-luxury);
}

.zl-craft-feature:hover {
	border-color: rgba(201, 168, 76, 0.42);
	background: rgba(255, 255, 255, 0.07);
	box-shadow: 0 28px 74px rgba(0, 0, 0, 0.22);
	transform: translateY(-8px);
}

.zl-craft-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	color: #f4d98b;
	border: 1px solid rgba(201, 168, 76, 0.52);
	border-radius: 50%;
	background: rgba(201, 168, 76, 0.1);
	box-shadow: inset 0 0 20px rgba(201, 168, 76, 0.08);
	transition: transform 520ms var(--zl-ease-luxury), color 260ms ease, background 260ms ease;
}

.zl-craft-feature:hover .zl-craft-icon {
	color: #fff;
	background: rgba(201, 168, 76, 0.22);
	transform: scale(1.06) rotate(-3deg);
}

.zl-craft-icon svg {
	width: 27px;
	height: 27px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.zl-craft-feature h3 {
	margin: 2px 0 0;
	color: var(--zl-gold);
	font-family: var(--zl-heading-font);
	font-size: 25px;
	font-weight: 500;
	line-height: 1.12;
}

.zl-craft-feature p {
	margin: 0;
	color: rgba(255, 255, 255, 0.68);
	font-size: 15px;
	line-height: 1.65;
}

.zl-banner {
	position: relative;
	display: grid;
	min-height: 430px;
	place-items: center;
	overflow: hidden;
	color: var(--zl-white);
	background:
		linear-gradient(135deg, #111 0%, #483816 55%, #0d0d0d 100%);
	background-position: center;
	background-size: cover;
	text-align: center;
}

.zl-banner-overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(13, 13, 13, 0.78), rgba(13, 13, 13, 0.42), rgba(13, 13, 13, 0.74)),
		linear-gradient(180deg, rgba(13, 13, 13, 0.16), rgba(13, 13, 13, 0.42));
}

.zl-banner-content {
	position: relative;
	z-index: 1;
	width: min(860px, calc(100% - 40px));
	transition: transform 900ms var(--zl-ease-luxury);
}

.zl-banner:hover .zl-banner-content {
	transform: translateY(-4px);
}

.zl-banner h2 {
	margin-bottom: 28px;
	font-size: clamp(42px, 6vw, 76px);
}

.zl-trending-section {
	padding: 72px 0 88px;
	background:
		radial-gradient(circle at 78% 20%, rgba(201, 168, 76, 0.08), transparent 28%),
		linear-gradient(180deg, #fbfaf8 0%, #f7f3ee 100%);
}

.zl-filter-tabs {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px;
	margin: -2px 0 50px;
}

.zl-filter-tab {
	min-width: 92px;
	min-height: 46px;
	padding: 12px 26px;
	border: 1px solid rgba(13, 13, 13, 0.1);
	background: var(--zl-white);
	color: var(--zl-black);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	cursor: pointer;
	box-shadow: 0 8px 24px rgba(13, 13, 13, 0.035);
	transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.zl-filter-tab.is-active,
.zl-filter-tab:hover {
	color: var(--zl-white);
	border-color: var(--zl-black);
	background: var(--zl-black);
	transform: translateY(-1px);
}

.zl-product-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 30px;
}

.zl-product-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	background: var(--zl-white);
	animation: zl-product-card-enter 620ms cubic-bezier(0.22, 1, 0.36, 1) both;
	transform-origin: center bottom;
	transition: transform 820ms var(--zl-ease-luxury), box-shadow 820ms var(--zl-ease-luxury), filter 520ms ease;
}

.zl-product-card:hover {
	box-shadow: var(--zl-shadow);
	transform: translateY(-8px);
}

.zl-product-grid .zl-product-card:nth-child(2) {
	animation-delay: 80ms;
}

.zl-product-grid .zl-product-card:nth-child(3) {
	animation-delay: 160ms;
}

.zl-product-grid .zl-product-card:nth-child(4) {
	animation-delay: 240ms;
}

.zl-product-grid .zl-product-card:nth-child(n+5) {
	animation-delay: 320ms;
}

.zl-product-media {
	position: relative;
	overflow: hidden;
	aspect-ratio: 1;
	background: var(--zl-cream);
}

.zl-product-media > a {
	display: block;
	width: 100%;
	height: 100%;
}

.zl-product-media::before {
	position: absolute;
	inset: 0;
	z-index: 2;
	content: "";
	background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.35) 46%, transparent 78%);
	opacity: 0;
	transform: translateX(-120%);
	transition: opacity 300ms ease, transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
	pointer-events: none;
}

.zl-product-card:hover .zl-product-media::before {
	opacity: 1;
	transform: translateX(120%);
}

.zl-product-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1), filter 420ms ease;
}

.zl-product-card:hover .zl-product-media img {
	filter: contrast(1.04) saturate(1.04);
	transform: scale(1.065);
}

.zl-product-badge {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 2;
	padding: 7px 10px;
	color: var(--zl-black);
	background: var(--zl-gold);
	font-size: 11px;
	font-weight: 800;
	line-height: 1;
	text-transform: uppercase;
	transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 280ms ease;
}

.zl-product-card:hover .zl-product-badge {
	box-shadow: 0 10px 24px rgba(13, 13, 13, 0.16);
	transform: translateY(-2px);
}

.zl-product-actions {
	position: absolute;
	top: 16px;
	right: 16px;
	z-index: 3;
	display: grid;
	gap: 10px;
	opacity: 1;
	transform: translateX(0);
	transition: opacity 280ms ease, transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.zl-product-card:hover .zl-product-actions,
.zl-product-card:focus-within .zl-product-actions {
	opacity: 1;
	transform: translateX(0);
}

.zl-product-action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	padding: 0;
	border: 0;
	border-radius: 0;
	color: var(--zl-black);
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 12px 26px rgba(13, 13, 13, 0.12);
	cursor: pointer;
	transform: translateY(0);
	transition: color 220ms ease, background 220ms ease, transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.zl-product-card:hover .zl-product-action,
.zl-product-card:focus-within .zl-product-action {
	transform: translateY(0);
}

.zl-product-action:hover {
	color: #fff;
	background: var(--zl-black);
	transform: translateY(-2px);
}

.zl-product-favorite.is-favorite {
	color: #fff;
	background: var(--zl-gold);
}

.zl-product-favorite.is-favorite svg path {
	fill: currentColor;
}

.zl-product-body {
	display: grid;
	gap: 8px;
	padding: 20px 0 0;
}

.zl-product-title {
	font-size: 25px;
}

.zl-product-title a:hover {
	color: var(--zl-muted-gold);
}

.zl-product-rating {
	min-height: 18px;
}

.zl-product-rating .star-rating {
	float: none;
	margin: 0;
}

.zl-product-price {
	color: var(--zl-black);
	font-weight: 700;
}

.zl-product-price del,
.price del {
	margin-left: 8px;
	color: rgba(26, 26, 26, 0.48);
	font-weight: 400;
}

.zl-product-price ins,
.price ins {
	color: var(--zl-black);
	text-decoration: none;
}

body .zl-product-card .zl-add-to-bag,
body .zl-product-card .zl-add-to-bag.button,
.woocommerce body .zl-product-card .zl-add-to-bag,
.woocommerce .zl-product-card .zl-add-to-bag.button {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	width: 100%;
	margin-top: 10px;
	color: var(--zl-white) !important;
	border-color: var(--zl-black) !important;
	background: var(--zl-black) !important;
	z-index: 0;
	transition: color 320ms ease, border-color 320ms ease, transform 720ms var(--zl-ease-luxury), box-shadow 720ms var(--zl-ease-luxury);
}

body .zl-product-card .zl-add-to-bag::before,
body .zl-product-card .zl-add-to-bag.button::before,
.woocommerce .zl-product-card .zl-add-to-bag.button::before {
	position: absolute;
	inset: 0;
	z-index: 0;
	display: block;
	content: "";
	background: var(--zl-gold);
	transform: translate3d(-101%, 0, 0);
	transition: transform 720ms var(--zl-ease-luxury);
	pointer-events: none;
}

.zl-add-to-bag span {
	position: relative;
	z-index: 2;
}

body .zl-product-card .zl-add-to-bag:hover,
body .zl-product-card .zl-add-to-bag.button:hover,
.woocommerce .zl-product-card .zl-add-to-bag.button:hover {
	color: var(--zl-white) !important;
	border-color: var(--zl-gold) !important;
	background: var(--zl-black) !important;
	box-shadow: 0 16px 34px rgba(201, 168, 76, 0.18);
	transform: translateY(-2px);
}

body .zl-product-card .zl-add-to-bag:hover::before,
body .zl-product-card .zl-add-to-bag.button:hover::before,
.woocommerce .zl-product-card .zl-add-to-bag.button:hover::before {
	transform: translate3d(0, 0, 0);
}

.zl-product-card.is-hidden {
	display: none;
}

.zl-trending-section .zl-section-heading {
	margin-bottom: 46px;
}

.zl-trending-section .zl-section-heading h2 {
	font-size: clamp(42px, 4.6vw, 54px);
	font-weight: 500;
}

.zl-trending-section .zl-section-heading span {
	width: 58px;
}

.zl-trending-section .zl-section-heading p {
	color: rgba(26, 26, 26, 0.52);
	font-size: 16px;
}

.zl-trending-section .zl-product-grid {
	gap: 30px;
	align-items: stretch;
}

.zl-trending-section .zl-product-card {
	position: relative;
	padding: 0;
	background: #fff;
	box-shadow: 0 16px 48px rgba(13, 13, 13, 0.055);
	animation: zl-card-rise 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.zl-trending-section .zl-product-card:hover {
	box-shadow: 0 26px 70px rgba(13, 13, 13, 0.13);
	transform: translateY(-12px) scale(1.01);
}

.zl-trending-section .zl-product-media {
	aspect-ratio: 1 / 1.02;
	background: #eee8df;
}

.zl-trending-section .zl-product-media::after {
	position: absolute;
	inset: auto 0 0;
	height: 34%;
	content: "";
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(13, 13, 13, 0.12) 100%);
	pointer-events: none;
}

.zl-trending-section .zl-product-media img {
	object-fit: cover;
}

.zl-trending-section .zl-product-badge {
	top: 22px;
	left: 22px;
	padding: 10px 17px;
	color: #fff;
	background: linear-gradient(135deg, #c9a84c 0%, #d9b966 100%);
	box-shadow: 0 8px 20px rgba(13, 13, 13, 0.14);
	font-size: 11px;
	letter-spacing: 0.12em;
}

.zl-trending-section .zl-product-action {
	width: 46px;
	height: 46px;
}

.zl-trending-section .zl-product-body {
	display: grid;
	grid-template-rows: auto auto auto auto;
	justify-items: center;
	gap: 8px;
	min-height: 218px;
	padding: 30px 24px 25px;
	text-align: center;
}

.zl-trending-section .zl-product-category {
	color: var(--zl-gold);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.2em;
	line-height: 1;
	margin: 0 0 -2px;
	text-align: center;
}

.zl-trending-section .zl-product-title {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 260px;
	margin: 0;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.18;
	text-align: center;
}

.zl-trending-section .zl-product-title a {
	display: block;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.zl-trending-section .zl-product-price {
	display: inline-flex;
	align-items: baseline;
	justify-content: center;
	gap: 12px;
	margin-top: 0;
	color: var(--zl-black);
	font-size: 20px;
	font-weight: 800;
	line-height: 1.2;
}

.zl-trending-section .zl-product-price del,
.zl-trending-section .price del {
	margin-left: 0;
	color: rgba(26, 26, 26, 0.45);
	font-size: 14px;
	font-weight: 500;
	text-decoration-thickness: 1px;
}

.zl-trending-section .zl-product-price ins,
.zl-trending-section .price ins {
	color: var(--zl-black);
	font-size: 20px;
	font-weight: 800;
	text-decoration: none;
}

.zl-trending-section .zl-add-to-bag {
	width: 100%;
	min-height: 48px;
	margin-top: 4px;
	padding: 13px 18px;
	font-size: 12px;
	letter-spacing: 0.14em;
}

.zl-trending-section .zl-add-to-bag::after {
	display: none;
}

.zl-trending-section .zl-add-to-bag:hover::after {
	display: none;
}

@keyframes zl-card-rise {
	from {
		opacity: 0;
		transform: translateY(18px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.zl-moments-section {
	overflow: hidden;
	background: #fff;
}

.zl-moments-section .zl-section-heading {
	margin-bottom: 48px;
}

.zl-moments-section .zl-section-heading h2 {
	font-size: clamp(42px, 4.6vw, 56px);
	font-weight: 500;
}

.zl-moments-section .zl-section-heading span {
	width: 60px;
}

.zl-moments-section .zl-section-heading p {
	color: rgba(26, 26, 26, 0.52);
	font-size: 15px;
}

.zl-moments-slider {
	position: relative;
	width: min(100vw, 1780px);
	margin: 0 50%;
	padding: 0 0 42px;
	transform: translateX(-50%);
}

.zl-moments-stage {
	position: relative;
	overflow: visible;
	padding: 0;
	cursor: grab;
	touch-action: pan-y;
	user-select: none;
}

.zl-moments-track {
	display: flex;
	gap: 0;
	will-change: transform;
	transform: translate3d(0, 0, 0);
	transition: transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

.zl-moments-slider.is-dragging .zl-moments-track {
	transition: none;
}

.zl-moments-slider.is-dragging .zl-moment-card {
	transition: none;
}

.zl-moments-stage {
	overflow: hidden;
}

.zl-moments-stage:active {
	cursor: grabbing;
}

.zl-moment-card {
	position: relative;
	flex: 0 0 clamp(260px, 20vw, 380px);
	height: clamp(360px, 30vw, 540px);
	margin-right: -1px;
	overflow: hidden;
	border-radius: 0;
	background: var(--zl-black);
	box-shadow: 0 24px 70px rgba(13, 13, 13, 0.12);
	opacity: 0.82;
	transform: scale(1);
	transition: opacity 520ms ease, transform 760ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

.zl-moment-card.is-active {
	z-index: 4;
	opacity: 1;
	box-shadow: 0 32px 86px rgba(13, 13, 13, 0.16);
	transform: scaleY(1);
}

.zl-moment-card.is-prev {
	opacity: 1;
	transform: scaleY(0.9);
	transform-origin: center;
}

.zl-moment-card.is-next {
	opacity: 1;
	transform: scaleY(0.9);
	transform-origin: center;
}

.zl-moment-card.is-far-prev {
	opacity: 1;
	filter: saturate(0.9);
	transform: scaleY(0.78);
	transform-origin: center;
}

.zl-moment-card.is-far-next {
	opacity: 1;
	filter: saturate(0.9);
	transform: scaleY(0.78);
	transform-origin: center;
}

.zl-moment-card img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.96;
	transform: scale(1.015);
	transition: transform 1200ms var(--zl-ease-luxury), opacity 700ms ease, filter 700ms ease;
}

.zl-moment-card::after {
	position: absolute;
	inset: 0;
	content: "";
	background:
		linear-gradient(180deg, rgba(13, 13, 13, 0) 42%, rgba(13, 13, 13, 0.66) 100%),
		linear-gradient(90deg, rgba(13, 13, 13, 0.18), rgba(13, 13, 13, 0));
}

.zl-moment-card.is-active:hover {
	box-shadow: 0 36px 94px rgba(13, 13, 13, 0.18);
}

.zl-moment-card.is-active:hover img {
	filter: saturate(1.05) contrast(1.04);
	opacity: 1;
	transform: scale(1.055);
}

.zl-moment-copy {
	position: absolute;
	right: 34px;
	bottom: 30px;
	left: 34px;
	z-index: 1;
	display: grid;
	justify-items: center;
	gap: 4px;
	color: #fff;
	text-align: center;
	text-transform: uppercase;
	transform: translateY(8px);
	transition: transform 760ms var(--zl-ease-luxury);
}

.zl-moment-card.is-active:hover .zl-moment-copy {
	transform: translateY(0);
}

.zl-moment-copy h3 {
	position: relative;
	margin: 0;
	font-family: var(--zl-heading-font);
	font-size: clamp(17px, 1.35vw, 24px);
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.01em;
	text-transform: none;
}

.zl-moment-copy h3::after {
	display: block;
	width: min(92px, 64%);
	height: 1px;
	margin: 6px auto 0;
	content: "";
	background: rgba(255, 255, 255, 0.9);
}

.zl-moment-copy p {
	margin: 0;
	color: rgba(255, 255, 255, 0.82);
	font-size: clamp(8px, 0.62vw, 10px);
	font-weight: 600;
	line-height: 1.25;
	letter-spacing: 0.08em;
}

.zl-moments-nav {
	position: absolute;
	top: 50%;
	z-index: 8;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	padding: 0;
	color: var(--zl-black);
	border: 0;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 14px 34px rgba(13, 13, 13, 0.15);
	cursor: pointer;
	transform: translateY(-50%);
	transition: color 220ms ease, background 220ms ease, transform 320ms var(--zl-ease-luxury);
}

.zl-moments-nav:hover {
	color: #fff;
	background: var(--zl-black);
	transform: translateY(-50%) scale(1.07);
}

.zl-moments-nav--prev {
	left: max(18px, calc((100vw - min(100vw, 1780px)) / 2 + 58px));
}

.zl-moments-nav--next {
	right: max(18px, calc((100vw - min(100vw, 1780px)) / 2 + 58px));
}

.zl-moments-dots {
	display: flex;
	justify-content: center;
	gap: 9px;
	margin-top: 22px;
}

.zl-moments-dots button {
	width: 8px;
	height: 8px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(13, 13, 13, 0.22);
	cursor: pointer;
	transition: width 260ms ease, background 260ms ease;
}

.zl-moments-dots button.is-active {
	width: 28px;
	border-radius: 999px;
	background: var(--zl-gold);
}

@keyframes zl-product-card-enter {
	from {
		opacity: 0;
		transform: translateY(24px) scale(0.985);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.zl-empty-products {
	grid-column: 1 / -1;
	text-align: center;
}

.zl-testimonials {
	padding: 88px 0;
	background: #fff;
}

.zl-testimonials .zl-section-heading {
	margin-bottom: 58px;
}

.zl-testimonials .zl-section-heading h2 {
	font-size: clamp(42px, 4.5vw, 54px);
	font-weight: 500;
}

.zl-testimonials .zl-section-heading span {
	width: 60px;
}

.zl-testimonials .zl-section-heading p {
	color: rgba(26, 26, 26, 0.52);
	font-size: 16px;
}

.zl-review-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 30px;
}

.zl-review-card {
	position: relative;
	display: grid;
	justify-items: center;
	align-content: start;
	min-height: 380px;
	padding: 44px 34px 38px;
	border: 1px solid rgba(13, 13, 13, 0.035);
	border-radius: 14px;
	background: #faf8f6;
	text-align: center;
	box-shadow: 0 18px 48px rgba(13, 13, 13, 0.035);
	animation: zl-product-card-enter 620ms cubic-bezier(0.22, 1, 0.36, 1) both;
	cursor: pointer;
	transform-origin: center;
	transition: transform 950ms var(--zl-ease-luxury), box-shadow 950ms var(--zl-ease-luxury), background 700ms ease, border-color 700ms ease;
}

.zl-review-card:nth-child(2) {
	animation-delay: 100ms;
}

.zl-review-card:nth-child(3) {
	animation-delay: 200ms;
}

.zl-review-card:hover {
	background: #fff;
	border-color: rgba(201, 168, 76, 0.16);
	box-shadow: 0 28px 74px rgba(13, 13, 13, 0.1), 0 0 0 8px rgba(201, 168, 76, 0.04);
	transform: translateY(-12px) scale(1.025);
}

.zl-review-card:focus-visible {
	outline: 2px solid var(--zl-gold);
	outline-offset: 4px;
}

.zl-review-avatar {
	width: 88px;
	height: 88px;
	margin-bottom: 28px;
	border: 5px solid #fff;
	border-radius: 50%;
	object-fit: cover;
	box-shadow: 0 14px 35px rgba(13, 13, 13, 0.1);
	transition: transform 950ms var(--zl-ease-luxury), box-shadow 950ms var(--zl-ease-luxury);
}

.zl-review-card:hover .zl-review-avatar {
	box-shadow: 0 18px 44px rgba(13, 13, 13, 0.15);
	transform: translateY(-3px) scale(1.045);
}

.zl-review-quote {
	justify-self: start;
	margin-left: 4px;
	color: rgba(201, 168, 76, 0.22);
	font-family: Georgia, serif;
	font-size: 58px;
	line-height: 0.5;
	transition: color 700ms ease, transform 950ms var(--zl-ease-luxury);
}

.zl-review-card:hover .zl-review-quote {
	color: rgba(201, 168, 76, 0.36);
	transform: translateY(-3px) scale(1.055);
}

.zl-review-card blockquote,
.zl-review-author {
	transition: transform 950ms var(--zl-ease-luxury);
}

.zl-review-card:hover blockquote,
.zl-review-card:hover .zl-review-author {
	transform: translateY(-2px);
}

.zl-review-card blockquote {
	max-width: 310px;
	margin: 0 auto 26px;
	color: rgba(26, 26, 26, 0.58);
	font-size: 17px;
	font-style: italic;
	line-height: 1.7;
}

.zl-review-author {
	display: grid;
	gap: 2px;
	margin-top: auto;
}

.zl-review-author strong {
	color: var(--zl-black);
	font-size: 19px;
	font-weight: 700;
}

.zl-review-author span {
	color: var(--zl-gold);
	font-size: 13px;
	font-weight: 500;
}

.zl-review-modal {
	position: fixed;
	inset: 0;
	z-index: 2000;
	display: grid;
	place-items: center;
	padding: 24px;
	visibility: hidden;
	opacity: 0;
	transition: opacity 360ms var(--zl-ease), visibility 360ms var(--zl-ease);
}

.zl-review-modal.is-open {
	visibility: visible;
	opacity: 1;
}

.zl-review-modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(13, 13, 13, 0.38);
	backdrop-filter: blur(18px);
}

.zl-review-dialog {
	position: relative;
	z-index: 1;
	display: grid;
	justify-items: center;
	width: min(560px, 100%);
	padding: 48px 46px 42px;
	border: 1px solid rgba(255, 255, 255, 0.66);
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 34px 90px rgba(13, 13, 13, 0.22);
	text-align: center;
	opacity: 0;
	transform: translateY(22px) scale(0.96);
	transition: opacity 420ms var(--zl-ease-soft), transform 520ms var(--zl-ease-soft);
}

.zl-review-modal.is-open .zl-review-dialog {
	opacity: 1;
	transform: translateY(0) scale(1);
}

.zl-review-close {
	position: absolute;
	top: 18px;
	right: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border: 0;
	border-radius: 50%;
	color: var(--zl-black);
	background: rgba(13, 13, 13, 0.06);
	cursor: pointer;
	font-size: 24px;
	line-height: 1;
	transition: color 240ms ease, background 240ms ease, transform 300ms var(--zl-ease);
}

.zl-review-close:hover {
	color: #fff;
	background: var(--zl-black);
	transform: rotate(90deg);
}

.zl-review-modal-avatar {
	width: 104px;
	height: 104px;
	margin-bottom: 24px;
	border: 5px solid #fff;
	border-radius: 50%;
	object-fit: cover;
	box-shadow: 0 14px 38px rgba(13, 13, 13, 0.13);
}

.zl-review-modal-mark {
	color: rgba(201, 168, 76, 0.28);
	font-family: Georgia, serif;
	font-size: 72px;
	line-height: 0.55;
}

.zl-review-dialog blockquote {
	margin: 0 0 28px;
	color: rgba(26, 26, 26, 0.68);
	font-size: clamp(20px, 3vw, 28px);
	font-style: italic;
	line-height: 1.55;
}

.zl-review-modal-author {
	display: grid;
	gap: 4px;
}

.zl-review-modal-author strong {
	color: var(--zl-black);
	font-size: 22px;
}

.zl-review-modal-author span {
	color: var(--zl-gold);
	font-size: 13px;
	font-weight: 600;
}

.zl-faq-section {
	background: #fbfaf7;
}

.zl-faq-grid {
	display: grid;
	grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
	gap: 56px;
	align-items: start;
}

.zl-faq-heading h2 {
	color: var(--zl-black);
}

.zl-faq-list {
	display: grid;
	gap: 14px;
}

.zl-faq-item {
	border: 1px solid rgba(13, 13, 13, 0.075);
	background: #fff;
	box-shadow: 0 12px 34px rgba(13, 13, 13, 0.035);
	transition: box-shadow 620ms var(--zl-ease-luxury), transform 620ms var(--zl-ease-luxury), border-color 420ms ease;
}

.zl-faq-item:hover,
.zl-faq-item[open] {
	border-color: rgba(201, 168, 76, 0.22);
	box-shadow: 0 18px 46px rgba(13, 13, 13, 0.075);
	transform: translateY(-3px);
}

.zl-faq-item summary {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	padding: 22px 24px;
	color: var(--zl-black);
	cursor: pointer;
	font-family: var(--zl-heading-font);
	font-size: 24px;
	font-weight: 500;
	list-style: none;
}

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

.zl-faq-item summary::after {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 30px;
	height: 30px;
	content: "+";
	border: 1px solid rgba(13, 13, 13, 0.12);
	border-radius: 50%;
	color: var(--zl-gold);
	font-family: var(--zl-body-font);
	font-size: 18px;
	transition: transform 520ms var(--zl-ease-luxury), background 320ms ease, color 320ms ease;
}

.zl-faq-item[open] summary::after {
	color: #fff;
	background: var(--zl-black);
	transform: rotate(45deg);
}

.zl-faq-item p {
	margin: -4px 24px 24px;
	color: rgba(26, 26, 26, 0.62);
}

.zl-about-hero,
.zl-contact-hero {
	padding: 110px 0 92px;
	background:
		radial-gradient(circle at 78% 12%, rgba(201, 168, 76, 0.12), transparent 32%),
		linear-gradient(135deg, #101010 0%, #1d1a14 55%, #0d0d0d 100%);
	color: #fff;
}

.zl-about-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
	gap: 62px;
	align-items: center;
}

.zl-about-hero h1,
.zl-contact-hero h1 {
	max-width: 760px;
	margin: 0;
	font-family: var(--zl-heading-font);
	font-size: clamp(48px, 7vw, 86px);
	font-weight: 500;
	line-height: 1;
}

.zl-about-hero p:not(.zl-section-kicker),
.zl-contact-hero p:not(.zl-section-kicker) {
	max-width: 640px;
	margin: 26px 0 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 18px;
}

.zl-about-hero-card {
	overflow: hidden;
	aspect-ratio: 4 / 5;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.06);
	box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

.zl-about-hero-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.92;
}

.zl-about-story {
	background: #fff;
}

.zl-about-story-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.1fr);
	gap: 60px;
}

.zl-about-story h2,
.zl-contact-panel h2,
.zl-contact-form-card h2 {
	margin: 0;
	font-family: var(--zl-heading-font);
	font-size: clamp(36px, 5vw, 58px);
	font-weight: 500;
	line-height: 1.05;
}

.zl-about-story p {
	margin: 0 0 18px;
	color: rgba(26, 26, 26, 0.66);
	font-size: 18px;
}

.zl-about-values {
	background: #fbfaf7;
}

.zl-about-values-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.zl-about-values article {
	padding: 34px 30px;
	border: 1px solid rgba(13, 13, 13, 0.06);
	background: #fff;
	box-shadow: 0 18px 48px rgba(13, 13, 13, 0.05);
	transition: transform 760ms var(--zl-ease-luxury), box-shadow 760ms var(--zl-ease-luxury);
}

.zl-about-values article:hover {
	box-shadow: 0 24px 68px rgba(13, 13, 13, 0.09);
	transform: translateY(-8px);
}

.zl-about-values span {
	color: var(--zl-gold);
	font-family: var(--zl-heading-font);
	font-size: 34px;
	font-style: italic;
}

.zl-about-values h2 {
	margin: 14px 0 10px;
	font-family: var(--zl-heading-font);
	font-size: 30px;
	font-weight: 500;
}

.zl-about-values p {
	margin: 0;
	color: rgba(26, 26, 26, 0.62);
}

.zl-contact-section {
	background: #fbfaf7;
}

.zl-contact-grid {
	display: grid;
	grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
	gap: 34px;
	align-items: start;
}

.zl-contact-panel,
.zl-contact-form-card {
	padding: 36px;
	border: 1px solid rgba(13, 13, 13, 0.07);
	background: #fff;
	box-shadow: 0 18px 52px rgba(13, 13, 13, 0.06);
}

.zl-contact-methods {
	display: grid;
	gap: 16px;
	margin-top: 28px;
}

.zl-contact-methods article {
	padding-bottom: 16px;
	border-bottom: 1px solid rgba(13, 13, 13, 0.08);
}

.zl-contact-methods span,
.zl-contact-form span {
	display: block;
	margin-bottom: 7px;
	color: var(--zl-gold);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.zl-contact-methods p {
	margin: 0;
	color: rgba(26, 26, 26, 0.68);
}

.zl-contact-methods a:hover {
	color: var(--zl-muted-gold);
}

.zl-contact-form {
	display: grid;
	gap: 18px;
	margin-top: 28px;
}

.zl-contact-form input,
.zl-contact-form textarea {
	width: 100%;
	min-height: 48px;
	padding: 12px 14px;
	border: 1px solid rgba(13, 13, 13, 0.14);
	background: #fff;
	color: var(--zl-text);
	transition: border-color 320ms ease, box-shadow 520ms var(--zl-ease-luxury);
}

.zl-contact-form textarea {
	resize: vertical;
}

.zl-contact-form input:focus,
.zl-contact-form textarea:focus {
	border-color: var(--zl-gold);
	box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.12);
	outline: 0;
}

.zl-motion-item {
	opacity: 0;
	transform: translateY(24px) scale(0.985);
	transition:
		opacity 900ms var(--zl-ease-soft) var(--zl-motion-delay, 0ms),
		transform 980ms var(--zl-ease-soft) var(--zl-motion-delay, 0ms);
	will-change: opacity, transform;
}

.zl-motion-item.is-visible {
	opacity: 1;
	transform: translateY(0) scale(1);
}

.zl-category-card.zl-motion-item.is-visible:hover {
	transform: translateY(-8px);
}

.zl-product-card.zl-motion-item.is-visible:hover {
	transform: translateY(-8px);
}

.zl-trending-section .zl-product-card.zl-motion-item.is-visible:hover {
	transform: translateY(-12px) scale(1.01);
}

.zl-review-card.zl-motion-item.is-visible:hover {
	transform: translateY(-12px) scale(1.025);
}

.zl-page-hero {
	padding: 86px 0;
	background: var(--zl-black);
	color: var(--zl-white);
}

.zl-page-hero h1 {
	font-size: clamp(46px, 6vw, 76px);
}

.zl-page-hero p {
	max-width: 700px;
	margin: 14px 0 0;
	color: rgba(255, 255, 255, 0.76);
}

.zl-shop-hero {
	position: relative;
	overflow: hidden;
	padding: 92px 0 78px;
	background:
		linear-gradient(135deg, rgba(13, 13, 13, 0.96) 0%, rgba(13, 13, 13, 0.9) 52%, rgba(76, 57, 27, 0.92) 100%),
		radial-gradient(circle at 78% 18%, rgba(201, 168, 76, 0.24), transparent 32%);
}

.zl-shop-hero::before,
.zl-shop-hero::after {
	position: absolute;
	content: "";
	pointer-events: none;
}

.zl-shop-hero::before {
	inset: auto -8% -46% 45%;
	height: 380px;
	border: 1px solid rgba(201, 168, 76, 0.22);
	border-radius: 50%;
	transform: rotate(-8deg);
}

.zl-shop-hero::after {
	top: 0;
	right: 0;
	bottom: 0;
	width: min(520px, 45vw);
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.045));
}

.zl-shop-hero-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
	gap: 56px;
	align-items: end;
}

.zl-shop-kicker {
	align-items: center;
	gap: 12px;
	letter-spacing: 0.24em;
}

.zl-shop-kicker span {
	width: 40px;
	height: 1px;
	background: var(--zl-gold);
}

.zl-shop-hero h1 {
	max-width: 760px;
	margin: 0;
	font-size: clamp(54px, 7vw, 92px);
	font-weight: 500;
	line-height: 0.96;
}

.zl-shop-hero-description {
	max-width: 680px;
	margin-top: 24px;
}

.zl-shop-hero-description p,
.zl-shop-hero-description .term-description {
	margin: 0;
	color: rgba(255, 255, 255, 0.74);
	font-size: 18px;
	line-height: 1.75;
}

.zl-shop-hero-panel {
	display: grid;
	gap: 0;
	overflow: hidden;
	border: 1px solid rgba(201, 168, 76, 0.24);
	background: rgba(255, 255, 255, 0.07);
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
	backdrop-filter: blur(18px);
}

.zl-shop-hero-panel div {
	display: grid;
	gap: 2px;
	padding: 22px 24px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.zl-shop-hero-panel div:last-child {
	border-bottom: 0;
}

.zl-shop-hero-panel strong {
	color: var(--zl-gold);
	font-family: var(--zl-heading-font);
	font-size: 32px;
	font-weight: 600;
	line-height: 1;
}

.zl-shop-hero-panel span {
	color: rgba(255, 255, 255, 0.72);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.zl-content-wrap {
	padding: 70px 0;
}

.zl-entry {
	max-width: 880px;
	margin: 0 auto;
}

.zl-entry-media {
	margin-bottom: 34px;
}

.zl-entry-media img {
	width: 100%;
}

.zl-entry-header {
	margin-bottom: 24px;
}

.zl-entry h1 {
	font-size: clamp(42px, 6vw, 72px);
}

.zl-entry-content > *:first-child {
	margin-top: 0;
}

.zl-entry-content a,
.zl-text-link {
	color: var(--zl-muted-gold);
	font-weight: 700;
}

.zl-post-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 30px;
	padding: 70px 0;
}

.zl-post-card {
	background: var(--zl-white);
	box-shadow: 0 10px 35px rgba(13, 13, 13, 0.08);
}

.zl-post-thumb {
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--zl-cream);
}

.zl-post-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.zl-post-content {
	padding: 24px;
}

.zl-post-content h2 {
	margin: 0 0 12px;
	font-family: var(--zl-heading-font);
	font-size: 30px;
	line-height: 1.1;
}

.zl-pagination {
	grid-column: 1 / -1;
	margin-top: 22px;
	text-align: center;
}

.zl-shop-layout {
	padding: 54px 0 104px;
}

.zl-shop-kicker,
.zl-shop-toolbar-copy span {
	display: inline-flex;
	margin: 0 0 8px;
	color: var(--zl-gold);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.zl-shop-categories {
	display: flex;
	gap: 12px;
	margin: 0 0 34px;
	padding: 8px;
	overflow-x: auto;
	border: 1px solid rgba(13, 13, 13, 0.07);
	background: rgba(255, 255, 255, 0.78);
	box-shadow: 0 18px 50px rgba(13, 13, 13, 0.055);
	scrollbar-width: thin;
}

.zl-shop-category-chip {
	position: relative;
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	gap: 10px;
	min-height: 54px;
	padding: 8px 18px 8px 8px;
	overflow: hidden;
	border: 1px solid rgba(13, 13, 13, 0.08);
	color: var(--zl-black);
	background: #fff;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	transition: color 520ms var(--zl-ease-luxury), border-color 520ms var(--zl-ease-luxury), background 520ms var(--zl-ease-luxury), transform 720ms var(--zl-ease-luxury), box-shadow 720ms var(--zl-ease-luxury);
}

.zl-shop-category-chip::before {
	position: absolute;
	inset: 0;
	z-index: 0;
	content: "";
	background: var(--zl-black);
	transform: translateX(-101%);
	transition: transform 720ms var(--zl-ease-luxury);
}

.zl-shop-category-chip > * {
	position: relative;
	z-index: 1;
}

.zl-shop-category-chip:hover,
.zl-shop-category-chip.is-active {
	color: #fff;
	border-color: var(--zl-black);
	box-shadow: 0 16px 36px rgba(13, 13, 13, 0.12);
	transform: translateY(-2px);
}

.zl-shop-category-chip:hover::before,
.zl-shop-category-chip.is-active::before {
	transform: translateX(0);
}

.zl-shop-category-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	overflow: hidden;
	border-radius: 999px;
	color: var(--zl-gold);
	background: var(--zl-cream);
}

.zl-shop-category-icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.zl-shop-toolbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	margin-bottom: 38px;
	padding: 18px 22px;
	border: 1px solid rgba(13, 13, 13, 0.08);
	background: #fff;
	box-shadow: 0 14px 42px rgba(13, 13, 13, 0.06);
}

.zl-shop-toolbar-copy {
	display: grid;
	gap: 2px;
}

.woocommerce-result-count {
	margin: 0;
	color: rgba(26, 26, 26, 0.62);
}

.zl-shop-ordering {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
}

.zl-shop-ordering label {
	color: rgba(26, 26, 26, 0.54);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.woocommerce .woocommerce-ordering {
	margin: 0;
}

.woocommerce-ordering select,
.woocommerce .quantity .qty,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.zl-newsletter input {
	min-height: 44px;
	border: 1px solid rgba(13, 13, 13, 0.18);
	border-radius: 0;
	background: var(--zl-white);
	color: var(--zl-text);
	transition: border-color 320ms ease, box-shadow 520ms var(--zl-ease-luxury), background 320ms ease;
}

.woocommerce-ordering select:focus,
.woocommerce .quantity .qty:focus,
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus,
.zl-newsletter input:focus {
	border-color: var(--zl-gold);
	box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.12);
	outline: 0;
}

.woocommerce-ordering select {
	min-width: 230px;
	padding: 0 42px 0 14px;
	color: var(--zl-black);
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
}

.woocommerce .zl-product-grid.products {
	align-items: stretch;
}

.woocommerce .zl-product-grid.products .zl-product-card {
	position: relative;
	background: #fff;
	box-shadow: 0 16px 52px rgba(13, 13, 13, 0.055);
}

.woocommerce .zl-product-grid.products .zl-product-card:hover {
	box-shadow: 0 28px 74px rgba(13, 13, 13, 0.13);
	transform: translateY(-10px) scale(1.006);
}

.woocommerce .zl-product-grid.products .zl-product-body {
	align-items: center;
	min-height: 198px;
	padding: 24px 20px 22px;
	text-align: center;
}

.woocommerce .zl-product-grid.products .zl-product-category {
	margin-bottom: -3px;
}

.woocommerce .zl-product-grid.products .zl-product-title {
	width: 100%;
	margin: 0;
	font-size: 22px;
	line-height: 1.12;
}

.woocommerce .zl-product-grid.products .zl-product-title a {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.woocommerce .zl-product-grid.products .zl-product-price {
	font-size: 17px;
}

.woocommerce .zl-product-grid.products .zl-add-to-bag {
	margin-top: 8px;
}

.zl-shop-empty {
	display: grid;
	place-items: center;
	max-width: 680px;
	min-height: 360px;
	margin: 20px auto 0;
	padding: 52px 32px;
	border: 1px solid rgba(13, 13, 13, 0.08);
	background: #fff;
	text-align: center;
	box-shadow: 0 18px 54px rgba(13, 13, 13, 0.06);
}

.zl-shop-empty .zl-shop-kicker {
	margin-bottom: 4px;
}

.zl-shop-empty h2 {
	margin: 0;
	font-size: clamp(36px, 5vw, 58px);
	font-weight: 500;
}

.zl-shop-empty p:not(.zl-shop-kicker) {
	max-width: 460px;
	margin: 4px 0 22px;
	color: rgba(26, 26, 26, 0.62);
}

.zl-single-product-wrap {
	padding: 46px 0 104px;
}

.zl-single-product {
	display: grid;
	grid-template-columns: minmax(0, 1.04fr) minmax(380px, 0.96fr);
	gap: 46px;
	align-items: start;
}

.zl-single-product-gallery {
	background: transparent;
}

.zl-custom-gallery {
	padding: 14px;
	border: 1px solid rgba(13, 13, 13, 0.06);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.86);
	box-shadow: 0 18px 52px rgba(13, 13, 13, 0.08);
}

.zl-gallery-stage {
	position: relative;
	overflow: hidden;
	border-radius: 12px;
	background: #f8f8f8;
}

.zl-gallery-slides {
	position: relative;
	aspect-ratio: 1 / 1.02;
	min-height: 500px;
}

.zl-gallery-slide {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	margin: 0;
	opacity: 0;
	transform: scale(1.025);
	transition: opacity 360ms ease, transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
	pointer-events: none;
}

.zl-gallery-slide.is-active {
	opacity: 1;
	transform: scale(1);
	pointer-events: auto;
}

.zl-gallery-slide img,
.zl-gallery-stage > img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	mix-blend-mode: multiply;
}

.zl-gallery-rating,
.zl-gallery-expand {
	position: absolute;
	z-index: 4;
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	border: 1px solid rgba(13, 13, 13, 0.06);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 10px 26px rgba(13, 13, 13, 0.08);
	backdrop-filter: blur(10px);
}

.zl-gallery-rating {
	bottom: 16px;
	left: 16px;
	gap: 6px;
	padding: 7px 12px;
	color: var(--zl-black);
	font-size: 13px;
}

.zl-gallery-rating span {
	color: #f59e0b;
}

.zl-gallery-rating strong,
.zl-gallery-rating em {
	font-style: normal;
	font-weight: 600;
}

.zl-gallery-rating i {
	width: 1px;
	height: 14px;
	background: rgba(13, 13, 13, 0.22);
}

.zl-gallery-expand {
	right: 16px;
	bottom: 16px;
	justify-content: center;
	width: 36px;
	color: rgba(13, 13, 13, 0.72);
	transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.zl-gallery-expand:hover {
	color: #fff;
	background: var(--zl-black);
	transform: translateY(-2px);
}

.zl-gallery-nav {
	display: grid;
	grid-template-columns: 34px minmax(0, 1fr) 34px;
	align-items: center;
	gap: 12px;
	margin-top: 18px;
}

.zl-gallery-thumbs {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: minmax(86px, 1fr);
	gap: 12px;
	overflow-x: auto;
	padding: 2px;
	scrollbar-width: none;
}

.zl-gallery-thumbs::-webkit-scrollbar {
	display: none;
}

.zl-gallery-thumb {
	aspect-ratio: 1;
	padding: 0;
	overflow: hidden;
	border: 2px solid transparent;
	border-radius: 14px;
	background: #f8f8f8;
	cursor: pointer;
	transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.zl-gallery-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.zl-gallery-thumb.is-active {
	border-color: var(--zl-black);
	box-shadow: 0 10px 24px rgba(13, 13, 13, 0.1);
}

.zl-gallery-thumb:hover {
	transform: translateY(-2px);
}

.zl-gallery-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	color: rgba(13, 13, 13, 0.58);
	background: #fff;
	box-shadow: 0 10px 24px rgba(13, 13, 13, 0.08);
	cursor: pointer;
	transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.zl-gallery-arrow:hover {
	color: #fff;
	background: var(--zl-black);
	transform: translateY(-2px);
}

.zl-single-product-summary {
	position: sticky;
	top: 110px;
	display: grid;
	gap: 18px;
	padding: 34px;
	border: 1px solid rgba(13, 13, 13, 0.08);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 18px 52px rgba(13, 13, 13, 0.07);
}

.zl-single-product-summary .zl-product-badge {
	position: static;
	justify-self: start;
}

.zl-single-product-summary .product_title {
	font-size: 48px;
	letter-spacing: 0;
	line-height: 1;
}

.zl-single-product-summary .price {
	margin: 0;
	color: var(--zl-black);
	font-size: 24px;
	font-weight: 700;
}

.zl-single-product-summary .price del {
	color: rgba(13, 13, 13, 0.42);
	font-size: 18px;
	font-weight: 500;
}

.zl-single-product-summary .price ins {
	color: var(--zl-black);
	text-decoration: none;
}

.zl-single-product-summary .woocommerce-product-rating {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0;
}

.woocommerce .star-rating {
	color: var(--zl-gold);
	font-size: 13px;
}

.woocommerce-review-link {
	color: rgba(26, 26, 26, 0.58);
	font-size: 13px;
}

.woocommerce-product-details__short-description {
	color: rgba(26, 26, 26, 0.68);
	font-size: 16px;
	line-height: 1.7;
}

.woocommerce-product-details__short-description p {
	margin: 0;
}

.zl-single-product-summary form.cart {
	display: grid;
	grid-template-columns: 82px minmax(0, 1fr);
	gap: 12px;
	align-items: center;
	margin: 6px 0 2px;
}

.woocommerce .quantity .qty {
	width: 82px;
	padding: 0 10px;
	text-align: center;
}

.single_add_to_cart_button {
	width: 100%;
	min-width: 0;
}

.woocommerce div.product form.cart .variations {
	grid-column: 1 / -1;
	width: 100%;
	margin: 0 0 12px;
	border: 0;
}

.woocommerce div.product form.cart .variations th,
.woocommerce div.product form.cart .variations td {
	display: block;
	padding: 0 0 8px;
	text-align: left;
}

.woocommerce div.product form.cart .variations label {
	color: var(--zl-black);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.woocommerce div.product form.cart .variations select {
	width: 100%;
	min-height: 46px;
	padding: 0 12px;
	border: 1px solid rgba(13, 13, 13, 0.16);
	background: #fff;
}

.reset_variations {
	grid-column: 1 / -1;
	display: inline-block;
	margin-top: 8px;
	color: var(--zl-muted-gold);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
}

.zl-product-assurance {
	display: grid;
	gap: 10px;
	padding: 16px 0;
	border-top: 1px solid var(--zl-border);
	border-bottom: 1px solid var(--zl-border);
}

.zl-product-assurance div {
	display: grid;
	gap: 2px;
	padding: 12px 14px 12px 16px;
	border: 1px solid rgba(13, 13, 13, 0.07);
	border-left: 3px solid var(--zl-gold);
	border-radius: 8px;
	background: rgba(250, 247, 239, 0.54);
}

.zl-product-assurance strong {
	color: var(--zl-black);
	font-size: 13px;
	text-transform: uppercase;
}

.zl-product-assurance span {
	color: rgba(26, 26, 26, 0.58);
	font-size: 14px;
}

.product_meta {
	display: grid;
	gap: 8px;
	padding-top: 14px;
	color: rgba(26, 26, 26, 0.64);
	font-size: 14px;
}

.product_meta a {
	color: var(--zl-black);
	font-weight: 700;
	text-decoration: underline;
	text-decoration-color: rgba(201, 168, 76, 0.42);
	text-underline-offset: 4px;
}

.zl-product-details-tabs {
	margin-top: 54px;
	padding: 34px;
	border: 1px solid rgba(13, 13, 13, 0.08);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 12px 42px rgba(13, 13, 13, 0.06);
}

.woocommerce-tabs ul.tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding: 0;
	margin: 0 0 24px;
	list-style: none;
	border-bottom: 1px solid var(--zl-border);
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
	display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
	border: 0;
	border-radius: 0;
	background: transparent;
}

.woocommerce-tabs ul.tabs li a {
	display: block;
	padding: 13px 18px;
	color: rgba(26, 26, 26, 0.58);
	font-weight: 700;
	text-transform: uppercase;
}

.woocommerce-tabs ul.tabs li.active a {
	color: var(--zl-muted-gold);
}

.woocommerce-Tabs-panel h2,
.related.products > h2,
.upsells.products > h2,
.cross-sells > h2,
.cart_totals h2,
.woocommerce-billing-fields h3,
.woocommerce-shipping-fields h3,
#order_review_heading {
	margin: 0 0 22px;
	font-family: var(--zl-heading-font);
	font-size: clamp(30px, 4vw, 44px);
	font-weight: 600;
	line-height: 1.1;
}

.woocommerce-Tabs-panel p {
	color: rgba(13, 13, 13, 0.72);
	font-size: 15px;
	line-height: 1.8;
}

.related.products,
.upsells.products {
	margin-top: 64px;
}

.related.products .zl-product-grid,
.upsells.products .zl-product-grid {
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	justify-content: stretch;
	gap: 22px;
}

.related.products .zl-product-card,
.upsells.products .zl-product-card {
	background: #fff;
	box-shadow: 0 14px 44px rgba(13, 13, 13, 0.055);
}

.related.products .zl-product-body,
.upsells.products .zl-product-body {
	justify-items: center;
	gap: 8px;
	padding: 26px 24px 24px;
	text-align: center;
}

.related.products .zl-product-category,
.upsells.products .zl-product-category {
	width: 100%;
	text-align: center;
}

.related.products .zl-product-title,
.upsells.products .zl-product-title {
	width: 100%;
	margin: 0;
	text-align: center;
}

.related.products .zl-product-title a,
.upsells.products .zl-product-title a {
	display: block;
	text-align: center;
}

.related.products .zl-product-price,
.upsells.products .zl-product-price {
	display: flex;
	justify-content: center;
	align-items: baseline;
	gap: 8px;
	width: 100%;
	text-align: center;
}

.woocommerce table.shop_table {
	border: 1px solid rgba(13, 13, 13, 0.08);
	border-radius: 0;
	background: #fff;
	box-shadow: 0 10px 35px rgba(13, 13, 13, 0.05);
	overflow: hidden;
}

.woocommerce table.shop_table th {
	padding: 16px;
	border-color: rgba(13, 13, 13, 0.08);
	color: var(--zl-black);
	font-family: var(--zl-logo-font);
	font-size: 12px;
	text-transform: uppercase;
}

.woocommerce table.shop_table td {
	padding: 16px;
	border-color: rgba(13, 13, 13, 0.08);
}

.woocommerce table.shop_table .product-name a {
	color: var(--zl-black);
	font-family: var(--zl-heading-font);
	font-size: 22px;
	font-weight: 600;
}

.woocommerce table.shop_table .product-thumbnail img {
	width: 86px;
	border: 1px solid rgba(13, 13, 13, 0.08);
	background: var(--zl-cream);
}

.woocommerce a.remove {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	color: var(--zl-black) !important;
	border: 1px solid rgba(13, 13, 13, 0.14);
	border-radius: 50%;
	font-size: 18px;
	line-height: 1;
}

.woocommerce a.remove:hover {
	color: #fff !important;
	background: var(--zl-black);
}

.woocommerce-cart-form,
.cart_totals,
.woocommerce-checkout-review-order,
.woocommerce-billing-fields,
.woocommerce-shipping-fields,
.woocommerce-additional-fields {
	padding: 28px;
	border: 1px solid rgba(13, 13, 13, 0.08);
	background: var(--zl-white);
	box-shadow: 0 10px 35px rgba(13, 13, 13, 0.08);
}

.woocommerce-cart-form .coupon {
	display: flex;
	gap: 10px;
}

.woocommerce-cart-form .coupon .input-text {
	min-width: 220px;
	min-height: 48px;
	padding: 0 14px;
	border: 1px solid rgba(13, 13, 13, 0.16);
}

.cart_totals {
	margin-top: 24px;
}

.woocommerce form .form-row {
	margin: 0 0 18px;
}

.woocommerce form .form-row label {
	color: var(--zl-black);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
	width: 100%;
	padding: 0 14px;
}

.woocommerce form .form-row textarea {
	min-height: 120px;
	padding: 12px 14px;
}

.woocommerce-checkout .col2-set {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28px;
	margin-bottom: 32px;
}

.woocommerce-checkout .col2-set .col-1,
.woocommerce-checkout .col2-set .col-2 {
	float: none;
	width: auto;
}

#order_review_heading {
	margin-top: 28px;
}

.woocommerce-info,
.woocommerce-message,
.woocommerce-error {
	padding: 18px 22px 18px 54px;
	border-top: 0;
	background: #fff;
	box-shadow: 0 12px 34px rgba(13, 13, 13, 0.07);
}

.woocommerce-info::before,
.woocommerce-message::before {
	color: var(--zl-gold);
}

.woocommerce-error {
	border-left: 3px solid #8f1f1f;
}

.woocommerce-message,
.woocommerce-info {
	border-left: 3px solid var(--zl-gold);
}

.zl-woo-page-hero {
	position: relative;
	overflow: hidden;
	padding: 86px 0 72px;
	background:
		linear-gradient(135deg, rgba(13, 13, 13, 0.96), rgba(13, 13, 13, 0.9) 58%, rgba(91, 70, 35, 0.9)),
		radial-gradient(circle at 78% 18%, rgba(201, 168, 76, 0.24), transparent 34%);
}

.zl-woo-page-hero::after {
	position: absolute;
	right: -80px;
	bottom: -220px;
	width: min(560px, 60vw);
	height: 360px;
	border: 1px solid rgba(201, 168, 76, 0.22);
	border-radius: 50%;
	content: "";
	transform: rotate(-12deg);
	pointer-events: none;
}

.zl-woo-page-hero .zl-container {
	position: relative;
	z-index: 1;
}

.zl-woo-page-hero h1 {
	max-width: 800px;
	margin: 0;
	font-size: clamp(48px, 7vw, 82px);
	font-weight: 500;
	line-height: 0.98;
}

.zl-woo-page-hero p:not(.zl-shop-kicker) {
	max-width: 690px;
	font-size: 18px;
	line-height: 1.75;
}

.zl-woo-hero-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 28px;
}

.zl-woo-hero-badges span {
	display: inline-flex;
	align-items: center;
	min-height: 38px;
	padding: 8px 15px;
	border: 1px solid rgba(201, 168, 76, 0.28);
	color: rgba(255, 255, 255, 0.82);
	background: rgba(255, 255, 255, 0.06);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	backdrop-filter: blur(12px);
}

.zl-woo-page-wrap {
	padding-top: 58px;
	padding-bottom: 106px;
}

.zl-woo-entry {
	max-width: none;
}

.zl-woo-entry .entry-content,
.zl-woo-entry .zl-entry-content {
	width: 100%;
}

.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce,
.woocommerce-account .woocommerce {
	width: 100%;
}

.woocommerce-cart .woocommerce {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
	gap: 28px;
	align-items: start;
}

.woocommerce-cart .woocommerce-notices-wrapper,
.woocommerce-cart .woocommerce-form-coupon-toggle,
.woocommerce-cart .woocommerce-message,
.woocommerce-cart .woocommerce-error,
.woocommerce-cart .woocommerce-info,
.woocommerce-cart .return-to-shop {
	grid-column: 1 / -1;
}

.woocommerce-cart-form {
	min-width: 0;
}

.woocommerce-cart-form table.shop_table {
	margin: 0;
	border: 0;
	box-shadow: none;
}

.woocommerce-cart-form table.shop_table thead th {
	padding-top: 0;
	border-bottom: 1px solid rgba(13, 13, 13, 0.1);
	background: transparent;
}

.woocommerce-cart-form table.shop_table tbody td {
	vertical-align: middle;
}

.woocommerce-cart-form table.shop_table .product-remove {
	width: 44px;
}

.woocommerce-cart-form table.shop_table .product-thumbnail {
	width: 106px;
}

.woocommerce-cart-form table.shop_table .product-subtotal,
.woocommerce-cart-form table.shop_table .product-price {
	font-weight: 800;
}

.woocommerce-cart-form table.shop_table .actions {
	padding: 24px 0 0;
	border-bottom: 0;
}

.woocommerce-cart-form .coupon {
	align-items: center;
	padding: 14px;
	border: 1px solid rgba(13, 13, 13, 0.08);
	background: #fbfaf7;
}

.woocommerce-cart-form .coupon label {
	display: none;
}

.woocommerce-cart-form .coupon .input-text {
	flex: 1 1 230px;
	margin: 0 !important;
	background: #fff;
	font-size: 13px;
	font-weight: 600;
}

.woocommerce-cart-form button[name="update_cart"] {
	margin-left: auto;
}

.cart-collaterals {
	min-width: 0;
}

.woocommerce .cart-collaterals .cart_totals,
.woocommerce-page .cart-collaterals .cart_totals {
	float: none;
	width: 100%;
}

.cart_totals {
	position: sticky;
	top: 112px;
	margin-top: 0;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.94)),
		var(--zl-white);
}

.cart_totals h2,
#order_review_heading {
	padding-bottom: 16px;
	border-bottom: 1px solid rgba(13, 13, 13, 0.08);
}

.cart_totals table.shop_table {
	margin: 0 0 22px;
	border: 0;
	box-shadow: none;
}

.cart_totals table.shop_table th,
.cart_totals table.shop_table td {
	padding: 15px 0;
	border-color: rgba(13, 13, 13, 0.08);
}

.cart_totals .order-total th,
.cart_totals .order-total td,
.woocommerce-checkout-review-order .order-total th,
.woocommerce-checkout-review-order .order-total td {
	color: var(--zl-black);
	font-size: 20px;
	font-weight: 900;
}

.wc-proceed-to-checkout {
	padding: 0;
}

.woocommerce .wc-proceed-to-checkout a.checkout-button {
	width: 100%;
	margin: 0;
	color: var(--zl-white);
	border-color: var(--zl-black);
	background: var(--zl-black);
}

.woocommerce .wc-proceed-to-checkout a.checkout-button:hover {
	border-color: var(--zl-gold);
	background: var(--zl-gold);
	box-shadow: 0 18px 40px rgba(201, 168, 76, 0.22);
}

.woocommerce-checkout form.checkout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
	gap: 30px;
	align-items: start;
}

.woocommerce-checkout .col2-set {
	grid-column: 1;
	grid-template-columns: 1fr;
	gap: 22px;
	margin: 0;
}

.woocommerce-checkout #order_review_heading,
.woocommerce-checkout #order_review {
	grid-column: 2;
}

.woocommerce-checkout #order_review_heading {
	margin-top: 0;
}

.woocommerce-checkout-review-order {
	position: sticky;
	top: 112px;
}

.woocommerce-checkout-review-order table.shop_table {
	margin: 0 0 24px;
	border: 0;
	box-shadow: none;
}

.woocommerce-checkout-review-order table.shop_table th,
.woocommerce-checkout-review-order table.shop_table td {
	padding-right: 0;
	padding-left: 0;
}

.woocommerce-checkout-review-order .product-name {
	color: rgba(26, 26, 26, 0.72);
}

.woocommerce-checkout-payment,
.woocommerce #payment {
	border: 1px solid rgba(13, 13, 13, 0.08);
	border-radius: 0;
	background: #fbfaf7;
}

.woocommerce #payment ul.payment_methods {
	padding: 20px;
	border-bottom: 1px solid rgba(13, 13, 13, 0.08);
}

.woocommerce #payment ul.payment_methods li {
	padding: 14px 0;
	border-bottom: 1px solid rgba(13, 13, 13, 0.06);
}

.woocommerce #payment ul.payment_methods li:last-child {
	border-bottom: 0;
}

.woocommerce #payment ul.payment_methods label {
	color: var(--zl-black);
	font-weight: 800;
}

.woocommerce #payment div.payment_box {
	margin: 12px 0 0;
	color: rgba(26, 26, 26, 0.68);
	background: #fff;
}

.woocommerce #payment div.payment_box::before {
	border-bottom-color: #fff;
}

.woocommerce #payment div.form-row {
	padding: 20px;
	margin: 0;
}

.woocommerce #payment #place_order {
	width: 100%;
	min-height: 54px;
	color: var(--zl-white);
	border-color: var(--zl-black);
	background: var(--zl-black);
}

.woocommerce #payment #place_order:hover {
	border-color: var(--zl-gold);
	background: var(--zl-gold);
	box-shadow: 0 18px 40px rgba(201, 168, 76, 0.22);
}

.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register {
	border: 1px solid rgba(13, 13, 13, 0.08);
	border-radius: 0;
	background: #fff;
	box-shadow: 0 12px 34px rgba(13, 13, 13, 0.06);
}

.woocommerce form.checkout_coupon {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 12px;
	align-items: end;
}

.woocommerce form.checkout_coupon p {
	margin: 0;
}

.woocommerce-account .woocommerce {
	display: grid;
	grid-template-columns: minmax(230px, 292px) minmax(0, 1fr);
	gap: 26px;
	align-items: start;
	width: 100%;
	max-width: 1180px;
	margin: 0 auto;
}

.woocommerce-account .woocommerce::before,
.woocommerce-account .woocommerce::after {
	display: none !important;
	content: none !important;
}

.woocommerce-account:not(.logged-in) .woocommerce {
	display: block;
	max-width: 1040px;
	margin: 0 auto;
}

.zl-account-welcome {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 28px;
	align-items: end;
	padding: 34px;
	margin-bottom: 24px;
	border: 1px solid rgba(201, 168, 76, 0.22);
	border-radius: 8px;
	color: #fff;
	background:
		linear-gradient(135deg, rgba(13, 13, 13, 0.96), rgba(47, 38, 22, 0.94)),
		linear-gradient(135deg, rgba(201, 168, 76, 0.24), transparent);
	box-shadow: 0 18px 46px rgba(13, 13, 13, 0.12);
}

.woocommerce-account:not(.logged-in) .zl-account-welcome {
	margin-right: auto;
	margin-left: auto;
}

.zl-account-welcome__eyebrow {
	margin: 0 0 10px;
	color: var(--zl-gold);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.zl-account-welcome h2 {
	max-width: 620px;
	margin: 0;
	color: #fff;
	font-family: var(--zl-heading-font);
	font-size: 52px;
	font-weight: 600;
	line-height: 0.98;
}

.zl-account-welcome p:not(.zl-account-welcome__eyebrow) {
	max-width: 610px;
	margin: 16px 0 0;
	color: rgba(255, 255, 255, 0.76);
	font-size: 15px;
	line-height: 1.8;
}

.zl-account-welcome__perks {
	display: grid;
	gap: 10px;
	min-width: 210px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.zl-account-welcome__perks li {
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 42px;
	padding: 10px 14px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 8px;
	color: rgba(255, 255, 255, 0.86);
	background: rgba(255, 255, 255, 0.07);
	font-size: 13px;
	font-weight: 700;
}

.zl-account-welcome__perks li::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--zl-gold);
	box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.18);
}

.woocommerce-account:not(.logged-in) #customer_login {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
	align-items: stretch;
	clear: both;
	width: 100%;
	margin-top: 24px;
}

.woocommerce-account:not(.logged-in) #customer_login::before,
.woocommerce-account:not(.logged-in) #customer_login::after {
	display: none !important;
	content: none !important;
}

.woocommerce-account:not(.logged-in) #customer_login .u-column1,
.woocommerce-account:not(.logged-in) #customer_login .u-column2 {
	display: flex;
	flex-direction: column;
	float: none !important;
	min-width: 0;
	width: auto !important;
	max-width: none;
	padding: 0;
}

.woocommerce-account:not(.logged-in) #customer_login h2 {
	margin: 0;
	padding: 24px 28px 0;
	color: var(--zl-black);
	font-family: var(--zl-heading-font);
	font-size: 32px;
	font-weight: 600;
	line-height: 1.1;
}

.woocommerce-account:not(.logged-in) .woocommerce-form-login,
.woocommerce-account:not(.logged-in) .woocommerce-form-register {
	display: flex;
	flex: 1;
	flex-direction: column;
	width: 100%;
	margin: 0;
	border-color: rgba(13, 13, 13, 0.08);
	border-radius: 8px;
	box-shadow: 0 16px 42px rgba(13, 13, 13, 0.08);
}

.woocommerce-account:not(.logged-in) .woocommerce-form-login .form-row:last-child,
.woocommerce-account:not(.logged-in) .woocommerce-form-register .form-row:last-child {
	margin-top: auto;
}

.woocommerce-account:not(.logged-in) .woocommerce-form-login__rememberme {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 3px 0 16px;
	color: rgba(13, 13, 13, 0.68);
	font-size: 13px;
	font-weight: 600;
	text-transform: none;
}

.woocommerce-account:not(.logged-in) .woocommerce-form-login__rememberme input {
	width: 16px;
	height: 16px;
	margin: 0;
	accent-color: var(--zl-gold);
}

.woocommerce-account:not(.logged-in) .woocommerce-form-login__submit,
.woocommerce-account:not(.logged-in) .woocommerce-form-register__submit {
	width: 100%;
	color: var(--zl-black);
	border-color: var(--zl-gold);
	background: var(--zl-gold);
}

.woocommerce-account:not(.logged-in) .woocommerce-form-login__submit:hover,
.woocommerce-account:not(.logged-in) .woocommerce-form-register__submit:hover {
	color: var(--zl-white);
	border-color: var(--zl-black);
	background: var(--zl-black);
}

.woocommerce-account:not(.logged-in) .woocommerce-LostPassword {
	margin: 16px 0 0;
	font-size: 13px;
	font-weight: 700;
}

.woocommerce-account:not(.logged-in) .woocommerce-LostPassword a {
	color: var(--zl-black);
	text-decoration: underline;
	text-decoration-color: rgba(201, 168, 76, 0.45);
	text-underline-offset: 4px;
}

.woocommerce-account:not(.logged-in) .woocommerce-privacy-policy-text,
.woocommerce-account:not(.logged-in) .woocommerce-password-hint,
.woocommerce-account:not(.logged-in) .woocommerce-password-strength {
	color: rgba(13, 13, 13, 0.62);
	font-size: 13px;
	line-height: 1.7;
}

.woocommerce-account:not(.logged-in) .woocommerce-password-strength {
	padding: 10px 12px;
	margin: -4px 0 14px;
	border: 1px solid rgba(13, 13, 13, 0.08);
	border-radius: 8px;
	background: rgba(201, 168, 76, 0.08);
	font-weight: 700;
}

.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce-MyAccount-content,
.woocommerce-account .woocommerce-form-login,
.woocommerce-account .woocommerce-form-register {
	float: none !important;
	width: auto !important;
	max-width: none;
	box-sizing: border-box;
	padding: 28px;
	border: 1px solid rgba(13, 13, 13, 0.08);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 12px 38px rgba(13, 13, 13, 0.065);
}

.woocommerce-account .woocommerce-MyAccount-navigation {
	grid-column: 1;
	position: sticky;
	top: 114px;
	padding: 14px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 247, 239, 0.98)),
		var(--zl-white);
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
	display: grid;
	gap: 7px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation li a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	min-height: 48px;
	padding: 12px 14px;
	border: 1px solid rgba(13, 13, 13, 0.08);
	border-radius: 8px;
	color: var(--zl-black);
	background: rgba(255, 255, 255, 0.74);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	transition: color 420ms var(--zl-ease-luxury), background 420ms var(--zl-ease-luxury), border-color 420ms var(--zl-ease-luxury), transform 620ms var(--zl-ease-luxury);
}

.woocommerce-account .woocommerce-MyAccount-navigation li a::after {
	content: "";
	width: 7px;
	height: 7px;
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
	opacity: 0.42;
	transform: rotate(45deg);
	transition: opacity 300ms ease, transform 300ms ease;
}

.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation li a:hover {
	color: #fff;
	border-color: var(--zl-black);
	background: var(--zl-black);
	box-shadow: 0 12px 28px rgba(13, 13, 13, 0.12);
	transform: translateX(3px);
}

.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a::after,
.woocommerce-account .woocommerce-MyAccount-navigation li a:hover::after {
	opacity: 1;
	transform: rotate(45deg) translate(2px, -2px);
}

.woocommerce-account .woocommerce-MyAccount-content {
	grid-column: 2;
	min-width: 0;
	padding: 34px;
	overflow: hidden;
}

.woocommerce-account .woocommerce-MyAccount-content > *:last-child {
	margin-bottom: 0;
}

.woocommerce-account .woocommerce-MyAccount-content p:first-child {
	margin-top: 0;
}

.woocommerce-account .woocommerce-MyAccount-content p {
	max-width: 820px;
	color: rgba(13, 13, 13, 0.72);
	font-size: 15px;
	line-height: 1.8;
}

.woocommerce-account .woocommerce-MyAccount-content p a,
.woocommerce-account .woocommerce-MyAccount-content address a {
	color: var(--zl-black);
	font-weight: 800;
	text-decoration: underline;
	text-decoration-color: rgba(201, 168, 76, 0.42);
	text-underline-offset: 4px;
}

.woocommerce-account .woocommerce-MyAccount-content mark {
	padding: 3px 8px;
	border-radius: 999px;
	color: var(--zl-black);
	background: rgba(201, 168, 76, 0.18);
	font-weight: 800;
}

.zl-wishlist-page {
	padding-top: 78px;
	padding-bottom: 98px;
}

.zl-wishlist-head {
	display: flex;
	justify-content: space-between;
	align-items: end;
	gap: 24px;
	margin-bottom: 34px;
}

.zl-wishlist-head h2,
.zl-wishlist-empty h2 {
	margin: 0;
	font-family: var(--zl-heading-font);
	font-size: clamp(34px, 4vw, 52px);
	font-weight: 600;
	line-height: 1.05;
}

.zl-wishlist-head .zl-section-kicker {
	margin-bottom: 12px;
}

.zl-wishlist-clear,
.zl-wishlist-remove {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 12px 18px;
	border: 1px solid rgba(13, 13, 13, 0.14);
	color: var(--zl-black);
	background: #fff;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	cursor: pointer;
	transition: color 220ms ease, background 220ms ease, border-color 220ms ease, transform 320ms var(--zl-ease);
}

.zl-wishlist-clear:hover,
.zl-wishlist-remove:hover {
	color: #fff;
	border-color: var(--zl-black);
	background: var(--zl-black);
	transform: translateY(-2px);
}

.zl-wishlist-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
}

.zl-wishlist-card {
	display: grid;
	overflow: hidden;
	border: 1px solid rgba(13, 13, 13, 0.08);
	background: #fff;
	box-shadow: 0 18px 45px rgba(13, 13, 13, 0.07);
}

.zl-wishlist-card__image {
	display: block;
	aspect-ratio: 1;
	overflow: hidden;
	background: #f8f4eb;
}

.zl-wishlist-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 520ms var(--zl-ease);
}

.zl-wishlist-card:hover .zl-wishlist-card__image img {
	transform: scale(1.045);
}

.zl-wishlist-card__body {
	display: grid;
	gap: 10px;
	padding: 22px;
}

.zl-wishlist-price {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 8px;
	margin: 0;
	font-size: 17px;
	line-height: 1.35;
}

.zl-wishlist-price__sale {
	color: var(--zl-black);
	font-weight: 800;
}

.zl-wishlist-price__regular {
	color: rgba(26, 26, 26, 0.46);
	font-size: 14px;
	font-weight: 600;
	text-decoration: line-through;
}

.zl-wishlist-card__actions {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 10px;
	align-items: center;
	margin-top: 8px;
}

.zl-wishlist-empty {
	display: none;
	justify-items: center;
	gap: 16px;
	max-width: 620px;
	padding: 58px 24px;
	margin: 0 auto;
	border: 1px solid rgba(13, 13, 13, 0.08);
	background: #fff;
	text-align: center;
	box-shadow: 0 18px 45px rgba(13, 13, 13, 0.07);
}

.zl-wishlist-empty p {
	max-width: 420px;
	margin: 0;
	color: rgba(26, 26, 26, 0.64);
}

.zl-wishlist-page.is-empty .zl-wishlist-grid,
.zl-wishlist-page.is-empty .zl-wishlist-clear {
	display: none;
}

.zl-wishlist-page.is-empty .zl-wishlist-empty {
	display: grid;
}

.zl-account-dashboard-panel {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 24px;
	align-items: end;
	padding: 28px;
	border: 1px solid rgba(13, 13, 13, 0.08);
	border-radius: 8px;
	color: #fff;
	background: linear-gradient(135deg, rgba(13, 13, 13, 0.96), rgba(44, 36, 23, 0.94));
}

.zl-account-dashboard-kicker {
	margin: 0 0 10px !important;
	color: var(--zl-gold) !important;
	font-size: 12px !important;
	font-weight: 800;
	text-transform: uppercase;
}

.woocommerce-account .woocommerce-MyAccount-content .zl-account-dashboard-panel h2 {
	margin: 0 0 12px;
	color: #fff;
	font-size: 42px;
}

.woocommerce-account .woocommerce-MyAccount-content .zl-account-dashboard-panel p:not(.zl-account-dashboard-kicker) {
	max-width: 620px;
	margin: 0;
	color: rgba(255, 255, 255, 0.76);
}

.woocommerce-account .woocommerce-MyAccount-content .zl-account-dashboard-shop {
	white-space: nowrap;
	color: var(--zl-black);
	border-color: var(--zl-gold);
	background: var(--zl-gold);
}

.woocommerce-account .woocommerce-MyAccount-content .zl-account-dashboard-shop:hover {
	color: #fff;
	border-color: #fff;
	background: transparent;
}

.zl-account-shortcuts {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
	margin-top: 30px;
}

.zl-account-shortcut {
	position: relative;
	display: grid;
	gap: 8px;
	min-height: 148px;
	padding: 20px;
	overflow: hidden;
	border: 1px solid rgba(13, 13, 13, 0.08);
	border-radius: 8px;
	color: var(--zl-black);
	background: linear-gradient(135deg, #fff, rgba(250, 247, 239, 0.9));
	box-shadow: 0 12px 30px rgba(13, 13, 13, 0.055);
	transition: border-color 300ms ease, box-shadow 300ms ease, transform 420ms var(--zl-ease-luxury);
}

.zl-account-shortcut::after {
	position: absolute;
	right: 18px;
	bottom: 18px;
	content: "";
	width: 28px;
	height: 28px;
	border-right: 1px solid rgba(201, 168, 76, 0.72);
	border-bottom: 1px solid rgba(201, 168, 76, 0.72);
}

.zl-account-shortcut span {
	font-family: var(--zl-heading-font);
	font-size: 25px;
	font-weight: 600;
	line-height: 1.05;
}

.zl-account-shortcut small {
	max-width: 260px;
	color: rgba(13, 13, 13, 0.62);
	font-size: 13px;
	line-height: 1.55;
}

.zl-account-shortcut:hover {
	border-color: rgba(201, 168, 76, 0.48);
	box-shadow: 0 18px 40px rgba(13, 13, 13, 0.08);
	transform: translateY(-3px);
}

.woocommerce-account .woocommerce-MyAccount-content h2,
.woocommerce-account .woocommerce-MyAccount-content h3,
.woocommerce-account .woocommerce-EditAccountForm legend {
	margin: 0 0 18px;
	color: var(--zl-black);
	font-family: var(--zl-heading-font);
	font-size: 34px;
	font-weight: 600;
	line-height: 1.1;
}

.woocommerce-account .woocommerce-EditAccountForm legend {
	width: 100%;
	padding-top: 18px;
	border-top: 1px solid rgba(13, 13, 13, 0.08);
}

.woocommerce-account .woocommerce-EditAccountForm fieldset {
	padding: 0;
	margin: 12px 0 0;
	border: 0;
}

.woocommerce-account .woocommerce-orders-table,
.woocommerce-account .woocommerce-table--order-downloads,
.woocommerce-account .woocommerce-table--order-details {
	margin: 0;
	border-radius: 8px;
	box-shadow: none;
}

.woocommerce-account .woocommerce-orders-table th,
.woocommerce-account .woocommerce-table--order-downloads th,
.woocommerce-account .woocommerce-table--order-details th {
	background: rgba(250, 247, 239, 0.9);
}

.woocommerce-account .woocommerce-orders-table .button,
.woocommerce-account .woocommerce-table--order-downloads .button,
.woocommerce-account .woocommerce-MyAccount-content > .button,
.woocommerce-account .woocommerce-MyAccount-content form .button {
	min-height: 38px;
	padding: 9px 16px;
	color: var(--zl-black);
	border-color: var(--zl-gold);
	background: var(--zl-gold);
}

.woocommerce-account .woocommerce-orders-table .button:hover,
.woocommerce-account .woocommerce-table--order-downloads .button:hover,
.woocommerce-account .woocommerce-MyAccount-content > .button:hover,
.woocommerce-account .woocommerce-MyAccount-content form .button:hover {
	color: #fff;
	border-color: var(--zl-black);
	background: var(--zl-black);
}

.woocommerce-account .woocommerce-PaymentMethods,
.woocommerce-account .woocommerce-MyAccount-paymentMethods {
	padding: 0;
	margin: 0 0 22px;
	list-style: none;
}

.woocommerce-account .woocommerce-PaymentMethod,
.woocommerce-account .woocommerce-MyAccount-paymentMethods tr {
	border-color: rgba(13, 13, 13, 0.08);
}

.woocommerce-account .woocommerce-info {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
}

.woocommerce-account .woocommerce-info .button {
	order: 2;
	flex: 0 0 auto;
}

.woocommerce-account .addresses .title h3,
.woocommerce-order-details h2,
.woocommerce-customer-details h2 {
	font-family: var(--zl-heading-font);
	font-size: clamp(28px, 4vw, 42px);
	font-weight: 600;
}

.woocommerce-account .addresses .title .edit {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 7px 12px;
	border: 1px solid rgba(201, 168, 76, 0.42);
	border-radius: 8px;
	color: var(--zl-muted-gold);
	background: rgba(201, 168, 76, 0.08);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.woocommerce-account .addresses .title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 14px;
}

.woocommerce-account .woocommerce-Address {
	padding: 22px;
	border: 1px solid rgba(13, 13, 13, 0.08);
	border-radius: 8px;
	background: linear-gradient(135deg, #fff, rgba(250, 247, 239, 0.78));
}

.woocommerce-account .woocommerce-Address address {
	margin: 0;
	color: rgba(13, 13, 13, 0.68);
	font-size: 15px;
	line-height: 1.75;
}

.woocommerce-account .woocommerce-Addresses {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.woocommerce-account .woocommerce-Addresses::before,
.woocommerce-account .woocommerce-Addresses::after {
	display: none;
}

.woocommerce-account .woocommerce-Addresses .woocommerce-Address {
	float: none;
	width: auto;
	max-width: none;
}

.woocommerce-account form.edit-account,
.woocommerce-account form.edit-address {
	display: grid;
	gap: 2px;
}

.woocommerce-account form .form-row-first,
.woocommerce-account form .form-row-last {
	float: none;
	width: 100%;
}

.woocommerce-account form .clear {
	display: none;
}

.woocommerce-order-received .woocommerce-order {
	display: grid;
	gap: 26px;
}

.woocommerce-order-overview {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.woocommerce-order-overview li {
	padding: 18px;
	border: 1px solid rgba(13, 13, 13, 0.08);
	background: #fff;
	box-shadow: 0 10px 28px rgba(13, 13, 13, 0.045);
}

.woocommerce-order-overview li strong {
	display: block;
	margin-top: 6px;
	color: var(--zl-black);
	font-family: var(--zl-heading-font);
	font-size: 24px;
	text-transform: none;
}

.woocommerce form .form-row .required {
	color: var(--zl-muted-gold);
}

.woocommerce form .select2-container .select2-selection--single {
	height: 44px;
	border: 1px solid rgba(13, 13, 13, 0.18);
	border-radius: 0;
}

.woocommerce form .select2-container--default .select2-selection--single .select2-selection__rendered {
	line-height: 44px;
}

.woocommerce form .select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 44px;
}

.wc-block-cart,
.wc-block-checkout {
	color: var(--zl-text);
}

.wc-block-cart__main,
.wc-block-cart__sidebar,
.wc-block-checkout__main,
.wc-block-checkout__sidebar {
	padding: 28px;
	border: 1px solid rgba(13, 13, 13, 0.08);
	background: #fff;
	box-shadow: 0 12px 38px rgba(13, 13, 13, 0.065);
}

.wc-block-components-button:not(.is-link) {
	min-height: 50px;
	border-radius: 0;
	background: var(--zl-black);
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	transition: background 420ms var(--zl-ease-luxury), transform 620ms var(--zl-ease-luxury), box-shadow 620ms var(--zl-ease-luxury);
}

.wc-block-components-button:not(.is-link):hover {
	background: var(--zl-gold);
	box-shadow: 0 18px 40px rgba(201, 168, 76, 0.2);
	transform: translateY(-2px);
}

.wc-block-components-text-input input[type="text"],
.wc-block-components-text-input input[type="email"],
.wc-block-components-text-input input[type="tel"],
.wc-block-components-text-input input[type="url"],
.wc-block-components-text-input input[type="password"],
.wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input,
.wc-block-components-form .wc-block-components-text-input input[type="text"],
.wc-block-components-form .wc-block-components-text-input input[type="email"],
.wc-block-components-form .wc-block-components-text-input input[type="tel"] {
	border: 1px solid rgba(13, 13, 13, 0.18);
	border-radius: 0;
}

.woocommerce-pagination ul.page-numbers,
.woocommerce nav.woocommerce-pagination ul {
	display: inline-flex;
	gap: 8px;
	border: 0;
}

.woocommerce-pagination ul.page-numbers li,
.woocommerce nav.woocommerce-pagination ul li {
	border: 0;
}

.woocommerce-pagination .page-numbers,
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	border: 1px solid rgba(13, 13, 13, 0.14);
	color: var(--zl-black);
	background: #fff;
	font-weight: 700;
}

.woocommerce-pagination .page-numbers.current,
.woocommerce nav.woocommerce-pagination ul li span.current,
.woocommerce nav.woocommerce-pagination ul li a:hover {
	color: #fff;
	border-color: var(--zl-black);
	background: var(--zl-black);
}

.woocommerce-breadcrumb {
	margin: 0 0 28px;
	color: rgba(26, 26, 26, 0.52);
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
}

.woocommerce-breadcrumb a {
	color: var(--zl-muted-gold);
}

.zl-site-footer {
	padding: 66px 0 0;
	color: rgba(255, 255, 255, 0.72);
	background: var(--zl-black);
}

.zl-footer-brand {
	display: flex;
	justify-content: center;
	margin-bottom: 46px;
}

.zl-footer-logo {
	color: var(--zl-white);
	font-family: var(--zl-logo-font);
	font-size: 22px;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
}

.zl-footer-logo:hover {
	color: var(--zl-gold);
}

.zl-footer-grid {
	display: grid;
	grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
	gap: 42px;
	width: min(1180px, calc(100% - 40px));
	margin: 0 auto 54px;
}

.zl-footer-column h2 {
	margin: 0 0 18px;
	color: var(--zl-white);
	font-family: var(--zl-logo-font);
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
}

.zl-footer-column p {
	margin: 0 0 20px;
}

.zl-footer-column ul {
	display: grid;
	gap: 10px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.zl-footer-column a:hover {
	color: var(--zl-gold);
}

.zl-footer-column a {
	transition: color 320ms ease, transform 620ms var(--zl-ease-luxury);
}

.zl-footer-column li a {
	display: inline-block;
}

.zl-footer-column li a:hover {
	transform: translateX(4px);
}

.zl-social-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.zl-social-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 12px;
	border: 1px solid rgba(201, 168, 76, 0.34);
	color: var(--zl-gold);
	font-size: 12px;
	font-weight: 700;
}

.zl-footer-column address {
	display: grid;
	gap: 8px;
	font-style: normal;
}

.zl-newsletter {
	display: flex;
	margin-top: 18px;
}

.zl-newsletter input {
	width: 100%;
	min-width: 0;
	padding: 0 12px;
	border-color: rgba(255, 255, 255, 0.18);
	background: rgba(255, 255, 255, 0.08);
	color: var(--zl-white);
}

.zl-newsletter button {
	min-height: 44px;
	padding: 0 16px;
	border: 1px solid var(--zl-gold);
	color: var(--zl-black);
	background: var(--zl-gold);
	font-weight: 700;
	cursor: pointer;
}

.zl-floating-contact {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 1000;
	display: grid;
	justify-items: center;
	gap: 12px;
	isolation: isolate;
}

.zl-floating-contact__button {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	padding: 0;
	border-radius: 50%;
	color: #fff;
	border: 0;
	font-size: 13px;
	font-weight: 800;
	cursor: pointer;
	box-shadow: 0 14px 34px rgba(13, 13, 13, 0.18);
	transform: translateZ(0);
	transition: opacity 260ms ease, transform 340ms cubic-bezier(0.22, 1, 0.36, 1), background 260ms ease;
	will-change: opacity, transform;
}

.zl-floating-contact__button:hover {
	color: #fff;
	box-shadow: 0 20px 42px rgba(13, 13, 13, 0.24);
	transform: translateY(-3px);
}

.zl-floating-contact__button.is-whatsapp {
	background: transparent;
}

.zl-floating-contact__button.is-call,
.zl-floating-contact__button.is-chat,
.zl-floating-contact__button.is-close {
	background: transparent;
}

.zl-floating-contact__button.is-close {
	background: #9b74ce;
}

.zl-floating-contact__actions {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 56px;
	height: 56px;
	pointer-events: none;
}

.zl-floating-contact__actions .zl-floating-contact__button {
	position: absolute;
	right: 0;
	bottom: 0;
	opacity: 0;
	pointer-events: none;
	transform: translate3d(0, 16px, 0) scale(0.78);
	transition-delay: 0ms;
}

.zl-floating-contact.is-open .zl-floating-contact__actions {
	pointer-events: auto;
}

.zl-floating-contact.is-open .zl-floating-contact__actions .zl-floating-contact__button {
	opacity: 1;
	pointer-events: auto;
	transform: translate3d(0, var(--zl-contact-y, 0), 0) scale(1);
}

.zl-floating-contact.is-open .zl-floating-contact__actions .zl-floating-contact__button:hover {
	transform: translate3d(0, calc(var(--zl-contact-y, 0) - 3px), 0) scale(1);
}

.zl-floating-contact.is-open .is-chat {
	opacity: 0;
	pointer-events: none;
	transform: translate3d(0, 8px, 0) scale(0.82);
}

.zl-floating-contact__actions .is-call {
	--zl-contact-y: -132px;
}

.zl-floating-contact__actions .is-whatsapp {
	--zl-contact-y: -66px;
}

.zl-floating-contact__actions .is-close {
	--zl-contact-y: 0;
}

.zl-floating-contact__actions .is-call:first-child:nth-last-child(2),
.zl-floating-contact__actions .is-whatsapp:first-child:nth-last-child(2) {
	--zl-contact-y: -66px;
}

.zl-floating-contact.is-open .zl-floating-contact__actions .zl-floating-contact__button:nth-child(1) {
	transition-delay: 60ms;
}

.zl-floating-contact.is-open .zl-floating-contact__actions .zl-floating-contact__button:nth-child(2) {
	transition-delay: 120ms;
}

.zl-floating-contact.is-open .zl-floating-contact__actions .zl-floating-contact__button:nth-child(3) {
	transition-delay: 180ms;
}

.zl-floating-contact__dot {
	position: absolute;
	top: 7px;
	right: 7px;
	width: 12px;
	height: 12px;
	border: 2px solid #fff;
	border-radius: 50%;
	background: #ff3b30;
	box-shadow: 0 4px 10px rgba(255, 59, 48, 0.34);
}

.zl-floating-contact__button svg {
	flex: 0 0 auto;
}

.zl-contact-mark-image,
.zl-whatsapp-mark-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.zl-floating-contact__button span:not(.zl-floating-contact__dot) {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.zl-footer-bottom {
	padding: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	text-align: center;
}

.zl-footer-bottom p {
	margin: 0;
	font-size: 14px;
}

@media (max-width: 1024px) {
	.zl-header-inner {
		grid-template-columns: 1fr auto;
		min-height: 80px;
	}

	.zl-site-header.is-scrolled .zl-header-inner {
		min-height: 74px;
	}

	.zl-primary-nav {
		display: none;
	}

	.zl-menu-toggle {
		display: inline-flex;
	}

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

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

	.zl-faq-grid {
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.zl-craft-feature-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.zl-about-hero-grid,
	.zl-about-story-grid,
	.zl-contact-grid {
		grid-template-columns: 1fr;
	}

	.zl-about-values-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.zl-moments-stage {
		padding: 0;
	}

	.zl-moment-card {
		flex-basis: min(32vw, 360px);
		height: 420px;
	}

	.zl-moment-card.is-prev {
		transform: scaleY(0.9);
	}

	.zl-moment-card.is-next {
		transform: scaleY(0.9);
	}

	.zl-moment-card.is-far-prev {
		transform: scaleY(0.78);
	}

	.zl-moment-card.is-far-next {
		transform: scaleY(0.78);
	}

	.zl-product-grid,
	.zl-post-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

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

	.zl-shop-hero-grid {
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.zl-shop-hero-panel {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.zl-shop-hero-panel div {
		border-right: 1px solid rgba(255, 255, 255, 0.1);
		border-bottom: 0;
	}

	.zl-shop-hero-panel div:last-child {
		border-right: 0;
	}

	.zl-trending-section .zl-product-grid {
		gap: 24px;
	}

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

	.zl-single-product {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.zl-gallery-slides {
		min-height: 480px;
	}

	.zl-single-product-summary {
		position: static;
	}

	.zl-single-product-summary .product_title {
		font-size: 44px;
	}

	.related.products .zl-product-grid,
	.upsells.products .zl-product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.woocommerce-checkout .col2-set {
		grid-template-columns: 1fr;
	}

	.woocommerce-cart .woocommerce,
	.woocommerce-checkout form.checkout,
	.woocommerce-account .woocommerce {
		grid-template-columns: 1fr;
	}

	.woocommerce-account .woocommerce-MyAccount-navigation,
	.woocommerce-account .woocommerce-MyAccount-content {
		grid-column: 1;
		width: 100% !important;
	}

	.woocommerce-account .woocommerce-MyAccount-navigation {
		position: static;
	}

	.woocommerce-account .woocommerce-MyAccount-navigation ul {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.woocommerce-account .woocommerce-MyAccount-navigation li a {
		justify-content: center;
		text-align: center;
	}

	.woocommerce-account .woocommerce-MyAccount-navigation li a::after {
		display: none;
	}

	.zl-account-welcome,
	.woocommerce-account:not(.logged-in) #customer_login {
		grid-template-columns: 1fr;
	}

	.woocommerce-account:not(.logged-in) #customer_login {
		gap: 22px;
	}

	.zl-account-welcome {
		align-items: start;
	}

	.zl-account-welcome h2 {
		font-size: 44px;
	}

	.zl-account-welcome__perks {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		min-width: 0;
	}

	.zl-account-shortcuts,
	.woocommerce-account .woocommerce-Addresses {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.zl-account-dashboard-panel {
		grid-template-columns: 1fr;
		align-items: start;
	}

	.woocommerce-checkout .col2-set,
	.woocommerce-checkout #order_review_heading,
	.woocommerce-checkout #order_review {
		grid-column: auto;
	}

	.cart_totals,
	.woocommerce-checkout-review-order {
		position: static;
	}

	.woocommerce-order-overview {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

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

@media (max-width: 768px) {
	.zl-trending-section .zl-product-card .zl-product-badge {
		top: 8px;
		left: 8px;
		max-width: calc(100% - 56px);
		padding: 6px 9px;
		font-size: 8px;
		letter-spacing: 0.08em;
		white-space: nowrap;
	}

	.zl-trending-section .zl-product-card .zl-product-actions {
		top: 8px;
		right: 8px;
	}

	.zl-trending-section .zl-product-card .zl-product-action {
		width: 32px;
		height: 32px;
		box-shadow: 0 8px 18px rgba(13, 13, 13, 0.1);
	}

	.zl-trending-section .zl-product-card .zl-product-action svg {
		width: 14px;
		height: 14px;
	}
}

@media (max-width: 600px) {
	.zl-container {
		width: min(100% - 28px, 1180px);
	}

	.zl-site-main {
		padding-top: 70px;
	}

	.zl-header-inner {
		width: calc(100% - 24px);
		min-height: 70px;
		gap: 12px;
	}

	.zl-site-header.is-scrolled .zl-header-inner {
		min-height: 66px;
	}

	.zl-logo-text {
		font-size: 18px;
	}

	.zl-brand-lockup {
		gap: 8px;
	}

	.zl-brand-emblem {
		width: 32px;
		height: 32px;
	}

	.zl-brand-emblem-image {
		width: 38px;
		height: 38px;
	}

	.zl-logo-subtext {
		display: none;
	}

	.zl-logo-image {
		max-width: 170px;
		max-height: 46px;
	}

	.zl-icon-button {
		width: 38px;
		height: 38px;
	}

	.zl-hero {
		min-height: 100vh;
		padding: 96px 14px 92px;
	}

	.zl-hero-content {
		width: 100%;
		margin-left: 0;
		transform: translateY(calc(var(--zl-hero-shift, 0) - 22px));
	}

	.zl-hero-badge {
		gap: 10px;
		font-size: 11px;
	}

	.zl-hero-badge span {
		width: 28px;
	}

	.zl-hero h1 {
		gap: 8px;
		font-size: clamp(34px, 12vw, 48px);
	}

	.zl-hero-text {
		font-size: 16px;
	}

	.zl-hero-button {
		width: min(100%, 330px);
		justify-content: center;
		padding: 15px 22px;
	}

	.zl-section {
		padding: 68px 0;
	}

	.zl-section-heading {
		margin-bottom: 34px;
	}

	.zl-category-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 24px 18px;
	}

	.zl-trust-strip {
		padding: 54px 0;
	}

	.zl-trust-grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.zl-trust-card {
		padding: 0 20px;
	}

	.zl-faq-grid {
		gap: 28px;
	}

	.zl-craft-head {
		margin-bottom: 34px;
	}

	.zl-craft-feature-grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.zl-craft-feature {
		min-height: 0;
		padding: 24px 22px;
	}

	.zl-craft-feature h3,
	.zl-faq-item summary {
		font-size: 22px;
	}

	.zl-moments-section .zl-section-heading {
		margin-bottom: 24px;
	}

	.zl-moments-section .zl-section-heading h2 {
		font-family: var(--zl-body-font);
		font-size: 28px;
		font-weight: 500;
		letter-spacing: 0.02em;
		text-transform: uppercase;
	}

	.zl-moments-section .zl-section-heading span,
	.zl-moments-section .zl-section-heading p {
		display: none;
	}

	.zl-moments-slider {
		padding-bottom: 34px;
	}

	.zl-moments-stage {
		padding: 0;
		overflow: hidden;
	}

	.zl-moment-card {
		flex-basis: 50vw;
		height: clamp(290px, 62.5vw, 390px);
		margin-right: 0;
		box-shadow: none;
	}

	.zl-moment-card.is-prev {
		opacity: 1;
		transform: scaleY(0.86);
		transform-origin: center;
	}

	.zl-moment-card.is-next {
		opacity: 1;
		transform: scaleY(0.86);
		transform-origin: center;
	}

	.zl-moment-card.is-far-prev {
		opacity: 0.96;
		transform: scaleY(0.86);
		transform-origin: center;
	}

	.zl-moment-card.is-far-next {
		opacity: 0.96;
		transform: scaleY(0.86);
		transform-origin: center;
	}

	.zl-moments-nav {
		top: clamp(150px, 31vw, 190px);
		width: 50px;
		height: 50px;
		background: #fff;
		box-shadow: 0 16px 38px rgba(13, 13, 13, 0.18);
	}

	.zl-moments-nav--prev {
		left: 28px;
	}

	.zl-moments-nav--next {
		right: 28px;
	}

	.zl-moments-dots {
		display: none;
	}

	.zl-moment-copy {
		right: 12px;
		bottom: 18px;
		left: 12px;
		gap: 3px;
	}

	.zl-moment-copy h3 {
		font-size: clamp(14px, 3.2vw, 18px);
		letter-spacing: 0.01em;
	}

	.zl-moment-copy h3::after {
		width: min(70px, 58%);
		margin-top: 5px;
	}

	.zl-moment-copy p {
		font-size: clamp(7px, 1.7vw, 9px);
		letter-spacing: 0.065em;
	}

	.zl-faq-item summary {
		padding: 18px;
	}

	.zl-faq-item p {
		margin: -2px 18px 20px;
	}

	.zl-about-hero,
	.zl-contact-hero {
		padding: 76px 0 64px;
	}

	.zl-about-values-grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.zl-contact-panel,
	.zl-contact-form-card {
		padding: 24px;
	}

	.zl-category-image {
		width: min(138px, 100%);
	}

	.zl-banner {
		min-height: 340px;
	}

	.zl-filter-tabs {
		justify-content: flex-start;
		overflow-x: auto;
		gap: 10px;
		padding-bottom: 4px;
		margin-bottom: 34px;
	}

	.zl-filter-tab {
		flex: 0 0 auto;
		min-width: auto;
		min-height: 42px;
		padding: 10px 18px;
		letter-spacing: 0.1em;
	}

	.zl-product-grid,
	.zl-post-grid {
		grid-template-columns: 1fr;
	}

	.zl-trending-section {
		padding: 58px 0 70px;
	}

	.zl-trending-section .zl-section-heading {
		margin-bottom: 32px;
	}

	.zl-trending-section .zl-product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 16px 12px;
	}

	.zl-trending-section .zl-product-card {
		padding-bottom: 0;
	}

	.zl-trending-section .zl-product-badge {
		top: 8px;
		left: 8px;
		max-width: calc(100% - 56px);
		padding: 6px 9px;
		font-size: 8px;
		letter-spacing: 0.08em;
		white-space: nowrap;
	}

	.zl-trending-section .zl-product-actions {
		top: 8px;
		right: 8px;
	}

	.zl-trending-section .zl-product-action {
		width: 32px;
		height: 32px;
		box-shadow: 0 8px 18px rgba(13, 13, 13, 0.1);
	}

	.zl-trending-section .zl-product-action svg {
		width: 14px;
		height: 14px;
	}

	.zl-trending-section .zl-product-body {
		grid-template-rows: auto auto auto auto;
		min-height: 0;
		gap: 6px;
		padding: 16px 10px 14px;
	}

	.zl-trending-section .zl-product-category {
		font-size: 10px;
		letter-spacing: 0.12em;
	}

	.zl-trending-section .zl-product-title {
		font-size: 15px;
	}

	.zl-trending-section .zl-product-price,
	.zl-trending-section .zl-product-price ins,
	.zl-trending-section .price ins {
		font-size: 15px;
	}

	.zl-trending-section .zl-add-to-bag {
		min-height: 40px;
		margin-top: 6px;
		padding: 10px 8px;
		font-size: 10px;
		letter-spacing: 0.08em;
	}

	.zl-testimonials {
		padding: 64px 0;
	}

	.zl-testimonials .zl-section-heading {
		margin-bottom: 34px;
	}

	.zl-review-grid {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.zl-review-card {
		min-height: 0;
		padding: 36px 24px 32px;
	}

	.zl-review-card blockquote {
		font-size: 16px;
	}

	.zl-shop-toolbar {
		display: grid;
		padding: 16px;
	}

	.zl-shop-hero {
		padding: 72px 0 58px;
	}

	.zl-shop-hero h1 {
		font-size: clamp(42px, 14vw, 64px);
	}

	.zl-shop-hero-description p,
	.zl-shop-hero-description .term-description {
		font-size: 16px;
	}

	.zl-shop-hero-panel {
		grid-template-columns: 1fr;
	}

	.zl-shop-hero-panel div {
		padding: 18px 20px;
		border-right: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}

	.zl-shop-categories {
		margin-bottom: 24px;
		padding: 6px;
	}

	.zl-shop-category-chip {
		min-height: 48px;
		padding-right: 14px;
		font-size: 11px;
		letter-spacing: 0.1em;
	}

	.zl-shop-category-icon {
		width: 34px;
		height: 34px;
	}

	.zl-shop-ordering {
		display: grid;
		justify-content: stretch;
	}

	.woocommerce-ordering select {
		width: 100%;
		min-width: 0;
	}

	.woocommerce .zl-product-grid.products .zl-product-title {
		font-size: 21px;
	}

	.woocommerce .zl-product-grid.products .zl-product-body {
		min-height: 188px;
		padding: 22px 18px 20px;
	}

	.zl-single-product-wrap {
		padding: 42px 0 72px;
	}

	.zl-single-product {
		gap: 24px;
	}

	.zl-custom-gallery {
		padding: 10px;
		border-radius: 24px;
	}

	.zl-gallery-stage {
		border-radius: 18px;
	}

	.zl-gallery-slides {
		aspect-ratio: 1;
		min-height: 330px;
	}

	.zl-gallery-nav {
		grid-template-columns: 30px minmax(0, 1fr) 30px;
		gap: 8px;
		margin-top: 12px;
	}

	.zl-gallery-thumbs {
		grid-auto-columns: 78px;
		gap: 8px;
	}

	.zl-gallery-thumb {
		border-radius: 12px;
	}

	.zl-gallery-arrow {
		width: 30px;
		height: 30px;
	}

	.zl-gallery-rating {
		bottom: 12px;
		left: 12px;
		min-height: 30px;
		padding: 5px 10px;
		font-size: 12px;
	}

	.zl-gallery-expand {
		right: 12px;
		bottom: 12px;
		width: 32px;
		min-height: 32px;
	}

	.zl-single-product-summary,
	.zl-product-details-tabs,
	.woocommerce-cart-form,
	.cart_totals,
	.woocommerce-checkout-review-order,
	.woocommerce-billing-fields,
	.woocommerce-shipping-fields,
	.woocommerce-additional-fields {
		padding: 20px;
	}

	.zl-single-product-summary .product_title {
		font-size: 36px;
	}

	.zl-single-product-summary form.cart {
		grid-template-columns: 1fr;
	}

	.related.products .zl-product-grid,
	.upsells.products .zl-product-grid {
		grid-template-columns: 1fr;
	}

	.zl-wishlist-head,
	.zl-wishlist-card__actions {
		grid-template-columns: 1fr;
		align-items: start;
	}

	.zl-wishlist-head {
		display: grid;
	}

	.zl-wishlist-grid {
		grid-template-columns: 1fr;
	}

	.zl-wishlist-clear,
	.zl-wishlist-remove,
	.zl-wishlist-card__actions .zl-gold-button {
		width: 100%;
	}

	.zl-woo-page-hero {
		padding: 70px 0 58px;
	}

	.zl-woo-page-hero h1 {
		font-size: clamp(40px, 13vw, 58px);
	}

	.zl-woo-page-hero p:not(.zl-shop-kicker) {
		font-size: 16px;
	}

	.zl-woo-hero-badges {
		gap: 8px;
		margin-top: 22px;
	}

	.zl-woo-hero-badges span {
		min-height: 34px;
		padding: 7px 11px;
		font-size: 10px;
		letter-spacing: 0.1em;
	}

	.zl-woo-page-wrap {
		padding-top: 42px;
		padding-bottom: 76px;
	}

	.woocommerce-cart .woocommerce,
	.woocommerce-checkout form.checkout,
	.woocommerce-account .woocommerce {
		gap: 20px;
	}

	.woocommerce-cart-form table.shop_table .product-thumbnail {
		display: none;
	}

	.woocommerce-cart-form table.shop_table .actions {
		padding-top: 18px;
	}

	.woocommerce-cart-form .coupon,
	.woocommerce form.checkout_coupon {
		display: grid;
		grid-template-columns: 1fr;
	}

	.woocommerce-cart-form .coupon .input-text {
		width: 100%;
	}

	.woocommerce-cart-form button[name="update_cart"],
	.woocommerce-cart-form .coupon button,
	.woocommerce form.checkout_coupon button {
		width: 100%;
		margin-left: 0;
	}

	.woocommerce-checkout .col2-set {
		gap: 18px;
	}

	.woocommerce #payment ul.payment_methods,
	.woocommerce #payment div.form-row {
		padding: 16px;
	}

	.woocommerce-account .woocommerce-MyAccount-navigation,
	.woocommerce-account .woocommerce-MyAccount-content,
	.woocommerce-account .woocommerce-form-login,
	.woocommerce-account .woocommerce-form-register {
		padding: 20px;
	}

	.woocommerce-account .woocommerce-MyAccount-navigation {
		padding: 10px;
	}

	.woocommerce-account .woocommerce-MyAccount-navigation ul {
		grid-template-columns: 1fr;
		gap: 6px;
	}

	.woocommerce-account .woocommerce-MyAccount-navigation li a {
		justify-content: space-between;
		min-height: 44px;
		padding: 10px 12px;
		font-size: 11px;
		letter-spacing: 0.06em;
		text-align: left;
	}

	.woocommerce-account .woocommerce-MyAccount-navigation li a::after {
		display: block;
	}

	.woocommerce-account .woocommerce-MyAccount-content {
		padding: 22px;
	}

	.zl-account-shortcuts {
		gap: 12px;
		grid-template-columns: 1fr;
		margin-top: 22px;
	}

	.zl-account-dashboard-panel {
		padding: 22px;
	}

	.woocommerce-account .woocommerce-MyAccount-content .zl-account-dashboard-panel h2 {
		font-size: 32px;
	}

	.woocommerce-account .woocommerce-MyAccount-content .zl-account-dashboard-shop {
		width: 100%;
	}

	.zl-account-shortcut {
		min-height: 118px;
		padding: 18px;
	}

	.zl-account-shortcut span {
		font-size: 24px;
	}

	.woocommerce-account .woocommerce-info {
		display: block;
	}

	.woocommerce-account .woocommerce-info .button {
		width: 100%;
		margin-top: 12px;
	}

	.woocommerce-account .addresses .title {
		display: grid;
		align-items: start;
	}

	.woocommerce-account .woocommerce-Address {
		padding: 18px;
	}

	.zl-account-welcome {
		gap: 20px;
		padding: 22px;
		margin-bottom: 18px;
	}

	.zl-account-welcome h2 {
		font-size: 34px;
	}

	.zl-account-welcome__perks {
		grid-template-columns: 1fr;
	}

	.woocommerce-account:not(.logged-in) #customer_login {
		gap: 18px;
	}

	.woocommerce-account:not(.logged-in) #customer_login h2 {
		padding: 20px 20px 0;
		font-size: 28px;
	}

	.woocommerce-account .woocommerce-MyAccount-navigation li a {
		min-height: 42px;
	}

	.woocommerce-order-overview {
		grid-template-columns: 1fr;
	}

	.wc-block-cart__main,
	.wc-block-cart__sidebar,
	.wc-block-checkout__main,
	.wc-block-checkout__sidebar {
		padding: 20px;
	}

	.woocommerce div.product div.images .flex-control-thumbs {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.zl-single-product-summary form.cart {
		display: grid;
	}

	.woocommerce .quantity .qty,
	.single_add_to_cart_button {
		width: 100%;
	}

	.woocommerce-cart-form .coupon {
		display: grid;
		width: 100%;
	}

	.woocommerce-cart-form .coupon .input-text {
		width: 100%;
		min-width: 0;
	}

	.woocommerce table.shop_table_responsive tr,
	.woocommerce-page table.shop_table_responsive tr {
		margin-bottom: 14px;
		border: 1px solid rgba(13, 13, 13, 0.08);
		background: #fff;
	}

	.woocommerce table.shop_table_responsive tr td,
	.woocommerce-page table.shop_table_responsive tr td {
		padding: 12px 14px;
		border: 0;
	}

	.woocommerce table.shop_table_responsive tr td::before,
	.woocommerce-page table.shop_table_responsive tr td::before {
		color: var(--zl-black);
		font-size: 12px;
		text-transform: uppercase;
	}

	.zl-footer-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.zl-newsletter {
		display: grid;
		gap: 10px;
	}

	.zl-floating-contact {
		right: 14px;
		bottom: 14px;
		gap: 8px;
	}

	.zl-floating-contact__button {
		width: 48px;
		height: 48px;
		padding: 0;
		font-size: 12px;
	}

	.zl-floating-contact__actions {
		width: 48px;
		height: 48px;
	}

	.zl-floating-contact__dot {
		top: 5px;
		right: 5px;
		width: 11px;
		height: 11px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.zl-product-card,
	.zl-trending-section .zl-product-card,
	.zl-product-media img,
	.zl-product-media::before,
	.zl-product-actions,
	.zl-product-action,
	.zl-add-to-bag::before,
	.zl-gallery-slide,
	.zl-motion-item,
	.zl-review-modal,
	.zl-review-dialog {
		animation: none;
		transition: none;
	}

	.zl-hero-ticker__track {
		animation: none;
	}

	.zl-floating-contact__button {
		transition: none;
		will-change: auto;
	}

	.zl-product-card:hover,
	.zl-trending-section .zl-product-card:hover,
	.zl-product-card:hover .zl-product-media img,
	.zl-motion-item,
	.zl-review-dialog {
		transform: none;
	}

	.zl-motion-item {
		opacity: 1;
	}
}
