:root {
	--bg: #fff9f3;
	--bg-soft: #f4fff7;
	--surface: #ffffff;
	--surface-soft: #fff6ef;
	--text: #1d3029;
	--muted: #60756b;
	--accent: #2f9267;
	--accent-dark: #1d6a4b;
	--candy-pink: #ff6cab;
	--candy-peach: #ffb066;
	--candy-mint: #8de2b8;
	--line: #ebdfd2;
	--radius-xxl: 42px;
	--radius-xl: 28px;
	--radius-lg: 22px;
	--radius-md: 16px;
	--radius-sm: 12px;
	--shadow-soft: 0 18px 42px rgba(29, 48, 41, 0.08);
	--shadow-card: 0 26px 70px rgba(29, 48, 41, 0.12);
	--container: min(1200px, 92vw);
}

* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Manrope', 'Segoe UI', sans-serif;
	font-size: 16px;
	line-height: 1.65;
	color: var(--text);
	background:
		radial-gradient(65rem 32rem at -8% 8%, rgba(141, 226, 184, 0.34), transparent 55%),
		radial-gradient(52rem 30rem at 108% 4%, rgba(255, 176, 102, 0.26), transparent 55%),
		radial-gradient(50rem 24rem at 50% 100%, rgba(255, 108, 171, 0.14), transparent 58%),
		linear-gradient(180deg, #fff9f3 0%, #fffcf8 48%, #f7fff9 100%);
	position: relative;
	overflow-x: hidden;
}

body::before,
body::after {
	content: '';
	position: fixed;
	width: 420px;
	height: 420px;
	border-radius: 50%;
	pointer-events: none;
	z-index: -1;
	filter: blur(70px);
	opacity: 0.48;
}

body::before {
	top: -160px;
	left: -120px;
	background: radial-gradient(circle, rgba(141, 226, 184, 0.88) 0%, rgba(141, 226, 184, 0) 72%);
}

body::after {
	bottom: -190px;
	right: -130px;
	background: radial-gradient(circle, rgba(255, 108, 171, 0.56) 0%, rgba(255, 108, 171, 0) 72%);
}

a {
	color: inherit;
	text-decoration: none;
	transition: color 0.25s ease;
}

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

h1,
h2,
h3,
h4 {
	margin: 0;
	line-height: 1.1;
	letter-spacing: -0.02em;
	font-family: 'Fraunces', Georgia, serif;
	font-weight: 600;
}

h1 {
	font-size: clamp(2.4rem, 5.2vw, 4.7rem);
}

h2 {
	font-size: clamp(2rem, 4.2vw, 3.35rem);
}

h3 {
	font-size: clamp(1.35rem, 2.2vw, 2rem);
}

p {
	margin: 0;
}

.screen-reader-text,
.skip-link {
	left: -9999px;
	top: auto;
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.screen-reader-text:focus,
.skip-link:focus {
	left: 16px;
	top: 16px;
	width: auto;
	height: auto;
	padding: 12px 14px;
	background: #ffffff;
	color: var(--text);
	border-radius: var(--radius-sm);
	z-index: 999;
}

.container {
	width: var(--container);
	margin-inline: auto;
}

.site-main {
	position: relative;
	z-index: 1;
}

.section-spacer {
	padding: clamp(42px, 5.6vw, 84px) 0;
}

.kicker {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	margin-bottom: 16px;
	padding: 0.4rem 0.72rem;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.72);
	color: var(--accent-dark);
	border: 1px solid rgba(47, 146, 103, 0.2);
}

.kicker::before {
	content: '';
	width: 0.54rem;
	height: 0.54rem;
	border-radius: 50%;
	background: linear-gradient(130deg, var(--accent) 0%, var(--candy-pink) 100%);
	box-shadow: 0 0 0 3px rgba(47, 146, 103, 0.13);
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 0.84rem 1.5rem;
	font-size: 0.93rem;
	font-weight: 800;
	line-height: 1;
	border-radius: 999px;
	border: 1px solid transparent;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, color 0.28s ease, background-color 0.28s ease;
}

.button::after {
	content: '';
	position: absolute;
	inset: -20% auto -20% -32%;
	width: 26%;
	transform: translateX(-180%) rotate(24deg);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0));
	transition: transform 0.75s ease;
}

.button:hover,
.button:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 16px 30px rgba(29, 106, 75, 0.2);
}

.button:hover::after,
.button:focus-visible::after {
	transform: translateX(430%) rotate(24deg);
}

.button-primary {
	color: #ffffff;
	background: linear-gradient(125deg, #2f9267 0%, #1d6a4b 58%, #17755a 100%);
}

.button-primary:hover,
.button-primary:focus-visible {
	color: #ffffff;
}

.button-ghost {
	color: var(--accent-dark);
	background: rgba(255, 255, 255, 0.7);
	border-color: rgba(47, 146, 103, 0.34);
	box-shadow: 0 10px 24px rgba(29, 106, 75, 0.12);
}

.button-small {
	padding: 0.68rem 1rem;
	border-radius: 12px;
	font-size: 0.8rem;
	background: linear-gradient(130deg, var(--accent) 0%, #2f7e5d 100%);
	color: #ffffff;
}

.candy-cta,
.woocommerce ul.products li.product .button.add_to_cart_button,
.single_add_to_cart_button.button {
	position: relative;
	isolation: isolate;
}

.candy-cta::before,
.woocommerce ul.products li.product .button.add_to_cart_button::before,
.single_add_to_cart_button.button::before {
	content: '';
	position: absolute;
	inset: auto auto -52% -14%;
	width: 44%;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0) 70%);
	opacity: 0;
	transform: scale(0.68);
	z-index: -1;
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.candy-cta:hover::before,
.candy-cta:focus-visible::before,
.woocommerce ul.products li.product .button.add_to_cart_button:hover::before,
.woocommerce ul.products li.product .button.add_to_cart_button:focus-visible::before,
.single_add_to_cart_button.button:hover::before,
.single_add_to_cart_button.button:focus-visible::before {
	opacity: 1;
	transform: scale(1);
}

.candy-cta.is-adding,
.woocommerce ul.products li.product .button.add_to_cart_button.is-adding,
.single_add_to_cart_button.button.is-adding {
	animation: candyPop 0.52s ease;
}

.top-strip {
	background: linear-gradient(120deg, #1f5f45 0%, #2f9267 58%, #3a8b6a 100%);
	color: #ffffff;
	font-size: 0.82rem;
	letter-spacing: 0.01em;
}

.top-strip-inner {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding: 11px 0;
	flex-wrap: wrap;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 30;
	border-bottom: 1px solid rgba(235, 223, 210, 0.75);
	backdrop-filter: blur(12px);
	background: rgba(255, 249, 243, 0.82);
}

.header-inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 24px;
	padding: 17px 0;
}

.brand {
	display: inline-flex;
	align-items: center;
	min-width: 140px;
}

.brand-wordmark {
	font-family: 'Fraunces', Georgia, serif;
	font-size: clamp(1.65rem, 2.3vw, 2.2rem);
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.03em;
	background: linear-gradient(125deg, #1f6548 0%, #2f9267 35%, #f2579f 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.main-nav ul {
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	list-style: none;
	font-weight: 700;
}

.main-nav a {
	position: relative;
	display: inline-flex;
	align-items: center;
	padding: 0.22rem 0;
}

.main-nav a::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 100%;
	height: 2px;
	border-radius: 999px;
	background: linear-gradient(120deg, var(--accent) 0%, var(--candy-pink) 100%);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.24s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
	transform: scaleX(1);
}

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

.header-link {
	padding: 0.5rem 0.85rem;
	font-size: 0.85rem;
	font-weight: 800;
	border-radius: 999px;
	background: rgba(47, 146, 103, 0.1);
	border: 1px solid rgba(47, 146, 103, 0.18);
}

.lang-switcher {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 4px;
	border-radius: 999px;
	background: rgba(47, 146, 103, 0.1);
	border: 1px solid rgba(47, 146, 103, 0.18);
}

.lang-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 34px;
	height: 30px;
	padding: 0 9px;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	border-radius: 999px;
	color: var(--accent-dark);
}

.lang-pill.is-active {
	background: linear-gradient(120deg, var(--accent) 0%, #268056 100%);
	color: #ffffff;
}

.cart-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 22px;
	height: 22px;
	margin-left: 8px;
	border-radius: 999px;
	font-size: 0.75rem;
	font-weight: 800;
	color: #ffffff;
	background: linear-gradient(125deg, var(--candy-pink) 0%, #fd4f95 100%);
}

.mobile-menu-toggle {
	display: none;
	border: 1px solid rgba(47, 146, 103, 0.3);
	background: rgba(255, 255, 255, 0.9);
	border-radius: 999px;
	padding: 0.5rem 0.95rem;
	font-weight: 800;
	font-size: 0.84rem;
	cursor: pointer;
}

.hero {
	position: relative;
	overflow: hidden;
	padding-top: clamp(38px, 6vw, 82px);
}

.hero-backdrop {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.orb {
	position: absolute;
	display: block;
	border-radius: 50%;
	filter: blur(1px);
	animation: orbDrift 8.5s ease-in-out infinite;
	opacity: 0.84;
}

.orb-mint {
	top: 8%;
	right: 2%;
	width: clamp(120px, 18vw, 240px);
	height: clamp(120px, 18vw, 240px);
	background: radial-gradient(circle at 30% 30%, #e5ffe8 0%, #8de2b8 38%, rgba(141, 226, 184, 0.12) 72%);
}

.orb-peach {
	left: -40px;
	top: 42%;
	width: clamp(110px, 16vw, 210px);
	height: clamp(110px, 16vw, 210px);
	background: radial-gradient(circle at 33% 30%, #fff1d8 0%, #ffb066 44%, rgba(255, 176, 102, 0.12) 72%);
	animation-delay: -1.4s;
}

.orb-rose {
	right: 18%;
	bottom: -76px;
	width: clamp(130px, 20vw, 260px);
	height: clamp(130px, 20vw, 260px);
	background: radial-gradient(circle at 30% 30%, #ffe6f2 0%, #ff6cab 42%, rgba(255, 108, 171, 0.12) 72%);
	animation-delay: -2.6s;
}

.hero-grid {
	position: relative;
	display: grid;
	grid-template-columns: 1.12fr 0.88fr;
	align-items: center;
	gap: clamp(18px, 2.6vw, 32px);
}

.hero-copy {
	position: relative;
	display: grid;
	gap: 0;
}

.hero-copy p {
	margin-top: 18px;
	max-width: 61ch;
	color: var(--muted);
	font-size: clamp(1rem, 1.15vw, 1.1rem);
}

.hero-title-spark {
	display: inline-block;
	margin-right: 0.28rem;
	background: linear-gradient(130deg, #1e6548 0%, #2f9267 36%, #f2579f 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	text-shadow: 0 16px 36px rgba(47, 146, 103, 0.22);
}

.hero-actions {
	display: flex;
	gap: 12px;
	margin-top: 30px;
	flex-wrap: wrap;
}

.hero-chips {
	display: flex;
	gap: 9px;
	list-style: none;
	padding: 0;
	margin: 22px 0 0;
	flex-wrap: wrap;
}

.hero-chips li {
	padding: 0.48rem 0.88rem;
	border-radius: 999px;
	font-size: 0.8rem;
	font-weight: 800;
	color: var(--accent-dark);
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid rgba(47, 146, 103, 0.2);
}

.hero-mini-proof {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	margin-top: 22px;
}

.hero-mini-proof article {
	display: grid;
	gap: 3px;
	padding: 12px 13px;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.74);
	border: 1px solid rgba(47, 146, 103, 0.16);
}

.hero-mini-proof strong {
	font-size: 1.03rem;
	font-weight: 800;
	line-height: 1;
	color: var(--accent-dark);
}

.hero-mini-proof span {
	font-size: 0.77rem;
	color: var(--muted);
}

.hero-highlight {
	position: relative;
	min-height: 520px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-splash {
	position: absolute;
	inset: 3% 2% 1%;
	width: 100%;
	height: 100%;
	z-index: 0;
	animation: blobPulse 8s ease-in-out infinite;
}

.glass-card {
	position: relative;
	z-index: 2;
	width: min(450px, 100%);
	display: grid;
	gap: 14px;
	padding: clamp(22px, 2.5vw, 34px);
	border-radius: var(--radius-xxl);
	border: 1px solid rgba(255, 255, 255, 0.74);
	background: rgba(255, 255, 255, 0.85);
	box-shadow: var(--shadow-card);
	backdrop-filter: blur(12px);
	transform-style: preserve-3d;
	transition: transform 0.22s ease;
}

.hero-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	padding: 0.32rem 0.8rem;
	border-radius: 999px;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #ffffff;
	background: linear-gradient(120deg, var(--accent) 0%, var(--candy-pink) 100%);
}

.glass-card h2 {
	font-size: clamp(1.75rem, 2.1vw, 2.3rem);
}

.glass-card p {
	color: var(--muted);
}

.hero-art-wrap {
	position: relative;
	height: clamp(220px, 28vw, 320px);
	display: flex;
	align-items: flex-end;
	justify-content: center;
	margin-top: 4px;
}

.hero-product-image {
	display: block;
	height: 100%;
	width: auto;
	max-width: min(290px, 84%);
	object-fit: contain;
	border-radius: 18px;
	border: 1px solid rgba(255, 255, 255, 0.78);
	box-shadow: 0 20px 42px rgba(242, 87, 159, 0.24);
	transform: translateY(4px);
}

.hero-jar {
	position: relative;
	width: 190px;
	height: 150px;
	border-radius: 24px;
	background: linear-gradient(165deg, rgba(255, 255, 255, 0.94) 0%, #ffe4ef 56%, #ffd0e4 100%);
	border: 1px solid rgba(255, 255, 255, 0.88);
	box-shadow: 0 22px 42px rgba(242, 87, 159, 0.23);
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding-bottom: 20px;
}

.hero-jar::before {
	content: '';
	position: absolute;
	inset: 12px 14px auto;
	height: 48%;
	border-radius: 16px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0) 100%);
}

.hero-jar-lid {
	position: absolute;
	top: -30px;
	left: 16px;
	right: 16px;
	height: 42px;
	border-radius: 16px;
	background: linear-gradient(135deg, #23694b 0%, #36a072 100%);
	box-shadow: 0 12px 18px rgba(29, 106, 75, 0.28);
}

.hero-jar-label {
	position: relative;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.09em;
	color: #246c4d;
}

.hero-leaf {
	position: absolute;
	width: 96px;
	height: 72px;
	animation: leafSwing 3.2s ease-in-out infinite;
}

.hero-leaf-one {
	left: 8%;
	top: 26%;
}

.hero-leaf-two {
	right: 8%;
	bottom: 14%;
	animation-delay: -1.6s;
}

.glass-card dl {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	margin: 8px 0 0;
}

.glass-card dt {
	font-family: 'Fraunces', Georgia, serif;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1;
	color: var(--accent-dark);
}

.glass-card dd {
	margin: 8px 0 0;
	font-size: 0.78rem;
	line-height: 1.4;
	color: var(--muted);
}

.section-head {
	display: grid;
	gap: 8px;
	margin-bottom: 28px;
}

.section-head p:last-child {
	color: var(--muted);
}

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

.category-card {
	position: relative;
	display: grid;
	grid-template-rows: 180px auto;
	border-radius: var(--radius-lg);
	overflow: hidden;
	background: var(--surface);
	border: 1px solid var(--line);
	box-shadow: var(--shadow-soft);
	transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.category-card::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 4px;
	background: linear-gradient(120deg, var(--accent) 0%, var(--candy-pink) 58%, var(--candy-peach) 100%);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.32s ease;
}

.category-card:hover,
.category-card:focus-visible {
	transform: translateY(-6px);
	box-shadow: 0 24px 44px rgba(29, 48, 41, 0.14);
}

.category-card:hover::after,
.category-card:focus-visible::after {
	transform: scaleX(1);
}

.category-media {
	position: relative;
	overflow: hidden;
}

.category-icon {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 42px;
	height: 42px;
	padding: 8px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid rgba(47, 146, 103, 0.16);
	backdrop-filter: blur(5px);
	box-shadow: 0 8px 20px rgba(29, 48, 41, 0.12);
	z-index: 2;
	transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.category-icon svg {
	width: 100%;
	height: 100%;
}

.category-card:hover .category-icon,
.category-card:focus-visible .category-icon {
	transform: translateY(-3px) scale(1.06);
	box-shadow: 0 13px 24px rgba(29, 48, 41, 0.16);
}

.category-media::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(21, 54, 40, 0.2) 0%, rgba(21, 54, 40, 0) 50%);
	opacity: 0;
	transition: opacity 0.28s ease;
}

.category-card:hover .category-media::before,
.category-card:focus-visible .category-media::before {
	opacity: 1;
}

.category-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.45s ease;
}

.category-card:hover .category-media img,
.category-card:focus-visible .category-media img {
	transform: scale(1.06);
}

.shape-fill {
	display: block;
	width: 100%;
	height: 100%;
	background:
		radial-gradient(circle at 20% 25%, rgba(47, 146, 103, 0.38), transparent 42%),
		radial-gradient(circle at 86% 24%, rgba(255, 108, 171, 0.42), transparent 42%),
		radial-gradient(circle at 58% 82%, rgba(255, 176, 102, 0.48), transparent 42%),
		linear-gradient(135deg, #eef8f2 0%, #fff3e9 100%);
}

.category-text {
	display: grid;
	gap: 7px;
	padding: 16px;
}

.category-text p {
	font-size: 0.9rem;
	color: var(--muted);
}

.products-section {
	position: relative;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.68) 0%, rgba(255, 255, 255, 0.44) 100%),
		radial-gradient(40rem 20rem at 110% 50%, rgba(255, 108, 171, 0.12), transparent 62%);
	border-top: 1px solid rgba(235, 223, 210, 0.86);
	border-bottom: 1px solid rgba(235, 223, 210, 0.86);
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	align-items: start;
}

.product-card {
	display: flex;
	flex-direction: column;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-soft);
	transition: transform 0.26s ease, box-shadow 0.26s ease;
}

.product-card:hover,
.product-card:focus-within {
	transform: translateY(-6px);
	box-shadow: 0 24px 44px rgba(29, 48, 41, 0.14);
}

.product-image {
	display: block;
	position: relative;
	aspect-ratio: 4 / 5;
	background: var(--bg-soft);
	overflow: hidden;
}

.product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.42s ease;
}

.product-card:hover .product-image img,
.product-card:focus-within .product-image img {
	transform: scale(1.05);
}

.product-content {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 12px;
}

.product-content h3 {
	font-size: 1.25rem;
	line-height: 1.24;
	min-height: calc(1.24em * 2);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.product-card-footer {
	display: grid;
	gap: 8px;
	margin-top: 0;
}

.product-content .price {
	font-weight: 800;
	color: var(--accent-dark);
	line-height: 1.2;
}

.product-content .button-small {
	margin-top: 0;
	width: 100%;
	justify-content: center;
}

.empty-state {
	display: grid;
	justify-items: start;
	gap: 14px;
	padding: 28px;
	border-radius: var(--radius-lg);
	background: var(--surface);
	border: 1px dashed rgba(47, 146, 103, 0.4);
	box-shadow: var(--shadow-soft);
}

.routine-section {
	position: relative;
}

.routine-section::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 8%;
	height: 84%;
	background: linear-gradient(125deg, rgba(141, 226, 184, 0.16) 0%, rgba(255, 255, 255, 0) 45%, rgba(255, 108, 171, 0.08) 100%);
	pointer-events: none;
}

.routine-grid {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	align-items: start;
}

.routine-copy p {
	margin: 16px 0 24px;
	max-width: 60ch;
	color: var(--muted);
}

.routine-steps {
	display: grid;
	gap: 14px;
}

.routine-steps article {
	position: relative;
	display: grid;
	gap: 7px;
	padding: 18px 18px 18px 70px;
	border-radius: 18px;
	background: var(--surface);
	border: 1px solid var(--line);
	box-shadow: var(--shadow-soft);
}

.routine-steps span {
	position: absolute;
	left: 18px;
	top: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 12px;
	font-family: 'Fraunces', Georgia, serif;
	font-size: 1.2rem;
	font-weight: 700;
	color: #ffffff;
	background: linear-gradient(130deg, var(--accent) 0%, #58b387 100%);
}

.routine-steps p {
	font-size: 0.9rem;
	color: var(--muted);
}

.impact-grid {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	align-items: center;
	gap: 20px;
	padding: clamp(26px, 3.2vw, 40px);
	border-radius: var(--radius-xxl);
	background:
		radial-gradient(56rem 24rem at 20% 0%, rgba(141, 226, 184, 0.26), rgba(141, 226, 184, 0) 62%),
		linear-gradient(140deg, #ffffff 0%, #fff6ef 100%);
	border: 1px solid var(--line);
	box-shadow: var(--shadow-card);
}

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

.impact-stats article {
	display: grid;
	gap: 6px;
	padding: 14px;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.76);
	border: 1px solid rgba(47, 146, 103, 0.16);
}

.impact-stats h3 {
	font-size: 1.8rem;
}

.impact-stats p {
	font-size: 0.82rem;
	color: var(--muted);
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	margin-top: 22px;
}

.testimonials-grid blockquote {
	margin: 0;
	position: relative;
	display: grid;
	gap: 10px;
	padding: 20px;
	border-radius: 18px;
	background: var(--surface);
	border: 1px solid var(--line);
	box-shadow: var(--shadow-soft);
}

.testimonials-grid blockquote::before {
	content: '"';
	position: absolute;
	right: 14px;
	top: 6px;
	font-family: 'Fraunces', Georgia, serif;
	font-size: 3rem;
	line-height: 1;
	color: rgba(47, 146, 103, 0.18);
}

.testimonials-grid cite {
	font-style: normal;
	font-size: 0.86rem;
	font-weight: 800;
	letter-spacing: 0.03em;
	color: var(--accent-dark);
}

.woocommerce-warning {
	padding-top: 0;
}

.woocommerce-warning .container {
	padding: 22px;
	border-radius: var(--radius-lg);
	border: 1px solid rgba(47, 146, 103, 0.34);
	background: rgba(47, 146, 103, 0.09);
}

.posts-wrap,
.content-wrap {
	display: grid;
	gap: 22px;
}

.archive-head {
	display: grid;
	gap: 12px;
}

.archive-head p,
.archive-head .archive-description {
	color: var(--muted);
}

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

.post-card {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: var(--shadow-soft);
}

.post-card img,
.single-thumb img {
	width: 100%;
	height: auto;
}

.post-card-content {
	display: grid;
	gap: 10px;
	padding: 16px;
}

.post-card-content p {
	font-size: 0.92rem;
	color: var(--muted);
}

.single-content {
	display: grid;
	gap: 16px;
	padding: clamp(20px, 4vw, 36px);
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: 20px;
	box-shadow: var(--shadow-soft);
}

.entry-content > * + * {
	margin-top: 16px;
}

.entry-content ul,
.entry-content ol {
	padding-left: 20px;
}

.entry-content a {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 2px;
}

.site-footer {
	position: relative;
	margin-top: clamp(42px, 8vw, 96px);
	padding-top: 52px;
	background:
		radial-gradient(42rem 16rem at 10% -5%, rgba(255, 108, 171, 0.24), rgba(255, 108, 171, 0) 70%),
		linear-gradient(180deg, #163629 0%, #112a20 100%);
	color: rgba(255, 255, 255, 0.92);
	overflow: hidden;
}

.site-footer::before {
	content: '';
	position: absolute;
	top: -46px;
	left: 0;
	right: 0;
	height: 80px;
	background: radial-gradient(50% 100% at 50% 100%, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0));
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.15fr 0.82fr 1fr;
	gap: 24px;
	padding-bottom: 30px;
}

.site-footer h2 {
	font-size: 1.66rem;
	margin-bottom: 8px;
	color: #ffffff;
}

.site-footer p {
	color: rgba(255, 255, 255, 0.74);
}

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

.newsletter-form input {
	flex: 1;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.28);
	padding: 0.74rem 0.9rem;
	font: inherit;
	background: rgba(255, 255, 255, 0.09);
	color: #ffffff;
}

.newsletter-form input::placeholder {
	color: rgba(255, 255, 255, 0.58);
}

.newsletter-form button {
	border: 0;
	border-radius: 12px;
	padding: 0.74rem 1rem;
	font-weight: 800;
	background: linear-gradient(120deg, #ffc982 0%, #ff9b60 100%);
	color: #1b1b1b;
	cursor: pointer;
	transition: transform 0.24s ease;
}

.newsletter-form button:hover,
.newsletter-form button:focus-visible {
	transform: translateY(-2px);
}

.footer-nav-wrap ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 8px;
}

.footer-nav-wrap a,
.social-links a {
	color: rgba(255, 255, 255, 0.86);
}

.social-links {
	list-style: none;
	padding: 0;
	margin-top: 14px;
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.footer-legal-list {
	list-style: none;
	padding: 0;
	margin: 14px 0 0;
	display: grid;
	gap: 8px;
}

.footer-legal-list li {
	color: rgba(255, 255, 255, 0.8);
}

.footer-legal-list strong {
	color: #ffffff;
}

.footer-legal-list a {
	color: rgba(255, 255, 255, 0.92);
	text-decoration: underline;
	text-underline-offset: 2px;
	text-decoration-thickness: 1px;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	padding: 16px 0 28px;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	font-size: 0.84rem;
	color: rgba(255, 255, 255, 0.66);
	flex-wrap: wrap;
}

[data-reveal] {
	opacity: 0;
	transform: translateY(22px) scale(0.985);
	transition: opacity 0.64s ease, transform 0.64s ease;
	transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].is-visible {
	opacity: 1;
	transform: translateY(0) scale(1);
}

@keyframes orbDrift {
	0%,
	100% {
		transform: translate3d(0, 0, 0);
	}
	50% {
		transform: translate3d(0, -14px, 0);
	}
}

@keyframes blobPulse {
	0%,
	100% {
		transform: scale(1) rotate(0deg);
	}
	50% {
		transform: scale(1.04) rotate(-1.2deg);
	}
}

@keyframes leafSwing {
	0%,
	100% {
		transform: rotate(0deg);
	}
	50% {
		transform: rotate(6deg);
	}
}

@keyframes candyPop {
	0% {
		transform: scale(1);
	}
	45% {
		transform: scale(0.95);
	}
	72% {
		transform: scale(1.045);
	}
	100% {
		transform: scale(1);
	}
}

@media (max-width: 1180px) {
	.hero-grid {
		grid-template-columns: 1fr;
	}

	.hero-highlight {
		min-height: 460px;
	}

	.glass-card {
		max-width: 500px;
	}
}

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

	.mobile-menu-toggle {
		display: inline-flex;
		justify-content: center;
	}

	.main-nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		padding: 0 4vw;
		max-height: 0;
		overflow: hidden;
		background: rgba(255, 249, 243, 0.98);
		border-bottom: 1px solid rgba(235, 223, 210, 0.9);
		transition: max-height 0.3s ease;
	}

	.main-nav.is-open {
		max-height: 360px;
	}

	.main-nav ul {
		flex-direction: column;
		align-items: flex-start;
		padding: 18px 0;
	}

	.routine-grid,
	.impact-grid,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.category-grid,
	.product-grid,
	.posts-grid,
	.testimonials-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hero-mini-proof,
	.glass-card dl,
	.impact-stats {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 820px) {
	.section-spacer {
		padding: clamp(50px, 11vw, 86px) 0;
	}

	.hero-highlight {
		min-height: 420px;
	}

	.hero-art-wrap {
		height: clamp(198px, 48vw, 250px);
	}

	.hero-jar {
		width: 170px;
		height: 136px;
	}

	.hero-mini-proof {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 700px) {
	.top-strip-inner {
		justify-content: center;
		text-align: center;
	}

	.header-inner {
		grid-template-columns: 1fr auto;
		grid-template-areas:
			'brand actions'
			'menu menu';
	}

	.brand {
		grid-area: brand;
	}

	.header-actions {
		grid-area: actions;
		justify-content: flex-end;
	}

	.mobile-menu-toggle {
		grid-area: menu;
		justify-self: end;
	}

	.main-nav {
		top: calc(100% + 10px);
	}

	.hero-actions {
		width: 100%;
	}

	.hero-actions .button {
		flex: 1;
	}

	.category-grid,
	.product-grid,
	.posts-grid,
	.testimonials-grid,
	.glass-card dl,
	.impact-stats {
		grid-template-columns: 1fr;
	}

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

@media (max-width: 540px) {
	:root {
		--container: min(1200px, 94vw);
	}

	.hero {
		padding-top: 36px;
	}

	.kicker {
		font-size: 0.7rem;
	}

	.hero-copy p {
		font-size: 0.95rem;
	}

	.glass-card {
		padding: 20px;
		border-radius: 24px;
	}

	.hero-pill {
		font-size: 0.66rem;
	}

	.hero-art-wrap {
		height: 184px;
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		animation: none !important;
		transition-duration: 0.01ms !important;
	}

	html {
		scroll-behavior: auto;
	}
}
