:root {
	--du-bg: #fff;
	--du-surface: #f7f7f7;
	--du-surface-alt: #f1f1f1;
	--du-text: #333;
	--du-muted: #767676;
	--du-heading: #242424;
	--du-primary: #83b735;
	--du-primary-hover: #74a32f;
	--du-accent: #fbbc34;
	--du-border: rgba(0, 0, 0, .105);
	--du-border-soft: rgba(0, 0, 0, .075);
	--du-sale: #e83e36;
	--du-success: #3c763d;
	--du-error: #b81c23;
	--du-warning: #fbbc34;
	--du-disabled: #bbb;
	--du-font-body: Lato, Arial, Helvetica, sans-serif;
	--du-font-heading: Poppins, Arial, Helvetica, sans-serif;
	--du-container: 1222px;
	--du-gutter: 24px;
	--du-section: 56px;
	--du-gap: 24px;
	--du-radius: 0;
	--du-form-height: 42px;
	--du-form-border: rgba(0, 0, 0, .1);
	--du-form-border-focus: rgba(0, 0, 0, .15);
	--du-ease: cubic-bezier(.19, 1, .22, 1);
	--du-shadow: 0 8px 24px rgba(0, 0, 0, .12);
	--du-shadow-soft: 0 0 3px rgba(0, 0, 0, .15);
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--du-bg);
	color: var(--du-text);
	font: 400 14px/1.6 var(--du-font-body);
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

html.drawer-open,
body.drawer-open {
	overflow: hidden;
}

a {
	color: var(--du-heading);
	text-decoration: none;
	transition: color .25s ease, background-color .25s ease, border-color .25s ease, opacity .25s ease;
}

a:hover {
	color: var(--du-primary-hover);
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

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

button,
.button,
input[type="submit"] {
	min-height: var(--du-form-height);
	border: 0;
	border-radius: var(--du-radius);
	background: var(--du-primary);
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 0 18px;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 1.2;
	transition: color .25s ease, background-color .25s ease, border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

button:hover,
.button:hover,
input[type="submit"]:hover {
	background: var(--du-primary-hover);
	color: #fff;
}

.button-secondary {
	background: var(--du-surface);
	color: var(--du-heading);
}

.button-secondary:hover {
	background: var(--du-surface-alt);
	color: var(--du-heading);
}

input[type="email"],
input[type="search"],
input[type="number"],
input[type="url"],
input[type="tel"],
input[type="text"],
input[type="password"],
select,
textarea {
	width: 100%;
	max-width: 100%;
	min-height: var(--du-form-height);
	border: 1px solid var(--du-form-border);
	border-radius: var(--du-radius);
	background-color: #fff;
	color: var(--du-heading);
	box-shadow: none;
	padding-inline: 15px;
	font-size: 14px;
	transition: border-color .35s ease, background-color .25s ease;
}

textarea {
	min-height: 170px;
	padding-block: 10px;
	resize: vertical;
}

select {
	padding-right: 30px;
}

input:focus,
select:focus,
textarea:focus {
	border-color: var(--du-form-border-focus);
	outline: none;
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
	box-shadow: 0 0 0 2px rgba(131, 183, 53, .22);
}

button:disabled,
.button:disabled,
input:disabled,
select:disabled,
textarea:disabled {
	opacity: .6;
	cursor: not-allowed;
}

:focus-visible {
	outline: 2px dotted var(--du-primary);
	outline-offset: 3px;
}

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

.container {
	width: min(100% - (var(--du-gutter) * 2), var(--du-container));
	margin-inline: auto;
}

.section {
	padding-block: var(--du-section);
}

.section-heading {
	margin: 0 0 28px;
	text-align: center;
}

.section-heading-row {
	display: flex;
	gap: 16px;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 28px;
}

.section-heading-row .section-heading {
	margin: 0;
	text-align: left;
}

.section-heading-link {
	display: inline-flex;
	flex: 0 0 auto;
	min-height: 36px;
	align-items: center;
	justify-content: center;
	padding: 8px 13px;
	border: 1px solid rgba(49, 93, 38, .18);
	border-radius: var(--du-radius);
	background: #fffdf8;
	color: #315d26;
	font-size: 12px;
	font-weight: 800;
	line-height: 1.2;
}

.section-heading-link:hover,
.section-heading-link:focus-visible {
	border-color: rgba(49, 93, 38, .34);
	background: #eef4e6;
	color: #24481d;
}

.section-heading__eyebrow,
.home-hero__eyebrow {
	margin: 0 0 8px;
	color: var(--du-muted);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
}

.section-heading__title,
.section-heading h2,
.page-hero h1,
.home-hero h1 {
	margin: 0;
	color: var(--du-heading);
	font-family: var(--du-font-heading);
	font-weight: 600;
	line-height: 1.2;
}

.section-heading__title {
	font-size: clamp(22px, 3vw, 34px);
}

.section-heading__text {
	max-width: 620px;
	margin: 10px auto 0;
	color: var(--du-muted);
}

.announcement-bar {
	background: var(--du-primary);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
}

.announcement-bar a,
.announcement-bar span {
	display: inline-flex;
	min-height: 38px;
	align-items: center;
	color: #fff;
}

.header-top {
	border-bottom: 1px solid var(--du-border-soft);
	font-size: 12px;
	text-transform: uppercase;
}

.header-top__inner,
.header-main__inner,
.header-nav__inner {
	display: flex;
	align-items: center;
	gap: 20px;
}

.header-top__inner {
	justify-content: space-between;
	min-height: 40px;
}

.top-menu,
.primary-menu,
.category-menu,
.footer-menu,
.mobile-menu,
.mobile-category-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.top-menu,
.primary-menu {
	display: flex;
	align-items: center;
	gap: 22px;
}

.top-menu a,
.primary-menu a {
	color: var(--du-heading);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
}

.header-main {
	border-bottom: 1px solid var(--du-border-soft);
}

.header-main__inner {
	min-height: 104px;
}

.site-branding {
	flex: 0 0 auto;
}

.site-logo-image {
	display: inline-flex;
	align-items: center;
	padding: 4px 8px;
	border-radius: 4px;
	background: #244f23;
	line-height: 0;
}

.site-logo-image img {
	display: block;
	width: 220px;
	height: auto;
}

@media (min-width: 761px) {
	.site-branding,
	.site-branding .site-logo-image {
		width: 250px;
	}

	.site-branding .site-logo-image {
		justify-content: center;
	}
}

.site-logo-text {
	color: var(--du-heading);
	font-family: var(--du-font-heading);
	font-size: 26px;
	font-weight: 700;
	line-height: 1;
}

.site-logo-text span {
	color: var(--du-primary);
}

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

.product-search,
.search-form {
	position: relative;
	display: flex;
	width: 100%;
}

.product-search input[type="search"],
.search-form input[type="search"] {
	width: 100%;
	min-height: 46px;
	border: 1px solid var(--du-form-border);
	border-right: 0;
	padding: 0 14px;
	background: #fff;
	color: var(--du-heading);
}

.product-search__category {
	width: min(180px, 32%);
	min-height: 46px;
	border: 1px solid var(--du-form-border);
	border-right: 0;
	padding-inline: 12px;
	background: #fff;
	color: var(--du-muted);
	font-size: 13px;
}

.product-search button,
.search-form button {
	flex: 0 0 auto;
	min-height: 46px;
	padding-inline: 22px;
}

.live-search-results {
	position: absolute;
	z-index: 30;
	top: 100%;
	left: 0;
	right: 0;
	max-height: 420px;
	overflow: auto;
	background: #fff;
	border: 1px solid var(--du-border);
	box-shadow: var(--du-shadow-soft);
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.live-search-results[hidden] {
	display: none;
}

.live-search-results__item {
	display: grid;
	grid-template-columns: 65px 1fr;
	gap: 15px;
	align-items: center;
	padding: 15px;
	border-top: 1px solid var(--du-border-soft);
	border-right: 1px solid var(--du-border-soft);
	line-height: 1.2;
	transition: background-color .25s ease;
}

.live-search-results__item:hover,
.live-search-results__item:focus {
	background: var(--du-surface);
	color: var(--du-heading);
}

.live-search-results__item img {
	width: 65px;
	aspect-ratio: 1;
	object-fit: cover;
	background: var(--du-surface);
}

.live-search-results__title {
	display: block;
	font-family: var(--du-font-heading);
	font-weight: 500;
	font-size: 14px;
}

.live-search-results__price {
	color: var(--du-primary);
	font-weight: 700;
	margin-top: 6px;
	display: block;
}

.live-search-results__state,
.live-search-results__all {
	display: block;
	grid-column: 1 / -1;
	padding: 14px 16px;
	color: var(--du-muted);
}

.live-search-results__all {
	min-height: 50px;
	color: var(--du-heading);
	text-align: center;
	text-transform: uppercase;
	font-weight: 700;
	line-height: 22px;
}

.live-search-results__all:hover,
.live-search-results__all:focus {
	background: var(--du-surface);
	color: var(--du-heading);
}

.header-support {
	display: grid;
	min-width: 152px;
	font-size: 12px;
	line-height: 1.25;
	text-transform: uppercase;
}

.header-support span {
	color: var(--du-muted);
	font-weight: 700;
}

.header-support a {
	font-weight: 700;
}

.header-cart {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-height: 46px;
	border-left: 1px solid var(--du-border-soft);
	padding-left: 18px;
	font-weight: 700;
	line-height: 1.2;
}

.header-cart__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 999px;
	color: var(--du-primary);
}

.header-cart__icon svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.9;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.header-cart__count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 18px;
	height: 18px;
	padding-inline: 5px;
	border-radius: 999px;
	background: var(--du-primary);
	color: #fff;
	font-size: 10px;
	line-height: 18px;
}

.header-nav {
	border-bottom: 1px solid var(--du-border-soft);
}

.header-nav__inner {
	min-height: 52px;
}

.category-nav {
	position: relative;
	width: 270px;
	flex: 0 0 270px;
}

.category-nav__toggle {
	width: 100%;
	justify-content: flex-start;
	background: var(--du-primary);
}

.category-menu {
	position: absolute;
	z-index: 20;
	top: 100%;
	left: 0;
	right: 0;
	display: none;
	background: #fff;
	border: 1px solid var(--du-border-soft);
	box-shadow: var(--du-shadow-soft);
}

.category-nav:hover .category-menu,
.category-nav:focus-within .category-menu,
.category-nav.is-open .category-menu {
	display: block;
}

.category-menu--hero {
	display: block;
	position: static;
	box-shadow: none;
}

.category-menu a,
.mobile-category-menu a {
	display: block;
	padding: 11px 14px;
	border-bottom: 1px solid var(--du-border-soft);
	color: var(--du-heading);
	font-weight: 700;
	line-height: 1.3;
}

.category-menu a:hover,
.category-menu a:focus,
.mobile-category-menu a:hover,
.mobile-category-menu a:focus {
	background: var(--du-surface);
	color: var(--du-primary-hover);
}

.primary-nav {
	flex: 1;
}

.menu-badge {
	margin-left: 6px;
	color: var(--du-primary);
	font-size: 10px;
}

.header-icon-button {
	display: none;
	width: 42px;
	padding: 0;
	background: var(--du-surface);
	color: var(--du-heading);
}

.header-icon-button__bars,
.header-icon-button__bars::before,
.header-icon-button__bars::after {
	display: block;
	width: 18px;
	height: 2px;
	background: currentColor;
	content: "";
}

.header-icon-button__bars {
	position: relative;
}

.header-icon-button__bars::before,
.header-icon-button__bars::after {
	position: absolute;
	left: 0;
}

.header-icon-button__bars::before {
	top: -6px;
}

.header-icon-button__bars::after {
	top: 6px;
}

.home-hero {
	background: linear-gradient(90deg, #fff 0%, #fff 55%, var(--du-surface) 55%, var(--du-surface) 100%);
	border-bottom: 1px solid var(--du-border-soft);
}

.home-hero__grid {
	display: grid;
	grid-template-columns: 270px minmax(0, 1fr);
	gap: 32px;
	min-height: 420px;
	align-items: center;
}

.home-hero--acf .home-hero__grid {
	grid-template-columns: minmax(0, 1fr) minmax(280px, 48%);
}

.home-hero__content {
	max-width: 560px;
	padding-block: 52px;
}

.home-hero h1 {
	font-size: clamp(34px, 5vw, 62px);
}

.home-hero p {
	color: var(--du-muted);
}

.home-hero__image img {
	width: 100%;
	max-height: 520px;
	object-fit: contain;
}

.section-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 22px;
}

.category-grid,
.benefits-grid,
.footer-benefits__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: var(--du-gap);
}

.category-card {
	display: grid;
	gap: 8px;
	text-align: center;
	color: var(--du-heading);
}

.category-card__media {
	display: block;
	aspect-ratio: 1.08;
	background: var(--du-surface);
	overflow: hidden;
}

.category-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .2s ease;
}

.category-card:hover .category-card__image {
	transform: scale(1.035);
}

.category-card__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	background:
		url("../images/product-placeholder.svg") center / cover no-repeat,
		linear-gradient(135deg, var(--du-surface), var(--du-surface-alt));
}

.category-card__title {
	font-family: var(--du-font-heading);
	font-weight: 600;
	text-transform: uppercase;
}

.category-card__count {
	color: var(--du-muted);
	font-size: 13px;
}

.image-text__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 44px;
	align-items: center;
}

.image-text--right .image-text__media {
	order: 2;
}

.image-text__media {
	background: var(--du-surface);
}

.image-text__media img {
	width: 100%;
	aspect-ratio: 1.25;
	object-fit: cover;
}

.rich-text > *:first-child {
	margin-top: 0;
}

.benefit-card,
.testimonial-card,
.content-card,
.content-none {
	border: 1px solid var(--du-border-soft);
	background: #fff;
	padding: 24px;
}

.benefit-card {
	display: grid;
	gap: 8px;
	min-height: 130px;
	text-align: center;
}

.benefit-card strong {
	color: var(--du-heading);
	font-family: var(--du-font-heading);
	font-size: 16px;
	text-transform: uppercase;
}

.faq-item {
	border-bottom: 1px solid var(--du-border-soft);
	padding: 16px 0;
}

.faq-item summary {
	cursor: pointer;
	color: var(--du-heading);
	font-family: var(--du-font-heading);
	font-weight: 600;
}

.cta-section__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	background: var(--du-primary);
	color: #fff;
	padding: 36px;
}

.cta-section .section-heading {
	margin: 0;
	text-align: left;
}

.cta-section .section-heading__title,
.cta-section .section-heading__text {
	color: #fff;
}

.page-hero {
	padding-block: 58px;
	background: var(--du-surface);
}

.page-hero__eyebrow {
	margin: 0 0 8px;
	color: #6f7d64;
	font-size: 12px;
	font-weight: 800;
	line-height: 1.25;
	text-transform: uppercase;
}

.page-hero__text {
	max-width: 680px;
	margin: 12px 0 0;
	color: var(--du-muted);
	font-size: 15px;
	line-height: 1.6;
}

.page-hero__search {
	max-width: 760px;
	margin-top: 18px;
}

.page-hero--search {
	padding-block: 44px;
	background:
		linear-gradient(90deg, rgba(49, 93, 38, .055), transparent 58%),
		var(--du-surface);
	border-bottom: 1px solid rgba(49, 93, 38, .08);
}

.search-hero {
	display: grid;
	grid-template-columns: minmax(0, .94fr) minmax(380px, .72fr);
	gap: 28px 44px;
	align-items: center;
}

.search-hero h1 {
	max-width: 760px;
	margin: 0;
	overflow-wrap: anywhere;
}

.search-hero h1 span,
.search-hero__query-label strong {
	display: inline-block;
	max-width: 100%;
	vertical-align: bottom;
	color: #315d26;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.search-hero__query-label {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 6px 9px;
	align-items: center;
	max-width: 100%;
	margin: 10px 0 0;
	color: var(--du-muted);
	font-size: 13px;
	line-height: 1.35;
}

.search-hero__query-label span {
	color: #6f776c;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: uppercase;
}

.search-hero__query-label strong {
	padding: 5px 9px;
	border: 1px solid rgba(49, 93, 38, .14);
	border-radius: var(--du-radius);
	background: #fffdf8;
	font-size: 13px;
	line-height: 1.25;
}

.search-hero__panel {
	display: grid;
	gap: 14px;
	padding: 18px;
	border: 1px solid rgba(49, 93, 38, .14);
	border-radius: var(--du-radius);
	background: #fffdf8;
	box-shadow: 0 14px 38px rgba(29, 39, 22, .075);
}

.search-hero__panel .page-hero__search {
	max-width: none;
	margin: 0;
}

.search-hero__meta,
.search-hero__terms {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
}

.search-hero__stat,
.search-hero__catalog,
.search-hero__terms a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 32px;
	padding: 6px 10px;
	border: 1px solid rgba(49, 93, 38, .14);
	border-radius: var(--du-radius);
	background: #fff;
	color: #315d26;
	font-size: 12px;
	font-weight: 800;
	line-height: 1.15;
}

.search-hero__stat {
	background: #f3f8eb;
}

.search-hero__catalog {
	background: #315d26;
	color: #fff;
}

.search-hero__catalog:hover,
.search-hero__catalog:focus-visible {
	background: var(--du-primary-hover);
	color: #fff;
}

.search-hero__terms {
	padding-top: 2px;
	color: var(--du-muted);
	font-size: 12px;
	line-height: 1.35;
}

.search-hero__terms a:hover,
.search-hero__terms a:focus-visible {
	border-color: rgba(49, 93, 38, .3);
	background: #f3f8eb;
	color: #24481d;
}

.page-hero--compact h1 {
	font-size: clamp(28px, 4vw, 48px);
}

.page-content__body,
.content-stack {
	padding-block: var(--du-section);
}

.search-results-stack {
	display: grid;
	gap: 28px;
}

.search-results-section {
	display: grid;
	gap: 18px;
}

.search-results-section__header {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 18px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--du-border-soft);
}

.search-results-section__header h2 {
	margin: 0;
	color: var(--du-heading);
	font-family: var(--du-font-heading);
	font-size: clamp(21px, 2.4vw, 30px);
	line-height: 1.18;
}

.search-results-section__header span {
	color: var(--du-muted);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.2;
	white-space: nowrap;
}

.search-results-section--products {
	padding: 20px;
	border: 1px solid rgba(49, 93, 38, .1);
	border-radius: var(--du-radius);
	background: #fffdf8;
	box-shadow: 0 10px 30px rgba(29, 39, 22, .045);
}

.page-content__body--info {
	padding-block: 42px 56px;
}

.page-info-panel {
	display: grid;
	gap: 24px;
}

.page-info-panel__intro {
	display: grid;
	grid-template-columns: minmax(0, 760px) minmax(220px, 1fr);
	gap: 18px 34px;
	align-items: start;
	padding: 30px;
	border: 1px solid rgba(49, 93, 38, .13);
	background: #fffdf8;
	box-shadow: 0 12px 34px rgba(29, 39, 22, .055);
}

.page-info-panel__eyebrow {
	grid-column: 1;
	margin: 0 0 8px;
	color: var(--du-muted);
	font-size: 12px;
	font-weight: 800;
	line-height: 1.25;
	text-transform: uppercase;
}

.page-info-panel h2 {
	grid-column: 1;
	margin: 0;
	color: var(--du-heading);
	font-size: clamp(24px, 3vw, 36px);
	line-height: 1.14;
}

.page-info-panel__text {
	grid-column: 1;
	max-width: 720px;
	color: var(--du-text);
	font-size: 15px;
	line-height: 1.65;
}

.page-info-panel__text p {
	margin: 0 0 10px;
}

.page-info-panel__text p:last-child {
	margin-bottom: 0;
}

.page-quick-links {
	grid-column: 2;
	grid-row: 1 / 4;
	align-self: end;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: flex-end;
}

.page-info-highlights,
.page-trust-strip {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.page-info-highlights__item,
.page-trust-strip__item {
	padding: 20px;
	border: 1px solid var(--du-border-soft);
	background: #fff;
	box-shadow: 0 8px 24px rgba(29, 39, 22, .045);
}

.page-info-highlights__item strong {
	display: block;
	margin-bottom: 4px;
	color: #315d26;
	font-family: var(--du-font-heading);
	font-size: 24px;
	line-height: 1.1;
}

.page-info-highlights__item span {
	color: var(--du-muted);
	font-size: 13px;
	line-height: 1.4;
}

.page-contact-panel {
	display: grid;
	grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
	gap: 24px;
	padding: 28px;
	border: 1px solid rgba(49, 93, 38, .13);
	background: #fffdf8;
	box-shadow: 0 12px 34px rgba(29, 39, 22, .055);
}

.page-contact-list {
	display: grid;
	gap: 10px;
	margin-top: 18px;
	color: var(--du-text);
	font-size: 15px;
}

.page-contact-list a {
	color: #315d26;
	font-weight: 800;
}

.page-contact-map {
	display: grid;
	align-content: end;
	min-height: 260px;
	padding: 28px;
	border: 1px solid rgba(49, 93, 38, .14);
	background:
		linear-gradient(90deg, rgba(49, 93, 38, .07) 1px, transparent 1px),
		linear-gradient(0deg, rgba(49, 93, 38, .07) 1px, transparent 1px),
		#f2efe5;
	background-size: 34px 34px;
	color: var(--du-heading);
}

.page-contact-map span {
	margin-bottom: 8px;
	color: var(--du-muted);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.page-contact-map strong {
	max-width: 360px;
	font-family: var(--du-font-heading);
	font-size: 22px;
	line-height: 1.2;
}

.page-contact-map a {
	width: fit-content;
	margin-top: 18px;
	color: #315d26;
	font-weight: 800;
}

.page-trust-strip__item h3 {
	margin: 0 0 10px;
	color: var(--du-heading);
	font-size: 16px;
	line-height: 1.25;
}

.page-trust-strip__item p {
	margin: 0;
	color: var(--du-muted);
	line-height: 1.55;
}

@media (max-width: 1024px) {
	.page-info-panel__intro,
	.page-contact-panel {
		grid-template-columns: 1fr;
	}

	.page-info-panel__eyebrow,
	.page-info-panel h2,
	.page-info-panel__text,
	.page-quick-links {
		grid-column: 1;
	}

	.page-quick-links {
		grid-row: auto;
		align-self: start;
		justify-content: flex-start;
	}
}

.content-card {
	display: grid;
	grid-template-columns: 240px minmax(0, 1fr);
	gap: 22px;
	margin-bottom: 22px;
}

.content-card__title {
	margin: 0 0 10px;
	font-family: var(--du-font-heading);
}

.site-footer {
	margin-top: 64px;
	border-top: 1px solid rgba(49, 93, 38, .14);
	background: #f6f2e8;
}

.footer-benefits {
	padding-block: 26px;
	border-bottom: 1px solid rgba(49, 93, 38, .12);
	background: linear-gradient(180deg, #fffdf8 0%, #f6f2e8 100%);
}

.footer-benefits__inner {
	display: block;
}

.footer-benefits__grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	align-items: stretch;
	gap: 16px;
}

.footer-benefits__lead span {
	display: block;
	margin-bottom: 4px;
	color: var(--du-muted);
	font-size: 11px;
	font-weight: 800;
	line-height: 1.25;
	text-transform: uppercase;
}

.footer-benefits__lead strong {
	display: block;
	max-width: 260px;
	color: var(--du-heading);
	font-family: var(--du-font-heading);
	font-size: 20px;
	line-height: 1.18;
}

.footer-benefits .benefit-card {
	position: relative;
	grid-template-columns: 42px minmax(0, 1fr);
	grid-template-rows: minmax(34px, auto) 1fr;
	gap: 6px 14px;
	width: 100%;
	height: 100%;
	min-height: 134px;
	padding: 18px;
	text-align: left;
	background: #fffdf8;
	box-shadow: 0 8px 24px rgba(29, 39, 22, .045);
}

.benefit-card__icon {
	grid-row: 1 / span 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border: 1px solid rgba(91, 162, 43, .22);
	border-radius: 999px;
	background:
		radial-gradient(circle at 35% 30%, rgba(255, 255, 255, .95), transparent 48%),
		linear-gradient(180deg, #f3fae9 0%, #eaf5db 100%);
	box-shadow: inset 0 0 0 3px rgba(255, 255, 255, .56), 0 8px 18px rgba(49, 93, 38, .08);
}

.benefit-card__icon svg {
	width: 26px;
	height: 26px;
	color: #4c9a2a;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2.2;
}

.benefit-card__icon svg circle {
	stroke: rgba(76, 154, 42, .28);
}

.benefit-card__icon svg path {
	stroke-width: 2.8;
}

.footer-benefits .benefit-card strong {
	align-self: start;
	min-height: calc(1.22em * 2);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.22;
	text-transform: uppercase;
}

.footer-benefits .benefit-card span:not(.benefit-card__icon) {
	align-self: start;
	color: var(--du-muted);
	font-size: 13px;
	line-height: 1.4;
}

.footer-main {
	display: grid;
	grid-template-columns: minmax(290px, 1.35fr) repeat(3, minmax(150px, .75fr));
	gap: 26px;
	padding-block: 38px;
}

.footer-column h2 {
	margin: 0 0 14px;
	color: var(--du-heading);
	font-family: var(--du-font-heading);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: uppercase;
}

.footer-menu a {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 3px 0;
	color: var(--du-muted);
	line-height: 1.35;
}

.footer-menu a:hover,
.footer-menu a:focus-visible {
	color: #315d26;
}

.footer-column--contact {
	padding: 24px;
	border: 1px solid rgba(49, 93, 38, .12);
	background: #fffdf8;
	box-shadow: 0 10px 30px rgba(29, 39, 22, .05);
}

.site-logo-text--footer {
	display: inline-flex;
	margin-bottom: 12px;
	font-size: 24px;
}

.site-logo-image--footer {
	margin-bottom: 12px;
}

.site-logo-image--footer img {
	width: 220px;
}

.footer-contact__text {
	max-width: 420px;
	margin: 0 0 16px;
	color: var(--du-muted);
	line-height: 1.55;
}

.footer-contact {
	display: grid;
	gap: 8px;
	font-style: normal;
	color: var(--du-text);
}

.footer-contact a {
	color: #315d26;
	font-weight: 800;
}

.footer-social {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 18px;
}

.footer-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 30px;
	padding-inline: 10px;
	border: 1px solid rgba(49, 93, 38, .16);
	background: #f3f8eb;
	color: #315d26;
	font-size: 11px;
	font-weight: 800;
	line-height: 1;
}

.footer-social a:hover,
.footer-social a:focus-visible {
	border-color: #315d26;
	background: #315d26;
	color: #fff;
}

.footer-legal {
	margin-top: 16px;
	color: var(--du-muted);
	font-size: 12px;
	line-height: 1.45;
}

.footer-bottom {
	border-top: 1px solid rgba(49, 93, 38, .12);
	background: #f0ebdf;
	color: var(--du-muted);
	text-align: center;
}

.footer-bottom p {
	margin: 0;
	padding-block: 13px;
	font-size: 12px;
}

.mobile-menu-drawer,
.mini-cart-drawer {
	position: fixed;
	inset: 0;
	z-index: 999;
	display: none;
	background: rgba(0, 0, 0, .45);
}

.mobile-menu-drawer.is-open,
.mini-cart-drawer.is-open {
	display: block;
}

.mobile-menu-drawer__panel,
.mini-cart-drawer__panel {
	width: min(92vw, 340px);
	height: 100%;
	overflow: auto;
	background: #fbfaf6;
	padding: 0;
	box-shadow: var(--du-shadow);
}

.mini-cart-drawer__panel {
	margin-left: auto;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.mini-cart-drawer__header {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 22px 20px 16px;
	border-bottom: 1px solid var(--du-border-soft);
	background: #fffdf8;
}

.mini-cart-drawer__heading {
	min-width: 0;
}

.mini-cart-drawer__header h2 {
	margin: 0;
	font-size: 22px;
	line-height: 1.15;
}

.mini-cart-drawer__heading p {
	margin: 5px 0 0;
	color: var(--du-muted);
	font-size: 13px;
	font-weight: 700;
	line-height: 1.25;
}

.mini-cart-drawer .drawer-close {
	width: 36px;
	min-height: 36px;
	margin: 0;
	padding: 0;
	border: 1px solid var(--du-border-soft);
	border-radius: 4px;
	background: #f4f1e8;
	justify-content: center;
	font-size: 22px;
	line-height: 1;
}

.mini-cart-drawer__body {
	flex: 1 1 auto;
	min-height: 0;
	display: flex;
	flex-direction: column;
	padding: 18px 20px 22px;
}

.drawer-close {
	width: 100%;
	margin-bottom: 0;
	background: var(--du-surface);
	color: var(--du-heading);
	border-bottom: 1px solid var(--du-border-soft);
	justify-content: flex-start;
	padding-inline: 20px;
}

.mobile-menu-drawer__search,
.mobile-menu-drawer__section,
.mini-cart-drawer .widget_shopping_cart_content,
.mini-cart-drawer .woocommerce-mini-cart__empty-message {
	padding: 20px;
}

.mini-cart-drawer .widget_shopping_cart_content,
.mini-cart-drawer .woocommerce-mini-cart__empty-message {
	padding: 0;
}

.mini-cart-drawer__note {
	margin: 14px 0 0;
	padding: 12px 13px;
	border: 1px solid rgba(49, 93, 38, .14);
	background: #f7f4eb;
	color: var(--du-muted);
	font-size: 12px;
	font-weight: 700;
	line-height: 1.45;
}

@media (max-width: 480px) {
	.mini-cart-drawer__panel {
		width: calc(100vw - 16px);
		max-width: none;
	}

	.mini-cart-drawer__header {
		padding: 20px 16px 15px;
	}

	.mini-cart-drawer__body {
		padding: 16px 16px 20px;
	}
}

.mobile-menu a {
	display: block;
	padding: 12px 0;
	border-bottom: 1px solid var(--du-border-soft);
	font-weight: 700;
	text-transform: uppercase;
}

.mobile-menu-drawer__header {
	position: sticky;
	top: 0;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: 64px;
	padding: 14px 18px;
	border-bottom: 1px solid var(--du-border-soft);
	background: #fffdf8;
}

.mobile-menu-drawer__header .site-logo-text {
	font-size: 20px;
}

.site-logo-image--drawer img {
	width: 180px;
}

.mobile-menu-drawer .drawer-close {
	width: 38px;
	min-height: 38px;
	margin: 0;
	padding: 0;
	border: 1px solid var(--du-border-soft);
	background: #f4f1e8;
	color: var(--du-heading);
	justify-content: center;
	font-size: 22px;
	line-height: 1;
}

.mobile-menu-drawer__search {
	border-bottom: 1px solid var(--du-border-soft);
	background: #fffdf8;
}

.mobile-menu-drawer__search .product-search {
	box-shadow: 0 0 0 1px var(--du-border-soft);
}

.mobile-menu-drawer__quick-actions {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 8px;
	padding: 12px 20px 16px;
	border-bottom: 1px solid var(--du-border-soft);
	background:
		linear-gradient(180deg, rgba(49, 93, 38, .04), transparent 72%),
		#fffdf8;
}

.mobile-menu-drawer__quick-actions a {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 8px 6px;
	border: 1px solid rgba(49, 93, 38, .16);
	border-radius: 6px;
	background: #fff;
	color: #315d26;
	font-size: 12px;
	font-weight: 800;
	line-height: 1.15;
	text-align: center;
	text-decoration: none;
}

.mobile-menu-drawer__quick-actions a:nth-child(2) {
	border-color: #315d26;
	background: #315d26;
	color: #fff;
	box-shadow: 0 8px 18px rgba(49, 93, 38, .16);
}

.mobile-menu-drawer__quick-actions a:hover,
.mobile-menu-drawer__quick-actions a:focus-visible {
	border-color: rgba(49, 93, 38, .42);
	background: #f3f8eb;
	color: #24491d;
}

.mobile-menu-drawer__quick-actions a:nth-child(2):hover,
.mobile-menu-drawer__quick-actions a:nth-child(2):focus-visible {
	border-color: #24491d;
	background: #24491d;
	color: #fff;
}

.mobile-menu-drawer__section {
	padding: 18px 20px;
	background: #fff;
}

.mobile-menu-drawer__section + .mobile-menu-drawer__section {
	border-top: 1px solid var(--du-border-soft);
	background:
		linear-gradient(180deg, rgba(244, 241, 232, .82), rgba(255, 253, 248, .96) 32%),
		#fffdf8;
}

.mobile-menu-drawer__section-title {
	margin: 0 0 8px;
	color: #315d26;
	font-size: 12px;
	font-weight: 800;
	line-height: 1.2;
	text-transform: uppercase;
}

.mobile-menu,
.mobile-category-menu {
	display: grid;
	gap: 0;
	list-style: none;
	margin: 0;
	padding: 0;
}

.mobile-category-menu {
	gap: 7px;
}

.mobile-menu a,
.mobile-category-menu a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 44px;
	padding: 10px 0;
	border-bottom: 1px solid var(--du-border-soft);
	color: var(--du-heading);
	font-size: 14px;
	font-weight: 750;
	line-height: 1.25;
	text-transform: none;
}

.mobile-category-menu a {
	position: relative;
	gap: 12px;
	min-height: 46px;
	padding: 10px 9px 10px 13px;
	border: 1px solid rgba(49, 93, 38, .12);
	border-radius: 6px;
	background: rgba(255, 255, 255, .86);
	color: #24301f;
	font-size: 13.5px;
	font-weight: 740;
	box-shadow: 0 1px 0 rgba(49, 93, 38, .04);
}

.mobile-category-menu a::before {
	display: none;
}

.mobile-category-menu a::after {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border-radius: 999px;
	background: #eef5e5;
	color: #315d26;
	content: "›";
	font-size: 16px;
	font-weight: 800;
	line-height: 1;
}

.mobile-menu li:last-child a,
.mobile-category-menu li:last-child a {
	border-bottom: 0;
}

.mobile-menu a:hover,
.mobile-menu a:focus,
.mobile-category-menu a:hover,
.mobile-category-menu a:focus {
	color: #315d26;
}

.mobile-category-menu a:hover,
.mobile-category-menu a:focus-visible {
	border-color: rgba(49, 93, 38, .26);
	background: #f8fbf2;
	box-shadow: 0 5px 14px rgba(49, 93, 38, .08);
}

.mobile-category-menu a:hover::after,
.mobile-category-menu a:focus-visible::after {
	background: #315d26;
	color: #fff;
}

.quick-view-dialog {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 24px;
	background: rgba(0, 0, 0, .52);
}

.quick-view-dialog.is-open {
	display: flex;
}

.quick-view-dialog__panel {
	position: relative;
	width: min(920px, 100%);
	max-height: min(760px, 90vh);
	overflow: auto;
	border: 1px solid var(--du-border-soft);
	background: #fffdf8;
	box-shadow: 0 24px 70px rgba(15, 36, 29, .28);
}

.quick-view-dialog__close {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	min-height: 36px;
	padding: 0;
	border: 1px solid var(--du-border-soft);
	border-radius: 4px;
	background: #f4f1e8;
	color: var(--du-heading);
	font-size: 24px;
	line-height: 1;
	box-shadow: 0 4px 12px rgba(29, 39, 22, .08);
}

.quick-view-dialog__close:hover,
.quick-view-dialog__close:focus-visible {
	background: #315d26;
	color: #fff;
}

.quick-view-dialog__content.is-loading,
.quick-view-dialog__content.has-error {
	min-height: 210px;
	display: grid;
	place-items: center;
}

.quick-view-dialog__state {
	padding: 18px;
	color: var(--du-muted);
	font-weight: 700;
	text-align: center;
}

.quick-view-dialog__content.is-loading .quick-view-dialog__state::before {
	display: block;
	width: 26px;
	height: 26px;
	margin: 0 auto 12px;
	border: 3px solid rgba(49, 93, 38, .18);
	border-top-color: #315d26;
	border-radius: 50%;
	content: "";
	animation: domusadba-spin .75s linear infinite;
}

@media (max-width: 1024px) {
	.header-icon-button {
		display: inline-flex;
	}

	.header-top,
	.header-nav,
	.header-support {
		display: none;
	}

	.header-main__inner {
		min-height: 68px;
	}

	.header-search {
		display: none;
	}

	.site-logo-text {
		font-size: 22px;
	}

	.home-hero__grid,
	.home-hero--acf .home-hero__grid {
		grid-template-columns: 1fr;
		min-height: auto;
	}

	.home-hero__categories {
		display: none;
	}

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

@media (max-width: 760px) {
	:root {
		--du-gutter: 16px;
		--du-section: 36px;
	}

	.site-logo-image img {
		width: 145px;
	}

	.site-logo-image--drawer img {
		width: 180px;
	}

	.site-logo-image--footer img {
		width: 205px;
	}

	.product-search {
		display: grid;
		grid-template-columns: 1fr auto;
	}

	.product-search__category {
		grid-column: 1 / -1;
		grid-row: 2;
		width: 100%;
		border-top: 0;
		border-right: 1px solid var(--du-form-border);
	}

	.product-search input[type="search"] {
		border-right: 0;
	}

	.product-search button {
		grid-column: 2;
		grid-row: 1;
		padding-inline: 16px;
	}

	.live-search-results {
		grid-template-columns: 1fr;
		max-height: 70vh;
	}

	.live-search-results__item {
		grid-template-columns: 48px 1fr;
		padding: 10px;
	}

	.live-search-results__item img {
		width: 48px;
	}

	.header-main__inner {
		gap: 12px;
	}

	.header-cart__subtotal {
		display: none;
	}

	.home-hero {
		background: #fff;
	}

	.home-hero__content {
		padding-block: 38px;
	}

	.image-text__grid,
	.content-card {
		grid-template-columns: 1fr;
	}

	.page-info-panel__intro,
	.page-contact-panel {
		grid-template-columns: 1fr;
	}

	.page-info-panel__eyebrow,
	.page-info-panel h2,
	.page-info-panel__text,
	.page-quick-links {
		grid-column: 1;
	}

	.page-quick-links {
		grid-row: auto;
		align-self: start;
	}

	.page-quick-links {
		justify-content: flex-start;
	}

	.page-info-highlights,
	.page-trust-strip {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 12px;
	}

	.page-info-highlights__item,
	.page-trust-strip__item {
		padding: 16px;
	}

	.footer-benefits__inner {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.footer-benefits__lead {
		display: flex;
		align-items: end;
		justify-content: space-between;
		gap: 18px;
	}

	.footer-benefits__lead strong {
		max-width: 360px;
		font-size: 18px;
	}

	.footer-main {
		grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
		gap: 20px;
		padding-block: 32px;
	}

	.footer-column--contact {
		grid-column: 1 / -1;
		display: grid;
		grid-template-columns: minmax(0, 1.1fr) minmax(240px, .9fr);
		gap: 12px 28px;
	}

	.footer-column--contact .site-logo-text--footer,
	.footer-column--contact .footer-contact__text,
	.footer-column--contact .footer-social,
	.footer-column--contact .footer-legal {
		grid-column: 1;
	}

	.footer-column--contact .footer-contact {
		grid-column: 2;
		grid-row: 1 / span 4;
		align-self: center;
	}

	.image-text--right .image-text__media {
		order: 0;
	}

	.category-grid,
	.benefits-grid {
		grid-template-columns: 1fr;
	}

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

	.footer-benefits .benefit-card {
		padding: 16px;
	}

	.cta-section__inner {
		display: block;
		padding: 24px;
	}
}

/* Refined storefront layer: clean production UI without cloning the source theme. */
:root {
	--du-bg: #fbfaf6;
	--du-surface: #f4f1e8;
	--du-surface-alt: #ebe5d8;
	--du-card: #fff;
	--du-text: #2f352d;
	--du-muted: #747a6f;
	--du-heading: #172215;
	--du-primary: #6ea12f;
	--du-primary-hover: #587f25;
	--du-accent: #d99a2b;
	--du-border: rgba(36, 48, 30, .14);
	--du-border-soft: rgba(36, 48, 30, .09);
	--du-sale: #c94a36;
	--du-success: #4f8c35;
	--du-error: #b42318;
	--du-warning: #d99a2b;
	--du-disabled: #b9beb3;
	--du-radius: 6px;
	--du-form-height: 44px;
	--du-shadow: 0 18px 48px rgba(29, 39, 22, .14);
	--du-shadow-soft: 0 8px 28px rgba(29, 39, 22, .08);
}

body {
	background:
		linear-gradient(180deg, rgba(244, 241, 232, .82), rgba(251, 250, 246, 0) 320px),
		var(--du-bg);
	color: var(--du-text);
}

button,
.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
	border-radius: var(--du-radius);
	font-weight: 700;
	letter-spacing: 0;
}

input[type="email"],
input[type="search"],
input[type="number"],
input[type="password"],
input[type="tel"],
input[type="text"],
input[type="url"],
select,
textarea {
	border-radius: var(--du-radius);
}

.site-header {
	position: relative;
	z-index: 50;
	background: #fff;
	box-shadow: 0 1px 0 var(--du-border-soft);
}

.announcement-bar {
	background: #315d26;
	letter-spacing: 0;
	text-transform: none;
}

.announcement-bar a,
.announcement-bar span {
	min-height: 34px;
	justify-content: center;
	font-size: 13px;
}

.header-top {
	background: #f6f4ed;
	border-bottom-color: var(--du-border-soft);
	text-transform: none;
}

.header-top__inner {
	min-height: 34px;
}

.top-menu,
.primary-menu {
	gap: 18px;
}

.top-menu a,
.primary-menu a {
	color: #354131;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0;
	text-transform: none;
	white-space: nowrap;
}

.top-menu a:hover,
.primary-menu a:hover {
	color: var(--du-primary-hover);
}

.header-main {
	background: #fff;
	border-bottom-color: var(--du-border-soft);
}

.header-main__inner {
	min-height: 86px;
	gap: 22px;
}

.site-logo-text {
	font-size: 27px;
	letter-spacing: 0;
	white-space: nowrap;
}

.product-search,
.search-form {
	border-radius: var(--du-radius);
	box-shadow: 0 0 0 1px var(--du-border-soft);
}

.product-search input[type="search"],
.search-form input[type="search"],
.product-search__category {
	min-height: 44px;
	border-color: transparent;
	background: #fff;
}

.product-search__category {
	background: #f8f6ef;
	color: #596155;
}

.product-search button,
.search-form button {
	min-height: 44px;
	background: #315d26;
	border-radius: 0 var(--du-radius) var(--du-radius) 0;
}

.product-search button:hover,
.search-form button:hover {
	background: var(--du-primary-hover);
}

.live-search-results {
	top: calc(100% + 8px);
	grid-template-columns: repeat(2, minmax(0, 1fr));
	width: min(100%, 660px);
	max-height: min(360px, calc(100vh - 150px));
	border-color: var(--du-border-soft);
	border-radius: var(--du-radius);
	box-shadow: var(--du-shadow);
	padding: 0;
	background: #fff;
	overflow: auto;
}

.product-search.is-searching .live-search-results {
	box-shadow: 0 12px 34px rgba(29, 39, 22, .13);
}

.live-search-results[aria-busy="true"]::before {
	position: absolute;
	top: 13px;
	right: 14px;
	width: 16px;
	height: 16px;
	border: 2px solid rgba(49, 93, 38, .18);
	border-top-color: #315d26;
	border-radius: 50%;
	content: "";
	animation: domusadba-spin .7s linear infinite;
}

.live-search-results__item {
	grid-template-columns: 50px minmax(0, 1fr);
	gap: 11px;
	padding: 10px 12px;
	border-top: 1px solid var(--du-border-soft);
	border-radius: 0;
	background: #fff;
}

.live-search-results__item:hover,
.live-search-results__item:focus,
.live-search-results__item.is-active {
	background: #f4f1e8;
}

.live-search-results__item img {
	width: 50px;
	border: 1px solid var(--du-border-soft);
	background: #f4f1e8;
	object-fit: contain;
	padding: 7px;
}

.live-search-results__item:focus-visible {
	outline: 2px solid rgba(49, 93, 38, .35);
	outline-offset: -2px;
}

.live-search-results__body {
	min-width: 0;
}

.live-search-results__title {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	font-weight: 700;
	line-height: 1.25;
}

.live-search-results__meta {
	display: block;
	overflow: hidden;
	margin-top: 5px;
	color: var(--du-muted);
	font-size: 12px;
	line-height: 1.3;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.live-search-results__price {
	margin-top: 5px;
	color: #315d26;
	font-size: 13px;
	font-weight: 800;
}

.live-search-results__summary {
	display: flex;
	grid-column: 1 / -1;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 9px 12px;
	border-bottom: 1px solid var(--du-border-soft);
	background: #fbfaf6;
	color: var(--du-muted);
	font-size: 12px;
	line-height: 1.3;
}

.live-search-results__summary strong {
	color: #315d26;
	font-size: 12px;
	font-weight: 800;
	white-space: nowrap;
}

.live-search-results__all {
	display: flex;
	min-height: 40px;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding-inline: 14px;
	border-top: 1px solid var(--du-border-soft);
	color: #315d26;
	font-size: 12px;
	line-height: 1.25;
	text-align: center;
}

@keyframes domusadba-spin {
	to {
		transform: rotate(360deg);
	}
}

@media (prefers-reduced-motion: reduce) {
	.live-search-results[aria-busy="true"]::before {
		animation: none;
	}
}

@media (max-width: 700px) {
	.live-search-results {
		grid-template-columns: 1fr;
		width: 100%;
		max-height: none;
		overflow: hidden;
	}

	.live-search-results__item {
		grid-template-columns: 58px minmax(0, 1fr);
		gap: 13px;
		padding: 12px 14px;
	}

	.live-search-results__item img {
		width: 58px;
		padding: 6px;
	}

	.live-search-results__summary {
		padding: 11px 14px;
	}

	.live-search-results__all {
		min-height: 44px;
	}
}

.header-support {
	min-width: 138px;
	text-transform: none;
}

.header-cart {
	min-height: 42px;
	padding: 0 12px 0 16px;
	border: 1px solid var(--du-border-soft);
	border-radius: var(--du-radius);
	background: #faf9f4;
}

.header-cart:hover {
	background: #f2eddf;
	color: var(--du-heading);
}

.header-cart__count {
	background: #315d26;
}

.header-nav {
	background: #fff;
	border-bottom-color: var(--du-border-soft);
}

.header-nav__inner {
	min-height: 48px;
}

.category-nav {
	width: 250px;
	flex-basis: 250px;
}

.category-nav__toggle {
	min-height: 40px;
	padding-inline: 16px;
	background: #3a4650;
	border-radius: var(--du-radius);
}

.category-nav__toggle:hover,
.category-nav__toggle:focus-visible,
.category-nav.is-open .category-nav__toggle {
	background: #2c353d;
}

.category-nav__toggle::before {
	display: inline-block;
	width: 18px;
	height: 14px;
	margin-right: 12px;
	border: 0;
	border-radius: 1px;
	background:
		linear-gradient(currentColor, currentColor) 0 0 / 100% 2px no-repeat,
		linear-gradient(currentColor, currentColor) 0 50% / 100% 2px no-repeat,
		linear-gradient(currentColor, currentColor) 0 100% / 100% 2px no-repeat;
	box-shadow: none;
	content: "";
}

.category-menu {
	top: calc(100% + 8px);
	border-color: var(--du-border-soft);
	border-radius: var(--du-radius);
	box-shadow: var(--du-shadow);
	overflow: hidden;
}

.category-menu--hero {
	border-radius: var(--du-radius);
}

.category-menu a,
.mobile-category-menu a {
	padding: 12px 15px;
	font-weight: 600;
	text-transform: none;
}

.primary-nav {
	overflow: visible;
}

.primary-menu {
	flex-wrap: nowrap;
	overflow: visible;
	scrollbar-width: none;
}

.header-icon-button {
	border-radius: var(--du-radius);
}

@media (min-width: 1025px) {
	.announcement-bar a,
	.announcement-bar span {
		min-height: 32px;
	}

	.header-top__inner {
		min-height: 30px;
	}

	.header-main__inner {
		min-height: 76px;
		gap: 20px;
	}

	.site-logo-text {
		font-size: 25px;
	}

	.product-search input[type="search"],
	.search-form input[type="search"],
	.product-search__category,
	.product-search button,
	.search-form button {
		min-height: 42px;
	}

	.header-cart {
		min-height: 40px;
	}

	.header-nav__inner {
		min-height: 44px;
	}

	.category-nav__toggle {
		min-height: 38px;
	}
}

.mobile-menu-drawer__panel,
.mini-cart-drawer__panel {
	background: #fffdf8;
}

.drawer-close {
	background: #f0eadc;
}

.home-hero {
	background:
		linear-gradient(90deg, #fff 0%, #fff 46%, #f8f5ed 78%, #f1ecdf 100%);
}

.home-hero__grid {
	position: relative;
	isolation: isolate;
	grid-template-columns: 250px minmax(0, 1fr) minmax(286px, 320px);
	gap: 30px;
	min-height: 470px;
}

.home-hero--acf .home-hero__grid {
	grid-template-columns: minmax(0, 1fr) minmax(286px, 360px);
}

.home-hero__grid::after {
	display: none;
	content: none;
}

.home-hero__content {
	position: relative;
	z-index: 1;
	max-width: 600px;
	padding-block: 38px;
}

.home-hero__eyebrow {
	color: #6f7d64;
	letter-spacing: 0;
	text-transform: none;
}

.home-hero h1 {
	max-width: 720px;
	font-size: clamp(34px, 4vw, 54px);
	line-height: 1.1;
}

.home-hero p {
	max-width: 540px;
	font-size: 15px;
	line-height: 1.65;
}

.home-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	margin-top: 18px;
}

.home-hero__actions .button {
	flex: 0 0 auto;
}

.category-chips {
	display: flex;
	flex: 1 1 320px;
	flex-wrap: wrap;
	gap: 7px;
	align-items: center;
}

.category-chips a {
	display: inline-flex;
	align-items: center;
	min-height: 32px;
	padding: 6px 10px;
	border: 1px solid var(--du-border-soft);
	border-radius: var(--du-radius);
	background: #fff;
	color: #315d26;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.25;
}

.category-chips a:hover,
.category-chips a:focus-visible {
	background: #f0eadc;
	color: var(--du-heading);
}

.home-hero__search {
	position: relative;
	max-width: 600px;
	margin-top: 14px;
}

.home-hero__search .product-search {
	box-shadow: 0 10px 30px rgba(29, 39, 22, .08);
}

.home-hero__panel {
	position: relative;
	display: grid;
	gap: 14px;
	align-self: center;
	padding: 20px;
	border: 1px solid rgba(49, 93, 38, .15);
	border-radius: var(--du-radius);
	background:
		linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(250, 247, 239, .8)),
		#fff;
	box-shadow: 0 18px 42px rgba(29, 39, 22, .1);
}

.home-hero__panel::before {
	position: absolute;
	inset: 0 auto 0 0;
	width: 4px;
	background: #315d26;
	content: "";
}

.home-hero__panel-header {
	display: grid;
	gap: 2px;
	padding-left: 10px;
}

.home-hero__panel-header span,
.home-hero__panel-section p,
.home-hero__panel-signals span {
	color: var(--du-muted);
	font-size: 12px;
	line-height: 1.35;
}

.home-hero__panel-header strong {
	color: var(--du-heading);
	font-family: var(--du-font-heading);
	font-size: 40px;
	font-weight: 800;
	line-height: .95;
}

.home-hero__panel-header small {
	max-width: 220px;
	color: var(--du-text);
	font-size: 13px;
	line-height: 1.35;
}

.home-hero__panel-section {
	display: grid;
	gap: 8px;
}

.home-hero__panel-section p {
	margin: 0;
	font-weight: 700;
	text-transform: none;
}

.home-hero__panel-cats,
.home-hero__panel-signals {
	display: grid;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.home-hero__panel-cats li + li {
	border-top: 1px solid var(--du-border-soft);
}

.home-hero__panel-cats a {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 14px;
	align-items: center;
	padding: 8px 0;
	color: var(--du-heading);
	font-size: 13px;
	font-weight: 750;
	line-height: 1.25;
}

.home-hero__panel-cats a:hover,
.home-hero__panel-cats a:focus-visible {
	color: #315d26;
}

.home-hero__panel-cats em {
	display: inline-flex;
	min-width: 30px;
	min-height: 24px;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--du-border-soft);
	border-radius: 999px;
	background: #f4f1e8;
	color: #315d26;
	font-size: 12px;
	font-style: normal;
	font-weight: 800;
}

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

.home-hero__panel-signals li {
	display: grid;
	gap: 2px;
	padding: 10px;
	border: 1px solid var(--du-border-soft);
	background: rgba(244, 241, 232, .58);
}

.home-hero__panel-signals strong {
	color: #315d26;
	font-size: 13px;
	line-height: 1.2;
}

.home-hero__mobile-signals {
	display: none;
}

.home-hero__panel-link {
	display: inline-flex;
	min-height: 38px;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(49, 93, 38, .25);
	border-radius: var(--du-radius);
	background: #eef4e6;
	color: #24481d;
	font-size: 12px;
	font-weight: 800;
	line-height: 1.2;
	text-align: center;
}

.home-hero__panel-link:hover,
.home-hero__panel-link:focus-visible {
	background: #315d26;
	color: #fff;
}

.category-card {
	gap: 10px;
}

.category-card__media {
	position: relative;
	border: 1px solid var(--du-border-soft);
	border-radius: var(--du-radius);
	background: #f4f1e8;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .65);
}

.category-card__placeholder {
	position: relative;
	display: grid;
	place-items: center;
	background:
		url("../images/product-placeholder.svg") center / cover no-repeat,
		linear-gradient(135deg, rgba(255, 255, 255, .44), rgba(235, 229, 216, .72)),
		#f4f1e8;
}

.category-card__placeholder::before {
	content: none;
}

.category-card__placeholder::after {
	content: none;
}

.category-card__title {
	font-size: 13px;
	line-height: 1.3;
	letter-spacing: 0;
	text-transform: none;
}

.category-grid-section .category-grid {
	gap: 14px;
}

.category-grid-section .category-card {
	position: relative;
	display: grid;
	grid-template-columns: 52px minmax(0, 1fr);
	grid-template-rows: auto auto;
	gap: 3px 13px;
	align-items: center;
	min-height: 84px;
	padding: 13px 36px 13px 13px;
	border: 1px solid var(--du-border-soft);
	border-radius: var(--du-radius);
	background:
		linear-gradient(135deg, rgba(255, 255, 255, .86), rgba(244, 241, 232, .62)),
		#fffdf8;
	text-align: left;
	box-shadow: 0 8px 22px rgba(29, 39, 22, .045);
	transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.category-grid-section .category-card:hover,
.category-grid-section .category-card:focus-visible {
	border-color: rgba(49, 93, 38, .28);
	box-shadow: 0 12px 28px rgba(29, 39, 22, .08);
	color: var(--du-heading);
	transform: translateY(-2px);
}

.category-grid-section .category-card::after {
	position: absolute;
	right: 16px;
	top: 50%;
	width: 8px;
	height: 8px;
	border-right: 2px solid #315d26;
	border-bottom: 2px solid #315d26;
	content: "";
	transform: translateY(-50%) rotate(-45deg);
}

.category-grid-section .category-card__media {
	grid-row: 1 / span 2;
	width: 52px;
	aspect-ratio: 1;
}

.category-grid-section .category-card__placeholder {
	border-radius: calc(var(--du-radius) - 2px);
	background:
		linear-gradient(145deg, rgba(255, 255, 255, .82), rgba(243, 248, 235, .88)),
		#f3f8eb;
}

.category-grid-section .category-card__placeholder::before {
	content: none;
}

.category-grid-section .category-card__placeholder::after {
	content: none;
}

.category-grid-section .category-card__title {
	align-self: end;
	min-width: 0;
	font-size: 14px;
	font-weight: 700;
}

.category-grid-section .category-card__count {
	align-self: start;
	color: var(--du-muted);
	font-size: 12px;
}

.du-empty-state {
	position: relative;
	display: grid;
	grid-template-columns: 92px minmax(0, 1fr);
	gap: 26px;
	align-items: start;
	max-width: 860px;
	margin: 0 auto;
	padding: 30px;
	border: 1px solid var(--du-border-soft);
	border-left: 4px solid #315d26;
	border-radius: var(--du-radius);
	background:
		linear-gradient(135deg, rgba(255, 255, 255, .78), rgba(244, 241, 232, .6)),
		#fffdf8;
	box-shadow: 0 12px 34px rgba(29, 39, 22, .07);
}

.du-empty-state__mark {
	position: relative;
	width: 78px;
	aspect-ratio: 1;
	border: 1px solid rgba(49, 93, 38, .18);
	border-radius: var(--du-radius);
	background: #f4f1e8;
}

.du-empty-state__mark::before,
.du-empty-state__mark::after {
	position: absolute;
	content: "";
}

.du-empty-state__mark::before {
	inset: 22px 17px 18px;
	border: 2px solid rgba(49, 93, 38, .38);
	border-top-width: 5px;
	border-radius: 3px;
}

.du-empty-state__mark::after {
	right: 17px;
	bottom: 18px;
	width: 18px;
	height: 2px;
	background: rgba(217, 154, 43, .72);
	transform: rotate(-42deg);
	transform-origin: right center;
}

.du-empty-state h2 {
	margin: 0 0 9px;
	color: var(--du-heading);
	font-family: var(--du-font-heading);
	font-size: clamp(22px, 3vw, 32px);
	font-weight: 600;
	line-height: 1.14;
}

.du-empty-state p {
	max-width: 600px;
	margin: 0;
	color: var(--du-muted);
	font-size: 15px;
	line-height: 1.65;
}

.du-empty-state__search {
	max-width: 620px;
	margin-top: 20px;
}

.du-empty-state__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 18px;
}

.du-empty-state__actions .button {
	min-height: 44px;
	background-color: #315d26;
	color: #fff;
}

.du-empty-state__actions .button:hover,
.du-empty-state__actions .button:focus {
	background-color: var(--du-primary-hover);
	color: #fff;
}

.du-empty-state__terms {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	margin-top: 18px;
	color: var(--du-muted);
	font-size: 13px;
	line-height: 1.35;
}

.du-empty-state__terms span {
	margin-right: 2px;
}

.du-empty-state__terms a {
	display: inline-flex;
	align-items: center;
	min-height: 32px;
	padding: 6px 10px;
	border: 1px solid var(--du-border-soft);
	border-radius: var(--du-radius);
	background: #fff;
	color: #315d26;
	font-weight: 700;
}

.du-empty-state__terms a:hover,
.du-empty-state__terms a:focus-visible {
	background: #f0eadc;
	color: var(--du-heading);
}

.site-main--not-found {
	padding-bottom: 58px;
}

.page-hero--not-found {
	padding-block: 46px;
}

.not-found-content {
	padding-block: 42px 0;
}

.du-empty-state--not-found {
	max-width: 980px;
	grid-template-columns: 110px minmax(0, 1fr);
	align-items: center;
}

.du-empty-state--not-found .du-empty-state__mark {
	width: 92px;
}

.du-empty-state--not-found .button-secondary {
	border: 1px solid transparent;
	background: #f4f1e8;
	color: var(--du-heading);
}

.du-empty-state--not-found .button-secondary:hover,
.du-empty-state--not-found .button-secondary:focus-visible {
	border-color: rgba(49, 93, 38, .18);
	background: #ebe5d8;
	color: var(--du-heading);
}

@media (max-width: 1024px) {
	.search-hero {
		grid-template-columns: 1fr;
		gap: 22px;
		align-items: start;
	}

	.search-hero__panel {
		max-width: 760px;
	}

	.home-hero {
		background: #fffdf8;
	}

	.home-hero__grid,
	.home-hero--acf .home-hero__grid {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.home-hero__grid::after {
		display: none;
	}

	.home-hero__panel {
		display: none;
	}

	.home-hero__mobile-signals {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 6px;
		max-width: 600px;
		margin: 12px 0 0;
		padding: 0;
		list-style: none;
	}

	.home-hero__mobile-signals li {
		display: grid;
		gap: 2px;
		align-content: center;
		min-height: 46px;
		padding: 7px 9px;
		border: 1px solid rgba(49, 93, 38, .14);
		background: rgba(244, 241, 232, .74);
	}

	.home-hero__mobile-signals strong {
		display: block;
		overflow-wrap: anywhere;
		color: #315d26;
		font-size: 13px;
		font-weight: 800;
		line-height: 1.25;
	}

	.home-hero__mobile-signals span {
		display: block;
		color: var(--du-muted);
		font-size: 11px;
		font-weight: 700;
		line-height: 1.25;
	}
}

@media (max-width: 1024px) {
	.site-header {
		position: sticky;
		top: 0;
	}

	.header-main__inner {
		min-height: 64px;
		justify-content: space-between;
	}

	.header-cart {
		margin-left: auto;
	}

	.site-logo-text {
		font-size: 21px;
	}

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

	.category-grid-section .category-card__media {
		width: 54px;
		aspect-ratio: 1;
	}

	.category-grid-section .category-card {
		grid-template-columns: 1fr;
		gap: 8px;
		min-height: 118px;
		padding: 14px 34px 14px 14px;
		align-content: start;
	}

	.home-hero__search .product-search {
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto;
	}

	.home-hero__search .product-search__category {
		grid-column: 1 / -1;
		grid-row: 2;
		width: 100%;
		border-top: 0;
		border-right: 1px solid var(--du-form-border);
	}

	.home-hero__search .product-search input[type="search"] {
		border-right: 0;
	}

	.home-hero__search .product-search button {
		grid-column: 2;
		grid-row: 1;
		padding-inline: 18px;
	}
}

@media (max-width: 800px) {
	.page-hero--search {
		padding-block: 34px;
	}

	.search-hero {
		gap: 18px;
	}

	.search-hero__panel {
		padding: 14px;
	}

	.search-results-stack {
		gap: 18px;
	}

	.search-results-section--products {
		padding: 14px;
	}

	.search-results-section__header {
		align-items: start;
		gap: 10px;
	}

	.category-chips {
		display: none;
	}

	body.home .section {
		padding-block: 30px;
	}

	body.home .section-heading {
		text-align: left;
	}

	body.home .section-heading-row {
		margin-bottom: 18px;
	}

	.category-grid-section .category-grid {
		display: flex;
		align-items: flex-start;
		gap: 10px;
		margin-inline: calc(var(--du-gutter) * -1);
		padding-inline: var(--du-gutter);
		padding-bottom: 5px;
		overflow-x: auto;
		scroll-padding-inline: var(--du-gutter);
		scroll-snap-type: x proximity;
		scrollbar-width: thin;
	}

	.category-grid-section .category-card {
		flex: 0 0 220px;
		grid-template-columns: 38px minmax(0, 1fr);
		grid-template-rows: auto auto;
		gap: 2px 10px;
		min-height: 76px;
		padding: 10px 30px 10px 10px;
		align-content: center;
		scroll-snap-align: start;
	}

	.category-grid-section .category-card__media {
		grid-row: 1 / span 2;
		width: 38px;
	}

	.category-grid-section .category-card__title,
	.category-grid-section .category-card__count {
		text-align: left;
	}
}

@media (min-width: 701px) and (max-width: 800px) {
	.category-grid-section .category-grid {
		display: grid;
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 12px;
		margin-inline: 0;
		padding-inline: 0;
		padding-bottom: 0;
		overflow: visible;
		scroll-snap-type: none;
	}

	.category-grid-section .category-card {
		min-width: 0;
	}

	body.home .category-grid-section .category-card:nth-child(n+5) {
		display: none;
	}
}

@media (max-width: 520px) {
	.page-hero--search {
		padding-block: 20px 22px;
	}

	.page-hero--search .page-hero__eyebrow {
		margin-bottom: 5px;
	}

	.page-hero--search .page-hero__text {
		display: none;
	}

	.search-hero {
		gap: 12px;
	}

	.search-hero h1 {
		font-size: 25px;
		line-height: 1.12;
	}

	.search-hero__query-label {
		margin-top: 8px;
	}

	.search-hero__query-label strong {
		padding: 4px 8px;
		font-size: 12px;
	}

	.search-hero__panel {
		gap: 8px;
		padding: 10px;
		box-shadow: 0 10px 24px rgba(29, 39, 22, .055);
	}

	.search-results-stack {
		padding-block: 28px;
	}

	.search-hero__meta {
		align-items: stretch;
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto;
		gap: 8px;
	}

	.search-hero__stat,
	.search-hero__catalog {
		min-height: 34px;
		padding-inline: 9px;
		font-size: 11px;
	}

	.search-hero__catalog {
		border-color: rgba(49, 93, 38, .22);
		background: #f3f8eb;
		color: #315d26;
	}

	.search-hero__terms {
		display: flex;
		flex-wrap: nowrap;
		gap: 6px;
		margin-inline: -10px;
		padding-inline: 10px;
		overflow-x: auto;
		scroll-padding-inline: 10px;
		scrollbar-width: thin;
	}

	.search-hero__terms > span {
		flex: 0 0 auto;
		align-self: center;
		font-size: 11px;
	}

	.search-hero__terms a {
		flex: 0 0 auto;
		justify-content: flex-start;
		max-width: 230px;
		min-height: 30px;
		padding: 5px 8px;
		font-size: 11px;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.announcement-bar a,
	.announcement-bar span {
		min-height: 30px;
		font-size: 12px;
		text-align: center;
	}

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

	.header-main__inner {
		gap: 8px;
	}

	.header-cart {
		min-width: 42px;
		gap: 7px;
		padding-inline: 8px;
	}

	.header-cart__icon {
		width: 22px;
		height: 22px;
	}

	.header-cart__icon svg {
		width: 20px;
		height: 20px;
	}

	.header-cart__count {
		min-width: 17px;
		height: 17px;
		padding-inline: 4px;
		font-size: 9px;
		line-height: 17px;
	}

	.home-hero__actions {
		display: grid;
		gap: 7px;
	}

	.home-hero__actions .button {
		width: 100%;
		justify-content: center;
		min-height: 42px;
	}

	.home-hero__search {
		margin-top: 7px;
	}

	.home-hero__content {
		padding-block: 14px 16px;
	}

	.home-hero__eyebrow {
		margin-bottom: 5px;
		font-size: 12px;
	}

	.home-hero h1 {
		font-size: 27px;
		line-height: 1.1;
	}

	.home-hero p {
		margin-block: 7px 0;
		font-size: 13.5px;
		line-height: 1.48;
	}

	.home-hero__actions {
		margin-top: 10px;
	}

	.home-hero__mobile-signals {
		gap: 4px;
		margin-top: 7px;
	}

	.home-hero__mobile-signals li {
		min-height: 38px;
		padding: 5px 6px;
	}

	.home-hero__mobile-signals strong {
		font-size: 12px;
	}

	.home-hero__mobile-signals span {
		font-size: 10px;
	}

	.category-chips {
		display: none;
	}

	body.home .section {
		padding-block: 25px;
	}

	body.home .section-heading {
		text-align: left;
	}

	body.home .section-heading-row {
		align-items: center;
		margin-bottom: 14px;
	}

	body.home .section-heading__title {
		font-size: 22px;
		line-height: 1.15;
	}

	.section-heading-link {
		min-height: 34px;
		padding: 7px 10px;
		font-size: 11px;
	}

	body.home .category-grid-section {
		padding-block: 24px 22px;
	}

	body.home .product-grid-section {
		padding-block: 24px 32px;
	}

	.category-grid-section .category-grid {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 9px;
		margin-inline: 0;
		padding-inline: 0;
		padding-bottom: 0;
		overflow: visible;
		scroll-snap-type: none;
	}

	.category-grid-section .category-card {
		grid-template-columns: 34px minmax(0, 1fr);
		grid-template-rows: auto auto;
		gap: 2px 9px;
		min-width: 0;
		min-height: 68px;
		padding: 9px 23px 9px 9px;
		align-content: center;
	}

	.category-grid-section .category-card__media {
		grid-row: 1 / span 2;
		width: 34px;
	}

	.category-grid-section .category-card__placeholder::before {
		width: 100%;
		height: 100%;
		font-size: 11px;
	}

	.category-grid-section .category-card__placeholder::after {
		right: 6px;
		bottom: 6px;
		width: 9px;
		height: 2px;
	}

	.category-grid-section .category-card__title,
	.category-grid-section .category-card__count {
		text-align: left;
	}

	.category-grid-section .category-card__title {
		font-size: 13px;
		line-height: 1.25;
	}

	body.home .category-grid-section .category-card:nth-child(n+5) {
		display: none;
	}

	.du-empty-state {
		grid-template-columns: 1fr;
		gap: 18px;
		padding: 22px;
	}

	.du-empty-state__mark {
		width: 62px;
	}

	.du-empty-state__search .product-search {
		grid-template-columns: 1fr auto;
	}

	.du-empty-state__actions .button {
		width: 100%;
	}

	.page-hero--compact:not(.page-hero--search):not(.page-hero--not-found) {
		padding-block: 36px;
	}

	.page-hero--compact:not(.page-hero--search):not(.page-hero--not-found) h1 {
		font-size: 29px;
		line-height: 1.15;
	}

	.page-hero--not-found {
		padding-block: 28px;
	}

	.page-hero--not-found h1 {
		font-size: 28px;
		line-height: 1.15;
	}

	.not-found-content {
		padding-block-start: 28px;
	}

	.du-empty-state--not-found {
		gap: 14px;
		padding: 20px 22px;
	}

	.du-empty-state--not-found .du-empty-state__mark {
		width: 58px;
	}

	.du-empty-state--not-found h2 {
		margin-bottom: 8px;
		font-size: 23px;
	}

	.du-empty-state--not-found p {
		font-size: 14px;
		line-height: 1.55;
	}

	.du-empty-state--not-found .du-empty-state__search {
		margin-top: 16px;
	}

	.du-empty-state--not-found .du-empty-state__actions,
	.du-empty-state--not-found .du-empty-state__terms {
		margin-top: 14px;
	}

	.du-empty-state--not-found .du-empty-state__terms a:nth-of-type(n+5) {
		display: none;
	}

	.page-content__body--info {
		padding-block: 28px 42px;
	}

	.page-info-panel {
		gap: 16px;
	}

	.page-info-panel__intro,
	.page-contact-panel {
		padding: 18px 20px;
	}

	.page-info-panel h2 {
		font-size: 23px;
	}

	.page-info-panel__text {
		font-size: 14px;
		line-height: 1.55;
	}

	.page-quick-links {
		display: grid;
		grid-template-columns: 1fr;
		gap: 9px;
	}

	.page-quick-links .button {
		width: 100%;
		min-height: 44px;
	}

	.page-quick-links .button-secondary {
		min-height: 42px;
		border: 1px solid rgba(49, 93, 38, .22);
		background: #f8fbf2;
		color: #315d26;
	}

	.page-quick-links .button-secondary:hover,
	.page-quick-links .button-secondary:focus-visible {
		border-color: rgba(49, 93, 38, .28);
		background: #f3f8eb;
		color: #24481d;
	}

	.page-info-highlights,
	.page-trust-strip {
		grid-template-columns: 1fr;
	}

	.page-info-highlights__item {
		display: grid;
		grid-template-columns: 92px minmax(0, 1fr);
		gap: 8px 12px;
		align-items: center;
	}

	.page-info-highlights__item strong {
		margin: 0;
		font-size: 20px;
	}

	.page-contact-map {
		min-height: 210px;
		padding: 22px;
	}

	.page-contact-map strong {
		font-size: 19px;
	}
}

@media (max-width: 760px) {
	.site-footer {
		margin-top: 34px;
	}

	.footer-benefits {
		padding-block: 16px;
	}

	.footer-benefits__lead {
		display: block;
	}

	.footer-benefits__lead strong {
		max-width: none;
		font-size: 17px;
	}

	.footer-benefits__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 10px;
	}

	.footer-benefits .benefit-card {
		grid-template-columns: 1fr;
		grid-template-rows: auto minmax(calc(1.18em * 2), auto) 1fr;
		gap: 8px;
		min-height: 118px;
		padding: 13px;
		justify-items: center;
		text-align: center;
	}

	.footer-benefits .benefit-card:first-child {
		grid-column: auto;
	}

	.benefit-card__icon {
		grid-row: auto;
		width: 34px;
		height: 34px;
	}

	.footer-benefits .benefit-card strong {
		min-height: calc(1.18em * 2);
		font-size: 11px;
		line-height: 1.18;
	}

	.footer-benefits .benefit-card span:not(.benefit-card__icon) {
		font-size: 12px;
		line-height: 1.35;
	}

	.footer-main {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 18px 16px;
		padding-block: 20px;
	}

	.footer-main > .footer-column:not(.footer-column--contact) {
		order: 1;
	}

	.footer-column--contact {
		order: 2;
		grid-column: 1 / -1;
		display: block;
		padding: 16px;
	}

	.site-logo-text--footer {
		margin-bottom: 8px;
		font-size: 22px;
	}

	.footer-contact__text {
		margin-bottom: 10px;
		font-size: 13px;
		line-height: 1.45;
	}

	.footer-contact {
		gap: 6px;
		font-size: 13px;
	}

	.footer-column h2 {
		margin-bottom: 8px;
		font-size: 12px;
	}

	.footer-menu a {
		min-height: 26px;
		font-size: 13px;
	}

	.footer-bottom p {
		padding-block: 12px;
	}
}

@media (min-width: 761px) and (max-width: 900px) {
	.footer-benefits__inner {
		grid-template-columns: 1fr;
	}

	.footer-benefits__lead {
		display: flex;
		align-items: end;
		justify-content: space-between;
		gap: 18px;
	}

	.footer-benefits__lead strong {
		max-width: 360px;
	}

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

	.footer-benefits .benefit-card {
		grid-template-columns: 34px minmax(0, 1fr);
		grid-template-rows: minmax(34px, auto) 1fr;
		min-height: 128px;
		padding: 14px;
		justify-items: start;
		text-align: left;
	}

	.benefit-card__icon {
		grid-row: 1 / span 2;
		width: 34px;
		height: 34px;
	}

	.footer-benefits .benefit-card strong {
		min-height: calc(1.18em * 2);
		font-size: 11px;
	}

	.footer-benefits .benefit-card span:not(.benefit-card__icon) {
		font-size: 12px;
	}

	.footer-main {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 24px;
	}

	.footer-column--contact {
		grid-column: 1 / -1;
		display: grid;
		grid-template-columns: minmax(0, 1fr) minmax(240px, .8fr);
		gap: 10px 24px;
	}

	.footer-column--contact .site-logo-text--footer,
	.footer-column--contact .footer-contact__text,
	.footer-column--contact .footer-social,
	.footer-column--contact .footer-legal {
		grid-column: 1;
	}

	.footer-column--contact .footer-contact {
		grid-column: 2;
		grid-row: 1 / span 4;
		align-self: center;
	}
}

@media (max-width: 420px) {
	.footer-benefits__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 8px;
	}

	.footer-benefits .benefit-card {
		grid-template-columns: 1fr;
		grid-template-rows: auto minmax(calc(1.18em * 2), auto);
		gap: 7px;
		min-height: 72px;
		padding: 9px 7px;
		align-content: center;
		justify-items: center;
		text-align: center;
	}

	.footer-benefits .benefit-card:first-child {
		grid-column: auto;
		min-height: 72px;
	}

	.footer-benefits .benefit-card span:not(.benefit-card__icon) {
		display: none;
		font-size: 11px;
		line-height: 1.25;
	}

	.footer-benefits .benefit-card strong {
		max-width: 92px;
		font-size: 10px;
		font-weight: 800;
		line-height: 1.18;
	}

	.benefit-card__icon {
		grid-row: auto;
		width: 28px;
		height: 28px;
	}

	.footer-column--contact {
		padding: 0 0 0 14px;
		border-width: 0 0 0 3px;
		background: transparent;
		box-shadow: none;
	}

	.site-logo-text--footer {
		margin-bottom: 6px;
		font-size: 21px;
	}

	.footer-contact__text {
		max-width: 300px;
		margin-bottom: 8px;
		font-size: 12px;
	}

	.footer-contact {
		gap: 5px;
		font-size: 12px;
	}

	.footer-column h2 {
		margin-bottom: 6px;
	}

	.footer-menu a {
		min-height: 24px;
		font-size: 12px;
	}
}

/* Homepage commerce board redesign. */
body.home .site-main {
	background:
		linear-gradient(180deg, #f7f3e9 0, #fbfaf6 520px, #fffdf8 100%);
}

.home-hero--storefront {
	position: relative;
	overflow: hidden;
	border-bottom: 1px solid rgba(49, 93, 38, .12);
	background:
		linear-gradient(135deg, rgba(49, 93, 38, .10) 0, rgba(49, 93, 38, 0) 36%),
		linear-gradient(100deg, #fffdf8 0, #f7f1e4 56%, #eee6d4 100%);
}

.home-hero--storefront::before {
	position: absolute;
	inset: 0;
	background:
		repeating-linear-gradient(90deg, rgba(49, 93, 38, .036) 0 1px, transparent 1px 58px),
		repeating-linear-gradient(0deg, rgba(139, 118, 31, .026) 0 1px, transparent 1px 58px);
	content: "";
	pointer-events: none;
}

.home-hero--storefront .home-hero__grid {
	position: relative;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 410px);
	gap: 54px;
	min-height: 500px;
	align-items: center;
	padding-block: 48px;
}

.home-hero--storefront .home-hero__content {
	max-width: 760px;
	padding-block: 0;
}

.home-hero--storefront .home-hero__eyebrow {
	display: inline-flex;
	min-height: 30px;
	align-items: center;
	margin-bottom: 13px;
	padding: 6px 10px;
	border-left: 4px solid var(--du-primary);
	background: rgba(255, 255, 255, .72);
	color: #44533d;
	font-size: 12px;
	font-weight: 800;
	line-height: 1.2;
	text-transform: none;
}

.home-hero--storefront h1 {
	max-width: 760px;
	font-size: clamp(40px, 5vw, 70px);
	font-weight: 750;
	line-height: .98;
	text-wrap: balance;
}

.home-hero--storefront p {
	max-width: 650px;
	margin-top: 18px;
	color: #53604e;
	font-size: 17px;
	line-height: 1.68;
}

.home-hero--storefront .home-hero__search {
	max-width: 720px;
	margin-top: 28px;
}

.home-hero--storefront .home-hero__search .product-search {
	border: 1px solid rgba(49, 93, 38, .16);
	background: #fff;
	box-shadow: 0 18px 40px rgba(29, 39, 22, .10);
}

.home-hero--storefront .home-hero__actions {
	gap: 12px;
	margin-top: 18px;
}

.home-hero--storefront .home-hero__actions .button {
	min-height: 46px;
	padding-inline: 20px;
}

.home-hero__finder {
	position: relative;
	display: grid;
	gap: 18px;
	padding: 24px;
	border: 1px solid rgba(49, 93, 38, .16);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(255, 253, 248, .86)),
		#fffdf8;
	box-shadow: 0 20px 48px rgba(29, 39, 22, .12);
}

.home-hero__finder::before {
	position: absolute;
	inset: 0 auto 0 0;
	width: 5px;
	background: linear-gradient(180deg, var(--du-primary), var(--du-accent));
	content: "";
}

.home-hero__finder-head {
	display: grid;
	gap: 5px;
	padding-left: 8px;
}

.home-hero__finder-head span {
	color: #6f7d64;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.home-hero__finder-head h2 {
	margin: 0;
	color: var(--du-heading);
	font-family: var(--du-font-heading);
	font-size: 24px;
	line-height: 1.15;
}

.home-hero__finder-list {
	display: grid;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.home-hero__finder-list li {
	border-top: 1px solid var(--du-border-soft);
}

.home-hero__finder-list a {
	display: grid;
 	grid-template-columns: 42px minmax(0, 1fr);
	gap: 12px;
	align-items: center;
	min-height: 62px;
	padding: 10px 0;
	color: var(--du-heading);
}


.home-hero__finder-icon {
	display: block;
	width: 42px;
	height: 42px;
	overflow: hidden;
	border: 1px solid rgba(49, 93, 38, .18);
	background: #eef4e6;
}

.home-hero__finder-icon img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}


.home-hero__finder-title {
	min-width: 0;
	overflow: hidden;
	font-family: var(--du-font-heading);
	font-size: 14px;
	font-weight: 750;
	line-height: 1.25;
	text-overflow: ellipsis;
}
.home-hero__finder-list a:hover .home-hero__finder-title,
.home-hero__finder-list a:focus-visible .home-hero__finder-title {
	color: var(--du-primary);
}

.home-hero__finder-note {
	display: grid;
	gap: 3px;
	padding: 13px 14px;
	border: 1px solid rgba(251, 188, 52, .38);
	background: #fff8e6;
}

.home-hero__finder-note strong {
	color: var(--du-heading);
	font-family: var(--du-font-heading);
	font-size: 18px;
	line-height: 1.1;
}

.home-hero__finder-note span {
	color: #6f623f;
	font-size: 12px;
	line-height: 1.35;
}

body.home .category-grid-section {
	padding-block: 50px 28px;
}

body.home .category-grid-section .section-heading__text,
body.home .benefits-section .section-heading__text,
body.home .product-grid-section .section-heading__text {
	margin-inline: 0;
}

body.home .category-grid-section .category-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}

body.home .category-grid-section .category-card {
	position: relative;
	grid-template-columns: 56px minmax(0, 1fr);
	gap: 13px;
	min-height: 94px;
	padding: 16px 42px 16px 16px;
	align-items: center;
	border: 1px solid rgba(49, 93, 38, .12);
	background: #fffdf8;
	box-shadow: 0 10px 28px rgba(29, 39, 22, .045);
	text-align: left;
}

body.home .category-grid-section .category-card::after {
	right: 14px;
	background: #eef4e6;
}

body.home .category-grid-section .category-card:hover,
body.home .category-grid-section .category-card:focus-visible {
	background: #fff;
	box-shadow: 0 16px 34px rgba(29, 39, 22, .075);
}

body.home .category-grid-section .category-card__media {
	width: 56px;
}

body.home .category-grid-section .category-card__title {
	color: var(--du-heading);
	font-size: 14px;
	line-height: 1.24;
	text-transform: none;
}

body.home .category-grid-section .category-card__count {
	margin-top: 4px;
	font-size: 12px;
	line-height: 1.25;
}

body.home .benefits-section {
	padding-block: 24px;
	background: #f1ecdf;
}

body.home .benefits-section .container {
	display: block;
}

body.home .benefits-section .section-heading {
	margin: 0;
	text-align: left;
}

body.home .benefits-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	align-items: stretch;
}

body.home .benefits-section .benefit-card {
	position: relative;
	display: grid;
	grid-template-rows: minmax(calc(1.2em * 2), auto) 1fr;
	gap: 12px;
	width: 100%;
	height: 100%;
	min-height: 120px;
	padding: 20px 22px 20px 24px;
	border-color: rgba(49, 93, 38, .12);
	background: #fffdf8;
	text-align: left;
	box-shadow: 0 12px 30px rgba(29, 39, 22, .055);
}

body.home .benefits-section .benefit-card::before {
	position: absolute;
	top: 18px;
	left: 0;
	width: 4px;
	height: 34px;
	background: var(--du-primary);
	content: "";
}

body.home .benefits-section .benefit-card strong {
	align-self: start;
	min-height: calc(1.2em * 2);
	font-size: 14px;
	line-height: 1.2;
	text-transform: uppercase;
}

body.home .benefits-section .benefit-card span {
	align-self: start;
	color: var(--du-muted);
	font-size: 13px;
	line-height: 1.45;
}

body.home .product-grid-section {
	padding-block: 46px 64px;
}

body.home .product-grid-section .section-heading-row {
	align-items: start;
}

body.home .product-grid-section .section-heading {
	max-width: 720px;
}

@media (max-width: 1024px) {
	.home-hero--storefront .home-hero__grid {
		grid-template-columns: 1fr;
		gap: 22px;
		min-height: 0;
		padding-block: 34px;
	}

	.home-hero__finder {
		display: none;
	}

	body.home .benefits-section .container {
		grid-template-columns: 1fr;
		gap: 18px;
	}
}

@media (max-width: 900px) and (min-width: 701px) {
	body.home .category-grid-section .category-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	body.home .category-grid-section .category-card {
		min-height: 92px;
	}
}

@media (max-width: 700px) {
	body.home .site-main {
		background:
			linear-gradient(180deg, #f7f3e9 0, #fbfaf6 420px, #fffdf8 100%);
	}

	.home-hero--storefront .home-hero__grid {
		padding-block: 24px 26px;
	}

	.home-hero--storefront .home-hero__eyebrow {
		margin-bottom: 10px;
		font-size: 11px;
	}

	.home-hero--storefront h1 {
		font-size: 33px;
		line-height: 1;
	}

	.home-hero--storefront p {
		margin-top: 13px;
		font-size: 14px;
		line-height: 1.55;
	}

	.home-hero--storefront .home-hero__search {
		margin-top: 18px;
	}

	.home-hero--storefront .home-hero__actions {
		grid-template-columns: 1fr;
		margin-top: 12px;
	}

	.home-hero__finder {
		gap: 12px;
		padding: 15px;
	}

	.home-hero__finder-head h2 {
		font-size: 18px;
	}

	.home-hero__finder-list {
		grid-template-columns: 1fr;
	}

	.home-hero__finder-list a {
		min-height: 50px;
	}

	.home-hero__finder-list li:nth-child(n+4) {
		display: none;
	}

	body.home .category-grid-section {
		padding-block: 32px 18px;
	}

	body.home .category-grid-section .category-grid {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	body.home .category-grid-section .category-card {
		grid-template-columns: 44px minmax(0, 1fr);
		min-height: 70px;
		padding: 12px 38px 12px 12px;
	}

	body.home .category-grid-section .category-card__media {
		width: 44px;
	}

	body.home .category-grid-section .category-card:nth-child(n+6) {
		display: none;
	}

	body.home .benefits-section {
		padding-block: 22px;
	}

	body.home .benefits-grid {
		grid-template-columns: 1fr;
		gap: 9px;
	}

	body.home .benefits-section .benefit-card {
		min-height: auto;
		padding-block: 14px;
	}

	body.home .product-grid-section {
		padding-block: 34px 44px;
	}
}
