/* ==========================================================================
   Zahra Parfum — Design tokens & base (Rebrand: soft muted pink)
   ========================================================================== */

:root {
	/* ---------------------------------------------------------------
	   Marketplace pink identity (rebrand reference: Sociolla).
	   Variable NAMES are kept identical to the previous mauve palette
	   on purpose -- every template/CSS rule across the theme already
	   reads from these custom properties, so retinting the theme is a
	   single-source-of-truth token swap instead of a template rewrite.
	   ------------------------------------------------------------- */
	--zh-ink: #222222;          /* Text Dark */
	--zh-cream: #fff8fb;        /* Soft Background (body bg) */
	--zh-beige: #ffe1ee;        /* light pink tint accent (chips / hover fills) */

	/* Supporting tones from the same family */
	--zh-forest: #ff4f93;       /* Primary Pink -- buttons, bold brand blocks */
	--zh-forest-2: #ff4f93;     /* Footer + announcement bar background (spec: #FF4F93) */
	--zh-terracotta: #e63e83;   /* Primary Hover -- CTA hover, eyebrows, links, focus */
	--zh-terracotta-2: #c2255f; /* derived: deepest pink, readable emphasis text on light bg */
	--zh-paper: #fff2f7;        /* Light Pink (alt section background) */
	--zh-paper-2: #ffe4f0;      /* deeper light-pink section / hero background */
	--zh-border: #f1d6e2;       /* hairline borders */
	--zh-border-2: #f4b8d4;     /* input / card borders (slightly deeper) */
	--zh-text: #222222;         /* Text Dark */
	--zh-text-muted: #666666;   /* Text Gray */
	--zh-text-soft: #8a8a8a;    /* tertiary text / meta */
	--zh-success-bg: #e5eee3;
	--zh-success-text: #4b6653;
	--zh-error: #c0392b;

	--zh-font-display: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--zh-font-body: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

	--zh-container: 1180px;
	--zh-radius-sm: 8px;
	--zh-radius: 12px;
	--zh-header-height: 68px;
}

/* ==========================================================================
   Toast notifications — Toastify design tokens
   ========================================================================== */

:root {
	--toastify-color-light: #fff;
	--toastify-color-dark: #121212;
	--toastify-color-info: #3498db;
	--toastify-color-success: #07bc0c;
	--toastify-color-warning: #f1c40f;
	--toastify-color-error: hsl(6, 78%, 57%);
	--toastify-color-transparent: rgba(255, 255, 255, .7);

	--toastify-icon-color-info: var(--toastify-color-info);
	--toastify-icon-color-success: var(--toastify-color-success);
	--toastify-icon-color-warning: var(--toastify-color-warning);
	--toastify-icon-color-error: var(--toastify-color-error);

	--toastify-container-width: fit-content;
	--toastify-toast-width: 320px;
	--toastify-toast-offset: 16px;
	--toastify-toast-top: max(var(--toastify-toast-offset), env(safe-area-inset-top));
	--toastify-toast-right: max(var(--toastify-toast-offset), env(safe-area-inset-right));
	--toastify-toast-left: max(var(--toastify-toast-offset), env(safe-area-inset-left));
	--toastify-toast-bottom: max(var(--toastify-toast-offset), env(safe-area-inset-bottom));
	--toastify-toast-background: #fff;
	--toastify-toast-padding: 14px;
	--toastify-toast-min-height: 64px;
	--toastify-toast-max-height: 800px;
	--toastify-toast-bd-radius: 6px;
	--toastify-toast-shadow: 0px 4px 12px rgba(0, 0, 0, .1);
	--toastify-font-family: "Poppins", sans-serif;
	--toastify-z-index: 9999;

	--toastify-text-color-light: #757575;
	--toastify-text-color-dark: #fff;
	--toastify-text-color-info: #fff;
	--toastify-text-color-success: #fff;
	--toastify-text-color-warning: #fff;
	--toastify-text-color-error: #fff;

	--toastify-spinner-color: #616161;
	--toastify-spinner-color-empty-area: #e0e0e0;

	--toastify-color-progress-light: linear-gradient(to right, #4cd964, #5ac8fa, #007aff, #34aadc, #5856d6, #ff2d55);
	--toastify-color-progress-dark: #bb86fc;
	--toastify-color-progress-info: var(--toastify-color-info);
	--toastify-color-progress-success: var(--toastify-color-success);
	--toastify-color-progress-warning: var(--toastify-color-warning);
	--toastify-color-progress-error: var(--toastify-color-error);
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--zh-cream);
	color: var(--zh-text);
	font-family: var(--zh-font-body);
	font-size: 15px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

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

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

button {
	font-family: inherit;
	cursor: pointer;
}

input,
select,
textarea {
	font-family: inherit;
	font-size: inherit;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0;
	font-weight: 500;
}

p {
	margin: 0;
}

.font-display,
.zh-display {
	font-family: var(--zh-font-display);
}

.zh-container {
	width: min(var(--zh-container), calc(100% - 40px));
	margin-inline: auto;
}

@media (max-width: 767px) {
	.zh-container {
		width: min(100% - 32px, var(--zh-container));
	}
}

/* Eyebrow labels removed sitewide per request (didn't fit the target
   market's style) -- display:none rather than deleting every template's
   markup, so this is a single reversible toggle. */
.zh-eyebrow {
	display: none;
}

.zh-eyebrow--line::before {
	content: "";
	display: inline-block;
	width: 32px;
	height: 1px;
	background: var(--zh-terracotta);
}

.zh-rule {
	height: 1px;
	background: var(--zh-border);
	border: 0;
	margin: 20px 0;
}

.zh-screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}

.zh-skip-link {
	position: absolute;
	left: -999px;
	top: 0;
	z-index: 999999;
	background: var(--zh-ink);
	color: #fff;
	padding: 12px 20px;
}

.zh-skip-link:focus {
	left: 12px;
	top: 12px;
}

/* Focus visibility for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
	outline: 2px solid var(--zh-terracotta);
	outline-offset: 2px;
}

/* Subtle film-grain texture, matching the prototype's ".grain" overlay */
.zh-grain::after {
	content: "";
	position: fixed;
	inset: 0;
	pointer-events: none;
	opacity: 0.035;
	z-index: 60;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.zh-page-enter {
	animation: zh-page-enter 0.6s cubic-bezier(0.2, 0.75, 0.25, 1) both;
}

@keyframes zh-page-enter {
	from {
		opacity: 0;
		transform: translateY(12px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
		scroll-behavior: auto !important;
	}
}
/* ==========================================================================
   Typography scale & buttons
   ========================================================================== */

.zh-h1 {
	font-family: var(--zh-font-display);
	font-size: clamp(2.6rem, 6vw, 4.5rem);
	line-height: 1.04;
	letter-spacing: -0.02em;
}

.zh-h2 {
	font-family: var(--zh-font-display);
	font-size: clamp(1.9rem, 3.4vw, 2.75rem);
	line-height: 1.1;
}

@media (max-width: 480px) {
	.zh-h2 {
		font-size: clamp(1.5rem, 6vw, 1.9rem);
	}
}

.zh-h3 {
	font-family: var(--zh-font-display);
	font-size: 1.4rem;
}

.zh-lede {
	font-size: 15px;
	line-height: 1.75;
	color: var(--zh-text-muted);
}

/* Buttons ------------------------------------------------------------- */

.zh-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	height: 48px;
	padding: 0 26px;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	border: 1px solid transparent;
	border-radius: var(--zh-radius);
	transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
	white-space: nowrap;
}

.zh-btn:hover {
	transform: translateY(-2px);
}

.zh-btn--primary {
	background: var(--zh-forest);
	color: #fff;
}

.zh-btn--primary:hover {
	background: var(--zh-terracotta);
	color: #fff;
}

.zh-btn--primary:disabled,
.zh-btn--primary[disabled] {
	opacity: 0.4;
	cursor: not-allowed;
	transform: none;
}

.zh-btn--outline {
	background: transparent;
	border-color: var(--zh-border-2);
	color: var(--zh-text);
}

.zh-btn--outline:hover {
	border-color: var(--zh-forest);
	background: var(--zh-beige);
}

.zh-btn--ghost {
	height: auto;
	padding: 0;
	border-bottom: 1px solid var(--zh-ink);
	border-radius: 0;
	padding-bottom: 8px;
}

.zh-btn--ghost:hover {
	color: var(--zh-terracotta);
	border-color: var(--zh-terracotta);
}

.zh-btn--sm {
	height: 40px;
	padding: 0 18px;
	font-size: 10px;
}

.zh-btn--square {
	width: 48px;
	padding: 0;
}

.zh-btn--whatsapp {
	background: #4e6855;
	color: #f6e9eb;
}

.zh-btn--whatsapp:hover {
	background: #3e5644;
}

.zh-btn--whatsapp-outline {
	background: transparent;
	border-color: #b8c7b7;
	color: #4d6857;
}

.zh-btn--whatsapp-outline:hover {
	background: #e5eee3;
	border-color: #4d6857;
}

.zh-btn--block {
	width: 100%;
}

.zh-btn--icon-only {
	gap: 0;
}

.zh-link-arrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: var(--zh-text);
	transition: color 0.2s ease;
}

.zh-link-arrow:hover {
	color: var(--zh-terracotta);
}

.zh-link-arrow svg {
	transition: transform 0.2s ease;
}

.zh-link-arrow:hover svg {
	transform: translateX(3px);
}
/* ==========================================================================
   Header
   ========================================================================== */

.zh-announcement {
	display: none;
	padding: 7px 0;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.02em;
}

@media (min-width: 768px) {
	.zh-announcement {
		display: block;
	}
}

/* Also rendered right after the hero on the homepage (see
   template-parts/hero/announcement-bar.php + front-page.php) --
   mobile-only, since on mobile the header's own announcement bar is
   hidden (below); desktop keeps the original header placement. */
.zh-announcement--after-hero {
	display: block;
}

@media (min-width: 768px) {
	.zh-announcement--after-hero {
		display: none;
	}
}

.zh-announcement__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

@media (min-width: 640px) {
	.zh-announcement__inner {
		justify-content: space-between;
		text-align: left;
	}
}

.zh-announcement__links {
	display: none;
	gap: 20px;
	color: currentColor;
	opacity: 0.85;
}

@media (min-width: 640px) {
	.zh-announcement__links {
		display: flex;
	}
}

/* Top promo bar: brand/campaign takeover strip above the announcement bar */

.zh-topbar {
	background: var(--zh-forest-2);
}

.zh-topbar__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 6px 0;
	font-size: 12px;
	font-weight: 600;
	color: #fff;
	text-align: center;
}

.zh-topbar__label {
	font-family: var(--zh-font-display);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.zh-topbar__message {
	opacity: 0.95;
}

/* Header promo strip: below the announcement bar, above the logo row */

.zh-promo-topstrip {
	background: var(--zh-paper);
	border-bottom: 1px solid var(--zh-border);
}

.zh-promo-topstrip__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 14px;
	padding: 8px 0;
}

.zh-promo-topstrip__message {
	font-size: 13px;
	font-weight: 600;
	color: var(--zh-text);
	text-align: center;
}

.zh-promo-topstrip .zh-btn--sm {
	height: 30px;
	padding: 0 16px;
	font-size: 10px;
}

.zh-header {
	position: sticky;
	top: 0;
	z-index: 40;
	border-bottom: 1px solid var(--zh-border);
	background: rgba(255, 255, 255, 0.97);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	/* Forces GPU compositing for this layer -- iOS Safari has a known
	   bug where position:sticky combined with backdrop-filter can tear
	   or leave a gap during momentum scroll without this. */
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
}

.zh-header__inner {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 8px;
	min-height: var(--zh-header-height);
	padding: 10px 0;
}

@media (min-width: 480px) {
	.zh-header__inner {
		gap: 12px;
	}
}

@media (min-width: 768px) {
	.zh-header__inner {
		gap: 20px;
		padding: 11px 0;
	}
}

/* Mobile-only hamburger, first item in the row (Sociolla-style: menu /
   search / icons, all one compact row). Hidden on desktop -- the full
   category nav row underneath already covers that. */
.zh-icon-btn--menu {
	order: 1;
	flex-shrink: 0;
}

.zh-logo {
	order: 2;
	display: none;
	flex-shrink: 0;
}

@media (min-width: 768px) {
	.zh-logo {
		display: flex;
		align-items: center;
		gap: 10px;
	}
}

.zh-header__actions {
	order: 4;
	flex-shrink: 0;
	margin-left: auto;
}

/* Large center search bar (Sociolla-style: logo / search / icons) ------ */

.zh-header__search {
	display: flex;
	order: 3;
	position: relative;
	flex: 1 1 auto;
	min-width: 0;
	align-items: center;
	gap: 6px;
	max-width: 560px;
	height: 38px;
	margin: 0;
	padding: 0 4px 0 14px;
	border: 1px solid var(--zh-border);
	border-radius: 999px;
	background: var(--zh-paper);
	color: var(--zh-text-muted);
	outline: none;
	transition: border-color 0.2s ease, background-color 0.2s ease;
}

@media (min-width: 768px) {
	.zh-header__search {
		height: 42px;
		margin: 0 16px;
		padding: 0 5px 0 18px;
		max-width: 100%;
	}
}

.zh-header__search:focus-within {
	border-color: var(--zh-forest);
	background: #fff;
	outline: none;
}

.zh-header__search-input {
	flex: 1;
	min-width: 0;
	height: 100%;
	border: none;
	background: transparent;
	font-size: 13px;
	color: var(--zh-text);
	outline: none !important;
	box-shadow: none !important;
	-webkit-appearance: none;
	appearance: none;
}

.zh-header__search-input:focus,
.zh-header__search-input:focus-visible {
	outline: none !important;
	box-shadow: none !important;
}

/* Normalize native search-input chrome (Safari/Chrome add their own
   cancel/decoration icons on type="search" that clash with the pill). */
.zh-header__search-input::-webkit-search-decoration,
.zh-header__search-input::-webkit-search-cancel-button,
.zh-header__search-input::-webkit-search-results-button,
.zh-header__search-input::-webkit-search-results-decoration {
	-webkit-appearance: none;
	appearance: none;
}

.zh-header__search-input::placeholder {
	color: var(--zh-text-soft);
	transition: opacity 0.15s ease;
}

.zh-header__search-submit {
	flex-shrink: 0;
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border: none;
	border-radius: 999px;
	background: var(--zh-forest);
	color: #fff;
	transition: background-color 0.2s ease;
}

.zh-header__search-submit:hover {
	background: var(--zh-terracotta);
}

/* Search suggestions panel: opens under the search bar on focus (see
   initSearchSuggestions in main.js), pre-rendered server-side in
   header.php (top categories + best-selling products) -- no AJAX. */

.zh-search-suggest {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	right: 0;
	z-index: 46;
	background: #fff;
	border: 1px solid var(--zh-border);
	border-radius: var(--zh-radius);
	box-shadow: 0 16px 32px rgba(34, 34, 34, 0.14);
	padding: 20px;
	max-height: 70vh;
	overflow-y: auto;
}

.zh-search-suggest[hidden] {
	display: none;
}

.zh-search-suggest__promo {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 18px;
	padding: 10px 14px;
	border-radius: var(--zh-radius-sm);
	background: var(--zh-paper);
	font-size: 13px;
	font-weight: 600;
	color: var(--zh-text);
}

.zh-search-suggest__promo:hover {
	background: var(--zh-beige);
}

.zh-search-suggest__promo-badge {
	flex-shrink: 0;
	padding: 3px 8px;
	border-radius: var(--zh-radius-sm);
	background: var(--zh-forest);
	color: #fff;
	font-size: 9px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.zh-search-suggest__section + .zh-search-suggest__section {
	margin-top: 20px;
}

.zh-search-suggest__label {
	margin-bottom: 10px;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--zh-text-soft);
}

.zh-search-suggest__pills {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.zh-search-suggest__pill {
	padding: 7px 14px;
	border-radius: 999px;
	border: 1px solid var(--zh-border-2);
	font-size: 12px;
	font-weight: 600;
	color: var(--zh-text);
	transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.zh-search-suggest__pill:hover {
	border-color: var(--zh-forest);
	background: var(--zh-beige);
	color: var(--zh-forest);
}

.zh-search-suggest__products {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.zh-search-suggest__product {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 8px;
	border-radius: var(--zh-radius-sm);
}

.zh-search-suggest__product:hover {
	background: var(--zh-paper);
}

.zh-search-suggest__product-thumb {
	flex-shrink: 0;
	display: block;
	width: 42px;
	height: 42px;
	border-radius: var(--zh-radius-sm);
	overflow: hidden;
	background: var(--zh-paper);
}

.zh-search-suggest__product-thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.zh-search-suggest__product-info {
	min-width: 0;
}

.zh-search-suggest__product-name {
	display: block;
	font-size: 13px;
	color: var(--zh-text);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.zh-search-suggest__product-price {
	display: block;
	margin-top: 2px;
	font-size: 12px;
	font-weight: 600;
	color: var(--zh-forest);
}

/* Category mega-menu: left column = top-level categories, right column =
   that category's children grouped into sub-columns, each listing its
   own children underneath. Falls back to a simple message when a
   category has no children (no empty columns). */

.zh-mega-menu {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 45;
	display: none;
	width: min(760px, calc(100vw - 40px));
	max-height: 70vh;
	background: #fff;
	border: 1px solid var(--zh-border);
	box-shadow: 0 16px 32px rgba(34, 34, 34, 0.14);
	border-radius: var(--zh-radius-sm);
	overflow: hidden;
}

.zh-shop-nav {
	position: relative;
}

.zh-shop-nav.is-open .zh-mega-menu {
	display: flex;
}

/* Pure-CSS fallback: opens on hover even with no JS involved, in case
   the .is-open class toggle above isn't firing for any reason. Modern
   browsers only (:has() support) -- degrades to "JS-only" on very old
   ones, never breaks anything either way. */
@supports selector(:has(*)) {
	.zh-shop-nav:has(.zh-shop-nav__item--has-dropdown:hover) .zh-mega-menu,
	.zh-shop-nav:has(.zh-mega-menu:hover) .zh-mega-menu {
		display: flex;
	}
}

.zh-mega-menu__sidebar {
	flex-shrink: 0;
	width: 220px;
	overflow-y: auto;
	padding: 8px;
	background: var(--zh-cream);
	border-right: 1px solid var(--zh-border);
}

.zh-mega-menu__all {
	display: block;
	padding: 10px 12px;
	margin-bottom: 4px;
	border-radius: var(--zh-radius-sm);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--zh-terracotta-2);
}

.zh-mega-menu__all:hover {
	background: var(--zh-paper);
}

.zh-mega-menu__parent {
	display: flex;
	width: 100%;
	align-items: center;
	gap: 10px;
	padding: 8px 10px;
	border: none;
	border-radius: var(--zh-radius-sm);
	background: none;
	font-size: 13px;
	color: var(--zh-text);
	text-align: left;
	transition: background-color 0.15s ease, color 0.15s ease;
}

.zh-mega-menu__parent:hover,
.zh-mega-menu__parent.is-active {
	background: #fff;
	color: var(--zh-forest);
	box-shadow: 0 1px 3px rgba(34, 34, 34, 0.08);
}

.zh-mega-menu__parent-thumb {
	flex-shrink: 0;
	display: block;
	width: 30px;
	height: 30px;
	border-radius: 999px;
	overflow: hidden;
	background: var(--zh-paper);
	border: 1.5px solid var(--zh-border-2);
}

.zh-mega-menu__parent-thumb img,
.zh-mega-menu__parent-thumb span {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.zh-mega-menu__parent-name {
	flex: 1;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.zh-mega-menu__parent svg {
	flex-shrink: 0;
	opacity: 0;
	transition: opacity 0.15s ease;
}

.zh-mega-menu__parent:hover svg,
.zh-mega-menu__parent.is-active svg {
	opacity: 1;
}

.zh-mega-menu__panels {
	flex: 1;
	min-width: 0;
	overflow-y: auto;
	padding: 24px;
}

.zh-mega-menu__panel {
	display: none;
}

.zh-mega-menu__panel.is-active {
	display: block;
}

.zh-mega-menu__see-all {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 18px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--zh-forest);
}

.zh-mega-menu__see-all:hover {
	color: var(--zh-terracotta);
}

.zh-mega-menu__columns {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.zh-mega-menu__column-title {
	display: block;
	margin-bottom: 12px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--zh-text);
}

.zh-mega-menu__column-title:hover {
	color: var(--zh-forest);
}

.zh-mega-menu__column ul {
	display: flex;
	flex-direction: column;
	gap: 9px;
}

.zh-mega-menu__column ul a {
	font-size: 13px;
	color: var(--zh-text-muted);
}

.zh-mega-menu__column ul a:hover {
	color: var(--zh-forest);
}

.zh-mega-menu__empty {
	font-size: 13px;
	color: var(--zh-text-muted);
}

/* Category nav row, underneath the main header row -------------------- */

.zh-header__navbar {
	display: none;
	border-top: 1px solid var(--zh-border);
	background: #fff;
}

@media (min-width: 768px) {
	.zh-header__navbar {
		display: block;
	}
}

.zh-logo {
	align-items: center;
	gap: 10px;
}

/* Once a real logo is uploaded via Customizer -> Site Identity, WordPress
   renders it as a plain <img>, not the circular initials badge below --
   cap its height so it fits the header/footer nicely at any width. */
.zh-logo .custom-logo-link {
	display: block;
}

.zh-logo .custom-logo {
	display: block;
	max-height: 32px;
	max-width: 180px;
	width: auto;
}

.zh-footer__brand-row .custom-logo {
	max-height: 40px;
}

.zh-logo__mark {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	transform: rotate(-6deg);
	border-radius: 999px;
	border: 1px solid var(--zh-border-2);
	background: var(--zh-paper);
	font-family: var(--zh-font-display);
	font-weight: 600;
	font-size: 12px;
	color: var(--zh-forest);
	overflow: hidden;
	white-space: nowrap;
	line-height: 1;
}

.zh-logo__mark img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	border-radius: 999px;
}

.zh-logo__tag {
	display: none;
	font-size: 9px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: var(--zh-text-muted);
}

@media (min-width: 1024px) {
	.zh-logo__tag {
		display: block;
	}
}

.zh-nav {
	display: none;
	align-items: center;
}

@media (min-width: 768px) {
	.zh-nav {
		display: flex;
	}
}

.zh-header__actions {
	display: flex;
	align-items: center;
	gap: 4px;
}

@media (min-width: 480px) {
	.zh-header__actions {
		gap: 8px;
	}
}

.zh-icon-btn {
	position: relative;
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	color: var(--zh-text);
	background: none;
	border: none;
	border-radius: 999px;
	transition: color 0.2s ease, background-color 0.2s ease;
}

@media (min-width: 480px) {
	.zh-icon-btn {
		width: 40px;
		height: 40px;
	}
}

.zh-icon-btn:hover {
	background: var(--zh-paper);
	color: var(--zh-terracotta);
}

.zh-icon-btn--account {
	display: none;
}

@media (min-width: 640px) {
	.zh-icon-btn--account {
		display: grid;
	}
}

.zh-icon-btn--wishlist {
	display: none;
}

@media (min-width: 768px) {
	.zh-icon-btn--wishlist {
		display: grid;
	}
}

/* Chat icon: mobile-only in the header (desktop keeps the floating
   WhatsApp button instead, see .zh-floating-whatsapp). */
.zh-icon-btn--chat-mobile {
	display: grid;
}

@media (min-width: 768px) {
	.zh-icon-btn--chat-mobile {
		display: none;
	}
}

.zh-icon-btn--menu {
	display: grid;
}

@media (min-width: 768px) {
	.zh-icon-btn--menu {
		display: none;
	}
}

.zh-cart-count-wrapper {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.zh-cart-count {
	position: absolute;
	top: 0;
	right: 0;
	display: grid;
	place-items: center;
	min-width: 17px;
	height: 17px;
	padding: 0 3px;
	border-radius: 999px;
	background: var(--zh-terracotta);
	color: #f7eaec;
	font-size: 9px;
	font-weight: 700;
}

/* Mobile menu ----------------------------------------------------------- */

.zh-mobile-menu {
	position: fixed;
	inset: 0;
	z-index: 50;
	background: rgba(32, 40, 36, 0.3);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.28s ease, visibility 0s linear 0.28s;
}

.zh-mobile-menu.is-open {
	opacity: 1;
	visibility: visible;
	transition: opacity 0.28s ease, visibility 0s linear 0s;
}

.zh-mobile-menu__panel {
	margin-left: auto;
	height: 100%;
	width: min(87vw, 360px);
	background: var(--zh-cream);
	padding: 28px;
	box-shadow: -20px 0 40px rgba(0, 0, 0, 0.15);
	display: flex;
	flex-direction: column;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	transform: translateX(100%);
	transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.zh-mobile-menu.is-open .zh-mobile-menu__panel {
	transform: translateX(0);
}

.zh-mobile-menu__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.zh-mobile-menu__logo {
	display: flex;
	align-items: center;
}

.zh-mobile-menu__logo .custom-logo {
	max-height: 30px;
	width: auto;
}

.zh-mobile-menu__logo .zh-logo__mark {
	width: 40px;
	height: 40px;
	font-size: 13px;
}

.zh-mobile-menu__close {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	margin-right: -8px;
	background: none;
	border: none;
	border-radius: 999px;
	color: var(--zh-ink);
	transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.zh-mobile-menu__close:hover,
.zh-mobile-menu__close:focus-visible {
	background: var(--zh-paper-2);
	color: var(--zh-terracotta-2);
}

.zh-mobile-menu__close:active {
	transform: scale(0.92);
}

.zh-mobile-menu__nav {
	margin-top: 28px;
}

.zh-mobile-menu__item {
	opacity: 0;
	transform: translateX(14px);
	transition: opacity 0.32s ease, transform 0.32s ease;
}

.zh-mobile-menu.is-open .zh-mobile-menu__item {
	opacity: 1;
	transform: translateX(0);
}

.zh-mobile-menu.is-open .zh-mobile-menu__item:nth-child(1) { transition-delay: 0.06s; }
.zh-mobile-menu.is-open .zh-mobile-menu__item:nth-child(2) { transition-delay: 0.1s; }
.zh-mobile-menu.is-open .zh-mobile-menu__item:nth-child(3) { transition-delay: 0.14s; }
.zh-mobile-menu.is-open .zh-mobile-menu__item:nth-child(4) { transition-delay: 0.18s; }
.zh-mobile-menu.is-open .zh-mobile-menu__item:nth-child(5) { transition-delay: 0.22s; }

.zh-mobile-menu__link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	width: 100%;
	padding: 0;
	background: none;
	border: none;
	text-align: left;
	font-family: var(--zh-font-display);
	font-size: 24px;
	color: var(--zh-text);
	transition: color 0.18s ease;
}

.zh-mobile-menu__link:hover,
.zh-mobile-menu__link:active {
	color: var(--zh-terracotta-2);
}

.zh-mobile-menu__link--promo {
	color: var(--zh-terracotta-2);
}

.zh-mobile-menu__chevron {
	flex-shrink: 0;
	transition: transform 0.25s ease;
}

.zh-mobile-menu__item--category.is-open .zh-mobile-menu__chevron {
	transform: rotate(180deg);
}

/* Kategori accordion inside the mobile drawer */

.zh-mobile-menu__category-panel {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.3s ease;
}

.zh-mobile-menu__category-panel-inner {
	min-height: 0;
	overflow: hidden;
}

.zh-mobile-menu__item--category.is-open .zh-mobile-menu__category-panel {
	grid-template-rows: 1fr;
}

.zh-mobile-menu__category-all {
	display: block;
	padding: 14px 2px 10px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--zh-terracotta-2);
}

.zh-mobile-menu__category-list {
	margin: 0;
	padding: 4px 0 6px;
	list-style: none;
}

.zh-mobile-menu__category-list a {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 9px 2px;
	font-family: var(--zh-font-body);
	font-size: 14px;
	color: var(--zh-ink);
}

.zh-mobile-menu__category-thumb {
	flex-shrink: 0;
	display: block;
	width: 34px;
	height: 34px;
	border-radius: 999px;
	overflow: hidden;
	background: var(--zh-paper);
}

.zh-mobile-menu__category-thumb img,
.zh-mobile-menu__category-thumb-fallback {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.zh-mobile-menu__category-name {
	flex: 1;
	min-width: 0;
}

.zh-mobile-menu__category-count {
	flex-shrink: 0;
	font-size: 11px;
	color: var(--zh-text-soft);
}

/* Secondary "Informasi" links (footer pages surfaced in the drawer) */

.zh-mobile-menu__secondary {
	margin-top: 28px;
	padding-top: 20px;
	border-top: 1px solid var(--zh-border);
}

.zh-mobile-menu__secondary-label {
	margin: 0 0 10px;
}

.zh-mobile-menu__secondary-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.zh-mobile-menu__secondary-list a {
	font-size: 14px;
	color: var(--zh-text-muted);
}

.zh-mobile-menu__secondary-list a:hover {
	color: var(--zh-terracotta-2);
}

.zh-mobile-menu__foot {
	margin-top: 20px;
	border-top: 1px solid var(--zh-border);
	padding-top: 24px;
	font-size: 12px;
	line-height: 1.6;
	color: var(--zh-text-muted);
}

body.zh-menu-open {
	overflow: hidden;
}

body.zh-popup-open {
	overflow: hidden;
}

/* Wishlist drawer --------------------------------------------------------
   Mirrors the mobile-menu slide-over pattern above, but on the right and
   available at any viewport width. Wishlist data itself is client-side
   (localStorage) -- see initWishlist() in main.js. */

.zh-wishlist-drawer {
	position: fixed;
	inset: 0;
	z-index: 55;
	background: rgba(34, 34, 34, 0.35);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.28s ease, visibility 0s linear 0.28s;
}

.zh-wishlist-drawer.is-open {
	opacity: 1;
	visibility: visible;
	transition: opacity 0.28s ease, visibility 0s linear 0s;
}

.zh-wishlist-drawer__panel {
	margin-left: auto;
	height: 100%;
	width: min(90vw, 380px);
	background: #fff;
	padding: 28px;
	box-shadow: -20px 0 40px rgba(0, 0, 0, 0.15);
	display: flex;
	flex-direction: column;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	transform: translateX(100%);
	transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.zh-wishlist-drawer.is-open .zh-wishlist-drawer__panel {
	transform: translateX(0);
}

.zh-wishlist-drawer__list {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-top: 8px;
}

.zh-wishlist-drawer__item {
	display: flex;
	align-items: center;
	gap: 12px;
}

.zh-wishlist-drawer__item-thumb {
	flex-shrink: 0;
	width: 60px;
	height: 60px;
	border-radius: var(--zh-radius-sm);
	overflow: hidden;
	background: var(--zh-paper);
}

.zh-wishlist-drawer__item-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.zh-wishlist-drawer__item-body {
	flex: 1;
	min-width: 0;
}

.zh-wishlist-drawer__item-name {
	display: block;
	font-size: 14px;
	color: var(--zh-text);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.zh-wishlist-drawer__item-name:hover {
	color: var(--zh-forest);
}

.zh-wishlist-drawer__item-price {
	margin-top: 2px;
	font-size: 13px;
	font-weight: 600;
	color: var(--zh-forest);
}

.zh-wishlist-drawer__item-remove {
	flex-shrink: 0;
	display: grid;
	place-items: center;
	width: 30px;
	height: 30px;
	border-radius: 999px;
	border: none;
	background: var(--zh-paper);
	color: var(--zh-text-muted);
}

.zh-wishlist-drawer__item-remove:hover {
	background: var(--zh-beige);
	color: var(--zh-terracotta-2);
}

.zh-wishlist-drawer__empty {
	margin-top: 24px;
	font-size: 14px;
	line-height: 1.7;
	color: var(--zh-text-muted);
}
/* ==========================================================================
   Footer
   ========================================================================== */

.zh-footer {
	background: #fff;
	color: var(--zh-text);
	border-top: 1px solid var(--zh-border);
}

.zh-footer__grid {
	display: grid;
	gap: 32px;
	padding: 48px 0;
}

@media (min-width: 640px) {
	.zh-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1024px) {
	.zh-footer__grid {
		grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
		padding: 64px 0;
	}
}

.zh-footer__col--brand {
	grid-column: 1 / -1;
}

@media (min-width: 1024px) {
	.zh-footer__col--brand {
		grid-column: auto;
	}
}

.zh-footer__brand-row {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
}

.zh-footer__brand-row .zh-logo__mark {
	width: 48px;
	height: 48px;
	background: var(--zh-paper);
}

.zh-footer__tagline {
	max-width: 320px;
	font-size: 14px;
	line-height: 1.75;
	color: var(--zh-text-muted);
}

.zh-footer__social {
	display: flex;
	gap: 12px;
	margin-top: 24px;
}

.zh-footer__social a {
	display: grid;
	place-items: center;
	width: 36px;
	height: 36px;
	border-radius: 999px;
	border: 1px solid var(--zh-border-2);
	color: var(--zh-text);
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.zh-footer__social a:hover {
	background: var(--zh-beige);
	border-color: var(--zh-forest);
	color: var(--zh-forest);
}

.zh-footer__col p.zh-eyebrow {
	margin-bottom: 20px;
	color: var(--zh-forest);
}

.zh-footer__col ul {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.zh-footer__col a,
.zh-footer__col span {
	font-size: 14px;
	color: var(--zh-text-muted);
}

.zh-footer__col a:hover {
	color: var(--zh-forest);
}

/* Payment methods ------------------------------------------------------- */

.zh-footer__payments {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px 10px;
	padding: 0 0 32px;
}

.zh-footer__payments-label {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.13em;
	color: var(--zh-text-soft);
	margin-right: 4px;
}

.zh-footer__payments-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.zh-footer__payments-list li {
	padding: 6px 12px;
	border-radius: var(--zh-radius-sm);
	background: var(--zh-paper);
	color: var(--zh-text);
	font-size: 11px;
	font-weight: 600;
}

.zh-footer__bottom {
	border-top: 1px solid var(--zh-border);
	padding: 20px 0;
}

.zh-footer__bottom .zh-container {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 8px;
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.13em;
	color: var(--zh-text-soft);
}

@media (min-width: 768px) {
	.zh-footer__bottom .zh-container {
		flex-direction: row;
	}
}

/* Newsletter form (shared: footer + homepage section) ------------------ */

.zh-newsletter {
	display: flex;
	gap: 8px;
}

.zh-newsletter input[type="email"] {
	min-width: 0;
	flex: 1;
	border: 1px solid var(--zh-border-2);
	border-radius: var(--zh-radius-sm);
	background: var(--zh-paper);
	color: var(--zh-text);
	padding: 0 16px;
	height: 46px;
	font-size: 13px;
	outline: none;
	transition: border-color 0.2s ease;
}

.zh-newsletter input[type="email"]::placeholder {
	color: var(--zh-text-soft);
}

.zh-newsletter input[type="email"]:focus {
	border-color: var(--zh-forest);
}

/* Dark variant: used inside the footer, which now sits on a solid pink
   background -- flip to translucent white so the field/button read
   clearly against the pink instead of disappearing into it. */
.zh-newsletter--dark input[type="email"] {
	border-color: rgba(255, 255, 255, 0.5);
	background: rgba(255, 255, 255, 0.14);
	color: #fff;
}

.zh-newsletter--dark input[type="email"]::placeholder {
	color: rgba(255, 255, 255, 0.7);
}

.zh-newsletter--dark input[type="email"]:focus {
	border-color: #fff;
}

.zh-newsletter button {
	padding: 0 20px;
	border: none;
	border-radius: var(--zh-radius-sm);
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.13em;
	background: var(--zh-forest);
	color: #fff;
	transition: background-color 0.2s ease;
}

.zh-newsletter button:hover {
	background: var(--zh-terracotta);
}

.zh-newsletter--dark button {
	background: #fff;
	color: var(--zh-forest-2);
}

.zh-newsletter--dark button:hover {
	background: var(--zh-cream);
}

.zh-newsletter__success {
	padding: 12px 0;
	font-size: 14px;
	color: var(--zh-success-text);
}

/* The [hidden] attribute (native HTML) toggles visibility via JS in
   main.js. Scope display:flex to the :not([hidden]) state so this rule
   never fights the hidden attribute -- both are class/attribute
   selectors of equal specificity, and without this the later rule in
   the cascade would always win and show the message immediately. */
.zh-newsletter__success:not([hidden]) {
	display: flex;
	align-items: center;
	gap: 8px;
}

.zh-newsletter--dark .zh-newsletter__success {
	color: #fff;
}

/* Floating WhatsApp button ------------------------------------------------ */

.zh-floating-whatsapp {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 47;
	display: grid;
	place-items: center;
	width: 56px;
	height: 56px;
	border-radius: 999px;
	background: var(--zh-forest);
	color: #fff;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
	transition: transform 0.2s ease, background-color 0.2s ease;
}

.zh-floating-whatsapp:hover {
	transform: translateY(-4px);
	background: var(--zh-terracotta);
}

/* Mobile: sits just above the bottom nav (rather than overlapping it) --
   same fixed-above-bottom-nav pattern as .zh-product-single__sticky-bar,
   just with its own right-side offset instead of spanning full width. */
@media (max-width: 767px) {
	.zh-floating-whatsapp {
		bottom: calc(var(--zh-bottom-nav-height) + 16px);
		width: 50px;
		height: 50px;
	}
}
/* ==========================================================================
   Decorative "bottle" visuals
   Pure CSS illustrations used as an elegant placeholder wherever a product
   has no uploaded photo yet. As soon as a featured image is set in
   WooCommerce, that image is used instead (see template-parts/product/visual.php).
   ========================================================================== */

@keyframes zh-float-bottle {
	0%, 100% { transform: translateY(0) rotate(-3deg); }
	50% { transform: translateY(-9px) rotate(-1deg); }
}

@keyframes zh-float-bottle-two {
	0%, 100% { transform: translateY(3px) rotate(4deg); }
	50% { transform: translateY(-8px) rotate(2deg); }
}

@keyframes zh-soft-pulse {
	0%, 100% { transform: scale(1); opacity: 0.7; }
	50% { transform: scale(1.04); opacity: 0.95; }
}

/* Editable via Customizer -> Zahra Homepage -> Hero */
.zh-hero__visual--photo {
	position: relative;
	min-height: 390px;
	overflow: hidden;
}

.zh-hero__visual--photo img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media (min-width: 768px) {
	.zh-hero__visual--photo {
		min-height: 560px;
	}
}

.zh-hero-still-life {
	position: relative;
	min-height: 390px;
	overflow: hidden;
	background: var(--zh-paper-2);
}

@media (min-width: 768px) {
	.zh-hero-still-life {
		min-height: 560px;
	}
}

.zh-hero-still-life::before {
	content: "";
	position: absolute;
	inset: 0;
	opacity: 0.5;
	background: radial-gradient(ellipse at 72% 25%, rgba(255, 255, 255, 0.72), transparent 31%), linear-gradient(125deg, #e6d1d5, #c7b6b8);
}

.zh-hero-still-life::after {
	content: "";
	position: absolute;
	width: 88%;
	height: 40%;
	left: 8%;
	bottom: -13%;
	transform: rotate(-6deg);
	background: rgba(117, 103, 82, 0.28);
	filter: blur(24px);
	border-radius: 50%;
}

.zh-hero-orb {
	position: absolute;
	z-index: 1;
	width: 220px;
	height: 220px;
	right: 14%;
	top: 8%;
	border-radius: 50%;
	background: rgba(244, 237, 224, 0.56);
	animation: zh-soft-pulse 8s ease-in-out infinite;
}

@media (min-width: 768px) {
	.zh-hero-orb {
		width: 295px;
		height: 295px;
		right: 28%;
		top: 9%;
	}
}

.zh-bottle {
	position: absolute;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	border: 1px solid rgba(255, 255, 255, 0.52);
	border-radius: 6px;
	box-shadow: 18px 25px 30px rgba(48, 41, 32, 0.2), inset 4px 0 12px rgba(255, 255, 255, 0.22);
}

.zh-bottle::before {
	content: "";
	position: absolute;
	top: -22px;
	width: 38%;
	height: 22px;
	background: #2a171e;
	border-radius: 2px 2px 0 0;
	box-shadow: inset 3px 0 5px rgba(255, 255, 255, 0.14);
}

.zh-bottle__label {
	background: rgba(242, 235, 224, 0.86);
	color: #2a1f22;
	padding: 12px 8px;
	width: 78%;
	text-align: center;
	font-size: 8px;
	letter-spacing: 0.13em;
	line-height: 1.3;
}

.zh-bottle--large {
	width: 100px;
	height: 170px;
	right: 29%;
	bottom: 18%;
	background: linear-gradient(105deg, rgba(232, 217, 195, 0.75), rgba(191, 168, 117, 0.42));
	animation: zh-float-bottle 6s ease-in-out infinite;
}

.zh-bottle--dark {
	width: 94px;
	height: 157px;
	right: 5%;
	bottom: 13%;
	background: linear-gradient(105deg, rgba(43, 31, 22, 0.93), rgba(26, 18, 13, 0.85));
	animation: zh-float-bottle-two 7s ease-in-out infinite;
}

.zh-bottle--dark .zh-bottle__label {
	color: #efdade;
	background: rgba(35, 25, 17, 0.7);
}

.zh-bottle--side {
	width: 130px;
	height: 60px;
	right: 29%;
	bottom: 8%;
	transform: rotate(-17deg);
	background: linear-gradient(110deg, rgba(232, 217, 195, 0.9), rgba(168, 152, 122, 0.42));
}

.zh-bottle--side::before {
	top: -12px;
	right: 8%;
	width: 22%;
	height: 12px;
}

.zh-bottle--side .zh-bottle__label {
	padding: 6px;
	width: 47%;
	font-size: 7px;
}

@media (min-width: 768px) {
	.zh-bottle--large { width: 142px; height: 240px; }
	.zh-bottle--dark { width: 128px; height: 216px; }
	.zh-bottle--side { width: 184px; height: 83px; }
}

/* Small product-card / thumbnail bottle art ------------------------------ */

.zh-product-visual {
	position: relative;
	min-height: 270px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(145deg, #f0dbe0, #d6a8af);
}

.zh-product-visual::after {
	content: "";
	position: absolute;
	width: 72%;
	height: 14%;
	bottom: 7%;
	border-radius: 50%;
	background: rgba(36, 34, 28, 0.16);
	filter: blur(11px);
}

.zh-product-visual--large {
	min-height: 420px;
}

@media (min-width: 768px) {
	.zh-product-visual--large {
		min-height: 620px;
	}
}

.zh-mini-bottle {
	width: 83px;
	height: 150px;
	position: relative;
	z-index: 2;
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 4px;
	box-shadow: 9px 13px 18px rgba(46, 40, 30, 0.2), inset 4px 0 7px rgba(255, 255, 255, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
}

.zh-product-visual--large .zh-mini-bottle {
	transform: scale(1.9);
}

.zh-mini-bottle::before {
	content: "";
	position: absolute;
	top: -20px;
	width: 33%;
	height: 20px;
	background: #2a171e;
	border-radius: 2px 2px 0 0;
}

.zh-mini-label {
	font-size: 6px;
	letter-spacing: 0.12em;
	padding: 10px 5px;
	width: 72%;
	background: rgba(242, 235, 224, 0.86);
	text-align: center;
}

/* Glass tint variants, cycled by product id/category so every product gets
   a visually distinct placeholder. */
.zh-mini-bottle.zh-glass-1 { background: linear-gradient(100deg, #2a171e, #17090e); }
.zh-mini-bottle.zh-glass-2 { background: linear-gradient(100deg, rgba(239, 203, 193, 0.88), rgba(184, 134, 123, 0.6)); }
.zh-mini-bottle.zh-glass-3 { background: linear-gradient(100deg, rgba(220, 220, 220, 0.85), rgba(167, 167, 167, 0.58)); }
.zh-mini-bottle.zh-glass-4 { background: linear-gradient(100deg, #391d24, #190c10); }
.zh-mini-bottle.zh-glass-5 { background: linear-gradient(100deg, rgba(232, 223, 199, 0.9), rgba(161, 151, 124, 0.66)); }

.zh-visual-tint-1 { background: linear-gradient(145deg, #ffd6e8, #ff9dc4); }
.zh-visual-tint-2 { background: linear-gradient(145deg, #ffc2dd, #ff4f93); }
.zh-visual-tint-3 { background: linear-gradient(145deg, #ffe1ee, #e63e83); }
.zh-visual-tint-4 { background: linear-gradient(145deg, #ffb8d6, #c2255f); }
.zh-visual-tint-5 { background: linear-gradient(145deg, #ffe4f0, #ff85b3); }

.zh-mini-set {
	display: flex;
	gap: 7px;
	align-items: flex-end;
	position: relative;
	z-index: 2;
}

.zh-mini-set .zh-mini-bottle {
	width: 30px;
	height: 84px;
}

.zh-mini-set .zh-mini-bottle::before {
	top: -11px;
	height: 11px;
}

.zh-mini-set .zh-mini-label {
	font-size: 4px;
	padding: 4px 2px;
}

/* Product image (real photo) fills the same box as the CSS placeholder */
.zh-product-visual img,
.zh-product-visual .zh-product-photo {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
/* ==========================================================================
   Product card
   ========================================================================== */

.zh-products-grid {
	display: grid;
	gap: 24px 24px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 640px) {
	.zh-products-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 32px 24px;
	}
}

@media (min-width: 1024px) {
	.zh-products-grid--4 {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
	.zh-products-grid--3 {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.zh-product-card {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	min-width: 0;
	background: #fff;
	border-radius: var(--zh-radius);
	overflow: hidden;
	box-shadow: 0 1px 3px rgba(34, 34, 34, 0.06), 0 1px 2px rgba(34, 34, 34, 0.04);
	transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.zh-product-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 28px rgba(255, 79, 147, 0.16), 0 2px 8px rgba(34, 34, 34, 0.06);
}

.zh-product-card__media {
	position: relative;
	display: block;
	overflow: hidden;
	background: var(--zh-paper);
}

.zh-product-card__media .zh-product-visual {
	transition: transform 0.5s ease;
}

.zh-product-card:hover .zh-product-visual {
	transform: scale(1.03);
}

.zh-product-card__badge {
	position: static;
	z-index: 3;
	background: #fff;
	padding: 5px 10px;
	border-radius: var(--zh-radius-sm);
	font-size: 9px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: var(--zh-text);
	box-shadow: 0 1px 4px rgba(34, 34, 34, 0.12);
}

.zh-product-card__sale-badge {
	position: static;
	z-index: 3;
	background: var(--zh-forest);
	color: #fff;
	padding: 5px 10px;
	border-radius: var(--zh-radius-sm);
	font-size: 9px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.14em;
}

.zh-product-card__badges {
	position: absolute;
	left: 10px;
	top: 10px;
	z-index: 3;
	display: flex;
	flex-direction: column;
	gap: 6px;
	align-items: flex-start;
}

.zh-product-card__quick-actions {
	position: absolute;
	right: 10px;
	top: 10px;
	z-index: 3;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.zh-product-card__wishlist {
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border-radius: 999px;
	border: none;
	background: rgba(255, 255, 255, 0.92);
	color: var(--zh-text-muted);
	box-shadow: 0 1px 4px rgba(34, 34, 34, 0.14);
	transition: color 0.2s ease, transform 0.2s ease;
}

.zh-product-card__wishlist:hover {
	transform: scale(1.08);
	color: var(--zh-forest);
}

.zh-product-card__wishlist.is-active {
	color: var(--zh-forest);
}

.zh-product-card__body {
	padding: 12px 14px 14px;
	display: flex;
	flex-direction: column;
	flex: 1;
	gap: 8px;
}

.zh-product-card__rating {
	display: flex;
	align-items: center;
	gap: 6px;
}

.zh-product-card__rating .star-rating {
	font-size: 11px;
}

.zh-product-card__rating-value {
	font-size: 12px;
	font-weight: 700;
	color: var(--zh-text);
}

.zh-product-card__rating-count {
	font-size: 11px;
	color: var(--zh-text-soft);
}

.zh-product-card__tag-pill {
	display: inline-block;
	align-self: flex-start;
	padding: 4px 10px;
	border-radius: 999px;
	background: var(--zh-beige);
	color: var(--zh-terracotta-2);
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.zh-product-card__stock {
	display: flex;
	align-items: center;
	gap: 8px;
}

.zh-product-card__stock-bar {
	flex: 1;
	height: 5px;
	border-radius: 999px;
	background: var(--zh-border);
	overflow: hidden;
}

.zh-product-card__stock-bar span {
	display: block;
	height: 100%;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--zh-terracotta-2), var(--zh-forest));
}

.zh-product-card__stock-label {
	flex-shrink: 0;
	font-size: 10px;
	font-weight: 600;
	color: var(--zh-text-soft);
}

/* "Hampir habis" (critical, <=5 left): same bar, more urgent color + label */
.zh-product-card__stock--critical .zh-product-card__stock-bar span {
	background: #e5484d;
}

.zh-product-card__stock--critical .zh-product-card__stock-label {
	color: #e5484d;
	font-weight: 700;
}

/* "Masih Tersedia" (plain available, no bar needed) */
.zh-product-card__stock-pill {
	display: inline-flex;
	align-self: flex-start;
	align-items: center;
	gap: 5px;
	font-size: 10px;
	font-weight: 600;
	color: var(--zh-text-soft);
}

.zh-product-card__stock-pill--available::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 999px;
	background: #4caf7d;
}

.zh-product-card__name {
	font-family: var(--zh-font-display);
	font-size: 15px;
	line-height: 1.25;
	color: var(--zh-text);
	transition: color 0.2s ease;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	/* NOTE: this used to also carry a min-height reserving 2 full lines,
	   so every card lined up evenly even when names were short -- but
	   now that the meta/description line sits directly under the name
	   (rather than off to the side next to price), that reserved empty
	   space showed up as a big gap for any short, one-line name. Letting
	   the name size to its actual content and just relying on the
	   card's normal flex gap for spacing looks right far more often
	   than it looks uneven. */
}

@media (min-width: 640px) {
	.zh-product-card__name {
		font-size: 19px;
		line-height: 1.2;
	}
}

.zh-product-card:hover .zh-product-card__name {
	color: var(--zh-terracotta-2);
}

.zh-product-card__meta {
	margin-top: 4px;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.13em;
	color: var(--zh-text-soft);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.zh-product-card__price {
	display: flex;
	flex-direction: row-reverse;
	align-items: baseline;
	/* NOTE: flex-direction:row-reverse flips which side counts as
	   "start" -- flex-start here would actually push this to the RIGHT
	   edge (that was the bug). flex-end is what visually lands it on
	   the left, matching the rest of the card's text. */
	justify-content: flex-end;
	gap: 8px;
	font-size: 15px;
	font-weight: 700;
	color: var(--zh-text);
}

.zh-product-card__price del {
	margin-right: 0;
	font-weight: 400;
	font-size: 11px;
	color: #a3868d;
	opacity: 0.8;
}

.zh-product-card__price ins {
	text-decoration: none;
	color: var(--zh-terracotta-2);
}

.zh-product-card__actions {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: auto;
	padding-top: 6px;
}

/* Grid-card wishlist icon: compact, floating on the image corner.
   Add-to-cart used to live here too (compact icon, filled pink) but now
   renders as a full-width labeled button in the card body instead (see
   .zh-product-card__add below + zahra_build_loop_button_markup()) --
   the .zh-product-card__icon-btn--cart rules further down are unused
   now but left in place in case a narrower card layout wants the old
   compact treatment back. */

.zh-product-card__icon-btn {
	display: grid;
	place-items: center;
	flex-shrink: 0;
	width: 38px;
	height: 38px;
	border-radius: var(--zh-radius-sm);
	border: 1px solid var(--zh-border-2);
	background: #fff;
	color: var(--zh-text);
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.zh-product-card__icon-btn--cart {
	flex: 1 1 auto;
	width: auto;
	background: var(--zh-forest);
	border-color: var(--zh-forest);
	color: #fff;
}

/* Inside the card's floating corner stack (alongside wishlist), the
   cart icon matches that same small circular shape instead of the wide
   flex-grow button it is everywhere else this filter's markup is reused
   (e.g. if a WooCommerce block ever renders a plain product loop). */
.zh-product-card__quick-actions .zh-product-card__icon-btn--cart {
	flex: none;
	width: 34px;
	height: 34px;
	border-radius: 999px;
	box-shadow: 0 1px 4px rgba(34, 34, 34, 0.14);
}

.zh-product-card__icon-btn--cart:hover {
	background: var(--zh-terracotta);
	border-color: var(--zh-terracotta);
}

.zh-product-card__icon-btn--cart.loading {
	opacity: 0.65;
	pointer-events: none;
}

.zh-product-card__icon-btn--cart.added::after {
	content: "\2713";
	margin-left: 6px;
}

.zh-product-card__icon-btn--whatsapp:hover {
	border-color: #4caf7d;
	background: #e5eee3;
	color: #2f6b4a;
}

/* Quick View modal's full-size text button (see zahra_filter_loop_button_markup) */

.zh-product-card__add {
	display: flex;
	width: 100%;
	height: 42px;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: var(--zh-forest);
	border: none;
	border-radius: var(--zh-radius-sm);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	transition: background-color 0.25s ease, transform 0.25s ease;
	cursor: pointer;
}

.zh-product-card__add:hover {
	background: var(--zh-terracotta);
	transform: translateY(-2px);
}

.zh-product-card__add.is-loading {
	opacity: 0.7;
	pointer-events: none;
}

/* Out-of-stock state: deliberately NOT pink, so it reads at a glance as
   a different action ("get notified") rather than "buy this now". */
.zh-product-card__add--notify {
	background: var(--zh-ink);
}

.zh-product-card__add--notify:hover {
	background: var(--zh-text);
	transform: translateY(-2px);
}

/* "Produk serupa" -- a couple of in-stock alternatives shown under the
   Notify Me button so an out-of-stock card doesn't just dead-end. */
.zh-product-card__alts {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

.zh-product-card__alts-label {
	font-size: 10px;
	font-weight: 600;
	color: var(--zh-text-soft);
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.zh-product-card__alts-list {
	display: flex;
	gap: 6px;
}

.zh-product-card__alt {
	display: block;
	width: 32px;
	height: 32px;
	border-radius: var(--zh-radius-sm);
	overflow: hidden;
	border: 1px solid var(--zh-border);
	flex-shrink: 0;
	transition: border-color 0.2s ease;
}

.zh-product-card__alt:hover {
	border-color: var(--zh-forest);
}

.zh-product-card__alt-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.zh-product-card__alt-fallback {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	background: var(--zh-paper);
	color: var(--zh-text-soft);
	font-family: var(--zh-font-display);
	font-size: 12px;
	font-weight: 600;
}
/* ==========================================================================
   Homepage sections
   ========================================================================== */

.zh-hero {
	display: grid;
	background: var(--zh-paper-2);
	width: min(var(--zh-container), calc(100% - 40px));
	margin: 24px auto 0;
	border-radius: var(--zh-radius);
	overflow: hidden;
}

@media (max-width: 767px) {
	.zh-hero {
		width: min(100% - 32px, var(--zh-container));
		margin-top: 16px;
	}
}

@media (min-width: 768px) {
	.zh-hero {
		grid-template-columns: 0.82fr 1.18fr;
	}
}

.zh-hero__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 64px 20px;
}

@media (min-width: 768px) {
	.zh-hero__content {
		padding-top: 96px;
		padding-bottom: 96px;
		padding-right: 64px;
		/* Match the same left inset .zh-container uses elsewhere on the
		   page, so hero text lines up with the sections below it instead
		   of drifting based on the hero grid column's own width. */
		padding-left: max(20px, calc((100vw - 1160px) / 2));
	}
}

.zh-hero__title {
	max-width: 520px;
	margin-top: 28px;
}

.zh-hero__title em {
	font-style: italic;
	color: var(--zh-terracotta-2);
}

.zh-hero__lede {
	margin-top: 28px;
	max-width: 420px;
}

.zh-hero__actions {
	margin-top: 36px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
}

.zh-hero__visual {
	position: relative;
}

.zh-hero__visual-caption {
	position: absolute;
	z-index: 10;
	font-size: 9px;
	text-transform: uppercase;
	letter-spacing: 0.22em;
	color: #70555c;
}

.zh-hero__visual-caption--top {
	right: 24px;
	top: 32px;
	text-align: right;
}

.zh-hero__visual-caption--bottom {
	left: 28px;
	bottom: 24px;
}

@media (min-width: 768px) {
	.zh-hero__visual-caption--top { right: 48px; top: 48px; }
	.zh-hero__visual-caption--bottom { left: 48px; bottom: 24px; }
}

/* Benefits rail ----------------------------------------------------------- */

.zh-benefits {
	border-top: 1px solid #e1cdd1;
	border-bottom: 1px solid #e1cdd1;
	background: var(--zh-paper);
}

.zh-benefits__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
	.zh-benefits__grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.zh-benefit {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 20px 14px;
	border-right: 1px solid #e1cdd1;
	border-bottom: 1px solid #e1cdd1;
}

@media (min-width: 768px) {
	.zh-benefit {
		border-bottom: none;
		padding: 20px 18px;
	}
}

.zh-benefit:nth-child(2n) {
	border-right: none;
}

@media (min-width: 768px) {
	.zh-benefit:nth-child(2n) {
		border-right: 1px solid #e1cdd1;
	}
	.zh-benefit:last-child {
		border-right: none;
	}
}

.zh-benefit__icon {
	flex-shrink: 0;
	color: var(--zh-terracotta);
}

.zh-benefit__title {
	font-size: 11px;
	font-weight: 600;
	color: #382328;
}

.zh-benefit__detail {
	margin-top: 3px;
	font-size: 10px;
	line-height: 1.4;
	color: #8c6a72;
}

/* Section heading ----------------------------------------------------------- */

.zh-section {
	padding: 80px 0;
}

@media (min-width: 768px) {
	.zh-section {
		padding: 112px 0;
	}
}

.zh-section--paper {
	background: var(--zh-paper);
}

/* "Mengapa Zahra" section: white by default (dark text), switches to a
   dark-overlay + white-text treatment only if a background photo is set
   via Customizer -> Zahra Homepage -> Why Zahra (needs contrast against
   an arbitrary photo either way). */
.zh-why-zahra {
	background: #fff;
	color: var(--zh-text);
}

.zh-why-zahra .zh-eyebrow {
	color: var(--zh-forest);
}

.zh-why-zahra.zh-section--forest-photo {
	position: relative;
	background-size: cover;
	background-position: center;
	color: #fff;
}

.zh-why-zahra.zh-section--forest-photo::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(30, 38, 34, 0.82);
}

.zh-why-zahra.zh-section--forest-photo > .zh-container {
	position: relative;
	z-index: 1;
}

.zh-why-zahra.zh-section--forest-photo .zh-eyebrow {
	color: rgba(255, 255, 255, 0.85);
}

.zh-section-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 32px;
}

.zh-section-head__see-all {
	display: none;
}

@media (min-width: 640px) {
	.zh-section-head__see-all {
		display: inline-flex;
	}
}

/* Category tiles ------------------------------------------------------------ */

.zh-categories {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}

@media (min-width: 768px) {
	.zh-categories {
		grid-template-columns: repeat(4, 1fr);
		gap: 20px;
	}
}

.zh-category-tile {
	position: relative;
	grid-column: span 1;
	min-height: 210px;
	overflow: hidden;
	background: var(--zh-paper-2);
	padding: 20px;
	display: flex;
	align-items: flex-end;
	border-radius: var(--zh-radius);
}

@media (min-width: 768px) {
	.zh-category-tile {
		min-height: 275px;
	}
}

.zh-category-tile--wide {
	grid-column: span 2;
}

.zh-category-tile__bg {
	position: absolute;
	inset: 0;
	transition: transform 0.7s ease;
}

.zh-category-tile:hover .zh-category-tile__bg {
	transform: scale(1.06);
}

.zh-category-tile__scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(43, 31, 22, 0.65), transparent 65%);
}

.zh-category-tile__content {
	position: relative;
	z-index: 2;
	color: #f7e7ea;
}

.zh-category-tile__content .zh-category-tile__label {
	font-family: var(--zh-font-display);
	font-size: 20px;
}

.zh-category-tile__count {
	margin-top: 4px;
	font-size: 9px;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	color: #dccbce;
}

/* Editorial / "why zahra" ------------------------------------------------- */

.zh-editorial {
	display: grid;
	gap: 40px;
	align-items: center;
	padding: 80px 0;
}

@media (min-width: 768px) {
	.zh-editorial {
		grid-template-columns: 1fr 1.2fr;
		gap: 80px;
		padding: 128px 0;
	}
}

.zh-editorial__art {
	position: relative;
	min-height: 320px;
	overflow: hidden;
	background: var(--zh-paper-2);
}

@media (min-width: 768px) {
	.zh-editorial__art {
		min-height: 390px;
	}
}

.zh-why-grid {
	margin-top: 32px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}

@media (min-width: 768px) {
	.zh-why-grid {
		margin-top: 56px;
		grid-template-columns: repeat(4, 1fr);
		gap: 40px;
	}
}

.zh-why-item {
	border-top: none;
	padding: 20px 16px;
	border-radius: var(--zh-radius);
	background: var(--zh-paper);
}

@media (min-width: 768px) {
	.zh-why-item {
		border-top: 1px solid var(--zh-border);
		padding: 20px 0 0;
		border-radius: 0;
		background: none;
	}
}

.zh-why-item__icon {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	margin-bottom: 14px;
	border-radius: 999px;
	background: var(--zh-beige);
	color: var(--zh-forest);
}

@media (min-width: 768px) {
	.zh-why-item__icon {
		width: auto;
		height: auto;
		margin-bottom: 20px;
		border-radius: 0;
		background: none;
	}
}

.zh-why-item h3 {
	font-size: 15px;
}

@media (min-width: 768px) {
	.zh-why-item h3 {
		font-size: 1.4rem;
	}
}

.zh-why-item p {
	margin-top: 8px;
	font-size: 12px;
	line-height: 1.55;
	color: var(--zh-text-muted);
}

@media (min-width: 768px) {
	.zh-why-item p {
		margin-top: 12px;
		font-size: 14px;
		line-height: 1.6;
	}
}

.zh-why-zahra.zh-section--forest-photo .zh-why-item {
	background: rgba(255, 255, 255, 0.08);
}

@media (min-width: 768px) {
	.zh-why-zahra.zh-section--forest-photo .zh-why-item {
		background: none;
		border-top-color: rgba(255, 255, 255, 0.3);
	}
}

.zh-why-zahra.zh-section--forest-photo .zh-why-item__icon {
	background: rgba(255, 255, 255, 0.16);
	color: #fff;
}

@media (min-width: 768px) {
	.zh-why-zahra.zh-section--forest-photo .zh-why-item__icon {
		background: none;
	}
}

.zh-why-zahra.zh-section--forest-photo .zh-why-item p {
	color: rgba(255, 255, 255, 0.85);
}

/* Marquee ------------------------------------------------------------------- */

.zh-marquee {
	overflow: hidden;
	border-bottom: 1px solid #e1cdd1;
	background: #eedfe2;
	padding: 20px 0;
}

.zh-marquee__track {
	display: flex;
	width: max-content;
	align-items: center;
	gap: 48px;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.22em;
	color: #6a5a5e;
	animation: zh-marquee 26s linear infinite;
}

.zh-marquee__track span.zh-marquee__sep {
	color: var(--zh-terracotta);
}

@keyframes zh-marquee {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

/* Testimonials ---------------------------------------------------------- */

.zh-testimonials-v2 {
	overflow: hidden;
}

.zh-testimonials-v2__head {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 40px;
}

.zh-testimonials-v2__head h2 {
	margin-top: 12px;
	max-width: 460px;
}

/* Carousel ---------------------------------------------------------------
   Native horizontal scroll + scroll-snap: no JS framework needed, works
   with touch-swipe on mobile for free, and the prev/next buttons just
   nudge scrollLeft (see main.js). Full-width, independent of the header
   row above, so its layout never depends on how long a quote is. */
.zh-testimonial-carousel {
	position: relative;
	width: 100%;
}

.zh-testimonial-carousel__track {
	display: flex;
	gap: 16px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-padding-left: 4px;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	padding-bottom: 4px;
	margin: 0;
}

.zh-testimonial-carousel__track::-webkit-scrollbar {
	display: none;
}

.zh-testimonial-slide {
	flex: 0 0 min(340px, 80vw);
	scroll-snap-align: start;
	background: #e4d2d5;
	padding: 28px;
	margin: 0;
	font-size: 14px;
	line-height: 1.75;
	color: #584b4e;
}

.zh-testimonial-slide--tint-2 {
	background: #e0d9da;
}

.zh-testimonial-slide--tint-3 {
	background: #e2cfd4;
}

.zh-testimonial-slide__photo {
	width: 44px;
	height: 44px;
	border-radius: 999px;
	object-fit: cover;
	margin-bottom: 16px;
}

.zh-testimonial-slide__quote {
	margin: 0;
	min-height: 4.5em;
}

.zh-testimonial-slide footer {
	margin-top: 28px;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--zh-terracotta-2);
}

.zh-testimonial-carousel__controls {
	display: flex;
	gap: 8px;
	flex-shrink: 0;
}

.zh-testimonial-carousel__btn {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	border: 1px solid var(--zh-border-2);
	background: transparent;
	color: #3d282d;
	border-radius: 999px;
	transition: border-color 0.2s ease, background-color 0.2s ease;
}

.zh-testimonial-carousel__btn[hidden] {
	display: none;
}

.zh-testimonial-carousel__btn:hover {
	border-color: var(--zh-forest);
	background: #ebd6db;
}

/* CTA banner + newsletter section --------------------------------------- */

.zh-cta-banner {
	background: var(--zh-beige);
	padding: 64px 0;
}

@media (min-width: 768px) {
	.zh-cta-banner {
		padding: 80px 0;
	}
}

.zh-cta-banner__inner {
	display: grid;
	align-items: center;
	gap: 32px;
}

@media (min-width: 768px) {
	.zh-cta-banner__inner {
		grid-template-columns: 1fr 1.1fr;
	}
}

.zh-cta-banner__lede {
	margin-top: 12px;
	max-width: 380px;
	font-size: 14px;
	color: #755960;
}
/* ==========================================================================
   Shop / product archive
   ========================================================================== */

.zh-archive-header {
	background: var(--zh-paper);
	padding: 64px 0;
}

@media (min-width: 768px) {
	.zh-archive-header {
		padding: 96px 0;
	}
}

.zh-archive-header__title {
	font-size: clamp(2.6rem, 7vw, 4.5rem);
}

.zh-archive-header__lede {
	margin-top: 20px;
	max-width: 520px;
	font-size: 14px;
	line-height: 1.75;
	color: var(--zh-text-muted);
}

.zh-archive-body {
	padding: 48px 0 80px;
}

@media (min-width: 768px) {
	.zh-archive-body {
		padding: 80px 0;
	}
}

.zh-toolbar {
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding-bottom: 28px;
	margin-bottom: 40px;
	border-bottom: 1px solid var(--zh-border);
}

@media (min-width: 768px) {
	.zh-toolbar {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}
}

.zh-filter-pills {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}

.zh-filter-pills__icon {
	margin-right: 6px;
	color: var(--zh-terracotta);
}

.zh-filter-pill {
	border-radius: 999px;
	border: 1px solid var(--zh-border-2);
	padding: 8px 16px;
	font-size: 12px;
	font-weight: 600;
	color: var(--zh-text-muted);
	background: #fff;
	transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.zh-filter-pill:hover {
	border-color: var(--zh-terracotta-2);
}

.zh-filter-pill.is-active {
	border-color: var(--zh-forest);
	background: var(--zh-forest);
	color: #fff;
}

.zh-toolbar__right {
	display: flex;
	gap: 8px;
}

.zh-search-box {
	display: flex;
	flex: 1;
	align-items: center;
	gap: 8px;
	border: 1px solid var(--zh-border-2);
	border-radius: 999px;
	background: var(--zh-paper);
	padding: 0 14px;
}

@media (min-width: 768px) {
	.zh-search-box {
		width: 224px;
		flex: none;
	}
}

.zh-search-box svg {
	color: var(--zh-text-soft);
	flex-shrink: 0;
}

.zh-search-box input {
	width: 100%;
	border: none;
	background: transparent;
	padding: 10px 8px;
	font-size: 12px;
	outline: none;
}

.zh-search-box input::placeholder {
	color: var(--zh-text-soft);
}

.zh-sort-select {
	border: 1px solid var(--zh-border-2);
	border-radius: var(--zh-radius-sm);
	background: var(--zh-paper);
	padding: 0 12px;
	height: 40px;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--zh-text-muted);
	outline: none;
}

.zh-toolbar-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 32px;
	font-size: 12px;
	color: var(--zh-text-muted);
}

.zh-empty-state {
	border: 1px dashed var(--zh-border-2);
	padding: 80px 24px;
	text-align: center;
}

.zh-empty-state svg {
	margin: 0 auto 16px;
	color: var(--zh-terracotta);
}

.zh-empty-state p {
	margin-top: 8px;
	font-size: 14px;
	color: var(--zh-text-muted);
}

.zh-empty-state a,
.zh-empty-state button {
	margin-top: 24px;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: var(--zh-terracotta-2);
	background: none;
	border: none;
}

.zh-pagination {
	margin-top: 56px;
	display: flex;
	justify-content: center;
	gap: 6px;
}

.zh-pagination .page-numbers {
	display: grid;
	place-items: center;
	min-width: 38px;
	height: 38px;
	padding: 0 6px;
	border: 1px solid var(--zh-border-2);
	border-radius: var(--zh-radius-sm);
	font-size: 12px;
	color: var(--zh-text);
}

.zh-pagination .page-numbers.current {
	background: var(--zh-forest);
	border-color: var(--zh-forest);
	color: var(--zh-paper);
}

.zh-pagination .page-numbers:hover:not(.current) {
	border-color: var(--zh-terracotta);
}

/* Category archive description */
.zh-term-description {
	margin-top: 16px;
	max-width: 640px;
	font-size: 14px;
	line-height: 1.75;
	color: var(--zh-text-muted);
}

/* Sidebar filters -------------------------------------------------------
   Two-column shop layout: category + price filters on the left, product
   grid (toolbar + grid + pagination, all unchanged) on the right. Opened
   by inc/woocommerce.php around woocommerce_before_shop_loop /
   woocommerce_after_main_content -- see template-parts/category/sidebar.php
   for the markup. Collapses to a slide-over drawer under 1024px. */

.zh-shop-layout {
	display: block;
}

@media (min-width: 1024px) {
	.zh-shop-layout {
		display: grid;
		grid-template-columns: 260px 1fr;
		align-items: start;
		gap: 40px;
	}
}

.zh-shop-sidebar {
	display: none;
}

@media (min-width: 1024px) {
	.zh-shop-sidebar {
		display: block;
		position: sticky;
		top: calc(var(--zh-header-height) + 24px);
	}
}

.zh-shop-sidebar__section {
	padding-bottom: 24px;
	margin-bottom: 24px;
	border-bottom: 1px solid var(--zh-border);
}

.zh-shop-sidebar__section:last-child {
	border-bottom: none;
}

.zh-shop-sidebar__heading {
	font-family: var(--zh-font-display);
	font-size: 15px;
	font-weight: 600;
	color: var(--zh-text);
	margin-bottom: 16px;
}

.zh-shop-sidebar__categories {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.zh-shop-sidebar__categories a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	padding: 9px 10px;
	border-radius: var(--zh-radius-sm);
	font-size: 13px;
	color: var(--zh-text-muted);
	transition: background-color 0.2s ease, color 0.2s ease;
}

.zh-shop-sidebar__categories a:hover {
	background: var(--zh-paper);
	color: var(--zh-text);
}

.zh-shop-sidebar__categories a.is-active {
	background: var(--zh-forest);
	color: #fff;
	font-weight: 600;
}

.zh-shop-sidebar__categories a.is-active .zh-shop-sidebar__count {
	color: rgba(255, 255, 255, 0.8);
}

.zh-shop-sidebar__count {
	font-size: 11px;
	color: var(--zh-text-soft);
}

.zh-shop-sidebar__price-row {
	display: flex;
	align-items: center;
	gap: 8px;
}

.zh-shop-sidebar__price-row input {
	width: 0;
	flex: 1;
	height: 38px;
	border: 1px solid var(--zh-border-2);
	border-radius: var(--zh-radius-sm);
	background: var(--zh-paper);
	padding: 0 10px;
	font-size: 12px;
	color: var(--zh-text);
	outline: none;
}

.zh-shop-sidebar__price-row input:focus {
	border-color: var(--zh-forest);
}

.zh-shop-sidebar__price-sep {
	color: var(--zh-text-soft);
	font-size: 12px;
}

.zh-shop-sidebar .zh-btn {
	margin-top: 14px;
}

/* Mobile "Filter" trigger, shown next to sort/search under 1024px ------ */

.zh-filter-mobile-trigger {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	height: 40px;
	padding: 0 16px;
	border: 1px solid var(--zh-border-2);
	border-radius: 999px;
	background: #fff;
	font-size: 12px;
	font-weight: 600;
	color: var(--zh-text);
}

@media (min-width: 1024px) {
	.zh-filter-mobile-trigger {
		display: none;
	}
}

/* Mobile filter drawer: same slide-over pattern as the mobile menu and
   wishlist drawer, but built from the same sidebar markup (duplicated
   into the drawer server-side, no JS DOM cloning required). */

.zh-filter-drawer {
	position: fixed;
	inset: 0;
	z-index: 55;
	background: rgba(34, 34, 34, 0.35);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.28s ease, visibility 0s linear 0.28s;
}

.zh-filter-drawer.is-open {
	opacity: 1;
	visibility: visible;
	transition: opacity 0.28s ease, visibility 0s linear 0s;
}

@media (min-width: 1024px) {
	.zh-filter-drawer {
		display: none;
	}
}

.zh-filter-drawer__panel {
	height: 100%;
	width: min(88vw, 340px);
	background: #fff;
	padding: 28px;
	box-shadow: 20px 0 40px rgba(0, 0, 0, 0.15);
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	transform: translateX(-100%);
	transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.zh-filter-drawer.is-open .zh-filter-drawer__panel {
	transform: translateX(0);
}

.zh-filter-drawer .zh-shop-sidebar {
	display: block;
}
/* ==========================================================================
   Single product
   ========================================================================== */

.zh-breadcrumb {
	padding: 20px 0;
	font-size: 11px;
	color: var(--zh-text-soft);
}

.zh-breadcrumb a:hover {
	color: var(--zh-forest);
}

.zh-breadcrumb__sep {
	margin: 0 10px;
}

.zh-breadcrumb__current {
	color: var(--zh-text-muted);
}

.zh-product-single {
	display: grid;
	gap: 28px;
	padding-bottom: 56px;
}

@media (min-width: 768px) {
	.zh-product-single {
		grid-template-columns: 1.05fr 0.95fr;
		gap: 56px;
		padding-bottom: 88px;
	}
}

.zh-product-single__gallery-meta {
	display: flex;
	justify-content: space-between;
	margin-top: 14px;
	font-size: 11px;
	color: var(--zh-text-soft);
}

.zh-product-single__gallery-thumbs {
	display: flex;
	gap: 10px;
	margin-top: 14px;
	flex-wrap: wrap;
}

.zh-product-single__gallery-thumbs img {
	width: 68px;
	height: 68px;
	object-fit: cover;
	border: 1px solid var(--zh-border-2);
	border-radius: var(--zh-radius-sm);
	cursor: pointer;
}

.zh-product-single__info {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 4px 0;
}

@media (min-width: 768px) {
	.zh-product-single__info {
		padding: 24px 0;
	}
}

.zh-product-single__type {
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--zh-forest);
}

.zh-product-single__title {
	margin-top: 8px;
	font-size: clamp(1.7rem, 3.6vw, 2.6rem);
	line-height: 1.15;
}

.zh-product-single__desc {
	margin-top: 20px;
	max-width: 440px;
	font-size: 14px;
	line-height: 1.75;
	color: var(--zh-text-muted);
}

.zh-product-single__price-row {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 8px;
	margin: 24px 0;
}

.zh-product-single__price-label {
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--zh-text-soft);
}

.zh-product-single__price {
	margin-top: 4px;
	font-size: 24px;
	font-weight: 700;
	color: var(--zh-text);
}

.zh-product-single__price del {
	margin-right: 10px;
	font-size: 15px;
	font-weight: 400;
	color: var(--zh-text-soft);
}

.zh-product-single__price ins {
	text-decoration: none;
	color: var(--zh-terracotta-2);
}

.zh-product-single__ship-note {
	font-size: 12px;
	color: var(--zh-text-muted);
}

.zh-product-single__rating {
	margin-top: 10px;
}

.zh-quantity-add-row {
	display: flex;
	gap: 10px;
	align-items: stretch;
}

.zh-quantity {
	display: flex;
	align-items: center;
	height: 48px;
	border: 1px solid var(--zh-border-2);
	border-radius: var(--zh-radius-sm);
	background: var(--zh-paper);
}

.zh-quantity button {
	display: grid;
	place-items: center;
	width: 42px;
	height: 100%;
	border: none;
	background: none;
	color: var(--zh-text-muted);
}

.zh-quantity button:hover {
	color: var(--zh-forest);
}

.zh-quantity input[type="number"] {
	width: 38px;
	border: none;
	background: none;
	text-align: center;
	font-size: 14px;
	color: var(--zh-text);
	-moz-appearance: textfield;
}

.zh-quantity input[type="number"]::-webkit-outer-spin-button,
.zh-quantity input[type="number"]::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.zh-product-single__form {
	display: flex;
	gap: 12px;
	align-items: stretch;
}

.zh-product-single__form-cart {
	flex: 1;
	min-width: 0;
}

.zh-product-single__form .zh-btn--primary {
	width: 100%;
	height: 48px;
}

.zh-wishlist-toggle {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	flex-shrink: 0;
	border: 1px solid var(--zh-border-2);
	border-radius: var(--zh-radius-sm);
	background: var(--zh-paper);
	color: var(--zh-text);
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.zh-wishlist-toggle:hover {
	border-color: var(--zh-forest);
	color: var(--zh-forest);
}

.zh-wishlist-toggle.is-active {
	background: var(--zh-beige);
	color: var(--zh-forest);
	border-color: var(--zh-forest);
}

.zh-product-single__whatsapp {
	margin-top: 14px;
	width: 100%;
	height: 44px;
	border: 1px solid var(--zh-border-2);
	border-radius: var(--zh-radius-sm);
	color: var(--zh-text);
	background: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 600;
	transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.zh-product-single__whatsapp:hover {
	border-color: #4caf7d;
	background: #e5eee3;
	color: #2f6b4a;
}

.zh-variations-table {
	width: 100%;
	margin-top: 20px;
}

.zh-variations-table label {
	display: block;
	margin-bottom: 8px;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--zh-text-muted);
}

.zh-variations-table select {
	width: 100%;
	height: 46px;
	border: 1px solid var(--zh-border-2);
	border-radius: var(--zh-radius-sm);
	background: var(--zh-paper);
	padding: 0 14px;
	font-size: 13px;
	color: var(--zh-text);
}

.zh-single-variation-wrap {
	margin-top: 16px;
}

/* Mobile sticky add-to-cart bar ------------------------------------------ */

.zh-product-single__sticky-bar {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 45;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 16px;
	padding-bottom: calc(12px + env(safe-area-inset-bottom));
	background: #fff;
	border-top: 1px solid var(--zh-border);
	box-shadow: 0 -4px 16px rgba(34, 34, 34, 0.08);
	transform: translateY(100%);
	transition: transform 0.25s ease;
}

.zh-product-single__sticky-bar.is-visible {
	transform: translateY(0);
}

@media (min-width: 768px) {
	.zh-product-single__sticky-bar {
		display: none;
	}
}

.zh-product-single__sticky-price {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
}

.zh-product-single__sticky-label {
	font-size: 10px;
	color: var(--zh-text-soft);
}

.zh-product-single__sticky-value {
	font-size: 15px;
	font-weight: 700;
	color: var(--zh-text);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.zh-product-single__sticky-cta {
	flex-shrink: 0;
	height: 44px;
	padding: 0 22px;
}

/* Accordion (notes / how to wear / shipping) */

.zh-accordion {
	margin-top: 32px;
	border-top: 1px solid var(--zh-border);
}

.zh-accordion__item {
	border-bottom: 1px solid var(--zh-border);
}

.zh-accordion__trigger {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 18px 4px;
	background: none;
	border: none;
	text-align: left;
	font-size: 13px;
	font-weight: 600;
	color: var(--zh-text);
}

.zh-accordion__trigger:hover {
	color: var(--zh-forest);
}

.zh-accordion__panel {
	display: none;
	padding: 0 4px 20px;
	font-size: 14px;
	line-height: 1.75;
	color: var(--zh-text-muted);
}

.zh-accordion__item.is-open .zh-accordion__panel {
	display: block;
}

.zh-accordion__item.is-open .zh-accordion__icon-plus {
	display: none;
}

.zh-accordion__item:not(.is-open) .zh-accordion__icon-minus {
	display: none;
}

/* Fragrance notes list */

.zh-notes-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.zh-notes-list span {
	border: 1px solid var(--zh-border-2);
	border-radius: 999px;
	padding: 6px 12px;
	font-size: 11px;
	color: var(--zh-text-muted);
}

.zh-fragrance-table {
	width: 100%;
	border-collapse: collapse;
}

.zh-fragrance-table th,
.zh-fragrance-table td {
	text-align: left;
	padding: 10px 0;
	border-bottom: 1px solid var(--zh-border);
	font-size: 13px;
	color: var(--zh-text);
}

.zh-fragrance-table th {
	width: 40%;
	font-weight: 600;
	color: var(--zh-text-muted);
	text-transform: uppercase;
	font-size: 10px;
	letter-spacing: 0.08em;
}

/* Related products */

.zh-related {
	padding: 64px 0 96px;
	border-top: 1px solid var(--zh-border);
}
/* ==========================================================================
   Cart, Checkout, Account, Forms

   NOTE: this store's Cart/Checkout pages run on the WooCommerce Cart &
   Checkout BLOCKS, not the classic [woocommerce_cart]/[woocommerce_checkout]
   shortcodes -- the block-specific rules live further down in the
   "WooCommerce Cart & Checkout BLOCKS" section. Everything below still
   recolors + modernizes the classic markup too (shop_table, #order_review,
   login form, etc.) so nothing breaks if a classic template is ever used,
   and because My Account's login screen IS the classic template.
   ========================================================================== */

.zh-page-header {
	background: var(--zh-paper);
	padding: 32px 0;
}

@media (min-width: 768px) {
	.zh-page-header {
		padding: 56px 0;
	}
}

.zh-page-header__title {
	font-size: clamp(1.8rem, 4.5vw, 2.6rem);
}

.zh-page-header__lede {
	margin-top: 12px;
	font-size: 14px;
	color: var(--zh-text-muted);
}

.zh-page-header--dark {
	background: var(--zh-forest);
	color: #fff;
}

.zh-page-header--dark .zh-page-header__lede {
	color: rgba(255, 255, 255, 0.82);
}

/* Narrow content wrapper (page.php) -- also backs Cart/Checkout/Account
   since they're plain WP Pages with shortcode/block content. Needs real
   horizontal gutters on mobile (previously 0, so content sat flush
   against the screen edges). */
.zh-content-narrow {
	padding-left: 20px;
	padding-right: 20px;
}

@media (min-width: 768px) {
	.zh-content-narrow {
		padding-left: 0;
		padding-right: 0;
	}
}

/* Cart/Checkout/Account need the wide marketplace container, not the
   720px reading-width column used by Blog/404/Search/About pages. The
   page title now renders in its own full-bleed pink band above this
   wrapper (see page.php + .zh-archive-header, same treatment as the
   Shop page title), so the wrapper's own top padding is trimmed to
   avoid doubling up the vertical gap between the two. */
body.woocommerce-cart .zh-content-narrow,
body.woocommerce-checkout .zh-content-narrow,
body.woocommerce-account .zh-content-narrow {
	max-width: var(--zh-container);
	padding-top: 32px;
}

@media (min-width: 768px) {
	body.woocommerce-cart .zh-content-narrow,
	body.woocommerce-checkout .zh-content-narrow,
	body.woocommerce-account .zh-content-narrow {
		padding-top: 48px;
	}
}


/* Cart (classic shortcode) -------------------------------------------------- */

.zh-cart-layout {
	display: grid;
	gap: 24px;
	padding: 0 0 56px;
}

@media (min-width: 768px) {
	.zh-cart-layout {
		grid-template-columns: 1.4fr 0.75fr;
		gap: 40px;
		padding: 0 0 80px;
	}
}

.woocommerce table.shop_table {
	border: none;
	border-collapse: collapse;
	width: 100%;
	background: #fff;
	border-radius: var(--zh-radius);
	box-shadow: 0 1px 3px rgba(34, 34, 34, 0.06), 0 1px 2px rgba(34, 34, 34, 0.04);
	overflow: hidden;
}

.woocommerce table.shop_table thead {
	display: none;
}

.woocommerce table.shop_table td,
.woocommerce table.shop_table th {
	border: none;
	border-bottom: 1px solid var(--zh-border);
	padding: 16px;
	vertical-align: middle;
}

.woocommerce table.shop_table tr:last-child td {
	border-bottom: none;
}

.woocommerce-cart-form .product-thumbnail img {
	width: 72px;
	height: 72px;
	border-radius: var(--zh-radius-sm);
	object-fit: cover;
}

@media (min-width: 640px) {
	.woocommerce-cart-form .product-thumbnail img {
		width: 96px;
		height: 96px;
	}
}

.woocommerce-cart-form .product-name a {
	font-family: var(--zh-font-display);
	font-size: 15px;
	font-weight: 500;
	color: var(--zh-text);
}

@media (min-width: 640px) {
	.woocommerce-cart-form .product-name a {
		font-size: 17px;
	}
}

.woocommerce-cart-form td.product-remove {
	text-align: right;
}

.woocommerce-cart-form td.product-remove a {
	display: inline-grid;
	place-items: center;
	width: 32px;
	height: 32px;
	border-radius: 999px;
	background: var(--zh-paper);
	font-size: 0;
	color: var(--zh-text-muted);
}

.woocommerce-cart-form td.product-remove a::before {
	content: "\2715";
	font-size: 13px;
}

.woocommerce-cart-form td.product-remove a:hover {
	background: var(--zh-error);
	color: #fff;
}

.woocommerce-cart-form .quantity input.qty {
	width: 56px;
	height: 40px;
	border: 1px solid var(--zh-border-2);
	border-radius: var(--zh-radius-sm);
	background: var(--zh-paper);
	text-align: center;
}

.woocommerce-cart-form .product-subtotal {
	font-size: 14px;
	font-weight: 600;
	color: var(--zh-text);
	text-align: right;
}

.woocommerce-cart-form__contents + .zh-cart-actions,
.wc-proceed-to-checkout {
	margin-top: 20px;
}

.cart-collaterals,
.zh-cart-summary {
	background: #fff;
	border-radius: var(--zh-radius);
	box-shadow: 0 1px 3px rgba(34, 34, 34, 0.06), 0 1px 2px rgba(34, 34, 34, 0.04);
	padding: 24px;
	height: fit-content;
}

.zh-cart-summary__row {
	display: flex;
	justify-content: space-between;
	font-size: 14px;
	color: var(--zh-text-muted);
	padding: 10px 0;
}

.zh-cart-summary__row--total {
	font-weight: 600;
	color: var(--zh-text);
	font-size: 16px;
}

.cart_totals table {
	width: 100%;
	border: none;
}

.cart_totals table th,
.cart_totals table td {
	border: none;
	border-bottom: 1px solid var(--zh-border);
	padding: 12px 0;
	font-size: 14px;
}

.woocommerce-shipping-totals select {
	width: 100%;
	height: 44px;
	border: 1px solid var(--zh-border-2);
	border-radius: var(--zh-radius-sm);
	padding: 0 12px;
}

.wc-proceed-to-checkout a.checkout-button {
	display: flex;
	height: 52px;
	width: 100%;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: var(--zh-forest);
	color: #fff;
	border-radius: var(--zh-radius);
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.wc-proceed-to-checkout a.checkout-button:hover {
	background: var(--zh-terracotta);
	transform: translateY(-2px);
}

.woocommerce-cart .woocommerce-notices-wrapper,
.woocommerce-checkout .woocommerce-notices-wrapper {
	margin-bottom: 20px;
}

.zh-cart-empty {
	display: flex;
	min-height: 220px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: #fff;
	border-radius: var(--zh-radius);
	border: 1px dashed var(--zh-border-2);
	padding: 40px 24px;
}

.zh-cart-empty svg {
	margin-bottom: 16px;
	color: var(--zh-terracotta);
}

/* Coupon form */
.woocommerce-cart-form .coupon {
	display: flex;
	gap: 8px;
	margin-top: 20px;
	flex-wrap: wrap;
}

.woocommerce-cart-form .coupon input#coupon_code {
	flex: 1;
	min-width: 160px;
	height: 44px;
	border: 1px solid var(--zh-border-2);
	border-radius: var(--zh-radius-sm);
	background: var(--zh-paper);
	padding: 0 14px;
}

.woocommerce-cart-form .coupon button {
	height: 44px;
	padding: 0 18px;
	border: 1px solid var(--zh-ink);
	border-radius: var(--zh-radius-sm);
	background: transparent;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

/* Checkout (classic) --------------------------------------------------------- */

.woocommerce-checkout .col2-set,
.woocommerce-checkout #customer_details {
	display: grid;
	gap: 32px;
}

@media (min-width: 900px) {
	.woocommerce-checkout .col2-set,
	.woocommerce-checkout #customer_details {
		grid-template-columns: 1fr 1fr;
	}
}

.woocommerce-billing-fields h3,
.woocommerce-additional-fields h3,
#order_review_heading {
	font-family: var(--zh-font-display);
	font-size: 19px;
	font-weight: 500;
	margin-bottom: 18px;
	color: var(--zh-text);
}

.woocommerce form .form-row {
	margin-bottom: 16px;
}

.woocommerce form .form-row label {
	display: block;
	margin-bottom: 6px;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--zh-text-muted);
}

.woocommerce form .form-row .required {
	color: var(--zh-terracotta-2);
	text-decoration: none;
}

.woocommerce form .input-text,
.woocommerce form select,
.woocommerce form textarea {
	width: 100%;
	height: 46px;
	border: 1px solid var(--zh-border-2);
	border-radius: var(--zh-radius-sm);
	background: var(--zh-paper);
	padding: 0 14px;
	font-size: 14px;
	outline: none;
	transition: border-color 0.2s ease;
}

.woocommerce form textarea {
	height: auto;
	padding: 12px 14px;
}

.woocommerce form .input-text:focus,
.woocommerce form select:focus,
.woocommerce form textarea:focus {
	border-color: var(--zh-terracotta);
}

.woocommerce form .select2-container .select2-selection--single {
	height: 46px;
	border: 1px solid var(--zh-border-2);
	border-radius: var(--zh-radius-sm);
	background: var(--zh-paper);
}

#order_review {
	background: #fff;
	border-radius: var(--zh-radius);
	box-shadow: 0 1px 3px rgba(34, 34, 34, 0.06), 0 1px 2px rgba(34, 34, 34, 0.04);
	padding: 24px;
	margin-top: 32px;
}

@media (min-width: 900px) {
	#order_review {
		margin-top: 0;
	}
}

.woocommerce-checkout-review-order-table {
	width: 100%;
}

.woocommerce-checkout-review-order-table thead {
	display: none;
}

.woocommerce-checkout-review-order-table td,
.woocommerce-checkout-review-order-table th {
	border: none;
	border-bottom: 1px solid var(--zh-border);
	padding: 12px 0;
	font-size: 13px;
}

#payment {
	margin-top: 24px;
	background: var(--zh-paper);
	border: 1px solid var(--zh-border);
	border-radius: var(--zh-radius);
	overflow: hidden;
}

#payment .payment_methods {
	padding: 8px 16px;
}

#payment .payment_methods li {
	padding: 12px 0;
	border-bottom: 1px solid var(--zh-border);
	font-size: 13px;
}

#payment .payment_methods li:last-child {
	border-bottom: none;
}

#payment div.payment_box {
	margin-top: 10px;
	padding: 14px;
	border-radius: var(--zh-radius-sm);
	background: #fff;
	font-size: 12px;
	line-height: 1.7;
}

#place_order,
.woocommerce #payment #place_order {
	margin-top: 4px;
	width: 100%;
	height: 52px;
	background: var(--zh-forest) !important;
	color: #fff !important;
	border: none !important;
	border-radius: var(--zh-radius) !important;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.14em;
}

#place_order:hover {
	background: var(--zh-terracotta) !important;
}

/* Order-received / thank-you page ------------------------------------------- */

.woocommerce-order {
	padding: 48px 0 80px;
}

.woocommerce-order-details,
.woocommerce-customer-details,
.woocommerce-order-downloads {
	margin-top: 28px;
	background: #fff;
	border-radius: var(--zh-radius);
	box-shadow: 0 1px 3px rgba(34, 34, 34, 0.06), 0 1px 2px rgba(34, 34, 34, 0.04);
	padding: 24px;
}

.woocommerce-order-details__title,
.woocommerce-order-details h2,
.woocommerce-customer-details h2 {
	font-family: var(--zh-font-display);
	font-size: 19px;
	font-weight: 500;
	margin-bottom: 16px;
}

.woocommerce-thankyou-order-received {
	font-family: var(--zh-font-display);
	font-size: clamp(1.6rem, 4vw, 2.2rem);
	color: var(--zh-text);
}

.zahra-order-whatsapp {
	margin-top: 20px;
	padding: 20px 24px;
	border-radius: var(--zh-radius);
	background: var(--zh-success-bg);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.zahra-order-whatsapp__text {
	font-size: 14px;
	color: var(--zh-success-text);
}

/* Shipment tracking notice (courier + resi), shown on order-received and
   My Account order-view pages. */
.zahra-tracking-notice {
	margin-top: 20px;
	padding: 20px 24px;
	border-radius: var(--zh-radius);
	background: var(--zh-paper);
	border: 1px solid var(--zh-border);
}

.zahra-tracking-notice__title {
	margin: 0 0 12px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--zh-terracotta-2);
}

.zahra-tracking-notice__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 10px 0;
	border-top: 1px solid var(--zh-border);
	font-size: 14px;
	color: var(--zh-text-muted);
}

.zahra-tracking-notice__row:first-of-type {
	border-top: none;
}

.zahra-tracking-notice__number {
	display: flex;
	align-items: center;
	gap: 10px;
}

.zahra-tracking-notice__copy {
	border: 1px solid var(--zh-border-2);
	border-radius: var(--zh-radius-sm);
	background: transparent;
	padding: 5px 12px;
	font-size: 9px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--zh-text-muted);
	transition: border-color 0.2s ease, color 0.2s ease;
}

.zahra-tracking-notice__copy:hover {
	border-color: var(--zh-terracotta);
	color: var(--zh-terracotta-2);
}

.zahra-tracking-notice__copy.is-copied {
	border-color: var(--zh-success-text);
	color: var(--zh-success-text);
}

/* Account ---------------------------------------------------------------- */

.woocommerce-MyAccount-navigation ul {
	display: flex;
	flex-wrap: nowrap;
	overflow-x: auto;
	gap: 8px;
	margin: 0 0 28px;
	padding: 0 0 4px;
	border-bottom: 1px solid var(--zh-border);
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.woocommerce-MyAccount-navigation ul::-webkit-scrollbar {
	display: none;
}

.woocommerce-MyAccount-navigation li {
	flex: 0 0 auto;
}

.woocommerce-MyAccount-navigation li a {
	display: inline-block;
	white-space: nowrap;
	padding: 9px 16px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	border: 1px solid var(--zh-border-2);
	color: var(--zh-text-muted);
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.woocommerce-MyAccount-navigation li a:hover {
	border-color: var(--zh-forest);
	color: var(--zh-terracotta-2);
}

.woocommerce-MyAccount-navigation li.is-active a {
	background: var(--zh-forest);
	border-color: var(--zh-forest);
	color: #fff;
}

.woocommerce-MyAccount-content {
	max-width: 640px;
}

.woocommerce-MyAccount-content .woocommerce-message,
.woocommerce-MyAccount-content table.shop_table {
	max-width: none;
}

/* Address cards on the Addresses dashboard tab */
.woocommerce-Addresses {
	display: grid;
	gap: 20px;
}

@media (min-width: 600px) {
	.woocommerce-Addresses {
		grid-template-columns: 1fr 1fr;
	}
}

.woocommerce-Address {
	background: #fff;
	border-radius: var(--zh-radius);
	box-shadow: 0 1px 3px rgba(34, 34, 34, 0.06), 0 1px 2px rgba(34, 34, 34, 0.04);
	padding: 20px;
}

.woocommerce-Address-title h3 {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	font-family: var(--zh-font-display);
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 8px;
}

.woocommerce-Address-title .edit {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--zh-terracotta-2);
}

.woocommerce-Address address {
	font-size: 14px;
	line-height: 1.7;
	color: var(--zh-text-muted);
	font-style: normal;
}

/* My Account login / register (classic form-login.php) ---------------------- */

#customer_login {
	display: grid;
	gap: 24px;
	max-width: 420px;
	margin: 0 auto;
}

#customer_login.u-columns {
	max-width: none;
}

@media (min-width: 640px) {
	#customer_login.u-columns {
		grid-template-columns: 1fr 1fr;
		align-items: start;
	}
}

.woocommerce-form-login,
.woocommerce-form-register {
	background: #fff;
	border-radius: var(--zh-radius);
	box-shadow: 0 1px 3px rgba(34, 34, 34, 0.06), 0 1px 2px rgba(34, 34, 34, 0.04);
	padding: 28px 24px;
}

@media (min-width: 640px) {
	.woocommerce-form-login,
	.woocommerce-form-register {
		padding: 36px 32px;
	}
}

.woocommerce-form-login h3,
.woocommerce-form-register h3,
.woocommerce-form-login__heading {
	font-family: var(--zh-font-display);
	font-size: 19px;
	font-weight: 500;
	margin: 0 0 20px;
	color: var(--zh-text);
}

.woocommerce-form-row--wide {
	width: 100%;
}

.woocommerce-form-login__rememberme {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 4px 0 20px;
	font-size: 13px;
	color: var(--zh-text-muted);
	cursor: pointer;
}

.woocommerce-form-login__rememberme input[type="checkbox"],
.woocommerce-form input[type="checkbox"] {
	width: 16px;
	height: 16px;
	accent-color: var(--zh-forest);
	margin: 0;
}

.woocommerce-LostPassword {
	margin-top: 16px;
	font-size: 13px;
}

.woocommerce-LostPassword a {
	color: var(--zh-terracotta-2);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.woocommerce-LostPassword a:hover {
	color: var(--zh-terracotta);
}

.woocommerce-form-register p:last-of-type {
	margin-bottom: 0;
}

.woocommerce-privacy-policy-text {
	font-size: 12px;
	line-height: 1.7;
	color: var(--zh-text-soft);
	margin-top: 16px;
}

/* Generic button fallback -- covers any WooCommerce-rendered button that
   isn't already targeted above (login/register submit, lost-password
   submit, "reset key" form, pay-for-order, etc.), so nothing on the site
   ever falls back to a bare unstyled browser button. */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce-form-login__submit,
.woocommerce-form-register__submit,
.woocommerce-ResetPassword button,
.woocommerce-form.woocommerce-form-lost_password button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 48px;
	padding: 0 24px;
	background: var(--zh-forest);
	color: #fff;
	border: none;
	border-radius: var(--zh-radius);
	font-family: var(--zh-font-body);
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce-form-login__submit:hover,
.woocommerce-form-register__submit:hover {
	background: var(--zh-terracotta);
	color: #fff;
	transform: translateY(-2px);
}

.woocommerce a.button.alt,
.woocommerce button.button.alt {
	background: var(--zh-forest);
}

/* Notices ---------------------------------------------------------------- */

.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.woocommerce-noreviews,
p.no-comments {
	list-style: none;
	margin: 0 0 20px;
	padding: 16px 20px;
	border-radius: var(--zh-radius-sm);
	border-left: 3px solid var(--zh-terracotta);
	background: var(--zh-paper);
	font-size: 13px;
	color: var(--zh-text);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.woocommerce-error {
	border-left-color: var(--zh-error);
}

.woocommerce-message .button,
.woocommerce-info .button {
	order: 2;
	width: auto;
	height: auto;
	padding: 8px 16px;
	background: var(--zh-ink);
	color: var(--zh-paper);
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

/* Star rating */
.star-rating {
	color: var(--zh-terracotta);
	font-size: 13px;
}

/* Generic content pages (About/Contact/FAQ specific pieces continue in 10-pages.css) */
/* ==========================================================================
   About / Contact / FAQ
   ========================================================================== */

.zh-about-hero {
	background: var(--zh-forest);
	color: #f2dde2;
	padding: 80px 0;
}

@media (min-width: 768px) {
	.zh-about-hero {
		padding: 128px 0;
	}
}

.zh-about-hero__grid {
	display: grid;
	gap: 40px;
}

@media (min-width: 768px) {
	.zh-about-hero__grid {
		grid-template-columns: 1fr 1fr;
		align-items: flex-end;
	}
}

.zh-about-hero__title {
	max-width: 640px;
	font-size: clamp(2.6rem, 7vw, 4.6rem);
}

.zh-about-hero__lede {
	max-width: 420px;
	font-size: 14px;
	line-height: 1.75;
	color: #c1a9ad;
}

.zh-steps-grid {
	display: grid;
	gap: 32px;
}

@media (min-width: 768px) {
	.zh-steps-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.zh-step {
	border-top: 1px solid #ceb6bc;
	padding-top: 20px;
}

.zh-step__number {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.15em;
	color: var(--zh-terracotta);
}

.zh-step h3 {
	margin-top: 24px;
	font-size: 1.4rem;
}

.zh-step p {
	margin-top: 10px;
	font-size: 14px;
	line-height: 1.6;
	color: #6a5a5e;
}

/* Contact ------------------------------------------------------------------- */

.zh-contact-grid {
	display: grid;
	gap: 40px;
	padding: 56px 0 80px;
}

@media (min-width: 768px) {
	.zh-contact-grid {
		grid-template-columns: 0.75fr 1.25fr;
		padding: 80px 0;
	}
}

.zh-contact-info {
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.zh-contact-info__item p.zh-eyebrow {
	margin-bottom: 10px;
}

.zh-contact-info__row {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 14px;
	line-height: 1.6;
	color: #775961;
}

.zh-contact-info__row svg {
	margin-top: 2px;
	flex-shrink: 0;
	color: var(--zh-terracotta-2);
}

.zh-contact-quick {
	display: flex;
	flex-direction: column;
	gap: 12px;
	font-size: 14px;
	color: #775961;
}

.zh-contact-quick a {
	display: flex;
	align-items: center;
	gap: 10px;
}

.zh-contact-quick a:hover {
	color: var(--zh-terracotta-2);
}

.zh-contact-form-panel {
	background: var(--zh-paper);
	padding: 28px;
}

@media (min-width: 768px) {
	.zh-contact-form-panel {
		padding: 40px;
	}
}

.zh-contact-form-panel h2 {
	margin-top: 8px;
	font-size: 1.9rem;
}

.zh-form-field {
	display: block;
	margin-top: 20px;
}

.zh-form-field span {
	display: block;
	margin-bottom: 8px;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.13em;
	color: #6a5a5e;
}

.zh-form-field input,
.zh-form-field textarea {
	height: 48px;
	width: 100%;
	border: 1px solid var(--zh-border-2);
	background: #f2e3e6;
	padding: 0 16px;
	font-size: 13px;
	outline: none;
}

.zh-form-field textarea {
	height: auto;
	padding: 12px 16px;
	resize: vertical;
}

.zh-form-field input:focus,
.zh-form-field textarea:focus {
	border-color: var(--zh-terracotta-2);
}

.zh-form-success {
	margin-top: 40px;
	border: 1px solid #c7cab9;
	background: var(--zh-success-bg);
	padding: 24px;
	font-size: 14px;
	line-height: 1.75;
	color: var(--zh-success-text);
}

/* FAQ ------------------------------------------------------------------------ */

.zh-faq-layout {
	display: grid;
	gap: 48px;
	padding: 56px 0 80px;
}

@media (min-width: 768px) {
	.zh-faq-layout {
		grid-template-columns: 0.65fr 1.35fr;
		padding: 80px 0;
	}
}

.zh-faq-aside p.zh-lede {
	margin-top: 20px;
}

.zh-faq-aside .zh-link-arrow {
	margin-top: 28px;
}

.zh-faq-list {
	border-top: 1px solid var(--zh-border-2);
}

.zh-faq-item {
	border-bottom: 1px solid var(--zh-border-2);
}

.zh-faq-item__trigger {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 24px 0;
	background: none;
	border: none;
	text-align: left;
	font-family: var(--zh-font-display);
	font-size: 1.3rem;
	color: #2a171e;
}

.zh-faq-item__trigger svg {
	flex-shrink: 0;
	color: #93737b;
}

.zh-faq-item.is-open .zh-faq-item__trigger svg {
	color: var(--zh-terracotta);
}

.zh-faq-item__panel {
	display: none;
	max-width: 640px;
	padding-bottom: 24px;
	padding-right: 32px;
	font-size: 14px;
	line-height: 1.75;
	color: #81626a;
}

.zh-faq-item.is-open .zh-faq-item__panel {
	display: block;
}

.zh-faq-categories {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 24px;
}
/* ==========================================================================
   Blog / 404 / search / misc
   ========================================================================== */

.zh-content-narrow {
	max-width: 720px;
	margin: 0 auto;
	padding-top: 56px;
	padding-bottom: 96px;
	/* NOTE: left/right padding is deliberately NOT set here (was shorthand
	   `padding: 56px 0 96px`, which zeroed out the left/right gutter added
	   near the top of this file for Cart/Checkout/Account/Blog/404/Search
	   -- same class, same specificity, this rule just loads later and the
	   shorthand silently won). Keep this to top/bottom only. */
}

.zh-content-narrow .zh-h1 {
	margin-bottom: 24px;
}

.zh-content-narrow img {
	margin: 24px 0;
}

.zh-content-narrow p {
	margin-bottom: 18px;
	line-height: 1.8;
	color: var(--zh-text);
}

.zh-404 {
	padding: 96px 0;
	text-align: center;
}

.zh-404__code {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--zh-terracotta);
}

.zh-404__title {
	margin-top: 16px;
}

.zh-404 .zh-link-arrow {
	margin-top: 32px;
	justify-content: center;
}

.zh-search-results-list {
	display: flex;
	flex-direction: column;
	gap: 24px;
	padding: 48px 0 96px;
}

.zh-search-result {
	padding-bottom: 24px;
	border-bottom: 1px solid var(--zh-border);
}

.zh-search-result h2 {
	font-size: 1.4rem;
}

.zh-search-result p {
	margin-top: 8px;
	color: var(--zh-text-muted);
	font-size: 14px;
}

/* Widgets / sidebar (used sparingly, blog only) */
.zh-widget {
	margin-bottom: 32px;
}

.zh-widget h2,
.zh-widget .widgettitle {
	font-family: var(--zh-font-display);
	font-size: 1.2rem;
	margin-bottom: 16px;
}

/* Screen reader text used by WooCommerce templates */
.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}

/* WordPress core alignment classes */
.alignwide {
	max-width: 1100px;
	margin-left: auto;
	margin-right: auto;
}

.alignfull {
	max-width: none;
}

.aligncenter {
	margin-left: auto;
	margin-right: auto;
	display: block;
}

/* Skip-link target */
#zh-main {
	display: block;
}

/* Utility spacing */
.zh-mt-0 { margin-top: 0 !important; }
/* ==========================================================================
   WooCommerce default markup we reuse via hooks (not fully overridden)
   ========================================================================== */

/* Sale badge (see inc/woocommerce.php woocommerce_sale_flash filter) */
span.onsale,
.zh-onsale-badge {
	position: absolute;
	left: 12px;
	top: 12px;
	z-index: 3;
	background: var(--zh-terracotta) !important;
	color: #fff;
	padding: 5px 10px;
	font-size: 9px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	border-radius: 0;
	min-height: 0;
	min-width: 0;
	line-height: 1.4;
}

/* Stock text */
p.stock {
	margin: 12px 0 0;
	font-size: 12px;
	font-weight: 600;
	color: #4b6653;
}

p.stock.out-of-stock {
	color: var(--zh-error);
}

/* Quantity input (WooCommerce default markup: div.quantity > input.qty) */
.woocommerce div.quantity {
	position: relative;
	display: inline-flex;
	align-items: center;
	height: 48px;
	border: 1px solid var(--zh-border-2);
	background: var(--zh-paper);
}

.woocommerce div.quantity input.qty {
	width: 52px;
	height: 100%;
	border: none;
	background: none;
	text-align: center;
	font-size: 14px;
	-moz-appearance: textfield;
}

.woocommerce div.quantity .zh-qty-btn {
	display: grid;
	place-items: center;
	width: 40px;
	height: 100%;
	border: none;
	background: none;
	color: #584b4e;
	font-size: 16px;
}

.woocommerce div.quantity .zh-qty-btn:hover {
	color: var(--zh-terracotta);
}

/* Add to cart form layout on the single product page */
.woocommerce div.product form.cart {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: stretch;
	margin-top: 8px;
}

.woocommerce div.product form.cart div.quantity {
	margin: 0;
}

.woocommerce div.product form.cart .button,
.woocommerce div.product form.cart button.single_add_to_cart_button {
	flex: 1;
	min-width: 180px;
	height: 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: var(--zh-forest);
	color: var(--zh-paper) !important;
	border: none;
	border-radius: var(--zh-radius-sm);
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	transition: background-color 0.25s ease, transform 0.25s ease;
}

.woocommerce div.product form.cart .button:hover,
.woocommerce div.product form.cart button.single_add_to_cart_button:hover {
	background: var(--zh-terracotta);
	transform: translateY(-2px);
}

.woocommerce div.product form.cart button.single_add_to_cart_button.disabled {
	opacity: 0.4;
	pointer-events: none;
}

/* "Beli Sekarang" -- outline variant of the button above, sharing its
   .single_add_to_cart_button base (for sizing + the shared disabled
   state on variable products) but restyled as a secondary CTA so it
   reads as a distinct action from the solid "Add to Bag" button. The
   extra .zh-buy-now-button class keeps this selector's specificity
   higher than the base rule above so it always wins regardless of
   source order. */
.woocommerce div.product form.cart button.single_add_to_cart_button.zh-buy-now-button {
	flex: 0 0 auto;
	/* Stretches past its own row (the form only occupies the width left
	   after the wishlist button + gap) so its right edge lines up with
	   the wishlist toggle above it. 48px = .zh-wishlist-toggle width,
	   12px = the row's gap -- both fixed at every breakpoint, so this
	   stays accurate without a media query. */
	width: calc(100% + 48px + 12px);
	background: transparent;
	color: var(--zh-forest) !important;
	border: 1.5px solid var(--zh-forest);
}

.woocommerce div.product form.cart button.single_add_to_cart_button.zh-buy-now-button:hover {
	background: var(--zh-forest);
	color: var(--zh-paper) !important;
	border-color: var(--zh-forest);
}

/* Price */
.woocommerce div.product p.price,
.woocommerce div.product span.price {
	font-size: 26px;
	font-weight: 600;
	color: #2a171e;
}

.woocommerce div.product p.price del,
.woocommerce div.product span.price del {
	margin-right: 10px;
	font-size: 16px;
	font-weight: 400;
	opacity: 0.6;
}

.woocommerce div.product p.price ins,
.woocommerce div.product span.price ins {
	text-decoration: none;
	color: var(--zh-terracotta-2);
}

/* Rating */
.woocommerce div.product .woocommerce-product-rating {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 12px;
}

.star-rating {
	overflow: hidden;
	position: relative;
	height: 1em;
	line-height: 1;
	width: 5.4em;
	font-family: serif;
}

.star-rating::before {
	content: "\2605\2605\2605\2605\2605";
	color: var(--zh-border-2);
	float: left;
	top: 0;
	left: 0;
	position: absolute;
}

.star-rating span {
	overflow: hidden;
	float: left;
	top: 0;
	left: 0;
	position: absolute;
	padding-top: 1.5em;
}

.star-rating span::before {
	content: "\2605\2605\2605\2605\2605";
	top: 0;
	position: absolute;
	left: 0;
	color: var(--zh-terracotta);
}

/* Product gallery (zoom/lightbox/slider theme support) */
.woocommerce-product-gallery {
	position: relative;
}

.woocommerce-product-gallery__wrapper {
	margin: 0;
	padding: 0;
}

.woocommerce-product-gallery__image {
	background: #e3d1d3;
	overflow: hidden;
}

.woocommerce-product-gallery__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 1 / 1;
}

.flex-control-thumbs {
	display: flex;
	gap: 10px;
	margin: 16px 0 0;
	flex-wrap: wrap;
}

.flex-control-thumbs li {
	list-style: none;
	width: 72px;
	height: 72px;
}

.flex-control-thumbs li img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border: 1px solid var(--zh-border-2);
	cursor: pointer;
	opacity: 0.7;
}

.flex-control-thumbs li img.flex-active {
	opacity: 1;
	border-color: var(--zh-terracotta);
}

/* Product tabs (used only if a store owner enables the default tabs area) */
.woocommerce-tabs ul.tabs {
	display: flex;
	gap: 4px;
	border-bottom: 1px solid var(--zh-border);
	margin-bottom: 24px;
	flex-wrap: wrap;
}

.woocommerce-tabs ul.tabs li {
	list-style: none;
}

.woocommerce-tabs ul.tabs li a {
	display: inline-block;
	padding: 10px 16px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--zh-text-muted);
}

.woocommerce-tabs ul.tabs li.active a {
	color: var(--zh-terracotta-2);
	border-bottom: 2px solid var(--zh-terracotta-2);
}

.woocommerce-tabs .panel {
	font-size: 14px;
	line-height: 1.8;
	color: var(--zh-text-muted);
}

/* Related / upsell product sections reuse .zh-products-grid via content-product.php */
.related.products h2,
.up-sells.products h2 {
	font-family: var(--zh-font-display);
	font-size: 1.9rem;
	margin-bottom: 32px;
}

/* Variation forms */
table.variations {
	width: 100%;
	margin-bottom: 8px;
}

table.variations tr {
	display: block;
	margin-bottom: 16px;
}

table.variations td,
table.variations th {
	display: block;
	border: none;
	padding: 0;
}

table.variations label {
	display: block;
	margin-bottom: 8px;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: #584b4e;
}

table.variations select {
	width: 100%;
	height: 46px;
	border: 1px solid var(--zh-border-2);
	background: var(--zh-paper);
	padding: 0 14px;
	font-size: 13px;
}

.woocommerce-variation-add-to-cart {
	width: 100%;
}

.woocommerce-variation-price {
	margin: 12px 0;
}

.reset_variations {
	display: inline-block;
	margin-top: 8px;
	font-size: 11px;
	color: var(--zh-text-muted);
	text-decoration: underline;
}
/* ==========================================================================
   Final touches
   ========================================================================== */

.zh-mobile-menu__list {
	display: flex;
	flex-direction: column;
	gap: 24px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.zh-mobile-menu__list li {
	list-style: none;
}

/* Only the top-level drawer links (not nested category/secondary links) --
   real menu items get this via .zh-mobile-menu__link already; this is just
   a fallback for the plain wp_nav_menu markup when WooCommerce is inactive. */
.zh-mobile-menu__list > li > a {
	display: block;
	font-family: var(--zh-font-display);
	font-size: 24px;
	color: #2a171e;
}

.zh-footer__col ul li {
	list-style: none;
}

/* WooCommerce ordering dropdown + result count, reused (not overridden) */
.woocommerce-ordering {
	margin: 0;
}

.woocommerce-ordering select.orderby {
	border: 1px solid var(--zh-border-2);
	background: var(--zh-paper);
	padding: 0 12px;
	height: 40px;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #6a5a5e;
	outline: none;
}

.woocommerce-result-count {
	margin: 0;
	font-size: 12px;
	color: #81626a;
}

/* Section see-all link: only surface the mobile fallback below sm breakpoint */
.zh-section-head__see-all-mobile {
	display: flex;
}

@media (min-width: 640px) {
	.zh-section-head__see-all-mobile {
		display: none;
	}
}

/* Custom-styled select (progressive enhancement over WooCommerce's
   native <select class="orderby">) -- see main.js enhanceSelect(). */
.zh-custom-select {
	position: relative;
	display: inline-block;
}

.zh-custom-select__native {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
	overflow: hidden;
}

.zh-custom-select__trigger {
	display: flex;
	align-items: center;
	gap: 10px;
	height: 40px;
	padding: 0 14px;
	border: 1px solid var(--zh-border-2);
	background: var(--zh-paper);
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #6a5a5e;
	white-space: nowrap;
	transition: border-color 0.2s ease;
}

.zh-custom-select.is-open .zh-custom-select__trigger,
.zh-custom-select__trigger:hover {
	border-color: var(--zh-terracotta-2);
}

.zh-custom-select__chevron {
	display: flex;
	color: var(--zh-terracotta);
	transition: transform 0.2s ease;
}

.zh-custom-select.is-open .zh-custom-select__chevron {
	transform: rotate(180deg);
}

.zh-custom-select__listbox {
	position: absolute;
	z-index: 30;
	top: calc(100% + 6px);
	right: 0;
	min-width: 180px;
	margin: 0;
	padding: 6px;
	list-style: none;
	background: var(--zh-paper);
	border: 1px solid var(--zh-border-2);
	box-shadow: 0 12px 28px rgba(41, 34, 24, 0.14);
}

.zh-custom-select__option {
	padding: 10px 12px;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #6a5a5e;
	cursor: pointer;
	outline: none;
}

.zh-custom-select__option:hover,
.zh-custom-select__option:focus {
	background: #ebd6db;
	color: #2a171e;
}

.zh-custom-select__option.is-selected {
	color: var(--zh-terracotta-2);
}

/* Quantity minus/plus button glyph sizing (injected by main.js) */
.zh-qty-btn {
	font-size: 15px;
	line-height: 1;
}

/* Comment form (blog only) */
.comment-form .zh-form-field textarea,
#respond textarea {
	width: 100%;
	min-height: 140px;
	border: 1px solid var(--zh-border-2);
	background: var(--zh-paper);
	padding: 12px 16px;
	font-size: 13px;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"] {
	height: 44px;
	width: 100%;
	border: 1px solid var(--zh-border-2);
	background: var(--zh-paper);
	padding: 0 14px;
	font-size: 13px;
	margin-bottom: 14px;
}

.comment-form label {
	display: block;
	margin-bottom: 6px;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #584b4e;
}

/* Search form (used in 404.php via get_search_form()) */
.search-form {
	display: flex;
	gap: 8px;
	max-width: 420px;
	margin: 32px auto 0;
}

.search-form .search-field {
	flex: 1;
	height: 46px;
	border: 1px solid var(--zh-border-2);
	background: var(--zh-paper);
	padding: 0 14px;
	font-size: 13px;
}

.search-form .search-submit {
	height: 46px;
	padding: 0 20px;
	border: none;
	background: var(--zh-ink);
	color: var(--zh-paper);
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

/* Product-card add-to-cart loading state, toggled by wc-add-to-cart.js
   ("loading" class on the anchor while the AJAX request is in flight) */
a.zh-product-card__add.loading {
	opacity: 0.65;
	pointer-events: none;
}

a.zh-product-card__add.added::after {
	content: "\2713";
	margin-left: 6px;
}

/* Blog card spacing (index.php / archive.php use inline grid; this covers
   the card internals) */
.zh-blog-card {
	padding-bottom: 32px;
	border-bottom: 1px solid var(--zh-border);
}
/* ==========================================================================
   WooCommerce Cart & Checkout BLOCKS (the newer block-based Cart/Checkout
   this store actually uses -- distinct from the classic
   [woocommerce_cart]/[woocommerce_checkout] shortcode markup styled in the
   "Cart, Checkout, Account, Forms" section above, which still backs the
   classic My Account login screen).
   ========================================================================== */

.wp-block-woocommerce-checkout,
.wp-block-woocommerce-cart {
	--wc-blocks-body-color: var(--zh-text);
	font-family: var(--zh-font-body);
	color: var(--zh-text);
}

.wc-block-checkout,
.wc-block-cart {
	max-width: none;
}

/* Step / panel headings */
.wc-block-components-checkout-step__heading,
.wc-block-components-title {
	font-family: var(--zh-font-display) !important;
	font-weight: 500 !important;
	color: var(--zh-text) !important;
}

.wc-block-components-checkout-step__title {
	font-family: var(--zh-font-display) !important;
	font-size: 18px !important;
}

/* Turn each step (Contact / Shipping address / Shipping options / Payment)
   into its own white rounded card instead of one long unbroken list --
   this is the single biggest reason the checkout read as "flat" before. */
.wc-block-components-checkout-step {
	background: #fff !important;
	border: none !important;
	border-radius: var(--zh-radius) !important;
	box-shadow: 0 1px 3px rgba(34, 34, 34, 0.06), 0 1px 2px rgba(34, 34, 34, 0.04) !important;
	padding: 20px 16px !important;
	margin-bottom: 14px !important;
}

@media (min-width: 640px) {
	.wc-block-components-checkout-step {
		padding: 26px 28px !important;
		margin-bottom: 18px !important;
	}
}

.wc-block-components-checkout-step::after {
	display: none !important;
}

/* Numbered step badge (the little circle before each step title) */
.wc-block-components-checkout-step__heading-icon .wc-block-components-checkout-step__heading-icon-text,
.wc-block-components-checkout-step__heading-icon svg {
	background: var(--zh-forest) !important;
	color: #fff !important;
}

/* Text inputs / selects / comboboxes -------------------------------------- */
.wc-block-components-text-input input,
.wc-block-components-text-input textarea,
.wc-block-components-country-input .components-combobox-control__input,
.wc-block-components-state-input .components-combobox-control__input,
.wc-block-checkout .components-combobox-control__input {
	border: 1px solid var(--zh-border-2) !important;
	border-radius: var(--zh-radius-sm) !important;
	background: var(--zh-paper) !important;
	font-family: var(--zh-font-body) !important;
	font-size: 14px !important;
	min-height: 46px !important;
}

.wc-block-components-text-input label,
.wc-block-components-combobox-control label {
	font-family: var(--zh-font-body) !important;
}

.wc-block-components-text-input.is-active input,
.wc-block-checkout .components-combobox-control__input:focus {
	border-color: var(--zh-terracotta) !important;
	box-shadow: none !important;
}

.wc-block-components-checkbox .wc-block-components-checkbox__input:checked + .wc-block-components-checkbox__mark {
	background-color: var(--zh-forest) !important;
}

/* Order summary panel (desktop sidebar + the collapsible "Order summary"
   accordion that sits at the top of the form on mobile -- both use the
   same Panel component). */
.wc-block-components-sidebar .wc-block-components-panel,
.wc-block-components-order-summary,
.wc-block-components-panel {
	background: #fff !important;
	border: 1px solid var(--zh-border) !important;
	border-radius: var(--zh-radius) !important;
	padding: 18px 16px !important;
	margin-bottom: 14px !important;
}

@media (min-width: 640px) {
	.wc-block-components-sidebar .wc-block-components-panel,
	.wc-block-components-order-summary,
	.wc-block-components-panel {
		padding: 22px 24px !important;
	}
}

.wc-block-components-product-metadata,
.wc-block-components-totals-item {
	font-family: var(--zh-font-body) !important;
}

.wc-block-components-totals-item__label,
.wc-block-components-totals-item__value {
	font-size: 13px !important;
	color: var(--zh-text-muted) !important;
}

.wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
.wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
	font-weight: 700 !important;
	color: var(--zh-text) !important;
	font-size: 16px !important;
}

/* Product thumbnail in order summary -- soft pink placeholder background
   so a missing image doesn't show a broken-image glyph. */
.wc-block-components-product-image,
.wc-block-components-product-image img {
	background: var(--zh-paper) !important;
	border-radius: var(--zh-radius-sm) !important;
	object-fit: cover;
}

/* Buttons ------------------------------------------------------------------ */
.wc-block-components-button,
.wc-block-checkout__actions_row .wc-block-components-button {
	border-radius: var(--zh-radius) !important;
	font-family: var(--zh-font-body) !important;
	font-size: 11px !important;
	font-weight: 700 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.12em !important;
	min-height: 50px !important;
}

.wc-block-components-button.wp-element-button {
	background: var(--zh-forest) !important;
	color: #fff !important;
}

.wc-block-components-button.wp-element-button:hover {
	background: var(--zh-terracotta) !important;
}

.wc-block-components-button.wp-element-button:disabled,
.wc-block-components-button.wp-element-button.is-loading {
	opacity: 0.55 !important;
}

/* Outline/secondary buttons ("Apply", "Return to cart", etc.) */
.wc-block-components-button:not(.wp-element-button) {
	background: transparent !important;
	border: 1px solid var(--zh-border-2) !important;
	color: var(--zh-text) !important;
}

.wc-block-components-button:not(.wp-element-button):hover {
	border-color: var(--zh-forest) !important;
	color: var(--zh-terracotta-2) !important;
}

/* Coupon panel toggle */
.wc-block-components-panel__button {
	font-family: var(--zh-font-body) !important;
	font-size: 13px !important;
	font-weight: 600 !important;
	color: var(--zh-text) !important;
}

.wc-block-components-panel__button-icon {
	color: var(--zh-terracotta) !important;
}

/* Radio options (shipping method, payment method) --------------------------
   Previous pass added its own padding here, which pushed the label text
   over into the space WooCommerce's own layout reserves for the radio
   dot -- that's what caused the dot to overlap/sit on top of the text
   ("Free shipping" showing behind the circle). Backed off to just
   recoloring (border/background/radius), which doesn't touch box
   dimensions, and left WooCommerce's own padding and internal
   dot/label positioning alone. */
.wc-block-components-radio-control__option {
	border: 1px solid var(--zh-border) !important;
	border-radius: var(--zh-radius-sm) !important;
	background: var(--zh-paper) !important;
	margin-bottom: 8px !important;
	transition: border-color 0.2s ease, background-color 0.2s ease;
}

.wc-block-components-radio-control__option:last-child {
	margin-bottom: 0 !important;
}

.wc-block-components-radio-control__option--checked-option,
.wc-block-components-radio-control__option:has(.wc-block-components-radio-control__input:checked) {
	border-color: var(--zh-forest) !important;
	background: #fff !important;
}

.wc-block-components-radio-control__input:checked {
	background-color: var(--zh-terracotta) !important;
	border-color: var(--zh-terracotta) !important;
}

/* Order-summary total rows that are inactive (e.g. Discount with no
   coupon applied, Taxes when the store doesn't charge any) still render
   an empty wrapper element -- the card styling above then shows as a
   blank white box with nothing in it. Collapse any wrapper WordPress
   renders with no actual content. */
.wc-block-components-totals-wrapper:empty {
	display: none !important;
	margin: 0 !important;
	padding: 0 !important;
	border: none !important;
}

/* Store notices (e.g. "no payment methods available") */
.wc-block-components-notice-banner {
	border-radius: var(--zh-radius-sm) !important;
	border-left: 3px solid var(--zh-terracotta) !important;
	background: var(--zh-paper) !important;
}

.wc-block-components-notice-banner.is-error {
	border-left-color: var(--zh-error) !important;
}

/* Cart items (product rows in the Cart block) ------------------------------
   Confirmed via Inspect Element: the actual element is <table
   class="wc-block-cart-items wp-block-woocommerce-cart-line-items-block">
   -- ONE table, both classes together.

   Two earlier attempts here both ran into the same root issue: getting
   rounded corners to clip on a real <table> normally needs
   overflow:hidden, but overflow:hidden only clips reliably once the
   table's display is forced to block -- and forcing that breaks the
   table's own column-width math (columns stopped respecting the 100%
   width, so the price got pushed wide and then clipped clean off).

   Fixed without touching display/overflow at all: the table stays a
   real, natively-laid-out table (column sizing untouched, so nothing
   can overflow-and-clip again), and each ROW gets its own white
   background + divider border on the cells. Only the FOUR actual corner
   cells (top-left, top-right, bottom-left, bottom-right) get their own
   border-radius, which rounds just those corners directly -- a plain,
   long-standing CSS technique for rounding a table's outer corners that
   doesn't depend on overflow/clipping behavior at all. */
.wc-block-cart-items,
.wp-block-woocommerce-cart-line-items-block {
	width: 100% !important;
	background: transparent !important;
	border-radius: var(--zh-radius) !important;
	box-shadow: 0 1px 3px rgba(34, 34, 34, 0.06), 0 1px 2px rgba(34, 34, 34, 0.04) !important;
	border-collapse: separate !important;
	border-spacing: 0 !important;
}

.wc-block-cart-items__row,
.wc-block-cart-item {
	background: transparent !important;
}

.wc-block-cart-items__row + .wc-block-cart-items__row > td,
.wc-block-cart-item + .wc-block-cart-item > td {
	border-top: 1px solid var(--zh-border) !important;
}

.wc-block-cart-items__row > td,
.wc-block-cart-item > td {
	background: #fff !important;
	padding: 16px 8px !important;
	vertical-align: middle !important;
}

.wc-block-cart-items__row > td:first-child,
.wc-block-cart-item > td:first-child {
	padding-left: 16px !important;
}

.wc-block-cart-items__row > td:last-child,
.wc-block-cart-item > td:last-child {
	padding-right: 16px !important;
}

/* The four actual outer corners of the "card" -- see note above. */
.wc-block-cart-items__row:first-child > td:first-child,
.wc-block-cart-item:first-child > td:first-child {
	border-top-left-radius: var(--zh-radius) !important;
}

.wc-block-cart-items__row:first-child > td:last-child,
.wc-block-cart-item:first-child > td:last-child {
	border-top-right-radius: var(--zh-radius) !important;
}

.wc-block-cart-items__row:last-child > td:first-child,
.wc-block-cart-item:last-child > td:first-child {
	border-bottom-left-radius: var(--zh-radius) !important;
}

.wc-block-cart-items__row:last-child > td:last-child,
.wc-block-cart-item:last-child > td:last-child {
	border-bottom-right-radius: var(--zh-radius) !important;
}

.wc-block-cart-item__image img,
.wc-block-cart-items__row .wc-block-components-product-image img {
	border-radius: var(--zh-radius-sm) !important;
	background: var(--zh-paper) !important;
}

.wc-block-components-product-name {
	font-family: var(--zh-font-display) !important;
	font-weight: 500 !important;
	color: var(--zh-text) !important;
}

/* Cart item shows the price twice by default: once right under the
   product name, and again as its own "line total" column on the far
   right of the row -- for most carts (qty 1) those are the exact same
   number, which just reads as a duplicate and crowds the product name
   against that column. Hiding the right-hand total column and moving
   the remaining price below the description gives one clean price per
   item: Name -> description -> price -> quantity. */
.wc-block-cart-item__total {
	display: none !important;
}

.wc-block-cart-item__product {
	display: flex !important;
	flex-direction: column !important;
	align-items: flex-start !important;
}

.wc-block-components-product-price {
	order: 3 !important;
	margin-top: 6px !important;
}

/* Best-effort: if the quantity/remove control is nested in this same
   cell (as it visually appears to be), keep it last, after the price
   that just moved. If it's actually a separate table cell instead, this
   simply won't match anything and has no effect either way. */
.wc-block-cart-item__quantity {
	order: 4 !important;
}

.wc-block-components-quantity-selector {
	border: 1px solid var(--zh-border-2) !important;
	border-radius: var(--zh-radius-sm) !important;
	background: var(--zh-paper) !important;
	box-shadow: none !important;
}

.wc-block-components-quantity-selector .wc-block-components-quantity-selector__button,
.wc-block-components-quantity-selector .wc-block-components-quantity-selector__input {
	background: transparent !important;
	color: var(--zh-text) !important;
}

.wc-block-cart-item__remove-link,
.wc-block-cart-items__row .wc-block-components-product-badge + button,
.wc-block-cart-items__row button[aria-label*="Remove" i],
.wc-block-cart-items__row button[aria-label*="Hapus" i] {
	color: var(--zh-text-muted) !important;
	font-size: 12px !important;
}

.wc-block-cart-item__remove-link:hover {
	color: var(--zh-error) !important;
}

/* Totals sidebar (Free shipping / Estimated total rows) -- these sit
   outside the collapsible Panel component (that's only for the coupon
   field and the mobile order-summary accordion), so they need their own
   card wrapper or they're left floating directly on the page background. */
.wc-block-components-totals-wrapper {
	background: #fff !important;
	border: 1px solid var(--zh-border) !important;
	border-radius: var(--zh-radius) !important;
	padding: 18px 16px !important;
	margin-bottom: 14px !important;
}

@media (min-width: 640px) {
	.wc-block-components-totals-wrapper {
		padding: 22px 24px !important;
	}
}

.wc-block-cart__submit-container,
.wc-block-checkout__actions_row {
	margin-top: 4px !important;
}

/* Widen the order-summary sidebar relative to the form column. WC Blocks
   renders this as either a CSS Grid or flex two-column layout depending
   on version; both possibilities are covered here. Only applied above a
   tablet breakpoint so the block's own mobile single-column stacking
   (handled internally by WooCommerce Blocks) is left untouched. */
@media (min-width: 1000px) {
	.wc-block-checkout__form,
	.wc-block-checkout__container {
		grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) !important;
		gap: 48px !important;
	}

	.wc-block-checkout__sidebar {
		flex: 0 0 40% !important;
		max-width: 40% !important;
		width: 40% !important;
	}

	.wc-block-checkout__main {
		flex: 0 0 56% !important;
		max-width: 56% !important;
	}

	.wc-block-components-sidebar .wc-block-components-panel,
	.wc-block-components-order-summary {
		position: sticky;
		top: calc(var(--zh-header-height, 68px) + 16px);
	}
}

/* Mobile-only breathing room -- give the form a touch of side padding
   inside the narrow content wrapper and stop the last card from
   crowding the sticky "Place order" button beneath it. */
@media (max-width: 767px) {
	.wc-block-checkout__main,
	.wc-block-checkout__sidebar,
	.wc-block-cart__main-content,
	.wc-block-cart__sidebar {
		padding: 0 !important;
	}

	.wc-block-checkout__actions_row {
		padding-top: 4px;
		padding-bottom: 8px;
	}
}
/* ==========================================================================
   Marketplace-style additions: hero carousel, flash sale, promo banners
   ========================================================================== */

/* Hero carousel -------------------------------------------------------- */

.zh-hero-carousel {
	position: relative;
	overflow: hidden;
	background: var(--zh-paper-2);
	width: min(var(--zh-container), calc(100% - 40px));
	margin: 24px auto 0;
	border-radius: var(--zh-radius);
	/* iOS Safari has a long-standing bug where overflow:hidden fails to
	   clip a descendant that's being transformed (exactly what the track
	   does every slide change), letting the next/prev slide "leak"
	   past the rounded edge mid-transition. Forcing a mask-image and a
	   new compositing layer works around it; harmless everywhere else. */
	isolation: isolate;
	-webkit-mask-image: -webkit-radial-gradient(#fff, #000);
	transform: translateZ(0);
}

@media (max-width: 767px) {
	.zh-hero-carousel {
		width: min(100% - 32px, var(--zh-container));
		margin-top: 16px;
	}
}

.zh-hero-carousel__track {
	display: flex;
	width: 100%;
	touch-action: pan-y;
	cursor: grab;
	transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}

/* While the user is actively dragging/swiping, the JS updates transform
   on every pointer-move frame -- the CSS transition would fight that and
   make the drag feel laggy, so it's switched off for the duration. */
.zh-hero-carousel__track.is-dragging {
	cursor: grabbing;
	transition: none;
}

.zh-hero-carousel__slide {
	position: relative;
	flex: 0 0 100%;
	min-height: 220px;
	max-height: 460px;
	aspect-ratio: 21 / 8;
	-webkit-user-drag: none;
	user-select: none;
}

@media (max-width: 767px) {
	.zh-hero-carousel__slide {
		aspect-ratio: 3 / 2;
		/* Previously 380px, which fights aspect-ratio: 3/2 on most phone
		   widths (a 358px-wide slide wants ~239px tall at that ratio, but
		   min-height forced it to 380px anyway) -- the box quietly became
		   near-square instead of the intended 3:2 landscape, so any
		   landscape banner uploaded got cropped much tighter on the
		   left/right than expected. 220px is a floor for unusually
		   narrow devices only; aspect-ratio now does the real work. */
		min-height: 220px;
	}
}

.zh-hero-carousel__slide picture {
	position: absolute;
	inset: 0;
	display: block;
}

.zh-hero-carousel__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.zh-hero-carousel__link-overlay {
	position: absolute;
	inset: 0;
	z-index: 2;
}

.zh-hero-carousel__overlay {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding: 24px;
}

.zh-hero-carousel__content {
	max-width: 440px;
	padding: 28px 32px;
	border-radius: var(--zh-radius);
	background: rgba(255, 255, 255, 0.92);
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
	color: var(--zh-text);
	text-align: right;
}

@media (max-width: 767px) {
	.zh-hero-carousel__overlay {
		justify-content: center;
		padding: 16px;
	}

	.zh-hero-carousel__content {
		max-width: 100%;
		text-align: center;
		padding: 22px 20px;
	}
}

.zh-hero-carousel__heading {
	font-family: var(--zh-font-display);
	font-size: clamp(1.6rem, 3.6vw, 2.6rem);
	line-height: 1.12;
	margin: 0 0 12px;
	color: var(--zh-text);
}

.zh-hero-carousel__subtext {
	font-size: 14px;
	line-height: 1.6;
	margin: 0 0 22px;
	color: var(--zh-text-muted);
}

.zh-hero-carousel__content .zh-btn {
	justify-content: center;
}

.zh-hero-carousel__arrow {
	position: absolute;
	top: 50%;
	z-index: 3;
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	transform: translateY(-50%);
	border-radius: 999px;
	border: none;
	background: rgba(251, 243, 243, 0.85);
	color: var(--zh-ink);
	transition: background-color 0.2s ease;
}

.zh-hero-carousel__arrow:hover {
	background: #fff;
}

.zh-hero-carousel__arrow--prev {
	left: 16px;
}

.zh-hero-carousel__arrow--next {
	right: 16px;
}

.zh-hero-carousel__dots {
	position: absolute;
	bottom: 18px;
	left: 24px;
	z-index: 3;
	display: flex;
	gap: 8px;
}

.zh-hero-carousel__dot {
	width: 8px;
	height: 8px;
	padding: 0;
	border: none;
	border-radius: 999px;
	background: rgba(34, 34, 34, 0.25);
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.7);
	transition: background-color 0.2s ease, width 0.2s ease;
}

.zh-hero-carousel__dot.is-active {
	width: 22px;
	background: var(--zh-forest);
}

/* Flash sale ------------------------------------------------------------ */

.zh-flash-sale {
	background: linear-gradient(180deg, #ff8fb8 0%, #ff4f93 45%, #fce8ec 100%);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 32px 0;
	border-top: 1px solid var(--zh-border);
	border-bottom: 1px solid var(--zh-border);
}

.zh-flash-sale__row {
	position: relative;
}

.zh-flash-sale__badge-img {
	display: block;
	max-height: 64px;
	width: auto;
}

.zh-flash-sale__top {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding-top: 32px;
	padding-bottom: 24px;
}

.zh-flash-sale__see-all {
	margin-left: auto;
}

.zh-flash-sale__badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--zh-terracotta-2);
	color: #fff;
	padding: 8px 18px;
	font-family: var(--zh-font-display);
	font-style: italic;
	font-size: 20px;
	transform: skew(-6deg);
}

.zh-flash-sale__badge span {
	display: inline-block;
	transform: skew(6deg);
}

.zh-flash-sale__countdown {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 12px;
	font-weight: 700;
	color: var(--zh-text);
}

.zh-flash-sale__timer {
	display: flex;
	gap: 6px;
}

.zh-flash-sale__timer-unit {
	display: grid;
	place-items: center;
	min-width: 42px;
	height: 38px;
	padding: 0 6px;
	background: var(--zh-ink);
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	font-variant-numeric: tabular-nums;
	border-radius: var(--zh-radius-sm);
}

.zh-flash-sale__timer-sep {
	display: grid;
	place-items: center;
	font-weight: 700;
	color: var(--zh-ink);
}

.zh-flash-sale .zh-testimonial-carousel__track {
	gap: 16px;
}

.zh-flash-sale-product {
	flex: 0 0 min(220px, 66vw);
	min-width: 0;
}

.zh-flash-sale__arrow {
	position: absolute;
	top: 50%;
	z-index: 3;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.9);
	border: none;
	box-shadow: 0 4px 12px rgba(34, 34, 34, 0.18);
}

.zh-flash-sale__arrow:hover {
	background: #fff;
}

.zh-flash-sale__arrow--prev {
	left: -8px;
}

@media (min-width: 768px) {
	.zh-flash-sale__arrow--prev {
		left: -20px;
	}
}

.zh-flash-sale__arrow--next {
	right: -8px;
}

@media (min-width: 768px) {
	.zh-flash-sale__arrow--next {
		right: -20px;
	}
}

/* Promo banner grid ------------------------------------------------------ */

.zh-promo-banners {
	padding-top: 40px;
}

@media (min-width: 768px) {
	.zh-promo-banners {
		padding-top: 48px;
	}
}

.zh-promo-banners__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
}

@media (min-width: 768px) {
	.zh-promo-banners__grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 20px;
	}
}

.zh-promo-banner {
	position: relative;
	display: flex;
	flex-direction: column;
	border-radius: var(--zh-radius);
	overflow: hidden;
	background: #fff;
	box-shadow: 0 1px 3px rgba(34, 34, 34, 0.06);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.zh-promo-banner:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 28px rgba(255, 79, 147, 0.16);
}

.zh-promo-banner__ribbon {
	position: relative;
	z-index: 2;
	align-self: flex-start;
	margin: 12px 0 -8px 12px;
	padding: 6px 14px;
	border-radius: 999px;
	background: var(--zh-forest);
	color: #fff;
	font-family: var(--zh-font-display);
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.zh-promo-banner__img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.zh-promo-banner:hover .zh-promo-banner__img {
	transform: scale(1.05);
}

.zh-promo-banner__tag {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	padding: 12px 14px;
	background: var(--zh-beige);
	color: var(--zh-terracotta-2);
	font-family: var(--zh-font-display);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;
}

.zh-promo-banner__voucher {
	flex-shrink: 0;
	padding: 4px 8px;
	border-radius: var(--zh-radius-sm);
	background: var(--zh-forest);
	color: #fff;
	font-size: 9px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

/* Shop nav links (Kategori dropdown, Terbaru, Best Sellers, New Arrivals,
   Promo) -- Sociolla-style icon-labeled links. Rendered inside the header's
   .zh-nav, so visibility/breakpoint is controlled there. */

.zh-shop-nav__inner {
	display: flex;
	align-items: center;
	gap: 6px;
	overflow-x: auto;
	scrollbar-width: none;
}

.zh-shop-nav__inner::-webkit-scrollbar {
	display: none;
}

.zh-shop-nav__item {
	position: relative;
}

.zh-shop-nav__link {
	display: flex;
	align-items: center;
	gap: 7px;
	padding: 13px 14px;
	background: none;
	border: none;
	font-size: 12px;
	font-weight: 600;
	color: var(--zh-ink);
	white-space: nowrap;
	transition: color 0.2s ease;
}

.zh-shop-nav__link:hover {
	color: var(--zh-terracotta-2);
}

.zh-shop-nav__link svg {
	color: var(--zh-terracotta);
	flex-shrink: 0;
}

.zh-shop-nav__link--promo {
	color: var(--zh-terracotta-2);
	font-weight: 700;
}

.zh-shop-nav__chevron {
	margin-left: -2px;
	transition: transform 0.2s ease;
}

.zh-shop-nav__item--has-dropdown.is-open .zh-shop-nav__chevron {
	transform: rotate(180deg);
}



.zh-product-card__badges {
	position: absolute;
	left: 12px;
	top: 12px;
	z-index: 3;
	display: flex;
	flex-direction: column;
	gap: 6px;
	align-items: flex-start;
}

.zh-product-card__badges .onsale,
.zh-product-card__badges .zh-onsale-badge,
.zh-product-card__badges .zh-product-card__badge {
	position: static;
}

.zh-badge-percent {
	background: var(--zh-terracotta-2);
	color: #fff;
	padding: 5px 10px;
	font-size: 9px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

/* Full-width promo strip -------------------------------------------------- */

.zh-promo-strip {
	background: var(--zh-paper-2);
}

.zh-promo-strip__link {
	position: relative;
	display: block;
	overflow: hidden;
}

.zh-promo-strip__img {
	display: block;
	width: 100%;
	height: auto;
	max-height: 420px;
	object-fit: cover;
	aspect-ratio: 21 / 8;
}

@media (max-width: 767px) {
	.zh-promo-strip__img {
		aspect-ratio: 4 / 5;
		max-height: none;
	}
}

.zh-promo-strip__overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	background: linear-gradient(90deg, rgba(58, 32, 41, 0.6) 0%, rgba(58, 32, 41, 0.05) 60%, transparent 100%);
}

.zh-promo-strip__content {
	max-width: 460px;
	color: #fbf3f3;
}

.zh-promo-strip__heading {
	font-family: var(--zh-font-display);
	font-size: clamp(1.6rem, 3.4vw, 2.4rem);
	margin: 0 0 10px;
}

.zh-promo-strip__subtext {
	font-size: 14px;
	line-height: 1.6;
	margin: 0 0 20px;
	color: #f0dbe0;
}

/* Welcome popup ------------------------------------------------------------ */

.zh-popup {
	position: fixed;
	inset: 0;
	z-index: 90;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.zh-popup[hidden] {
	display: none;
}

.zh-popup__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(58, 32, 41, 0.55);
	animation: zh-popup-fade 0.25s ease;
}

.zh-popup__card {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 420px;
	max-height: 90vh;
	overflow-y: auto;
	background: var(--zh-cream);
	border-radius: 8px;
	box-shadow: 0 30px 60px rgba(58, 32, 41, 0.35);
	animation: zh-popup-pop 0.3s cubic-bezier(0.2, 0.8, 0.3, 1.1);
}

@keyframes zh-popup-fade {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes zh-popup-pop {
	from { opacity: 0; transform: scale(0.92) translateY(12px); }
	to { opacity: 1; transform: scale(1) translateY(0); }
}

.zh-popup__close {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 2;
	display: grid;
	place-items: center;
	width: 32px;
	height: 32px;
	border-radius: 999px;
	border: none;
	background: rgba(251, 243, 243, 0.9);
	color: var(--zh-ink);
}

.zh-popup__close:hover {
	background: #fff;
}

.zh-popup__img-wrap {
	width: 100%;
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

.zh-popup__img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.zh-popup__body {
	padding: 24px 24px 28px;
	text-align: center;
}

.zh-popup__heading {
	font-family: var(--zh-font-display);
	font-size: 1.6rem;
	margin: 0 0 10px;
	color: var(--zh-text);
}

.zh-popup__subtext {
	font-size: 14px;
	line-height: 1.6;
	color: var(--zh-text-muted);
	margin: 0 0 20px;
}

/* Notify Me modal (out-of-stock waitlist) -----------------------------------
   Same fixed-overlay pattern as .zh-popup above, just without the image
   half -- a small centered form instead. */

.zh-notify-modal {
	position: fixed;
	inset: 0;
	z-index: 90;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

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

.zh-notify-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(58, 32, 41, 0.55);
	animation: zh-popup-fade 0.25s ease;
}

.zh-notify-modal__card {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 380px;
	max-height: 90vh;
	overflow-y: auto;
	background: var(--zh-cream);
	border-radius: var(--zh-radius);
	box-shadow: 0 30px 60px rgba(58, 32, 41, 0.35);
	padding: 28px 24px 24px;
	animation: zh-popup-pop 0.3s cubic-bezier(0.2, 0.8, 0.3, 1.1);
}

.zh-notify-modal__close {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 2;
	display: grid;
	place-items: center;
	width: 32px;
	height: 32px;
	border-radius: 999px;
	border: none;
	background: var(--zh-paper);
	color: var(--zh-ink);
}

.zh-notify-modal__close:hover {
	background: #fff;
}

.zh-notify-modal__heading {
	font-family: var(--zh-font-display);
	font-size: 1.4rem;
	margin: 0 0 8px;
	color: var(--zh-text);
	padding-right: 28px;
}

.zh-notify-modal__lede {
	font-size: 13px;
	line-height: 1.6;
	color: var(--zh-text-muted);
	margin: 0 0 20px;
}

.zh-notify-modal__label {
	display: block;
	margin-bottom: 6px;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--zh-text-muted);
}

.zh-notify-modal__input {
	width: 100%;
	height: 46px;
	border: 1px solid var(--zh-border-2);
	border-radius: var(--zh-radius-sm);
	background: var(--zh-paper);
	padding: 0 14px;
	font-size: 14px;
	margin-bottom: 16px;
	outline: none;
	transition: border-color 0.2s ease;
}

.zh-notify-modal__input:focus {
	border-color: var(--zh-terracotta);
}

.zh-notify-modal__message {
	margin: 12px 0 0;
	font-size: 13px;
	text-align: center;
	color: var(--zh-success-text);
}

.zh-notify-modal__message.is-error {
	color: var(--zh-error);
}

/* ==========================================================================
   Sociolla-style additions round 2: quick view, what's new, category
   tabs, brand spotlight, value pack
   ========================================================================== */

/* 5-column product grid variant, used by the category-tabs section ----- */

@media (min-width: 1024px) {
	.zh-products-grid--5 {
		grid-template-columns: repeat(5, minmax(0, 1fr));
	}
}

/* "What's New" banner strip -- pure banner carousel, no heading/copy
   (Shopee-style). Full-width, no card frame, no hover animation. */

.zh-whats-new {
	padding-top: 20px;
	padding-bottom: 20px;
	background: var(--zh-cream);
}

@media (min-width: 768px) {
	.zh-whats-new {
		padding-top: 28px;
		padding-bottom: 28px;
	}
}

.zh-whats-new__carousel {
	position: relative;
}

.zh-whats-new__track {
	gap: 0;
}

.zh-whats-new__card {
	flex: 0 0 100%;
	display: block;
	min-width: 0;
}

.zh-whats-new__card-media {
	display: block;
	overflow: hidden;
	border-radius: var(--zh-radius);
	height: 42px;
}

@media (min-width: 768px) {
	.zh-whats-new__card-media {
		height: 55px;
	}
}

.zh-whats-new__card-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.zh-whats-new__dots {
	display: flex;
	justify-content: center;
	gap: 6px;
	margin-top: 12px;
}

.zh-whats-new__dot {
	width: 6px;
	height: 6px;
	border-radius: 999px;
	background: var(--zh-border-2);
	transition: background-color 0.2s ease, width 0.2s ease;
	cursor: pointer;
}

.zh-whats-new__dot.is-active {
	width: 18px;
	background: var(--zh-forest);
}

/* Category-tabbed product section ("Bestie Deals For You" pattern) ------ */

.zh-category-tabs {
	padding-bottom: 40px;
}

@media (min-width: 768px) {
	.zh-category-tabs {
		padding-bottom: 48px;
	}
}

.zh-category-tabs__nav {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	margin-bottom: 32px;
	border-bottom: 1px solid var(--zh-border);
}

.zh-category-tabs__tab {
	padding: 12px 18px;
	border: none;
	background: none;
	position: relative;
	font-size: 14px;
	font-weight: 600;
	color: var(--zh-text-muted);
	transition: color 0.2s ease;
}

.zh-category-tabs__tab::after {
	content: "";
	position: absolute;
	left: 18px;
	right: 18px;
	bottom: -1px;
	height: 2px;
	background: transparent;
	transition: background-color 0.2s ease;
}

.zh-category-tabs__tab:hover {
	color: var(--zh-text);
}

.zh-category-tabs__tab.is-active {
	color: var(--zh-forest);
}

.zh-category-tabs__tab.is-active::after {
	background: var(--zh-forest);
}

.zh-category-tabs__panel {
	position: relative;
}

.zh-category-tabs__panel[hidden] {
	display: none;
}

.zh-category-tabs__carousel .zh-testimonial-carousel__track {
	gap: 16px;
}

.zh-category-tabs__product {
	flex: 0 0 min(220px, 62vw);
	min-width: 0;
}

.zh-category-tabs__arrow {
	position: absolute;
	top: calc(50% - 20px);
	z-index: 3;
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 4px 12px rgba(34, 34, 34, 0.14);
}

.zh-category-tabs__arrow--prev {
	left: -8px;
}

@media (min-width: 768px) {
	.zh-category-tabs__arrow--prev {
		left: -20px;
	}
}

.zh-category-tabs__arrow--next {
	right: -8px;
}

@media (min-width: 768px) {
	.zh-category-tabs__arrow--next {
		right: -20px;
	}
}

.zh-category-tabs__see-all {
	margin-top: 32px;
	display: flex;
	justify-content: center;
}

/* Brand Spotlight ("Sociolla Exclusive" equivalent) ----------------------- */

.zh-brand-spotlight {
	padding-top: 40px;
	padding-bottom: 40px;
}

@media (min-width: 768px) {
	.zh-brand-spotlight {
		padding-top: 48px;
		padding-bottom: 48px;
	}
}

.zh-brand-spotlight__heading {
	margin-bottom: 24px;
}

.zh-brand-spotlight__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

@media (min-width: 768px) {
	.zh-brand-spotlight__grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.zh-brand-spotlight__card {
	display: block;
	border-radius: var(--zh-radius);
	overflow: hidden;
	background: var(--zh-paper);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.zh-brand-spotlight__card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 28px rgba(255, 79, 147, 0.16);
}

.zh-brand-spotlight__media {
	display: block;
	aspect-ratio: 1 / 1;
	overflow: hidden;
}

.zh-brand-spotlight__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.zh-brand-spotlight__foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	padding: 12px 14px;
	background: var(--zh-ink);
}

.zh-brand-spotlight__tag {
	font-size: 13px;
	font-weight: 700;
	color: #fff;
}

.zh-brand-spotlight__voucher {
	flex-shrink: 0;
	padding: 4px 8px;
	border-radius: var(--zh-radius-sm);
	background: #fff;
	color: var(--zh-ink);
	font-size: 9px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

/* Value Pack (bundle spotlight) ------------------------------------------- */

.zh-bundle__inner {
	display: grid;
	gap: 20px;
}

@media (min-width: 1024px) {
	.zh-bundle__inner {
		grid-template-columns: 220px 1fr;
		gap: 28px;
		align-items: stretch;
	}
}

.zh-bundle__signage {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	gap: 10px;
	padding: 28px 24px;
	border-radius: var(--zh-radius);
	background: linear-gradient(160deg, var(--zh-forest), var(--zh-terracotta-2));
	color: #fff;
	min-height: 180px;
}

.zh-bundle__signage-eyebrow {
	font-family: var(--zh-font-display);
	font-size: 22px;
	font-weight: 700;
}

.zh-bundle__signage-title {
	font-size: 14px;
	line-height: 1.5;
	opacity: 0.92;
}

.zh-bundle__signage-btn {
	margin-top: 6px;
	border-color: rgba(255, 255, 255, 0.6);
	color: #fff;
}

.zh-bundle__signage-btn:hover {
	background: rgba(255, 255, 255, 0.18);
	border-color: #fff;
}

.zh-bundle__grid {
	gap: 16px;
}

/* Welcome Bestie floating tab -------------------------------------------- */

.zh-welcome-tab {
	position: fixed;
	left: 0;
	top: 50%;
	z-index: 50;
	transform: translateY(-50%);
	display: none;
	align-items: stretch;
}

@media (min-width: 768px) {
	.zh-welcome-tab {
		display: flex;
	}
}

.zh-welcome-tab__handle {
	writing-mode: vertical-rl;
	transform: rotate(180deg);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px 10px;
	border: none;
	border-radius: var(--zh-radius) 0 0 var(--zh-radius);
	background: var(--zh-forest);
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.03em;
	box-shadow: 3px 0 10px rgba(34, 34, 34, 0.14);
	transition: background-color 0.2s ease;
}

.zh-welcome-tab__handle:hover {
	background: var(--zh-terracotta);
}

.zh-welcome-tab__panel {
	display: none;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	width: 240px;
	padding: 22px 20px;
	background: #fff;
	border: 1px solid var(--zh-border);
	border-left: none;
	border-radius: 0 var(--zh-radius) var(--zh-radius) 0;
	box-shadow: 4px 4px 20px rgba(34, 34, 34, 0.1);
	position: relative;
}

.zh-welcome-tab.is-open .zh-welcome-tab__panel {
	display: flex;
}

.zh-welcome-tab.is-open .zh-welcome-tab__handle {
	display: none;
}

.zh-welcome-tab__close {
	position: absolute;
	top: 10px;
	right: 10px;
	display: grid;
	place-items: center;
	width: 24px;
	height: 24px;
	border: none;
	border-radius: 999px;
	background: none;
	color: var(--zh-text-soft);
}

.zh-welcome-tab__close:hover {
	background: var(--zh-paper);
	color: var(--zh-text);
}

.zh-welcome-tab__headline {
	font-size: 15px;
	font-weight: 600;
	line-height: 1.4;
	color: var(--zh-text);
	padding-right: 18px;
}

.zh-welcome-tab__link {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 13px;
	font-weight: 600;
	color: var(--zh-forest);
}

.zh-welcome-tab__link:hover {
	color: var(--zh-terracotta);
}

.zh-welcome-tab__claim {
	display: flex;
	width: 100%;
	height: 40px;
	align-items: center;
	justify-content: center;
	border: none;
	border-radius: var(--zh-radius-sm);
	background: var(--zh-ink);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	transition: background-color 0.2s ease;
}

.zh-welcome-tab__claim:hover {
	background: #000;
}

.zh-welcome-tab__terms {
	font-size: 10px;
	color: var(--zh-text-soft);
}

@media (max-width: 640px) {
	.zh-welcome-tab__panel {
		width: 200px;
		padding: 18px 16px;
	}

	.zh-welcome-tab__headline {
		font-size: 14px;
	}
}

/* Mobile quick-shortcuts row -- replaces the desktop nav row on mobile */

.zh-mobile-shortcuts {
	display: block;
	background: #fff;
	border-bottom: 1px solid var(--zh-border);
}

@media (min-width: 768px) {
	.zh-mobile-shortcuts {
		display: none;
	}
}

.zh-mobile-shortcuts__row {
	display: flex;
	justify-content: space-between;
	gap: 6px;
	padding: 16px 0;
	overflow-x: auto;
	scrollbar-width: none;
}

.zh-mobile-shortcuts__row::-webkit-scrollbar {
	display: none;
}

.zh-mobile-shortcuts__item {
	display: flex;
	flex: 0 0 auto;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	width: 68px;
	border: none;
	background: none;
	font-size: 10px;
	font-weight: 600;
	color: var(--zh-text);
	text-align: center;
}

.zh-mobile-shortcuts__icon {
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	border-radius: 999px;
	background: var(--zh-paper);
	color: var(--zh-forest);
}

/* Mobile category browser: full-screen panel with back-arrow header,
   same parent-list / child-panel structure as the desktop mega-menu. */

.zh-mobile-cat-browser {
	position: fixed;
	inset: 0;
	z-index: 65;
	display: flex;
	flex-direction: column;
	background: #fff;
}

.zh-mobile-cat-browser[hidden] {
	display: none;
}

@media (min-width: 768px) {
	.zh-mobile-cat-browser {
		display: none !important;
	}
}

.zh-mobile-cat-browser__top {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
	padding: 16px var(--zh-container-pad, 20px);
	border-bottom: 1px solid var(--zh-border);
}

.zh-mobile-cat-browser__back {
	display: grid;
	place-items: center;
	width: 32px;
	height: 32px;
	border: none;
	border-radius: 999px;
	background: var(--zh-paper);
	color: var(--zh-text);
	flex-shrink: 0;
}

.zh-mobile-cat-browser__title {
	font-family: var(--zh-font-display);
	font-size: 16px;
	font-weight: 600;
	color: var(--zh-text);
}

.zh-mobile-cat-browser__body {
	flex: 1;
	min-height: 0;
	display: flex;
}

.zh-mobile-cat-browser__sidebar {
	flex: 0 0 118px;
	overflow-y: auto;
	background: var(--zh-cream);
	border-right: 1px solid var(--zh-border);
}

.zh-mobile-cat-browser__all {
	display: block;
	padding: 14px 12px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--zh-terracotta-2);
	border-bottom: 1px solid var(--zh-border);
}

.zh-mobile-cat-browser__parent {
	display: flex;
	width: 100%;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	padding: 14px 8px;
	border: none;
	background: none;
	font-size: 11px;
	color: var(--zh-text-muted);
	text-align: center;
}

.zh-mobile-cat-browser__parent.is-active {
	background: #fff;
	color: var(--zh-forest);
	font-weight: 600;
	box-shadow: inset 3px 0 0 var(--zh-forest);
}

.zh-mobile-cat-browser__parent-thumb {
	display: block;
	width: 40px;
	height: 40px;
	border-radius: 999px;
	overflow: hidden;
	background: #fff;
}

.zh-mobile-cat-browser__parent-thumb img,
.zh-mobile-cat-browser__parent-thumb span {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.zh-mobile-cat-browser__panels {
	flex: 1;
	min-width: 0;
	overflow-y: auto;
	padding: 16px;
}

.zh-mobile-cat-browser__panel {
	display: none;
}

.zh-mobile-cat-browser__panel.is-active {
	display: block;
}

.zh-mobile-cat-browser__see-all {
	display: block;
	margin-bottom: 16px;
	font-size: 13px;
	font-weight: 700;
	color: var(--zh-forest);
}

.zh-mobile-cat-browser__group {
	margin-bottom: 20px;
}

.zh-mobile-cat-browser__group-title {
	display: block;
	margin-bottom: 10px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--zh-text);
}

.zh-mobile-cat-browser__group ul {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.zh-mobile-cat-browser__group ul a {
	font-size: 13px;
	color: var(--zh-text-muted);
}

.zh-mobile-cat-browser__empty {
	font-size: 13px;
	color: var(--zh-text-muted);
}

/* Mobile bottom navigation bar (Shopee/Zalora-style) ---------------------- */

:root {
	--zh-bottom-nav-height: 60px;
}

.zh-bottom-nav {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 46;
	display: flex;
	height: var(--zh-bottom-nav-height);
	padding-bottom: env(safe-area-inset-bottom);
	background: #fff;
	border-top: 1px solid var(--zh-border);
	box-shadow: 0 -2px 10px rgba(34, 34, 34, 0.06);
}

@media (min-width: 768px) {
	.zh-bottom-nav {
		display: none;
	}
}

/* Push page content (and the footer) up above the fixed bar so nothing
   sits hidden behind it -- only needed on mobile, where the bar shows. */
body {
	padding-bottom: var(--zh-bottom-nav-height);
}

@media (min-width: 768px) {
	body {
		padding-bottom: 0;
	}
}

.zh-bottom-nav__item {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 3px;
	border: none;
	background: none;
	font-size: 10px;
	font-weight: 600;
	color: var(--zh-text-soft);
}

.zh-bottom-nav__item.is-active {
	color: var(--zh-forest);
}

.zh-bottom-nav__icon-wrap {
	position: relative;
	display: grid;
	place-items: center;
}

.zh-bottom-nav__badge {
	position: absolute;
	top: -4px;
	right: -8px;
	display: grid;
	place-items: center;
	min-width: 15px;
	height: 15px;
	padding: 0 3px;
	border-radius: 999px;
	background: var(--zh-forest);
	color: #fff;
	font-size: 9px;
	font-weight: 700;
}

/* Single product's sticky add-to-cart bar sits just above the bottom
   nav on mobile (rather than overlapping it) -- both are fixed to the
   bottom of the viewport. Desktop doesn't have a bottom nav at all, so
   its own bottom:0 rule (see .zh-product-single__sticky-bar) is
   unaffected there. */
@media (max-width: 767px) {
	.zh-product-single__sticky-bar {
		bottom: var(--zh-bottom-nav-height);
	}
}