:root {
	--hitzy-accent: #0f8f7f;
	--hitzy-dark: #151619;
	--hitzy-text: #24262b;
	--hitzy-muted: #71757d;
	--hitzy-line: #e7e3dc;
	--hitzy-bg: #fbfaf7;
	--hitzy-soft: #f2f7f5;
	--hitzy-white: #ffffff;
	--hitzy-shadow: 0 22px 60px rgba(21, 22, 25, 0.10);
}

* { box-sizing: border-box; }
body {
	margin: 0;
	font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	color: var(--hitzy-text);
	background: var(--hitzy-bg);
	line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
a:hover { color: var(--hitzy-accent); }
img { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; }
.hitzy-container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(780px, calc(100% - 40px)); }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(1px, 1px, 1px, 1px); }
.skip-link:focus { clip: auto; width: auto; height: auto; background: #fff; padding: 10px 14px; z-index: 999; }

.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 12px 20px;
	border: 0;
	border-radius: 6px;
	background: var(--hitzy-accent);
	color: #fff;
	font-weight: 700;
	cursor: pointer;
	transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover { color: #fff; transform: translateY(-1px); box-shadow: 0 12px 26px rgba(15, 143, 127, .25); }
.button-secondary { background: #e9edea; color: var(--hitzy-dark); }
.button-large { min-height: 52px; padding-inline: 26px; }
.button-light { background: #fff; color: var(--hitzy-dark); }

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 255, 255, .94);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--hitzy-line);
}
.site-topbar {
	background: #111;
	color: rgba(255,255,255,.72);
	font-size: .72rem;
}
.topbar-inner {
	min-height: 30px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
}
.topbar-inner p { margin: 0; }
.topbar-inner nav { display: flex; gap: 22px; align-items: center; }
.topbar-inner a { color: rgba(255,255,255,.76); }
.topbar-inner a:hover { color: #22c6ca; }
.header-inner {
	min-height: 68px;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 28px;
}
.custom-logo { max-height: 58px; width: auto; }
.site-title { font-size: 1.45rem; font-weight: 800; letter-spacing: 0; color: var(--hitzy-dark); }
.main-navigation ul, .stacked-navigation ul, .footer-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 26px;
}
.main-navigation { justify-self: end; }
.main-navigation a, .stacked-navigation a { font-weight: 700; font-size: .95rem; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.header-search-toggle, .header-cart, .menu-toggle {
	border: 1px solid var(--hitzy-line);
	background: #fff;
	color: var(--hitzy-dark);
	border-radius: 6px;
	min-height: 40px;
	padding: 9px 12px;
	font-weight: 700;
	cursor: pointer;
}

.suprema-home {
	background: #fff;
	color: #292929;
	--sup-cyan: #18c6ca;
	--sup-soft: #f7f7f7;
}
.suprema-home .hitzy-container { width: min(1120px, calc(100% - 44px)); }
.sup-hero {
	position: relative;
	min-height: 455px;
	background:
		linear-gradient(90deg, rgba(205,207,210,.86) 0%, rgba(205,207,210,.72) 43%, rgba(205,207,210,.08) 69%),
		url('../images/fashion-hero.png'),
		linear-gradient(120deg, #f5f5f5, #d6d8db);
	background-size: cover;
	background-position: center;
	overflow: hidden;
}
.sup-hero-inner {
	min-height: 455px;
	display: grid;
	grid-template-columns: minmax(0, .9fr) minmax(330px, .75fr);
	align-items: center;
	gap: 20px;
}
.sup-hero-copy { padding-left: 70px; }
.sup-hero h1 {
	margin: 0 0 12px;
	color: #fff;
	font-size: clamp(3rem, 5.5vw, 4.8rem);
	line-height: 1;
	font-weight: 800;
	letter-spacing: 0;
	text-shadow: 0 2px 2px rgba(0,0,0,.03);
}
.sup-hero p {
	max-width: 520px;
	margin: 0 0 28px;
	color: rgba(255,255,255,.88);
	font-size: 1.02rem;
	line-height: 1.55;
}
.sup-hero-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.sup-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 150px;
	min-height: 45px;
	padding: 13px 22px;
	background: var(--sup-cyan);
	border: 1px solid var(--sup-cyan);
	color: #fff;
	font-size: .72rem;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
	border-radius: 0;
}
.sup-button:hover { background: #111; border-color: #111; color: #fff; }
.sup-button-ghost {
	background: transparent;
	border-color: rgba(255,255,255,.72);
	color: #fff;
}
.sup-model-card {
	display: none;
	width: min(430px, 100%);
	aspect-ratio: 4 / 5;
	margin-left: auto;
	background:
		radial-gradient(circle at 54% 18%, #f4d2c6 0 10%, transparent 10.5%),
		linear-gradient(135deg, transparent 0 43%, #213c73 43% 51%, #b43652 51% 58%, #244b8a 58% 65%, transparent 65%),
		linear-gradient(90deg, transparent 0 42%, #f0c6b7 42% 61%, transparent 61%),
		linear-gradient(145deg, transparent 0 48%, #1c2b42 48% 62%, #2a65aa 62% 72%, #b53f55 72% 78%, transparent 78%),
		linear-gradient(#f0f0f0, #d9dce0);
	clip-path: polygon(22% 0, 100% 0, 100% 100%, 6% 100%, 18% 52%);
	opacity: .98;
}
.sup-slider-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	border: 0;
	background: transparent;
	color: #fff;
	font-size: 4rem;
	font-weight: 200;
	cursor: default;
}
.sup-left { left: 20px; }
.sup-right { right: 22px; }
.sup-dots { position: absolute; left: 50%; bottom: 34px; transform: translateX(-50%); display: flex; gap: 12px; }
.sup-dots span { width: 28px; height: 3px; background: rgba(255,255,255,.62); }
.sup-category-strip { padding: 25px 0 28px; background: #fff; border-bottom: 1px solid #eee; }
.sup-strip-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.sup-strip-item {
	position: relative;
	height: 142px;
	overflow: hidden;
	background: #eee;
	display: block;
}
.sup-strip-item img, .sup-strip-item span {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(1);
	transition: transform .25s ease, filter .25s ease;
	background: linear-gradient(135deg, #ddd, #aaa);
}
.sup-strip-item:hover img { transform: scale(1.04); filter: grayscale(.35); }
.sup-strip-item strong {
	position: absolute;
	inset: auto 0 0;
	padding: 18px;
	color: #fff;
	background: linear-gradient(0deg, rgba(0,0,0,.52), transparent);
	font-size: .85rem;
}
.sup-section { padding: 72px 0; }
.sup-section-heading { text-align: center; margin-bottom: 44px; }
.sup-section-heading span {
	display: block;
	color: #777;
	font-size: .75rem;
	font-weight: 800;
	margin-bottom: 4px;
}
.sup-section-heading h2 {
	margin: 0;
	color: #242424;
	font-size: 1.55rem;
	line-height: 1.2;
	letter-spacing: 0;
}
.sup-carousel-row {
	display: grid;
	grid-template-columns: 44px minmax(0, 1fr) 44px;
	gap: 18px;
	align-items: center;
}
.sup-lite-arrow {
	border: 0;
	background: transparent;
	font-size: 3rem;
	line-height: 1;
	color: #aeb2b6;
}
.sup-product-grid { display: grid; gap: 24px; }
.sup-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.sup-product { min-width: 0; }
.sup-product-image {
	position: relative;
	display: block;
	background: #f6f6f6;
	overflow: hidden;
}
.sup-product-image img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	transition: transform .25s ease;
}
.sup-product:hover .sup-product-image img { transform: scale(1.025); }
.sup-ribbon {
	position: absolute;
	top: 0;
	right: 0;
	width: 82px;
	height: 82px;
	clip-path: polygon(100% 0, 0 0, 100% 100%);
	color: #fff;
	font-size: .66rem;
	font-weight: 900;
	text-transform: uppercase;
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
	padding: 12px 7px;
	writing-mode: vertical-rl;
}
.sup-ribbon-sale { background: var(--sup-cyan); }
.sup-ribbon-dark { background: #111; }
.sup-product-meta { padding-top: 15px; border-bottom: 1px solid #eee; padding-bottom: 19px; }
.sup-product-cats {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	min-height: 20px;
	color: #a3a3a3;
	font-size: .72rem;
}
.sup-product-cats a { color: #a3a3a3; }
.sup-product h3 {
	margin: 4px 0 5px;
	font-size: .88rem;
	line-height: 1.35;
	font-weight: 800;
}
.sup-price {
	font-size: .78rem;
	font-weight: 800;
	color: #1f1f1f;
}
.sup-price del { color: #888; margin-right: 4px; }
.sup-price ins { text-decoration: none; }
.sup-centered-action { text-align: center; margin-top: 105px; }
.sup-best-sellers { padding-top: 78px; }
.sup-shipping-band {
	margin-top: 18px;
	padding: 48px 0;
	background:
		linear-gradient(90deg, rgba(24,198,202,.95), rgba(24,198,202,.82)),
		linear-gradient(135deg, #8ed9da, #12b9c1);
	color: #fff;
}
.sup-shipping-band .hitzy-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}
.sup-shipping-band h2 { color: #fff; margin: 0; font-size: 2rem; letter-spacing: 0; }
.sup-post-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 32px;
}
.sup-post-card { color: #444; }
.sup-post-image, .sup-post-image span {
	display: block;
	width: 100%;
	aspect-ratio: 1.35;
	background: linear-gradient(135deg, #eff1f3, #cbd6d9);
	overflow: hidden;
}
.sup-post-image img { width: 100%; height: 100%; object-fit: cover; }
.sup-post-card h3 { margin: 22px 0 4px; font-size: 1rem; line-height: 1.35; }
.sup-post-card time { color: var(--sup-cyan); font-size: .78rem; font-weight: 700; }
.sup-post-card p { color: #777; font-size: .86rem; line-height: 1.65; }
.sup-read-more { display: inline-block; margin-top: 10px; font-size: .78rem; font-weight: 800; }
.header-cart { display: inline-flex; gap: 8px; align-items: center; }
.cart-count { min-width: 22px; height: 22px; border-radius: 999px; background: var(--hitzy-accent); color: #fff; display: inline-grid; place-items: center; font-size: .78rem; }
.menu-toggle { display: none; width: 44px; padding: 9px; }
.menu-toggle span { display: block; height: 2px; background: var(--hitzy-dark); margin: 5px 0; }
.hitzy-header-center .header-inner { grid-template-columns: 1fr auto 1fr; }
.hitzy-header-center .site-branding { grid-column: 2; text-align: center; }
.hitzy-header-center .main-navigation { grid-column: 1; grid-row: 1; justify-self: start; }
.hitzy-header-center .header-actions { grid-column: 3; justify-self: end; }
.hitzy-header-stacked .header-inner { grid-template-columns: 1fr auto 1fr; }
.hitzy-header-stacked .site-branding { grid-column: 2; justify-self: center; }
.hitzy-header-stacked .main-navigation { display: none; }
.header-menu-row { border-top: 1px solid var(--hitzy-line); }
.stacked-navigation ul { justify-content: center; min-height: 52px; }

.ajax-search-panel {
	position: absolute;
	inset: 100% 0 auto;
	background: #fff;
	border-bottom: 1px solid var(--hitzy-line);
	box-shadow: var(--hitzy-shadow);
	padding: 18px 0;
}
.ajax-search-box input {
	width: 100%;
	border: 1px solid var(--hitzy-line);
	border-radius: 6px;
	padding: 14px 16px;
	font-size: 1.05rem;
}
.hitzy-ajax-search-results { margin-top: 12px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.ajax-search-item { display: grid; grid-template-columns: 64px 1fr; gap: 12px; align-items: center; border: 1px solid var(--hitzy-line); border-radius: 6px; padding: 10px; background: var(--hitzy-bg); }
.ajax-search-item img { width: 64px; height: 64px; object-fit: cover; border-radius: 5px; }
.ajax-search-item em { display: block; color: var(--hitzy-accent); font-style: normal; font-weight: 700; }

.hitzy-section { padding: 78px 0; }
.hitzy-hero {
	min-height: 620px;
	display: grid;
	align-items: center;
	background: linear-gradient(120deg, rgba(15,143,127,.14), rgba(205,107,74,.16)), var(--hitzy-soft);
	background-size: cover;
	background-position: center;
	position: relative;
}
.hitzy-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(251,250,247,.92), rgba(251,250,247,.54), rgba(251,250,247,.08)); }
.hero-inner { position: relative; }
.hero-copy { max-width: 650px; }
.hero-copy h1, .page-hero h1 { margin: 0 0 18px; color: var(--hitzy-dark); line-height: 1.05; font-size: clamp(2.5rem, 7vw, 5.7rem); letter-spacing: 0; }
.hero-copy p { font-size: 1.18rem; max-width: 560px; color: #4a4d52; margin: 0 0 28px; }
.page-hero { padding: 72px 0; background: var(--hitzy-soft); }
.page-content, .single-content { padding: 54px 0; }

.full-text-section { text-align: center; }
.hitzy-section h2 { margin: 0 0 22px; font-size: clamp(1.75rem, 3vw, 2.8rem); line-height: 1.15; color: var(--hitzy-dark); letter-spacing: 0; }
.split-layout { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 58px; align-items: center; }
.image-right .split-media { order: 2; }
.split-media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 8px; box-shadow: var(--hitzy-shadow); }
.split-copy p { color: var(--hitzy-muted); }
.gallery-grid, .testimonial-grid, .category-grid, .products-grid, .post-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
}
.gallery-grid img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 8px; }
.parallax-section {
	min-height: 460px;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	color: #fff;
	display: grid;
	place-items: center;
	text-align: center;
	position: relative;
}
.parallax-section::before { content: ""; position: absolute; inset: 0; background: rgba(21, 22, 25, .52); }
.parallax-content { position: relative; max-width: 760px; }
.parallax-content h2 { color: #fff; }
.testimonial-grid { grid-template-columns: repeat(3, 1fr); }
.testimonial-grid blockquote {
	margin: 0;
	background: #fff;
	border: 1px solid var(--hitzy-line);
	border-radius: 8px;
	padding: 26px;
	box-shadow: 0 12px 30px rgba(21,22,25,.05);
}
.testimonial-grid cite { display: block; margin-top: 18px; font-weight: 800; color: var(--hitzy-dark); font-style: normal; }
.full-image-section { padding: 0; }
.full-image-section img { width: 100%; max-height: 620px; object-fit: cover; }
.category-card, .hitzy-product-card, .post-card {
	background: #fff;
	border: 1px solid var(--hitzy-line);
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 10px 24px rgba(21,22,25,.04);
}
.category-card { position: relative; min-height: 240px; display: grid; align-items: end; }
.category-card img, .category-placeholder { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; background: linear-gradient(135deg, #dbe8e5, #f0d8c8); }
.category-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.55), transparent); }
.category-card strong { position: relative; z-index: 1; color: #fff; font-size: 1.25rem; padding: 20px; }
.cta-section { background: var(--hitzy-dark); color: #fff; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.cta-inner h2 { color: #fff; }
.cta-inner p { margin: 0; color: rgba(255,255,255,.76); }

.product-card-image { position: relative; display: block; background: #f5f2ec; }
.product-card-image img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.product-badge { position: absolute; top: 12px; left: 12px; background: #cd5b47; color: #fff; border-radius: 999px; padding: 5px 10px; font-weight: 800; font-size: .78rem; }
.product-card-body { padding: 16px; }
.product-card-category { min-height: 22px; color: var(--hitzy-muted); font-size: .82rem; }
.product-card-body h3 { margin: 4px 0 8px; font-size: 1rem; line-height: 1.35; }
.product-card-price { color: var(--hitzy-accent); font-weight: 800; margin-bottom: 12px; }
.product-card-button { width: 100%; }

.hitzy-shop-main { padding: 48px 0 74px; }
.shop-layout { display: grid; grid-template-columns: 280px minmax(0, 1fr); gap: 32px; align-items: start; }
.shop-sidebar { position: sticky; top: 110px; display: grid; gap: 18px; }
.hitzy-shop-filters, .widget {
	background: #fff;
	border: 1px solid var(--hitzy-line);
	border-radius: 8px;
	padding: 20px;
}
.hitzy-shop-filters h2, .widget-title { margin: 0 0 16px; font-size: 1.1rem; }
.hitzy-shop-filters label { display: grid; gap: 6px; margin-bottom: 14px; font-weight: 700; }
.hitzy-shop-filters input, .hitzy-shop-filters select, .woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea, .woocommerce div.product form.cart .variations select {
	width: 100%;
	border: 1px solid var(--hitzy-line);
	border-radius: 6px;
	padding: 11px 12px;
	background: #fff;
}
.filter-range { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.shop-products-panel .woocommerce-result-count { color: var(--hitzy-muted); }
.shop-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 24px; }
.woocommerce ul.products { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; margin: 0; padding: 0; }
.woocommerce ul.products li.product {
	width: auto !important;
	margin: 0 !important;
	background: #fff;
	border: 1px solid var(--hitzy-line);
	border-radius: 8px;
	padding: 0 0 16px !important;
	overflow: hidden;
}
.woocommerce ul.products li.product a img { margin: 0 0 14px; aspect-ratio: 1; object-fit: cover; }
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .price,
.woocommerce ul.products li.product .button { margin-left: 16px; margin-right: 16px; }
.load-more-wrap { text-align: center; margin-top: 34px; }
.hitzy-loading { opacity: .55; pointer-events: none; }

.woocommerce div.product {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
	gap: 58px;
	background: #fff;
	border: 1px solid var(--hitzy-line);
	border-radius: 8px;
	padding: 28px;
	box-shadow: var(--hitzy-shadow);
}
.woocommerce div.product div.images,
.woocommerce div.product div.summary { width: auto !important; float: none !important; }
.woocommerce div.product .product_title { font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.08; margin-bottom: 10px; }
.woocommerce div.product p.price, .woocommerce div.product span.price { color: var(--hitzy-accent); font-size: 1.55rem; font-weight: 800; }
.woocommerce div.product form.cart { display: grid; gap: 16px; margin-top: 24px; }
.woocommerce div.product form.cart .variations { width: 100%; }
.woocommerce div.product form.cart .variations th, .woocommerce div.product form.cart .variations td { display: block; text-align: left; padding: 0 0 8px; }
.woocommerce div.product form.cart .button { min-height: 52px; }
.woocommerce-tabs, .related.products, .upsells.products { margin-top: 48px; }
.woocommerce div.product .woocommerce-tabs ul.tabs { padding: 0; margin: 0 0 20px; display: flex; gap: 8px; border-bottom: 1px solid var(--hitzy-line); }
.woocommerce div.product .woocommerce-tabs ul.tabs li { border: 0; background: transparent; padding: 0; margin: 0; }
.woocommerce div.product .woocommerce-tabs ul.tabs li a { padding: 12px 16px; font-weight: 800; }

.site-footer { background: var(--hitzy-dark); color: rgba(255,255,255,.78); margin-top: 0; }
.footer-widgets { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 28px; padding: 58px 0; }
.site-footer h2, .site-footer .widget-title { color: #fff; font-size: 1.05rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 18px 0; }
.footer-bottom .hitzy-container { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.footer-menu { gap: 18px; flex-wrap: wrap; }

@media (max-width: 980px) {
	.header-inner, .hitzy-header-center .header-inner, .hitzy-header-stacked .header-inner { grid-template-columns: auto 1fr auto; }
	.hitzy-header-center .site-branding, .hitzy-header-stacked .site-branding { grid-column: auto; justify-self: start; }
	.hitzy-header-center .main-navigation, .hitzy-header-center .header-actions { grid-column: auto; grid-row: auto; }
	.menu-toggle { display: inline-block; order: 3; }
	.main-navigation, .hitzy-header-stacked .main-navigation {
		display: none;
		position: absolute;
		inset: 84px 0 auto;
		background: #fff;
		border-bottom: 1px solid var(--hitzy-line);
		padding: 18px 20px;
	}
	.main-navigation.is-open { display: block; }
	.main-navigation ul { display: grid; gap: 12px; }
	.header-actions { justify-self: end; }
	.header-menu-row { display: none; }
	.hitzy-ajax-search-results, .gallery-grid, .products-grid, .post-grid { grid-template-columns: repeat(2, 1fr); }
	.testimonial-grid, .category-grid { grid-template-columns: repeat(2, 1fr); }
	.split-layout, .shop-layout, .woocommerce div.product { grid-template-columns: 1fr; }
	.image-right .split-media { order: 0; }
	.shop-sidebar { position: static; }
	.woocommerce ul.products { grid-template-columns: repeat(2, 1fr); }
	.footer-widgets { grid-template-columns: repeat(2, 1fr); }
	.topbar-inner { justify-content: center; }
	.topbar-inner nav { display: none; }
	.sup-hero-inner { grid-template-columns: 1fr; min-height: 520px; }
	.sup-hero-copy { padding-left: 34px; padding-right: 34px; position: relative; z-index: 2; }
	.sup-model-card { position: absolute; inset: 20px 20px 0 auto; width: 330px; opacity: .42; }
	.sup-strip-grid, .sup-grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.sup-carousel-row { grid-template-columns: 1fr; }
	.sup-lite-arrow { display: none; }
	.sup-post-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
	.hitzy-container, .narrow { width: min(100% - 28px, 1180px); }
	.header-inner { min-height: 72px; gap: 12px; }
	.header-search-toggle .label, .cart-icon { display: none; }
	.hitzy-section { padding: 52px 0; }
	.hitzy-hero { min-height: 540px; }
	.hero-copy h1, .page-hero h1 { font-size: 2.6rem; }
	.hitzy-ajax-search-results, .gallery-grid, .testimonial-grid, .category-grid, .products-grid, .post-grid, .woocommerce ul.products { grid-template-columns: 1fr; }
	.cta-inner, .footer-bottom .hitzy-container { display: grid; }
	.footer-widgets { grid-template-columns: 1fr; }
	.shop-toolbar { display: grid; }
	.woocommerce div.product { padding: 16px; }
	.parallax-section { background-attachment: scroll; }
	.site-topbar { display: none; }
	.suprema-home .hitzy-container { width: min(100% - 28px, 1120px); }
	.sup-hero, .sup-hero-inner { min-height: 500px; }
	.sup-hero-copy { padding: 56px 0 34px; }
	.sup-hero h1 { font-size: 3rem; }
	.sup-hero p { font-size: .95rem; }
	.sup-hero-actions { display: grid; grid-template-columns: 1fr; max-width: 220px; }
	.sup-slider-arrow, .sup-dots { display: none; }
	.sup-model-card { width: 260px; inset: 55px -20px auto auto; }
	.sup-category-strip { padding: 14px 0; }
	.sup-strip-grid, .sup-grid-4 { grid-template-columns: 1fr; }
	.sup-strip-item { height: 120px; }
	.sup-section { padding: 54px 0; }
	.sup-section-heading { margin-bottom: 28px; }
	.sup-centered-action { margin-top: 42px; }
	.sup-shipping-band .hitzy-container { display: grid; }
	.sup-shipping-band h2 { font-size: 1.55rem; }
}

/* Production fashion theme refinement layer. */
:root {
	--hitzy-accent: #b76e79;
	--hitzy-dark: #171313;
	--hitzy-text: #302b2b;
	--hitzy-muted: #7f7471;
	--hitzy-line: #eadfdb;
	--hitzy-bg: #fffaf8;
	--hitzy-soft: var(--hitzy-blush, #f7efec);
	--hitzy-white: #ffffff;
	--hitzy-radius: 2px;
	--hitzy-shadow: 0 24px 70px rgba(48, 35, 30, 0.10);
	--hitzy-heading-font: "Playfair Display", Georgia, serif;
}

body {
	font-family: "Inter Tight", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	letter-spacing: 0;
	background: var(--hitzy-bg);
	color: var(--hitzy-text);
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6,
.hero-copy h1,
.page-hero h1,
.hitzy-section h2,
.sup-hero h1,
.sup-section-heading h2,
.woocommerce div.product .product_title {
	font-family: var(--hitzy-heading-font);
	font-weight: 700;
	letter-spacing: 0;
}

.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.sup-button {
	border-radius: var(--hitzy-radius);
	text-transform: uppercase;
	letter-spacing: .08em;
	font-size: .76rem;
	font-weight: 800;
}

.site-header {
	background: rgba(255,255,255,.96);
	box-shadow: 0 1px 0 rgba(48,35,30,.06);
}

.site-topbar {
	background: #171313;
	font-size: .74rem;
}

.topbar-inner {
	min-height: 34px;
}

.topbar-inner p {
	text-transform: uppercase;
	letter-spacing: .12em;
	font-weight: 700;
	color: rgba(255,255,255,.76);
}

.header-inner {
	min-height: 76px;
}

.site-title {
	font-family: var(--hitzy-heading-font);
	font-size: 1.82rem;
	font-weight: 700;
}

.main-navigation a,
.stacked-navigation a {
	font-size: .82rem;
	text-transform: uppercase;
	letter-spacing: .08em;
}

.header-search-toggle,
.header-cart,
.menu-toggle {
	border-radius: 999px;
	border-color: #eee2de;
	background: #fffaf8;
	min-height: 42px;
	padding-inline: 15px;
}

.cart-count {
	background: var(--hitzy-accent);
}

.suprema-home {
	--sup-cyan: var(--hitzy-accent);
	background: #fff;
}

.sup-hero {
	min-height: 650px;
	background:
		linear-gradient(90deg, rgba(247,239,236,.95) 0%, rgba(247,239,236,.78) 42%, rgba(247,239,236,.05) 68%),
		url('../images/women-hero.png'),
		linear-gradient(120deg, #fff7f4, #eadfdb);
	background-size: cover;
	background-position: center;
}

.sup-hero-inner {
	min-height: 650px;
}

.sup-hero-copy {
	padding-left: clamp(0px, 5vw, 72px);
	max-width: 650px;
}

.sup-eyebrow {
	display: inline-flex;
	margin-bottom: 18px;
	color: var(--hitzy-accent);
	font-size: .78rem;
	font-weight: 800;
	letter-spacing: .16em;
	text-transform: uppercase;
}

.sup-hero h1 {
	color: var(--hitzy-dark);
	font-size: clamp(3.25rem, 6.8vw, 6.75rem);
	line-height: .95;
	max-width: 640px;
	text-shadow: none;
}

.sup-hero p {
	color: #6f6461;
	font-size: clamp(1rem, 1.5vw, 1.2rem);
	max-width: 500px;
}

.sup-button {
	background: var(--hitzy-dark);
	border-color: var(--hitzy-dark);
	color: #fff;
	min-height: 48px;
}

.sup-button:hover,
.button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
	background: var(--hitzy-accent);
	border-color: var(--hitzy-accent);
	box-shadow: 0 16px 32px rgba(183, 110, 121, .24);
}

.sup-button-ghost {
	background: rgba(255,255,255,.18);
	border-color: rgba(23,19,19,.22);
	color: var(--hitzy-dark);
}

.sup-category-strip {
	padding: 34px 0;
	border-bottom: 1px solid #f0e7e3;
}

.sup-strip-grid {
	gap: 20px;
}

.sup-strip-item {
	height: 180px;
	border-radius: var(--hitzy-radius);
}

.sup-strip-item img {
	filter: none;
}

.sup-strip-item::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(23,19,19,.48), rgba(23,19,19,.03));
}

.sup-strip-item strong {
	z-index: 1;
	background: transparent;
	font-size: .9rem;
	text-transform: uppercase;
	letter-spacing: .08em;
}

.sup-section {
	padding: clamp(64px, 8vw, 112px) 0;
}

.sup-section-heading span {
	color: var(--hitzy-accent);
	text-transform: uppercase;
	letter-spacing: .14em;
}

.sup-section-heading h2 {
	font-size: clamp(2rem, 3vw, 3.1rem);
}

.sup-product-grid {
	gap: 30px;
}

.sup-grid-4 {
	grid-template-columns: repeat(var(--hitzy-product-columns, 4), minmax(0, 1fr));
}

.sup-product-image {
	background: #faf5f2;
}

.sup-product-image img {
	aspect-ratio: 4 / 5;
}

.sup-product-meta {
	padding-top: 17px;
	padding-bottom: 22px;
	border-color: #f0e7e3;
}

.sup-product-cats {
	font-size: .74rem;
	text-transform: uppercase;
	letter-spacing: .06em;
}

.sup-product h3 {
	font-size: 1rem;
}

.sup-price {
	font-size: .88rem;
}

.sup-ribbon {
	clip-path: none;
	width: auto;
	height: auto;
	padding: 7px 10px;
	top: 12px;
	right: 12px;
	writing-mode: horizontal-tb;
	background: var(--hitzy-dark);
	letter-spacing: .08em;
}

.sup-ribbon-sale {
	background: var(--hitzy-accent);
}

.sup-shipping-band {
	position: relative;
	padding: 72px 0;
	background:
		linear-gradient(90deg, rgba(23,19,19,.68), rgba(23,19,19,.25)),
		url('../images/editorial-women.png');
	background-size: cover;
	background-position: center;
}

.sup-shipping-band span {
	display: block;
	margin-bottom: 6px;
	font-size: .78rem;
	text-transform: uppercase;
	letter-spacing: .14em;
	font-weight: 800;
	color: rgba(255,255,255,.72);
}

.sup-shipping-band h2 {
	font-size: clamp(2rem, 4vw, 3.7rem);
	font-family: var(--hitzy-heading-font);
	max-width: 760px;
	line-height: 1;
}

.sup-post-card h3 {
	font-size: 1.12rem;
}

.sup-post-card time {
	color: var(--hitzy-accent);
}

.page-hero {
	background: linear-gradient(135deg, #fff7f4, #f3e6e2);
}

.hitzy-shop-main {
	padding: 54px 0 92px;
}

.shop-layout {
	grid-template-columns: 300px minmax(0, 1fr);
	gap: 42px;
}

.hitzy-shop-filters,
.widget {
	border-radius: var(--hitzy-radius);
	border-color: #efe3df;
	box-shadow: 0 18px 45px rgba(48,35,30,.05);
}

.hitzy-shop-filters h2,
.widget-title {
	font-family: var(--hitzy-heading-font);
	font-size: 1.35rem;
}

.hitzy-shop-filters label {
	color: var(--hitzy-dark);
	font-size: .82rem;
	text-transform: uppercase;
	letter-spacing: .08em;
}

.hitzy-shop-filters input,
.hitzy-shop-filters select,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce div.product form.cart .variations select,
.woocommerce-ordering select {
	border-radius: var(--hitzy-radius);
	border-color: #eadfdb;
	background: #fffaf8;
	min-height: 44px;
}

.shop-toolbar {
	padding-bottom: 18px;
	border-bottom: 1px solid #efe3df;
}

.shop-products-panel .woocommerce-result-count {
	font-size: .88rem;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: #9a8d89;
}

.products-grid,
.woocommerce ul.products {
	grid-template-columns: repeat(var(--hitzy-product-columns, 4), minmax(0, 1fr));
	gap: 30px;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
	content: none !important;
	display: none !important;
}

.woocommerce ul.products li.product,
.hitzy-product-card {
	border: 0;
	border-radius: 0;
	clear: none !important;
	float: none !important;
	box-shadow: none;
	background: transparent;
	margin: 0 !important;
	padding: 0 !important;
	width: auto !important;
}

.woocommerce ul.products li.product a img,
.product-card-image img {
	aspect-ratio: 4 / 5;
	background: #faf5f2;
}

.product-card-image {
	background: #faf5f2;
	overflow: hidden;
}

.product-card-body {
	padding: 17px 0 22px;
	border-bottom: 1px solid #f0e7e3;
}

.product-card-category,
.product-card-category a {
	color: #a89b96;
	font-size: .72rem;
	text-transform: uppercase;
	letter-spacing: .07em;
}

.product-card-body h3 {
	font-size: 1rem;
}

.product-card-price {
	color: var(--hitzy-dark);
	font-size: .92rem;
}

.product-card-button {
	width: auto;
	min-height: 38px;
	padding: 9px 13px;
	background: transparent !important;
	border: 1px solid #ded0cb !important;
	color: var(--hitzy-dark) !important;
	box-shadow: none !important;
}

.product-card-button:hover {
	background: var(--hitzy-dark) !important;
	color: #fff !important;
	border-color: var(--hitzy-dark) !important;
}

.woocommerce div.product {
	border: 0;
	border-radius: 0;
	box-shadow: none;
	background: #fff;
	padding: clamp(18px, 3vw, 42px);
	grid-template-columns: minmax(0, 1.04fr) minmax(360px, .96fr);
}

.woocommerce div.product div.images img {
	background: #faf5f2;
}

.woocommerce div.product .product_title {
	font-size: clamp(2.5rem, 5vw, 4.8rem);
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
	color: var(--hitzy-dark);
	font-size: 1.35rem;
}

.woocommerce-product-details__short-description,
.woocommerce div.product div.summary {
	color: #746965;
}

.woocommerce div.product form.cart {
	padding: 22px 0;
	border-top: 1px solid #efe3df;
	border-bottom: 1px solid #efe3df;
}

.woocommerce div.product form.cart .button {
	width: 100%;
	background: var(--hitzy-dark);
	border-color: var(--hitzy-dark);
}

.woocommerce-tabs,
.related.products,
.upsells.products {
	border-top: 1px solid #efe3df;
	padding-top: 34px;
}

.site-footer {
	background: #171313;
}

@media (max-width: 1100px) {
	.sup-grid-4,
	.products-grid,
	.woocommerce ul.products {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 980px) {
	.sup-hero {
		background-position: 62% center;
	}

	.sup-hero::before {
		content: "";
		position: absolute;
		inset: 0;
		background: linear-gradient(90deg, rgba(247,239,236,.96), rgba(247,239,236,.74));
	}

	.sup-hero-inner,
	.sup-hero-copy {
		position: relative;
	}

	.sup-grid-4,
	.products-grid,
	.woocommerce ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.shop-layout {
		grid-template-columns: minmax(0, 1fr);
		gap: 30px;
	}

	.shop-sidebar {
		order: 2;
	}

	.shop-products-panel {
		order: 1;
		min-width: 0;
	}
}

@media (max-width: 640px) {
	body {
		font-size: 15px;
	}

	.site-title {
		font-size: 1.38rem;
	}

	.header-inner {
		min-height: 70px;
	}

	.sup-hero,
	.sup-hero-inner {
		min-height: 620px;
	}

	.sup-hero {
		background-position: 65% center;
	}

	.sup-hero-copy {
		align-self: end;
		padding: 0 0 44px;
	}

	.sup-hero h1 {
		font-size: clamp(3rem, 13vw, 4.2rem);
		max-width: 340px;
	}

	.sup-hero-actions {
		max-width: 100%;
	}

	.sup-button {
		width: 100%;
	}

	.sup-strip-grid,
	.sup-grid-4,
	.products-grid,
	.woocommerce ul.products {
		grid-template-columns: 1fr;
	}

	.sup-strip-item {
		height: 190px;
	}

	.sup-section-heading h2 {
		font-size: 2.2rem;
	}

	.shop-layout {
		gap: 24px;
	}

	.woocommerce div.product {
		padding: 0;
		grid-template-columns: minmax(0, 1fr) !important;
		gap: 28px;
	}

	.woocommerce div.product div.images,
	.woocommerce div.product div.summary,
	.woocommerce div.product .woocommerce-tabs,
	.woocommerce div.product .related.products,
	.woocommerce div.product .upsells.products {
		width: 100% !important;
		max-width: 100% !important;
		min-width: 0 !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
	}

	.woocommerce div.product div.images {
		overflow: hidden;
	}

	.woocommerce div.product div.images .zoomImg {
		max-width: none !important;
	}

	.woocommerce div.product form.cart,
	.woocommerce div.product form.cart .variations,
	.woocommerce div.product form.cart .variations tbody,
	.woocommerce div.product form.cart .variations tr,
	.woocommerce div.product form.cart .variations th,
	.woocommerce div.product form.cart .variations td,
	.woocommerce div.product form.cart .variations select,
	.woocommerce div.product .single_variation_wrap,
	.woocommerce div.product .woocommerce-variation-add-to-cart,
	.woocommerce div.product .single_add_to_cart_button {
		width: 100% !important;
		max-width: 100% !important;
		min-width: 0 !important;
	}
}

.site-footer ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 9px;
}

.site-footer a {
	color: rgba(255,255,255,.76);
}

.site-footer a:hover {
	color: #fff;
}

.footer-column p {
	max-width: 310px;
	color: rgba(255,255,255,.62);
	font-size: .92rem;
}

.footer-newsletter {
	display: grid;
	grid-template-columns: 1fr 44px;
	border: 1px solid rgba(255,255,255,.22);
	max-width: 280px;
}

.footer-newsletter input,
.footer-newsletter button {
	min-height: 44px;
	border: 0;
	background: transparent;
	color: #fff;
}

.footer-newsletter input {
	padding: 0 12px;
}

.footer-newsletter button {
	border-left: 1px solid rgba(255,255,255,.22);
	cursor: pointer;
}

.shop-layout {
	grid-template-columns: 320px minmax(0, 1fr);
	gap: 58px;
}

.shop-sidebar {
	width: 100%;
	min-width: 0;
	z-index: 1;
}

.shop-products-panel {
	min-width: 0;
}

.shop-sidebar .widget,
.hitzy-shop-filters {
	width: 100%;
	max-width: 100%;
}

.shop-sidebar .search-form,
.shop-sidebar form[role="search"] {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 10px;
}

.shop-sidebar input,
.shop-sidebar select,
.shop-sidebar button {
	max-width: 100%;
}

.site-footer .footer-column h2:first-child {
	font-family: var(--hitzy-heading-font);
	font-size: clamp(1.55rem, 2vw, 2rem);
}

@media (max-width: 1180px) {
	.shop-layout {
		grid-template-columns: 280px minmax(0, 1fr);
		gap: 36px;
	}

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

@media (max-width: 980px) {
	.shop-layout {
		grid-template-columns: minmax(0, 1fr);
	}

	.shop-products-panel .products,
	.woocommerce ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.shop-sidebar {
		position: static;
		order: 1;
	}

	.shop-products-panel {
		order: 2;
	}
}

@media (max-width: 640px) {
	.shop-products-panel .products,
	.woocommerce ul.products {
		grid-template-columns: minmax(0, 1fr);
	}
}

.single-content article,
.post-card,
.page-content {
	color: #554c49;
}

/* Jespura skincare clinic theme layer */
:root {
	--hitzy-accent: #7c3aed;
	--hitzy-dark: #0f172a;
	--hitzy-text: #0f172a;
	--hitzy-muted: #64748b;
	--hitzy-line: #e2e8f0;
	--hitzy-bg: #ffffff;
	--hitzy-soft: #f8fafc;
	--hitzy-heading-font: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
	--hitzy-body-font: Inter, system-ui, sans-serif;
	--jespura-green: #15803d;
	--jespura-green-soft: #dcfce7;
	--jespura-purple-soft: #ede9fe;
	--jespura-purple-mid: #ddd6fe;
	--jespura-ink-2: #1a1a2e;
	--jespura-red: #dc2626;
	--jespura-amber: #f59e0b;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--hitzy-body-font);
	background: #fff;
	color: var(--hitzy-text);
	-webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
.logo-text,
.button,
.btn {
	font-family: var(--hitzy-heading-font);
	letter-spacing: 0;
}

.hitzy-container {
	width: min(1200px, calc(100% - 40px));
}

.announce {
	background: var(--jespura-ink-2);
	color: #fff;
	overflow: hidden;
	white-space: nowrap;
}

.announce-track {
	display: inline-flex;
	gap: 38px;
	padding: 9px 0 9px 100%;
	animation: jespura-marquee 30s linear infinite;
	font-size: .82rem;
	font-weight: 600;
}

.announce strong {
	color: #c4b5fd;
}

@keyframes jespura-marquee {
	to { transform: translateX(-100%); }
}

.site-header.jespura-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: #fff;
	border-bottom: 1px solid var(--hitzy-line);
	box-shadow: 0 1px 8px rgba(15,23,42,.06);
}

.header-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: 70px;
	padding: 0;
}

.logo {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
}

.logo-mark {
	width: 38px;
	height: 38px;
	border: 2px solid var(--hitzy-accent);
	border-radius: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--hitzy-accent);
}

.logo-mark svg {
	width: 22px;
	height: 22px;
}

.logo-text,
.jespura-logo-text {
	font-size: 1.42rem;
	font-weight: 800;
	color: var(--hitzy-dark);
}

.logo-text span,
.jespura-logo-text span {
	color: var(--hitzy-accent);
}

.header-search {
	flex: 1;
	max-width: 420px;
}

.header-search-toggle {
	width: 100%;
	min-height: 38px;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 9px 14px;
	border: 1.5px solid var(--hitzy-line);
	border-radius: 8px;
	background: var(--hitzy-soft);
	color: var(--hitzy-muted);
	font-weight: 500;
	text-align: left;
}

.header-search-toggle svg {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 10px;
}

.consult-btn {
	min-height: 40px;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 10px 18px;
	background: var(--hitzy-accent);
	color: #fff;
	border-radius: 8px;
	font-size: .82rem;
	font-weight: 800;
}

.consult-btn:hover {
	background: #6b21a8;
	color: #fff;
}

.consult-btn svg {
	width: 16px;
	height: 16px;
}

.header-cart {
	position: relative;
	width: 40px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	background: #fff;
	color: var(--hitzy-dark);
	font-weight: 800;
}

.cart-icon {
	font-size: 0;
}

.cart-icon::before {
	content: "▱";
	font-size: 1.7rem;
	line-height: 1;
}

.cart-count {
	position: absolute;
	top: 2px;
	right: 2px;
	min-width: 17px;
	height: 17px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: var(--jespura-red);
	color: #fff;
	font-size: .66rem;
	font-weight: 800;
}

.main-nav {
	border-top: 1px solid #f1f5f9;
	background: #fff;
}

.nav-inner {
	display: flex;
	align-items: center;
	gap: 2px;
	min-height: 46px;
	margin: 0;
	padding: 0;
	list-style: none;
	overflow-x: auto;
	scrollbar-width: none;
}

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

.nav-inner li {
	margin: 0;
	padding: 0;
	list-style: none;
	flex: 0 0 auto;
}

.nav-link,
.nav-inner a {
	display: inline-flex;
	align-items: center;
	padding: 8px 14px;
	border-radius: 6px;
	color: #334155;
	font-size: .9rem;
	font-weight: 600;
	white-space: nowrap;
}

.nav-link:hover,
.nav-link.active,
.nav-inner a:hover,
.nav-inner .current-menu-item > a,
.nav-inner .current_page_item > a {
	background: var(--jespura-purple-soft);
	color: var(--hitzy-accent);
}

.nav-link.highlight,
.nav-inner a.highlight {
	color: var(--jespura-green);
	font-weight: 800;
}

.menu-toggle {
	display: none;
}

.ajax-search-panel {
	position: absolute;
	inset-inline: 0;
	background: #fff;
	border-top: 1px solid var(--hitzy-line);
	box-shadow: 0 18px 40px rgba(15,23,42,.1);
	padding: 16px 0;
}

.ajax-search-box input {
	width: 100%;
	min-height: 44px;
	border: 1.5px solid var(--hitzy-line);
	border-radius: 10px;
	padding: 0 14px;
	background: var(--hitzy-soft);
}

.ajax-search-results {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	margin-top: 14px;
}

.ajax-search-item {
	display: grid;
	grid-template-columns: 54px 1fr;
	gap: 12px;
	align-items: center;
	border: 1px solid var(--hitzy-line);
	border-radius: 12px;
	padding: 10px;
}

.ajax-search-item img {
	aspect-ratio: 1;
	object-fit: cover;
	border-radius: 8px;
	background: var(--hitzy-soft);
}

.btn,
.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 42px;
	padding: 10px 20px;
	border-radius: 8px;
	border: 0;
	background: var(--hitzy-accent);
	color: #fff;
	font-weight: 800;
	font-size: .9rem;
	box-shadow: none;
}

.btn:hover,
.button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
	background: #6b21a8;
	color: #fff;
	transform: translateY(-1px);
	box-shadow: none;
}

.btn-outline {
	background: transparent;
	border: 2px solid var(--hitzy-accent);
	color: var(--hitzy-accent);
}

.btn-outline:hover {
	background: var(--hitzy-accent);
	color: #fff;
}

.btn-lg {
	min-height: 52px;
	padding-inline: 30px;
	font-size: 1rem;
}

.section {
	padding: 64px 0;
}

.section-alt {
	background: var(--hitzy-soft);
}

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

.section-head.centered {
	display: block;
	text-align: center;
}

.section-head h2 {
	margin: 0;
	font-size: clamp(1.45rem, 3vw, 1.9rem);
}

.section-head a {
	color: var(--hitzy-accent);
	font-weight: 800;
}

.hero {
	background: #fff;
	border-bottom: 1px solid var(--hitzy-line);
}

.hero-inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	min-height: 480px;
	align-items: center;
}

.hero-copy {
	padding: 60px 40px 60px 0;
}

.hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 14px;
	border-radius: 999px;
	background: var(--hitzy-soft);
	color: var(--hitzy-accent);
	font-size: .78rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .06em;
	margin-bottom: 22px;
}

.hero-eyebrow::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 999px;
	background: var(--hitzy-accent);
}

.hero h1 {
	margin: 0 0 18px;
	font-size: clamp(2.3rem, 4.5vw, 3.7rem);
	line-height: 1.08;
}

.hero h1 span {
	color: var(--hitzy-accent);
}

.hero-sub {
	max-width: 46ch;
	color: #334155;
	font-size: 1rem;
	line-height: 1.7;
	margin-bottom: 32px;
}

.hero-actions,
.hero-trust {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.hero-trust {
	gap: 24px;
	margin-top: 36px;
}

.hero-trust span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #334155;
	font-size: .85rem;
	font-weight: 800;
}

.hero-trust span::before {
	content: "✓";
	width: 18px;
	height: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	color: var(--jespura-green);
	border: 2px solid currentColor;
	font-size: .68rem;
}

.hero-img {
	position: relative;
	min-height: 480px;
	height: 100%;
	overflow: hidden;
	background: linear-gradient(135deg, #ddd6fe, #bbf7d0);
}

.hero-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-img-overlay {
	position: absolute;
	left: 24px;
	bottom: 24px;
	max-width: 280px;
	padding: 16px 20px;
	border-radius: 12px;
	background: rgba(255,255,255,.95);
	box-shadow: 0 8px 24px rgba(15,23,42,.12);
}

.hero-img-overlay strong {
	display: block;
	color: var(--hitzy-accent);
	font-size: 1.45rem;
	font-family: var(--hitzy-heading-font);
}

.hero-img-overlay span {
	color: var(--hitzy-muted);
	font-size: .78rem;
}

.trust-bar {
	background: #0f172a;
	padding: 16px 0;
}

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

.trust-item {
	display: grid;
	gap: 2px;
	padding: 4px 24px;
	border-right: 1px solid rgba(255,255,255,.12);
	color: #fff;
}

.trust-item:last-child {
	border-right: 0;
}

.trust-item strong {
	font-size: .9rem;
}

.trust-item span {
	color: #94a3b8;
	font-size: .76rem;
}

.cat-grid {
	display: grid;
	grid-template-columns: repeat(8, minmax(0, 1fr));
	gap: 16px;
}

.cat-card {
	display: grid;
	gap: 12px;
	text-align: center;
	font-weight: 800;
	font-size: .85rem;
	color: var(--hitzy-dark);
}

.cat-img-wrap {
	aspect-ratio: 1;
	border-radius: 16px;
	overflow: hidden;
	background: var(--hitzy-soft);
	display: grid;
	place-items: center;
}

.cat-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .3s ease;
}

.cat-card:hover img {
	transform: scale(1.06);
}

.cat-consult-icon {
	font-size: 2.4rem;
	color: var(--hitzy-accent);
}

.filter-row,
.concern-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 36px;
}

.filter-btn,
.concern-tab {
	padding: 9px 18px;
	border: 1.5px solid var(--hitzy-line);
	border-radius: 999px;
	background: #fff;
	color: #334155;
	font-weight: 800;
	font-size: .83rem;
}

.filter-btn:hover,
.concern-tab:hover,
.filter-btn.active,
.concern-tab.active {
	background: var(--hitzy-accent);
	border-color: var(--hitzy-accent);
	color: #fff;
}

.product-grid,
.products-grid,
.woocommerce ul.products {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
	margin: 0;
	padding: 0;
}

.product-card,
.woocommerce ul.products li.product,
.hitzy-product-card {
	position: relative;
	display: flex;
	flex-direction: column;
	border: 1px solid var(--hitzy-line);
	border-radius: 14px;
	background: #fff;
	overflow: hidden;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

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

.product-card:hover,
.woocommerce ul.products li.product:hover {
	transform: translateY(-4px);
	border-color: var(--jespura-purple-mid);
	box-shadow: 0 12px 32px rgba(15,23,42,.1);
}

.product-card-image {
	position: relative;
	display: block;
	aspect-ratio: 1;
	background: var(--hitzy-soft);
	overflow: hidden;
}

.product-card-image img,
.woocommerce ul.products li.product a img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	margin: 0;
	background: var(--hitzy-soft);
}

.save-badge,
.new-badge,
.product-badge {
	position: absolute;
	z-index: 2;
	top: 10px;
	left: 10px;
	border-radius: 4px;
	padding: 4px 8px;
	color: #fff;
	background: var(--jespura-red);
	font-size: .66rem;
	font-weight: 900;
	text-transform: uppercase;
}

.new-badge {
	background: var(--jespura-green);
}

.wishlist-btn {
	position: absolute;
	z-index: 2;
	top: 10px;
	right: 10px;
	width: 32px;
	height: 32px;
	border-radius: 999px;
	background: rgba(255,255,255,.92);
	color: #64748b;
	font-size: 1.1rem;
}

.wishlist-btn.liked {
	color: var(--jespura-red);
}

.product-card-body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 14px 14px 16px;
	border-bottom: 0;
}

.product-cat-tag,
.product-card-category,
.product-card-category a {
	color: var(--hitzy-accent);
	font-size: .72rem;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: .05em;
	margin-bottom: 6px;
}

.product-card-body h3 {
	margin: 0 0 8px;
	font-size: .95rem;
	line-height: 1.4;
}

.product-desc {
	color: #64748b;
	font-size: .8rem;
	line-height: 1.55;
	margin: 0 0 10px;
	flex: 1;
}

.product-rating {
	display: flex;
	align-items: center;
	gap: 5px;
	margin-bottom: 10px;
	font-size: .75rem;
}

.stars {
	color: var(--jespura-amber);
	letter-spacing: -1px;
}

.rating-val {
	font-weight: 900;
}

.rating-count {
	color: var(--hitzy-muted);
}

.product-pricing,
.product-card-price {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	color: var(--hitzy-dark);
	font-family: var(--hitzy-heading-font);
	font-weight: 900;
	font-size: 1.1rem;
	margin-bottom: 12px;
}

.product-pricing del,
.product-card-price del {
	color: var(--hitzy-muted);
	font-size: .8rem;
	font-weight: 600;
}

.product-pricing ins,
.product-card-price ins {
	text-decoration: none;
}

.product-card-button {
	width: 100%;
	min-height: 42px;
	padding: 10px 14px;
	background: var(--hitzy-accent) !important;
	border: 0 !important;
	color: #fff !important;
}

.product-card-button:hover {
	background: #6b21a8 !important;
}

.concern-layout {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 20px;
}

.concern-feature {
	border: 1px solid var(--hitzy-line);
	border-radius: 16px;
	padding: 40px;
	background: #fff;
}

.concern-feature span {
	display: block;
	color: var(--hitzy-accent);
	font-weight: 900;
	font-size: .78rem;
	text-transform: uppercase;
	letter-spacing: .08em;
	margin-bottom: 10px;
}

.concern-feature h3 {
	font-size: 1.5rem;
	margin: 0 0 12px;
}

.concern-feature p {
	color: #334155;
	line-height: 1.7;
}

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

.concern-list div {
	border: 1px solid var(--hitzy-line);
	border-radius: 12px;
	background: var(--hitzy-soft);
	padding: 20px;
}

.concern-list div::before {
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: var(--hitzy-accent);
	margin-bottom: 10px;
}

.concern-list p {
	margin: 4px 0 0;
	color: #64748b;
	font-size: .82rem;
}

.how-steps {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
	text-align: center;
}

.how-step span {
	width: 64px;
	height: 64px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 2px solid var(--hitzy-accent);
	border-radius: 999px;
	background: #fff;
	color: var(--hitzy-accent);
	font-family: var(--hitzy-heading-font);
	font-size: 1.35rem;
	font-weight: 900;
	margin-bottom: 18px;
}

.how-step p {
	color: #64748b;
	font-size: .86rem;
	line-height: 1.65;
}

.consult-banner {
	position: relative;
	overflow: hidden;
	padding: 60px 0;
	background: #1e1b2e;
	color: #fff;
}

.consult-banner::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: radial-gradient(circle, rgba(255,255,255,.06) 0 20px, transparent 21px);
	background-size: 60px 60px;
}

.consult-banner-inner {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}

.consult-copy h2 {
	color: #fff;
	font-size: clamp(1.8rem, 3vw, 2.45rem);
}

.consult-copy p {
	color: rgba(255,255,255,.85);
	line-height: 1.7;
}

.consult-stats {
	display: flex;
	flex-wrap: wrap;
	gap: 32px;
	margin-top: 28px;
}

.consult-stats span {
	display: grid;
	color: rgba(255,255,255,.75);
	font-size: .84rem;
}

.consult-stats strong {
	color: #fff;
	font-size: 1.8rem;
	font-family: var(--hitzy-heading-font);
}

.consult-form-card {
	border-radius: 20px;
	background: #fff;
	color: var(--hitzy-dark);
	padding: 32px;
	box-shadow: 0 20px 60px rgba(0,0,0,.2);
}

.consult-form-card form,
.consult-form-card label {
	display: grid;
	gap: 7px;
}

.consult-form-card form {
	gap: 16px;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.consult-form-card input,
.consult-form-card select,
.consult-form-card textarea,
.newsletter-form input,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce div.product form.cart .variations select,
.woocommerce-ordering select,
.hitzy-shop-filters input,
.hitzy-shop-filters select {
	width: 100%;
	min-height: 42px;
	border: 1.5px solid var(--hitzy-line);
	border-radius: 8px;
	background: #fff;
	padding: 10px 14px;
	color: var(--hitzy-dark);
}

.form-note {
	min-height: 18px;
	color: var(--jespura-green);
	font-size: .82rem;
	font-weight: 800;
}

.form-note.err {
	color: var(--jespura-red);
}

.testimonials {
	background: #0f172a;
	padding: 64px 0;
}

.testimonials .section-head h2 {
	color: #fff;
}

.testimonials .section-head a {
	color: #c4b5fd;
}

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

.review-card {
	border: 1px solid rgba(255,255,255,.1);
	border-radius: 16px;
	background: rgba(255,255,255,.06);
	color: rgba(255,255,255,.82);
	padding: 24px;
}

.review-stars {
	color: var(--jespura-amber);
	margin-bottom: 14px;
}

.review-card strong {
	display: block;
	color: #fff;
}

.review-card span {
	color: rgba(255,255,255,.55);
	font-size: .82rem;
}

.press-strip {
	padding: 40px 0;
	border-top: 1px solid var(--hitzy-line);
	border-bottom: 1px solid var(--hitzy-line);
	text-align: center;
}

.press-strip p {
	color: var(--hitzy-muted);
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: .1em;
	font-size: .78rem;
}

.press-strip div div {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 42px;
	flex-wrap: wrap;
	color: #cbd5e1;
	font-family: var(--hitzy-heading-font);
	font-weight: 900;
	font-size: 1.05rem;
}

.newsletter {
	background: var(--hitzy-soft);
	padding: 64px 0;
	text-align: center;
}

.newsletter-inner {
	max-width: 540px;
}

.newsletter-form {
	display: flex;
	gap: 10px;
	max-width: 420px;
	margin: 28px auto 0;
}

.newsletter-form input {
	flex: 1;
}

.newsletter-form button.is-success {
	background: var(--jespura-green);
}

.site-footer.jespura-footer {
	background: #0c1929;
	color: #94a3b8;
	padding-top: 64px;
}

.footer-top {
	display: grid;
	grid-template-columns: 1.8fr repeat(3, 1fr);
	gap: 40px;
	padding-bottom: 48px;
	border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand p {
	max-width: 32ch;
	color: #94a3b8;
}

.footer-social {
	display: flex;
	gap: 10px;
}

.social-btn {
	width: 36px;
	height: 36px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255,255,255,.14);
	border-radius: 8px;
	color: #94a3b8;
	font-weight: 900;
	font-size: .78rem;
}

.footer-col h4 {
	color: #fff;
	font-size: .82rem;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: .08em;
	margin-bottom: 18px;
}

.footer-col a {
	display: block;
	color: #94a3b8;
	margin-bottom: 11px;
}

.footer-col a:hover,
.social-btn:hover {
	color: #fff;
}

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 0;
	font-size: .78rem;
}

.footer-payments {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

.pay-icon {
	padding: 4px 10px;
	border-radius: 4px;
	background: rgba(255,255,255,.08);
	color: #94a3b8;
	font-weight: 900;
	font-size: .7rem;
}

.back-top {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 200;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: var(--hitzy-accent);
	color: #fff;
	box-shadow: 0 2px 12px rgba(15,23,42,.2);
	opacity: 0;
	visibility: hidden;
	transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.back-top.visible {
	opacity: 1;
	visibility: visible;
}

.hitzy-shop-main {
	padding: 48px 0 74px;
	background: var(--hitzy-soft);
}

.shop-products-panel-full {
	width: 100%;
	min-width: 0;
}

.shop-category-nav {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 22px;
	padding: 0 0 4px;
	overflow-x: auto;
	scrollbar-width: none;
}

.shop-category-nav::-webkit-scrollbar {
	display: none;
}

.shop-category-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 32px;
	padding: 0 14px;
	border: 1px solid #e2e8f0;
	border-radius: 999px;
	background: #fff;
	color: #334155;
	font-family: var(--hitzy-heading-font);
	font-size: .78rem;
	font-weight: 800;
	line-height: 1;
	white-space: nowrap;
	transition: background .18s ease, color .18s ease, border-color .18s ease;
}

.shop-category-pill:hover,
.shop-category-pill.is-active {
	background: var(--hitzy-accent);
	border-color: var(--hitzy-accent);
	color: #fff;
}

.shop-layout {
	grid-template-columns: 280px minmax(0, 1fr);
	gap: 32px;
}

.hitzy-shop-filters,
.shop-sidebar .widget {
	border: 1px solid var(--hitzy-line);
	border-radius: 14px;
	box-shadow: none;
}

.shop-toolbar {
	border-bottom: 1px solid var(--hitzy-line);
}

.woocommerce-products-header__title,
.page-title {
	font-family: var(--hitzy-heading-font);
	font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.woocommerce div.product {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
	gap: 52px;
	border: 0;
	box-shadow: none;
}

.woocommerce div.product div.images.hitzy-single-gallery {
	width: 100% !important;
	max-width: 100%;
	float: none !important;
	opacity: 1 !important;
	margin: 0;
}

.hitzy-single-gallery-main {
	width: 100%;
	aspect-ratio: 1 / 1;
	border: 1px solid #dfe7d8;
	border-radius: 24px;
	background:
		radial-gradient(circle at 72% 20%, rgba(255,255,255,.88), rgba(255,255,255,0) 20%),
		linear-gradient(135deg, #eaf4e8 0%, #f7f1e6 100%);
	display: grid;
	place-items: center;
	overflow: hidden;
}

.hitzy-single-gallery-main .woocommerce-product-gallery__image,
.hitzy-single-gallery-main .woocommerce-product-gallery__image a {
	width: 100%;
	height: 100%;
	display: grid;
	place-items: center;
}

.hitzy-single-gallery-main img,
.woocommerce div.product div.images .hitzy-single-gallery-main img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: clamp(28px, 7vw, 84px);
	background: transparent;
	margin: 0;
}

.hitzy-single-gallery-thumbs {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: calc((100% - 56px) / 5);
	grid-template-columns: none;
	gap: 14px;
	margin-top: 18px;
	overflow-x: auto;
	overflow-y: hidden;
	padding: 2px 2px 10px;
	scroll-snap-type: x mandatory;
	scrollbar-width: thin;
	scrollbar-color: #2f6b43 transparent;
	-webkit-overflow-scrolling: touch;
}

.hitzy-single-gallery-thumbs::-webkit-scrollbar {
	height: 6px;
}

.hitzy-single-gallery-thumbs::-webkit-scrollbar-track {
	background: transparent;
}

.hitzy-single-gallery-thumbs::-webkit-scrollbar-thumb {
	background: #2f6b43;
	border-radius: 999px;
}

.hitzy-gallery-thumb {
	aspect-ratio: 1;
	border: 1px solid #dfe7d8;
	border-radius: 18px;
	background:
		radial-gradient(circle at 72% 18%, rgba(255,255,255,.78), rgba(255,255,255,0) 24%),
		linear-gradient(135deg, #eaf4e8 0%, #f7f1e6 100%);
	display: grid;
	place-items: center;
	padding: 14px;
	cursor: pointer;
	scroll-snap-align: start;
	transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.hitzy-gallery-thumb:hover,
.hitzy-gallery-thumb.is-active {
	border-color: #2f6b43;
	box-shadow: inset 0 0 0 2px #2f6b43;
}

.hitzy-gallery-thumb img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	margin: 0;
}

.woocommerce div.product .product_title {
	font-size: clamp(2rem, 4vw, 3.6rem);
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
	color: var(--hitzy-accent);
	font-family: var(--hitzy-heading-font);
	font-weight: 900;
}

.woocommerce div.product form.cart .button {
	background: var(--hitzy-accent);
}

.woocommerce-tabs,
.related.products,
.upsells.products {
	grid-column: 1 / -1;
	width: 100%;
	min-width: 0;
	border-top: 1px solid var(--hitzy-line);
}

.related.products,
.upsells.products {
	margin-top: 56px;
	padding-top: 38px;
}

.related.products > h2,
.upsells.products > h2 {
	margin: 0 0 26px;
	font-size: clamp(1.65rem, 3vw, 2.25rem);
}

.related.products ul.products,
.upsells.products ul.products {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
}

.related.products .product-card,
.upsells.products .product-card {
	min-height: 100%;
}

.related.products .product-desc,
.upsells.products .product-desc {
	display: block;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.related.products .product-card-body h3,
.upsells.products .product-card-body h3 {
	font-size: 1rem;
}

.related.products .product-card-button,
.upsells.products .product-card-button {
	margin-top: auto;
}

@media (max-width: 1100px) {
	.cat-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

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

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

@media (max-width: 900px) {
	.header-search {
		display: none;
	}

	.menu-toggle {
		display: inline-flex;
		flex-direction: column;
		gap: 4px;
		width: 40px;
		height: 40px;
		align-items: center;
		justify-content: center;
	}

	.menu-toggle span {
		width: 22px;
		height: 2px;
		border-radius: 999px;
		background: var(--hitzy-dark);
	}

	.main-nav {
		display: none;
	}

	.main-nav.is-open,
	.nav-inner.is-open {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		padding: 12px 20px 20px;
	}

	.hero-inner,
	.consult-banner-inner,
	.concern-layout,
	.woocommerce div.product,
	.shop-layout {
		grid-template-columns: minmax(0, 1fr);
	}

	.hero-copy {
		padding: 42px 0 32px;
	}

	.hero-img {
		min-height: 320px;
	}

	.hitzy-single-gallery-thumbs {
		grid-auto-columns: calc((100% - 48px) / 5);
		gap: 12px;
	}

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

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

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

	.reviews-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.hitzy-container {
		width: min(100% - 28px, 1200px);
	}

	.shop-category-nav {
		gap: 7px;
		margin-bottom: 18px;
	}

	.shop-category-pill {
		min-height: 30px;
		padding: 0 12px;
		font-size: .74rem;
	}

	.consult-text {
		display: none;
	}

	.hero h1 {
		font-size: 2.55rem;
	}

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

	.cat-card {
		font-size: .72rem;
	}

	.product-grid,
	.products-grid,
	.woocommerce ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 14px;
	}

	.hitzy-single-gallery-thumbs {
		grid-auto-columns: calc((100% - 32px) / 5);
		gap: 8px;
		margin-top: 12px;
	}

	.hitzy-gallery-thumb {
		border-radius: 12px;
		padding: 8px;
	}

	.related.products ul.products,
	.upsells.products ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 14px;
	}

	.product-desc,
	.product-rating {
		display: none;
	}

	.form-row,
	.footer-top,
	.footer-bottom,
	.newsletter-form {
		grid-template-columns: 1fr;
		display: grid;
	}

	.trust-bar-inner {
		grid-template-columns: 1fr;
	}

	.trust-item {
		border-right: 0;
		border-bottom: 1px solid rgba(255,255,255,.12);
	}

	.how-steps {
		grid-template-columns: 1fr;
	}
}

.single-content h1,
.post-card h2,
.page-content h1,
.page-content h2 {
	font-family: var(--hitzy-heading-font);
	color: var(--hitzy-dark);
}

.post-grid {
	padding: 72px 0;
}

.post-card {
	border: 0;
	background: #fff;
	box-shadow: none;
}

.post-card img {
	width: 100%;
	aspect-ratio: 1.2;
	object-fit: cover;
	background: #faf5f2;
}

.post-card h2,
.post-card p {
	padding-inline: 0;
}

.woocommerce-cart .entry-content,
.woocommerce-checkout .entry-content,
.woocommerce-account .entry-content,
.woocommerce-cart .page-content,
.woocommerce-checkout .page-content,
.woocommerce-account .page-content {
	background: #fff;
	border: 1px solid #efe3df;
	padding: clamp(20px, 4vw, 42px);
}

.woocommerce table.shop_table {
	border-color: #efe3df;
	border-radius: 0;
}

.woocommerce table.shop_table th {
	text-transform: uppercase;
	letter-spacing: .08em;
	font-size: .78rem;
	color: #8f817d;
}

.woocommerce table.shop_table td {
	border-color: #efe3df;
}

.woocommerce-cart .cart-collaterals .cart_totals {
	background: #fffaf8;
	border: 1px solid #efe3df;
	padding: 24px;
}

.woocommerce-cart .cart-collaterals .cart_totals h2,
.woocommerce-checkout h3,
.woocommerce-account h2 {
	font-family: var(--hitzy-heading-font);
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
	border-top-color: var(--hitzy-accent);
	background: #fffaf8;
}
