:root {
	--hh-primary: #2f855a;
	--hh-secondary: #1f6f8b;
	--hh-accent: #d6a84f;
	--hh-bg: #f7faf8;
	--hh-text: #23302b;
	--hh-surface: #ffffff;
	--hh-muted: #eef5ee;
	--hh-border: #d9e6dd;
	--hh-body-font: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--hh-heading-font: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--hh-logo-width: 190px;
	--hh-hero-overlay: .42;
	--hh-radius: 8px;
	--hh-shadow: 0 20px 48px rgba(21, 39, 31, .1);
	--hh-shadow-soft: 0 12px 28px rgba(21, 39, 31, .07);
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(247, 250, 248, .98) 340px),
		var(--hh-bg);
	color: var(--hh-text);
	font-family: var(--hh-body-font);
	font-size: 16px;
	line-height: 1.62;
	text-rendering: optimizeLegibility;
}

body.hh-layout-boxed {
	background:
		linear-gradient(90deg, rgba(47, 133, 90, .06), transparent 35%, rgba(31, 111, 139, .06)),
		var(--hh-muted);
}

body.hh-layout-boxed .site {
	max-width: 1360px;
	margin: 0 auto;
	background: var(--hh-bg);
	box-shadow: 0 0 40px rgba(22, 35, 29, .08);
}

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

a {
	color: var(--hh-primary);
	text-decoration: none;
	transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease;
}

a:hover,
a:focus {
	color: var(--hh-secondary);
}

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

button {
	cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 16px;
	color: var(--hh-text);
	font-family: var(--hh-heading-font);
	font-weight: 760;
	line-height: 1.12;
	letter-spacing: 0;
}

h1 {
	font-size: 48px;
}

h2 {
	font-size: 34px;
}

h3 {
	font-size: 22px;
}

p {
	margin: 0 0 18px;
}

svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

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

.screen-reader-text:focus {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 9999;
	width: auto;
	height: auto;
	padding: 10px 14px;
	background: var(--hh-surface);
	color: var(--hh-text);
	border: 1px solid var(--hh-border);
	clip: auto;
	white-space: normal;
}

.hh-container {
	width: min(100% - 36px, 1180px);
	margin-inline: auto;
}

.hh-section {
	padding: 76px 0;
}

.hh-section--muted {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, .82), rgba(255, 255, 255, .58)),
		var(--hh-muted);
}

.section-kicker {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 10px;
	color: var(--hh-secondary);
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .08em;
}

.section-heading {
	max-width: 680px;
	margin-bottom: 30px;
}

.section-heading p {
	color: rgba(35, 48, 43, .76);
}

.section-heading--split {
	max-width: none;
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
}

.hh-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 46px;
	padding: 13px 22px;
	border: 1px solid var(--hh-primary);
	border-radius: var(--hh-radius);
	background: var(--hh-primary);
	color: #fff;
	font-weight: 750;
	line-height: 1;
	text-decoration: none;
	box-shadow: 0 10px 22px rgba(47, 133, 90, .16);
}

.hh-button:hover,
.hh-button:focus,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
	background: var(--hh-secondary);
	border-color: var(--hh-secondary);
	color: #fff;
	transform: translateY(-1px);
}

.hh-button--ghost {
	background: rgba(255, 255, 255, .92);
	color: var(--hh-text);
	border-color: rgba(255, 255, 255, .7);
	box-shadow: none;
}

.hh-button--ghost:hover,
.hh-button--ghost:focus {
	background: #fff;
	color: var(--hh-primary);
}

.hh-button--light {
	background: #fff;
	color: var(--hh-primary);
	border-color: #fff;
	box-shadow: none;
}

.text-link {
	display: inline-flex;
	align-items: center;
	font-weight: 700;
	border-bottom: 1px solid currentColor;
}

.site-header {
	position: relative;
	z-index: 100;
	background: rgba(255, 255, 255, .98);
	border-bottom: 1px solid var(--hh-border);
	box-shadow: 0 8px 24px rgba(22, 35, 29, .045);
}

.hh-sticky-header .site-header {
	position: sticky;
	top: 0;
}

.site-header.is-scrolled {
	box-shadow: 0 14px 32px rgba(22, 35, 29, .1);
}

.site-header__notice {
	background: var(--hh-muted);
	color: var(--hh-text);
	font-size: 14px;
	border-bottom: 1px solid var(--hh-border);
}

.site-header__notice-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: 40px;
}

.site-header__notice-item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--hh-text);
}

.site-header__notice-item:hover,
.site-header__notice-item:focus {
	color: var(--hh-primary);
}

.site-header__notice svg {
	width: 17px;
	height: 17px;
	color: var(--hh-primary);
}

.site-header__main-inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 26px;
	min-height: 82px;
}

.hh-header-centered .site-header__main-inner {
	grid-template-columns: 1fr auto 1fr;
}

.hh-header-centered .site-branding {
	grid-column: 2;
	text-align: center;
}

.hh-header-centered .main-navigation {
	grid-column: 1;
	grid-row: 1;
}

.hh-header-centered .header-actions {
	grid-column: 3;
}

.hh-header-compact .site-header__notice {
	display: none;
}

.hh-header-compact .site-header__main-inner {
	min-height: 70px;
}

.site-branding {
	min-width: 150px;
}

.custom-logo-link img {
	width: var(--hh-logo-width);
	max-height: 78px;
	object-fit: contain;
}

.site-title {
	display: block;
	color: var(--hh-text);
	font-family: var(--hh-heading-font);
	font-size: 28px;
	font-weight: 700;
	line-height: 1.1;
}

.site-description {
	margin: 3px 0 0;
	color: rgba(35, 48, 43, .72);
	font-size: 13px;
	line-height: 1.35;
}

.main-navigation {
	justify-self: center;
}

.primary-menu,
.primary-menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.primary-menu {
	display: flex;
	align-items: center;
	gap: 4px;
}

.primary-menu > li {
	position: relative;
}

.primary-menu a {
	display: flex;
	align-items: center;
	min-height: 42px;
	padding: 8px 13px;
	color: var(--hh-text);
	font-weight: 650;
	border-radius: 6px;
}

.primary-menu a:hover,
.primary-menu a:focus {
	background: var(--hh-muted);
	color: var(--hh-primary);
}

.primary-menu .sub-menu {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	z-index: 20;
	width: 230px;
	padding: 8px;
	background: var(--hh-surface);
	border: 1px solid var(--hh-border);
	border-radius: var(--hh-radius);
	box-shadow: var(--hh-shadow);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

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

.primary-menu .sub-menu a {
	min-height: 38px;
	font-size: 15px;
}

.dropdown-toggle {
	display: none;
}

.menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid var(--hh-border);
	border-radius: 6px;
	background: var(--hh-surface);
	color: var(--hh-text);
}

.mobile-menu-header {
	display: none;
}

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

.header-search {
	width: 290px;
}

.search-form {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
}

.search-form label {
	width: 100%;
}

.search-field {
	width: 100%;
	min-height: 44px;
	padding: 11px 44px 11px 14px;
	background: var(--hh-surface);
	border: 1px solid var(--hh-border);
	border-radius: 6px;
	color: var(--hh-text);
	outline: none;
	transition: border-color .2s ease, box-shadow .2s ease;
}

.search-field:focus {
	border-color: var(--hh-primary);
	box-shadow: 0 0 0 3px rgba(47, 133, 90, .14);
}

.search-submit {
	position: absolute;
	right: 4px;
	width: 36px;
	height: 36px;
	padding: 0;
	display: inline-grid;
	place-items: center;
	border: 0;
	border-radius: 6px;
	background: transparent;
	color: var(--hh-primary);
}

.header-icon {
	position: relative;
	width: 44px;
	height: 44px;
	display: inline-grid;
	place-items: center;
	color: var(--hh-text);
	background: var(--hh-surface);
	border: 1px solid var(--hh-border);
	border-radius: 6px;
}

.header-icon:hover,
.header-icon:focus {
	background: var(--hh-muted);
	color: var(--hh-primary);
}

.cart-count {
	position: absolute;
	top: -7px;
	right: -7px;
	min-width: 20px;
	height: 20px;
	padding: 0 5px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--hh-accent);
	color: #fff;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 800;
}

.home-hero {
	position: relative;
	min-height: clamp(480px, 68vh, 640px);
	display: grid;
	align-items: center;
	overflow: hidden;
	background: var(--hh-muted);
}

.home-hero__media {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(23, 40, 32, .62), rgba(23, 40, 32, .22)),
		linear-gradient(135deg, rgba(47, 133, 90, .35), rgba(31, 111, 139, .2) 50%, rgba(214, 168, 79, .18)),
		var(--hh-muted);
	background-size: cover;
	background-position: center;
}

.home-hero__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image: repeating-linear-gradient(135deg, rgba(255, 255, 255, .08) 0, rgba(255, 255, 255, .08) 1px, transparent 1px, transparent 24px);
	opacity: .45;
}

.home-hero__inner {
	position: relative;
	z-index: 1;
}

.home-hero__content {
	max-width: 660px;
	color: #fff;
	padding: 44px 0;
}

.home-hero--center .home-hero__content {
	margin-inline: auto;
	text-align: center;
}

.home-hero--right .home-hero__content {
	margin-left: auto;
	text-align: right;
}

.home-hero__content h1,
.home-hero__content p,
.home-hero__content .section-kicker {
	color: #fff;
}

.home-hero__content h1 {
	font-size: 54px;
	max-width: 720px;
	text-wrap: balance;
}

.home-hero__content p {
	max-width: 590px;
	font-size: 18px;
	line-height: 1.72;
	color: rgba(255, 255, 255, .9);
}

.home-hero--center .home-hero__content p,
.home-hero--right .home-hero__content p {
	margin-inline: auto;
}

.home-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.home-hero--center .home-hero__actions {
	justify-content: center;
}

.home-hero--right .home-hero__actions {
	justify-content: flex-end;
}

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

.category-card {
	display: grid;
	gap: 10px;
	min-height: 156px;
	padding: 22px;
	background: var(--hh-surface);
	color: var(--hh-text);
	border: 1px solid var(--hh-border);
	border-radius: var(--hh-radius);
	box-shadow: 0 8px 22px rgba(21, 39, 31, .055);
}

.category-card:hover,
.category-card:focus {
	transform: translateY(-3px);
	border-color: var(--hh-primary);
	color: var(--hh-text);
}

.category-card__icon {
	width: 46px;
	height: 46px;
	display: inline-grid;
	place-items: center;
	background: var(--hh-muted);
	color: var(--hh-primary);
	border-radius: var(--hh-radius);
}

.category-card__name {
	font-family: var(--hh-heading-font);
	font-size: 21px;
	font-weight: 700;
	line-height: 1.25;
}

.category-card__count {
	color: rgba(35, 48, 43, .68);
	font-size: 14px;
}

.promo-strip {
	padding: 26px 0;
	background: var(--hh-surface);
}

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

.promo-banner {
	position: relative;
	overflow: hidden;
	min-height: 210px;
	padding: 28px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	background:
		linear-gradient(135deg, rgba(47, 133, 90, .94), rgba(31, 111, 139, .86)),
		var(--hh-primary);
	background-position: center;
	background-size: cover;
	border-radius: var(--hh-radius);
	color: #fff;
}

.promo-banner::before {
	display: none;
}

.promo-banner--alt {
	background:
		linear-gradient(135deg, rgba(35, 48, 43, .92), rgba(184, 139, 74, .82)),
		var(--hh-secondary);
}

.promo-banner span,
.promo-banner h2,
.promo-banner a {
	position: relative;
	z-index: 1;
	color: #fff;
}

.promo-banner span {
	margin-bottom: 8px;
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .08em;
}

.promo-banner h2 {
	max-width: 420px;
	font-size: 26px;
}

.promo-banner a {
	width: fit-content;
	font-weight: 800;
	border-bottom: 1px solid rgba(255, 255, 255, .8);
}

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

.hh-product-card,
.woocommerce ul.products li.product {
	overflow: hidden;
	background: var(--hh-surface);
	border: 1px solid var(--hh-border);
	border-radius: var(--hh-radius);
	box-shadow: 0 8px 22px rgba(21, 39, 31, .055);
	transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.hh-product-card:hover,
.woocommerce ul.products li.product:hover {
	transform: translateY(-3px);
	border-color: var(--hh-primary);
	box-shadow: var(--hh-shadow);
}

.hh-product-card__image {
	aspect-ratio: 1 / .82;
	display: grid;
	place-items: center;
	background:
		linear-gradient(135deg, rgba(47, 133, 90, .12), rgba(31, 111, 139, .1)),
		var(--hh-muted);
	color: rgba(35, 48, 43, .55);
	font-weight: 700;
}

.hh-product-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hh-product-card__body {
	padding: 17px;
}

.hh-product-card__meta {
	display: block;
	margin-bottom: 6px;
	color: var(--hh-secondary);
	font-size: 13px;
	font-weight: 750;
	text-transform: uppercase;
	letter-spacing: .06em;
}

.hh-product-card h3 {
	margin-bottom: 8px;
	font-size: 20px;
}

.hh-product-card__rating {
	display: flex;
	gap: 2px;
	margin-bottom: 16px;
	color: var(--hh-accent);
}

.hh-product-card__rating svg {
	width: 16px;
	height: 16px;
	fill: currentColor;
}

.hh-product-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.hh-product-card__footer strong {
	font-size: 19px;
}

.add-to-cart-preview {
	min-width: 64px;
	min-height: 36px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 7px 12px;
	background: var(--hh-muted);
	border-radius: 6px;
	color: var(--hh-primary);
	font-weight: 800;
}

.add-to-cart-preview:hover,
.add-to-cart-preview:focus {
	background: var(--hh-primary);
	color: #fff;
}

.trust-section {
	padding: 50px 0;
	background: var(--hh-surface);
	border-top: 1px solid var(--hh-border);
	border-bottom: 1px solid var(--hh-border);
}

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

.trust-badge {
	display: grid;
	grid-template-columns: 46px 1fr;
	column-gap: 16px;
	padding: 22px;
	border: 1px solid var(--hh-border);
	border-radius: var(--hh-radius);
	background: var(--hh-bg);
}

.trust-badge svg {
	grid-row: span 2;
	width: 46px;
	height: 46px;
	padding: 11px;
	background: var(--hh-muted);
	color: var(--hh-primary);
	border-radius: 6px;
}

.trust-badge h3 {
	margin-bottom: 6px;
	font-size: 20px;
}

.trust-badge p {
	margin: 0;
	color: rgba(35, 48, 43, .72);
	font-size: 15px;
	line-height: 1.6;
}

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

.testimonial-grid blockquote {
	margin: 0;
	padding: 24px;
	background: var(--hh-surface);
	border: 1px solid var(--hh-border);
	border-radius: var(--hh-radius);
	box-shadow: 0 8px 22px rgba(21, 39, 31, .055);
}

.testimonial-grid blockquote p {
	color: rgba(35, 48, 43, .8);
}

.testimonial-grid cite {
	color: var(--hh-primary);
	font-style: normal;
	font-weight: 800;
}

.newsletter-section {
	padding: 62px 0;
	background:
		linear-gradient(135deg, rgba(47, 133, 90, .08), rgba(214, 168, 79, .08)),
		var(--hh-bg);
}

.newsletter-box {
	display: grid;
	grid-template-columns: 1fr minmax(300px, 470px);
	align-items: center;
	gap: 28px;
	padding: 30px;
	background: var(--hh-surface);
	border: 1px solid var(--hh-border);
	border-radius: var(--hh-radius);
	box-shadow: 0 10px 26px rgba(21, 39, 31, .06);
}

.newsletter-box h2 {
	margin-bottom: 0;
}

.newsletter-form,
.footer-newsletter {
	display: flex;
	gap: 8px;
}

.newsletter-form input,
.footer-newsletter input,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce-cart table.cart td.actions .coupon .input-text {
	width: 100%;
	min-height: 46px;
	padding: 11px 13px;
	background: #fff;
	border: 1px solid var(--hh-border);
	border-radius: 6px;
	color: var(--hh-text);
	outline: none;
}

.newsletter-form input:focus,
.footer-newsletter input:focus,
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
	border-color: var(--hh-primary);
	box-shadow: 0 0 0 3px rgba(47, 133, 90, .14);
}

.newsletter-form button,
.footer-newsletter button {
	min-height: 46px;
	padding: 10px 18px;
	border: 1px solid var(--hh-primary);
	border-radius: 6px;
	background: var(--hh-primary);
	color: #fff;
	font-weight: 800;
}

.site-footer {
	background: #17251f;
	color: rgba(255, 255, 255, .78);
}

.site-footer h2,
.site-footer h3,
.site-footer a,
.site-footer .section-kicker {
	color: #fff;
}

.footer-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 42px 0;
	border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.footer-cta h2 {
	max-width: 700px;
	margin-bottom: 0;
	font-size: 30px;
}

.footer-widgets {
	display: grid;
	gap: 26px;
	padding: 54px 0;
}

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

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

.footer-widgets--4 {
	grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
}

.footer-widget-area .widget-title {
	margin-bottom: 14px;
	font-size: 20px;
}

.footer-widget-area ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-widget-area li + li {
	margin-top: 9px;
}

.footer-contact li {
	display: flex;
	align-items: flex-start;
	gap: 9px;
}

.footer-contact svg {
	width: 18px;
	height: 18px;
	margin-top: 4px;
	color: var(--hh-accent);
}

.footer-socials {
	display: flex;
	gap: 9px;
	margin-top: 18px;
}

.footer-socials a {
	width: 36px;
	height: 36px;
	display: inline-grid;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, .18);
	border-radius: 6px;
	font-size: 13px;
	font-weight: 800;
}

.footer-socials a:hover,
.footer-socials a:focus {
	background: rgba(255, 255, 255, .1);
}

.footer-newsletter {
	flex-direction: column;
}

.site-info {
	border-top: 1px solid rgba(255, 255, 255, .12);
}

.site-info__inner {
	min-height: 58px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	font-size: 14px;
}

.hh-page-header {
	padding: 66px 0;
	background:
		linear-gradient(135deg, rgba(47, 133, 90, .1), rgba(31, 111, 139, .08)),
		var(--hh-muted);
	border-bottom: 1px solid var(--hh-border);
}

.hh-page-header h1 {
	max-width: 850px;
	margin-bottom: 0;
}

.content-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 32px;
	padding: 58px 0;
}

.single-content-grid {
	max-width: 860px;
}

.entry-card,
.entry-page,
.entry-single,
.empty-state {
	background: var(--hh-surface);
	border: 1px solid var(--hh-border);
	border-radius: var(--hh-radius);
	box-shadow: var(--hh-shadow-soft);
}

.entry-card {
	overflow: hidden;
	display: grid;
	grid-template-columns: 280px 1fr;
	margin-bottom: 22px;
}

.entry-card__image {
	background: var(--hh-muted);
}

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

.entry-card__body,
.entry-page,
.entry-single,
.empty-state {
	padding: 32px;
}

.entry-title a {
	color: var(--hh-text);
}

.entry-meta {
	margin-bottom: 15px;
	color: rgba(35, 48, 43, .62);
	font-size: 14px;
}

.entry-content {
	color: rgba(35, 48, 43, .84);
}

.entry-content a {
	font-weight: 700;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.entry-single__header {
	margin-bottom: 28px;
}

.entry-single__image {
	overflow: hidden;
	margin-bottom: 30px;
	border-radius: var(--hh-radius);
}

.post-navigation,
.pagination,
.woocommerce-pagination {
	margin-top: 28px;
}

.nav-links,
.page-numbers {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.page-numbers,
.post-page-numbers {
	min-width: 38px;
	min-height: 38px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 7px 12px;
	border: 1px solid var(--hh-border);
	border-radius: 6px;
	background: var(--hh-surface);
	font-weight: 700;
}

.page-numbers.current,
.post-page-numbers.current {
	background: var(--hh-primary);
	border-color: var(--hh-primary);
	color: #fff;
}

.widget-area .widget,
.woocommerce .widget {
	padding: 22px;
	margin-bottom: 18px;
	background: var(--hh-surface);
	border: 1px solid var(--hh-border);
	border-radius: var(--hh-radius);
}

.widget-title {
	font-size: 20px;
}

.hh-shop-shell {
	padding: 58px 0;
}

.woocommerce .woocommerce-breadcrumb {
	margin: 0 0 24px;
	color: rgba(35, 48, 43, .62);
	font-size: 14px;
}

.woocommerce .woocommerce-breadcrumb a {
	color: var(--hh-primary);
	font-weight: 700;
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
	margin-bottom: 22px;
}

.hh-shop-view-toggle {
	display: inline-flex;
	gap: 6px;
	margin: 0 0 22px 12px;
	vertical-align: top;
}

.hh-shop-view-toggle button {
	width: 42px;
	height: 42px;
	display: inline-grid;
	place-items: center;
	padding: 0;
	border: 1px solid var(--hh-border);
	border-radius: 6px;
	background: var(--hh-surface);
	color: var(--hh-text);
}

.hh-shop-view-toggle button:hover,
.hh-shop-view-toggle button:focus,
.hh-shop-view-toggle button.is-active {
	background: var(--hh-primary);
	border-color: var(--hh-primary);
	color: #fff;
}

.woocommerce .woocommerce-ordering select {
	min-height: 42px;
	padding: 8px 12px;
	border: 1px solid var(--hh-border);
	border-radius: 6px;
	background: #fff;
	color: var(--hh-text);
}

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

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

.woocommerce ul.products li.product {
	width: auto !important;
	margin: 0 !important;
	float: none !important;
	padding: 0 0 18px;
}

.woocommerce ul.products li.product a img {
	width: 100%;
	aspect-ratio: 1 / .84;
	object-fit: cover;
	margin: 0;
	background: var(--hh-muted);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
	padding: 16px 18px 4px;
	color: var(--hh-text);
	font-family: var(--hh-heading-font);
	font-size: 19px;
	line-height: 1.25;
}

.woocommerce ul.products li.product .price {
	display: block;
	padding: 0 18px;
	color: var(--hh-primary);
	font-size: 17px;
	font-weight: 800;
}

.woocommerce ul.products li.product .star-rating {
	margin: 7px 18px 10px;
	color: var(--hh-accent);
}

.woocommerce ul.products li.product .button {
	margin: 10px 18px 0;
}

.woocommerce ul.products.hh-products-list {
	grid-template-columns: 1fr;
}

.woocommerce ul.products.hh-products-list li.product {
	display: grid;
	grid-template-columns: 230px minmax(0, 1fr) auto;
	align-items: center;
	gap: 0;
	padding: 0;
}

.woocommerce ul.products.hh-products-list li.product a.woocommerce-LoopProduct-link {
	display: grid;
	grid-template-columns: 230px minmax(0, 1fr);
	grid-column: 1 / 3;
	align-items: center;
	color: var(--hh-text);
}

.woocommerce ul.products.hh-products-list li.product a img {
	grid-row: 1 / span 4;
	height: 100%;
	min-height: 190px;
	aspect-ratio: auto;
}

.woocommerce ul.products.hh-products-list li.product .woocommerce-loop-product__title,
.woocommerce ul.products.hh-products-list li.product .price,
.woocommerce ul.products.hh-products-list li.product .star-rating {
	grid-column: 2;
}

.woocommerce ul.products.hh-products-list li.product .button {
	grid-column: 3;
	margin: 0 18px;
	white-space: nowrap;
}

.woocommerce span.onsale {
	min-width: auto;
	min-height: auto;
	padding: 6px 10px;
	top: 12px;
	left: 12px;
	right: auto;
	background: var(--hh-accent);
	border-radius: 6px;
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	line-height: 1;
}

.woocommerce div.product {
	display: grid;
	grid-template-columns: minmax(0, .92fr) minmax(0, 1fr);
	gap: 42px;
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
	width: auto;
	float: none;
}

.woocommerce div.product div.images img {
	border: 1px solid var(--hh-border);
	border-radius: var(--hh-radius);
	background: var(--hh-surface);
}

.woocommerce div.product .product_title {
	font-size: 42px;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
	color: var(--hh-primary);
	font-size: 26px;
	font-weight: 800;
}

.woocommerce div.product form.cart {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 24px;
}

.woocommerce .quantity .qty {
	width: 82px;
	min-height: 46px;
	border: 1px solid var(--hh-border);
	border-radius: 6px;
}

.woocommerce div.product .woocommerce-tabs {
	grid-column: 1 / -1;
	margin-top: 34px;
	padding: 28px;
	background: var(--hh-surface);
	border: 1px solid var(--hh-border);
	border-radius: var(--hh-radius);
	box-shadow: var(--hh-shadow-soft);
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
	margin: 0 0 24px;
	padding: 0;
	border-bottom: 1px solid var(--hh-border);
}

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

.woocommerce div.product .woocommerce-tabs ul.tabs li {
	margin: 0 8px -1px 0;
	padding: 0;
	border: 0;
	background: transparent;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
	padding: 11px 0;
	color: rgba(35, 48, 43, .7);
	font-weight: 800;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
	color: var(--hh-primary);
	border-bottom: 2px solid var(--hh-primary);
}

.woocommerce table.shop_table {
	overflow: hidden;
	border: 1px solid var(--hh-border);
	border-radius: var(--hh-radius);
	background: var(--hh-surface);
	box-shadow: var(--hh-shadow-soft);
}

.woocommerce table.shop_table th {
	background: var(--hh-muted);
	color: var(--hh-text);
	font-weight: 800;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
	padding: 16px;
	border-color: var(--hh-border);
}

.woocommerce-cart table.cart img {
	width: 72px;
	border-radius: 6px;
}

.woocommerce-cart table.cart td.actions .coupon {
	display: flex;
	gap: 8px;
}

.woocommerce-cart .cart-collaterals .cart_totals,
.woocommerce-checkout #customer_details,
.woocommerce-checkout #order_review,
.woocommerce-checkout #order_review_heading {
	padding: 24px;
	background: var(--hh-surface);
	border: 1px solid var(--hh-border);
	border-radius: var(--hh-radius);
	box-shadow: var(--hh-shadow-soft);
}

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

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

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

.woocommerce form .form-row label {
	font-weight: 750;
}

.woocommerce .woocommerce-error,
.woocommerce .woocommerce-info,
.woocommerce .woocommerce-message {
	background: var(--hh-surface);
	border-top-color: var(--hh-primary);
	border-radius: var(--hh-radius);
	box-shadow: var(--hh-shadow-soft);
}

.woocommerce .woocommerce-message::before,
.woocommerce .woocommerce-info::before {
	color: var(--hh-primary);
}

@media (max-width: 1120px) {
	.site-header__main-inner {
		grid-template-columns: auto auto 1fr;
	}

	.main-navigation {
		justify-self: start;
	}

	.header-search {
		width: 230px;
	}

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

@media (max-width: 920px) {
	body.hh-mobile-menu-open {
		overflow: hidden;
	}

	h1 {
		font-size: 38px;
	}

	h2 {
		font-size: 30px;
	}

	.site-header__main-inner,
	.hh-header-centered .site-header__main-inner {
		grid-template-columns: auto 1fr auto;
		gap: 14px;
	}

	.hh-header-centered .site-branding,
	.hh-header-centered .main-navigation,
	.hh-header-centered .header-actions {
		grid-column: auto;
		grid-row: auto;
	}

	.menu-toggle {
		display: inline-grid;
		place-items: center;
		grid-column: 3;
		grid-row: 1;
		justify-self: end;
	}

	.site-branding {
		grid-column: 1 / 3;
	}

	.main-navigation {
		position: fixed;
		inset: 0;
		z-index: 1000;
		display: flex;
		flex-direction: column;
		width: 100%;
		height: 100vh;
		height: 100dvh;
		max-height: none;
		overflow-y: auto;
		visibility: hidden;
		opacity: 0;
		transform: translateX(-100%);
		background: var(--hh-surface);
		border: 0;
		border-radius: 0;
		box-shadow: none;
		transition: opacity .22s ease, transform .28s ease, visibility .22s ease;
	}

	.main-navigation.is-open {
		visibility: visible;
		opacity: 1;
		transform: translateX(0);
	}

	.mobile-menu-header {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 16px;
		min-height: 74px;
		padding: 18px;
		background: var(--hh-surface);
		border-bottom: 1px solid var(--hh-border);
	}

	.mobile-menu-title {
		color: var(--hh-text);
		font-family: var(--hh-heading-font);
		font-size: 24px;
		font-weight: 800;
		line-height: 1;
	}

	.menu-close {
		width: 44px;
		height: 44px;
		display: inline-grid;
		place-items: center;
		padding: 0;
		border: 1px solid var(--hh-border);
		border-radius: var(--hh-radius);
		background: var(--hh-bg);
		color: var(--hh-text);
	}

	.menu-close:hover,
	.menu-close:focus {
		background: var(--hh-primary);
		border-color: var(--hh-primary);
		color: #fff;
	}

	.primary-menu {
		width: 100%;
		margin: 0 auto;
		padding: 18px;
		display: grid;
		gap: 8px;
	}

	.primary-menu a {
		min-height: 54px;
		justify-content: flex-start;
		padding: 13px 14px;
		background: var(--hh-bg);
		border: 1px solid var(--hh-border);
		border-radius: 8px;
		font-size: 17px;
		font-weight: 760;
	}

	.primary-menu .menu-item-has-children {
		position: relative;
	}

	.primary-menu .menu-item-has-children > a {
		padding-right: 48px;
	}

	.primary-menu .sub-menu {
		position: static;
		width: auto;
		display: none;
		margin: 8px 0 0;
		padding: 8px;
		border: 0;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
		background: var(--hh-muted);
		border-radius: 8px;
	}

	.primary-menu .sub-menu a {
		background: var(--hh-surface);
	}

	.primary-menu li.is-submenu-open > .sub-menu {
		display: block;
	}

	.dropdown-toggle {
		position: absolute;
		top: 7px;
		right: 8px;
		display: inline-grid;
		place-items: center;
		width: 40px;
		height: 40px;
		margin-left: 8px;
		border: 1px solid var(--hh-border);
		border-radius: 6px;
		background: var(--hh-surface);
		color: var(--hh-text);
	}

	.dropdown-toggle::before {
		content: "+";
		font-weight: 800;
	}

	.is-submenu-open > .dropdown-toggle::before {
		content: "-";
	}

	.header-actions {
		grid-column: 1 / -1;
		grid-row: 2;
		width: 100%;
		justify-content: stretch;
	}

	.header-search {
		flex: 1;
		width: auto;
	}

	.category-grid,
	.product-preview-grid,
	.testimonial-grid,
	.trust-grid,
	.woocommerce ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.promo-strip__grid,
	.newsletter-box,
	.woocommerce div.product,
	.woocommerce-checkout .col2-set {
		grid-template-columns: 1fr;
	}

	.footer-cta,
	.section-heading--split {
		align-items: flex-start;
		flex-direction: column;
	}

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

	.entry-card {
		grid-template-columns: 1fr;
	}
}

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

	h1,
	.home-hero__content h1,
	.woocommerce div.product .product_title {
		font-size: 34px;
	}

	h2 {
		font-size: 27px;
	}

	.hh-container {
		width: min(100% - 24px, 1180px);
	}

	.hh-section {
		padding: 58px 0;
	}

	.site-header__notice-inner {
		align-items: flex-start;
		flex-direction: column;
		justify-content: center;
		gap: 4px;
		padding: 8px 0;
	}

	.site-header__main-inner {
		min-height: 76px;
	}

	.site-branding {
		min-width: 0;
	}

	.site-title {
		font-size: 23px;
	}

	.custom-logo-link img {
		max-width: 170px;
	}

	.header-actions {
		display: grid;
		grid-template-columns: 1fr 44px 44px;
	}

	.search-field::placeholder {
		font-size: 14px;
	}

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

	.home-hero__content,
	.home-hero--right .home-hero__content {
		text-align: left;
	}

	.home-hero__content p {
		font-size: 16px;
	}

	.home-hero__actions,
	.home-hero--right .home-hero__actions {
		justify-content: flex-start;
	}

	.hh-button {
		width: 100%;
	}

	.category-grid,
	.product-preview-grid,
	.testimonial-grid,
	.trust-grid,
	.woocommerce ul.products {
		grid-template-columns: 1fr;
	}

	.promo-banner {
		min-height: 190px;
		padding: 24px;
	}

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

	.trust-badge svg {
		grid-row: auto;
		margin-bottom: 14px;
	}

	.newsletter-box,
	.entry-card__body,
	.entry-page,
	.entry-single,
	.empty-state,
	.woocommerce div.product .woocommerce-tabs,
	.woocommerce-cart .cart-collaterals .cart_totals,
	.woocommerce-checkout #customer_details,
	.woocommerce-checkout #order_review,
	.woocommerce-checkout #order_review_heading {
		padding: 22px;
	}

	.newsletter-form,
	.footer-newsletter,
	.woocommerce-cart table.cart td.actions .coupon,
	.woocommerce div.product form.cart {
		flex-direction: column;
		align-items: stretch;
	}

	.footer-widgets--2,
	.footer-widgets--3,
	.footer-widgets--4 {
		grid-template-columns: 1fr;
	}

	.site-info__inner {
		align-items: flex-start;
		flex-direction: column;
		justify-content: center;
		padding: 16px 0;
	}

	.woocommerce table.shop_table {
		border-radius: 0;
		box-shadow: none;
	}

	.woocommerce ul.products.hh-products-list li.product,
	.woocommerce ul.products.hh-products-list li.product a.woocommerce-LoopProduct-link {
		display: block;
	}

	.woocommerce ul.products.hh-products-list li.product a img {
		min-height: 0;
		aspect-ratio: 1 / .84;
	}

	.woocommerce ul.products.hh-products-list li.product .button {
		margin: 10px 18px 18px;
	}
}
