:root {
	--color-ink: #17211c;
	--color-muted: #65746b;
	--color-line: #dfe5dc;
	--color-paper: #fbfaf3;
	--color-surface: #ffffff;
	--color-sage: #e8efe4;
	--color-cream: #f5efe2;
	--color-forest: #073820;
	--color-moss: #6d8267;
	--color-gold: #b88a44;
	--shadow-soft: 0 18px 50px rgba(23, 33, 28, 0.14);
	--radius: 8px;
	--max-width: 1180px;
	--narrow-width: 780px;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	background: var(--color-paper);
	color: var(--color-ink);
	font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.65;
}

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

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

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

h1,
h2,
h3,
h4 {
	color: var(--color-ink);
	font-family: "Playfair Display", Georgia, serif;
	line-height: 1.08;
	margin: 0 0 0.65em;
}

h1 {
	font-size: clamp(2.55rem, 8vw, 5.8rem);
	letter-spacing: 0;
}

h2 {
	font-size: clamp(2rem, 5vw, 3.4rem);
}

h3 {
	font-size: 1.45rem;
}

p {
	margin: 0 0 1rem;
}

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	height: 1px;
	overflow: hidden;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.skip-link:focus {
	background: var(--color-surface);
	clip: auto !important;
	display: block;
	height: auto;
	left: 1rem;
	padding: 0.75rem 1rem;
	top: 1rem;
	width: auto;
	z-index: 100000;
}

.content-wrap {
	margin: 0 auto;
	max-width: var(--max-width);
	padding: 0 1.25rem;
	width: 100%;
}

.content-wrap--narrow {
	max-width: var(--narrow-width);
}

.site-header {
	background: #06341f;
	border-bottom: 1px solid rgba(184, 138, 68, 0.65);
	position: sticky;
	top: 0;
	z-index: 50;
}

.site-header__inner {
	align-items: center;
	display: flex;
	gap: 1rem;
	justify-content: space-between;
	margin: 0 auto;
	max-width: 1380px;
	min-height: 68px;
	padding: 0.55rem 1.75rem;
}

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

.site-branding__name,
.footer-brand {
	display: block;
	font-family: "Playfair Display", Georgia, serif;
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.42);
}

.site-branding__tagline {
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.78rem;
	margin: 0;
}

.custom-logo {
	max-height: 58px;
	width: auto;
}

.site-header a,
.site-branding__name {
	color: #fff;
}

.primary-navigation {
	background: var(--color-forest);
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	left: 0;
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	right: 0;
	top: 100%;
	transform: translateY(-10px);
	visibility: hidden;
}

.primary-navigation.is-open {
	max-height: 560px;
	opacity: 1;
	transform: translateY(0);
	visibility: visible;
}

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

.primary-navigation li {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.primary-navigation a {
	color: #fff;
	display: block;
	font-size: 1rem;
	font-weight: 800;
	line-height: 1;
	padding: 1rem 1.25rem;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
	transform: translateY(0);
}

.primary-navigation a:hover,
.primary-navigation a:focus,
.primary-navigation .current-menu-item > a,
.primary-navigation .current_page_item > a {
	color: #f1f0e4;
}

.primary-navigation .current-menu-item > a,
.primary-navigation .current_page_item > a {
	position: relative;
}

.primary-navigation .current-menu-item > a::after,
.primary-navigation .current_page_item > a::after {
	background: #f1f0e4;
	border-radius: 999px;
	bottom: 0.55rem;
	content: "";
	height: 3px;
	left: 1.25rem;
	position: absolute;
	right: 1.25rem;
	transform: scaleX(1);
	transform-origin: left center;
}

.menu-toggle {
	align-items: center;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: var(--radius);
	display: inline-flex;
	flex-direction: column;
	gap: 4px;
	height: 42px;
	justify-content: center;
	padding: 0;
	width: 42px;
}

.menu-toggle span:not(.screen-reader-text) {
	background: #fff;
	display: block;
	height: 2px;
	width: 18px;
}

.header-actions {
	display: none;
}

.button--shop-now {
	background: #f1f0e4;
	border-color: rgba(255, 255, 255, 0.35);
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.28);
	color: var(--color-forest);
	gap: 0.55rem;
	min-height: 44px;
	padding: 0.7rem 1.05rem;
}

.button--shop-now:hover,
.button--shop-now:focus {
	color: var(--color-forest);
}

.cart-mark {
	border: 2px solid currentColor;
	border-top: 0;
	display: inline-block;
	height: 12px;
	position: relative;
	width: 14px;
}

.cart-mark::before {
	border-top: 2px solid currentColor;
	content: "";
	height: 7px;
	left: -4px;
	position: absolute;
	top: -5px;
	transform: rotate(12deg);
	width: 17px;
}

.cart-mark::after {
	background: currentColor;
	border-radius: 999px;
	box-shadow: 10px 0 0 currentColor;
	content: "";
	height: 3px;
	left: 1px;
	position: absolute;
	top: 14px;
	width: 3px;
}

.button,
.wp-block-button__link,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
	align-items: center;
	border: 1px solid transparent;
	border-radius: var(--radius);
	cursor: pointer;
	display: inline-flex;
	font-family: Inter, system-ui, sans-serif;
	font-size: 0.88rem;
	font-weight: 800;
	justify-content: center;
	min-height: 44px;
	padding: 0.75rem 1rem;
	text-align: center;
}

.button--dark,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
	background: var(--color-forest);
	color: #fff;
}

.button--light {
	background: #f1f0e4;
	color: var(--color-ink);
}

.button--outline-light {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.72);
	color: #fff;
}

.button--ghost,
.button--outline {
	background: transparent;
	border-color: var(--color-line);
	color: var(--color-ink);
}

.text-link {
	border-bottom: 2px solid var(--color-gold);
	color: var(--color-forest);
	font-size: 0.92rem;
	font-weight: 800;
}

.eyebrow {
	color: var(--color-moss);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.hero-section {
	background:
		linear-gradient(90deg, rgba(7, 56, 32, 0.5), rgba(7, 56, 32, 0.9) 28%, rgba(7, 56, 32, 0.9) 68%, rgba(7, 56, 32, 0.4)),
		url("../images/01-hero-homepage-banner.webp");
	background-position: center;
	background-size: cover;
	color: #fff;
	display: grid;
	gap: 2rem;
	justify-items: center;
	min-height: 520px;
	padding: 5rem 1.25rem 3rem;
	text-align: center;
}

.hero-section h1,
.hero-section p,
.hero-section .eyebrow {
	color: #fff;
}

.hero-section__content {
	max-width: 820px;
}

.hero-section__content > p:not(.eyebrow) {
	font-size: 1.08rem;
	margin-left: auto;
	margin-right: auto;
	max-width: 620px;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	justify-content: center;
	margin-top: 1.5rem;
}

.section {
	padding: 2.25rem 0;
}

.section--sage {
	background: var(--color-sage);
}

.section--cream {
	background: var(--color-cream);
}

.section-heading {
	margin-bottom: 1.8rem;
	max-width: 760px;
}

.section-note {
	color: var(--color-muted);
	font-size: 0.95rem;
	font-weight: 600;
}

.section-heading--split {
	align-items: end;
	display: grid;
	gap: 1rem;
	max-width: none;
}

.category-grid,
.affiliate-grid,
.shorts-grid,
.post-grid {
	display: grid;
	gap: 1rem;
}

.home-category-sections {
	display: grid;
	gap: 2.25rem;
}

.home-category-block {
	display: grid;
	gap: 1rem;
}

.home-category-block__heading {
	align-items: center;
	border-bottom: 1px solid var(--color-line);
	display: flex;
	gap: 1rem;
	justify-content: space-between;
	padding-bottom: 0.75rem;
}

.home-category-block__heading h3 {
	font-size: clamp(1.45rem, 4vw, 2rem);
	margin: 0;
}

.post-grid--featured {
	gap: 1.15rem;
}

.post-grid--compact {
	gap: 1rem;
}

.category-card,
.affiliate-card,
.post-card,
.short-card,
.empty-state {
	background: var(--color-surface);
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	box-shadow: 0 10px 30px rgba(23, 33, 28, 0.06);
}

.category-card {
	background: var(--color-surface);
	display: grid;
	gap: 0.45rem;
	grid-template-rows: 118px auto auto;
	overflow: hidden;
	padding: 0 1.15rem 1rem;
	position: relative;
}

.category-card img {
	border-bottom: 1px solid var(--color-line);
	display: block;
	height: 118px;
	margin: 0 -1.15rem 0.4rem;
	object-fit: cover;
	width: calc(100% + 2.3rem);
}

.category-card__icon {
	align-items: center;
	background: var(--color-forest);
	border-radius: 50%;
	display: flex;
	height: 58px;
	justify-content: center;
	left: 1.15rem;
	position: absolute;
	top: 76px;
	width: 58px;
}

.category-card__icon::before {
	color: #fff;
	content: "";
	display: block;
	font-size: 1.7rem;
}

.category-card__icon--leaf::before {
	border: 2px solid #fff;
	border-radius: 50% 0 50% 50%;
	height: 22px;
	transform: rotate(-45deg);
	width: 22px;
}

.category-card__icon--greenhouse::before {
	border: 2px solid #fff;
	border-top-width: 0;
	height: 18px;
	position: relative;
	width: 24px;
}

.category-card__icon--grass::before {
	background: linear-gradient(90deg, transparent 45%, #fff 45% 55%, transparent 55%);
	height: 26px;
	transform: skewX(-18deg);
	width: 26px;
}

.category-card__icon--tools::before {
	background: #fff;
	height: 26px;
	transform: rotate(45deg);
	width: 4px;
}

.category-card strong {
	font-family: "Playfair Display", Georgia, serif;
	font-size: 1.25rem;
	padding-top: 0.45rem;
}

.category-card small {
	color: var(--color-muted);
	font-size: 0.88rem;
	line-height: 1.35;
}

.category-card__arrow {
	bottom: 1rem;
	font-size: 1.4rem;
	position: absolute;
	right: 1rem;
}

.short-card {
	aspect-ratio: 1.45 / 1;
	background:
		linear-gradient(180deg, rgba(7, 56, 32, 0.02), rgba(7, 56, 32, 0.78)),
		var(--color-moss);
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	overflow: hidden;
	padding: 1rem;
	position: relative;
}

.short-card img {
	height: 100%;
	inset: 0;
	object-fit: cover;
	position: absolute;
	width: 100%;
	z-index: 0;
}

.short-card::after {
	background: linear-gradient(180deg, rgba(7, 56, 32, 0.03), rgba(7, 56, 32, 0.82));
	content: "";
	inset: 0;
	position: absolute;
	z-index: 1;
}

.short-card > * {
	position: relative;
	z-index: 2;
}

.short-card strong {
	font-family: "Playfair Display", Georgia, serif;
	font-size: 1.05rem;
	line-height: 1.1;
}

.short-card__play {
	align-self: center;
	background: rgba(0, 0, 0, 0.5);
	border-radius: 50%;
	height: 44px;
	margin-top: auto;
	width: 44px;
}

.short-card__play::after {
	border-bottom: 8px solid transparent;
	border-left: 13px solid #fff;
	border-top: 8px solid transparent;
	content: "";
	display: block;
	margin: 14px 0 0 17px;
}

.affiliate-card {
	overflow: hidden;
	padding: 0.75rem;
}

.affiliate-card p,
.post-card p {
	color: var(--color-muted);
}

.affiliate-card__media {
	aspect-ratio: 1.7 / 1;
	border-radius: calc(var(--radius) - 2px);
	display: block;
	margin-bottom: 0.85rem;
	object-fit: cover;
	width: 100%;
}

.affiliate-card h3 {
	font-family: Inter, system-ui, sans-serif;
	font-size: 1rem;
	line-height: 1.15;
	margin-bottom: 0.25rem;
}

.affiliate-card p {
	font-size: 0.88rem;
	line-height: 1.35;
}

.affiliate-card__price {
	display: block;
	font-size: 1.1rem;
	margin-bottom: 0.2rem;
}

.affiliate-card__rating {
	color: #dda122;
	font-size: 0.86rem;
	font-weight: 800;
	margin-bottom: 0.75rem;
}

.affiliate-card__rating span {
	color: var(--color-muted);
}

.post-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.post-card__image {
	align-items: center;
	aspect-ratio: 1.35 / 1;
	background: var(--color-sage);
	display: flex;
	justify-content: center;
	overflow: hidden;
}

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

.post-card__image span {
	color: var(--color-moss);
	font-family: "Playfair Display", Georgia, serif;
	font-size: 1.25rem;
	font-weight: 700;
}

.post-card__content {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 1.25rem;
}

.post-card__content p {
	flex: 1;
}

.post-card__button {
	align-self: flex-start;
	margin-top: 0.25rem;
}

.post-card h3 a:hover,
.post-card h3 a:focus {
	color: var(--color-moss);
}

.post-meta {
	color: var(--color-muted);
	display: flex;
	flex-wrap: wrap;
	font-size: 0.78rem;
	font-weight: 800;
	gap: 0.4rem 0.8rem;
	margin-bottom: 0.75rem;
	text-transform: uppercase;
}

.post-meta a {
	color: var(--color-moss);
}

.empty-state {
	color: var(--color-muted);
	grid-column: 1 / -1;
	font-weight: 700;
	padding: 1.25rem;
}

.newsletter-section {
	background:
		url("../images/10-decorative-botanical-leaves.webp") left bottom / 220px auto no-repeat,
		url("../images/10-decorative-botanical-leaves.webp") right bottom / 180px auto no-repeat,
		linear-gradient(90deg, rgba(232, 239, 228, 0.94), rgba(232, 239, 228, 0.88)),
		linear-gradient(135deg, #d8e3cd, #f7f3e9);
	padding: 2.25rem 1.25rem;
}

.newsletter-section__inner {
	background: transparent;
	border-radius: var(--radius);
	color: var(--color-ink);
	display: grid;
	gap: 1.5rem;
	margin: 0 auto;
	max-width: var(--max-width);
	padding: 0;
}

.newsletter-section h2,
.newsletter-section p {
	color: var(--color-ink);
}

.newsletter-section .eyebrow {
	color: var(--color-moss);
}

.newsletter-form {
	display: grid;
	gap: 0.75rem;
}

.footer-newsletter {
	background:
		url("../images/06-newsletter-leaves-left.png") left -3rem bottom -7rem / 240px auto no-repeat,
		url("../images/07-newsletter-leaves-right.png") right -3rem bottom -7rem / 240px auto no-repeat,
		linear-gradient(90deg, rgba(224, 229, 203, 0.98), rgba(235, 235, 214, 0.96));
	border-top: 1px solid rgba(7, 56, 32, 0.12);
	min-height: 142px;
	padding: 1.1rem 1.5rem;
}

.footer-newsletter__inner {
	align-items: center;
	display: grid;
	gap: 2rem;
	margin: 0 auto;
	max-width: 1188px;
	min-height: 106px;
}

.footer-newsletter__intro {
	align-items: center;
	display: grid;
	gap: 1.35rem;
	grid-template-columns: auto 1fr;
}

.footer-newsletter__icon {
	background: var(--color-forest);
	border-radius: 50%;
	box-shadow: 0 6px 16px rgba(7, 56, 32, 0.22);
	display: block;
	height: 96px;
	position: relative;
	width: 96px;
}

.footer-newsletter__icon::before {
	border: 3px solid #fff;
	border-radius: 3px;
	content: "";
	height: 36px;
	left: 27px;
	position: absolute;
	top: 30px;
	width: 42px;
}

.footer-newsletter__icon::after {
	border-bottom: 3px solid #fff;
	border-left: 3px solid #fff;
	content: "";
	height: 22px;
	left: 33px;
	position: absolute;
	top: 30px;
	transform: rotate(-45deg);
	width: 28px;
}

.footer-newsletter h2 {
	font-size: clamp(1.85rem, 4vw, 2.55rem);
	margin-bottom: 0.35rem;
	max-width: 440px;
}

.footer-newsletter p {
	color: var(--color-ink);
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.3;
	margin: 0;
	max-width: 440px;
}

.footer-newsletter__form {
	display: grid;
	gap: 0.55rem;
}

.footer-newsletter__fields {
	display: grid;
	grid-template-columns: 1fr auto;
}

.footer-newsletter__fields input {
	border-color: rgba(7, 56, 32, 0.16);
	border-radius: var(--radius) 0 0 var(--radius);
	min-height: 42px;
}

.footer-newsletter__fields button {
	background: var(--color-forest);
	border: 0;
	border-radius: 0 var(--radius) var(--radius) 0;
	color: #fff;
	cursor: pointer;
	font: inherit;
	font-weight: 800;
	padding: 0.75rem 1.15rem;
}

input,
textarea,
select {
	background: #fff;
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	font: inherit;
	min-height: 46px;
	padding: 0.75rem 0.9rem;
	width: 100%;
}

.archive-header,
.single-hero {
	padding: 4rem 0 2rem;
}

.archive-description {
	color: var(--color-muted);
	max-width: 720px;
}

.single-hero {
	background: var(--color-sage);
	margin-bottom: 3rem;
}

.single-hero__image {
	margin-top: 2rem;
}

.single-hero__image img {
	border-radius: var(--radius);
	box-shadow: var(--shadow-soft);
	width: 100%;
}

.entry-content {
	font-size: 1.08rem;
	padding-bottom: 4rem;
}

.entry-content a {
	color: var(--color-forest);
	text-decoration: underline;
	text-decoration-color: var(--color-gold);
	text-decoration-thickness: 2px;
	text-underline-offset: 3px;
}

.entry-content h2,
.entry-content h3 {
	margin-top: 2rem;
}

.comments-area {
	padding-bottom: 4rem;
}

.empty-state {
	padding: 2rem;
}

.secure-checkout {
	color: var(--color-muted);
	font-weight: 700;
}

.secure-checkout strong {
	color: #635bff;
}

.garden-page {
	background: var(--color-paper);
}

.garden-hero {
	align-items: center;
	background:
		linear-gradient(90deg, rgba(7, 56, 32, 0.18), rgba(7, 56, 32, 0.82) 57%, rgba(7, 56, 32, 0.55)),
		url("../images/01-hero-garden-banner.webp") center / cover no-repeat;
	color: #fff;
	display: grid;
	min-height: 430px;
	padding: 4rem 1.25rem;
}

.garden-hero__content {
	margin-left: auto;
	max-width: min(560px, 100%);
	text-align: center;
}

.garden-hero h1 {
	color: #fff;
	font-size: clamp(2.7rem, 7vw, 5rem);
	margin-bottom: 0.35em;
}

.garden-hero p {
	color: #fff;
	font-size: 1.05rem;
	margin-left: auto;
	margin-right: auto;
	max-width: 480px;
}

.garden-section {
	padding: 2.4rem 1.25rem 0;
}

.garden-category-grid,
.garden-guide-grid {
	display: grid;
	gap: 1.15rem;
}

.garden-category-card,
.garden-tools-panel,
.garden-guide-card,
.garden-newsletter {
	background: rgba(255, 255, 255, 0.78);
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	box-shadow: 0 12px 35px rgba(23, 33, 28, 0.08);
	overflow: hidden;
}

.garden-category-card img,
.garden-guide-card img {
	aspect-ratio: 1.65 / 1;
	height: auto;
	object-fit: cover;
	width: 100%;
}

.garden-category-card > div {
	display: grid;
	grid-template-columns: auto 1fr;
	padding: 1.15rem;
}

.garden-category-card h2,
.garden-category-card p,
.garden-category-card strong {
	grid-column: 2;
}

.garden-category-card h2 {
	font-size: 1.7rem;
	margin-bottom: 0.25rem;
}

.garden-category-card p,
.garden-guide-card p,
.garden-tools-panel p {
	color: var(--color-muted);
}

.garden-category-card strong {
	font-size: 0.88rem;
	margin-top: 0.55rem;
}

.garden-icon,
.garden-mini-icon {
	align-items: center;
	background: #f2f0df;
	border: 1px solid var(--color-line);
	border-radius: 50%;
	display: inline-flex;
	height: 58px;
	justify-content: center;
	margin-right: 1rem;
	width: 58px;
}

.garden-icon::before,
.garden-mini-icon::before {
	border: 2px solid var(--color-forest);
	border-radius: 50% 0 50% 50%;
	content: "";
	display: block;
	height: 20px;
	transform: rotate(-45deg);
	width: 20px;
}

.garden-tools-panel {
	display: grid;
	gap: 1rem;
	padding: 1.2rem;
}

.garden-tools-panel > img {
	aspect-ratio: 1.1 / 1;
	border-radius: var(--radius);
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.garden-tools-panel h2 {
	font-size: 2rem;
}

.garden-tools-panel article {
	padding: 0.75rem;
}

.garden-mini-card {
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	display: grid;
	place-items: start center;
	text-align: center;
}

.garden-mini-card h3 {
	font-size: 1.35rem;
}

.garden-guide-card > div {
	padding: 1rem;
}

.garden-guide-card h3 {
	font-size: 1.25rem;
	margin-bottom: 0.45rem;
}

.garden-guide-card small {
	color: var(--color-muted);
	font-size: 0.8rem;
	font-weight: 600;
}

.garden-newsletter {
	align-items: center;
	display: grid;
	margin-bottom: 0;
	margin-top: 2.4rem;
	min-height: 260px;
	padding: 1.6rem;
	position: relative;
	text-align: center;
}

.garden-newsletter > div {
	margin: 0 auto;
	max-width: 520px;
	position: relative;
	z-index: 1;
}

.garden-newsletter h2 {
	font-size: clamp(2rem, 5vw, 3rem);
}

.garden-newsletter__form {
	display: grid;
	gap: 0.65rem;
	margin: 1.2rem auto 0.75rem;
	max-width: 430px;
}

.garden-newsletter__form input,
.garden-newsletter__form button {
	min-height: 44px;
}

.garden-newsletter__form button {
	background: var(--color-forest);
	border: 0;
	border-radius: var(--radius);
	color: #fff;
	cursor: pointer;
	font: inherit;
	font-weight: 800;
	padding: 0.75rem 1rem;
}

.garden-newsletter__leaf {
	display: none;
	pointer-events: none;
	position: absolute;
	width: 230px;
}

.garden-newsletter__leaf--left {
	bottom: -1.5rem;
	left: 0;
}

.garden-newsletter__leaf--right {
	bottom: -1.5rem;
	right: 0;
}

.greenhouse-page {
	background: var(--color-paper);
}

.greenhouse-hero {
	background:
		linear-gradient(90deg, rgba(7, 56, 32, 0.92), rgba(7, 56, 32, 0.58) 46%, rgba(7, 56, 32, 0.2)),
		url("../images/01-hero-greenhouse-banner.webp") center / cover no-repeat;
	color: #fff;
	min-height: 430px;
	padding: 3.3rem 0;
}

.greenhouse-breadcrumb {
	align-items: center;
	color: rgba(255, 255, 255, 0.9);
	display: flex;
	font-size: 0.9rem;
	font-weight: 700;
	gap: 0.5rem;
	margin-bottom: 1.5rem;
}

.greenhouse-breadcrumb a {
	color: #fff;
}

.greenhouse-hero__content {
	max-width: 560px;
}

.greenhouse-hero h1 {
	color: #fff;
	font-size: clamp(3rem, 8vw, 5.6rem);
	margin-bottom: 0.25em;
}

.greenhouse-hero p {
	color: #fff;
	font-size: 1.12rem;
	max-width: 520px;
}

.greenhouse-section {
	padding: 2.5rem 1.25rem 0;
}

.greenhouse-topic-grid,
.greenhouse-product-grid,
.greenhouse-guide-grid {
	display: grid;
	gap: 1.15rem;
}

.greenhouse-topic-card,
.greenhouse-product-card,
.greenhouse-guide-card {
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	box-shadow: 0 12px 34px rgba(23, 33, 28, 0.08);
	overflow: hidden;
	position: relative;
}

.greenhouse-topic-card > img,
.greenhouse-product-card > img {
	aspect-ratio: 1.55 / 1;
	object-fit: cover;
	width: 100%;
}

.greenhouse-topic-card > div,
.greenhouse-product-card > div,
.greenhouse-guide-card > div {
	padding: 1rem;
}

.greenhouse-topic-card h3,
.greenhouse-product-card h3,
.greenhouse-guide-card h3 {
	font-family: Inter, system-ui, sans-serif;
	font-size: 1rem;
	line-height: 1.2;
	margin-bottom: 0.35rem;
}

.greenhouse-topic-card p,
.greenhouse-product-card p,
.greenhouse-guide-card p {
	color: var(--color-muted);
}

.greenhouse-topic-card strong {
	bottom: 1rem;
	font-size: 1.35rem;
	position: absolute;
	right: 1rem;
}

.greenhouse-topic-icon {
	align-items: center;
	background: var(--color-forest);
	border-radius: 50%;
	display: flex;
	height: 62px;
	justify-content: center;
	left: 1rem;
	position: absolute;
	top: 1rem;
	width: 62px;
}

.greenhouse-topic-icon::before {
	border: 2px solid #fff;
	border-radius: 50% 0 50% 50%;
	content: "";
	display: block;
	height: 23px;
	transform: rotate(-45deg);
	width: 23px;
}

.greenhouse-product-card .button {
	width: 100%;
}

.greenhouse-guide-card {
	display: grid;
}

.greenhouse-guide-card img {
	aspect-ratio: 1.15 / 1;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.greenhouse-guide-card small {
	color: var(--color-muted);
	font-size: 0.78rem;
	font-weight: 700;
}

.page-template-page-greenhouse .footer-newsletter,
.page-id-greenhouse .footer-newsletter {
	background:
		url("../images/11-newsletter-leaves-left.png") left -3rem bottom -7rem / 240px auto no-repeat,
		url("../images/12-newsletter-leaves-right.png") right -3rem bottom -7rem / 240px auto no-repeat,
		linear-gradient(90deg, rgba(224, 229, 203, 0.98), rgba(235, 235, 214, 0.96));
}

.page-template-page-greenhouse .site-footer,
.page-id-greenhouse .site-footer {
	background:
		url("../images/13-footer-leaf-accent.png") right 1.8rem center / 150px auto no-repeat,
		var(--color-forest);
}

.page-template-page-greenhouse .footer-newsletter h2,
.page-id-greenhouse .footer-newsletter h2 {
	max-width: 430px;
}

.site-footer {
	background:
		url("../images/08-footer-leaf-accent.png") right 1.8rem center / 150px auto no-repeat,
		var(--color-forest);
	color: rgba(255, 255, 255, 0.78);
	min-height: 168px;
	padding: 1.1rem 1.5rem 0.8rem;
}

.site-footer__inner {
	align-items: start;
	display: grid;
	gap: 1.5rem;
	margin: 0 auto;
	max-width: 1188px;
}

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

.footer-about {
	max-width: 340px;
}

.footer-brand {
	font-size: 2rem;
	margin-bottom: 0.4rem;
}

.footer-about p {
	font-size: 0.88rem;
	font-weight: 600;
	line-height: 1.35;
	margin-bottom: 0.75rem;
}

.footer-menu li,
.social-links a {
	margin-bottom: 0.45rem;
}

.footer-menu a {
	display: inline-block;
	font-weight: 800;
	line-height: 1.25;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.32);
}

.social-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
}

.social-link {
	align-items: center;
	border: 2px solid rgba(255, 255, 255, 0.8);
	border-radius: 50%;
	display: inline-flex;
	height: 30px;
	justify-content: center;
	position: relative;
	width: 30px;
}

.social-link::before {
	color: #fff;
	font-size: 0.78rem;
	font-weight: 900;
	line-height: 1;
}

.social-link--instagram::before {
	border: 2px solid currentColor;
	border-radius: 6px;
	content: "";
	height: 12px;
	width: 12px;
}

.social-link--youtube::before {
	border-bottom: 5px solid transparent;
	border-left: 9px solid currentColor;
	border-top: 5px solid transparent;
	content: "";
	margin-left: 2px;
}

.social-link--pinterest::before {
	content: "P";
	font-family: Georgia, serif;
}

.social-link--facebook::before {
	content: "f";
	font-family: Arial, sans-serif;
	font-size: 1rem;
}

.site-footer__bottom {
	border-top: 0;
	margin: 0.5rem auto 0;
	max-width: 1188px;
	padding-top: 0;
	text-align: center;
}

.site-footer__bottom p {
	font-size: 0.86rem;
	font-weight: 800;
	margin: 0;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
	background: #fff;
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	padding: 1rem;
}

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

.shop-wrap {
	padding-bottom: 4rem;
	padding-top: 3rem;
}

@media (min-width: 620px) {
	.category-grid,
	.affiliate-grid,
	.post-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.garden-newsletter__form {
		grid-template-columns: 1fr auto;
	}

	.garden-newsletter__form button {
		border-radius: var(--radius);
	}

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

	.newsletter-form {
		grid-template-columns: 1fr auto;
	}
}

@media (min-width: 900px) {
	.site-header__inner {
		min-height: 88px;
	}

	.menu-toggle {
		display: none;
	}

	.primary-navigation {
		background: transparent;
		border-bottom: 0;
		display: block;
		flex: 1 1 auto;
		max-height: none;
		min-width: 0;
		opacity: 1;
		overflow: visible;
		position: static;
		transform: none;
		visibility: visible;
	}

	.primary-navigation ul {
		align-items: center;
		display: flex;
		gap: 1rem;
		justify-content: center;
	}

	.primary-navigation li {
		border-top: 0;
	}

	.primary-navigation a {
		font-size: 0.86rem;
		line-height: 1.2;
		padding: 0;
		white-space: nowrap;
	}

	.primary-navigation a:hover,
	.primary-navigation a:focus {
		transform: translateY(-2px);
	}

	.primary-navigation .current-menu-item > a::after,
	.primary-navigation .current_page_item > a::after {
		bottom: -0.8rem;
		left: 0;
		right: 0;
	}

	.header-actions {
		display: none;
		gap: 0.6rem;
	}

	.hero-section {
		min-height: 430px;
		padding: 5.5rem max(1.25rem, calc((100vw - var(--max-width)) / 2)) 4.25rem;
	}

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

	.garden-hero {
		min-height: 500px;
		padding: 5rem max(1.25rem, calc((100vw - var(--max-width)) / 2));
	}

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

	.garden-tools-panel {
		align-items: stretch;
		grid-template-columns: 1fr 1fr 1fr 0.85fr 0.85fr;
		padding: 1.35rem;
	}

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

	.garden-newsletter {
		margin-bottom: 0;
		padding: 2.2rem 13rem;
	}

	.garden-newsletter__leaf {
		display: block;
	}

	.greenhouse-hero {
		min-height: 420px;
		padding: 4.5rem 0;
	}

	.greenhouse-topic-grid,
	.greenhouse-product-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

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

	.greenhouse-guide-card {
		grid-template-columns: 130px 1fr;
	}

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

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

	.section-heading--split,
	.newsletter-section__inner {
		grid-template-columns: 1fr auto;
	}

	.footer-newsletter__inner {
		grid-template-columns: 560px 420px;
		justify-content: space-between;
	}

	.site-footer__inner {
		align-items: start;
		grid-template-columns: 360px 160px 180px;
		justify-content: start;
		padding-right: 190px;
	}
}

@media (min-width: 1180px) {
	.primary-navigation ul {
		gap: 1.5rem;
	}

	.primary-navigation a {
		font-size: 1rem;
	}

	.header-actions {
		display: flex;
	}
}

@media (prefers-reduced-motion: no-preference) {
	a,
	.button,
	.category-card,
	.post-card,
	.short-card {
		transition: color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
	}

	.primary-navigation {
		transition: max-height 260ms ease, opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
	}

	.primary-navigation a {
		transition: color 180ms ease, transform 180ms ease, text-shadow 180ms ease;
	}

	.primary-navigation a:hover,
	.primary-navigation a:focus {
		text-shadow: 0 2px 8px rgba(255, 255, 255, 0.18);
	}

	.primary-navigation .current-menu-item > a::after,
	.primary-navigation .current_page_item > a::after {
		animation: junecity-menu-underline 360ms ease both;
	}

	.category-card:hover,
	.post-card:hover,
	.short-card:hover {
		box-shadow: var(--shadow-soft);
		transform: translateY(-2px);
	}
}

@keyframes junecity-menu-underline {
	from {
		opacity: 0;
		transform: scaleX(0.2);
	}

	to {
		opacity: 1;
		transform: scaleX(1);
	}
}
