:root {
	--green-dark: #006b2e;
	--green: #008f3a;
	--orange: #f6a800;
	--red: #d71920;
	--bg: #f7faf7;
	--white: #ffffff;
	--text: #1f2933;
	--muted: #667085;
	--border: #e6ece6;
	--shadow: 0 14px 36px rgba(18, 66, 34, 0.12);
	--radius: 8px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 1.55;
}

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

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

button,
input {
	font: inherit;
}

.container {
	width: min(1200px, calc(100% - 32px));
	margin: 0 auto;
}

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

.skip-link:focus {
	z-index: 9999;
	top: 12px;
	left: 12px;
	width: auto;
	height: auto;
	padding: 10px 14px;
	clip: auto;
	background: var(--green-dark);
	color: var(--white);
	border-radius: var(--radius);
}

.top-bar {
	background: #f4f7f4;
	border-bottom: 1px solid var(--border);
	font-size: 13px;
}

.top-bar__inner,
.top-bar__links,
.main-header__inner,
.header-actions,
.site-nav__inner,
.footer-bottom__inner {
	display: flex;
	align-items: center;
}

.top-bar__inner {
	justify-content: space-between;
	min-height: 36px;
	gap: 16px;
}

.top-bar p {
	margin: 0;
	font-weight: 600;
}

.top-bar p span {
	color: var(--green-dark);
	margin-right: 6px;
}

.top-bar__links {
	gap: 22px;
}

.main-header {
	background: var(--white);
}

.main-header__inner {
	min-height: 112px;
	gap: 34px;
	justify-content: space-between;
}

.brand {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 250px;
}

.brand__icon {
	font-size: 52px;
	line-height: 1;
}

.brand__text strong {
	display: block;
	color: var(--green);
	font-size: 26px;
	line-height: 0.95;
	font-weight: 900;
}

.brand__text strong span {
	color: #f39a0a;
}

.brand__text small {
	display: block;
	margin-top: 6px;
	font-size: 12px;
	font-weight: 700;
	color: var(--text);
}

.header-search {
	display: flex;
	flex: 1 1 420px;
	max-width: 520px;
	height: 46px;
	border: 1px solid #dbe4dc;
	border-radius: var(--radius);
	overflow: hidden;
	background: var(--white);
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.header-search input {
	width: 100%;
	border: 0;
	padding: 0 18px;
	outline: none;
	color: var(--text);
}

.header-search button {
	width: 52px;
	border: 0;
	background: var(--green);
	color: var(--white);
	font-size: 24px;
	cursor: pointer;
}

.header-actions {
	gap: 22px;
}

.consult-box {
	display: flex;
	align-items: center;
	gap: 10px;
	white-space: nowrap;
}

.consult-box__icon {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border: 2px solid var(--green);
	border-radius: 50%;
	color: var(--green);
}

.consult-box small,
.cart-link span {
	display: block;
	font-size: 13px;
	color: var(--muted);
}

.consult-box strong {
	display: block;
	color: var(--green);
	font-size: 18px;
}

.cart-link {
	position: relative;
	display: grid;
	gap: 2px;
	justify-items: center;
	min-width: 72px;
	color: var(--green-dark);
}

.cart-link > span:first-child {
	font-size: 30px;
	color: var(--green);
}

.cart-link b {
	position: absolute;
	top: -6px;
	right: 8px;
	display: grid;
	place-items: center;
	width: 20px;
	height: 20px;
	border-radius: 999px;
	background: var(--green);
	color: var(--white);
	font-size: 12px;
}

.site-nav {
	position: sticky;
	top: 0;
	z-index: 50;
	background: var(--green-dark);
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

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

.menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.menu-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	margin: 5px auto;
	background: var(--white);
}

.primary-menu-wrap {
	width: 100%;
}

.primary-menu {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.primary-menu a {
	display: flex;
	align-items: center;
	height: 48px;
	padding: 0 18px;
	color: var(--white);
	font-size: 14px;
	font-weight: 800;
	text-transform: uppercase;
	white-space: nowrap;
}

.primary-menu .current-menu-item > a,
.primary-menu a:hover,
.primary-menu a:focus {
	background: var(--orange);
}

.has-dropdown {
	position: relative;
}

.has-dropdown > a::after {
	content: "⌄";
	margin-left: 7px;
	font-size: 14px;
}

.sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 20;
	min-width: 210px;
	margin: 0;
	padding: 8px;
	list-style: none;
	background: var(--white);
	border-radius: 0 0 var(--radius) var(--radius);
	box-shadow: var(--shadow);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: 0.2s ease;
}

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

.sub-menu a {
	height: auto;
	padding: 10px 12px;
	color: var(--text);
	text-transform: none;
	border-radius: 6px;
}

.hero {
	overflow: hidden;
	background: linear-gradient(90deg, #ffffff 0%, #f3fbf2 48%, #dff3dc 100%);
}

.hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
	align-items: center;
	min-height: 430px;
	gap: 40px;
	padding: 42px 0;
}

.eyebrow {
	margin: 0 0 14px;
	font-weight: 800;
	letter-spacing: 0;
	color: var(--text);
}

.hero h1 {
	margin: 0;
	max-width: 680px;
	font-size: clamp(34px, 4vw, 58px);
	line-height: 1.05;
	text-transform: uppercase;
	letter-spacing: 0;
}

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

.hero h1 em {
	color: #f39a0a;
	font-style: normal;
}

.hero__subtitle {
	margin: 18px 0 26px;
	font-size: 20px;
	color: var(--text);
}

.benefit-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
	margin-bottom: 28px;
}

.benefit-grid div {
	position: relative;
	min-height: 68px;
	padding: 12px 12px 12px 42px;
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.benefit-grid div::before {
	content: "✓";
	position: absolute;
	left: 13px;
	top: 16px;
	display: grid;
	place-items: center;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #e8f8ed;
	color: var(--green);
	font-weight: 900;
}

.benefit-grid strong,
.benefit-grid small {
	display: block;
}

.benefit-grid strong {
	font-size: 13px;
}

.benefit-grid small {
	margin-top: 2px;
	color: var(--muted);
	font-size: 12px;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 24px;
	border-radius: 6px;
	color: var(--white);
	font-weight: 900;
	text-transform: uppercase;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.product-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 24px rgba(0, 107, 46, 0.2);
}

.btn--green {
	background: var(--green);
}

.btn--orange {
	background: var(--orange);
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.hero__media {
	position: relative;
	align-self: stretch;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}

.hero__media img {
	width: 100%;
	height: 100%;
	min-height: 340px;
	object-fit: cover;
	border-radius: 0 0 0 90px;
	filter: saturate(1.06);
}

.quality-badge {
	position: absolute;
	top: 24px;
	right: 20px;
	display: grid;
	place-items: center;
	width: 132px;
	height: 132px;
	padding: 12px;
	border: 7px solid #f8cf4b;
	border-radius: 50%;
	background: #fff8d6;
	color: var(--green-dark);
	text-align: center;
	font-weight: 900;
	line-height: 1.1;
	text-transform: uppercase;
	box-shadow: var(--shadow);
}

.quality-badge strong {
	font-size: 30px;
}

.trust-bar {
	margin-top: -8px;
	padding: 18px 0 28px;
	background: var(--white);
}

.trust-bar__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	padding: 18px;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.trust-bar__grid div {
	position: relative;
	padding: 4px 20px 4px 58px;
	border-right: 1px solid var(--border);
}

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

.trust-bar span {
	position: absolute;
	left: 18px;
	top: 8px;
	display: grid;
	place-items: center;
	width: 30px;
	height: 30px;
	border: 1px solid #b9e2c8;
	border-radius: 50%;
	color: var(--green);
}

.trust-bar strong,
.trust-bar small {
	display: block;
}

.trust-bar strong {
	font-size: 14px;
	text-transform: uppercase;
}

.trust-bar small {
	margin-top: 2px;
	color: var(--muted);
	font-size: 13px;
}

.section {
	padding: 46px 0;
}

.section--light {
	background: #fbfdfb;
}

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

.section-heading h2,
.center-heading h2,
.reason-box h2,
.about-box h2 {
	margin: 0;
	color: var(--green-dark);
	font-size: 28px;
	line-height: 1.2;
	text-transform: uppercase;
	letter-spacing: 0;
}

.section-heading p {
	margin: 8px 0 0;
	color: var(--muted);
}

.section-heading a,
.post-card a {
	color: var(--green);
	font-weight: 800;
}

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

.product-card,
.testimonial-card,
.post-card,
.reason-box {
	overflow: hidden;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: 0 8px 22px rgba(16, 50, 24, 0.08);
}

.product-card {
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow);
}

.product-card img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.product-card__body {
	padding: 14px;
}

.product-card h3 {
	margin: 0 0 4px;
	font-size: 17px;
	line-height: 1.25;
}

.product-card p {
	margin: 0 0 12px;
	color: var(--muted);
	font-size: 13px;
}

.price {
	display: block;
	margin-bottom: 12px;
	color: var(--red);
	font-size: 19px;
	font-weight: 900;
}

.product-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	min-height: 36px;
	padding: 0 12px;
	border-radius: 6px;
	background: var(--green);
	color: var(--white);
	font-size: 13px;
	font-weight: 800;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.why-grid {
	display: grid;
	grid-template-columns: 0.9fr 0.95fr 1.45fr;
	gap: 32px;
	align-items: stretch;
}

.reason-box {
	padding: 28px;
	background: linear-gradient(145deg, #ffffff, #fff9ed);
}

.reason-box ul,
.check-list,
.footer-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.reason-box li {
	position: relative;
	min-height: 58px;
	padding-left: 48px;
	margin-top: 18px;
}

.reason-box span {
	position: absolute;
	left: 0;
	top: 4px;
	color: var(--green);
	font-size: 30px;
}

.reason-box b,
.reason-box small {
	display: block;
}

.reason-box small {
	color: var(--muted);
}

.about-box p {
	margin: 18px 0;
}

.check-list li {
	position: relative;
	padding-left: 28px;
	margin: 12px 0;
}

.check-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 0;
	color: var(--green);
	font-weight: 900;
}

.about-box .btn {
	margin-top: 14px;
}

.farm-gallery {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
}

.farm-gallery img,
.farm-gallery__main {
	border-radius: var(--radius);
	overflow: hidden;
}

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

.farm-gallery__main {
	position: relative;
	grid-column: 1 / -1;
	min-height: 260px;
}

.farm-gallery__main span {
	position: absolute;
	inset: 0;
	margin: auto;
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.92);
	color: var(--green);
	font-size: 24px;
	box-shadow: var(--shadow);
}

.center-heading {
	margin-bottom: 30px;
	text-align: center;
}

.center-heading h2::before,
.center-heading h2::after {
	content: "";
	display: inline-block;
	width: 72px;
	height: 2px;
	margin: 0 16px 8px;
	background: var(--green);
}

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

.testimonial-card {
	padding: 26px;
}

.testimonial-card img {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	object-fit: cover;
	float: left;
	margin-right: 18px;
}

.testimonial-card h3 {
	margin: 6px 0 0;
	font-size: 16px;
}

.testimonial-card small {
	color: var(--muted);
}

.stars {
	margin-top: 8px;
	color: var(--orange);
	letter-spacing: 0;
}

.testimonial-card p {
	clear: both;
	margin: 20px 0 0;
}

.post-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.post-card__image {
	position: relative;
}

.post-card__image img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.post-card time {
	position: absolute;
	left: 12px;
	bottom: 10px;
	padding: 5px 10px;
	border-radius: 4px;
	background: var(--green);
	color: var(--white);
	font-size: 12px;
	font-weight: 800;
}

.post-card__body {
	padding: 18px;
}

.post-card h3 {
	margin: 0 0 10px;
	font-size: 18px;
	line-height: 1.3;
}

.post-card p {
	margin: 0 0 14px;
	color: var(--muted);
}

.site-footer {
	background: linear-gradient(135deg, #00602a, #00441f);
	color: rgba(255, 255, 255, 0.88);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.3fr 1.2fr 0.8fr 1.2fr;
	gap: 42px;
	padding: 48px 0 34px;
}

.footer-title {
	margin: 0 0 16px;
	color: var(--white);
	font-size: 16px;
	text-transform: uppercase;
}

.footer-col p,
.footer-list li {
	margin: 0 0 10px;
}

.footer-list a:hover,
.footer-menu a:hover {
	color: var(--orange);
}

.social-links {
	display: flex;
	gap: 10px;
	margin: 18px 0;
}

.social-links a {
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.14);
	color: var(--white);
	font-weight: 900;
}

.commerce-badge {
	display: inline-flex;
	padding: 8px 12px;
	border: 2px solid #73c7ff;
	border-radius: 6px;
	color: #9edbff;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.newsletter-form {
	display: flex;
	gap: 8px;
	margin-top: 18px;
}

.newsletter-form input {
	min-width: 0;
	flex: 1;
	height: 42px;
	border: 0;
	border-radius: 6px;
	padding: 0 12px;
}

.newsletter-form button {
	border: 0;
	border-radius: 6px;
	padding: 0 18px;
	background: var(--orange);
	color: var(--white);
	font-weight: 900;
	cursor: pointer;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom__inner {
	justify-content: space-between;
	gap: 20px;
	min-height: 58px;
	font-size: 14px;
}

.footer-bottom p {
	margin: 0;
}

.footer-bottom a + a {
	margin-left: 22px;
}

.floating-actions {
	position: fixed;
	right: 18px;
	bottom: 22px;
	z-index: 60;
	display: grid;
	gap: 10px;
}

.floating-actions a,
.floating-actions button {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border: 0;
	border-radius: 50%;
	color: var(--white);
	font-weight: 900;
	box-shadow: var(--shadow);
	cursor: pointer;
}

.float-phone {
	background: var(--green);
}

.float-zalo {
	background: #0a8df0;
	font-size: 12px;
}

.float-messenger {
	background: #00a3ff;
}

.scroll-top {
	background: #1677ff;
}

@media (max-width: 1180px) {
	.product-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

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

	.primary-menu {
		justify-content: flex-start;
		overflow-x: auto;
	}

	.primary-menu a {
		padding: 0 14px;
		font-size: 13px;
	}
}

@media (max-width: 960px) {
	.main-header__inner {
		flex-wrap: wrap;
		gap: 16px;
		padding: 18px 0;
	}

	.brand {
		min-width: 220px;
	}

	.header-search {
		order: 3;
		flex-basis: 100%;
		max-width: none;
	}

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

	.hero__inner {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.hero__media img {
		border-radius: var(--radius);
		min-height: 280px;
	}

	.trust-bar__grid,
	.why-grid,
	.post-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.farm-gallery {
		grid-column: 1 / -1;
	}

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

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

@media (max-width: 720px) {
	.container {
		width: min(100% - 24px, 1200px);
	}

	.top-bar__inner,
	.top-bar__links {
		align-items: flex-start;
		flex-direction: column;
		gap: 6px;
		padding: 8px 0;
	}

	.main-header__inner {
		align-items: flex-start;
	}

	.brand__text strong {
		font-size: 22px;
	}

	.header-actions {
		width: 100%;
		justify-content: space-between;
	}

	.consult-box strong {
		font-size: 16px;
	}

	.site-nav__inner {
		justify-content: flex-end;
	}

	.menu-toggle {
		display: block;
		margin-left: auto;
	}

	.primary-menu-wrap {
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background: var(--green-dark);
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.25s ease;
	}

	.primary-menu-wrap.is-open {
		max-height: 80vh;
		overflow-y: auto;
	}

	.primary-menu {
		display: block;
		padding: 10px 12px;
	}

	.primary-menu a {
		height: auto;
		min-height: 44px;
		border-radius: 6px;
	}

	.sub-menu {
		position: static;
		display: none;
		opacity: 1;
		visibility: visible;
		transform: none;
		margin: 4px 0 8px 12px;
		background: rgba(255, 255, 255, 0.96);
	}

	.has-dropdown.is-open .sub-menu {
		display: block;
	}

	.hero__inner {
		padding: 32px 0;
	}

	.hero h1 {
		font-size: 34px;
	}

	.hero__subtitle {
		font-size: 17px;
	}

	.benefit-grid,
	.trust-bar__grid,
	.product-grid,
	.why-grid,
	.post-grid,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.trust-bar__grid div {
		border-right: 0;
		border-bottom: 1px solid var(--border);
		padding-top: 12px;
		padding-bottom: 12px;
	}

	.trust-bar__grid div:last-child {
		border-bottom: 0;
	}

	.section-heading {
		align-items: flex-start;
		flex-direction: column;
	}

	.center-heading h2::before,
	.center-heading h2::after {
		display: none;
	}

	.hero__actions,
	.hero__actions .btn {
		width: 100%;
	}

	.footer-bottom__inner {
		align-items: flex-start;
		flex-direction: column;
		padding: 16px 0;
	}
}

@media (min-width: 481px) and (max-width: 720px) {
	.product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 420px) {
	.header-actions {
		align-items: flex-start;
		flex-direction: column;
	}

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

	.floating-actions {
		right: 10px;
		bottom: 12px;
	}

	.floating-actions a,
	.floating-actions button {
		width: 42px;
		height: 42px;
	}
}

/* Step 2: Product system */
.archive-hero {
	padding: 34px 0;
	background: linear-gradient(135deg, #ffffff, #eef8ef);
	border-bottom: 1px solid var(--border);
}

.archive-hero h1 {
	margin: 14px 0 8px;
	color: var(--green-dark);
	font-size: 40px;
	line-height: 1.12;
	text-transform: uppercase;
}

.archive-hero p,
.term-description {
	max-width: 760px;
	margin: 0;
	color: var(--muted);
	font-size: 17px;
}

.breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	color: var(--muted);
	font-size: 14px;
}

.breadcrumb a {
	color: var(--green);
	font-weight: 800;
}

.breadcrumb span:last-child {
	color: var(--text);
	font-weight: 700;
}

.product-layout {
	display: grid;
	grid-template-columns: 280px minmax(0, 1fr);
	gap: 30px;
	align-items: start;
}

.product-sidebar {
	position: sticky;
	top: 70px;
}

.filter-toggle {
	display: none;
	width: 100%;
	min-height: 44px;
	border: 0;
	border-radius: var(--radius);
	background: var(--green-dark);
	color: var(--white);
	font-weight: 900;
	cursor: pointer;
}

.filter-box {
	margin-bottom: 16px;
	padding: 20px;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: 0 8px 22px rgba(16, 50, 24, 0.07);
}

.filter-box h2 {
	margin: 0 0 14px;
	color: var(--green-dark);
	font-size: 18px;
	text-transform: uppercase;
}

.filter-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.filter-list li {
	margin: 7px 0;
}

.filter-list ul {
	margin: 7px 0 8px 14px;
	padding: 0 0 0 12px;
	border-left: 2px solid #e4f2e6;
	list-style: none;
}

.filter-list a {
	display: inline-flex;
	color: var(--text);
	font-weight: 700;
}

.filter-list a:hover {
	color: var(--green);
}

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

.archive-product-card {
	overflow: hidden;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: 0 8px 22px rgba(16, 50, 24, 0.08);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.archive-product-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow);
}

.archive-product-card__image img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	background: #eaf5e9;
}

.archive-product-card__body {
	padding: 16px;
}

.product-category-label {
	display: inline-flex;
	align-items: center;
	min-height: 26px;
	margin-bottom: 9px;
	padding: 0 9px;
	border-radius: 999px;
	background: #e8f8ed;
	color: var(--green-dark);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.archive-product-card h3 {
	margin: 0 0 7px;
	font-size: 19px;
	line-height: 1.28;
}

.archive-product-card h3 a:hover {
	color: var(--green);
}

.product-age {
	min-height: 22px;
	margin: 0 0 10px;
	color: var(--muted);
	font-size: 14px;
}

.stock-badge {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	margin-bottom: 14px;
	padding: 0 10px;
	border-radius: 999px;
	background: #fff7dc;
	color: #9a6500;
	font-size: 13px;
	font-weight: 900;
}

.archive-product-card__actions {
	display: grid;
	grid-template-columns: 1fr;
	gap: 9px;
}

.archive-product-card__actions .product-btn,
.archive-product-card__actions .call-btn {
	width: 100%;
}

.call-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 36px;
	padding: 0 12px;
	border-radius: 6px;
	background: var(--orange);
	color: var(--white);
	font-size: 13px;
	font-weight: 900;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tg-add-cart-form {
	margin: 0;
}

.add-cart-btn,
.remove-cart-btn,
.clear-cart-btn {
	border: 0;
	cursor: pointer;
}

.add-cart-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 36px;
	padding: 0 12px;
	border-radius: 6px;
	background: var(--green-dark);
	color: var(--white);
	font-size: 13px;
	font-weight: 900;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.add-cart-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 24px rgba(0, 107, 46, 0.2);
}

.call-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 24px rgba(246, 168, 0, 0.22);
}

.empty-products {
	padding: 34px;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.empty-products h2 {
	margin: 0 0 8px;
	color: var(--green-dark);
}

.navigation.pagination {
	margin-top: 32px;
}

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

.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	border: 1px solid var(--border);
	border-radius: 6px;
	background: var(--white);
	color: var(--green-dark);
	font-weight: 900;
}

.page-numbers.current,
.page-numbers:hover {
	background: var(--green);
	color: var(--white);
}

.product-detail {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
	gap: 42px;
	align-items: start;
	margin-top: 22px;
}

.product-detail__media,
.product-detail__summary,
.product-content-sections section,
.related-products {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: 0 8px 22px rgba(16, 50, 24, 0.08);
}

.product-detail__media {
	overflow: hidden;
}

.product-detail__media img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.product-detail__summary {
	padding: 28px;
}

.product-detail__summary h1 {
	margin: 0 0 14px;
	color: var(--green-dark);
	font-size: 36px;
	line-height: 1.15;
}

.single-product-price {
	display: block;
	margin-bottom: 18px;
	color: var(--red);
	font-size: 30px;
	font-weight: 900;
}

.product-info-table {
	width: 100%;
	margin: 0 0 18px;
	border-collapse: collapse;
}

.product-info-table th,
.product-info-table td {
	padding: 12px 0;
	border-bottom: 1px solid var(--border);
	text-align: left;
	vertical-align: top;
}

.product-info-table th {
	width: 44%;
	color: var(--muted);
	font-weight: 800;
}

.product-short-desc {
	margin: 0 0 22px;
	padding: 14px;
	border-left: 4px solid var(--green);
	border-radius: 6px;
	background: #f0faf2;
	font-weight: 700;
}

.single-product-actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.product-content-sections {
	display: grid;
	gap: 18px;
	margin-top: 30px;
}

.product-content-sections section {
	padding: 24px;
}

.product-content-sections h2,
.related-products h2 {
	margin: 0 0 12px;
	color: var(--green-dark);
	font-size: 24px;
	text-transform: uppercase;
}

.product-content-sections p {
	margin: 0;
}

.related-products {
	margin-top: 30px;
	padding: 24px;
}

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

@media (min-width: 1181px) {
	.product-layout .archive-product-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.product-results {
		min-width: 0;
	}
}

@media (max-width: 1080px) {
	.archive-product-grid,
	.archive-product-grid--related {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.product-detail {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 820px) {
	.product-layout {
		grid-template-columns: 1fr;
	}

	.product-sidebar {
		position: static;
	}

	.filter-toggle {
		display: block;
		margin-bottom: 12px;
	}

	.product-filter-panel {
		display: none;
	}

	.product-filter-panel.is-open {
		display: block;
	}
}

@media (max-width: 600px) {
	.archive-hero h1 {
		font-size: 32px;
	}

	.archive-product-grid,
	.archive-product-grid--related {
		grid-template-columns: 1fr;
	}

	.product-detail__summary {
		padding: 20px;
	}

	.product-detail__summary h1 {
		font-size: 30px;
	}

	.single-product-actions,
	.archive-product-card__actions {
		grid-template-columns: 1fr;
	}

	.product-info-table th,
	.product-info-table td {
		display: block;
		width: 100%;
		padding: 8px 0;
	}

	.product-info-table tr {
		display: block;
		padding: 8px 0;
		border-bottom: 1px solid var(--border);
	}

	.product-info-table th,
	.product-info-table td {
		border-bottom: 0;
	}
}

/* Step 3: cart and checkout */
.tg-notice {
	margin: 0 0 18px;
	padding: 14px 16px;
	border-radius: var(--radius);
	font-weight: 800;
}

.tg-notice--success {
	background: #ecfdf5;
	border: 1px solid #b7ebc8;
	color: var(--green-dark);
}

.tg-notice--error {
	background: #fff1f2;
	border: 1px solid #fecdd3;
	color: var(--red);
}

.cart-layout,
.checkout-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 360px;
	gap: 28px;
	align-items: start;
}

.cart-table-wrap,
.cart-summary,
.checkout-form-box,
.order-summary,
.thank-you-box {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: 0 8px 22px rgba(16, 50, 24, 0.08);
}

.cart-table-wrap {
	overflow: hidden;
}

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

.cart-table th,
.cart-table td {
	padding: 16px;
	border-bottom: 1px solid var(--border);
	text-align: left;
	vertical-align: middle;
}

.cart-table th {
	background: #f3faf4;
	color: var(--green-dark);
	font-size: 13px;
	text-transform: uppercase;
}

.cart-product {
	display: flex;
	align-items: center;
	gap: 12px;
}

.cart-product img {
	width: 70px;
	height: 56px;
	border-radius: 6px;
	object-fit: cover;
}

.qty-input {
	width: 86px;
	height: 40px;
	padding: 0 10px;
	border: 1px solid #dbe4dc;
	border-radius: 6px;
	font-weight: 800;
}

.remove-cart-btn {
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: #fff1f2;
	color: var(--red);
	font-size: 22px;
	font-weight: 900;
}

.cart-summary,
.order-summary,
.checkout-form-box {
	padding: 24px;
}

.cart-summary h2,
.order-summary h2,
.checkout-form-box h2 {
	margin: 0 0 16px;
	color: var(--green-dark);
	font-size: 24px;
	text-transform: uppercase;
}

.cart-summary > div,
.summary-item,
.summary-total {
	display: flex;
	justify-content: space-between;
	gap: 14px;
	padding: 12px 0;
	border-bottom: 1px solid var(--border);
}

.cart-summary > div strong,
.summary-total strong {
	color: var(--red);
	font-size: 22px;
}

.cart-summary p,
.order-summary p {
	color: var(--muted);
}

.cart-summary .btn,
.checkout-submit {
	width: 100%;
	margin-top: 12px;
	border: 0;
}

.cart-continue,
.clear-cart-btn,
.order-phone {
	display: inline-flex;
	justify-content: center;
	width: 100%;
	margin-top: 12px;
	color: var(--green);
	font-weight: 900;
}

.clear-cart-btn {
	min-height: 40px;
	border-radius: 6px;
	background: #fff1f2;
	color: var(--red);
}

.checkout-form-box label {
	display: grid;
	gap: 7px;
	margin-bottom: 16px;
	color: var(--text);
	font-weight: 800;
}

.checkout-form-box input,
.checkout-form-box textarea {
	width: 100%;
	border: 1px solid #dbe4dc;
	border-radius: 6px;
	padding: 12px 14px;
	outline: none;
}

.checkout-form-box input:focus,
.checkout-form-box textarea:focus,
.qty-input:focus {
	border-color: var(--green);
	box-shadow: 0 0 0 3px rgba(0, 143, 58, 0.12);
}

.summary-item span {
	color: var(--muted);
}

.summary-item strong {
	white-space: nowrap;
}

.summary-total {
	margin-top: 10px;
	border-top: 2px solid var(--green);
	border-bottom: 0;
	font-size: 18px;
	font-weight: 900;
}

.single-add-cart-form {
	display: grid;
	grid-template-columns: 120px minmax(0, 1fr);
	gap: 12px;
	align-items: end;
	margin: 0 0 14px;
}

.single-add-cart-form label {
	display: grid;
	gap: 6px;
	color: var(--muted);
	font-size: 13px;
	font-weight: 800;
}

.single-add-cart-form .btn {
	border: 0;
}

.thank-you-box {
	max-width: 720px;
	margin: 0 auto;
	padding: 42px 28px;
	text-align: center;
}

.thank-you-icon {
	display: grid;
	place-items: center;
	width: 74px;
	height: 74px;
	margin: 0 auto 18px;
	border-radius: 50%;
	background: #ecfdf5;
	color: var(--green);
	font-size: 42px;
	font-weight: 900;
}

.thank-you-box h1 {
	margin: 0 0 12px;
	color: var(--green-dark);
	font-size: 36px;
}

.thank-order-code {
	display: inline-flex;
	margin: 10px 0 20px;
	padding: 8px 14px;
	border-radius: 999px;
	background: #fff7dc;
	color: #9a6500;
}

.thank-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
}

@media (max-width: 900px) {
	.cart-layout,
	.checkout-layout {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.cart-table,
	.cart-table thead,
	.cart-table tbody,
	.cart-table th,
	.cart-table td,
	.cart-table tr {
		display: block;
	}

	.cart-table thead {
		display: none;
	}

	.cart-table tr {
		margin: 0;
		padding: 14px;
		border-bottom: 1px solid var(--border);
	}

	.cart-table td {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 14px;
		padding: 10px 0;
		border-bottom: 0;
	}

	.cart-table td::before {
		content: attr(data-label);
		color: var(--muted);
		font-weight: 800;
	}

	.cart-table td:first-child {
		display: block;
	}

	.cart-table td:first-child::before {
		display: none;
	}

	.single-add-cart-form,
	.single-product-actions {
		grid-template-columns: 1fr;
	}

	.qty-input {
		width: 100%;
	}
}

/* Step 4: content pages, guides, SEO pages */
.subpage-hero {
	padding: 36px 0;
	background: linear-gradient(135deg, #ffffff, #eef8ef);
	border-bottom: 1px solid var(--border);
}

.subpage-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 420px;
	gap: 32px;
	align-items: center;
	margin-top: 18px;
}

.subpage-hero h1,
.guide-article h1 {
	margin: 0 0 14px;
	color: var(--green-dark);
	font-size: 42px;
	line-height: 1.12;
}

.subpage-hero p {
	margin: 0;
	color: var(--muted);
	font-size: 18px;
}

.subpage-hero img,
.article-featured {
	width: 100%;
	border-radius: var(--radius);
	object-fit: cover;
	box-shadow: var(--shadow);
}

.about-story,
.process-row,
.cta-band,
.price-table-card,
.contact-info-card,
.contact-form-card,
.guide-article,
.guide-cta,
.search-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: 0 8px 22px rgba(16, 50, 24, 0.08);
}

.about-story,
.process-row,
.cta-band {
	padding: 30px;
}

.about-story h2,
.process-row h2,
.cta-band h2,
.price-table-card h2,
.contact-info-card h2,
.contact-form-card h2,
.guide-cta h2 {
	margin: 0 0 14px;
	color: var(--green-dark);
	text-transform: uppercase;
}

.stat-grid,
.feature-grid,
.guide-grid,
.gallery-grid,
.search-grid {
	display: grid;
	gap: 22px;
}

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

.stat-grid div,
.feature-grid article {
	padding: 24px;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: 0 8px 22px rgba(16, 50, 24, 0.08);
}

.stat-grid strong {
	display: block;
	color: var(--green);
	font-size: 34px;
	font-weight: 950;
}

.stat-grid span {
	color: var(--muted);
	font-weight: 800;
}

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

.feature-grid h2 {
	font-size: 20px;
	color: var(--green-dark);
}

.process-row ol {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 14px;
	margin: 18px 0 0;
	padding: 0;
	list-style: none;
	counter-reset: process;
}

.process-row li {
	position: relative;
	padding: 18px;
	border-radius: var(--radius);
	background: #f0faf2;
	font-weight: 900;
	counter-increment: process;
}

.process-row li::before {
	content: counter(process);
	display: grid;
	place-items: center;
	width: 28px;
	height: 28px;
	margin-bottom: 10px;
	border-radius: 50%;
	background: var(--green);
	color: var(--white);
}

.cta-band {
	text-align: center;
}

.cta-band div,
.article-cta {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
}

.pricing-wrap {
	display: grid;
	gap: 28px;
}

.price-table-card {
	overflow: hidden;
}

.price-table-card h2 {
	padding: 22px 22px 0;
}

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

.price-table th,
.price-table td {
	padding: 14px 18px;
	border-bottom: 1px solid var(--border);
	text-align: left;
}

.price-table th {
	background: #f3faf4;
	color: var(--green-dark);
	font-size: 13px;
	text-transform: uppercase;
}

.price-table td strong {
	color: var(--red);
}

.price-table td a {
	display: inline-flex;
	margin-right: 10px;
	color: var(--green);
	font-weight: 900;
}

.price-note {
	margin: 0;
	padding: 16px;
	border-radius: var(--radius);
	background: #fff7dc;
	color: #9a6500;
	font-weight: 900;
}

.guide-layout,
.contact-layout {
	display: grid;
	grid-template-columns: 280px minmax(0, 1fr);
	gap: 28px;
	align-items: start;
}

.contact-layout {
	grid-template-columns: 1fr 1fr;
}

.guide-sidebar {
	position: sticky;
	top: 70px;
}

.guide-cta {
	padding: 20px;
}

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

.guide-card {
	overflow: hidden;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: 0 8px 22px rgba(16, 50, 24, 0.08);
}

.guide-card img,
.search-card img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.guide-card div,
.search-card {
	padding: 18px;
}

.guide-card time,
.guide-card span,
.search-card span {
	display: inline-flex;
	margin: 0 8px 8px 0;
	color: var(--green);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.guide-card h3,
.search-card h2 {
	margin: 0 0 10px;
	font-size: 20px;
	line-height: 1.3;
}

.read-more {
	color: var(--green);
	font-weight: 900;
}

.article-layout {
	max-width: 960px;
}

.guide-article {
	padding: 30px;
}

.article-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 18px;
	color: var(--muted);
	font-weight: 800;
}

.article-featured {
	margin-bottom: 24px;
	aspect-ratio: 16 / 9;
}

.article-toc,
.article-cta {
	margin: 24px 0;
	padding: 20px;
	border-radius: var(--radius);
	background: #f0faf2;
}

.article-toc ol {
	margin: 10px 0 0;
}

.guide-article .entry-content {
	font-size: 18px;
	line-height: 1.8;
}

.guide-article .entry-content h2 {
	margin-top: 30px;
	color: var(--green-dark);
}

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

.gallery-grid figure {
	margin: 0;
	overflow: hidden;
	border-radius: var(--radius);
	background: var(--white);
	box-shadow: 0 8px 22px rgba(16, 50, 24, 0.08);
}

.gallery-grid button {
	display: block;
	width: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: zoom-in;
}

.gallery-grid img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.gallery-grid figcaption {
	padding: 14px;
	font-weight: 900;
}

.tg-lightbox {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: grid;
	place-items: center;
	padding: 24px;
	background: rgba(0, 0, 0, 0.78);
}

.tg-lightbox[hidden] {
	display: none;
}

.tg-lightbox img {
	max-height: 82vh;
	border-radius: var(--radius);
}

.tg-lightbox button {
	position: absolute;
	top: 18px;
	right: 18px;
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 50%;
	background: var(--white);
	font-size: 28px;
	cursor: pointer;
}

.tg-lightbox p {
	color: var(--white);
	font-weight: 900;
}

.contact-info-card,
.contact-form-card {
	padding: 26px;
}

.contact-info-card ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.contact-info-card li {
	padding: 11px 0;
	border-bottom: 1px solid var(--border);
}

.map-placeholder {
	display: grid;
	place-items: center;
	min-height: 240px;
	margin-top: 20px;
	border-radius: var(--radius);
	background: linear-gradient(135deg, #e8f8ed, #fff7dc);
	color: var(--green-dark);
	text-align: center;
	font-weight: 900;
}

.contact-form-card label {
	display: grid;
	gap: 7px;
	margin-bottom: 15px;
	font-weight: 800;
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
	width: 100%;
	border: 1px solid #dbe4dc;
	border-radius: 6px;
	padding: 12px 14px;
}

.contact-form-card button {
	width: 100%;
	border: 0;
}

@media (max-width: 980px) {
	.subpage-hero__grid,
	.guide-layout,
	.contact-layout {
		grid-template-columns: 1fr;
	}

	.stat-grid,
	.feature-grid,
	.process-row ol,
	.guide-grid,
	.gallery-grid,
	.search-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.guide-sidebar {
		position: static;
	}
}

@media (max-width: 640px) {
	.subpage-hero h1,
	.guide-article h1 {
		font-size: 32px;
	}

	.stat-grid,
	.feature-grid,
	.process-row ol,
	.guide-grid,
	.gallery-grid,
	.search-grid {
		grid-template-columns: 1fr;
	}

	.price-table,
	.price-table thead,
	.price-table tbody,
	.price-table tr,
	.price-table th,
	.price-table td {
		display: block;
	}

	.price-table thead {
		display: none;
	}

	.price-table tr {
		padding: 12px;
		border-bottom: 1px solid var(--border);
	}

	.price-table td {
		border-bottom: 0;
		padding: 8px 12px;
	}

	.guide-article {
		padding: 20px;
	}
}
