body.zaza-modal-lock {
	overflow: hidden;
}

html:has(.zaza-header),
body:has(.zaza-header),
body.zaza-storefront-page {
	margin: 0;
}

body.zaza-commerce-page,
body.zaza-commerce-page .wp-site-blocks {
	background: #050706;
}

body:has(.zaza-header) .wp-site-blocks,
body.zaza-storefront-page .wp-site-blocks {
	margin-top: 0;
	padding-top: 0;
}

body:has(.zaza-header) > header:not(.zaza-header),
body:has(.zaza-header) .wp-site-blocks > header:not(.zaza-header),
body:has(.zaza-header) .wp-site-blocks > .wp-block-template-part:first-child,
body:has(.zaza-header) .wp-site-blocks > .wp-block-group:first-child:has(.wp-block-site-title),
body:has(.zaza-header) .wp-site-blocks > header .wp-block-site-title,
body:has(.zaza-header) .wp-site-blocks > header .wp-block-site-title a,
body.zaza-storefront-page > header:not(.zaza-header),
body.zaza-storefront-page .wp-site-blocks > header:not(.zaza-header),
body.zaza-storefront-page .wp-site-blocks > .wp-block-template-part:first-child,
body.zaza-storefront-page .wp-site-blocks > .wp-block-group:first-child:has(.wp-block-site-title),
body.zaza-storefront-page .wp-site-blocks > header .wp-block-site-title,
body.zaza-storefront-page .wp-site-blocks > header .wp-block-site-title a {
	display: none !important;
	visibility: hidden !important;
}

body.zaza-commerce-page .wp-block-post-title:first-child {
	display: none !important;
	visibility: hidden !important;
}

.zaza-home,
.zaza-entry-popups,
.zaza-header {
	--zaza-ink: #111413;
	--zaza-charcoal: #191f1d;
	--zaza-soft: #f6f7f3;
	--zaza-paper: #ffffff;
	--zaza-line: rgba(17, 20, 19, 0.12);
	--zaza-muted: #626b66;
	--zaza-accent: #b7f16f;
	--zaza-rose: #f2b8a2;
	--zaza-shadow: 0 18px 50px rgba(17, 20, 19, 0.14);
	color: var(--zaza-ink);
	font-family: inherit;
	letter-spacing: 0;
}

.zaza-home {
	width: 100vw;
	margin-left: calc(50% - 50vw);
	background: var(--zaza-paper);
	overflow: hidden;
}

.zaza-home *,
.zaza-entry-popups *,
.zaza-header * {
	box-sizing: border-box;
	letter-spacing: 0;
}

.zaza-sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.zaza-header {
	position: relative;
	z-index: 30;
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-top: 0;
	background: #050706;
	color: #ffffff;
	border: 0;
}

.zaza-header::before {
	content: "";
	position: absolute;
	right: 0;
	bottom: 100%;
	left: 0;
	height: 32px;
	background: #050706;
	pointer-events: none;
}

.zaza-header__inner {
	display: flex;
	align-items: center;
	gap: 24px;
	width: min(1280px, calc(100% - 32px));
	min-height: 86px;
	margin: 0 auto;
}

.zaza-header__brand {
	order: 1;
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	gap: 10px;
	min-width: 190px;
	color: #ffffff;
	text-decoration: none;
}

.zaza-header__brand:hover,
.zaza-header__brand:focus-visible {
	color: #ffffff;
	text-decoration: none;
}

.zaza-header__brand-logo {
	display: inline-flex;
	width: 56px;
	height: 56px;
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 50%;
	background: #ffffff;
	object-fit: cover;
}

.zaza-header__brand-copy {
	display: grid;
	gap: 2px;
}

.zaza-header__brand-name {
	display: block;
	white-space: nowrap;
}

.zaza-header__brand-name {
	font-size: 0.95rem;
	font-weight: 900;
	line-height: 1.1;
	text-transform: uppercase;
}

.zaza-nav {
	order: 3;
	flex: 1 1 auto;
	min-width: 0;
}

.zaza-nav-menu,
.zaza-nav-menu .sub-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.zaza-nav-menu {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 2px;
}

.zaza-nav-menu > li {
	position: relative;
	display: flex;
	align-items: center;
	min-width: 0;
}

.zaza-nav-menu a {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	padding: 0 10px;
	color: rgba(255, 255, 255, 0.86);
	font-size: 0.76rem;
	font-weight: 800;
	line-height: 1.2;
	text-decoration: none;
	text-transform: uppercase;
	white-space: nowrap;
	transition: color 160ms ease, background 160ms ease;
}

.zaza-nav-menu a:hover,
.zaza-nav-menu a:focus-visible,
.zaza-nav-menu > li.is-open > a {
	color: #ffffff;
	background: rgba(255, 255, 255, 0.08);
	text-decoration: none;
}

.zaza-nav-menu .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 35;
	min-width: 220px;
	padding: 8px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 0 0 8px 8px;
	background: #080b0a;
	box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
}

.zaza-nav-menu li:hover > .sub-menu,
.zaza-nav-menu li:focus-within > .sub-menu,
.zaza-nav-menu li.is-open > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.zaza-nav-menu .sub-menu a {
	display: flex;
	min-height: 38px;
	padding: 0 12px;
	border-radius: 5px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.78rem;
}

.zaza-nav-menu .sub-menu a:hover,
.zaza-nav-menu .sub-menu a:focus-visible {
	background: rgba(183, 241, 111, 0.12);
	color: #ffffff;
}

.zaza-dropdown-toggle,
.zaza-nav-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, 0.18);
	background: transparent;
	color: #ffffff;
	cursor: pointer;
}

.zaza-dropdown-toggle {
	width: 28px;
	height: 28px;
	margin-left: -8px;
	border: 0;
	border-radius: 50%;
}

.zaza-dropdown-toggle::before {
	content: "";
	width: 7px;
	height: 7px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg) translate(-1px, -1px);
	transition: transform 160ms ease;
}

.zaza-nav-menu li.is-open > .zaza-dropdown-toggle::before {
	transform: rotate(225deg) translate(-1px, -1px);
}

.zaza-nav-toggle {
	order: 2;
	display: none;
	flex: 0 0 auto;
	width: 42px;
	height: 42px;
	border-radius: 6px;
}

.zaza-nav-toggle__bar {
	position: absolute;
	width: 18px;
	height: 2px;
	background: currentColor;
	transition: transform 180ms ease, opacity 180ms ease;
}

.zaza-nav-toggle__bar:nth-child(1) {
	transform: translateY(-6px);
}

.zaza-nav-toggle__bar:nth-child(3) {
	transform: translateY(6px);
}

.zaza-header.is-open .zaza-nav-toggle__bar:nth-child(1) {
	transform: rotate(45deg);
}

.zaza-header.is-open .zaza-nav-toggle__bar:nth-child(2) {
	opacity: 0;
}

.zaza-header.is-open .zaza-nav-toggle__bar:nth-child(3) {
	transform: rotate(-45deg);
}

.zaza-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 22px;
	border: 1px solid transparent;
	border-radius: 6px;
	font-size: 0.96rem;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	cursor: pointer;
	transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.zaza-button:hover,
.zaza-button:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 12px 24px rgba(17, 20, 19, 0.18);
	text-decoration: none;
}

.zaza-button--accent {
	background: var(--zaza-accent);
	color: var(--zaza-ink);
}

.zaza-button--dark {
	background: var(--zaza-ink);
	color: #ffffff;
}

.zaza-button--light {
	background: #ffffff;
	border-color: var(--zaza-line);
	color: var(--zaza-ink);
}

.zaza-eyebrow,
.zaza-modal__eyebrow {
	margin: 0 0 12px;
	color: var(--zaza-muted);
	font-size: 0.82rem;
	font-weight: 800;
	text-transform: uppercase;
}

.zaza-modal {
	position: fixed;
	inset: 0;
	z-index: 9990;
	display: grid;
	place-items: center;
	padding: 20px;
	background: rgba(10, 12, 11, 0.72);
	backdrop-filter: blur(12px);
}

.zaza-modal[hidden] {
	display: none;
}

.zaza-modal__panel {
	position: relative;
	width: min(100%, 480px);
	padding: 34px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	background: #ffffff;
	color: #111413;
	box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

.zaza-modal__panel--age {
	text-align: center;
}

.zaza-modal__title {
	margin: 0 0 12px;
	font-size: 2rem;
	line-height: 1.05;
}

.zaza-modal__copy {
	margin: 0 0 24px;
	color: #4c5650;
	font-size: 1rem;
	line-height: 1.6;
}

.zaza-modal__actions {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.zaza-modal__restricted {
	margin: 18px 0 0;
	padding: 14px;
	border-radius: 6px;
	background: #fff1ed;
	color: #7a2516;
	font-weight: 700;
}

.zaza-modal__close {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 38px;
	height: 38px;
	border: 1px solid var(--zaza-line);
	border-radius: 50%;
	background: #ffffff;
	color: #111413;
	font-size: 1.4rem;
	line-height: 1;
	cursor: pointer;
}

.zaza-email-form {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 10px;
	margin-bottom: 14px;
}

.zaza-email-form__input {
	width: 100%;
	min-height: 48px;
	padding: 0 14px;
	border: 1px solid var(--zaza-line);
	border-radius: 6px;
	background: #ffffff;
	color: #111413;
	font-size: 1rem;
}

.zaza-email-form__input:focus {
	border-color: #111413;
	outline: 2px solid rgba(183, 241, 111, 0.45);
	outline-offset: 1px;
}

.zaza-modal__secondary {
	padding: 0;
	border: 0;
	background: transparent;
	color: #4c5650;
	font-weight: 700;
	text-decoration: underline;
	cursor: pointer;
}

.zaza-modal__success {
	margin: 12px 0 0;
	color: #245425;
	font-weight: 800;
}

.zaza-hero {
	position: relative;
	min-height: 680px;
	background: var(--zaza-charcoal);
	color: #ffffff;
	isolation: isolate;
	overflow: hidden;
}

.zaza-hero__slides {
	position: absolute;
	inset: 0;
}

.zaza-hero__slide {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	background: var(--zaza-charcoal);
	opacity: 0;
	overflow: hidden;
	pointer-events: none;
	transition: opacity 900ms ease;
}

.zaza-hero__slide::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background-color: var(--zaza-charcoal);
	background-image: var(--zaza-slide-image);
	background-position: center;
	background-size: cover;
	transform: scale(1.03);
	transform-origin: center;
}

.zaza-hero__slide::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background: linear-gradient(180deg, rgba(5, 7, 6, 0.04), rgba(5, 7, 6, 0.12));
	pointer-events: none;
}

.zaza-hero__slide.is-active {
	opacity: 1;
	pointer-events: auto;
}

.zaza-hero__slide.is-active::before {
	animation: zazaHeroPan 12s ease-out forwards;
}

.zaza-hero__inner {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: min(1180px, calc(100% - 40px));
	min-height: 680px;
	margin: 0 auto;
	padding: 116px 0 112px;
	text-align: center;
}

.zaza-hero__copy {
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 680px;
	margin: 0 auto;
	padding: 18px 0;
}

.zaza-hero .zaza-eyebrow {
	color: var(--zaza-accent);
	font-size: 0.78rem;
}

.zaza-hero__headline {
	margin: 0;
	color: #ffffff;
	font-size: 5rem;
	font-weight: 900;
	line-height: 0.98;
}

.zaza-hero__button {
	margin-top: 24px;
}

.zaza-hero__controls {
	position: absolute;
	right: max(20px, calc((100vw - 1180px) / 2));
	bottom: 34px;
	z-index: 4;
	display: flex;
	align-items: center;
	gap: 14px;
}

.zaza-hero__dots {
	display: flex;
	gap: 8px;
}

.zaza-hero__dot,
.zaza-hero__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, 0.35);
	background: rgba(255, 255, 255, 0.12);
	color: #ffffff;
	cursor: pointer;
	transition: background 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.zaza-hero__dot {
	width: 11px;
	height: 11px;
	padding: 0;
	border-radius: 50%;
}

.zaza-hero__dot.is-active {
	background: var(--zaza-accent);
	border-color: var(--zaza-accent);
}

.zaza-hero__arrow {
	position: relative;
	width: 42px;
	height: 42px;
	border-radius: 50%;
}

.zaza-hero__arrow::before {
	content: "";
	width: 10px;
	height: 10px;
	border-top: 2px solid currentColor;
	border-left: 2px solid currentColor;
	transform: rotate(-45deg) translate(1px, 1px);
}

.zaza-hero__arrow--next::before {
	transform: rotate(135deg) translate(1px, 1px);
}

.zaza-hero__dot:hover,
.zaza-hero__dot:focus-visible,
.zaza-hero__arrow:hover,
.zaza-hero__arrow:focus-visible {
	background: rgba(255, 255, 255, 0.24);
	transform: translateY(-1px);
}

.zaza-section {
	width: min(1180px, calc(100% - 40px));
	margin: 0 auto;
	padding: 76px 0;
}

.zaza-section__header {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 28px;
}

.zaza-section__title,
.zaza-promo__title {
	margin: 0;
	color: var(--zaza-ink);
	font-size: 2.6rem;
	line-height: 1.05;
}

.zaza-section__link {
	color: var(--zaza-ink);
	font-weight: 800;
	text-decoration: underline;
	text-underline-offset: 5px;
}

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

.zaza-product-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	border: 1px solid var(--zaza-line);
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 1px 0 rgba(17, 20, 19, 0.05);
	overflow: hidden;
	transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.zaza-product-card:hover,
.zaza-product-card:focus-within {
	transform: translateY(-5px);
	border-color: rgba(17, 20, 19, 0.24);
	box-shadow: var(--zaza-shadow);
}

.zaza-product-card__media {
	display: grid;
	place-items: center;
	aspect-ratio: 1;
	padding: 20px;
	background: var(--zaza-soft);
	overflow: hidden;
}

.zaza-product-card__image {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: transform 260ms ease;
}

.zaza-product-card:hover .zaza-product-card__image,
.zaza-product-card:focus-within .zaza-product-card__image {
	transform: scale(1.055);
}

.zaza-product-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 12px;
	padding: 18px;
}

.zaza-product-card__title {
	margin: 0;
	font-size: 1.05rem;
	line-height: 1.35;
}

.zaza-product-card__title a {
	color: var(--zaza-ink);
	text-decoration: none;
}

.zaza-product-card__price {
	color: var(--zaza-muted);
	font-weight: 800;
}

.zaza-product-card__button {
	width: 100%;
	margin-top: auto;
}

.zaza-empty-state {
	padding: 34px;
	border: 1px dashed var(--zaza-line);
	border-radius: 8px;
	background: var(--zaza-soft);
	text-align: center;
}

.zaza-empty-state h3,
.zaza-empty-state p {
	margin: 0;
}

.zaza-empty-state p {
	margin-top: 10px;
	color: var(--zaza-muted);
}

.zaza-categories {
	padding-top: 38px;
}

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

.zaza-category-card {
	position: relative;
	min-height: 330px;
	border-radius: 8px;
	color: #ffffff;
	overflow: hidden;
	text-decoration: none;
	background: var(--zaza-charcoal);
}

.zaza-category-card__media {
	position: absolute;
	inset: 0;
	background-position: center;
	background-size: cover;
	transform: scale(1);
	transition: transform 420ms ease;
}

.zaza-category-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(17, 20, 19, 0.08), rgba(17, 20, 19, 0.75));
}

.zaza-category-card__body {
	position: absolute;
	right: 24px;
	bottom: 24px;
	left: 24px;
	z-index: 1;
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 16px;
}

.zaza-category-card__title {
	font-size: 1.65rem;
	font-weight: 900;
	line-height: 1.05;
}

.zaza-category-card__cta {
	flex: 0 0 auto;
	padding: 10px 12px;
	border-radius: 6px;
	background: #ffffff;
	color: var(--zaza-ink);
	font-size: 0.86rem;
	font-weight: 800;
}

.zaza-category-card:hover .zaza-category-card__media,
.zaza-category-card:focus-visible .zaza-category-card__media {
	transform: scale(1.06);
}

.zaza-category-card--placeholder {
	pointer-events: none;
}

.zaza-promo {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
	width: min(1180px, calc(100% - 40px));
	margin: 20px auto 76px;
	border-radius: 8px;
	background: var(--zaza-charcoal);
	color: #ffffff;
	overflow: hidden;
}

.zaza-promo__media {
	min-height: 430px;
	background-color: #d9e8d3;
	background-position: center;
	background-size: cover;
	transition: transform 500ms ease;
}

.zaza-promo:hover .zaza-promo__media {
	transform: scale(1.025);
}

.zaza-promo__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: 48px;
}

.zaza-promo .zaza-eyebrow {
	color: var(--zaza-rose);
}

.zaza-promo__title {
	color: #ffffff;
}

.zaza-promo__copy {
	margin: 18px 0 26px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 1.05rem;
	line-height: 1.65;
}

.zaza-trust-strip {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	width: 100vw;
	margin-left: calc(50% - 50vw);
	padding: 30px max(20px, calc((100vw - 1180px) / 2));
	background: #050706;
	border: 0;
}

.zaza-trust-strip__item {
	display: grid;
	gap: 8px;
	align-content: start;
	min-height: 124px;
	padding: 22px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 8px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.zaza-trust-strip__item::before {
	content: "";
	width: 30px;
	height: 3px;
	border-radius: 999px;
	background: var(--zaza-accent);
}

.zaza-trust-strip__item strong {
	color: #ffffff;
	font-size: 1rem;
}

.zaza-trust-strip__item span {
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.92rem;
	line-height: 1.4;
}

.zaza-section.zaza-reviews {
	width: 100vw;
	margin-left: calc(50% - 50vw);
	padding: 72px max(20px, calc((100vw - 1180px) / 2)) 88px;
	background:
		linear-gradient(180deg, rgba(183, 241, 111, 0.09), rgba(255, 255, 255, 0) 42%),
		#f8faf4;
}

.zaza-reviews .zaza-section__header {
	display: block;
	max-width: 760px;
	margin: 0 auto 34px;
	text-align: center;
}

.zaza-reviews .zaza-eyebrow {
	color: #4d6254;
}

.zaza-reviews .zaza-section__title {
	max-width: none;
	margin: 0;
	color: var(--zaza-ink);
	font-family: Arial, Helvetica, sans-serif;
	font-size: clamp(2.35rem, 4vw, 3.8rem);
	font-weight: 900;
	line-height: 1.02;
}

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

.zaza-review {
	position: relative;
	min-height: 238px;
	padding: 34px;
	border: 1px solid rgba(17, 20, 19, 0.08);
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 18px 42px rgba(17, 20, 19, 0.08);
	overflow: hidden;
}

.zaza-review::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--zaza-accent), var(--zaza-rose));
}

.zaza-review::after {
	content: "\201C";
	position: absolute;
	right: 22px;
	bottom: -22px;
	color: rgba(17, 20, 19, 0.05);
	font-size: 7rem;
	font-weight: 900;
	line-height: 1;
}

.zaza-review p {
	position: relative;
	z-index: 1;
	margin: 0 0 24px;
	color: #303733;
	font-size: 1.05rem;
	line-height: 1.7;
}

.zaza-review strong {
	position: relative;
	z-index: 1;
	color: var(--zaza-ink);
}

.zaza-footer {
	width: 100vw;
	margin-left: calc(50% - 50vw);
	background: #050706;
	color: #ffffff;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.zaza-footer__inner {
	width: min(1180px, calc(100% - 40px));
	margin: 0 auto;
	padding: 42px 0 34px;
}

.zaza-footer__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
}

.zaza-footer__brand {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	color: #ffffff;
	font-size: 1rem;
	font-weight: 900;
	text-decoration: none;
	text-transform: uppercase;
}

.zaza-footer__brand:hover,
.zaza-footer__brand:focus-visible {
	color: #ffffff;
	text-decoration: none;
}

.zaza-footer__logo {
	width: 58px;
	height: 58px;
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 50%;
	background: #ffffff;
	object-fit: cover;
}

.zaza-footer__nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 10px 18px;
}

.zaza-footer__nav a {
	color: rgba(255, 255, 255, 0.76);
	font-size: 0.84rem;
	font-weight: 800;
	text-decoration: none;
	text-transform: uppercase;
}

.zaza-footer__nav a:hover,
.zaza-footer__nav a:focus-visible {
	color: var(--zaza-accent);
	text-decoration: none;
}

.zaza-footer__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 18px;
	margin-top: 30px;
	padding-top: 22px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	color: rgba(255, 255, 255, 0.64);
	font-size: 0.84rem;
}

@keyframes zazaHeroPan {
	from {
		background-position: 50% 50%;
		transform: scale(1.03);
	}

	to {
		background-position: 54% 48%;
		transform: scale(1.1);
	}
}

@media (prefers-reduced-motion: reduce) {
	.zaza-home *,
	.zaza-entry-popups * {
		animation-duration: 1ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: 1ms !important;
	}
}

@media (max-width: 980px) {
	.zaza-header__inner {
		justify-content: space-between;
		min-height: 76px;
	}

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

	.zaza-nav-toggle {
		position: relative;
		display: inline-flex;
	}

	.zaza-nav {
		position: absolute;
		top: 100%;
		right: 0;
		left: 0;
		max-height: 0;
		background: #050706;
		border-top: 0;
		box-shadow: 0 22px 42px rgba(0, 0, 0, 0.28);
		overflow: hidden;
		transition: max-height 220ms ease;
	}

	.zaza-header.is-open .zaza-nav {
		max-height: 78vh;
		overflow-y: auto;
	}

	.zaza-nav-menu {
		display: block;
		width: min(100%, 720px);
		margin: 0 auto;
		padding: 8px 16px 16px;
	}

	.zaza-nav-menu > li {
		display: block;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}

	.zaza-nav-menu a {
		display: flex;
		width: calc(100% - 44px);
		min-height: 46px;
		padding: 0;
	}

	.zaza-nav-menu > li:not(.menu-item-has-children) > a {
		width: 100%;
	}

	.zaza-dropdown-toggle {
		position: absolute;
		top: 8px;
		right: 0;
		width: 36px;
		height: 30px;
		margin: 0;
		border: 1px solid rgba(255, 255, 255, 0.14);
		border-radius: 6px;
	}

	.zaza-nav-menu .sub-menu {
		position: static;
		min-width: 0;
		max-height: 0;
		padding: 0;
		border: 0;
		border-radius: 0;
		background: rgba(255, 255, 255, 0.05);
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
		overflow: hidden;
		transition: max-height 180ms ease, padding 180ms ease;
	}

	.zaza-nav-menu li:hover > .sub-menu,
	.zaza-nav-menu li:focus-within > .sub-menu {
		transform: none;
	}

	.zaza-nav-menu li.is-open > .sub-menu {
		max-height: 360px;
		padding: 6px 10px 10px;
	}

	.zaza-nav-menu .sub-menu a {
		width: 100%;
		min-height: 40px;
		padding: 0 10px;
	}

	.zaza-hero {
		min-height: 620px;
	}

	.zaza-hero__inner {
		min-height: 620px;
		padding-top: 108px;
	}

	.zaza-hero__headline {
		font-size: 3.65rem;
	}

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

	.zaza-category-grid,
	.zaza-review-grid,
	.zaza-trust-strip {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.zaza-promo {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 680px) {
	.zaza-header__inner {
		width: min(100% - 24px, 1280px);
	}

	.zaza-header__brand-logo {
		width: 42px;
		height: 42px;
	}

	.zaza-header__brand-name {
		font-size: 0.88rem;
	}

	.zaza-modal__panel {
		padding: 26px;
	}

	.zaza-modal__title {
		font-size: 1.65rem;
	}

	.zaza-modal__actions,
	.zaza-email-form {
		grid-template-columns: 1fr;
	}

	.zaza-email-form__button {
		width: 100%;
	}

	.zaza-hero {
		min-height: 580px;
	}

	.zaza-hero__inner {
		width: min(100% - 28px, 1180px);
		min-height: 580px;
		padding: 92px 0 110px;
	}

	.zaza-hero__headline {
		font-size: 2.45rem;
		line-height: 1.02;
	}

	.zaza-hero__controls {
		right: 14px;
		bottom: 24px;
		left: 14px;
		justify-content: space-between;
	}

	.zaza-section {
		width: min(100% - 28px, 1180px);
		padding: 58px 0;
	}

	.zaza-section.zaza-reviews {
		width: 100vw;
		padding: 54px 20px 68px;
	}

	.zaza-section__header {
		display: block;
	}

	.zaza-section__title,
	.zaza-promo__title {
		font-size: 2rem;
	}

	.zaza-section__link {
		display: inline-flex;
		margin-top: 14px;
	}

	.zaza-footer__top {
		display: grid;
		justify-items: center;
		text-align: center;
	}

	.zaza-footer__nav {
		justify-content: center;
	}

	.zaza-trust-strip {
		padding: 20px 14px;
	}

	.zaza-product-grid,
	.zaza-category-grid,
	.zaza-review-grid,
	.zaza-trust-strip {
		grid-template-columns: 1fr;
	}

	.zaza-category-card {
		min-height: 250px;
	}

	.zaza-category-card__body {
		display: grid;
		align-items: start;
	}

	.zaza-category-card__cta {
		width: max-content;
	}

	.zaza-promo {
		width: min(100% - 28px, 1180px);
		margin-bottom: 58px;
	}

	.zaza-promo__media {
		min-height: 260px;
	}

	.zaza-promo__content {
		padding: 30px;
	}
}

/* Responsive homepage layout upgrade. */
.zaza-header__cart {
	position: relative;
	order: 4;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 0 13px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 999px;
	color: #ffffff;
	font-size: 0.72rem;
	font-weight: 900;
	text-decoration: none;
	text-transform: uppercase;
	white-space: nowrap;
}

.zaza-header__cart:hover,
.zaza-header__cart:focus-visible {
	background: rgba(183, 241, 111, 0.12);
	color: #ffffff;
	text-decoration: none;
}

body.zaza-commerce-page .wp-site-blocks,
.zaza-header + .zaza-home,
.zaza-home > .zaza-hero:first-child {
	margin-top: 0;
	padding-top: 0;
}

.zaza-product-card {
	border-radius: 7px;
	box-shadow: 0 10px 30px rgba(17, 20, 19, 0.07);
}

.zaza-product-card__media {
	aspect-ratio: 4 / 5;
	padding: 14px;
	background: linear-gradient(180deg, #f8faf5, #eef2e8);
}

.zaza-product-card__body {
	gap: 10px;
	padding: 14px;
}

.zaza-product-card__title {
	display: -webkit-box;
	min-height: 2.7em;
	font-size: 0.96rem;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.zaza-product-card__price {
	font-size: 0.92rem;
}

.zaza-product-card__button {
	min-height: 42px;
	padding: 0 12px;
	font-size: 0.84rem;
}

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

.zaza-category-card {
	min-height: 285px;
	border-radius: 8px;
	box-shadow: 0 16px 38px rgba(17, 20, 19, 0.12);
}

.zaza-category-card::after {
	background: linear-gradient(180deg, rgba(17, 20, 19, 0), rgba(17, 20, 19, 0.72));
}

.zaza-category-card__body {
	right: 18px;
	bottom: 18px;
	left: 18px;
	gap: 10px;
}

.zaza-category-card__title {
	font-size: 1.28rem;
}

.zaza-category-card__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	padding: 0;
	border-radius: 50%;
	font-size: 1.1rem;
	line-height: 1;
}

.zaza-section.zaza-reviews {
	padding-top: 64px;
	padding-bottom: 74px;
}

.zaza-reviews .zaza-section__title {
	font-size: 3rem;
}

.zaza-review {
	min-height: 210px;
	padding: 28px;
}

@media (min-width: 901px) {
	.zaza-header__inner {
		gap: 16px;
	}

	.zaza-header__brand {
		min-width: 178px;
	}

	.zaza-nav-menu a {
		padding: 0 8px;
		font-size: 0.72rem;
	}

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

@media (max-width: 900px) {
	.zaza-header__inner {
		display: grid;
		grid-template-columns: 44px minmax(0, 1fr) 44px;
		gap: 10px;
		width: min(100% - 24px, 1280px);
		min-height: 58px;
	}

	.zaza-nav-toggle {
		order: 1;
		display: inline-flex;
		width: 42px;
		height: 42px;
	}

	.zaza-header__brand {
		order: 2;
		justify-self: center;
		min-width: 0;
		gap: 8px;
	}

	.zaza-header__brand-logo {
		width: 36px;
		height: 36px;
	}

	.zaza-header__brand-name {
		font-size: 0.82rem;
	}

	.zaza-header__cart {
		order: 3;
		justify-self: end;
		width: 42px;
		height: 42px;
		min-height: 42px;
		padding: 0;
		border-radius: 50%;
		font-size: 0;
	}

	.zaza-header__cart::before {
		content: "";
		width: 15px;
		height: 13px;
		border: 2px solid currentColor;
		border-top: 0;
		border-radius: 2px 2px 5px 5px;
	}

	.zaza-header__cart::after {
		content: "";
		position: absolute;
		width: 9px;
		height: 7px;
		margin-top: -15px;
		border: 2px solid currentColor;
		border-bottom: 0;
		border-radius: 8px 8px 0 0;
	}

	.zaza-nav {
		order: 4;
		grid-column: 1 / -1;
	}

	.zaza-hero {
		min-height: 500px;
	}

	.zaza-hero__inner {
		min-height: 500px;
		padding: 74px 0 88px;
	}

	.zaza-hero__headline {
		font-size: 3rem;
	}

	.zaza-section {
		width: min(100% - 32px, 1180px);
		padding: 58px 0;
	}

	.zaza-section__header {
		align-items: start;
		margin-bottom: 22px;
	}

	.zaza-product-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 14px;
	}

	.zaza-category-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 14px;
	}

	.zaza-category-card {
		min-height: 230px;
	}

	.zaza-trust-strip {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		padding: 22px 16px;
	}

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

@media (max-width: 600px) {
	.zaza-header__inner {
		grid-template-columns: 42px minmax(0, 1fr) 42px;
		width: min(100% - 18px, 1280px);
		min-height: 56px;
	}

	.zaza-header__brand-name {
		max-width: 132px;
		overflow: hidden;
		font-size: 0.78rem;
		text-overflow: ellipsis;
	}

	.zaza-nav {
		margin-right: -9px;
		margin-left: -9px;
	}

	.zaza-nav-menu {
		padding: 6px 14px 14px;
	}

	.zaza-hero {
		min-height: 390px;
	}

	.zaza-hero__slide::before {
		background-position: center;
	}

	.zaza-hero__inner {
		width: min(100% - 24px, 1180px);
		min-height: 390px;
		padding: 58px 0 72px;
	}

	.zaza-hero__headline {
		font-size: 2rem;
		line-height: 1.05;
	}

	.zaza-hero__button {
		min-height: 42px;
		margin-top: 16px;
		padding: 0 18px;
		font-size: 0.86rem;
	}

	.zaza-hero__controls {
		right: 12px;
		bottom: 16px;
		left: 12px;
	}

	.zaza-section {
		width: min(100% - 24px, 1180px);
		padding: 42px 0;
	}

	.zaza-section__title,
	.zaza-promo__title {
		font-size: 1.65rem;
		line-height: 1.08;
	}

	.zaza-eyebrow,
	.zaza-modal__eyebrow {
		margin-bottom: 8px;
		font-size: 0.72rem;
	}

	.zaza-product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
	}

	.zaza-product-card__media {
		padding: 8px;
	}

	.zaza-product-card__body {
		gap: 7px;
		padding: 10px;
	}

	.zaza-product-card__title {
		font-size: 0.78rem;
		line-height: 1.28;
	}

	.zaza-product-card__price {
		font-size: 0.78rem;
	}

	.zaza-product-card__button {
		min-height: 34px;
		padding: 0 8px;
		font-size: 0.72rem;
	}

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

	.zaza-category-card {
		min-height: 168px;
	}

	.zaza-category-card__body {
		right: 12px;
		bottom: 12px;
		left: 12px;
	}

	.zaza-category-card__title {
		font-size: 0.98rem;
	}

	.zaza-category-card__cta {
		width: 32px;
		height: 32px;
		font-size: 0.96rem;
	}

	.zaza-promo {
		width: min(100% - 24px, 1180px);
		margin-top: 4px;
		margin-bottom: 42px;
	}

	.zaza-promo__media {
		min-height: 220px;
	}

	.zaza-promo__content {
		padding: 24px;
	}

	.zaza-promo__copy {
		margin: 12px 0 18px;
		font-size: 0.92rem;
		line-height: 1.5;
	}

	.zaza-trust-strip {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 8px;
		padding: 14px 12px;
	}

	.zaza-trust-strip__item {
		min-height: 106px;
		padding: 14px;
	}

	.zaza-trust-strip__item strong {
		font-size: 0.82rem;
	}

	.zaza-trust-strip__item span {
		font-size: 0.74rem;
	}

	.zaza-section.zaza-reviews {
		padding: 42px 14px 52px;
	}

	.zaza-reviews .zaza-section__header {
		margin-bottom: 22px;
		text-align: left;
	}

	.zaza-reviews .zaza-section__title {
		font-size: 1.8rem;
	}

	.zaza-review-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.zaza-review {
		min-height: 0;
		padding: 22px;
	}

	.zaza-review p {
		margin-bottom: 16px;
		font-size: 0.94rem;
		line-height: 1.55;
	}

	.zaza-footer__inner {
		width: min(100% - 32px, 1180px);
		padding: 34px 0 92px;
		text-align: center;
	}

	.zaza-footer__top {
		gap: 24px;
		justify-items: center;
	}

	.zaza-footer__brand {
		justify-content: center;
		width: 100%;
		font-size: 0.95rem;
	}

	.zaza-footer__logo {
		width: 46px;
		height: 46px;
	}

	.zaza-footer__nav {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		width: 100%;
		max-width: 360px;
		margin: 0 auto;
		gap: 12px 24px;
		justify-items: center;
		text-align: center;
	}

	.zaza-footer__nav a {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-height: 32px;
	}

	.zaza-footer__meta {
		display: grid;
		justify-items: center;
		gap: 8px;
		margin-top: 22px;
		padding-top: 18px;
		text-align: center;
	}
}

/* Storefront nav reset: one final rule set wins over older experimental nav overrides. */
.zaza-header {
	background: #242424;
}

.zaza-header::before {
	background: #242424;
}

@media (min-width: 901px) {
	.zaza-header {
		overflow: visible;
	}

	.zaza-header__inner {
		display: grid;
		grid-template-columns: auto minmax(0, 1fr) auto;
		align-items: center;
		width: 100%;
		max-width: none;
		min-height: 96px;
		margin: 0;
		padding: 0 clamp(34px, 3.2vw, 58px);
		gap: clamp(26px, 2.7vw, 48px);
	}

	.zaza-header__brand {
		min-width: max-content;
		gap: 12px;
	}

	.zaza-header__brand-logo {
		width: 72px;
		height: 72px;
	}

	.zaza-header__brand-name {
		display: block;
		max-width: none;
		overflow: visible;
		font-family: var(--zaza-display-font);
		font-size: 1rem;
		font-weight: 400;
		letter-spacing: 0.03em;
		line-height: 1;
		text-transform: uppercase;
		white-space: nowrap;
	}

	.zaza-nav {
		min-width: 0;
		overflow: visible;
	}

	.zaza-nav-menu {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: flex-start;
		width: auto;
		min-width: 0;
		max-width: 100%;
		margin: 0;
		gap: 12px clamp(18px, 1.35vw, 28px);
	}

	.zaza-nav-menu > li {
		display: inline-flex;
		align-items: center;
		flex: 0 0 auto;
		min-width: auto;
	}

	.zaza-nav-menu > li > a {
		width: auto;
		min-width: 0;
		min-height: 34px;
		padding: 0;
		color: rgba(255, 255, 255, 0.94);
		font-family: var(--zaza-display-font);
		font-size: clamp(0.9rem, 0.78vw, 1rem);
		font-weight: 400;
		letter-spacing: 0.035em;
		line-height: 1;
		text-transform: uppercase;
		white-space: nowrap;
	}

	.zaza-dropdown-toggle {
		position: static;
		flex: 0 0 auto;
		width: 16px;
		height: 24px;
		margin: 0 0 0 4px;
		border: 0;
		background: transparent;
	}

	.zaza-dropdown-toggle::before {
		width: 6px;
		height: 6px;
		border-width: 1.6px;
	}

	.zaza-nav-menu .sub-menu {
		min-width: 230px;
		padding: 14px 0;
		border: 1px solid rgba(255, 255, 255, 0.08);
		border-radius: 0 0 14px 14px;
		background: #242424;
	}

	.zaza-nav-menu .sub-menu a {
		min-height: 36px;
		padding: 0 22px;
		border-radius: 0;
		color: rgba(255, 255, 255, 0.86);
		font-family: var(--zaza-body-font);
		font-size: 0.82rem;
		font-weight: 700;
		letter-spacing: 0;
		line-height: 1.25;
		text-transform: none;
	}

	.zaza-header__cart {
		justify-self: end;
		min-width: max-content;
		min-height: 46px;
		padding: 0 24px;
		border-color: rgba(255, 255, 255, 0.22);
		font-family: var(--zaza-display-font);
		font-size: 0.95rem;
		font-weight: 400;
		letter-spacing: 0.035em;
		line-height: 1;
		text-transform: uppercase;
	}
}

@media (min-width: 901px) and (max-width: 1280px) {
	.zaza-header__inner {
		min-height: 92px;
		padding-right: 24px;
		padding-left: 24px;
		gap: 20px;
	}

	.zaza-header__brand-logo {
		width: 62px;
		height: 62px;
	}

	.zaza-header__brand-name {
		display: none;
	}

	.zaza-nav-menu {
		gap: 10px 14px;
	}

	.zaza-nav-menu > li > a,
	.zaza-header__cart {
		font-size: 0.82rem;
	}
}

@media (max-width: 900px) {
	.zaza-header {
		background: #242424;
		overflow: visible;
	}

	.zaza-header__inner {
		display: grid;
		grid-template-columns: 48px minmax(0, 1fr) 48px;
		align-items: center;
		width: 100%;
		min-height: 88px;
		margin: 0;
		padding: 0 16px;
		gap: 12px;
	}

	.zaza-nav-toggle {
		order: 1;
		display: inline-flex;
		width: 48px;
		height: 48px;
		border: 0;
		border-radius: 0;
		background: transparent;
	}

	.zaza-header__brand {
		order: 2;
		justify-self: center;
		min-width: 0;
		gap: 10px;
	}

	.zaza-header__brand-logo {
		width: 58px;
		height: 58px;
	}

	.zaza-header__brand-name {
		max-width: none;
		overflow: visible;
		font-size: clamp(1rem, 4vw, 1.15rem);
		text-overflow: clip;
		white-space: nowrap;
	}

	.zaza-header__cart {
		order: 3;
		justify-self: end;
		width: 48px;
		min-width: 48px;
		height: 48px;
		min-height: 48px;
		padding: 0;
		font-size: 0;
	}

	.zaza-nav {
		position: absolute;
		top: 100%;
		right: 0;
		left: 0;
		z-index: 90;
		display: block;
		grid-column: auto;
		max-height: 0;
		margin: 0;
		padding: 0;
		background: #242424;
		box-shadow: 0 24px 46px rgba(0, 0, 0, 0.38);
		opacity: 0;
		visibility: hidden;
		overflow: hidden;
		pointer-events: none;
		transition: max-height 220ms ease, opacity 160ms ease, visibility 160ms ease;
	}

	.zaza-header.is-open .zaza-nav {
		max-height: calc(100vh - 88px);
		opacity: 1;
		visibility: visible;
		overflow-y: auto;
		pointer-events: auto;
	}

	.zaza-nav-menu {
		display: grid;
		width: 100%;
		max-width: none;
		margin: 0;
		padding: 10px 18px 20px;
		gap: 0;
		background: #242424;
	}

	.zaza-nav-menu > li {
		display: grid;
		grid-template-columns: minmax(0, 1fr) 42px;
		align-items: center;
		border-bottom: 1px solid rgba(255, 255, 255, 0.09);
	}

	.zaza-nav-menu > li:not(.menu-item-has-children) {
		grid-template-columns: 1fr;
	}

	.zaza-nav-menu a,
	.zaza-nav-menu > li:not(.menu-item-has-children) > a {
		width: 100%;
		min-height: 46px;
		padding: 0;
		background: transparent;
		color: #ffffff;
		font-family: var(--zaza-display-font);
		font-size: 1rem;
		font-weight: 400;
		letter-spacing: 0.035em;
		line-height: 1;
		text-transform: uppercase;
	}

	.zaza-dropdown-toggle {
		position: static;
		width: 42px;
		height: 42px;
		margin: 0;
		border: 0;
		background: transparent;
	}

	.zaza-nav-menu .sub-menu {
		grid-column: 1 / -1;
		width: 100%;
		max-height: 0;
		padding: 0;
		background: rgba(0, 0, 0, 0.2);
	}

	.zaza-nav-menu li.is-open > .sub-menu {
		max-height: 420px;
		padding: 8px 14px;
	}

	.zaza-nav-menu .sub-menu a {
		min-height: 40px;
		padding: 0;
		color: rgba(255, 255, 255, 0.82);
		font-family: var(--zaza-body-font);
		font-size: 0.9rem;
		font-weight: 700;
		letter-spacing: 0;
		text-transform: none;
	}
}

/* Requested final pass: centered desktop nav, readable labels, and up-right category arrows. */
@media (min-width: 901px) {
	.zaza-header__inner {
		grid-template-columns: minmax(160px, 240px) minmax(0, 1fr) minmax(96px, 170px);
		min-height: 104px;
		padding-right: clamp(30px, 3vw, 56px);
		padding-left: clamp(30px, 3vw, 56px);
		gap: clamp(22px, 2.4vw, 42px);
	}

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

	.zaza-header__brand-logo {
		width: 74px;
		height: 74px;
	}

	.zaza-nav {
		justify-self: center;
		width: 100%;
		min-width: 0;
		overflow: visible;
	}

	.zaza-nav-menu {
		justify-content: center;
		align-content: center;
		width: 100%;
		min-width: 0;
		max-width: 1240px;
		margin-right: auto;
		margin-left: auto;
		gap: 12px clamp(18px, 1.35vw, 28px);
	}

	.zaza-nav-menu > li {
		display: inline-flex;
		align-items: center;
		flex: 0 0 auto;
	}

	.zaza-nav-menu > li > a {
		min-height: 38px;
		padding: 0;
		font-size: clamp(1.06rem, 0.98vw, 1.18rem);
		letter-spacing: 0.035em;
		line-height: 1;
		white-space: nowrap;
	}

	.zaza-dropdown-toggle {
		position: static;
		flex: 0 0 auto;
		width: 18px;
		height: 28px;
		margin: 0 0 0 4px;
		border: 0;
		background: transparent;
		color: #ffffff;
	}

	.zaza-dropdown-toggle::before {
		content: "\25BE";
		width: auto;
		height: auto;
		border: 0;
		font-family: Arial, Helvetica, sans-serif;
		font-size: 1rem;
		font-weight: 700;
		line-height: 1;
		transform: none;
	}

	.zaza-nav-menu li.is-open > .zaza-dropdown-toggle::before {
		transform: rotate(180deg);
	}

	.zaza-nav-menu .sub-menu a {
		font-family: var(--zaza-body-font);
		font-size: 0.86rem;
		font-weight: 700;
		letter-spacing: 0;
		text-transform: none;
	}

	.zaza-header__cart {
		justify-self: end;
		min-height: 48px;
		padding: 0 25px;
		font-size: 1rem;
	}
}

@media (min-width: 901px) and (max-width: 1380px) {
	.zaza-header__inner {
		grid-template-columns: minmax(86px, 120px) minmax(0, 1fr) minmax(84px, 128px);
		min-height: 96px;
		padding-right: 22px;
		padding-left: 22px;
		gap: 18px;
	}

	.zaza-header__brand-name {
		display: none;
	}

	.zaza-header__brand-logo {
		width: 64px;
		height: 64px;
	}

	.zaza-nav-menu {
		gap: 10px clamp(12px, 1vw, 18px);
	}

	.zaza-nav-menu > li > a,
	.zaza-header__cart {
		font-size: clamp(0.92rem, 0.88vw, 1rem);
	}
}

@media (min-width: 901px) and (max-width: 1120px) {
	.zaza-header__inner {
		grid-template-columns: minmax(72px, 96px) minmax(0, 1fr) minmax(76px, 112px);
	}

	.zaza-nav-menu {
		gap: 8px 12px;
	}

	.zaza-nav-menu > li > a,
	.zaza-header__cart {
		font-size: clamp(0.84rem, 0.86vw, 0.95rem);
	}
}

.zaza-categories .zaza-category-card:not(.zaza-category-card--placeholder) .zaza-category-card__body {
	padding-right: 64px;
}

.zaza-categories .zaza-category-card:not(.zaza-category-card--placeholder) .zaza-category-card__cta {
	position: absolute;
	right: 0;
	bottom: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	padding: 0;
	border-radius: 999px;
	background: var(--zaza-gold);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
	color: #151715;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1;
	text-indent: 0;
	transform: none;
}

.zaza-categories .zaza-category-card:not(.zaza-category-card--placeholder) .zaza-category-card__cta::before {
	content: none;
}

@media (max-width: 900px) {
	.zaza-dropdown-toggle::before {
		content: "\25BE";
		width: auto;
		height: auto;
		border: 0;
		font-family: Arial, Helvetica, sans-serif;
		font-size: 1rem;
		font-weight: 700;
		line-height: 1;
		transform: none;
	}

	.zaza-nav-menu li.is-open > .zaza-dropdown-toggle::before {
		transform: rotate(180deg);
	}
}

@media (max-width: 600px) {
	.zaza-categories .zaza-category-card:not(.zaza-category-card--placeholder) .zaza-category-card__body {
		padding-right: 42px;
	}

	.zaza-categories .zaza-category-card:not(.zaza-category-card--placeholder) .zaza-category-card__cta {
		width: 34px;
		height: 34px;
		font-size: 1rem;
	}
}

/* Global storefront footer enforcement. */
body.zaza-storefront-page footer.wp-block-template-part:not(.zaza-footer),
body.zaza-storefront-page .wp-site-blocks > footer.wp-block-template-part:not(.zaza-footer) {
	display: none !important;
}

body.zaza-storefront-page .zaza-footer {
	display: block;
	clear: both;
	width: 100vw;
	margin-right: 0;
	margin-left: calc(50% - 50vw);
	background: #050706;
	color: #ffffff;
}

/* Quick visual correction: readable nav, clear dropdown chevrons, cleaner cards/promo. */
@media (min-width: 901px) {
	.zaza-header__inner {
		min-height: 104px;
		padding-right: clamp(32px, 3vw, 56px);
		padding-left: clamp(32px, 3vw, 56px);
		gap: clamp(28px, 2.8vw, 52px);
	}

	.zaza-header__brand-logo {
		width: 74px;
		height: 74px;
	}

	.zaza-nav-menu {
		gap: 14px clamp(20px, 1.45vw, 30px);
	}

	.zaza-nav-menu > li > a {
		min-height: 38px;
		font-size: clamp(1rem, 0.94vw, 1.14rem);
		letter-spacing: 0.035em;
	}

	.zaza-dropdown-toggle {
		width: 18px;
		height: 28px;
		margin-left: 3px;
		color: #ffffff;
	}

	.zaza-dropdown-toggle::before {
		content: "\25BE";
		width: auto;
		height: auto;
		border: 0;
		color: currentColor;
		font-family: Arial, Helvetica, sans-serif;
		font-size: 0.95rem;
		font-weight: 700;
		line-height: 1;
		transform: none;
		transition: transform 160ms ease;
	}

	.zaza-nav-menu li.is-open > .zaza-dropdown-toggle::before {
		transform: rotate(180deg);
	}

	.zaza-nav-menu .sub-menu a {
		font-family: var(--zaza-body-font);
		font-size: 0.86rem;
		font-weight: 700;
		letter-spacing: 0;
		text-transform: none;
	}
}

@media (min-width: 901px) and (max-width: 1280px) {
	.zaza-nav-menu > li > a,
	.zaza-header__cart {
		font-size: 0.94rem;
	}

	.zaza-nav-menu {
		gap: 12px 16px;
	}
}

.zaza-categories .zaza-category-card:not(.zaza-category-card--placeholder) .zaza-category-card__body {
	padding-right: 62px;
}

.zaza-categories .zaza-category-card:not(.zaza-category-card--placeholder) .zaza-category-card__cta {
	right: 0;
	bottom: 0;
	width: 48px;
	height: 48px;
	border-radius: 999px;
	background: var(--zaza-gold);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
	color: #151715;
	font-size: 0;
}

.zaza-categories .zaza-category-card:not(.zaza-category-card--placeholder) .zaza-category-card__cta::before {
	content: "↗";
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.28rem;
	font-weight: 700;
	line-height: 1;
	transform: translate(0, -1px);
}

.zaza-promo {
	grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
}

.zaza-promo__media {
	min-height: clamp(300px, 30vw, 420px);
	background-color: #ffffff;
	background-repeat: no-repeat;
	background-size: auto 78%;
}

.zaza-promo:hover .zaza-promo__media {
	transform: none;
}

@media (max-width: 900px) {
	.zaza-dropdown-toggle::before {
		content: "\25BE";
		width: auto;
		height: auto;
		border: 0;
		font-family: Arial, Helvetica, sans-serif;
		font-size: 1rem;
		font-weight: 700;
		line-height: 1;
		transform: none;
	}

	.zaza-nav-menu li.is-open > .zaza-dropdown-toggle::before {
		transform: rotate(180deg);
	}

	.zaza-promo {
		grid-template-columns: 1fr;
	}

	.zaza-promo__media {
		min-height: 260px;
		background-size: auto 80%;
	}
}

@media (max-width: 600px) {
	.zaza-categories .zaza-category-card:not(.zaza-category-card--placeholder) .zaza-category-card__body {
		padding-right: 42px;
	}

	.zaza-categories .zaza-category-card:not(.zaza-category-card--placeholder) .zaza-category-card__cta {
		width: 34px;
		height: 34px;
	}

	.zaza-categories .zaza-category-card:not(.zaza-category-card--placeholder) .zaza-category-card__cta::before {
		font-size: 1rem;
	}
}

/* Reference-inspired visual polish, original to The Zaza Club. */
.zaza-home,
.zaza-entry-popups,
.zaza-header {
	--zaza-display-font: "Arial Narrow", "Roboto Condensed", "Helvetica Neue Condensed", Impact, Haettenschweiler, sans-serif;
	--zaza-body-font: Arial, Helvetica, sans-serif;
	font-family: var(--zaza-body-font);
}

.zaza-header {
	background: #030504;
}

.zaza-header__inner {
	width: min(1760px, calc(100% - 72px));
	min-height: 96px;
	gap: 28px;
}

.zaza-header__brand {
	min-width: 245px;
	gap: 14px;
}

.zaza-header__brand-logo {
	width: 72px;
	height: 72px;
	border-color: rgba(255, 255, 255, 0.22);
	box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.05);
}

.zaza-header__brand-name,
.zaza-nav-menu a,
.zaza-footer__brand,
.zaza-footer__nav a {
	font-family: var(--zaza-display-font);
	font-weight: 900;
	line-height: 0.95;
}

.zaza-header__brand-name {
	font-size: 1.18rem;
}

.zaza-nav-menu {
	gap: 4px;
}

.zaza-nav-menu a {
	min-height: 50px;
	padding: 0 11px;
	color: rgba(255, 255, 255, 0.92);
	font-size: 0.86rem;
	text-transform: uppercase;
}

.zaza-nav-menu a:hover,
.zaza-nav-menu a:focus-visible,
.zaza-nav-menu > li.is-open > a {
	background: rgba(255, 255, 255, 0.1);
}

.zaza-header__cart {
	min-height: 42px;
	border-radius: 999px;
	font-family: var(--zaza-display-font);
	font-size: 0.86rem;
	font-weight: 900;
}

.zaza-hero {
	min-height: clamp(520px, 41vw, 740px);
}

.zaza-hero__slide::before {
	background-position: center;
}

.zaza-hero__slide::after {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.05));
}

.zaza-hero__inner {
	min-height: clamp(520px, 41vw, 740px);
	padding: clamp(78px, 7vw, 132px) 0 clamp(74px, 7vw, 118px);
}

.zaza-hero__copy {
	max-width: min(780px, 92vw);
	padding: 0;
}

.zaza-hero__headline {
	color: #080d0b;
	font-family: var(--zaza-display-font);
	font-size: clamp(3rem, 6vw, 6.6rem);
	font-weight: 900;
	line-height: 0.88;
	text-transform: uppercase;
	text-shadow: 0 2px 0 rgba(255, 255, 255, 0.24);
}

.zaza-button,
.zaza-hero__button,
.zaza-product-card__button,
.zaza-section__link,
.zaza-category-card__cta {
	font-family: var(--zaza-display-font);
	font-weight: 900;
	text-transform: uppercase;
}

.zaza-hero__button {
	min-height: 46px;
	margin-top: 22px;
	padding: 0 26px;
	border-radius: 5px;
	box-shadow: 0 12px 24px rgba(17, 20, 19, 0.16);
}

.zaza-section {
	width: min(1280px, calc(100% - 44px));
	padding: clamp(52px, 6vw, 88px) 0;
}

.zaza-section__header {
	margin-bottom: 24px;
}

.zaza-section__title,
.zaza-promo__title,
.zaza-category-card__title,
.zaza-reviews .zaza-section__title {
	font-family: var(--zaza-display-font);
	font-weight: 900;
	line-height: 0.9;
	text-transform: uppercase;
}

.zaza-section__title,
.zaza-promo__title {
	font-size: clamp(2.2rem, 4vw, 4.6rem);
}

.zaza-eyebrow,
.zaza-modal__eyebrow {
	font-family: var(--zaza-display-font);
	font-weight: 900;
}

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

.zaza-product-card {
	border-radius: 7px;
	box-shadow: 0 12px 34px rgba(17, 20, 19, 0.08);
}

.zaza-product-card__media {
	aspect-ratio: 4 / 4.6;
	padding: 14px;
	background: #ffffff;
}

.zaza-product-card__body {
	gap: 10px;
	padding: 15px;
	text-align: center;
}

.zaza-product-card__title {
	display: -webkit-box;
	min-height: 2.7em;
	overflow: hidden;
	font-size: 0.98rem;
	font-weight: 900;
	line-height: 1.32;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.zaza-product-card__price {
	color: #111413;
	font-size: 0.94rem;
}

.zaza-product-card__button {
	min-height: 40px;
	border-radius: 5px;
	font-size: 0.82rem;
}

.zaza-category-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
}

.zaza-category-card {
	min-height: 285px;
	border-radius: 8px;
	box-shadow: 0 16px 40px rgba(17, 20, 19, 0.12);
}

.zaza-category-card::after {
	background: linear-gradient(180deg, rgba(17, 20, 19, 0.02), rgba(17, 20, 19, 0.68));
}

.zaza-category-card__body {
	right: 18px;
	bottom: 18px;
	left: 18px;
	gap: 10px;
}

.zaza-category-card__title {
	font-size: clamp(1.25rem, 2vw, 1.9rem);
}

.zaza-category-card__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	padding: 0;
	border-radius: 50%;
	font-size: 0;
}

.zaza-category-card__cta::before {
	content: ">";
	font-size: 1rem;
	line-height: 1;
}

.zaza-trust-strip {
	gap: 12px;
	padding-top: 24px;
	padding-bottom: 24px;
}

.zaza-trust-strip__item {
	min-height: 100px;
	padding: 18px;
	border-radius: 7px;
}

.zaza-section.zaza-reviews {
	padding-top: clamp(52px, 6vw, 80px);
	padding-bottom: clamp(62px, 6vw, 92px);
}

.zaza-review-grid {
	gap: 18px;
}

.zaza-review {
	min-height: 210px;
	padding: 28px;
	border-radius: 8px;
}

.zaza-review p {
	font-size: 1rem;
	line-height: 1.58;
}

.zaza-footer__inner {
	width: min(1280px, calc(100% - 44px));
	padding: 38px 0 34px;
}

@media (min-width: 901px) and (max-width: 1380px) {
	.zaza-header__inner {
		width: min(1280px, calc(100% - 28px));
		gap: 14px;
	}

	.zaza-header__brand {
		min-width: 188px;
	}

	.zaza-header__brand-logo {
		width: 54px;
		height: 54px;
	}

	.zaza-header__brand-name {
		font-size: 0.98rem;
	}

	.zaza-nav-menu a {
		padding: 0 6px;
		font-size: 0.7rem;
	}
}

@media (max-width: 900px) {
	.zaza-header__inner {
		display: grid;
		grid-template-columns: 46px minmax(0, 1fr) 46px;
		width: min(100% - 24px, 1280px);
		min-height: 68px;
		gap: 10px;
	}

	.zaza-nav-toggle {
		order: 1;
		width: 44px;
		height: 44px;
	}

	.zaza-header__brand {
		order: 2;
		justify-self: center;
		min-width: 0;
		gap: 9px;
	}

	.zaza-header__brand-logo {
		width: 42px;
		height: 42px;
	}

	.zaza-header__brand-name {
		max-width: 155px;
		overflow: hidden;
		font-size: 0.9rem;
		text-overflow: ellipsis;
	}

	.zaza-header__cart {
		order: 3;
		justify-self: end;
		width: 44px;
		min-width: 44px;
		height: 44px;
		padding: 0;
		font-size: 0;
	}

	.zaza-header__cart::after {
		content: "";
		width: 16px;
		height: 16px;
		border: 2px solid currentColor;
		border-top: 0;
		border-radius: 0 0 4px 4px;
	}

	.zaza-header__cart::before {
		content: "";
		position: absolute;
		top: 12px;
		width: 10px;
		height: 7px;
		border: 2px solid currentColor;
		border-bottom: 0;
		border-radius: 8px 8px 0 0;
	}

	.zaza-nav {
		order: 4;
		grid-column: 1 / -1;
	}

	.zaza-nav-menu a {
		min-height: 48px;
		font-size: 0.86rem;
	}

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

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

@media (max-width: 600px) {
	.zaza-header__inner {
		grid-template-columns: 44px minmax(0, 1fr) 44px;
		width: min(100% - 18px, 1280px);
		min-height: 64px;
	}

	.zaza-header__brand-logo {
		width: 38px;
		height: 38px;
	}

	.zaza-header__brand-name {
		max-width: 132px;
		font-size: 0.78rem;
	}

	.zaza-hero {
		min-height: 380px;
	}

	.zaza-hero__inner {
		width: min(100% - 24px, 1180px);
		min-height: 380px;
		padding: 58px 0 74px;
	}

	.zaza-hero__headline {
		font-size: clamp(2.25rem, 12vw, 3.25rem);
		line-height: 0.9;
	}

	.zaza-hero__button {
		min-height: 40px;
		margin-top: 16px;
		padding: 0 18px;
		font-size: 0.82rem;
	}

	.zaza-section {
		width: min(100% - 24px, 1180px);
		padding: 40px 0;
	}

	.zaza-section__header {
		display: grid;
		gap: 8px;
		margin-bottom: 18px;
	}

	.zaza-section__title,
	.zaza-promo__title,
	.zaza-reviews .zaza-section__title {
		font-size: 2.05rem;
	}

	.zaza-product-grid,
	.zaza-category-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
	}

	.zaza-product-card__media {
		aspect-ratio: 4 / 4.4;
		padding: 8px;
	}

	.zaza-product-card__body {
		gap: 7px;
		padding: 10px;
	}

	.zaza-product-card__title {
		font-size: 0.78rem;
	}

	.zaza-product-card__price {
		font-size: 0.78rem;
	}

	.zaza-product-card__button {
		min-height: 34px;
		padding: 0 7px;
		font-size: 0.68rem;
	}

	.zaza-category-card {
		min-height: 165px;
	}

	.zaza-category-card__body {
		right: 12px;
		bottom: 12px;
		left: 12px;
	}

	.zaza-category-card__title {
		font-size: 1rem;
	}

	.zaza-category-card__cta {
		width: 30px;
		height: 30px;
	}

	.zaza-trust-strip {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 8px;
		padding: 14px 12px;
	}

	.zaza-trust-strip__item {
		min-height: 94px;
		padding: 13px;
	}

	.zaza-trust-strip__item strong {
		font-size: 0.82rem;
	}

	.zaza-trust-strip__item span {
		font-size: 0.74rem;
	}

	.zaza-section.zaza-reviews {
		padding: 38px 14px 48px;
	}

	.zaza-reviews .zaza-section__header {
		margin-bottom: 18px;
		text-align: center;
	}

	.zaza-review-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.zaza-review {
		min-height: 0;
		padding: 22px;
	}

	.zaza-footer__inner {
		width: min(100% - 32px, 1180px);
		padding: 34px 0 92px;
		text-align: center;
	}

	.zaza-footer__top {
		display: grid;
		gap: 24px;
		justify-items: center;
	}

	.zaza-footer__brand {
		justify-content: center;
		width: 100%;
	}

	.zaza-footer__nav {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		width: min(100%, 360px);
		gap: 12px 24px;
		justify-items: center;
		text-align: center;
	}

	.zaza-footer__meta {
		display: grid;
		justify-items: center;
		text-align: center;
	}
}

/* Category alignment quick fix. */
.zaza-categories .zaza-section__header {
	display: grid;
	justify-content: center;
	justify-items: center;
	max-width: 760px;
	margin-right: auto;
	margin-bottom: 30px;
	margin-left: auto;
	text-align: center;
}

.zaza-categories .zaza-eyebrow,
.zaza-categories .zaza-section__title {
	width: 100%;
	text-align: center;
}

.zaza-categories .zaza-category-grid {
	width: min(100%, 1280px);
	margin-right: auto;
	margin-left: auto;
	justify-content: center;
}

.zaza-categories .zaza-category-card__body {
	display: block;
	min-height: 44px;
	padding-right: 54px;
}

.zaza-categories .zaza-category-card__title {
	display: block;
}

.zaza-categories .zaza-category-card:not(.zaza-category-card--placeholder) .zaza-category-card__cta {
	position: absolute;
	right: 0;
	bottom: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.32);
	border-radius: 999px;
	background: linear-gradient(135deg, #f6cf43 0%, #b7f16f 100%);
	box-shadow: 0 12px 26px rgba(0, 0, 0, 0.24);
	color: #050706;
	font-size: 0;
	transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.zaza-categories .zaza-category-card:not(.zaza-category-card--placeholder) .zaza-category-card__cta::before {
	content: ">";
	font-size: 1.08rem;
	font-weight: 900;
	line-height: 1;
	transform: translateX(1px);
}

.zaza-categories .zaza-category-card:not(.zaza-category-card--placeholder):hover .zaza-category-card__cta,
.zaza-categories .zaza-category-card:not(.zaza-category-card--placeholder):focus-visible .zaza-category-card__cta {
	background: linear-gradient(135deg, #ffe076 0%, #c9ff7f 100%);
	box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
	transform: translateY(-2px);
}

.zaza-categories .zaza-category-card--placeholder .zaza-category-card__cta {
	width: auto;
	min-width: 54px;
	height: 32px;
	padding: 0 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.9);
	font-size: 0.72rem;
}

.zaza-categories .zaza-category-card--placeholder .zaza-category-card__cta::before {
	content: none;
}

@media (max-width: 600px) {
	.zaza-categories .zaza-section__header {
		margin-bottom: 18px;
	}

	.zaza-categories .zaza-category-card__body {
		min-height: 36px;
		padding-right: 40px;
	}

	.zaza-categories .zaza-category-card:not(.zaza-category-card--placeholder) .zaza-category-card__cta {
		width: 32px;
		height: 32px;
	}

	.zaza-categories .zaza-category-card:not(.zaza-category-card--placeholder) .zaza-category-card__cta::before {
		font-size: 0.96rem;
	}
}

/* Storefront visual alignment pass, original to The Zaza Club. */
body.zaza-storefront-page,
.zaza-home,
.zaza-header {
	--zaza-display-font: "Arial Narrow", "Roboto Condensed", "Helvetica Neue Condensed", Impact, Haettenschweiler, sans-serif;
	--zaza-body-font: Arial, Helvetica, sans-serif;
	--zaza-black: #030504;
	--zaza-cream: #f7f8f2;
	--zaza-gold: #f6cf43;
	--zaza-lime: #b7f16f;
	--zaza-ink-soft: #262c28;
	font-family: var(--zaza-body-font);
}

body.zaza-storefront-page :where(h1, h2, h3, .page-title, .product_title, .entry-title, .woocommerce-loop-product__title, .zaza-section__title, .zaza-category-card__title, .zaza-nav-menu a, .zaza-button, button, .button) {
	letter-spacing: 0;
}

.zaza-header {
	background: var(--zaza-black);
	box-shadow: none;
}

.zaza-header::before {
	height: 0;
	background: var(--zaza-black);
}

.zaza-header__inner {
	width: min(1760px, calc(100% - 80px));
	min-height: 98px;
	gap: 30px;
}

.zaza-header__brand-logo {
	width: 74px;
	height: 74px;
}

.zaza-header__brand-name,
.zaza-nav-menu a,
.zaza-header__cart {
	font-family: var(--zaza-display-font);
	font-weight: 900;
	line-height: 0.95;
	text-transform: uppercase;
}

.zaza-header__brand-name {
	font-size: 1.18rem;
}

.zaza-nav-menu {
	justify-content: center;
	gap: 5px;
}

.zaza-nav-menu a {
	min-height: 52px;
	padding: 0 11px;
	color: rgba(255, 255, 255, 0.94);
	font-size: 0.9rem;
}

.zaza-header__cart {
	min-height: 44px;
	padding: 0 18px;
	border-color: rgba(255, 255, 255, 0.28);
	border-radius: 999px;
	font-size: 0.9rem;
}

.zaza-hero {
	height: clamp(430px, 38vw, 720px);
	min-height: 0;
}

.zaza-hero__inner {
	min-height: 100%;
	padding: clamp(58px, 6vw, 104px) 0 clamp(58px, 6vw, 102px);
}

.zaza-hero__slide::before {
	background-position: center center;
	background-size: cover;
	transform: scale(1.015);
}

.zaza-hero__slide::after {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.06));
}

.zaza-hero__headline {
	color: #050706;
	font-family: var(--zaza-display-font);
	font-size: clamp(3.2rem, 6.7vw, 7.4rem);
	font-weight: 900;
	line-height: 0.86;
	text-transform: uppercase;
	text-shadow: 0 2px 0 rgba(255, 255, 255, 0.34);
}

.zaza-hero__button,
.zaza-product-card__button,
.zaza-shop-button,
body.single-product .single_add_to_cart_button,
body.single-product .woocommerce a.button,
body.single-product .woocommerce button.button {
	border-radius: 6px;
	font-family: var(--zaza-display-font);
	font-weight: 900;
	text-transform: uppercase;
}

.zaza-section {
	width: min(1360px, calc(100% - 56px));
	padding: clamp(54px, 6vw, 92px) 0;
}

.zaza-section__header {
	margin-bottom: 30px;
}

.zaza-section__title,
.zaza-promo__title,
.zaza-reviews .zaza-section__title,
.zaza-category-card__title {
	font-family: var(--zaza-display-font);
	font-weight: 900;
	line-height: 0.88;
	text-transform: uppercase;
}

.zaza-section__title,
.zaza-promo__title {
	font-size: clamp(2.8rem, 5.2vw, 6.2rem);
}

.zaza-product-grid {
	gap: 24px;
}

.zaza-product-card {
	border-radius: 8px;
	box-shadow: 0 14px 34px rgba(17, 20, 19, 0.08);
}

.zaza-product-card__media {
	aspect-ratio: 4 / 5.2;
	padding: 12px;
	background: #ffffff;
}

.zaza-product-card__title {
	min-height: 2.55em;
	font-family: var(--zaza-display-font);
	font-size: clamp(0.95rem, 1.2vw, 1.16rem);
	font-weight: 900;
	line-height: 1.18;
	text-transform: uppercase;
}

.zaza-product-card__price {
	color: var(--zaza-black);
}

.zaza-product-card__button {
	min-height: 42px;
	background: var(--zaza-black);
	font-size: 0.86rem;
}

.zaza-categories {
	width: min(1480px, calc(100% - 56px));
}

.zaza-categories .zaza-section__header {
	max-width: 920px;
	margin-bottom: 36px;
}

.zaza-categories .zaza-section__title {
	font-size: clamp(3rem, 5.4vw, 6.4rem);
}

.zaza-categories .zaza-category-grid {
	width: 100%;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
}

.zaza-categories .zaza-category-card {
	min-height: clamp(320px, 25vw, 430px);
	border-radius: 8px;
	box-shadow: 0 18px 44px rgba(17, 20, 19, 0.14);
}

.zaza-categories .zaza-category-card::after {
	background: linear-gradient(180deg, rgba(5, 7, 6, 0.02) 12%, rgba(5, 7, 6, 0.68) 100%);
}

.zaza-categories .zaza-category-card__body {
	right: 20px;
	bottom: 20px;
	left: 20px;
	min-height: 48px;
	padding-right: 58px;
}

.zaza-categories .zaza-category-card__title {
	font-size: clamp(1.55rem, 2.2vw, 2.25rem);
	text-shadow: 0 2px 18px rgba(0, 0, 0, 0.26);
}

.zaza-categories .zaza-category-card:not(.zaza-category-card--placeholder) .zaza-category-card__cta {
	width: 46px;
	height: 46px;
	background: linear-gradient(135deg, var(--zaza-gold), var(--zaza-lime));
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
}

.zaza-trust-strip {
	gap: 14px;
	padding-top: 26px;
	padding-bottom: 26px;
}

.zaza-trust-strip__item {
	min-height: 104px;
	padding: 20px;
}

.zaza-section.zaza-reviews {
	padding-top: clamp(56px, 6vw, 86px);
	padding-bottom: clamp(64px, 7vw, 100px);
}

.zaza-review-grid {
	gap: 22px;
}

.zaza-review {
	min-height: 196px;
	padding: 30px;
}

.zaza-footer__inner {
	width: min(1360px, calc(100% - 56px));
	padding: 44px 0 40px;
}

body.single-product.zaza-storefront-page {
	background: #f6f7f3;
	color: #111413;
}

body.single-product.zaza-storefront-page .wp-site-blocks {
	background: #f6f7f3;
}

body.single-product.zaza-storefront-page .wp-site-blocks > main {
	padding: clamp(34px, 4vw, 62px) 20px clamp(72px, 7vw, 110px);
}

body.single-product .woocommerce {
	max-width: 1360px;
	margin: 0 auto;
	font-family: var(--zaza-body-font);
}

body.single-product .woocommerce-breadcrumb {
	margin: 0 0 22px;
	color: #5f6862;
	font-size: 0.86rem;
}

body.single-product .woocommerce-breadcrumb a {
	color: #111413;
	text-underline-offset: 4px;
}

body.single-product .woocommerce div.product {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.82fr);
	gap: clamp(28px, 4vw, 58px);
	align-items: start;
}

body.single-product .woocommerce div.product div.images,
body.single-product .woocommerce div.product div.summary {
	float: none;
	width: auto;
	margin: 0;
}

body.single-product .woocommerce div.product div.images {
	position: sticky;
	top: 22px;
}

body.single-product .woocommerce-product-gallery,
body.single-product .woocommerce-product-gallery__wrapper {
	border-radius: 10px;
	background: #ffffff;
	overflow: hidden;
}

body.single-product .woocommerce div.product div.images img {
	width: 100%;
	min-height: clamp(420px, 48vw, 720px);
	padding: clamp(16px, 2.2vw, 32px);
	background: #ffffff;
	object-fit: contain;
}

body.single-product .woocommerce div.product .summary {
	padding: clamp(8px, 1vw, 14px) 0;
}

body.single-product .product_title.entry-title {
	margin: 0 0 14px;
	font-family: var(--zaza-display-font);
	font-size: clamp(2.8rem, 5vw, 5.8rem);
	font-weight: 900;
	line-height: 0.9;
	text-transform: uppercase;
}

body.single-product .woocommerce div.product p.price,
body.single-product .woocommerce div.product span.price {
	margin: 0 0 22px;
	color: #111413;
	font-size: clamp(1.15rem, 1.8vw, 1.5rem);
	font-weight: 900;
}

body.single-product .woocommerce-product-details__short-description {
	color: #424b45;
	font-size: 1rem;
	line-height: 1.65;
}

body.single-product .woocommerce div.product form.cart {
	display: grid;
	gap: 14px;
	margin: 26px 0;
}

body.single-product .woocommerce div.product form.cart .variations {
	width: 100%;
	margin: 0;
}

body.single-product .woocommerce div.product form.cart .variations tr {
	display: grid;
	gap: 8px;
	margin-bottom: 12px;
}

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

body.single-product .woocommerce div.product form.cart .variations label {
	font-family: var(--zaza-display-font);
	font-size: 0.92rem;
	font-weight: 900;
	text-transform: uppercase;
}

body.single-product .woocommerce div.product form.cart select,
body.single-product .woocommerce div.product form.cart .quantity .qty {
	width: 100%;
	min-height: 48px;
	border: 1px solid rgba(17, 20, 19, 0.16);
	border-radius: 6px;
	background: #ffffff;
	color: #111413;
}

body.single-product .woocommerce div.product form.cart .quantity {
	float: none;
	width: 96px;
	margin: 0;
}

body.single-product .woocommerce div.product form.cart .woocommerce-variation-add-to-cart {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
}

body.single-product .woocommerce div.product form.cart .single_add_to_cart_button {
	float: none;
	width: min(100%, 420px);
	min-height: 52px;
	margin: 0;
	background: #030504;
	color: #ffffff;
	font-size: 0.96rem;
}

body.single-product .woocommerce div.product .product_meta,
body.single-product .woocommerce-tabs {
	margin-top: 28px;
	color: #555f59;
}

body.single-product .woocommerce-tabs ul.tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 18px;
	padding: 0;
	border: 0;
}

body.single-product .woocommerce-tabs ul.tabs::before {
	display: none;
}

body.single-product .woocommerce-tabs ul.tabs li {
	margin: 0;
	border: 1px solid rgba(17, 20, 19, 0.14);
	border-radius: 999px;
	background: #ffffff;
}

body.single-product .woocommerce-tabs ul.tabs li a {
	padding: 11px 18px;
	font-family: var(--zaza-display-font);
	font-weight: 900;
	text-transform: uppercase;
}

@media (min-width: 901px) and (max-width: 1500px) {
	.zaza-header__inner {
		width: min(1320px, calc(100% - 32px));
		gap: 14px;
	}

	.zaza-header__brand {
		min-width: 190px;
	}

	.zaza-header__brand-logo {
		width: 56px;
		height: 56px;
	}

	.zaza-nav-menu a {
		padding: 0 7px;
		font-size: 0.76rem;
	}
}

@media (max-width: 900px) {
	.zaza-header__inner {
		width: min(100% - 24px, 1320px);
		min-height: 70px;
	}

	.zaza-hero {
		height: clamp(360px, 60vw, 520px);
	}

	.zaza-categories .zaza-category-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 16px;
	}

	.zaza-categories .zaza-category-card {
		min-height: 260px;
	}

	body.single-product .woocommerce div.product {
		grid-template-columns: 1fr;
	}

	body.single-product .woocommerce div.product div.images {
		position: static;
	}
}

@media (max-width: 600px) {
	.zaza-header__inner {
		min-height: 64px;
	}

	.zaza-hero {
		height: clamp(300px, 76vw, 390px);
	}

	.zaza-hero__inner {
		padding: 46px 0 62px;
	}

	.zaza-hero__headline {
		font-size: clamp(2.15rem, 12vw, 3.25rem);
	}

	.zaza-section {
		width: min(100% - 24px, 1180px);
		padding: 42px 0;
	}

	.zaza-section__title,
	.zaza-promo__title,
	.zaza-categories .zaza-section__title {
		font-size: clamp(2.1rem, 11vw, 3.15rem);
	}

	.zaza-product-grid,
	.zaza-categories .zaza-category-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
	}

	.zaza-product-card__media {
		aspect-ratio: 4 / 4.7;
	}

	.zaza-categories .zaza-category-card {
		min-height: 172px;
	}

	.zaza-categories .zaza-category-card__body {
		right: 12px;
		bottom: 12px;
		left: 12px;
		min-height: 34px;
		padding-right: 38px;
	}

	.zaza-categories .zaza-category-card__title {
		font-size: 1.08rem;
	}

	.zaza-categories .zaza-category-card:not(.zaza-category-card--placeholder) .zaza-category-card__cta {
		width: 32px;
		height: 32px;
	}

	.zaza-trust-strip {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		padding: 14px 12px;
	}

	.zaza-review {
		padding: 22px;
	}

	body.single-product.zaza-storefront-page .wp-site-blocks > main {
		padding: 24px 12px 72px;
	}

	body.single-product .woocommerce div.product {
		gap: 22px;
	}

	body.single-product .woocommerce div.product div.images img {
		min-height: 320px;
		padding: 12px;
	}

	body.single-product .product_title.entry-title {
		font-size: clamp(2.25rem, 12vw, 3.4rem);
	}

	body.single-product .woocommerce div.product form.cart .single_add_to_cart_button {
		width: 100%;
	}

	body.single-product .woocommerce div.product form.cart .woocommerce-variation-add-to-cart {
		display: grid;
		grid-template-columns: 1fr;
	}

body.single-product .woocommerce div.product form.cart .quantity {
		width: 100%;
	}
}

/* Typography scale correction: keep the Zaza look without oversized archive/nav text. */
.zaza-header__inner {
	width: min(1580px, calc(100% - 40px));
	min-height: 78px;
	gap: 18px;
}

.zaza-header__brand {
	min-width: 238px;
	gap: 12px;
}

.zaza-header__brand-logo {
	width: 58px;
	height: 58px;
}

.zaza-header__brand-name {
	font-size: 1rem;
	line-height: 1;
}

.zaza-nav {
	overflow: visible;
}

.zaza-nav-menu {
	justify-content: flex-end;
	gap: 2px;
}

.zaza-nav-menu a {
	min-height: 42px;
	padding: 0 6px;
	font-size: 0.72rem;
	line-height: 1;
	white-space: nowrap;
}

.zaza-header__cart {
	min-height: 40px;
	padding: 0 15px;
	font-size: 0.76rem;
}

@media (min-width: 901px) and (max-width: 1500px) {
	.zaza-header__inner {
		width: min(100% - 26px, 1320px);
		gap: 10px;
	}

	.zaza-header__brand {
		min-width: 190px;
	}

	.zaza-header__brand-logo {
		width: 48px;
		height: 48px;
	}

	.zaza-header__brand-name {
		font-size: 0.88rem;
	}

	.zaza-nav-menu a {
		padding: 0 4px;
		font-size: 0.64rem;
	}

	.zaza-header__cart {
		padding: 0 11px;
		font-size: 0.68rem;
	}
}

/* Hero/display type correction: compact condensed promo style like the approved 4G Flower reference. */
body.zaza-storefront-page,
.zaza-home,
.zaza-header {
	--zaza-display-font: Impact, Haettenschweiler, "Arial Narrow", "Roboto Condensed", "Helvetica Neue Condensed", sans-serif;
}

.zaza-hero {
	height: clamp(430px, 36vw, 650px);
	min-height: 0;
}

.zaza-hero__inner {
	min-height: 100%;
	padding: clamp(52px, 5.4vw, 92px) 0 clamp(54px, 5.5vw, 94px);
}

.zaza-hero__copy {
	max-width: min(560px, 74vw);
	gap: 0;
	padding: 0;
}

.zaza-hero .zaza-eyebrow {
	margin: 0 0 12px;
	color: #050706;
	font-family: var(--zaza-display-font);
	font-size: clamp(0.72rem, 0.95vw, 0.95rem);
	font-weight: 900;
	line-height: 1;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.28);
}

.zaza-hero__headline {
	color: #050706;
	font-family: var(--zaza-display-font);
	font-size: clamp(3.1rem, 5vw, 5.2rem);
	font-weight: 900;
	letter-spacing: 0;
	line-height: 0.9;
	text-transform: uppercase;
	text-shadow: 0 2px 0 rgba(255, 255, 255, 0.26);
}

.zaza-hero__button {
	min-height: 46px;
	margin-top: 22px;
	padding: 0 38px;
	border-radius: 999px;
	background: #ffb72f;
	color: #050706;
	font-family: var(--zaza-display-font);
	font-size: 0.86rem;
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1;
	box-shadow: 0 14px 26px rgba(17, 20, 19, 0.18);
}

.zaza-hero__button:hover,
.zaza-hero__button:focus-visible {
	background: #ffc84f;
	color: #050706;
	transform: translateY(-1px);
}

@media (max-width: 900px) {
	.zaza-hero {
		height: clamp(340px, 58vw, 480px);
	}

	.zaza-hero__headline {
		font-size: clamp(2.55rem, 8vw, 3.7rem);
	}
}

@media (max-width: 600px) {
	.zaza-hero {
		height: clamp(286px, 72vw, 360px);
	}

	.zaza-hero__inner {
		padding: 40px 0 58px;
	}

	.zaza-hero__copy {
		max-width: min(320px, 86vw);
	}

	.zaza-hero .zaza-eyebrow {
		margin-bottom: 8px;
		font-size: 0.68rem;
	}

	.zaza-hero__headline {
		font-size: clamp(2.15rem, 11vw, 3rem);
		line-height: 0.92;
	}

	.zaza-hero__button {
		min-height: 38px;
		margin-top: 15px;
		padding: 0 24px;
		font-size: 0.76rem;
	}
}

/* Header alignment correction: left logo, readable nav, ShopZaza-style row balance. */
.zaza-header {
	background: #242424;
}

.zaza-header__inner {
	width: 100%;
	max-width: none;
	min-height: 94px;
	margin: 0;
	padding: 0 22px;
	gap: 24px;
}

.zaza-header__brand {
	flex: 0 0 auto;
	min-width: 300px;
	gap: 14px;
}

.zaza-header__brand-logo {
	width: 68px;
	height: 68px;
}

.zaza-header__brand-name {
	font-size: 1.08rem;
	line-height: 1;
}

.zaza-nav {
	flex: 1 1 auto;
	min-width: 0;
}

.zaza-nav-menu {
	justify-content: flex-start;
	gap: 8px;
}

.zaza-nav-menu a {
	min-height: 46px;
	padding: 0 4px;
	font-size: 0.82rem;
	line-height: 1;
	white-space: nowrap;
}

.zaza-header__cart {
	flex: 0 0 auto;
	min-height: 44px;
	padding: 0 20px;
	font-size: 0.82rem;
}

@media (min-width: 901px) and (max-width: 1500px) {
	.zaza-header__inner {
		min-height: 84px;
		padding: 0 14px;
		gap: 14px;
	}

	.zaza-header__brand {
		min-width: 220px;
		gap: 10px;
	}

	.zaza-header__brand-logo {
		width: 56px;
		height: 56px;
	}

	.zaza-header__brand-name {
		font-size: 0.92rem;
	}

	.zaza-nav-menu {
		gap: 4px;
	}

	.zaza-nav-menu a {
		min-height: 42px;
		padding: 0 3px;
		font-size: 0.7rem;
	}

	.zaza-header__cart {
		min-height: 40px;
		padding: 0 12px;
		font-size: 0.72rem;
	}
}

/* Final desktop nav readability pass: keep the ShopZaza-style row spacious and legible. */
@media (min-width: 901px) {
	.zaza-header {
		background: #242424;
	}

	.zaza-header__inner {
		display: grid;
		grid-template-columns: auto minmax(0, 1fr) auto;
		width: 100%;
		max-width: none;
		min-height: 96px;
		padding: 0 clamp(26px, 2.6vw, 50px);
		gap: clamp(28px, 3vw, 56px);
	}

	.zaza-header__brand {
		min-width: 0;
		gap: 14px;
	}

	.zaza-header__brand-logo {
		width: 74px;
		height: 74px;
	}

	.zaza-header__brand-name {
		font-family: var(--zaza-display-font);
		font-size: clamp(1.02rem, 1vw, 1.22rem);
		line-height: 1;
		white-space: nowrap;
	}

	.zaza-nav {
		min-width: 0;
		overflow: visible;
	}

	.zaza-nav-menu {
		justify-content: center;
		gap: clamp(10px, 1vw, 22px);
	}

	.zaza-nav-menu a {
		min-height: 48px;
		padding: 0;
		font-family: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
		font-size: clamp(0.78rem, 0.78vw, 0.92rem);
		font-weight: 900;
		letter-spacing: 0.01em;
		line-height: 1;
		white-space: nowrap;
	}

	.zaza-header__cart {
		min-height: 46px;
		padding: 0 22px;
		font-family: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
		font-size: clamp(0.78rem, 0.78vw, 0.92rem);
		font-weight: 900;
		letter-spacing: 0.01em;
		white-space: nowrap;
	}
}

@media (min-width: 901px) and (max-width: 1380px) {
	.zaza-header__inner {
		min-height: 90px;
		padding: 0 22px;
		gap: 22px;
	}

	.zaza-header__brand {
		gap: 10px;
	}

	.zaza-header__brand-logo {
		width: 62px;
		height: 62px;
	}

	.zaza-header__brand-name {
		font-size: 0.95rem;
	}

	.zaza-nav-menu {
		gap: 10px;
	}

	.zaza-nav-menu a,
	.zaza-header__cart {
		font-size: 0.78rem;
	}
}

@media (min-width: 901px) and (max-width: 1180px) {
	.zaza-header__brand-name {
		display: none;
	}

	.zaza-header__inner {
		gap: 18px;
	}

	.zaza-nav-menu {
		gap: 8px;
	}
}

/* Final mobile nav containment: menu stays inside the hamburger panel, not over the hero. */
@media (max-width: 900px) {
	.zaza-header {
		position: relative;
		z-index: 80;
		background: #242424;
	}

	.zaza-header::before {
		background: #242424;
	}

	.zaza-header__inner {
		display: grid;
		grid-template-columns: 48px minmax(0, 1fr) 48px;
		width: 100%;
		min-height: 96px;
		margin: 0;
		padding: 0 18px;
		gap: 12px;
	}

	.zaza-nav-toggle {
		order: 1;
		width: 48px;
		height: 48px;
		border: 0;
		border-radius: 0;
		background: transparent;
	}

	.zaza-header__brand {
		order: 2;
		justify-self: center;
		min-width: 0;
		gap: 10px;
	}

	.zaza-header__brand-logo {
		width: 64px;
		height: 64px;
	}

	.zaza-header__brand-name {
		max-width: none;
		font-size: 1.05rem;
		text-overflow: clip;
	}

	.zaza-header__cart {
		order: 3;
		justify-self: end;
		width: 48px;
		min-width: 48px;
		height: 48px;
		min-height: 48px;
		padding: 0;
		border-color: rgba(255, 255, 255, 0.18);
		background: rgba(255, 255, 255, 0.04);
		font-size: 0;
	}

	.zaza-nav {
		position: absolute;
		top: 100%;
		right: 0;
		left: 0;
		z-index: 90;
		display: block;
		grid-column: auto;
		max-height: 0;
		margin: 0;
		padding: 0;
		background: #242424;
		box-shadow: 0 24px 46px rgba(0, 0, 0, 0.38);
		opacity: 0;
		visibility: hidden;
		overflow: hidden;
		pointer-events: none;
		transition: max-height 220ms ease, opacity 160ms ease, visibility 160ms ease;
	}

	.zaza-header.is-open .zaza-nav {
		max-height: calc(100vh - 96px);
		opacity: 1;
		visibility: visible;
		overflow-y: auto;
		pointer-events: auto;
	}

	.zaza-nav-menu {
		display: grid;
		width: 100%;
		max-width: none;
		margin: 0;
		padding: 12px 18px 20px;
		gap: 0;
		background: #242424;
	}

	.zaza-nav-menu > li {
		display: grid;
		grid-template-columns: minmax(0, 1fr) 42px;
		align-items: center;
		border-bottom: 1px solid rgba(255, 255, 255, 0.09);
	}

	.zaza-nav-menu > li:not(.menu-item-has-children) {
		grid-template-columns: 1fr;
	}

	.zaza-nav-menu a,
	.zaza-nav-menu > li:not(.menu-item-has-children) > a {
		width: 100%;
		min-height: 48px;
		padding: 0;
		border: 0;
		outline: 0;
		background: transparent;
		color: #ffffff;
		font-family: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
		font-size: 0.96rem;
		font-weight: 900;
		line-height: 1;
		text-transform: uppercase;
	}

	.zaza-nav-menu a:hover,
	.zaza-nav-menu a:focus-visible,
	.zaza-nav-menu > li.is-open > a {
		background: transparent;
		color: #ffb72f;
	}

	.zaza-dropdown-toggle {
		position: static;
		width: 42px;
		height: 42px;
		margin: 0;
		border: 0;
		border-radius: 50%;
		background: transparent;
	}

	.zaza-nav-menu .sub-menu {
		grid-column: 1 / -1;
		width: 100%;
		max-height: 0;
		padding: 0;
		background: rgba(0, 0, 0, 0.2);
	}

	.zaza-nav-menu li.is-open > .sub-menu {
		max-height: 420px;
		padding: 8px 14px;
	}

	.zaza-nav-menu .sub-menu a {
		min-height: 40px;
		padding: 0;
		color: rgba(255, 255, 255, 0.82);
		font-size: 0.86rem;
	}
}

@media (max-width: 600px) {
	.zaza-header__inner {
		min-height: 92px;
		padding: 0 16px;
	}

	.zaza-header__brand-logo {
		width: 58px;
		height: 58px;
	}

	.zaza-header__brand-name {
		font-size: 0.98rem;
	}

	.zaza-header.is-open .zaza-nav {
		max-height: calc(100vh - 92px);
	}
}

/* Final desktop nav anti-overlap fix: links keep their own width, never collapse into each other. */
@media (min-width: 901px) {
	.zaza-header__inner {
		display: grid;
		grid-template-columns: auto minmax(0, 1fr) auto;
		align-items: center;
		width: 100%;
		min-height: 100px;
		padding: 0 clamp(28px, 3vw, 56px);
		gap: clamp(28px, 3vw, 54px);
	}

	.zaza-header__brand {
		min-width: max-content;
	}

	.zaza-nav {
		min-width: 0;
		overflow-x: auto;
		overflow-y: visible;
		scrollbar-width: none;
	}

	.zaza-nav::-webkit-scrollbar {
		display: none;
	}

	.zaza-nav-menu {
		display: flex;
		flex-wrap: nowrap;
		align-items: center;
		justify-content: flex-start;
		width: max-content;
		min-width: max-content;
		margin: 0 auto;
		gap: clamp(14px, 1.15vw, 24px);
	}

	.zaza-nav-menu > li {
		flex: 0 0 auto;
		min-width: max-content;
	}

	.zaza-nav-menu a {
		flex: 0 0 auto;
		width: auto;
		min-width: max-content;
		padding: 0;
		font-size: clamp(0.82rem, 0.78vw, 0.94rem);
		white-space: nowrap;
	}

	.zaza-dropdown-toggle {
		flex: 0 0 auto;
		margin-left: -8px;
	}

	.zaza-header__cart {
		min-width: max-content;
	}
}

@media (min-width: 901px) and (max-width: 1280px) {
	.zaza-header__inner {
		padding: 0 20px;
		gap: 22px;
	}

	.zaza-header__brand-name {
		display: none;
	}

	.zaza-nav-menu {
		margin: 0;
		gap: 12px;
	}

	.zaza-nav-menu a,
	.zaza-header__cart {
		font-size: 0.8rem;
	}
}

/* Desktop nav final structure: wrap like a real ecommerce header instead of clipping or hiding items. */
@media (min-width: 901px) {
	.zaza-header {
		overflow: visible;
		background: #242424;
	}

	.zaza-header__inner {
		display: grid;
		grid-template-columns: auto minmax(0, 1fr) auto;
		align-items: center;
		width: 100%;
		max-width: none;
		min-height: 128px;
		margin: 0;
		padding: 18px clamp(38px, 3.4vw, 64px);
		gap: clamp(30px, 3vw, 54px);
	}

	.zaza-header__brand {
		min-width: 0;
		gap: 14px;
	}

	.zaza-header__brand-logo {
		width: 78px;
		height: 78px;
	}

	.zaza-header__brand-name {
		display: block;
		max-width: none;
		overflow: visible;
		font-size: clamp(1rem, 1vw, 1.16rem);
		text-overflow: clip;
		white-space: nowrap;
	}

	.zaza-nav {
		min-width: 0;
		max-width: 100%;
		overflow: visible;
	}

	.zaza-nav-menu {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		align-content: center;
		justify-content: flex-start;
		width: auto;
		min-width: 0;
		max-width: 100%;
		margin: 0;
		gap: 12px clamp(18px, 1.45vw, 30px);
	}

	.zaza-nav-menu > li {
		flex: 0 0 auto;
		min-width: auto;
	}

	.zaza-nav-menu a {
		width: auto;
		min-width: 0;
		min-height: 30px;
		padding: 0;
		font-family: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
		font-size: clamp(0.92rem, 0.9vw, 1.08rem);
		font-weight: 900;
		line-height: 1;
		white-space: nowrap;
	}

	.zaza-dropdown-toggle {
		flex: 0 0 auto;
		margin-left: -14px;
	}

	.zaza-header__cart {
		justify-self: end;
		min-width: max-content;
		min-height: 56px;
		padding: 0 30px;
		font-size: clamp(0.9rem, 0.9vw, 1.06rem);
	}
}

@media (min-width: 901px) and (max-width: 1440px) {
	.zaza-header__inner {
		min-height: 118px;
		padding-right: 28px;
		padding-left: 28px;
		gap: 26px;
	}

	.zaza-header__brand-logo {
		width: 68px;
		height: 68px;
	}

	.zaza-header__brand-name {
		font-size: 0.98rem;
	}

	.zaza-nav-menu {
		gap: 10px 16px;
	}

	.zaza-nav-menu a,
	.zaza-header__cart {
		font-size: 0.88rem;
	}

	.zaza-header__cart {
		min-height: 50px;
		padding: 0 24px;
	}
}

@media (min-width: 901px) and (max-width: 1120px) {
	.zaza-header__inner {
		grid-template-columns: auto minmax(0, 1fr);
	}

	.zaza-header__cart {
		grid-column: 1 / -1;
		justify-self: start;
		min-height: 44px;
		padding: 0 22px;
	}
}

/* Final font system: Bebas-style top labels, DM Sans dropdowns/body utility text. */
body.zaza-storefront-page,
.zaza-home,
.zaza-header {
	--zaza-display-font: "Bebas Neue", "Arial Narrow", "Roboto Condensed", sans-serif;
	--zaza-body-font: "DM Sans", Arial, Helvetica, sans-serif;
}

.zaza-header__brand-name,
.zaza-nav-menu > li > a,
.zaza-header__cart,
.zaza-hero .zaza-eyebrow,
.zaza-hero__headline,
.zaza-hero__button,
.zaza-section__title,
.zaza-category-card__title,
.zaza-product-card__title,
.zaza-product-card__button,
.zaza-button {
	font-family: var(--zaza-display-font);
	font-weight: 400;
	letter-spacing: 0.035em;
}

.zaza-nav-menu .sub-menu a,
.zaza-entry-popups,
.zaza-footer,
.zaza-trust-strip,
.zaza-review-card,
.zaza-product-card__price {
	font-family: var(--zaza-body-font);
	letter-spacing: 0;
}

@media (min-width: 901px) {
	.zaza-nav-menu > li > a {
		font-size: clamp(1rem, 0.94vw, 1.12rem);
		line-height: 1;
	}

	.zaza-nav-menu .sub-menu {
		min-width: 238px;
		padding: 14px 0;
		border: 1px solid rgba(255, 255, 255, 0.08);
		border-radius: 0 0 14px 14px;
		background: #242424;
	}

	.zaza-nav-menu .sub-menu a {
		min-height: 36px;
		padding: 0 22px;
		border-radius: 0;
		color: rgba(255, 255, 255, 0.88);
		font-size: 0.82rem;
		font-weight: 700;
		line-height: 1.25;
		text-transform: uppercase;
	}

	.zaza-nav-menu .sub-menu a:hover,
	.zaza-nav-menu .sub-menu a:focus-visible {
		background: rgba(255, 255, 255, 0.08);
		color: #ffffff;
	}

	.zaza-dropdown-toggle {
		width: 20px;
		height: 24px;
		margin-left: -14px;
	}

	.zaza-dropdown-toggle::before {
		width: 6px;
		height: 6px;
		border-width: 1.8px;
	}
}

/* Absolute final storefront nav rules. These intentionally come last. */
.zaza-header {
	background: #242424;
}

.zaza-header::before {
	background: #242424;
}

@media (min-width: 901px) {
	.zaza-header {
		overflow: visible;
	}

	.zaza-header__inner {
		display: grid;
		grid-template-columns: auto minmax(0, 1fr) auto;
		align-items: center;
		width: 100%;
		max-width: none;
		min-height: 96px;
		margin: 0;
		padding: 0 clamp(34px, 3.2vw, 58px);
		gap: clamp(26px, 2.7vw, 48px);
	}

	.zaza-header__brand {
		min-width: max-content;
		gap: 12px;
	}

	.zaza-header__brand-logo {
		width: 72px;
		height: 72px;
	}

	.zaza-header__brand-name {
		display: block;
		max-width: none;
		overflow: visible;
		font-family: var(--zaza-display-font);
		font-size: 1rem;
		font-weight: 400;
		letter-spacing: 0.03em;
		line-height: 1;
		text-transform: uppercase;
		white-space: nowrap;
	}

	.zaza-nav {
		min-width: 0;
		overflow: visible;
	}

	.zaza-nav-menu {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: flex-start;
		width: auto;
		min-width: 0;
		max-width: 100%;
		margin: 0;
		gap: 12px clamp(18px, 1.35vw, 28px);
	}

	.zaza-nav-menu > li {
		display: inline-flex;
		align-items: center;
		flex: 0 0 auto;
		min-width: auto;
	}

	.zaza-nav-menu > li > a {
		width: auto;
		min-width: 0;
		min-height: 34px;
		padding: 0;
		color: rgba(255, 255, 255, 0.94);
		font-family: var(--zaza-display-font);
		font-size: clamp(0.9rem, 0.78vw, 1rem);
		font-weight: 400;
		letter-spacing: 0.035em;
		line-height: 1;
		text-transform: uppercase;
		white-space: nowrap;
	}

	.zaza-dropdown-toggle {
		position: static;
		flex: 0 0 auto;
		width: 16px;
		height: 24px;
		margin: 0 0 0 4px;
		border: 0;
		background: transparent;
	}

	.zaza-dropdown-toggle::before {
		width: 6px;
		height: 6px;
		border-width: 1.6px;
	}

	.zaza-nav-menu .sub-menu {
		min-width: 230px;
		padding: 14px 0;
		border: 1px solid rgba(255, 255, 255, 0.08);
		border-radius: 0 0 14px 14px;
		background: #242424;
	}

	.zaza-nav-menu .sub-menu a {
		min-height: 36px;
		padding: 0 22px;
		border-radius: 0;
		color: rgba(255, 255, 255, 0.86);
		font-family: var(--zaza-body-font);
		font-size: 0.82rem;
		font-weight: 700;
		letter-spacing: 0;
		line-height: 1.25;
		text-transform: none;
	}

	.zaza-header__cart {
		justify-self: end;
		min-width: max-content;
		min-height: 46px;
		padding: 0 24px;
		border-color: rgba(255, 255, 255, 0.22);
		font-family: var(--zaza-display-font);
		font-size: 0.95rem;
		font-weight: 400;
		letter-spacing: 0.035em;
		line-height: 1;
		text-transform: uppercase;
	}
}

@media (min-width: 901px) and (max-width: 1280px) {
	.zaza-header__inner {
		min-height: 92px;
		padding-right: 24px;
		padding-left: 24px;
		gap: 20px;
	}

	.zaza-header__brand-logo {
		width: 62px;
		height: 62px;
	}

	.zaza-header__brand-name {
		display: none;
	}

	.zaza-nav-menu {
		gap: 10px 14px;
	}

	.zaza-nav-menu > li > a,
	.zaza-header__cart {
		font-size: 0.82rem;
	}
}

@media (max-width: 900px) {
	.zaza-header {
		background: #242424;
		overflow: visible;
	}

	.zaza-header__inner {
		display: grid;
		grid-template-columns: 48px minmax(0, 1fr) 48px;
		align-items: center;
		width: 100%;
		min-height: 88px;
		margin: 0;
		padding: 0 16px;
		gap: 12px;
	}

	.zaza-nav-toggle {
		order: 1;
		display: inline-flex;
		width: 48px;
		height: 48px;
		border: 0;
		border-radius: 0;
		background: transparent;
	}

	.zaza-header__brand {
		order: 2;
		justify-self: center;
		min-width: 0;
		gap: 10px;
	}

	.zaza-header__brand-logo {
		width: 58px;
		height: 58px;
	}

	.zaza-header__brand-name {
		max-width: none;
		overflow: visible;
		font-size: clamp(1rem, 4vw, 1.15rem);
		text-overflow: clip;
		white-space: nowrap;
	}

	.zaza-header__cart {
		order: 3;
		justify-self: end;
		width: 48px;
		min-width: 48px;
		height: 48px;
		min-height: 48px;
		padding: 0;
		font-size: 0;
	}

	.zaza-nav {
		position: absolute;
		top: 100%;
		right: 0;
		left: 0;
		z-index: 90;
		display: block;
		grid-column: auto;
		max-height: 0;
		margin: 0;
		padding: 0;
		background: #242424;
		box-shadow: 0 24px 46px rgba(0, 0, 0, 0.38);
		opacity: 0;
		visibility: hidden;
		overflow: hidden;
		pointer-events: none;
		transition: max-height 220ms ease, opacity 160ms ease, visibility 160ms ease;
	}

	.zaza-header.is-open .zaza-nav {
		max-height: calc(100vh - 88px);
		opacity: 1;
		visibility: visible;
		overflow-y: auto;
		pointer-events: auto;
	}

	.zaza-nav-menu {
		display: grid;
		width: 100%;
		max-width: none;
		margin: 0;
		padding: 10px 18px 20px;
		gap: 0;
		background: #242424;
	}

	.zaza-nav-menu > li {
		display: grid;
		grid-template-columns: minmax(0, 1fr) 42px;
		align-items: center;
		border-bottom: 1px solid rgba(255, 255, 255, 0.09);
	}

	.zaza-nav-menu > li:not(.menu-item-has-children) {
		grid-template-columns: 1fr;
	}

	.zaza-nav-menu a,
	.zaza-nav-menu > li:not(.menu-item-has-children) > a {
		width: 100%;
		min-height: 46px;
		padding: 0;
		background: transparent;
		color: #ffffff;
		font-family: var(--zaza-display-font);
		font-size: 1rem;
		font-weight: 400;
		letter-spacing: 0.035em;
		line-height: 1;
		text-transform: uppercase;
	}

	.zaza-dropdown-toggle {
		position: static;
		width: 42px;
		height: 42px;
		margin: 0;
		border: 0;
		background: transparent;
	}

	.zaza-nav-menu .sub-menu {
		grid-column: 1 / -1;
		width: 100%;
		max-height: 0;
		padding: 0;
		background: rgba(0, 0, 0, 0.2);
	}

	.zaza-nav-menu li.is-open > .sub-menu {
		max-height: 420px;
		padding: 8px 14px;
	}

	.zaza-nav-menu .sub-menu a {
		min-height: 40px;
		padding: 0;
		color: rgba(255, 255, 255, 0.82);
		font-family: var(--zaza-body-font);
		font-size: 0.9rem;
		font-weight: 700;
		letter-spacing: 0;
		text-transform: none;
	}
}

/* True final requested nav/category refinement. */
@media (min-width: 901px) {
	.zaza-header__inner {
		grid-template-columns: minmax(160px, 240px) minmax(0, 1fr) minmax(96px, 170px);
		min-height: 104px;
		padding-right: clamp(30px, 3vw, 56px);
		padding-left: clamp(30px, 3vw, 56px);
		gap: clamp(22px, 2.4vw, 42px);
	}

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

	.zaza-header__brand-logo {
		width: 74px;
		height: 74px;
	}

	.zaza-nav {
		justify-self: center;
		width: 100%;
		min-width: 0;
		overflow: visible;
	}

	.zaza-nav-menu {
		justify-content: center;
		align-content: center;
		width: 100%;
		min-width: 0;
		max-width: 1240px;
		margin-right: auto;
		margin-left: auto;
		gap: 12px clamp(18px, 1.35vw, 28px);
	}

	.zaza-nav-menu > li {
		display: inline-flex;
		align-items: center;
		flex: 0 0 auto;
	}

	.zaza-nav-menu > li > a {
		min-height: 38px;
		padding: 0;
		font-size: clamp(1.06rem, 0.98vw, 1.18rem);
		letter-spacing: 0.035em;
		line-height: 1;
		white-space: nowrap;
	}

	.zaza-dropdown-toggle {
		position: static;
		flex: 0 0 auto;
		width: 18px;
		height: 28px;
		margin: 0 0 0 4px;
		border: 0;
		background: transparent;
		color: #ffffff;
	}

	.zaza-dropdown-toggle::before {
		content: "▾";
		width: auto;
		height: auto;
		border: 0;
		font-family: Arial, Helvetica, sans-serif;
		font-size: 1rem;
		font-weight: 700;
		line-height: 1;
		transform: none;
	}

	.zaza-nav-menu li.is-open > .zaza-dropdown-toggle::before {
		transform: rotate(180deg);
	}

	.zaza-nav-menu .sub-menu a {
		font-family: var(--zaza-body-font);
		font-size: 0.86rem;
		font-weight: 700;
		letter-spacing: 0;
		text-transform: none;
	}

	.zaza-header__cart {
		justify-self: end;
		min-height: 48px;
		padding: 0 25px;
		font-size: 1rem;
	}
}

@media (min-width: 901px) and (max-width: 1380px) {
	.zaza-header__inner {
		grid-template-columns: minmax(86px, 120px) minmax(0, 1fr) minmax(84px, 128px);
		min-height: 96px;
		padding-right: 22px;
		padding-left: 22px;
		gap: 18px;
	}

	.zaza-header__brand-name {
		display: none;
	}

	.zaza-header__brand-logo {
		width: 64px;
		height: 64px;
	}

	.zaza-nav-menu {
		gap: 10px clamp(12px, 1vw, 18px);
	}

	.zaza-nav-menu > li > a,
	.zaza-header__cart {
		font-size: clamp(0.92rem, 0.88vw, 1rem);
	}
}

@media (min-width: 901px) and (max-width: 1120px) {
	.zaza-header__inner {
		grid-template-columns: minmax(72px, 96px) minmax(0, 1fr) minmax(76px, 112px);
	}

	.zaza-nav-menu {
		gap: 8px 12px;
	}

	.zaza-nav-menu > li > a,
	.zaza-header__cart {
		font-size: clamp(0.84rem, 0.86vw, 0.95rem);
	}
}

.zaza-categories .zaza-category-card:not(.zaza-category-card--placeholder) .zaza-category-card__body {
	padding-right: 64px;
}

.zaza-categories .zaza-category-card:not(.zaza-category-card--placeholder) .zaza-category-card__cta {
	position: absolute;
	right: 0;
	bottom: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	padding: 0;
	border-radius: 999px;
	background: var(--zaza-gold);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
	color: #151715;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1;
	text-indent: 0;
	transform: none;
}

.zaza-categories .zaza-category-card:not(.zaza-category-card--placeholder) .zaza-category-card__cta::before {
	content: none;
}

@media (max-width: 900px) {
	.zaza-dropdown-toggle::before {
		content: "▾";
		width: auto;
		height: auto;
		border: 0;
		font-family: Arial, Helvetica, sans-serif;
		font-size: 1rem;
		font-weight: 700;
		line-height: 1;
		transform: none;
	}

	.zaza-nav-menu li.is-open > .zaza-dropdown-toggle::before {
		transform: rotate(180deg);
	}
}

@media (max-width: 600px) {
	.zaza-categories .zaza-category-card:not(.zaza-category-card--placeholder) .zaza-category-card__body {
		padding-right: 42px;
	}

	.zaza-categories .zaza-category-card:not(.zaza-category-card--placeholder) .zaza-category-card__cta {
		width: 34px;
		height: 34px;
		font-size: 1rem;
	}
}

/* Actual final typography lock: Bebas Neue display, DM Sans body text. */
body.zaza-storefront-page,
.zaza-home,
.zaza-header {
	--zaza-display-font: "Bebas Neue", "Arial Narrow", "Roboto Condensed", sans-serif;
	--zaza-body-font: "DM Sans", Arial, Helvetica, sans-serif;
}

body.zaza-storefront-page,
body.zaza-storefront-page :where(
	p,
	li,
	dl,
	dt,
	dd,
	label,
	input,
	select,
	textarea,
	table,
	th,
	td,
	.price,
	.amount,
	.woocommerce-breadcrumb,
	.product_meta,
	.woocommerce-product-details__short-description,
	.woocommerce-Tabs-panel,
	.woocommerce-product-attributes,
	.woocommerce-product-attributes-item__label,
	.woocommerce-product-attributes-item__value,
	.woocommerce-result-count,
	.woocommerce-ordering,
	.woocommerce-ordering select,
	.zaza-product-card__price,
	.zaza-review p,
	.zaza-footer,
	.zaza-footer__meta,
	.zaza-footer__nav a,
	.zaza-nav-menu .sub-menu a
) {
	font-family: var(--zaza-body-font);
	letter-spacing: 0;
}

body.zaza-storefront-page :where(
	h1,
	h2,
	h3,
	h4,
	h5,
	h6,
	.page-title,
	.entry-title,
	.product_title,
	.woocommerce-loop-product__title,
	.wp-block-post-title,
	.related > h2,
	.upsells > h2,
	.cross-sells > h2,
	.woocommerce-tabs ul.tabs li a,
	.zaza-header__brand-name,
	.zaza-nav-menu > li > a,
	.zaza-header__cart,
	.zaza-section__eyebrow,
	.zaza-section__title,
	.zaza-product-card__title,
	.zaza-category-card__title,
	.zaza-shop-title,
	.zaza-shop-filter__title,
	.button,
	button,
	input[type="submit"]
) {
	font-family: var(--zaza-display-font);
	font-weight: 400;
	letter-spacing: 0.035em;
	text-transform: uppercase;
}

body.single-product.zaza-storefront-page .product_title.entry-title {
	font-family: var(--zaza-display-font);
	font-size: clamp(2.25rem, 4vw, 4.1rem);
	font-weight: 400;
	line-height: 0.96;
	letter-spacing: 0.025em;
	text-transform: uppercase;
}

body.single-product.zaza-storefront-page .woocommerce div.product p.price,
body.single-product.zaza-storefront-page .woocommerce div.product span.price {
	font-family: var(--zaza-body-font);
	font-size: clamp(1.05rem, 1.5vw, 1.35rem);
	font-weight: 800;
	letter-spacing: 0;
}

body.single-product.zaza-storefront-page .woocommerce div.product form.cart .variations label,
body.single-product.zaza-storefront-page .woocommerce div.product form.cart select,
body.single-product.zaza-storefront-page .woocommerce div.product form.cart .quantity .qty,
body.single-product.zaza-storefront-page .woocommerce-product-attributes th,
body.single-product.zaza-storefront-page .woocommerce-product-attributes td,
body.single-product.zaza-storefront-page .product_meta,
body.single-product.zaza-storefront-page .woocommerce-product-details__short-description {
	font-family: var(--zaza-body-font);
	font-size: 0.94rem;
	letter-spacing: 0;
	line-height: 1.6;
	text-transform: none;
}

body.single-product.zaza-storefront-page .woocommerce-tabs .panel > h2,
body.single-product.zaza-storefront-page .related > h2,
body.single-product.zaza-storefront-page .upsells > h2 {
	font-family: var(--zaza-display-font);
	font-size: clamp(1.55rem, 2.4vw, 2.3rem);
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.035em;
	text-transform: uppercase;
}

body.single-product.zaza-storefront-page .related ul.products li.product .woocommerce-loop-product__title,
body.single-product.zaza-storefront-page .upsells ul.products li.product .woocommerce-loop-product__title,
body.single-product.zaza-storefront-page .cross-sells ul.products li.product .woocommerce-loop-product__title {
	font-family: var(--zaza-display-font);
	font-size: clamp(1rem, 1.1vw, 1.16rem);
	font-weight: 400;
	line-height: 1.05;
	letter-spacing: 0.025em;
	text-transform: uppercase;
}

@media (max-width: 600px) {
	body.single-product.zaza-storefront-page .product_title.entry-title {
		font-size: clamp(2rem, 10vw, 2.85rem);
	}
}

/* Final small nav readability bump. Font family stays unchanged. */
@media (min-width: 901px) {
	body.zaza-storefront-page .zaza-nav-menu > li > a {
		font-size: clamp(1.16rem, 1.05vw, 1.32rem);
	}

	body.zaza-storefront-page .zaza-header__cart {
		font-size: clamp(1.08rem, 1vw, 1.18rem);
	}

	body.zaza-storefront-page .zaza-dropdown-toggle::before {
		font-size: 1.08rem;
	}
}

@media (min-width: 901px) and (max-width: 1380px) {
	body.zaza-storefront-page .zaza-nav-menu > li > a,
	body.zaza-storefront-page .zaza-header__cart {
		font-size: clamp(1rem, 0.96vw, 1.1rem);
	}
}

@media (min-width: 901px) and (max-width: 1120px) {
	body.zaza-storefront-page .zaza-nav-menu > li > a,
	body.zaza-storefront-page .zaza-header__cart {
		font-size: clamp(0.92rem, 0.9vw, 1rem);
	}
}

@media (max-width: 900px) {
	body.zaza-storefront-page .zaza-nav-menu > li > a {
		font-size: 1.1rem;
	}
}

/* Deterministic nav fit: centered desktop, compact before wrapping/cutting. */
@media (min-width: 1281px) {
	body.zaza-storefront-page .zaza-header {
		overflow: visible;
		background: #242424;
	}

	body.zaza-storefront-page .zaza-header__inner {
		display: grid;
		grid-template-columns: minmax(146px, 220px) minmax(0, 1fr) minmax(92px, 132px);
		align-items: center;
		width: 100%;
		max-width: none;
		min-height: 100px;
		padding: 0 clamp(24px, 2.4vw, 46px);
		gap: clamp(16px, 2vw, 34px);
	}

	body.zaza-storefront-page .zaza-header__brand {
		justify-self: start;
		min-width: 0;
	}

	body.zaza-storefront-page .zaza-header__brand-logo {
		width: 76px;
		height: 76px;
	}

	body.zaza-storefront-page .zaza-header__brand-name {
		font-size: 18px;
		line-height: 1;
		white-space: nowrap;
	}

	body.zaza-storefront-page .zaza-nav {
		position: static;
		display: flex;
		justify-content: center;
		justify-self: center;
		width: 100%;
		min-width: 0;
		max-height: none;
		padding: 0;
		overflow: visible;
		background: transparent;
	}

	body.zaza-storefront-page .zaza-nav-menu {
		display: flex;
		align-items: center;
		justify-content: center;
		flex-wrap: nowrap;
		width: auto;
		max-width: 100%;
		margin: 0 auto;
		gap: clamp(12px, 1vw, 22px);
		white-space: nowrap;
	}

	body.zaza-storefront-page .zaza-nav-menu > li {
		display: inline-flex;
		align-items: center;
		flex: 0 0 auto;
	}

	body.zaza-storefront-page .zaza-nav-menu > li > a {
		display: inline-flex;
		align-items: center;
		min-height: 44px;
		padding: 0;
		font-size: 17px;
		line-height: 1;
		white-space: nowrap;
	}

	body.zaza-storefront-page .zaza-header__cart {
		justify-self: end;
		min-height: 48px;
		padding: 0 24px;
		font-size: 16px;
		line-height: 1;
		white-space: nowrap;
	}

	body.zaza-storefront-page .zaza-dropdown-toggle {
		position: static;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		flex: 0 0 18px;
		width: 18px;
		height: 28px;
		margin: 0 0 0 3px;
		padding: 0;
		border: 0;
		background: transparent;
		color: #ffffff;
	}

	body.zaza-storefront-page .zaza-dropdown-toggle::before {
		content: "";
		width: 7px;
		height: 7px;
		border-right: 2px solid currentColor;
		border-bottom: 2px solid currentColor;
		font-size: 0;
		transform: rotate(45deg) translate(-1px, -1px);
		transition: transform 160ms ease;
	}

	body.zaza-storefront-page .zaza-nav-menu li.is-open > .zaza-dropdown-toggle::before {
		transform: rotate(225deg) translate(-1px, -1px);
	}

	body.zaza-storefront-page .zaza-nav-menu .sub-menu a {
		font-family: var(--zaza-body-font);
		font-size: 14px;
		font-weight: 700;
		letter-spacing: 0;
		line-height: 1.25;
		text-transform: none;
	}
}

@media (min-width: 1281px) and (max-width: 1540px) {
	body.zaza-storefront-page .zaza-header__inner {
		grid-template-columns: minmax(76px, 96px) minmax(0, 1fr) minmax(84px, 116px);
		min-height: 92px;
		padding-right: 22px;
		padding-left: 22px;
		gap: 14px;
	}

	body.zaza-storefront-page .zaza-header__brand-name {
		display: none;
	}

	body.zaza-storefront-page .zaza-header__brand-logo {
		width: 64px;
		height: 64px;
	}

	body.zaza-storefront-page .zaza-nav-menu {
		gap: clamp(8px, 0.72vw, 14px);
	}

	body.zaza-storefront-page .zaza-nav-menu > li > a {
		font-size: 16px;
	}

	body.zaza-storefront-page .zaza-header__cart {
		min-height: 44px;
		padding: 0 18px;
		font-size: 15px;
	}
}

@media (min-width: 1281px) {
	body.zaza-storefront-page .zaza-header.is-compact-nav .zaza-header__inner {
		grid-template-columns: auto auto minmax(0, 1fr) auto;
		min-height: 92px;
	}

	body.zaza-storefront-page .zaza-header.is-compact-nav .zaza-nav-toggle {
		display: inline-flex;
		grid-column: 1;
		grid-row: 1;
	}

	body.zaza-storefront-page .zaza-header.is-compact-nav .zaza-header__brand {
		grid-column: 2;
		grid-row: 1;
		justify-self: start;
	}

	body.zaza-storefront-page .zaza-header.is-compact-nav .zaza-header__cart {
		grid-column: 4;
		grid-row: 1;
		justify-self: end;
	}

	body.zaza-storefront-page .zaza-header.is-compact-nav .zaza-nav {
		position: absolute;
		top: 100%;
		right: clamp(18px, 3vw, 46px);
		left: clamp(18px, 3vw, 46px);
		z-index: 40;
		display: grid;
		max-height: 0;
		padding: 0;
		overflow: hidden;
		border-top: 1px solid rgba(255, 255, 255, 0.1);
		background: #242424;
		box-shadow: 0 24px 42px rgba(0, 0, 0, 0.28);
		transition: max-height 180ms ease, padding 180ms ease;
	}

	body.zaza-storefront-page .zaza-header.is-compact-nav.is-open .zaza-nav {
		max-height: min(76vh, 680px);
		padding: 16px;
		overflow: auto;
	}

	body.zaza-storefront-page .zaza-header.is-compact-nav .zaza-nav-menu {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		width: 100%;
		max-width: none;
		margin: 0;
		gap: 0 20px;
	}

	body.zaza-storefront-page .zaza-header.is-compact-nav .zaza-nav-menu > li {
		display: grid;
		grid-template-columns: minmax(0, 1fr) 42px;
		align-items: center;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}

	body.zaza-storefront-page .zaza-header.is-compact-nav .zaza-nav-menu > li:not(.menu-item-has-children) {
		grid-template-columns: 1fr;
	}

	body.zaza-storefront-page .zaza-header.is-compact-nav .zaza-nav-menu > li > a {
		min-height: 48px;
		font-size: 20px;
		white-space: normal;
	}

	body.zaza-storefront-page .zaza-header.is-compact-nav .zaza-nav-menu .sub-menu {
		grid-column: 1 / -1;
		width: 100%;
		max-height: 0;
		padding: 0;
		overflow: hidden;
		background: rgba(0, 0, 0, 0.18);
	}

	body.zaza-storefront-page .zaza-header.is-compact-nav .zaza-nav-menu li.is-open > .sub-menu {
		max-height: 420px;
		padding: 8px 14px;
	}
}

@media (min-width: 1281px) and (max-width: 1540px) {
	body.zaza-storefront-page .zaza-header.is-compact-nav .zaza-nav-menu {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 1280px) {
	body.zaza-storefront-page .zaza-header {
		position: relative;
		overflow: visible;
		background: #242424;
	}

	body.zaza-storefront-page .zaza-header__inner {
		display: grid;
		grid-template-columns: auto minmax(0, 1fr) auto;
		align-items: center;
		width: 100%;
		max-width: none;
		min-height: 86px;
		padding: 0 clamp(14px, 3vw, 28px);
		gap: clamp(12px, 2vw, 18px);
	}

	body.zaza-storefront-page .zaza-nav-toggle {
		display: inline-flex;
		grid-column: 1;
		grid-row: 1;
	}

	body.zaza-storefront-page .zaza-header__brand {
		grid-column: 2;
		grid-row: 1;
		justify-self: center;
		min-width: 0;
	}

	body.zaza-storefront-page .zaza-header__brand-logo {
		width: 62px;
		height: 62px;
	}

	body.zaza-storefront-page .zaza-header__brand-name {
		display: inline;
		font-size: clamp(18px, 2.2vw, 24px);
		line-height: 1;
		white-space: nowrap;
	}

	body.zaza-storefront-page .zaza-header__cart {
		grid-column: 3;
		grid-row: 1;
		justify-self: end;
		min-height: 48px;
		padding: 0 18px;
		font-size: 16px;
		line-height: 1;
	}

	body.zaza-storefront-page .zaza-nav {
		position: absolute;
		top: 100%;
		right: clamp(12px, 3vw, 28px);
		left: clamp(12px, 3vw, 28px);
		z-index: 40;
		display: grid;
		max-height: 0;
		padding: 0;
		overflow: hidden;
		border-top: 1px solid rgba(255, 255, 255, 0.1);
		background: #242424;
		box-shadow: 0 24px 42px rgba(0, 0, 0, 0.28);
		transition: max-height 180ms ease, padding 180ms ease;
	}

	body.zaza-storefront-page .zaza-header.is-open .zaza-nav {
		max-height: min(76vh, 680px);
		padding: 14px;
		overflow: auto;
	}

	body.zaza-storefront-page .zaza-nav-menu {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		width: 100%;
		max-width: none;
		margin: 0;
		gap: 0 18px;
	}

	body.zaza-storefront-page .zaza-nav-menu > li {
		display: grid;
		grid-template-columns: minmax(0, 1fr) 42px;
		align-items: center;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}

	body.zaza-storefront-page .zaza-nav-menu > li:not(.menu-item-has-children) {
		grid-template-columns: 1fr;
	}

	body.zaza-storefront-page .zaza-nav-menu > li > a {
		min-width: 0;
		min-height: 48px;
		padding: 0;
		font-size: 20px;
		line-height: 1;
		white-space: normal;
	}

	body.zaza-storefront-page .zaza-dropdown-toggle {
		position: static;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 42px;
		height: 42px;
		margin: 0;
		border: 0;
		background: transparent;
		color: #ffffff;
	}

	body.zaza-storefront-page .zaza-dropdown-toggle::before {
		content: "";
		width: 8px;
		height: 8px;
		border-right: 2px solid currentColor;
		border-bottom: 2px solid currentColor;
		transform: rotate(45deg) translate(-1px, -1px);
	}

	body.zaza-storefront-page .zaza-nav-menu li.is-open > .zaza-dropdown-toggle::before {
		transform: rotate(225deg) translate(-1px, -1px);
	}

	body.zaza-storefront-page .zaza-nav-menu .sub-menu {
		grid-column: 1 / -1;
		width: 100%;
		max-height: 0;
		padding: 0;
		overflow: hidden;
		background: rgba(0, 0, 0, 0.18);
	}

	body.zaza-storefront-page .zaza-nav-menu li.is-open > .sub-menu {
		max-height: 420px;
		padding: 8px 14px;
	}

	body.zaza-storefront-page .zaza-nav-menu .sub-menu a {
		min-height: 38px;
		padding: 0;
		font-family: var(--zaza-body-font);
		font-size: 14px;
		font-weight: 700;
		letter-spacing: 0;
		text-transform: none;
	}
}

@media (max-width: 600px) {
	body.zaza-storefront-page .zaza-header__inner {
		min-height: 82px;
		padding-right: 12px;
		padding-left: 12px;
		gap: 10px;
	}

	body.zaza-storefront-page .zaza-header__brand {
		gap: 10px;
	}

	body.zaza-storefront-page .zaza-header__brand-logo {
		width: 58px;
		height: 58px;
	}

	body.zaza-storefront-page .zaza-header__brand-name {
		font-size: clamp(18px, 5.2vw, 22px);
	}

	body.zaza-storefront-page .zaza-header__cart {
		min-width: 58px;
		min-height: 48px;
		padding: 0 12px;
		font-size: 15px;
	}

	body.zaza-storefront-page .zaza-nav-menu {
		grid-template-columns: 1fr;
		gap: 0;
	}

	body.zaza-storefront-page .zaza-nav-menu > li > a {
		font-size: 21px;
	}
}

/* Reference-scale final pass: bigger readable desktop nav and fuller hero. */
@media (min-width: 1541px) {
	body.zaza-storefront-page .zaza-header {
		background: #242424;
	}

	body.zaza-storefront-page .zaza-header__inner {
		grid-template-columns: minmax(190px, 250px) minmax(0, 1fr) minmax(96px, 136px);
		min-height: 122px;
		padding-right: 42px;
		padding-left: 42px;
		gap: 28px;
	}

	body.zaza-storefront-page .zaza-header__brand-logo {
		width: 96px;
		height: 96px;
	}

	body.zaza-storefront-page .zaza-header__brand-name {
		display: inline;
		font-size: 22px;
		line-height: 1;
		white-space: nowrap;
	}

	body.zaza-storefront-page .zaza-nav {
		justify-self: center;
		width: 100%;
	}

	body.zaza-storefront-page .zaza-nav-menu {
		gap: clamp(14px, 1.15vw, 26px);
	}

	body.zaza-storefront-page .zaza-nav-menu > li > a {
		min-height: 50px;
		font-size: 20px;
		line-height: 1;
		letter-spacing: 0.035em;
	}

	body.zaza-storefront-page .zaza-header__cart {
		min-height: 54px;
		padding: 0 28px;
		font-size: 18px;
	}

	body.zaza-storefront-page .zaza-dropdown-toggle {
		width: 20px;
		height: 30px;
		margin-left: 4px;
	}

	body.zaza-storefront-page .zaza-dropdown-toggle::before {
		width: 8px;
		height: 8px;
	}

	body.zaza-storefront-page .zaza-hero {
		height: clamp(650px, 45vw, 820px);
		min-height: 650px;
	}

	body.zaza-storefront-page .zaza-hero__headline {
		font-size: clamp(4.3rem, 5.4vw, 6.8rem);
	}
}

@media (min-width: 1281px) and (max-width: 1540px) {
	body.zaza-storefront-page .zaza-header__inner {
		min-height: 104px;
	}

	body.zaza-storefront-page .zaza-header__brand-logo {
		width: 78px;
		height: 78px;
	}

	body.zaza-storefront-page .zaza-nav-menu > li > a {
		font-size: 18px;
	}

	body.zaza-storefront-page .zaza-header__cart {
		font-size: 17px;
	}

	body.zaza-storefront-page .zaza-hero {
		height: clamp(560px, 44vw, 720px);
		min-height: 560px;
	}
}

@media (max-width: 1280px) {
	body.zaza-storefront-page .zaza-hero {
		height: clamp(460px, 62vw, 620px);
		min-height: 420px;
	}
}

@media (max-width: 600px) {
	body.zaza-storefront-page .zaza-hero {
		height: clamp(430px, 96vw, 560px);
		min-height: 430px;
	}
}

/* Popup polish and mobile control cleanup. */
.zaza-entry-popups {
	--zaza-display-font: "Bebas Neue", "Arial Narrow", "Roboto Condensed", sans-serif;
	--zaza-body-font: "DM Sans", Arial, Helvetica, sans-serif;
}

.zaza-entry-popups .zaza-modal {
	z-index: 10040;
	padding: clamp(18px, 4vw, 42px);
	background:
		radial-gradient(circle at 18% 16%, rgba(183, 241, 111, 0.22), transparent 34%),
		radial-gradient(circle at 84% 78%, rgba(255, 174, 45, 0.28), transparent 34%),
		rgba(5, 7, 6, 0.68);
	backdrop-filter: blur(8px) saturate(90%);
}

.zaza-entry-popups .zaza-modal__panel {
	position: relative;
	width: min(520px, calc(100vw - 34px));
	padding: clamp(28px, 4vw, 48px);
	overflow: hidden;
	border: 0;
	border-radius: 14px;
	background: #ffffff;
	box-shadow: 0 28px 82px rgba(0, 0, 0, 0.34);
	color: #090b0a;
	font-family: var(--zaza-body-font);
	text-align: center;
}

.zaza-entry-popups .zaza-modal__panel--email {
	width: min(500px, calc(100vw - 34px));
	background:
		linear-gradient(135deg, rgba(255, 126, 168, 0.96) 0%, rgba(255, 174, 45, 0.96) 58%, rgba(223, 236, 67, 0.96) 100%);
}

.zaza-entry-popups .zaza-modal__panel--email::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 20% 12%, rgba(255, 255, 255, 0.35), transparent 26%),
		radial-gradient(circle at 92% 88%, rgba(255, 255, 255, 0.24), transparent 30%);
	pointer-events: none;
}

.zaza-entry-popups .zaza-modal__panel--email > * {
	position: relative;
	z-index: 1;
}

.zaza-entry-popups .zaza-modal__logo {
	display: block;
	width: 92px;
	height: 92px;
	margin: 0 auto 14px;
	border-radius: 999px;
	object-fit: cover;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.zaza-entry-popups .zaza-modal__panel--email .zaza-modal__logo {
	width: 106px;
	height: 106px;
	margin-bottom: 18px;
	box-shadow: none;
}

.zaza-entry-popups .zaza-modal__eyebrow {
	margin: 0 0 8px;
	color: rgba(9, 11, 10, 0.72);
	font-family: var(--zaza-display-font);
	font-size: 18px;
	font-weight: 400;
	letter-spacing: 0.07em;
	line-height: 1;
	text-transform: uppercase;
}

.zaza-entry-popups .zaza-modal__title {
	margin: 0 auto 12px;
	max-width: 420px;
	font-family: var(--zaza-display-font);
	font-size: clamp(44px, 5.4vw, 64px);
	font-weight: 400;
	letter-spacing: 0.055em;
	line-height: 0.9;
	text-transform: uppercase;
}

.zaza-entry-popups .zaza-modal__copy {
	max-width: 390px;
	margin: 0 auto 28px;
	color: rgba(9, 11, 10, 0.72);
	font-family: var(--zaza-body-font);
	font-size: 15px;
	font-weight: 500;
	line-height: 1.55;
}

.zaza-entry-popups .zaza-modal__actions {
	display: flex;
	justify-content: center;
	gap: 16px;
}

.zaza-entry-popups .zaza-button {
	min-height: 54px;
	padding: 0 34px;
	border: 0;
	border-radius: 999px;
	font-family: var(--zaza-display-font);
	font-size: 20px;
	font-weight: 400;
	letter-spacing: 0.055em;
	line-height: 1;
	text-transform: uppercase;
}

.zaza-entry-popups .zaza-modal__panel--age .zaza-button--dark {
	background: #f96f9e;
	color: #080908;
}

.zaza-entry-popups .zaza-modal__panel--age .zaza-button--light {
	background: #050605;
	color: #ffffff;
}

.zaza-entry-popups .zaza-modal__panel--email .zaza-button--accent {
	width: 100%;
	background: #050605;
	color: #ffffff;
}

.zaza-entry-popups .zaza-email-form {
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
	margin: 0 0 18px;
}

.zaza-entry-popups .zaza-email-form__input {
	min-height: 54px;
	padding: 0 4px;
	border: 0;
	border-bottom: 2px solid rgba(9, 11, 10, 0.82);
	border-radius: 0;
	background: transparent;
	color: #090b0a;
	font-family: var(--zaza-body-font);
	font-size: 18px;
	text-align: center;
}

.zaza-entry-popups .zaza-email-form__input::placeholder {
	color: rgba(9, 11, 10, 0.58);
}

.zaza-entry-popups .zaza-email-form__input:focus {
	border-color: #050605;
	outline: 2px solid rgba(255, 255, 255, 0.5);
	outline-offset: 4px;
}

.zaza-entry-popups .zaza-modal__secondary {
	color: #090b0a;
	font-family: var(--zaza-body-font);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-decoration: none;
	text-transform: uppercase;
}

.zaza-entry-popups .zaza-modal__close {
	top: 16px;
	right: 16px;
	z-index: 2;
	width: 34px;
	height: 34px;
	border: 1px solid rgba(9, 11, 10, 0.18);
	background: rgba(255, 255, 255, 0.72);
	color: #090b0a;
	font-family: var(--zaza-body-font);
	font-size: 20px;
}

.zaza-entry-popups .zaza-modal__restricted {
	max-width: 390px;
	margin: 22px auto 0;
	border-radius: 10px;
	background: #fff2ef;
	color: #7a2516;
	font-family: var(--zaza-body-font);
	font-size: 14px;
	line-height: 1.5;
}

body.zaza-storefront-page .zaza-header__cart::before,
body.zaza-storefront-page .zaza-header__cart::after {
	content: none !important;
	display: none !important;
}

body.zaza-storefront-page .zaza-header__cart {
	width: auto;
	height: auto;
	min-height: 48px;
	padding: 0 22px;
	text-indent: 0;
	overflow: visible;
}

body.zaza-storefront-page .zaza-header__cart span {
	display: inline;
	font-size: inherit;
	line-height: 1;
}

body.zaza-storefront-page .zaza-categories .zaza-category-card:not(.zaza-category-card--placeholder) .zaza-category-card__cta {
	position: absolute;
	right: 20px;
	bottom: 20px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	padding: 0;
	overflow: hidden;
	border: 4px solid rgba(255, 255, 255, 0.88);
	border-radius: 999px;
	background: #f4d949;
	box-shadow: 0 16px 26px rgba(0, 0, 0, 0.24);
	color: transparent;
	font-size: 0;
	line-height: 0;
	text-indent: 0;
	transform: none;
}

body.zaza-storefront-page .zaza-categories .zaza-category-card:not(.zaza-category-card--placeholder) .zaza-category-card__cta::before {
	content: "" !important;
	display: block;
	width: 24px;
	height: 24px;
	background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7 17L17 7M10 7h7v7' stroke='%23111413' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

body.zaza-storefront-page .zaza-categories .zaza-category-card:not(.zaza-category-card--placeholder) .zaza-category-card__cta::after {
	content: none !important;
	display: none !important;
}

@media (hover: hover) {
	body.zaza-storefront-page .zaza-categories .zaza-category-card:not(.zaza-category-card--placeholder):hover .zaza-category-card__cta {
		background: #ffb52e;
		transform: translateY(-2px);
	}
}

@media (max-width: 720px) {
	.zaza-entry-popups .zaza-modal__panel {
		padding: 28px 22px;
	}

	.zaza-entry-popups .zaza-modal__logo {
		width: 78px;
		height: 78px;
	}

	.zaza-entry-popups .zaza-modal__panel--email .zaza-modal__logo {
		width: 86px;
		height: 86px;
	}

	.zaza-entry-popups .zaza-modal__title {
		font-size: clamp(36px, 11vw, 48px);
	}

	.zaza-entry-popups .zaza-modal__actions {
		display: grid;
		grid-template-columns: 1fr;
	}

	.zaza-entry-popups .zaza-button {
		width: 100%;
		min-height: 52px;
		font-size: 18px;
	}

	body.zaza-storefront-page .zaza-header__cart {
		width: auto;
		height: 48px;
		min-width: 64px;
		padding-right: 13px;
		padding-left: 13px;
		font-size: 16px;
	}

	body.zaza-storefront-page .zaza-categories .zaza-category-card:not(.zaza-category-card--placeholder) .zaza-category-card__cta {
		right: 14px;
		bottom: 14px;
		width: 48px;
		height: 48px;
		border-width: 3px;
	}

	body.zaza-storefront-page .zaza-categories .zaza-category-card:not(.zaza-category-card--placeholder) .zaza-category-card__cta::before {
		width: 21px;
		height: 21px;
	}
}
