:root {
	/* Lanting Loom v1.5 brand system: paper, ink, celadon and restrained gold. */
	--ll-celadon: #7c9792;
	--ll-celadon-deep: #425f5c;
	--ll-celadon-dark: #314846;
	--ll-ivory: #f7f4ed;
	--ll-paper: #f0ece4;
	--ll-parchment: #ece8df;
	--ll-gold: #b49a68;
	--ll-gold-dark: #7f663f;
	--ll-charcoal: #252522;
	--ll-muted: #696963;
	--ll-mist: #e6ece9;
	--ll-orchid: #8b7080;
	--ll-white: #fff;
	--ll-border: rgba(66, 95, 92, 0.18);
	/* Legacy aliases keep older theme components stable while using the refined palette. */
	--ll-jade: var(--ll-celadon-deep);
	--ll-jade-deep: var(--ll-celadon-dark);
	--ll-serif: "Cormorant Garamond", "Bodoni 72", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
	--ll-sans: Inter, Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--ll-container: min(1280px, calc(100vw - 64px));
	--ll-narrow: min(760px, calc(100vw - 40px));
	--ll-transition: 280ms cubic-bezier(.2,.7,.2,1);
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--ll-ivory);
	color: var(--ll-charcoal);
	font-family: var(--ll-sans);
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

body.menu-open {
	overflow: hidden;
}

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

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

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

button {
	color: inherit;
}

::selection {
	background: var(--ll-gold);
	color: var(--ll-jade-deep);
}

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

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

.screen-reader-text:focus,
.skip-link:focus {
	z-index: 99999;
	top: 12px;
	left: 12px;
	width: auto;
	height: auto;
	padding: 12px 18px;
	clip: auto;
	background: var(--ll-white);
	color: var(--ll-jade);
}

:focus-visible {
	outline: 2px solid var(--ll-gold);
	outline-offset: 4px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 .55em;
	color: var(--ll-jade-deep);
	font-family: var(--ll-serif);
	font-weight: 500;
	line-height: 1.05;
	letter-spacing: -.02em;
}

h1 {
	font-size: clamp(3.6rem, 7.8vw, 7.6rem);
}

h2 {
	font-size: clamp(2.5rem, 4.4vw, 4.75rem);
}

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

p {
	margin: 0 0 1.35em;
}

.lanting-kicker {
	margin-bottom: 16px;
	color: var(--ll-gold);
	font-size: .72rem;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: .22em;
	text-transform: uppercase;
}

.lanting-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 14px 28px;
	border: 1px solid var(--ll-jade);
	border-radius: 0;
	background: var(--ll-jade);
	color: var(--ll-white);
	font-size: .78rem;
	font-weight: 700;
	letter-spacing: .12em;
	line-height: 1;
	text-transform: uppercase;
	transition: color var(--ll-transition), background var(--ll-transition), border var(--ll-transition), transform var(--ll-transition);
}

.lanting-button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
	border-color: var(--ll-gold);
	background: var(--ll-gold);
	color: var(--ll-jade-deep);
	transform: translateY(-2px);
}

.lanting-button--ivory {
	border-color: var(--ll-ivory);
	background: var(--ll-ivory);
	color: var(--ll-jade);
}

.lanting-button--outline {
	background: transparent;
	color: var(--ll-jade);
}

.lanting-text-link {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding-block: 8px;
	border-bottom: 1px solid var(--ll-gold);
	color: var(--ll-jade);
	font-size: .74rem;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.lanting-text-link svg {
	width: 19px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.5;
	transition: transform var(--ll-transition);
}

.lanting-text-link:hover svg {
	transform: translateX(5px);
}

.lanting-text-link--light {
	color: var(--ll-ivory);
}

.lanting-announcement {
	position: relative;
	z-index: 1002;
	padding: 8px 0;
	background: var(--ll-jade);
	color: var(--ll-ivory);
	text-align: center;
}

.lanting-announcement p {
	margin: 0;
	font-size: .66rem;
	font-weight: 650;
	letter-spacing: .16em;
	text-transform: uppercase;
}

.site-header {
	position: relative;
	z-index: 1000;
	width: 100%;
	border-bottom: 1px solid var(--ll-border);
	background: rgba(248, 243, 236, .96);
	transition: background var(--ll-transition), box-shadow var(--ll-transition), transform var(--ll-transition);
}

.lanting-is-home .site-header {
	position: absolute;
	top: 33px;
	border-color: rgba(255, 255, 255, .2);
	background: transparent;
	color: var(--ll-white);
}

.site-header.is-scrolled {
	position: fixed;
	top: 0;
	border-color: var(--ll-border);
	background: rgba(248, 243, 236, .97);
	box-shadow: 0 10px 40px rgba(16, 42, 33, .08);
	color: var(--ll-jade);
	backdrop-filter: blur(12px);
}

.lanting-header-inner {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	min-height: 78px;
}

.lanting-primary-nav {
	justify-self: start;
}

.lanting-menu {
	display: flex;
	align-items: center;
	gap: clamp(16px, 2vw, 32px);
	margin: 0;
	padding: 0;
	list-style: none;
}

.lanting-menu a {
	position: relative;
	padding-block: 29px;
	font-size: .7rem;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.lanting-menu a::after {
	position: absolute;
	right: 0;
	bottom: 25px;
	left: 0;
	height: 1px;
	background: var(--ll-gold);
	content: "";
	transform: scaleX(0);
	transform-origin: right;
	transition: transform var(--ll-transition);
}

.lanting-menu a:hover::after,
.lanting-menu .current-menu-item > a::after {
	transform: scaleX(1);
	transform-origin: left;
}

.site-branding {
	justify-self: center;
	width: 74px;
}

.lanting-brand-lockup {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 11px;
	width: 100%;
	min-width: 0;
	color: var(--ll-jade);
}

.lanting-brand-mark {
	flex: 0 0 auto;
	width: 36px;
	height: 45px;
	object-fit: contain;
}

.lanting-brand-lockup--header {
	position: relative;
	width: auto;
}

.lanting-brand-mark--header {
	width: 46px;
	height: 56px;
	transition: opacity var(--ll-transition);
}

.lanting-brand-mark--light {
	position: absolute;
	inset: 0;
	margin: auto;
	opacity: 0;
}

.lanting-brand-copy {
	display: block;
	min-width: 0;
	line-height: 1;
	text-align: left;
}

.lanting-brand-name,
.lanting-brand-subline {
	display: block;
	white-space: nowrap;
}

.lanting-brand-name {
	font-family: var(--ll-serif);
	font-size: 1.05rem;
	font-weight: 600;
	letter-spacing: .19em;
	text-transform: uppercase;
}

.lanting-brand-subline {
	margin-top: 5px;
	font-family: var(--ll-serif);
	font-size: .52rem;
	letter-spacing: .09em;
}

.lanting-brand-subline [lang="zh-Hans"] {
	font-family: "Noto Serif SC", "Songti SC", serif;
}

.lanting-brand-subline i {
	margin: 0 6px;
	color: var(--ll-gold);
	font-style: normal;
}

.lanting-is-home .site-header:not(.is-scrolled) .lanting-brand-lockup {
	color: var(--ll-white);
}

.lanting-is-home .site-header:not(.is-scrolled) .lanting-brand-mark--dark {
	opacity: 0;
}

.lanting-is-home .site-header:not(.is-scrolled) .lanting-brand-mark--light {
	opacity: 1;
}

.lanting-header-tools {
	display: flex;
	justify-self: end;
	align-items: center;
	gap: 7px;
}

.lanting-icon-button {
	position: relative;
	display: grid;
	width: 39px;
	height: 39px;
	padding: 9px;
	border: 0;
	background: transparent;
	place-items: center;
	cursor: pointer;
}

.lanting-icon-button svg {
	width: 21px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.35;
}

.lanting-cart-count {
	position: absolute;
	top: 2px;
	right: 0;
	display: grid;
	min-width: 17px;
	height: 17px;
	padding: 0 4px;
	border-radius: 50%;
	background: var(--ll-gold);
	color: var(--ll-jade-deep);
	font-size: 9px;
	font-weight: 800;
	place-items: center;
}

body.lanting-cart-drawer-open {
	overflow: hidden;
}

.lanting-cart-drawer {
	position: fixed;
	z-index: 3000;
	inset: 0;
	visibility: hidden;
	pointer-events: none;
	transition: visibility 0s linear 420ms;
}

.lanting-cart-drawer-overlay {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	padding: 0;
	border: 0;
	background: rgba(37, 37, 34, .38);
	opacity: 0;
	cursor: pointer;
	transition: opacity 420ms cubic-bezier(.2,.7,.2,1);
}

.lanting-cart-drawer-panel {
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	flex-direction: column;
	width: min(410px, 100vw);
	height: 100vh;
	height: 100dvh;
	background: var(--ll-ivory);
	box-shadow: -24px 0 70px rgba(37, 37, 34, .2);
	outline: 0;
	transform: translateX(102%);
	transition: transform 420ms cubic-bezier(.2,.7,.2,1);
}

.lanting-cart-drawer-open .lanting-cart-drawer {
	visibility: visible;
	pointer-events: auto;
	transition-delay: 0s;
}

.lanting-cart-drawer-open .lanting-cart-drawer-overlay {
	opacity: 1;
}

.lanting-cart-drawer-open .lanting-cart-drawer-panel {
	transform: none;
}

.lanting-cart-drawer-header {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: space-between;
	min-height: 118px;
	padding: 26px 30px 24px;
	border-bottom: 1px solid var(--ll-border);
}

.lanting-cart-drawer-header .lanting-kicker {
	margin-bottom: 7px;
}

.lanting-cart-drawer-header h2 {
	margin: 0;
	font-size: clamp(2.15rem, 4vw, 2.8rem);
	line-height: 1;
}

.lanting-cart-drawer-close {
	display: grid;
	flex: 0 0 auto;
	width: 44px;
	height: 44px;
	padding: 11px;
	border: 1px solid var(--ll-border);
	background: transparent;
	color: var(--ll-jade);
	cursor: pointer;
	place-items: center;
	transition: border-color var(--ll-transition), background var(--ll-transition), color var(--ll-transition);
}

.lanting-cart-drawer-close:hover,
.lanting-cart-drawer-close:focus-visible {
	border-color: var(--ll-jade);
	background: var(--ll-parchment);
}

.lanting-cart-drawer-close svg {
	width: 100%;
	height: 100%;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-width: 1.4;
}

.lanting-cart-drawer-body {
	flex: 1 1 auto;
	min-height: 0;
	padding: 28px 30px 30px;
	overflow-y: auto;
	overscroll-behavior: contain;
}

.lanting-cart-drawer .widget_shopping_cart_content {
	display: flex;
	flex-direction: column;
	min-height: 100%;
}

.lanting-cart-drawer .woocommerce-mini-cart {
	flex: 0 0 auto;
	margin: 0;
	padding: 0;
	list-style: none;
}

.lanting-cart-drawer .widget_shopping_cart_content .woocommerce-mini-cart-item {
	position: relative;
	display: grid;
	grid-template-columns: 76px minmax(0, 1fr);
	gap: 14px;
	margin: 0 0 22px;
	padding: 0 30px 22px 0;
	border-bottom: 1px solid var(--ll-border);
}

.lanting-cart-drawer .widget_shopping_cart_content .woocommerce-mini-cart-item .lanting-cart-drawer-product-image {
	display: block;
	grid-column: 1;
	width: 76px;
	height: 76px;
}

.lanting-cart-drawer .widget_shopping_cart_content .woocommerce-mini-cart-item .lanting-cart-drawer-product-image img {
	display: block;
	float: none;
	width: 76px;
	height: 76px;
	margin: 0;
	background: var(--ll-parchment);
	object-fit: cover;
}

.lanting-cart-drawer-item-copy {
	grid-column: 2;
	min-width: 0;
	padding-top: 2px;
}

.lanting-cart-drawer .widget_shopping_cart_content .lanting-cart-drawer-product-name {
	display: block;
	padding-right: 4px;
	color: var(--ll-jade);
	font-family: var(--ll-serif);
	font-size: 1.13rem;
	font-weight: 500;
	line-height: 1.18;
}

.lanting-cart-drawer .widget_shopping_cart_content .woocommerce-mini-cart-item .variation {
	margin: 7px 0 0;
	color: var(--ll-muted);
	font-size: .72rem;
}

.lanting-cart-drawer .widget_shopping_cart_content .woocommerce-mini-cart-item .quantity {
	display: flex;
	gap: 7px;
	align-items: center;
	margin: 9px 0 0;
	color: var(--ll-muted);
	font-size: .74rem;
	letter-spacing: .04em;
}

.lanting-cart-drawer .widget_shopping_cart_content .woocommerce-mini-cart-item > a.remove {
	position: absolute;
	z-index: 2;
	top: -5px;
	right: 0;
	display: grid;
	width: 28px;
	height: 28px;
	border: 0;
	background: transparent;
	color: var(--ll-muted) !important;
	font-size: 1.35rem;
	font-weight: 400;
	line-height: 1;
	place-items: center;
}

.lanting-cart-drawer .widget_shopping_cart_content .woocommerce-mini-cart-item > a.remove:hover,
.lanting-cart-drawer .widget_shopping_cart_content .woocommerce-mini-cart-item > a.remove:focus-visible {
	background: var(--ll-parchment);
	color: var(--ll-charcoal) !important;
}

.lanting-cart-drawer-assurance {
	display: grid;
	gap: 8px;
	margin: auto 0 14px;
	padding: 18px 20px;
	border: 1px solid var(--ll-border);
	background: rgba(230, 236, 233, .42);
}

.lanting-cart-drawer-assurance p {
	position: relative;
	margin: 0;
	padding-left: 18px;
	color: var(--ll-muted);
	font-size: .7rem;
	letter-spacing: .07em;
	line-height: 1.45;
	text-transform: uppercase;
}

.lanting-cart-drawer-assurance p::before {
	position: absolute;
	top: .43em;
	left: 0;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--ll-gold);
	content: "";
}

.lanting-cart-drawer .woocommerce-mini-cart__total {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0 0 12px;
	padding-top: 16px;
	border-top: 1px solid var(--ll-gold);
	color: var(--ll-charcoal);
}

.lanting-cart-drawer .woocommerce-mini-cart__total strong {
	color: var(--ll-jade);
	font-size: .72rem;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.lanting-cart-drawer .widget_shopping_cart_content .woocommerce-mini-cart__buttons {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
	margin: 0;
}

.lanting-cart-drawer .widget_shopping_cart_content .woocommerce-mini-cart__buttons .button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 46px;
	margin: 0;
	padding: 10px 12px;
	border-radius: 0;
	font-size: .68rem;
	font-weight: 600;
	letter-spacing: .14em;
	line-height: 1;
	text-align: center;
	text-transform: uppercase;
}

.lanting-cart-drawer .widget_shopping_cart_content .woocommerce-mini-cart__buttons .button:not(.checkout) {
	border-color: var(--ll-jade);
	background: transparent;
	color: var(--ll-jade);
}

.lanting-cart-drawer .widget_shopping_cart_content .woocommerce-mini-cart__buttons .checkout {
	border-color: var(--ll-jade);
	background: var(--ll-jade);
	color: var(--ll-ivory);
}

.lanting-cart-drawer .widget_shopping_cart_content .woocommerce-mini-cart__buttons .button:hover,
.lanting-cart-drawer .widget_shopping_cart_content .woocommerce-mini-cart__buttons .button:focus-visible {
	border-color: var(--ll-gold);
	background: var(--ll-gold);
	color: var(--ll-jade-deep);
}

.lanting-cart-drawer-empty {
	display: flex;
	flex: 1 1 auto;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 70px 20px;
	text-align: center;
}

.lanting-cart-drawer-empty p {
	margin: 0 0 22px;
	color: var(--ll-muted);
	font-family: var(--ll-serif);
	font-size: 1.65rem;
	line-height: 1.35;
}

.lanting-cart-drawer-empty .button {
	min-height: 48px;
}

.lanting-menu-toggle {
	display: none;
	width: 40px;
	padding: 10px 7px;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.lanting-menu-toggle > span:not(.screen-reader-text) {
	display: block;
	width: 24px;
	height: 1px;
	margin: 5px 0;
	background: currentColor;
	transition: transform var(--ll-transition), opacity var(--ll-transition);
}

.lanting-search-panel {
	padding: 22px 0;
	border-top: 1px solid var(--ll-border);
	background: var(--ll-ivory);
	color: var(--ll-jade);
}

.lanting-search-panel form {
	display: flex;
	max-width: 720px;
	margin: auto;
}

.lanting-search-panel label {
	flex: 1;
}

.lanting-search-panel input[type="search"] {
	width: 100%;
	height: 50px;
	padding: 0 16px;
	border: 1px solid var(--ll-border);
	background: var(--ll-white);
}

.lanting-search-panel input[type="submit"] {
	padding: 0 24px;
	border: 0;
	background: var(--ll-jade);
	color: var(--ll-white);
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.lanting-hero {
	position: relative;
	min-height: 680px;
	height: clamp(680px, 82vh, 820px);
	overflow: hidden;
	background: var(--ll-jade-deep);
	color: var(--ll-white);
}

.lanting-hero-media,
.lanting-hero-overlay {
	position: absolute;
	inset: 0;
}

.lanting-hero-media {
	background: url("../images/hero.webp") 54% center / cover no-repeat;
	transform: scale(1.02);
	animation: lantingHeroDrift 16s ease-out both;
}

.lanting-hero-overlay {
	background: linear-gradient(90deg, rgba(9, 29, 22, .9) 0%, rgba(10, 34, 25, .62) 36%, rgba(10, 34, 25, .08) 68%, rgba(10, 34, 25, .02) 100%);
}

@keyframes lantingHeroDrift {
	from { transform: scale(1.08); }
	to { transform: scale(1.02); }
}

.lanting-hero-inner {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	height: 100%;
	padding-top: 82px;
}

.lanting-hero-copy {
	width: min(610px, 52vw);
}

.lanting-hero-copy h1 {
	max-width: 640px;
	margin-bottom: 20px;
	color: var(--ll-white);
	font-size: clamp(4rem, 7.2vw, 7.25rem);
	line-height: .9;
}

.lanting-hero-copy > p:not(.lanting-kicker) {
	max-width: 520px;
	color: rgba(255, 255, 255, .84);
	font-size: clamp(1rem, 1.35vw, 1.24rem);
}

.lanting-actions {
	display: flex;
	align-items: center;
	gap: 28px;
	margin-top: 28px;
}

.lanting-scroll-cue {
	position: absolute;
	z-index: 2;
	right: 42px;
	bottom: 38px;
	display: flex;
	align-items: center;
	gap: 10px;
	color: rgba(255,255,255,.7);
	font-size: .6rem;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
	transform: rotate(90deg);
	transform-origin: right center;
}

.lanting-scroll-cue span {
	display: block;
	width: 48px;
	height: 1px;
	background: var(--ll-gold);
}

.lanting-promises {
	border-bottom: 1px solid var(--ll-border);
	background: var(--ll-parchment);
}

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

.lanting-promises-grid > div {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 13px;
	min-height: 78px;
	padding: 16px 20px;
	border-right: 1px solid var(--ll-border);
	color: var(--ll-jade);
	font-size: .68rem;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.lanting-promises-grid > div:last-child {
	border-right: 0;
}

.lanting-promises svg {
	width: 23px;
	fill: none;
	stroke: var(--ll-gold);
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.2;
}

.lanting-section {
	padding: clamp(54px, 5.25vw, 76px) 0;
}

.lanting-section-heading {
	max-width: 760px;
	margin-bottom: clamp(28px, 3vw, 40px);
}

.lanting-section-heading h2 {
	margin: 0;
}

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

.lanting-category-grid {
	display: grid;
	grid-template-columns: 1fr 1.15fr 1fr;
	grid-template-rows: 280px 280px;
	gap: 14px;
}

.lanting-category-card {
	position: relative;
	overflow: hidden;
	background: var(--ll-parchment);
}

.lanting-category-card:nth-child(4) {
	grid-column: 1;
}

.lanting-category-card--tall {
	grid-row: span 2;
}

.lanting-category-card--signature {
	grid-row: span 2;
}

.lanting-category-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 900ms cubic-bezier(.2,.7,.2,1);
}

.lanting-category-card::after {
	position: absolute;
	inset: 40% 0 0;
	background: linear-gradient(transparent, rgba(9,29,22,.68));
	content: "";
}

.lanting-category-card:hover img {
	transform: scale(1.045);
}

.lanting-category-card span {
	position: absolute;
	z-index: 2;
	right: 28px;
	bottom: 24px;
	left: 28px;
	color: var(--ll-white);
}

.lanting-category-card strong {
	display: block;
	font-family: var(--ll-serif);
	font-size: clamp(1.7rem, 2.5vw, 2.55rem);
	font-weight: 500;
	line-height: 1;
}

.lanting-category-card em {
	display: block;
	margin-top: 7px;
	font-size: .66rem;
	font-style: normal;
	font-weight: 650;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.lanting-feature {
	display: grid;
	grid-template-columns: 1.15fr .85fr;
	height: clamp(400px, 29vw, 480px);
	min-height: 0;
	background: var(--ll-jade);
	color: rgba(255,255,255,.78);
	overflow: hidden;
}

.lanting-feature-image {
	height: 100%;
	min-height: 0;
}

.lanting-feature-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.lanting-feature-copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: clamp(32px, 3.4vw, 52px);
}

.lanting-feature-copy h2 {
	max-width: 620px;
	color: var(--ll-white);
	font-size: clamp(2.7rem, 3.7vw, 4rem);
	margin-bottom: .42em;
}

.lanting-feature-copy > p:not(.lanting-kicker):not(.lanting-cultural-note) {
	margin-bottom: 1em;
}

.lanting-cultural-note {
	margin-bottom: 1.15em;
	padding-left: 22px;
	border-left: 1px solid var(--ll-gold);
	font-size: .82rem;
}

.lanting-products-section {
	background: #faf8f3;
}

.lanting-product-shortcode .woocommerce {
	width: 100%;
}

.lanting-demo-note {
	max-width: 740px;
	margin: 24px auto 0;
	color: var(--ll-muted);
	font-size: .76rem;
	text-align: center;
}

.lanting-plugin-note {
	padding: 40px;
	border: 1px solid var(--ll-border);
	text-align: center;
}

.lanting-plugin-note p {
	margin: 0;
}

.lanting-story-band {
	padding: clamp(54px, 5.25vw, 76px) 0;
	background: var(--ll-parchment);
}

.lanting-story-grid {
	display: grid;
	grid-template-columns: .82fr 1.18fr;
	align-items: center;
	gap: clamp(38px, 4.5vw, 66px);
}

.lanting-story-copy > p:not(.lanting-kicker) {
	color: var(--ll-muted);
	font-size: 1.04rem;
}

.lanting-check-list {
	margin: 22px 0 30px;
	padding: 0;
	list-style: none;
}

.lanting-check-list li {
	position: relative;
	padding: 10px 0 10px 26px;
	border-bottom: 1px solid var(--ll-border);
	font-size: .78rem;
	font-weight: 650;
	letter-spacing: .06em;
}

.lanting-check-list li::before {
	position: absolute;
	top: 17px;
	left: 2px;
	width: 8px;
	height: 8px;
	border: 1px solid var(--ll-gold);
	content: "";
	transform: rotate(45deg);
}

.lanting-story-art {
	position: relative;
	display: grid;
	aspect-ratio: 1 / 1;
	padding: 32px;
	place-items: center;
}

.lanting-story-art::before {
	position: absolute;
	z-index: 0;
	inset: 16px;
	border: 1px solid var(--ll-gold);
	content: "";
}

.lanting-story-art img {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.lanting-story-seal {
	position: absolute;
	z-index: 2;
	right: 0;
	bottom: 16px;
	display: grid;
	width: 118px;
	height: 118px;
	padding: 16px;
	border-radius: 50%;
	background: var(--ll-jade);
	color: var(--ll-white);
	text-align: center;
	place-content: center;
}

.lanting-story-seal span {
	font-family: "Noto Serif SC", serif;
	font-size: 1.35rem;
	letter-spacing: .1em;
	line-height: 1.35;
}

.lanting-story-seal small {
	margin-top: 6px;
	color: var(--ll-gold);
	font-size: .4rem;
	font-weight: 700;
	letter-spacing: .08em;
	line-height: 1.4;
	text-transform: uppercase;
}

.lanting-gifting-grid {
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	align-items: center;
	gap: clamp(38px, 4.5vw, 66px);
}

.lanting-gifting-image {
	position: relative;
	display: grid;
	aspect-ratio: 1 / 1;
	width: 100%;
	padding: 32px;
	justify-self: center;
	place-items: center;
}

.lanting-gifting-image img {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.lanting-gifting-image::after {
	position: absolute;
	z-index: 0;
	inset: 16px;
	background: var(--ll-parchment);
	content: "";
}

.lanting-gifting-copy > svg {
	width: 38px;
	margin-bottom: 20px;
	fill: none;
	stroke: var(--ll-gold);
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1;
}

.lanting-gifting-copy > p:not(.lanting-kicker) {
	color: var(--ll-muted);
}

.lanting-gift-details {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 28px;
	margin: 22px 0 30px;
}

.lanting-gift-details span {
	padding: 11px 0;
	border-bottom: 1px solid var(--ll-border);
	font-size: .7rem;
	font-weight: 650;
	letter-spacing: .06em;
	text-transform: uppercase;
}

.lanting-corporate {
	padding: clamp(46px, 4.5vw, 64px) 0;
	background: linear-gradient(120deg, var(--ll-jade-deep), var(--ll-jade));
	color: rgba(255,255,255,.78);
}

.lanting-corporate-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 60px;
}

.lanting-corporate-inner > div {
	max-width: 720px;
}

.lanting-corporate h2 {
	color: var(--ll-white);
}

.lanting-letter {
	padding: 40px 0;
	border-bottom: 1px solid rgba(255,255,255,.16);
	background: var(--ll-jade-deep);
	color: rgba(255,255,255,.72);
}

.lanting-letter-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 50px;
}

.lanting-letter h2 {
	max-width: 700px;
	margin: 0;
	color: var(--ll-white);
	font-size: clamp(2rem, 3vw, 3.4rem);
}

.site-footer {
	background: var(--ll-jade);
	color: rgba(255,255,255,.7);
}

.lanting-footer-grid {
	display: grid;
	grid-template-columns: 1.8fr repeat(3, 1fr);
	gap: 50px;
	padding-top: 54px;
	padding-bottom: 50px;
}

.lanting-footer-brand {
	max-width: 390px;
}

.lanting-brand-lockup--footer {
	align-items: flex-start;
	flex-direction: column;
	justify-content: flex-start;
	gap: 9px;
	width: fit-content;
	margin-bottom: 14px;
	color: var(--ll-white);
}

.lanting-footer-mark {
	display: block;
	width: 52px;
	height: 63px;
	object-fit: contain;
	object-position: left center;
}

.lanting-footer-wordmark {
	display: block;
	color: var(--ll-ivory);
	font-family: var(--ll-serif);
	font-size: .88rem;
	font-weight: 500;
	line-height: 1;
	letter-spacing: .22em;
	text-transform: uppercase;
	white-space: nowrap;
}

.lanting-footer-brand p {
	margin: 0;
	font-size: .82rem;
}

.site-footer h3 {
	margin-bottom: 22px;
	color: var(--ll-gold);
	font-family: var(--ll-sans);
	font-size: .68rem;
	font-weight: 750;
	letter-spacing: .14em;
	text-transform: uppercase;
}

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

.site-footer li {
	margin-bottom: 9px;
}

.site-footer li a,
.lanting-footer-bottom a {
	font-size: .78rem;
	transition: color var(--ll-transition);
}

.site-footer a:hover {
	color: var(--ll-white);
}

.lanting-footer-bottom {
	display: grid;
	grid-template-columns: minmax(250px, 1fr) auto minmax(250px, 1fr);
	align-items: center;
	gap: 28px;
	padding-top: 22px;
	padding-bottom: 22px;
	border-top: 1px solid rgba(255,255,255,.14);
}

.lanting-footer-bottom p {
	margin: 0;
	font-size: .68rem;
}

.lanting-footer-bottom nav {
	display: flex;
	justify-self: end;
	gap: 22px;
}

.lanting-payment-methods {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}

.lanting-payment-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 25px;
	overflow: hidden;
	border: 1px solid rgba(255,255,255,.2);
	border-radius: 4px;
	background: rgba(255,255,255,.94);
	box-shadow: 0 1px 0 rgba(0,0,0,.05);
}

.lanting-payment-badge svg {
	display: block;
	width: auto;
	height: 25px;
}

.lanting-payment-badge text {
	font-family: Arial, Helvetica, sans-serif;
	font-weight: 800;
}

.lanting-payment-badge--paypal { width: 60px; color: #173b73; }
.lanting-payment-badge--paypal text { font-size: 12px; font-style: italic; letter-spacing: -.7px; }
.lanting-payment-badge--visa { width: 45px; color: #1434cb; }
.lanting-payment-badge--visa text { font-size: 13px; font-style: italic; letter-spacing: -.8px; }
.lanting-payment-badge--mastercard { width: 40px; }
.lanting-payment-badge--mastercard circle:first-child { fill: #eb001b; }
.lanting-payment-badge--mastercard circle:last-child { fill: #f79e1b; fill-opacity: .9; }
.lanting-payment-badge--amex { width: 45px; color: #006fcf; }
.lanting-payment-badge--amex text { font-size: 5.7px; letter-spacing: .15px; }
.lanting-payment-badge--debit { width: 54px; color: #16463b; }
.lanting-payment-badge--debit rect { fill: none; stroke: currentColor; stroke-width: 1.2; }
.lanting-payment-badge--debit path { fill: none; stroke: currentColor; stroke-width: 1.2; }
.lanting-payment-badge--debit text { font-size: 7px; letter-spacing: .25px; }

.lanting-page-hero {
	padding: 76px 0 52px;
	background: var(--ll-parchment);
}

.lanting-page-hero h1 {
	max-width: 900px;
	font-size: clamp(3.5rem, 7vw, 7rem);
}

.lanting-prose {
	max-width: 800px;
	padding-top: 48px;
	padding-bottom: 72px;
}

.lanting-prose > h2,
.lanting-prose > h3 {
	margin-top: 1.15em;
}

.lanting-prose > h2:first-child {
	margin-top: 0;
}

.lanting-prose > h2 {
	font-size: clamp(2.15rem, 3.5vw, 3.35rem);
}

.lanting-prose > h3 {
	font-size: clamp(1.55rem, 2.2vw, 2.1rem);
}

.lanting-prose > * + p,
.lanting-prose > p + ul,
.lanting-prose > p + ol {
	margin-top: 0;
}

.lanting-prose p,
.lanting-prose li {
	color: #50504b;
}

.lanting-prose a {
	border-bottom: 1px solid var(--ll-gold);
	color: var(--ll-jade);
}

.lanting-prose blockquote {
	margin: 40px 0;
	padding: 20px 0 20px 30px;
	border-left: 1px solid var(--ll-gold);
	color: var(--ll-jade);
	font-family: var(--ll-serif);
	font-size: 1.5rem;
}

.lanting-prose--editorial {
	max-width: 1080px;
}

.lanting-prose--gift {
	max-width: 1080px;
}

.lanting-prose--contact {
	max-width: 1180px;
	padding-top: 36px;
	padding-bottom: 64px;
}

.lanting-prose--legal {
	max-width: 1000px;
	padding-top: 36px;
	padding-bottom: 64px;
}

.lanting-legal-intro {
	max-width: 850px;
	margin-bottom: 26px;
	padding-bottom: 26px;
	border-bottom: 1px solid var(--ll-gold);
}

.lanting-legal-intro > p:last-child {
	margin: 0;
	color: var(--ll-jade);
	font-family: var(--ll-serif);
	font-size: clamp(1.35rem, 2.2vw, 1.9rem);
	line-height: 1.35;
}

.lanting-legal-contents {
	margin-bottom: 38px;
	padding: 24px 26px;
	border: 1px solid var(--ll-border);
	background: rgba(255, 255, 255, .32);
}

.lanting-legal-contents ol {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px 32px;
	margin: 0;
	padding-left: 20px;
}

.lanting-legal-contents a {
	border-bottom: 0;
}

.lanting-legal-section {
	padding: 30px 0;
	border-top: 1px solid var(--ll-border);
	scroll-margin-top: 120px;
}

.lanting-legal-section:first-of-type {
	border-top: 0;
}

.lanting-legal-section h2 {
	margin-bottom: 14px;
	font-size: clamp(1.9rem, 3vw, 2.7rem);
}

.lanting-legal-section h3 {
	margin: 22px 0 8px;
	font-size: 1.4rem;
}

.lanting-legal-section p:last-child,
.lanting-legal-section li:last-child {
	margin-bottom: 0;
}

.lanting-legal-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	margin: 20px 0;
}

.lanting-legal-grid > div {
	padding: 22px 24px;
	border: 1px solid var(--ll-border);
	background: rgba(255, 255, 255, .3);
}

.lanting-legal-grid h3 {
	margin-top: 0;
}

.lanting-legal-grid--cookies {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lanting-legal-table {
	margin: 20px 0;
	border-top: 1px solid var(--ll-border);
}

.lanting-legal-table > div {
	display: grid;
	grid-template-columns: minmax(150px, .34fr) 1fr;
	gap: 24px;
	padding: 18px 0;
	border-bottom: 1px solid var(--ll-border);
}

.lanting-cookie-placeholder,
.lanting-legal-contact {
	margin: 26px 0;
	padding: 28px 30px;
	background: var(--ll-parchment);
}

.lanting-cookie-placeholder p:last-child,
.lanting-legal-contact p:last-child {
	margin-bottom: 0;
}

.lanting-legal-contact {
	margin-top: 34px;
	border-left: 2px solid var(--ll-gold);
}

.lanting-legal-contact h2 {
	margin-bottom: 10px;
	font-size: clamp(1.9rem, 3vw, 2.6rem);
}

.lanting-service-intro {
	max-width: 820px;
	margin-bottom: 28px;
	padding-bottom: 26px;
	border-bottom: 1px solid var(--ll-gold);
}

.lanting-service-intro > p:last-child {
	margin-bottom: 0;
	color: var(--ll-jade);
	font-family: var(--ll-serif);
	font-size: clamp(1.25rem, 2vw, 1.7rem);
	line-height: 1.45;
}

.lanting-service-highlights {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	margin: 0 0 32px;
	overflow: hidden;
	border: 1px solid var(--ll-border);
	background: var(--ll-border);
}

.lanting-service-highlights > div {
	display: flex;
	min-height: 126px;
	flex-direction: column;
	justify-content: center;
	padding: 22px 24px;
	background: rgba(255, 255, 255, .48);
}

.lanting-service-highlights strong {
	margin-bottom: 6px;
	color: var(--ll-jade);
	font-family: var(--ll-serif);
	font-size: clamp(1.45rem, 2.5vw, 2rem);
	font-weight: 500;
	line-height: 1.15;
}

.lanting-service-highlights span {
	color: var(--ll-muted);
	font-size: .82rem;
	letter-spacing: .06em;
	line-height: 1.45;
	text-transform: uppercase;
}

.lanting-gift-intro {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
	gap: clamp(32px, 6vw, 82px);
	align-items: end;
	margin-bottom: 34px;
	padding-bottom: 30px;
	border-bottom: 1px solid var(--ll-gold);
}

.lanting-gift-intro h2 {
	max-width: 690px;
	margin-bottom: 0;
}

.lanting-gift-intro > p {
	margin-bottom: 4px;
	color: var(--ll-muted);
	font-size: 1rem;
	line-height: 1.75;
}

.lanting-gift-highlights {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin: 0 0 48px;
	border: 1px solid var(--ll-border);
	background: rgba(255, 255, 255, .35);
}

.lanting-gift-highlights > div {
	position: relative;
	min-height: 170px;
	padding: 28px 28px 24px;
	border-right: 1px solid var(--ll-border);
}

.lanting-gift-highlights > div:last-child {
	border-right: 0;
}

.lanting-gift-highlights span {
	display: block;
	margin-bottom: 18px;
	color: var(--ll-gold-dark);
	font-size: .68rem;
	font-weight: 700;
	letter-spacing: .16em;
}

.lanting-gift-highlights h3 {
	margin-bottom: 8px;
	font-size: clamp(1.35rem, 2vw, 1.7rem);
}

.lanting-gift-highlights p,
.lanting-gift-inclusions span {
	color: var(--ll-muted);
	font-size: .9rem;
	line-height: 1.6;
}

.lanting-gift-section {
	margin: 44px 0 52px;
}

.lanting-gift-section-heading {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(260px, .72fr);
	gap: 14px 60px;
	align-items: end;
	margin-bottom: 24px;
}

.lanting-gift-section-heading .lanting-card-label {
	grid-column: 1 / -1;
	margin-bottom: 0;
}

.lanting-gift-section-heading h2,
.lanting-gift-section-heading > p:last-child {
	margin-bottom: 0;
}

.lanting-gift-section-heading > p:last-child {
	color: var(--ll-muted);
	font-size: .88rem;
}

.lanting-gift-inclusions {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	border-top: 1px solid var(--ll-border);
	border-left: 1px solid var(--ll-border);
}

.lanting-gift-inclusions > div {
	min-height: 120px;
	padding: 22px 24px;
	border-right: 1px solid var(--ll-border);
	border-bottom: 1px solid var(--ll-border);
}

.lanting-gift-inclusions strong,
.lanting-gift-inclusions span {
	display: block;
}

.lanting-gift-inclusions strong {
	margin-bottom: 7px;
	color: var(--ll-jade);
	font-family: var(--ll-serif);
	font-size: 1.18rem;
	font-weight: 500;
}

.lanting-gift-note {
	display: grid;
	grid-template-columns: 90px minmax(0, 1fr);
	gap: 26px;
	align-items: center;
	margin: 48px 0;
	padding: 30px 38px;
	background: var(--ll-jade);
	color: rgba(255, 255, 255, .76);
}

.lanting-gift-note-mark {
	color: var(--ll-gold);
	font-family: var(--ll-serif);
	font-size: 7rem;
	line-height: .7;
	text-align: center;
}

.lanting-gift-note .lanting-card-label {
	color: var(--ll-gold);
}

.lanting-gift-note h2 {
	margin-bottom: 8px;
	color: #fff;
	font-size: clamp(2rem, 3.5vw, 3.2rem);
}

.lanting-gift-note p:last-child {
	max-width: 780px;
	margin-bottom: 0;
	color: rgba(255, 255, 255, .84);
}

.lanting-gift-process {
	margin-bottom: 0;
}

.lanting-gift-occasions {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr);
	gap: clamp(34px, 6vw, 80px);
	align-items: center;
	margin: 52px 0 36px;
	padding: 38px 42px;
	background: var(--ll-parchment);
}

.lanting-gift-occasions h2,
.lanting-gift-occasions p:last-child {
	margin-bottom: 0;
}

.lanting-gift-occasions ul {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0 24px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.lanting-gift-occasions li {
	padding: 11px 0;
	border-bottom: 1px solid rgba(20, 57, 43, .16);
	color: var(--ll-jade);
	font-family: var(--ll-serif);
}

.lanting-gift-guidance {
	margin-bottom: 36px;
}

.lanting-gift-cta {
	display: flex;
	gap: 30px;
	align-items: center;
	justify-content: space-between;
	margin: 36px 0 20px;
	padding: 34px 38px;
	background: var(--ll-jade);
	color: rgba(255, 255, 255, .78);
}

.lanting-gift-cta .lanting-card-label {
	color: var(--ll-gold);
}

.lanting-gift-cta h2 {
	margin-bottom: 6px;
	color: #fff;
	font-size: clamp(2rem, 3.2vw, 3rem);
}

.lanting-gift-cta p:last-child {
	margin-bottom: 0;
	color: rgba(255, 255, 255, .84);
}

.lanting-gift-cta .lanting-button {
	flex: 0 0 auto;
}

.lanting-gift-cta-actions {
	display: flex;
	flex: 0 0 auto;
	gap: 12px;
	align-items: center;
}

.lanting-gift-cta .lanting-gift-shop-link {
	border: 1px solid var(--ll-ivory);
	background: var(--ll-ivory);
	color: var(--ll-jade);
}

.lanting-gift-cta .lanting-gift-contact-link {
	border: 1px solid rgba(255, 255, 255, .48);
	background: transparent;
	color: #fff;
}

.lanting-gift-cta .lanting-gift-shop-link:hover,
.lanting-gift-cta .lanting-gift-shop-link:focus-visible,
.lanting-gift-cta .lanting-gift-contact-link:hover,
.lanting-gift-cta .lanting-gift-contact-link:focus-visible {
	border-color: var(--ll-gold);
	background: var(--ll-gold);
	color: var(--ll-jade-deep);
}

.lanting-gift-shop-fallback {
	display: flex;
	gap: 24px;
	align-items: center;
	justify-content: space-between;
	margin: 36px 0 20px;
	padding: 28px 32px;
	border: 1px solid var(--ll-border);
	background: var(--ll-parchment);
}

.lanting-gift-shop-fallback p {
	max-width: 680px;
	margin: 0;
}

.lanting-gift-shop-fallback .lanting-button {
	flex: 0 0 auto;
	border: 1px solid var(--ll-jade);
	background: var(--ll-jade);
	color: #fff;
}

.lanting-gift-shop-fallback .lanting-button:hover,
.lanting-gift-shop-fallback .lanting-button:focus-visible {
	border-color: var(--ll-gold);
	background: var(--ll-gold);
	color: var(--ll-jade-deep);
}

.lanting-gift-disclaimer {
	max-width: 900px;
	margin: 0 !important;
}

/* Affiliate Program landing page. */
.lanting-prose--affiliate {
	max-width: 1180px;
}

.lanting-affiliate-intro {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
	gap: clamp(36px, 7vw, 90px);
	align-items: end;
	margin-bottom: 34px;
	padding-bottom: 36px;
	border-bottom: 1px solid var(--ll-gold);
}

.lanting-affiliate-intro h2 {
	max-width: 680px;
	margin: 0;
	font-size: clamp(3rem, 6vw, 5.5rem);
	line-height: .98;
}

.lanting-affiliate-intro > div:last-child > p {
	margin: 0;
	color: var(--ll-muted);
	font-size: .94rem;
}

.lanting-affiliate-actions {
	display: flex;
	gap: 16px;
	align-items: center;
	margin-top: 22px;
}

.lanting-affiliate-actions > br {
	display: none;
}

.lanting-prose--affiliate .lanting-affiliate-intro .lanting-button,
.lanting-prose--affiliate .lanting-affiliate-intro .lanting-button:visited {
	border-color: var(--ll-jade);
	background: var(--ll-jade);
	color: var(--ll-ivory);
}

.lanting-prose--affiliate .lanting-affiliate-intro .lanting-button:hover,
.lanting-prose--affiliate .lanting-affiliate-intro .lanting-button:focus-visible {
	border-color: var(--ll-gold);
	background: var(--ll-gold);
	color: var(--ll-jade-deep);
}

.lanting-affiliate-metrics {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1px;
	margin: 0 0 56px;
	overflow: hidden;
	border: 1px solid var(--ll-border);
	background: var(--ll-border);
}

.lanting-affiliate-metrics > div {
	display: flex;
	min-height: 210px;
	flex-direction: column;
	padding: 26px 24px;
	background: rgba(255, 255, 255, .48);
}

.lanting-affiliate-metrics strong {
	margin-bottom: 4px;
	color: var(--ll-jade);
	font-family: var(--ll-serif);
	font-size: clamp(2.25rem, 4vw, 3.35rem);
	font-weight: 500;
	line-height: 1;
}

.lanting-affiliate-metrics span {
	color: var(--ll-gold-dark);
	font-size: .65rem;
	font-weight: 600;
	letter-spacing: .13em;
	text-transform: uppercase;
}

.lanting-affiliate-metrics p {
	margin: auto 0 0;
	color: var(--ll-muted);
	font-size: .78rem;
	line-height: 1.55;
}

.lanting-affiliate-section {
	margin: 54px 0;
}

.lanting-affiliate-section-heading {
	max-width: 820px;
	margin-bottom: 26px;
}

.lanting-affiliate-section-heading h2 {
	margin: 0;
	font-size: clamp(2.5rem, 4.5vw, 4.4rem);
}

.lanting-affiliate-fit {
	margin-bottom: 48px;
}

.lanting-affiliate-growth {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
	gap: clamp(32px, 6vw, 76px);
	align-items: center;
	margin: 48px 0 58px;
	padding: 40px 42px;
	background: var(--ll-jade);
	color: rgba(255, 255, 255, .82);
}

.lanting-affiliate-growth .lanting-card-label {
	color: var(--ll-gold);
}

.lanting-affiliate-growth h2,
.lanting-affiliate-growth h3 {
	color: var(--ll-ivory);
}

.lanting-affiliate-growth h2 {
	margin-bottom: 10px;
	font-size: clamp(2.4rem, 4.2vw, 4rem);
}

.lanting-affiliate-growth h3 {
	margin-bottom: 8px;
	font-size: clamp(1.7rem, 2.7vw, 2.35rem);
}

.lanting-affiliate-growth p:last-child {
	margin-bottom: 0;
	color: inherit;
}

.lanting-prose--affiliate .lanting-affiliate-growth a,
.lanting-prose--affiliate .lanting-affiliate-growth a:visited {
	color: var(--ll-ivory);
	text-decoration-color: var(--ll-gold);
	text-underline-offset: 3px;
}

.lanting-prose--affiliate .lanting-affiliate-growth a:hover,
.lanting-prose--affiliate .lanting-affiliate-growth a:focus-visible {
	color: var(--ll-gold);
}

.lanting-affiliate-coupon {
	padding: 26px 28px;
	border: 1px solid rgba(255, 255, 255, .22);
	background: rgba(255, 255, 255, .06);
}

.lanting-affiliate-tools {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.lanting-affiliate-section--access .lanting-affiliate-section-heading {
	max-width: 740px;
	margin-bottom: 30px;
}

.lanting-affiliate-section--access .lanting-affiliate-section-heading h2 {
	font-size: clamp(2.5rem, 4vw, 3.85rem);
	line-height: 1.02;
}

.lanting-affiliate-tool {
	position: relative;
	display: flex;
	min-height: 250px;
	flex-direction: column;
	padding: 28px 26px 25px;
	border: 1px solid var(--ll-border);
	background: rgba(255, 255, 255, .56);
	color: var(--ll-charcoal);
	transition: border-color var(--ll-transition), background var(--ll-transition), transform var(--ll-transition);
}

.lanting-affiliate-tool::before {
	position: absolute;
	top: -1px;
	left: -1px;
	width: 52px;
	height: 2px;
	background: var(--ll-gold);
	content: "";
}

.lanting-affiliate-tool:hover,
.lanting-affiliate-tool:focus-within {
	border-color: var(--ll-gold);
	background: var(--ll-white);
	transform: translateY(-3px);
}

.lanting-affiliate-tool-number {
	color: var(--ll-gold-dark);
	font-size: .65rem;
	font-weight: 600;
	letter-spacing: .14em;
}

.lanting-affiliate-tool h3 {
	margin: 24px 0 9px;
	font-size: clamp(1.55rem, 2.5vw, 2.05rem);
}

.lanting-affiliate-tool p {
	margin: 0;
	color: var(--ll-muted);
	font-size: .8rem;
}

.lanting-affiliate-tool-action {
	margin-top: auto;
	padding-top: 20px;
}

.lanting-prose--affiliate .lanting-affiliate-tool-link,
.lanting-prose--affiliate .lanting-affiliate-tool-link:visited {
	display: flex;
	gap: 12px;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid var(--ll-gold);
	color: var(--ll-jade);
	font-size: .68rem;
	font-weight: 600;
	letter-spacing: .12em;
	text-decoration: none;
	text-transform: uppercase;
}

.lanting-affiliate-tool-link::after {
	font-size: 1rem;
	font-weight: 400;
	line-height: 1;
	content: "\2192";
}

.lanting-prose--affiliate .lanting-affiliate-tool-link:hover,
.lanting-prose--affiliate .lanting-affiliate-tool-link:focus-visible {
	color: var(--ll-gold-dark);
}

.lanting-affiliate-terms {
	max-width: 900px;
	margin: 58px 0;
	padding: 32px 34px;
	border-left: 3px solid var(--ll-gold);
	background: var(--ll-parchment);
}

.lanting-affiliate-terms h2 {
	margin-bottom: 18px;
	font-size: clamp(2.2rem, 3.7vw, 3.3rem);
}

.lanting-affiliate-terms .lanting-check-list {
	margin-bottom: 22px;
}

.lanting-affiliate-cta {
	display: flex;
	gap: 30px;
	align-items: center;
	justify-content: space-between;
	margin-top: 54px;
	padding: 36px 40px;
	background: var(--ll-jade);
	color: rgba(255, 255, 255, .82);
}

.lanting-affiliate-cta .lanting-card-label {
	color: var(--ll-gold);
}

.lanting-affiliate-cta h2 {
	margin-bottom: 7px;
	color: var(--ll-ivory);
	font-size: clamp(2.1rem, 3.6vw, 3.2rem);
}

.lanting-affiliate-cta p:last-child {
	max-width: 650px;
	margin-bottom: 0;
	color: inherit;
}

.lanting-affiliate-cta .lanting-affiliate-actions {
	flex: 0 0 auto;
	margin-top: 0;
}

.lanting-affiliate-cta .lanting-button--ivory {
	border-color: var(--ll-ivory);
	background: var(--ll-ivory);
	color: var(--ll-jade);
}

.lanting-affiliate-cta .lanting-button:not(.lanting-button--ivory) {
	border-color: rgba(255, 255, 255, .48);
	background: transparent;
	color: var(--ll-ivory);
}

.lanting-affiliate-cta .lanting-button:hover,
.lanting-affiliate-cta .lanting-button:focus-visible {
	border-color: var(--ll-gold);
	background: var(--ll-gold);
	color: var(--ll-jade-deep);
}

@media (max-width: 980px) {
	.lanting-affiliate-intro,
	.lanting-affiliate-growth { grid-template-columns: 1fr; }
	.lanting-affiliate-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.lanting-affiliate-cta { align-items: flex-start; flex-direction: column; }
	.lanting-affiliate-cta .lanting-affiliate-actions { width: 100%; }
}

@media (max-width: 640px) {
	.lanting-affiliate-intro { gap: 22px; margin-bottom: 26px; padding-bottom: 26px; }
	.lanting-affiliate-actions { gap: 10px; align-items: stretch; flex-direction: column; }
	.lanting-affiliate-actions .lanting-button { width: 100%; }
	.lanting-affiliate-metrics,
	.lanting-affiliate-tools { grid-template-columns: 1fr; }
	.lanting-affiliate-metrics > div { min-height: 160px; padding: 22px 20px; }
	.lanting-affiliate-growth { margin-inline: -16px; padding: 30px 22px; }
	.lanting-affiliate-coupon { padding: 22px 20px; }
	.lanting-affiliate-section--access .lanting-affiliate-section-heading h2 { font-size: clamp(2.35rem, 11vw, 3.2rem); }
	.lanting-affiliate-tool { min-height: 205px; padding: 24px 21px 22px; }
	.lanting-affiliate-terms { padding: 26px 22px; }
	.lanting-affiliate-cta { margin-inline: -16px; padding: 30px 22px; }
}

/* SliceWP affiliate account, registration and password-recovery forms. */
.lanting-page-main .slicewp-form button.slicewp-button-primary,
.lanting-page-main .slicewp-form input.slicewp-button-primary {
	-webkit-appearance: none;
	appearance: none;
	display: inline-flex;
	min-width: 220px;
	min-height: 54px;
	align-items: center;
	justify-content: center;
	padding: 15px 32px;
	border: 1px solid var(--ll-jade);
	border-radius: 0;
	box-shadow: none;
	background: var(--ll-jade);
	color: var(--ll-ivory);
	cursor: pointer;
	font-family: var(--ll-sans);
	font-size: .74rem;
	font-weight: 700;
	letter-spacing: .14em;
	line-height: 1;
	text-align: center;
	text-transform: uppercase;
	transition: color var(--ll-transition), background var(--ll-transition), border-color var(--ll-transition), transform var(--ll-transition);
}

.lanting-page-main .slicewp-form button.slicewp-button-primary:hover,
.lanting-page-main .slicewp-form button.slicewp-button-primary:focus-visible,
.lanting-page-main .slicewp-form input.slicewp-button-primary:hover,
.lanting-page-main .slicewp-form input.slicewp-button-primary:focus-visible {
	border-color: var(--ll-gold);
	background: var(--ll-gold);
	color: var(--ll-jade-deep);
	transform: translateY(-2px);
}

.lanting-page-main .slicewp-form button.slicewp-button-primary:focus-visible,
.lanting-page-main .slicewp-form input.slicewp-button-primary:focus-visible {
	outline: 2px solid var(--ll-gold);
	outline-offset: 3px;
}

.lanting-page-main .slicewp-form button.slicewp-button-primary:disabled,
.lanting-page-main .slicewp-form input.slicewp-button-primary:disabled {
	opacity: .55;
	cursor: not-allowed;
	transform: none;
}

@media (max-width: 640px) {
	.lanting-page-main .slicewp-form button.slicewp-button-primary,
	.lanting-page-main .slicewp-form input.slicewp-button-primary {
		width: 100%;
		min-width: 0;
	}
}

.lanting-faq-group {
	padding: 26px 0 18px;
	border-top: 1px solid var(--ll-border);
	scroll-margin-top: 120px;
}

.lanting-faq-group:first-of-type {
	border-top: 0;
}

.lanting-faq-group details {
	border-bottom: 1px solid var(--ll-border);
}

.lanting-faq-group summary {
	position: relative;
	padding: 18px 48px 18px 0;
	color: var(--ll-jade);
	cursor: pointer;
	font-family: var(--ll-serif);
	font-size: clamp(1.15rem, 2vw, 1.4rem);
	line-height: 1.35;
	list-style: none;
}

.lanting-faq-group summary::-webkit-details-marker {
	display: none;
}

.lanting-faq-group summary::after {
	position: absolute;
	top: 50%;
	right: 6px;
	width: 20px;
	height: 20px;
	content: "+";
	color: var(--ll-gold-dark);
	font-family: var(--ll-sans);
	font-size: 1.35rem;
	font-weight: 300;
	line-height: 18px;
	text-align: center;
	transform: translateY(-50%);
}

.lanting-faq-group details[open] summary::after {
	content: "−";
}

.lanting-faq-group details > div {
	max-width: 800px;
	padding: 0 42px 18px 0;
}

.lanting-faq-group details p:last-child {
	margin-bottom: 0;
}

.lanting-return-steps {
	margin: 18px 0 0;
	padding: 0;
	counter-reset: ll-return-step;
	list-style: none;
}

.lanting-return-steps li {
	position: relative;
	min-height: 42px;
	margin-bottom: 16px;
	padding-left: 54px;
	counter-increment: ll-return-step;
}

.lanting-return-steps li::before {
	position: absolute;
	top: -5px;
	left: 0;
	display: grid;
	width: 36px;
	height: 36px;
	border: 1px solid var(--ll-gold);
	border-radius: 50%;
	content: counter(ll-return-step);
	color: var(--ll-jade);
	font-family: var(--ll-serif);
	place-items: center;
}

.lanting-policy-rights {
	margin: 28px 0;
	padding: 18px 22px;
	border-left: 2px solid var(--ll-gold);
	background: rgba(255, 255, 255, .35);
	font-size: .92rem;
}

.lanting-prose--editorial > p,
.lanting-prose--editorial > h2,
.lanting-prose--editorial > ul,
.lanting-prose--editorial > ol {
	max-width: 800px;
}

.lanting-page-intro {
	max-width: 900px;
	margin-bottom: 54px;
	padding-bottom: 34px;
	border-bottom: 1px solid var(--ll-gold);
}

.lanting-page-intro p {
	color: var(--ll-jade);
	font-family: var(--ll-serif);
	font-size: clamp(1.55rem, 2.6vw, 2.25rem);
	line-height: 1.28;
}

.lanting-page-intro p:last-child,
.lanting-content-card p:last-child,
.lanting-process-step p:last-child,
.lanting-offer-row p:last-child,
.lanting-editorial-quote p:last-child,
.lanting-contact-panel > p:last-of-type {
	margin-bottom: 0;
}

.lanting-content-grid {
	display: grid;
	gap: 16px;
	margin: 28px 0 52px;
}

.lanting-content-grid--two {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

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

.lanting-care-priority {
	display: grid;
	grid-template-columns: minmax(240px, .8fr) minmax(0, 1.2fr);
	gap: 28px;
	align-items: center;
	margin: 28px 0;
	padding: 26px 30px;
	border-left: 3px solid var(--ll-gold);
	background: var(--ll-ivory);
}

.lanting-care-priority h2,
.lanting-care-priority p {
	margin-bottom: 0;
}

.lanting-care-essentials {
	margin: 28px 0 34px;
}

.lanting-care-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	margin-bottom: 14px;
	border: 1px solid rgba(173, 139, 68, .55);
	border-radius: 50%;
	color: var(--ll-gold);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .08em;
}

.lanting-care-donts {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px 24px;
	margin-top: 22px;
	padding: 18px 20px 18px 38px;
	background: rgba(244, 240, 231, .7);
}

.lanting-content-card {
	padding: 28px;
	border: 1px solid var(--ll-border);
	background: rgba(255, 255, 255, .32);
}

.lanting-content-card h3 {
	font-size: clamp(1.55rem, 2vw, 2rem);
}

.lanting-card-label {
	margin-bottom: 12px;
	color: var(--ll-gold) !important;
	font-size: .68rem;
	font-weight: 700;
	letter-spacing: .18em;
	text-transform: uppercase;
}

.lanting-editorial-quote {
	max-width: 900px;
	margin: 44px 0 52px;
	padding: 32px 36px;
	border-left: 2px solid var(--ll-gold);
	background: var(--ll-parchment);
}

.lanting-editorial-quote p {
	color: var(--ll-jade);
	font-family: var(--ll-serif);
	font-size: clamp(1.65rem, 2.8vw, 2.4rem);
	line-height: 1.25;
}

.lanting-process-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0;
	margin: 28px 0 52px;
	border: 1px solid var(--ll-border);
}

.lanting-process-step {
	padding: 28px 24px;
	border-right: 1px solid var(--ll-border);
}

.lanting-process-step:last-child {
	border-right: 0;
}

.lanting-process-number,
.lanting-offer-number,
.lanting-process-step > span,
.lanting-offer-row > span {
	display: block;
	margin-bottom: 22px;
	color: var(--ll-gold);
	font-family: var(--ll-serif);
	font-size: 1.45rem;
}

/*
 * wpautop may add empty paragraphs after the legacy inline number labels.
 * Keep this defensive rule for pages saved before version 1.2.1.
 */
.lanting-process-step > p:empty,
.lanting-offer-row > p:empty {
	display: none;
}

.lanting-process-step h3 {
	font-size: 1.7rem;
}

.lanting-check-list {
	margin: 24px 0 52px;
	padding: 0;
	list-style: none;
}

.lanting-check-list li {
	position: relative;
	padding: 14px 0 14px 30px;
	border-bottom: 1px solid var(--ll-border);
}

.lanting-check-list li::before {
	position: absolute;
	top: 15px;
	left: 0;
	color: var(--ll-gold);
	content: "◇";
}

.lanting-offer-stack {
	margin: 28px 0 52px;
	border-top: 1px solid var(--ll-border);
}

.lanting-offer-row {
	display: grid;
	grid-template-columns: 72px 1fr;
	gap: 12px;
	padding: 30px 0;
	border-bottom: 1px solid var(--ll-border);
}

.lanting-offer-number,
.lanting-offer-row > span {
	grid-column: 1;
	grid-row: 1;
}

.lanting-offer-row > div:not(.lanting-offer-number) {
	grid-column: 2;
	grid-row: 1;
	min-width: 0;
}

.lanting-offer-row h3 {
	font-size: clamp(1.7rem, 2.5vw, 2.3rem);
}

.lanting-small-note {
	color: var(--ll-muted) !important;
	font-size: .88rem;
}

.lanting-contact-panel {
	margin-top: 56px;
	padding: 42px;
	background: var(--ll-parchment);
}

.lanting-contact-panel > h2 {
	max-width: 800px;
}

.lanting-contact-panel .lanting-contact-form {
	margin-top: 34px;
	background: var(--ll-ivory);
}

.lanting-contact-page .lanting-page-hero {
	padding: 52px 0 36px;
}

.lanting-contact-page .lanting-page-hero h1 {
	font-size: clamp(3.3rem, 6vw, 5.8rem);
}

.lanting-contact-intro {
	max-width: 840px;
	margin-bottom: 30px;
}

.lanting-contact-intro h2 {
	margin-bottom: 14px;
	font-size: clamp(2.2rem, 3.8vw, 3.65rem);
}

.lanting-contact-intro > p:last-child {
	max-width: 720px;
	margin-bottom: 0;
	color: var(--ll-muted);
	font-size: 1.02rem;
}

.lanting-contact-layout {
	display: grid;
	grid-template-columns: minmax(260px, .72fr) minmax(0, 1.55fr);
	gap: 22px;
	align-items: start;
}

.lanting-contact-aside {
	display: grid;
	gap: 14px;
}

.lanting-contact-method,
.lanting-contact-response,
.lanting-contact-form-card {
	border: 1px solid var(--ll-border);
}

.lanting-contact-method {
	padding: 24px;
	background: rgba(255, 255, 255, .34);
}

.lanting-contact-method h3 {
	margin-bottom: 8px;
	font-size: 1.65rem;
}

.lanting-contact-method p {
	margin-bottom: 10px;
}

.lanting-contact-method p:last-child,
.lanting-contact-response p:last-child,
.lanting-contact-form-card > p:last-of-type {
	margin-bottom: 0;
}

.lanting-contact-method a:not(.lanting-text-link) {
	color: var(--ll-jade);
	font-weight: 650;
}

.lanting-contact-response {
	padding: 22px 24px;
	background: var(--ll-jade);
	color: rgba(255, 255, 255, .78);
}

.lanting-contact-response .lanting-card-label {
	color: var(--ll-gold);
}

.lanting-contact-response p {
	color: inherit;
	font-size: .87rem;
}

.lanting-contact-form-card {
	padding: 30px;
	background: var(--ll-parchment);
}

.lanting-contact-form-card > h2 {
	margin-bottom: 8px;
	font-size: clamp(2.25rem, 3.6vw, 3.45rem);
}

.lanting-contact-form-card > p:not(.lanting-card-label) {
	max-width: 620px;
	color: var(--ll-muted);
	font-size: .92rem;
}

.lanting-contact-form-card .lanting-contact-form-wrap {
	margin-top: 22px;
}

.lanting-contact-form-card .lanting-contact-form {
	padding: 0;
	border: 0;
	background: transparent;
}

.lanting-contact-form-card .lanting-form-grid {
	gap: 12px 16px;
}

.lanting-contact-form-card .lanting-contact-form p {
	margin-bottom: 14px;
}

.lanting-contact-form-card .lanting-contact-form input[type="text"],
.lanting-contact-form-card .lanting-contact-form input[type="email"],
.lanting-contact-form-card .lanting-contact-form select {
	min-height: 46px;
}

.lanting-contact-form-card .lanting-contact-form textarea {
	min-height: 118px;
}

.lanting-contact-form-card .lanting-form-consent {
	margin-bottom: 16px;
}

.lanting-fullwidth,
.lanting-elementor-content {
	width: 100%;
}

.lanting-post-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 55px 28px;
	padding-top: 80px;
	padding-bottom: 110px;
}

.lanting-post-card img {
	width: 100%;
	aspect-ratio: 4 / 5;
	margin-bottom: 26px;
	object-fit: cover;
}

.lanting-post-card h2 {
	font-size: 2rem;
}

.lanting-post-card > p:not(.lanting-kicker) {
	color: var(--ll-muted);
	font-size: .88rem;
}

.lanting-article-hero {
	text-align: center;
}

.lanting-article-hero h1 {
	margin-inline: auto;
}

.lanting-article-image {
	margin: -30px -120px 70px;
}

.lanting-empty-state {
	display: grid;
	min-height: 70vh;
	text-align: center;
	place-items: center;
}

.lanting-empty-state h1 {
	font-size: clamp(3rem, 6vw, 6rem);
}

.lanting-shop-main {
	padding-top: 52px;
	padding-bottom: 76px;
}

.woocommerce .woocommerce-breadcrumb {
	margin-bottom: 40px;
	color: var(--ll-muted);
	font-size: .68rem;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.woocommerce-products-header__title,
.woocommerce div.product .product_title {
	font-size: clamp(2.8rem, 5vw, 5rem);
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
	margin: 30px 0 45px;
	color: var(--ll-muted);
	font-size: .75rem;
}

.woocommerce .woocommerce-ordering select {
	padding: 10px 34px 10px 12px;
	border: 1px solid var(--ll-border);
	background: transparent;
}

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

/*
 * Keep the shop and all product-taxonomy archives aligned with the product
 * grids used elsewhere on the site, including on wide displays.
 */
.post-type-archive-product .lanting-shop-main > .lanting-container,
.tax-product_cat .lanting-shop-main > .lanting-container,
.tax-product_tag .lanting-shop-main > .lanting-container {
	width: 100%;
	max-width: none;
	padding-inline: 0;
}

.post-type-archive-product,
.tax-product_cat,
.tax-product_tag {
	--ll-archive-gutter: clamp(24px, 4vw, 80px);
}

/*
 * Apply the archive gutter to elements that are present in WooCommerce's live
 * output instead of depending on a particular outer-wrapper structure.
 */
.post-type-archive-product .page-title,
.tax-product_cat .page-title,
.tax-product_tag .page-title,
.post-type-archive-product .term-description,
.tax-product_cat .term-description,
.tax-product_tag .term-description,
.post-type-archive-product ul.products,
.tax-product_cat ul.products,
.tax-product_tag ul.products {
	padding-inline: var(--ll-archive-gutter);
}

.post-type-archive-product .page-title,
.tax-product_cat .page-title,
.tax-product_tag .page-title {
	padding-top: clamp(28px, 4vw, 64px);
	margin-bottom: clamp(16px, 2vw, 26px);
	font-size: clamp(3.2rem, 5vw, 5rem);
	line-height: .98;
}

.post-type-archive-product .term-description,
.tax-product_cat .term-description,
.tax-product_tag .term-description {
	margin-bottom: 0;
}

.post-type-archive-product .term-description > :last-child,
.tax-product_cat .term-description > :last-child,
.tax-product_tag .term-description > :last-child {
	margin-bottom: 0;
}

.post-type-archive-product .woocommerce-result-count,
.tax-product_cat .woocommerce-result-count,
.tax-product_tag .woocommerce-result-count {
	margin-left: var(--ll-archive-gutter);
}

.post-type-archive-product .woocommerce-ordering,
.tax-product_cat .woocommerce-ordering,
.tax-product_tag .woocommerce-ordering {
	margin-right: var(--ll-archive-gutter);
}

/*
 * Product archives receive their footer clearance directly on the product
 * grid so it remains effective across both native and customized wrappers.
 */
.post-type-archive-product .lanting-shop-main,
.tax-product_cat .lanting-shop-main,
.tax-product_tag .lanting-shop-main {
	padding-bottom: 0;
}

/* Keep archive cards and their calls to action aligned within each grid row. */
.post-type-archive-product ul.products,
.tax-product_cat ul.products,
.tax-product_tag ul.products {
	align-items: stretch;
	padding-bottom: clamp(48px, 5vw, 72px);
}

.post-type-archive-product ul.products li.product,
.tax-product_cat ul.products li.product,
.tax-product_tag ul.products li.product {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.post-type-archive-product ul.products li.product .woocommerce-LoopProduct-link,
.tax-product_cat ul.products li.product .woocommerce-LoopProduct-link,
.tax-product_tag ul.products li.product .woocommerce-LoopProduct-link {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
}

.post-type-archive-product ul.products li.product .price,
.tax-product_cat ul.products li.product .price,
.tax-product_tag ul.products li.product .price {
	margin-top: auto;
}

.post-type-archive-product ul.products li.product > .button,
.tax-product_cat ul.products li.product > .button,
.tax-product_tag ul.products li.product > .button {
	flex: 0 0 auto;
	align-self: flex-start;
}

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

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product,
.woocommerce.columns-4 ul.products li.product {
	position: relative;
	float: none;
	width: auto;
	margin: 0;
}

.woocommerce ul.products li.product a img {
	aspect-ratio: 1 / 1;
	margin: 0 0 20px;
	background: var(--ll-parchment);
	object-fit: cover;
	transition: transform 650ms cubic-bezier(.2,.7,.2,1), opacity var(--ll-transition);
}

.woocommerce ul.products li.product a:hover img {
	opacity: .93;
	transform: translateY(-5px);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
	padding: 0;
	color: var(--ll-jade);
	font-family: var(--ll-serif);
	font-size: 1.38rem;
	font-weight: 500;
}

.woocommerce ul.products li.product .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
	color: var(--ll-charcoal);
	font-size: .82rem;
	font-weight: 650;
	letter-spacing: .06em;
}

.woocommerce ul.products li.product .button {
	min-height: 40px;
	margin-top: 12px;
	padding: 11px 15px;
	font-size: .65rem;
}

.lanting-is-home .lanting-product-shortcode .lanting-card-actions {
	display: flex;
	align-items: stretch;
	gap: 8px;
	margin-top: 12px;
}

.lanting-is-home .lanting-product-shortcode ul.products {
	align-items: stretch;
}

.lanting-is-home .lanting-product-shortcode ul.products li.product {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.lanting-is-home .lanting-product-shortcode ul.products li.product .woocommerce-LoopProduct-link {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
}

.lanting-is-home .lanting-product-shortcode ul.products li.product .price {
	margin-top: auto;
}

.lanting-is-home .lanting-product-shortcode .lanting-card-actions {
	flex: 0 0 auto;
}

.lanting-is-home .lanting-product-shortcode .lanting-card-actions .button {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	margin-top: 0;
	text-align: center;
}

.lanting-is-home .lanting-product-shortcode .lanting-card-buy-now {
	flex: 1 1 auto;
	height: 48px;
	padding-top: 0;
	padding-bottom: 0;
	line-height: 1;
	box-sizing: border-box;
}

.lanting-is-home .lanting-product-shortcode .lanting-card-buy-now-label {
	display: block;
	transform: translateY(5px);
}

.lanting-is-home .lanting-product-shortcode .lanting-card-add-cart {
	flex: 0 0 48px;
	width: 48px;
	padding: 0;
	border: 1px solid var(--ll-jade);
	background: transparent;
	color: var(--ll-jade);
}

.lanting-is-home .lanting-product-shortcode .lanting-card-add-cart:hover,
.lanting-is-home .lanting-product-shortcode .lanting-card-add-cart:focus {
	border-color: var(--ll-charcoal);
	background: var(--ll-parchment);
	color: var(--ll-charcoal);
}

.lanting-is-home .lanting-product-shortcode .lanting-card-add-cart svg {
	width: 19px;
	height: 19px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.7;
}

/* Shop and product-category cards use Buy Now plus a compact cart icon. */
.post-type-archive-product ul.products li.product .lanting-card-actions,
.tax-product_cat ul.products li.product .lanting-card-actions {
	display: flex;
	flex: 0 0 auto;
	align-items: stretch;
	align-self: stretch;
	width: 100%;
	gap: 8px;
	margin-top: 12px;
}

.post-type-archive-product ul.products li.product .lanting-card-actions .button,
.tax-product_cat ul.products li.product .lanting-card-actions .button {
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	min-height: 48px;
	margin-top: 0;
	text-align: center;
}

.post-type-archive-product ul.products li.product .lanting-card-buy-now,
.tax-product_cat ul.products li.product .lanting-card-buy-now {
	flex: 1 1 auto;
	height: 48px;
	padding: 0 16px;
	border-color: var(--ll-celadon-deep);
	background: var(--ll-celadon-deep);
	color: var(--ll-ivory);
}

.post-type-archive-product ul.products li.product .lanting-card-buy-now-label,
.tax-product_cat ul.products li.product .lanting-card-buy-now-label {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	line-height: 1;
	text-align: center;
	transform: none;
}

.post-type-archive-product ul.products li.product .lanting-card-add-cart,
.tax-product_cat ul.products li.product .lanting-card-add-cart {
	flex: 0 0 48px;
	width: 48px;
	padding: 0;
	border: 1px solid var(--ll-celadon-deep);
	background: transparent;
	color: var(--ll-celadon-deep);
}

.post-type-archive-product ul.products li.product .lanting-card-add-cart:hover,
.post-type-archive-product ul.products li.product .lanting-card-add-cart:focus,
.tax-product_cat ul.products li.product .lanting-card-add-cart:hover,
.tax-product_cat ul.products li.product .lanting-card-add-cart:focus {
	border-color: var(--ll-charcoal);
	background: var(--ll-parchment);
	color: var(--ll-charcoal);
}

.post-type-archive-product ul.products li.product .lanting-card-add-cart svg,
.tax-product_cat ul.products li.product .lanting-card-add-cart svg {
	width: 19px;
	height: 19px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.7;
}

.lanting-demo-badge {
	position: absolute;
	z-index: 3;
	top: 12px;
	left: 12px;
	padding: 6px 9px;
	background: rgba(248,243,236,.92);
	color: var(--ll-jade);
	font-size: .55rem;
	font-weight: 750;
	letter-spacing: .09em;
	text-transform: uppercase;
}

.woocommerce span.onsale {
	top: 12px;
	right: 12px;
	left: auto;
	min-width: auto;
	min-height: auto;
	padding: 7px 10px;
	border-radius: 0;
	background: var(--ll-orchid);
	font-size: .6rem;
	line-height: 1;
}

.woocommerce div.product {
	display: flow-root;
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
	margin-bottom: 90px;
}

.woocommerce div.product div.images {
	width: 48%;
}

/* Keep the live single-product composition inset from both viewport edges. */
.single-product .lanting-shop-main {
	padding-inline: clamp(16px, 4vw, 80px);
}

.single-product .lanting-shop-main > .lanting-container {
	width: 100%;
	max-width: 1500px;
	margin-inline: auto;
}

/* Keep the main product-gallery stage square without stretching its artwork. */
.single-product .woocommerce-product-gallery__image img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	object-position: center;
}

.woocommerce div.product div.summary {
	width: 46%;
	padding: 30px 1vw 0;
}

/* Native WooCommerce FlexSlider controls for multi-image product galleries. */
.single-product .woocommerce-product-gallery {
	position: relative;
	container-type: inline-size;
}

.single-product .woocommerce-product-gallery .flex-direction-nav {
	position: static;
	padding: 0;
	margin: 0;
	list-style: none;
}

.single-product .woocommerce-product-gallery .flex-direction-nav li {
	padding: 0;
	margin: 0;
	list-style: none;
}

.single-product .woocommerce-product-gallery .flex-direction-nav a {
	position: absolute;
	z-index: 6;
	top: 50%;
	top: 50cqi;
	display: flex !important;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin: 0;
	border: 1px solid rgba(66, 95, 92, .22);
	border-radius: 0;
	background: rgba(247, 244, 237, .94);
	box-shadow: 0 8px 24px rgba(37, 37, 34, .1);
	color: var(--ll-celadon-deep);
	font-size: 0;
	line-height: 1;
	opacity: 1;
	text-align: center;
	text-indent: 0;
	transform: translateY(-50%);
	transition: color var(--ll-transition), background var(--ll-transition), border var(--ll-transition);
	visibility: visible;
}

.single-product .woocommerce-product-gallery .flex-direction-nav .flex-prev {
	left: 18px;
}

.single-product .woocommerce-product-gallery .flex-direction-nav .flex-next {
	right: 18px;
}

.single-product .woocommerce-product-gallery .flex-direction-nav a::before {
	display: block;
	color: currentColor;
	font-family: var(--ll-serif);
	font-size: 34px;
	font-weight: 400;
	line-height: .8;
}

.single-product .woocommerce-product-gallery .flex-direction-nav .flex-prev::before {
	content: "\2039";
}

.single-product .woocommerce-product-gallery .flex-direction-nav .flex-next::before {
	content: "\203A";
}

.single-product .woocommerce-product-gallery .flex-direction-nav a:hover,
.single-product .woocommerce-product-gallery .flex-direction-nav a:focus-visible {
	border-color: var(--ll-charcoal);
	background: var(--ll-charcoal);
	color: var(--ll-ivory);
}

.single-product .woocommerce-product-gallery .flex-direction-nav .flex-disabled {
	z-index: 6 !important;
	opacity: .35 !important;
	pointer-events: none;
	visibility: visible !important;
}

.woocommerce div.product .woocommerce-product-details__short-description {
	color: var(--ll-muted);
}

.lanting-concept-warning {
	padding: 14px 16px;
	border-left: 2px solid var(--ll-gold);
	background: var(--ll-parchment);
	font-size: .75rem;
}

.woocommerce div.product form.cart {
	margin: 28px 0;
}

.single-product .summary form.cart .single_add_to_cart_button {
	border: 1px solid var(--ll-jade);
	background: transparent;
	color: var(--ll-jade);
}

.single-product .summary form.cart .single_add_to_cart_button:hover {
	border-color: var(--ll-charcoal);
	background: transparent;
	color: var(--ll-charcoal);
}

.single-product .summary form.cart .lanting-buy-now {
	min-height: 52px;
	margin-left: 8px;
	border: 1px solid var(--ll-jade);
	background: var(--ll-jade);
	color: var(--ll-ivory);
}

.single-product .summary form.cart .lanting-buy-now:hover {
	border-color: var(--ll-charcoal);
	background: var(--ll-charcoal);
	color: var(--ll-ivory);
}

.woocommerce .quantity .qty {
	height: 52px;
	border: 1px solid var(--ll-border);
	background: transparent;
}

.lanting-quantity-button {
	display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
	padding: 0;
}

.woocommerce div.product .woocommerce-tabs {
	width: 100%;
	padding-inline: clamp(18px, 3vw, 42px);
}

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

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
	border-bottom: 1px solid var(--ll-gold);
	background: transparent;
}

.woocommerce div.product .woocommerce-tabs .panel {
	width: 100%;
	max-width: 980px;
	margin-bottom: 80px;
}

.woocommerce div.product .woocommerce-tabs .panel h2 {
	margin-top: 1.4em;
	font-size: 2.2rem;
}

/* WooCommerce outputs related products as a separate full-width block. */
.single-product .related.products {
	width: 100%;
	padding-inline: clamp(18px, 3vw, 42px);
	padding-bottom: clamp(56px, 6vw, 88px);
}

.single-product .related.products > h2 {
	margin-bottom: clamp(30px, 4vw, 52px);
}

/* Related cards mirror archive cards: primary Buy Now plus a cart icon. */
.single-product .related.products ul.products {
	align-items: stretch;
}

.single-product .related.products ul.products li.product {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.single-product .related.products ul.products li.product .woocommerce-LoopProduct-link {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
}

.single-product .related.products ul.products li.product .price {
	margin-top: auto;
}

.single-product .related.products .lanting-card-actions {
	display: flex;
	flex: 0 0 auto;
	align-items: stretch;
	align-self: stretch;
	width: 100%;
	gap: 8px;
	margin-top: 12px;
}

.single-product .related.products .lanting-card-actions .button {
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	width: auto;
	min-height: 48px;
	margin-top: 0;
	text-align: center;
}

.single-product .related.products .lanting-card-buy-now {
	flex: 1 1 auto;
	height: 48px;
	padding: 0 16px;
	border-color: var(--ll-celadon-deep);
	background: var(--ll-celadon-deep);
	color: var(--ll-ivory);
}

.single-product .related.products .lanting-card-buy-now-label {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	line-height: 1;
	text-align: center;
}

.single-product .related.products .lanting-card-add-cart {
	flex: 0 0 48px;
	width: 48px;
	padding: 0;
	border: 1px solid var(--ll-celadon-deep);
	background: transparent;
	color: var(--ll-celadon-deep);
}

.single-product .related.products .lanting-card-add-cart:hover,
.single-product .related.products .lanting-card-add-cart:focus {
	border-color: var(--ll-charcoal);
	background: var(--ll-parchment);
	color: var(--ll-charcoal);
}

.single-product .related.products .lanting-card-add-cart svg {
	width: 19px;
	height: 19px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.7;
}

.woocommerce table.shop_table,
.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register {
	border-color: var(--ll-border);
	border-radius: 0;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce .select2-container--default .select2-selection--single {
	min-height: 48px;
	padding: 10px 12px;
	border: 1px solid var(--ll-border);
	border-radius: 0;
	background: var(--ll-white);
}

/* My Account: login, registration and secure password recovery. */
.woocommerce-account:not(.logged-in) .lanting-prose {
	max-width: 1120px;
}

.woocommerce-account #customer_login {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
	margin: 0;
}

.woocommerce-account #customer_login::before,
.woocommerce-account #customer_login::after {
	display: none;
}

.woocommerce-account #customer_login .u-column1,
.woocommerce-account #customer_login .u-column2 {
	float: none;
	width: auto;
	padding: 32px;
	border: 1px solid var(--ll-border);
	background: var(--ll-white);
}

.woocommerce-account #customer_login h2 {
	margin: 0 0 22px;
	font-size: clamp(2rem, 3vw, 2.8rem);
}

.woocommerce-account #customer_login form.login,
.woocommerce-account #customer_login form.register {
	margin: 0;
	padding: 0;
	border: 0;
}

.woocommerce-account #customer_login .form-row {
	margin: 0 0 16px;
	padding: 0;
}

.woocommerce-account #customer_login .woocommerce-form-login__rememberme {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 12px;
}

.woocommerce-account #customer_login .woocommerce-form-login__submit,
.woocommerce-account #customer_login .woocommerce-form-register__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	float: none;
	width: 100%;
	min-height: 48px;
	margin: 0;
	text-align: center;
}

.woocommerce-account #customer_login .lost_password {
	margin: 18px 0 0;
	padding-top: 16px;
	border-top: 1px solid var(--ll-border);
}

.woocommerce-account #customer_login .lost_password a {
	color: var(--ll-celadon-deep);
	font-size: .72rem;
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.lanting-account-reset-panel {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	margin-top: 22px;
	padding: 26px 30px;
	background: var(--ll-jade);
	color: rgba(255, 255, 255, .78);
}

.lanting-account-reset-panel .lanting-kicker {
	margin-bottom: 5px;
	color: var(--ll-gold);
}

.lanting-account-reset-panel h3 {
	margin: 0 0 6px;
	color: var(--ll-ivory);
	font-size: clamp(1.55rem, 2.5vw, 2rem);
}

.lanting-account-reset-panel p:not(.lanting-kicker) {
	max-width: 660px;
	margin: 0;
	color: inherit;
	font-size: .82rem;
}

.lanting-account-reset-panel .lanting-button {
	flex: 0 0 auto;
	min-width: 180px;
	border-color: rgba(255, 255, 255, .48);
	color: var(--ll-ivory);
}

.woocommerce-lost-password .lanting-prose {
	max-width: 720px;
}

.woocommerce-lost-password form.lost_reset_password {
	margin: 0;
	padding: 32px;
	border: 1px solid var(--ll-border);
	background: var(--ll-white);
}

.woocommerce-lost-password form.lost_reset_password > p:first-child {
	margin-top: 0;
	color: var(--ll-muted);
}

.woocommerce-lost-password form.lost_reset_password .form-row-first {
	float: none;
	width: 100%;
}

.woocommerce-lost-password form.lost_reset_password .woocommerce-Button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 190px;
	min-height: 48px;
	text-align: center;
}

.woocommerce-info,
.woocommerce-message {
	border-top-color: var(--ll-gold);
	background: var(--ll-parchment);
}

.woocommerce-info::before,
.woocommerce-message::before {
	color: var(--ll-gold);
}

/* Keep the WooCommerce Blocks cart checkout action legible. */
.wc-block-cart__submit-button,
.wc-block-cart__submit-button:visited,
.wc-block-cart__submit-button:hover,
.wc-block-cart__submit-button:focus,
.wc-block-cart__submit-button:active,
.wc-block-cart__submit-button .wc-block-components-button__text {
	color: var(--ll-ivory) !important;
}

/*
 * The empty-cart recommendations are rendered by WooCommerce Blocks rather
 * than the standard product loop. Stretch their cards independently so long
 * product names do not stagger the price and Add to Cart controls.
 */
.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__products,
.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-product-template {
	align-items: stretch;
}

.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__product,
.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-product {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-link {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	width: 100%;
}

/* Reserve two title lines so every price and CTA begins on the same row. */
.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-title,
.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-components-product-name {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	min-height: 2.5em;
	color: var(--ll-jade);
	font-family: var(--ll-serif);
	font-size: 1.38rem;
	font-weight: 500;
	line-height: 1.15;
	text-align: center;
}

.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-price,
.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-components-product-price {
	margin-top: auto;
}

.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-add-to-cart,
.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-components-product-button {
	display: flex;
	align-items: stretch;
	justify-content: center;
	margin-top: auto;
	padding-top: 12px;
}

.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-add-to-cart .wp-block-button__link,
.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-components-product-button__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	min-height: 48px;
	padding: 14px 28px !important;
	border-color: var(--ll-celadon-deep) !important;
	border-radius: 0 !important;
	background: var(--ll-celadon-deep) !important;
	color: var(--ll-ivory) !important;
	font-size: .78rem;
	font-weight: 700;
	letter-spacing: .12em;
	line-height: 1;
	text-transform: uppercase;
}

.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-add-to-cart .wp-block-button__link:visited,
.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-components-product-button__button:visited {
	color: var(--ll-ivory) !important;
}

.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-add-to-cart .wp-block-button__link:hover,
.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-add-to-cart .wp-block-button__link:focus,
.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-components-product-button__button:hover,
.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-components-product-button__button:focus {
	border-color: var(--ll-charcoal) !important;
	background: var(--ll-charcoal) !important;
	color: var(--ll-ivory) !important;
}

/* Split empty-cart recommendations into a primary Buy Now CTA and cart icon. */
.woocommerce-cart .wp-block-woocommerce-empty-cart-block .lanting-cart-recommendation-actions {
	display: flex;
	align-items: stretch;
	justify-content: center;
	width: 190px;
	max-width: 100%;
	gap: 8px;
}

.woocommerce-cart .wp-block-woocommerce-empty-cart-block .lanting-cart-recommendation-actions .button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	min-height: 48px;
	margin: 0 !important;
	border-radius: 0 !important;
	line-height: 1;
	text-align: center;
}

.woocommerce-cart .wp-block-woocommerce-empty-cart-block .lanting-cart-recommendation-buy-now,
.woocommerce-cart .wp-block-woocommerce-empty-cart-block .lanting-cart-recommendation-buy-now:visited {
	flex: 1 1 auto;
	padding: 14px 18px !important;
	border: 1px solid var(--ll-celadon-deep) !important;
	background: var(--ll-celadon-deep) !important;
	color: var(--ll-ivory) !important;
}

.woocommerce-cart .wp-block-woocommerce-empty-cart-block .lanting-cart-recommendation-buy-now:hover,
.woocommerce-cart .wp-block-woocommerce-empty-cart-block .lanting-cart-recommendation-buy-now:focus {
	border-color: var(--ll-charcoal) !important;
	background: var(--ll-charcoal) !important;
	color: var(--ll-ivory) !important;
}

.woocommerce-cart .wp-block-woocommerce-empty-cart-block .lanting-cart-recommendation-actions .lanting-cart-recommendation-add-cart,
.woocommerce-cart .wp-block-woocommerce-empty-cart-block .lanting-cart-recommendation-actions .lanting-cart-recommendation-add-cart:visited {
	flex: 0 0 48px;
	width: 48px !important;
	padding: 0 !important;
	border: 1px solid var(--ll-celadon-deep) !important;
	background: transparent !important;
	color: var(--ll-celadon-deep) !important;
}

.woocommerce-cart .wp-block-woocommerce-empty-cart-block .lanting-cart-recommendation-actions .lanting-cart-recommendation-add-cart:hover,
.woocommerce-cart .wp-block-woocommerce-empty-cart-block .lanting-cart-recommendation-actions .lanting-cart-recommendation-add-cart:focus {
	border-color: var(--ll-charcoal) !important;
	background: var(--ll-charcoal) !important;
	color: var(--ll-ivory) !important;
}

.woocommerce-cart .wp-block-woocommerce-empty-cart-block .lanting-cart-recommendation-actions .lanting-cart-recommendation-add-cart svg {
	width: 19px;
	height: 19px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.65;
	stroke-linecap: round;
	stroke-linejoin: round;
}

/* Give the recommendation products a little more presence on larger screens. */
@media (min-width: 821px) {
	.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid,
	.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-product-template {
		width: min(1440px, calc(100vw - 64px));
		max-width: none;
		margin-right: 0;
		margin-left: 50%;
		transform: translateX(-50%);
	}
}

@media (max-width: 540px) {
	.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-title,
	.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-components-product-name {
		min-height: 2.7em;
		font-size: 1.12rem;
	}

	.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-add-to-cart .wp-block-button__link,
	.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-components-product-button__button {
		width: 100%;
		padding-inline: 10px !important;
		font-size: .58rem;
	}

	/* Woo Blocks makes this container shrink-to-fit on phones unless it is stretched explicitly. */
	.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-add-to-cart,
	.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-components-product-button {
		align-self: stretch;
		width: 100%;
		max-width: none;
	}

	.woocommerce-cart .wp-block-woocommerce-empty-cart-block .lanting-cart-recommendation-actions {
		width: 100%;
		gap: 6px;
	}

	.woocommerce-cart .wp-block-woocommerce-empty-cart-block .lanting-cart-recommendation-actions .lanting-cart-recommendation-buy-now {
		width: auto;
		padding-inline: 8px !important;
	}

	.woocommerce-cart .wp-block-woocommerce-empty-cart-block .lanting-cart-recommendation-actions .lanting-cart-recommendation-add-cart {
		flex-basis: 44px;
		width: 44px !important;
	}
}

.lanting-contact-form-wrap {
	margin-top: 26px;
}

.lanting-contact-form {
	position: relative;
	padding: clamp(24px, 4vw, 42px);
	border: 1px solid var(--ll-border);
	background: var(--ll-parchment);
}

.lanting-form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px 22px;
}

.lanting-contact-form p {
	margin: 0 0 20px;
}

.lanting-contact-form label {
	display: block;
	margin-bottom: 7px;
	color: var(--ll-jade);
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.lanting-contact-form label small {
	color: var(--ll-muted);
	font-size: .62rem;
	font-weight: 500;
	letter-spacing: 0;
	text-transform: none;
}

.lanting-contact-form input[type="text"],
.lanting-contact-form input[type="email"],
.lanting-contact-form select,
.lanting-contact-form textarea {
	width: 100%;
	min-height: 50px;
	padding: 11px 13px;
	border: 1px solid rgba(24, 57, 45, .24);
	border-radius: 0;
	background: var(--ll-white);
	color: var(--ll-charcoal);
}

.lanting-contact-form textarea {
	min-height: 150px;
	resize: vertical;
}

.lanting-form-consent label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: .68rem;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1.5;
	text-transform: none;
}

.lanting-form-consent input {
	flex: 0 0 auto;
	margin-top: 4px;
}

.lanting-form-trap {
	position: absolute !important;
	left: -10000px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

.lanting-form-notice {
	margin-bottom: 18px;
	padding: 13px 16px;
	border-left: 3px solid var(--ll-gold);
	background: var(--ll-parchment);
	font-size: .82rem;
}

.lanting-form-notice--success {
	border-left-color: var(--ll-jade);
}

.lanting-form-notice--error {
	border-left-color: #a0524f;
}

.lanting-form-email {
	display: inline-block;
	margin: 0 0 0 18px !important;
	color: var(--ll-muted);
	font-size: .75rem;
}

.lanting-form-email a {
	border-bottom: 1px solid var(--ll-gold);
	color: var(--ll-jade);
}

.lanting-reveal {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity 850ms ease, transform 850ms cubic-bezier(.2,.7,.2,1);
}

.lanting-reveal.is-visible {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
	}
	.lanting-reveal {
		opacity: 1;
		transform: none;
	}
}

@media (min-width: 1440px) {
	.lanting-hero {
		min-height: 700px;
		height: clamp(700px, 76vh, 820px);
	}
	.lanting-hero-media {
		background-position: 58% center;
	}
	.lanting-hero-copy {
		width: min(590px, 42vw);
	}
	.lanting-hero-copy h1 {
		font-size: clamp(5.4rem, 6.2vw, 7.25rem);
	}
}

@media (min-width: 1600px) {
	:root {
		--ll-container: min(1600px, calc(100vw - 128px));
	}

	.lanting-is-home .lanting-hero-inner {
		width: calc(100% - 96px);
		max-width: none;
	}
}

@media (min-width: 1920px) {
	.lanting-hero {
		height: clamp(720px, 72vh, 840px);
	}
	.lanting-hero-media {
		background-position: 62% center;
	}
	.lanting-hero-overlay {
		background: linear-gradient(90deg, rgba(9, 29, 22, .92) 0%, rgba(10, 34, 25, .64) 30%, rgba(10, 34, 25, .08) 62%, rgba(10, 34, 25, .02) 100%);
	}
}

@media (max-width: 1120px) {
	:root { --ll-container: min(100% - 42px, 1100px); }
	.lanting-header-inner { grid-template-columns: 44px 1fr auto; }
	.lanting-menu-toggle { display: block; }
	.site-branding { width: 68px; justify-self: center; }
	.lanting-primary-nav {
		position: fixed;
		z-index: 1001;
		top: 0;
		left: 0;
		width: min(420px, 90vw);
		height: 100vh;
		padding: 110px 38px 40px;
		background: var(--ll-ivory);
		color: var(--ll-jade);
		transform: translateX(-101%);
		transition: transform var(--ll-transition);
	}
	.menu-open .lanting-primary-nav { transform: none; }
	.lanting-menu { display: block; }
	.lanting-menu a {
		display: block;
		padding: 15px 0;
		border-bottom: 1px solid var(--ll-border);
		font-family: var(--ll-serif);
		font-size: 1.65rem;
		font-weight: 500;
		letter-spacing: 0;
		text-transform: none;
	}
	.lanting-menu a::after { display: none; }
	.menu-open .lanting-menu-toggle { position: fixed; z-index: 1002; top: 24px; left: 23px; color: var(--ll-jade); }
	.menu-open .lanting-menu-toggle > span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
	.menu-open .lanting-menu-toggle > span:nth-child(2) { opacity: 0; }
	.menu-open .lanting-menu-toggle > span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
	.lanting-category-grid {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 320px 320px;
	}
	.lanting-category-card--tall { grid-row: auto; }
	.lanting-category-card--signature { grid-row: auto; }
	.lanting-category-card:nth-child(4) { grid-column: auto; }
	.woocommerce ul.products { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
	:root { --ll-container: calc(100vw - 32px); }
	h2 { font-size: clamp(2.35rem, 10vw, 4rem); }
	.lanting-announcement p { font-size: .57rem; letter-spacing: .1em; }
	.lanting-is-home .site-header { top: 31px; }
	.lanting-header-inner { min-height: 72px; }
	.site-branding { width: 62px; }
	.lanting-brand-mark--header { width: 40px; height: 49px; }
	.lanting-header-tools { gap: 0; }
	.lanting-header-tools .lanting-search-toggle { display: none; }
	.lanting-icon-button { width: 35px; height: 35px; padding: 8px; }
	.lanting-hero { min-height: 680px; height: 88vh; }
	.lanting-hero-media { background-position: 63% center; }
	.lanting-hero-overlay { background: linear-gradient(90deg, rgba(9,29,22,.78), rgba(9,29,22,.24)), linear-gradient(0deg, rgba(9,29,22,.5), transparent 60%); }
	.lanting-hero-inner { align-items: end; padding: 0 0 92px; }
	.lanting-hero-copy { width: 100%; }
	.lanting-hero-copy h1 { font-size: clamp(4.2rem, 17vw, 6.7rem); }
	.lanting-actions { align-items: flex-start; flex-direction: column; gap: 15px; }
	.lanting-scroll-cue { display: none; }
	.lanting-promises-grid { grid-template-columns: 1fr 1fr; }
	.lanting-promises-grid > div { justify-content: flex-start; min-height: 78px; padding: 16px 12px; font-size: .58rem; }
	.lanting-promises-grid > div:nth-child(2) { border-right: 0; }
	.lanting-promises-grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--ll-border); }
	.lanting-section { padding: 52px 0; }
	.lanting-category-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 300px 300px; gap: 10px; }
	.lanting-feature { grid-template-columns: 1fr; height: auto; }
	.lanting-feature-image { height: 400px; min-height: 0; }
	.lanting-feature-copy { padding: 42px 32px; }
	.lanting-section-heading--row { align-items: flex-start; flex-direction: column; }
	.lanting-story-grid,
	.lanting-gifting-grid { grid-template-columns: 1fr; }
	.lanting-story-grid { gap: 44px; }
	.lanting-story-art,
	.lanting-gifting-image { padding: 20px; }
	.lanting-story-art::before { inset: 8px; }
	.lanting-gifting-image::after { inset: 8px; }
	.lanting-story-seal { right: -4px; bottom: 24px; width: 104px; height: 104px; padding: 14px; }
	.lanting-story-seal span { font-size: 1.17rem; }
	.lanting-story-seal small { margin-top: 5px; font-size: .36rem; }
	.lanting-gifting-grid { gap: 46px; }
	.lanting-gifting-copy { order: -1; }
	.lanting-corporate-inner,
	.lanting-letter-inner { align-items: flex-start; flex-direction: column; }
	.lanting-footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
	.lanting-footer-brand { grid-column: 1 / -1; }
	.lanting-footer-bottom { grid-template-columns: 1fr auto; }
	.lanting-payment-methods { grid-column: 1 / -1; grid-row: 2; justify-content: flex-start; }
	.lanting-post-grid { grid-template-columns: 1fr 1fr; }
	.woocommerce ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.woocommerce div.product div.images,
	.woocommerce div.product div.summary { float: none; width: 100%; }
	.woocommerce div.product div.summary { padding: 0; }
	.single-product .woocommerce-product-gallery .flex-direction-nav a { width: 42px; height: 42px; }
	.single-product .woocommerce-product-gallery .flex-direction-nav .flex-prev { left: 10px; }
	.single-product .woocommerce-product-gallery .flex-direction-nav .flex-next { right: 10px; }
	.lanting-article-image { margin: -30px 0 55px; }
	.lanting-content-grid--three { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.lanting-content-grid--four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.lanting-care-donts { grid-template-columns: 1fr; }
	.lanting-process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.lanting-process-step:nth-child(2) { border-right: 0; }
	.lanting-process-step:nth-child(-n+2) { border-bottom: 1px solid var(--ll-border); }
	.lanting-gift-intro,
	.lanting-gift-section-heading,
	.lanting-gift-occasions { grid-template-columns: 1fr; }
	.lanting-gift-highlights,
	.lanting-gift-inclusions { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.lanting-gift-highlights > div:nth-child(2) { border-right: 0; }
	.lanting-gift-highlights > div:last-child { grid-column: 1 / -1; border-top: 1px solid var(--ll-border); }
	.lanting-gift-occasions { gap: 28px; padding: 30px; }
	.lanting-gift-cta { align-items: flex-start; flex-direction: column; }
	.lanting-gift-cta-actions { width: 100%; }
	.lanting-gift-shop-fallback { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 540px) {
	.lanting-header-tools .lanting-icon-button:nth-child(2) { display: none; }
	.site-branding { width: 54px; }
	.lanting-brand-mark--header { width: 35px; height: 43px; }
	.lanting-cart-drawer-panel { width: 100vw; }
	.lanting-cart-drawer-header { min-height: 104px; padding: 22px 20px 20px; }
	.lanting-cart-drawer-body { padding: 24px 20px 22px; }
	.lanting-cart-drawer .widget_shopping_cart_content .woocommerce-mini-cart-item { grid-template-columns: 68px minmax(0, 1fr); gap: 12px; }
	.lanting-cart-drawer .widget_shopping_cart_content .woocommerce-mini-cart-item .lanting-cart-drawer-product-image { width: 68px; height: 68px; }
	.lanting-cart-drawer .widget_shopping_cart_content .woocommerce-mini-cart-item .lanting-cart-drawer-product-image img { width: 68px; height: 68px; }
	.lanting-cart-drawer .widget_shopping_cart_content .woocommerce-mini-cart__buttons { grid-template-columns: 1fr 1fr; }
	.lanting-footer-mark { width: 46px; height: 56px; }
	.lanting-footer-wordmark { font-size: .8rem; letter-spacing: .2em; }
	.lanting-category-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; }
	.lanting-category-card { flex: 0 0 84%; height: 380px; scroll-snap-align: start; }
	.lanting-feature-image { height: 310px; min-height: 0; }
	.lanting-feature-copy { padding: 34px 22px 36px; }
	.lanting-feature-copy h2 { font-size: clamp(2.4rem, 12vw, 3.2rem); }
	.lanting-gift-details { grid-template-columns: 1fr; }
	.lanting-form-grid { grid-template-columns: 1fr; gap: 0; }
	.lanting-form-email { display: block; margin: 14px 0 0 !important; }
	.lanting-footer-grid { grid-template-columns: 1fr 1fr; gap: 42px 24px; }
	.lanting-footer-brand { grid-column: 1 / -1; }
	.lanting-footer-bottom { display: flex; align-items: flex-start; flex-direction: column; gap: 15px; }
	.lanting-payment-methods { order: 2; flex-wrap: wrap; justify-content: flex-start; }
	.lanting-footer-bottom nav { order: 3; }
	.lanting-post-grid { grid-template-columns: 1fr; }
	.woocommerce ul.products { gap: 34px 10px; }
	.post-type-archive-product ul.products li.product,
	.tax-product_cat ul.products li.product,
	.single-product .related.products ul.products li.product {
		width: 100% !important;
		max-width: none !important;
		min-width: 0;
		height: auto !important;
		align-self: start;
	}
	.post-type-archive-product ul.products,
	.tax-product_cat ul.products,
	.single-product .related.products ul.products {
		align-items: start;
	}
	.post-type-archive-product ul.products li.product .woocommerce-LoopProduct-link,
	.tax-product_cat ul.products li.product .woocommerce-LoopProduct-link,
	.single-product .related.products ul.products li.product .woocommerce-LoopProduct-link {
		flex: 0 0 auto;
		width: 100%;
	}
	.post-type-archive-product ul.products li.product a img,
	.tax-product_cat ul.products li.product a img,
	.single-product .related.products ul.products li.product a img {
		width: 100%;
	}
	.post-type-archive-product ul.products li.product .woocommerce-loop-product__title,
	.tax-product_cat ul.products li.product .woocommerce-loop-product__title,
	.single-product .related.products ul.products li.product .woocommerce-loop-product__title {
		min-height: 2.5em;
	}
	.post-type-archive-product ul.products li.product .price,
	.tax-product_cat ul.products li.product .price,
	.single-product .related.products ul.products li.product .price {
		margin-top: 4px;
	}
	.post-type-archive-product ul.products li.product .lanting-card-actions,
	.tax-product_cat ul.products li.product .lanting-card-actions,
	.single-product .related.products ul.products li.product .lanting-card-actions {
		margin-top: 12px;
	}
	.woocommerce ul.products li.product .woocommerce-loop-product__title { font-size: 1.12rem; }
	.woocommerce ul.products li.product .button { width: 100%; padding-inline: 8px; font-size: .55rem; }
	.post-type-archive-product ul.products li.product .lanting-card-actions,
	.tax-product_cat ul.products li.product .lanting-card-actions { gap: 6px; }
	.post-type-archive-product ul.products li.product .lanting-card-buy-now,
	.tax-product_cat ul.products li.product .lanting-card-buy-now { padding-inline: 8px; }
	.post-type-archive-product ul.products li.product .lanting-card-add-cart,
	.tax-product_cat ul.products li.product .lanting-card-add-cart { flex-basis: 44px; width: 44px; }
	.single-product .related.products .lanting-card-actions { gap: 6px; }
	.single-product .related.products .lanting-card-buy-now { padding-inline: 8px; }
	.single-product .related.products .lanting-card-add-cart { flex-basis: 44px; width: 44px; }
	.lanting-is-home .lanting-product-shortcode ul.products li.product {
		display: flex;
		flex-direction: column;
		height: 100%;
	}
	.lanting-is-home .lanting-product-shortcode ul.products li.product .woocommerce-LoopProduct-link {
		display: flex;
		flex: 1 1 auto;
		flex-direction: column;
	}
	.lanting-is-home .lanting-product-shortcode ul.products li.product .button {
		display: flex;
		align-items: center;
		justify-content: center;
		text-align: center;
	}
	.lanting-is-home .lanting-product-shortcode .lanting-card-actions {
		width: 100%;
		gap: 6px;
		margin-top: 12px;
	}
	.lanting-is-home .lanting-product-shortcode .lanting-card-actions .button {
		width: auto;
		min-height: 44px;
		margin-top: 0;
	}
	.lanting-is-home .lanting-product-shortcode .lanting-card-buy-now {
		height: 44px;
	}
	.lanting-is-home .lanting-product-shortcode .lanting-card-buy-now-label {
		transform: translateY(1px);
	}
	.lanting-is-home .lanting-product-shortcode .lanting-card-add-cart {
		flex-basis: 44px;
		width: 44px;
		padding: 0;
	}
	.lanting-page-intro { margin-bottom: 42px; padding-bottom: 26px; }
	.lanting-content-grid--two,
	.lanting-content-grid--three,
	.lanting-content-grid--four,
	.lanting-process-grid { grid-template-columns: 1fr; }
	.lanting-care-priority { grid-template-columns: 1fr; gap: 12px; padding: 22px; }
	.lanting-process-step { border-right: 0; border-bottom: 1px solid var(--ll-border); }
	.lanting-process-step:last-child { border-bottom: 0; }
	.lanting-offer-row { grid-template-columns: 46px 1fr; }
	.lanting-content-card { padding: 24px 20px; }
	.lanting-editorial-quote { padding: 26px 24px; }
	.lanting-contact-panel { margin-inline: -16px; padding: 34px 20px; }
	.lanting-contact-page .lanting-page-hero { padding: 38px 0 28px; }
	.lanting-prose--contact { padding-top: 28px; padding-bottom: 48px; }
	.lanting-prose--legal { padding-top: 26px; padding-bottom: 48px; }
	.lanting-legal-contents { padding: 20px; }
	.lanting-legal-contents ol,
	.lanting-legal-grid,
	.lanting-legal-grid--cookies,
	.lanting-service-highlights { grid-template-columns: 1fr; }
	.lanting-legal-section { padding: 24px 0; }
	.lanting-legal-grid > div,
	.lanting-cookie-placeholder,
	.lanting-legal-contact { padding: 22px 20px; }
	.lanting-legal-table > div { grid-template-columns: 1fr; gap: 6px; }
	.lanting-service-highlights > div { min-height: auto; padding: 20px; }
	.lanting-faq-group summary { padding-top: 16px; padding-bottom: 16px; }
	.lanting-contact-intro { margin-bottom: 24px; }
	.lanting-contact-layout { grid-template-columns: 1fr; gap: 16px; }
	.lanting-contact-form-card,
	.lanting-contact-method,
	.lanting-contact-response { padding: 22px 20px; }
	.lanting-gift-intro { gap: 18px; margin-bottom: 24px; padding-bottom: 24px; }
	.lanting-gift-highlights,
	.lanting-gift-inclusions { grid-template-columns: 1fr; }
	.lanting-gift-highlights > div { min-height: auto; padding: 22px 20px; border-right: 0; border-bottom: 1px solid var(--ll-border); }
	.lanting-gift-highlights > div:nth-child(2) { border-right: 0; }
	.lanting-gift-highlights > div:last-child { grid-column: auto; border-top: 0; border-bottom: 0; }
	.lanting-gift-section { margin: 34px 0 40px; }
	.lanting-gift-inclusions > div { min-height: auto; padding: 20px; }
	.lanting-gift-note { grid-template-columns: 1fr; gap: 8px; margin: 36px -16px; padding: 28px 22px; }
	.lanting-gift-note-mark { display: none; }
	.lanting-gift-occasions { margin: 38px -16px 30px; padding: 28px 22px; }
	.lanting-gift-occasions ul { grid-template-columns: 1fr; }
	.lanting-gift-cta { margin-inline: -16px; padding: 30px 22px; }
	.lanting-gift-cta-actions { flex-direction: column; align-items: stretch; }
	.lanting-gift-cta-actions .lanting-button { width: 100%; }
	.lanting-gift-shop-fallback { margin-inline: -16px; padding: 26px 22px; }
	.lanting-gift-shop-fallback .lanting-button { width: 100%; }
	.woocommerce-account #customer_login { grid-template-columns: 1fr; }
	.woocommerce-account #customer_login .u-column1,
	.woocommerce-account #customer_login .u-column2 { padding: 24px 20px; }
	.lanting-account-reset-panel { align-items: stretch; flex-direction: column; padding: 26px 22px; }
	.lanting-account-reset-panel .lanting-button { width: 100%; min-width: 0; }
	.woocommerce-lost-password form.lost_reset_password { padding: 24px 20px; }
	.woocommerce-lost-password form.lost_reset_password .woocommerce-Button { width: 100%; }
	.woocommerce div.product .woocommerce-tabs { padding-inline: 4px; }
	.single-product .product-type-simple .summary form.cart,
	.single-product .product-type-variable .summary .woocommerce-variation-add-to-cart {
		display: grid;
		grid-template-columns: minmax(120px, 42%) minmax(0, 1fr);
		gap: 10px;
		align-items: stretch;
	}
	.single-product :is(.product-type-simple, .product-type-variable) .summary form.cart .quantity {
		display: grid;
		grid-template-columns: 34px minmax(38px, 1fr) 34px;
		grid-column: 1;
		float: none;
		width: 100%;
		height: 52px;
		margin: 0 !important;
		border: 1px solid var(--ll-border);
	}
	.single-product :is(.product-type-simple, .product-type-variable) .summary form.cart .quantity .lanting-quantity-button {
		display: flex;
		align-items: center;
		justify-content: center;
		min-width: 0;
		padding: 0;
		border: 0;
		background: transparent;
		color: var(--ll-jade);
		font: inherit;
		font-size: 1.1rem;
		line-height: 1;
		cursor: pointer;
	}
	.single-product :is(.product-type-simple, .product-type-variable) .summary form.cart .quantity .lanting-quantity-minus { border-right: 1px solid var(--ll-border); }
	.single-product :is(.product-type-simple, .product-type-variable) .summary form.cart .quantity .lanting-quantity-plus { border-left: 1px solid var(--ll-border); }
	.single-product :is(.product-type-simple, .product-type-variable) .summary form.cart .quantity .lanting-quantity-button:hover,
	.single-product :is(.product-type-simple, .product-type-variable) .summary form.cart .quantity .lanting-quantity-button:focus-visible {
		background: var(--ll-parchment);
		color: var(--ll-charcoal);
	}
	.single-product :is(.product-type-simple, .product-type-variable) .summary form.cart .quantity .qty {
		width: 100%;
		min-width: 0;
		height: 50px;
		padding: 0 2px;
		border: 0;
		text-align: center;
		-moz-appearance: textfield;
	}
	.single-product :is(.product-type-simple, .product-type-variable) .summary form.cart .quantity .qty::-webkit-inner-spin-button,
	.single-product :is(.product-type-simple, .product-type-variable) .summary form.cart .quantity .qty::-webkit-outer-spin-button {
		margin: 0;
		-webkit-appearance: none;
	}
	.single-product .summary form.cart .single_add_to_cart_button {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		min-height: 52px;
		margin: 0;
	}
	.single-product .summary form.cart .single_add_to_cart_button:not(.lanting-buy-now) {
		grid-column: 2;
	}
	.single-product .summary form.cart .lanting-buy-now {
		grid-column: 1 / -1;
	}
	.single-product .related.products { padding-inline: 0; }
	.post-type-archive-product,
	.tax-product_cat,
	.tax-product_tag { --ll-archive-gutter: 16px; }
}

@media (min-width: 1121px) {
	/*
	 * The botanical mark is visually top-heavy. Lowering the controls slightly
	 * aligns their optical centre with the mark rather than its image box.
	 */
	.lanting-primary-nav,
	.lanting-header-tools {
		transform: translateY(7px);
	}
}
.lanting-product-story {
	max-width: 980px;
	margin: 3rem auto 0;
}

.lanting-product-story > section {
	padding: 2rem 0;
	border-top: 1px solid rgba(23, 55, 47, .14);
}

.lanting-product-lead {
	max-width: 760px;
	margin: 0 0 2.25rem;
	font-family: var(--ll-serif);
	font-size: clamp(1.45rem, 2.4vw, 2.15rem);
	line-height: 1.35;
	color: var(--ll-jade-deep);
}

.lanting-product-specs {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0;
	margin: 1.25rem 0 0;
	border-top: 1px solid rgba(23, 55, 47, .12);
}

.lanting-product-specs > div {
	display: grid;
	grid-template-columns: minmax(105px, .7fr) 1.5fr;
	gap: 1rem;
	padding: 1rem 0;
	border-bottom: 1px solid rgba(23, 55, 47, .12);
}

.lanting-product-specs > div:nth-child(odd) {
	padding-right: 1.5rem;
}

.lanting-product-specs > div:nth-child(even) {
	padding-left: 1.5rem;
	border-left: 1px solid rgba(23, 55, 47, .12);
}

.lanting-product-specs dt {
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--ll-jade);
}

.lanting-product-specs dd {
	margin: 0;
}

.lanting-product-columns {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.25rem;
	margin: 2rem 0;
}

.lanting-product-columns section {
	padding: 1.5rem;
	background: var(--ll-ivory);
}

/* Immediate fallback while the one-time saved-content cleanup runs. */
.lanting-product-delivery {
	display: none !important;
}

@media (max-width: 760px) {
	.lanting-product-specs,
	.lanting-product-columns {
		grid-template-columns: 1fr;
	}

	.lanting-product-specs > div:nth-child(odd),
	.lanting-product-specs > div:nth-child(even) {
		padding: .9rem 0;
		border-left: 0;
	}
}

/* --------------------------------------------------------------------------
 * Lanting Loom v1.5 — refined brand atmosphere
 * Paper + Ink + Lanting Celadon + restrained Soft Gold.
 * -------------------------------------------------------------------------- */

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--ll-charcoal);
}

.lanting-kicker {
	color: var(--ll-celadon-deep);
}

.lanting-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
	border-color: var(--ll-celadon-deep);
	background: var(--ll-celadon-deep);
	color: var(--ll-ivory);
}

.lanting-button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
	border-color: var(--ll-charcoal);
	background: var(--ll-charcoal);
	color: var(--ll-ivory);
}

.lanting-button--outline {
	background: transparent;
	color: var(--ll-celadon-deep);
}

.lanting-text-link {
	color: var(--ll-celadon-deep);
}

.lanting-announcement {
	background: var(--ll-celadon-dark);
}

.site-header,
.site-header.is-scrolled {
	background: rgba(247, 244, 237, .97);
}

.site-header.is-scrolled {
	box-shadow: 0 10px 36px rgba(37, 37, 34, .08);
}

.lanting-hero {
	background: var(--ll-charcoal);
}

.lanting-hero-overlay {
	background:
		linear-gradient(90deg, rgba(24, 28, 27, .90) 0%, rgba(36, 52, 50, .62) 36%, rgba(36, 52, 50, .10) 68%, rgba(24, 28, 27, .03) 100%);
}

.lanting-promises {
	background: var(--ll-paper);
}

.lanting-promises-grid > div {
	color: var(--ll-charcoal);
}

.lanting-promises svg {
	stroke: var(--ll-celadon-deep);
}

.lanting-feature {
	background: var(--ll-paper);
	color: var(--ll-muted);
}

.lanting-feature-copy h2 {
	color: var(--ll-charcoal);
}

.lanting-feature-copy .lanting-text-link {
	color: var(--ll-celadon-deep);
}

.lanting-cultural-note {
	border-left-color: var(--ll-celadon);
}

.lanting-products-section {
	background: #faf8f3;
}

.lanting-story-band {
	background: var(--ll-mist);
}

.lanting-story-art::before {
	border-color: rgba(116, 143, 137, .72);
}

.lanting-story-seal {
	background: var(--ll-celadon-deep);
}

.lanting-story-seal small {
	color: rgba(247, 244, 237, .72);
}

.lanting-gifting-image::after {
	background: var(--ll-paper);
}

.lanting-gifting-copy > svg {
	stroke: var(--ll-celadon-deep);
}

.lanting-corporate {
	background: linear-gradient(120deg, var(--ll-charcoal), var(--ll-celadon-dark));
}

.lanting-letter,
.site-footer {
	background: var(--ll-charcoal);
}

.site-footer h3 {
	color: var(--ll-celadon);
}

.lanting-page-hero {
	background: var(--ll-paper);
}

.lanting-prose a,
.lanting-form-email a {
	color: var(--ll-celadon-deep);
}

.lanting-legal-intro > p:last-child,
.lanting-contact-form label {
	color: var(--ll-charcoal);
}

.lanting-contact-form,
.lanting-form-notice {
	background: var(--ll-paper);
}

.woocommerce-info,
.woocommerce-message {
	background: var(--ll-paper);
}

/* Product summary: fashion and trust first. */
.single-product .summary .product_title {
	color: var(--ll-charcoal);
}

.single-product .summary .price {
	color: var(--ll-celadon-deep);
}

.single-product .summary form.cart .single_add_to_cart_button {
	border-color: var(--ll-celadon-deep);
	color: var(--ll-celadon-deep);
}

.single-product .summary form.cart .single_add_to_cart_button:hover {
	border-color: var(--ll-charcoal);
	color: var(--ll-charcoal);
}

.single-product .summary form.cart .lanting-buy-now {
	border-color: var(--ll-celadon-deep);
	background: var(--ll-celadon-deep);
	color: var(--ll-ivory);
}

.single-product .summary form.cart .lanting-buy-now:hover,
.single-product .summary form.cart .lanting-buy-now:focus,
.single-product .summary form.cart .lanting-buy-now:focus-visible {
	border-color: var(--ll-charcoal);
	background: var(--ll-charcoal);
	color: var(--ll-ivory);
}

.lanting-product-assurance {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin: 24px 0 6px;
	border-top: 1px solid var(--ll-border);
	border-bottom: 1px solid var(--ll-border);
}

.lanting-product-assurance > div {
	padding: 16px 14px;
	border-right: 1px solid var(--ll-border);
}

.lanting-product-assurance > div:first-child {
	padding-left: 0;
}

.lanting-product-assurance > div:last-child {
	padding-right: 0;
	border-right: 0;
}

.lanting-product-assurance strong,
.lanting-product-assurance span {
	display: block;
}

.lanting-product-assurance strong {
	margin-bottom: 4px;
	color: var(--ll-charcoal);
	font-size: .68rem;
	font-weight: 750;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.lanting-product-assurance span,
.lanting-product-assurance a {
	color: var(--ll-muted);
	font-size: .72rem;
	line-height: 1.45;
}

.lanting-product-assurance a {
	border-bottom: 1px solid rgba(180, 154, 104, .65);
}

/* Storytelling is visible without hiding the product behind a tab. */
.single-product .lanting-product-editorial {
	clear: both;
	width: 100%;
	padding: clamp(54px, 6vw, 90px) clamp(18px, 3vw, 42px) 0;
}

.single-product .lanting-product-editorial > .lanting-product-story {
	margin-top: 0;
}

.lanting-product-story {
	max-width: 1120px;
	margin: 0 auto;
}

.lanting-product-lead {
	max-width: 800px;
	margin: 0 auto clamp(44px, 5vw, 72px);
	color: var(--ll-charcoal);
	font-family: var(--ll-serif);
	font-size: clamp(1.6rem, 2.6vw, 2.5rem);
	line-height: 1.3;
	text-align: center;
}

.lanting-product-story > .lanting-story-signature {
	padding: clamp(42px, 5vw, 68px) 0;
	border-top: 1px solid var(--ll-border);
	border-bottom: 1px solid var(--ll-border);
}

.lanting-story-signature-head {
	display: grid;
	grid-template-columns: minmax(180px, .55fr) 1.45fr;
	gap: clamp(28px, 5vw, 72px);
	margin-bottom: clamp(34px, 4vw, 54px);
}

.lanting-story-signature-head .lanting-kicker {
	margin-top: 7px;
}

.lanting-story-signature-head h2 {
	max-width: 720px;
	font-size: clamp(2.35rem, 4.5vw, 4.8rem);
}

.lanting-story-chapters {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0;
	border-top: 1px solid var(--ll-border);
}

.lanting-story-chapter {
	padding: 30px clamp(22px, 3vw, 38px) 0;
	border-right: 1px solid var(--ll-border);
}

.lanting-story-chapter:first-child {
	padding-left: 0;
}

.lanting-story-chapter:last-child {
	padding-right: 0;
	border-right: 0;
}

.lanting-story-number {
	display: block;
	margin-bottom: 20px;
	color: var(--ll-celadon-deep);
	font-size: .64rem;
	font-weight: 750;
	letter-spacing: .16em;
}

.lanting-story-chapter h3 {
	font-size: clamp(1.7rem, 2.6vw, 2.4rem);
}

.lanting-story-chapter p {
	color: var(--ll-muted);
}

.lanting-product-story > .lanting-product-gift-meaning {
	display: grid;
	grid-template-columns: .8fr 1.2fr;
	gap: clamp(34px, 5vw, 80px);
	margin: clamp(56px, 7vw, 100px) 0;
	padding: clamp(36px, 5vw, 66px);
	background: var(--ll-mist);
}

.lanting-product-gift-meaning h2 {
	margin-bottom: 0;
	font-size: clamp(2.2rem, 4vw, 4.2rem);
}

.lanting-product-gift-meaning-copy {
	align-self: center;
}

.lanting-product-gift-meaning-copy > p:first-child {
	font-family: var(--ll-serif);
	font-size: clamp(1.3rem, 2vw, 1.75rem);
	line-height: 1.45;
}

.lanting-product-gift-meaning-copy > p:not(:first-child) {
	color: var(--ll-muted);
}

.lanting-product-story > .lanting-product-detail-section {
	padding: clamp(36px, 4vw, 54px) 0;
	border-top: 1px solid var(--ll-border);
}

.lanting-product-detail-section h2 {
	font-size: clamp(2rem, 3vw, 3rem);
}

.lanting-product-specs {
	border-color: var(--ll-border);
}

.lanting-product-specs > div,
.lanting-product-specs > div:nth-child(even) {
	border-color: var(--ll-border);
}

.lanting-product-specs dt {
	color: var(--ll-celadon-deep);
}

.lanting-product-columns section {
	background: var(--ll-paper);
}

.lanting-product-columns section h2 {
	font-size: clamp(1.7rem, 2.4vw, 2.3rem);
}

.woocommerce div.product .woocommerce-tabs {
	margin-top: 36px;
}

@media (min-width: 1920px) {
	.lanting-hero-overlay {
		background: linear-gradient(90deg, rgba(24, 28, 27, .91) 0%, rgba(36, 52, 50, .65) 30%, rgba(36, 52, 50, .10) 62%, rgba(24, 28, 27, .03) 100%);
	}
}

@media (max-width: 820px) {
	.lanting-hero-overlay {
		background: linear-gradient(90deg, rgba(24,28,27,.76), rgba(49,72,70,.24)), linear-gradient(0deg, rgba(24,28,27,.52), transparent 60%);
	}

	.lanting-story-signature-head,
	.lanting-product-story > .lanting-product-gift-meaning {
		grid-template-columns: 1fr;
	}

	.lanting-story-signature-head {
		gap: 8px;
	}

	.lanting-story-chapters {
		grid-template-columns: 1fr;
	}

	.lanting-story-chapter,
	.lanting-story-chapter:first-child,
	.lanting-story-chapter:last-child {
		padding: 26px 0;
		border-right: 0;
		border-bottom: 1px solid var(--ll-border);
	}

	.lanting-story-chapter:last-child {
		border-bottom: 0;
	}

	.lanting-product-story > .lanting-product-gift-meaning {
		gap: 20px;
	}
}

@media (max-width: 540px) {
	.lanting-product-assurance {
		grid-template-columns: 1fr;
	}

	.lanting-product-assurance > div,
	.lanting-product-assurance > div:first-child,
	.lanting-product-assurance > div:last-child {
		padding: 12px 0;
		border-right: 0;
		border-bottom: 1px solid var(--ll-border);
	}

	.lanting-product-assurance > div:last-child {
		border-bottom: 0;
	}

	.single-product .lanting-product-editorial {
		padding-inline: 16px;
	}

	.lanting-product-story > .lanting-product-gift-meaning {
		margin-inline: -16px;
		padding: 32px 22px;
	}
}


/* v1.5.1 readability fix for dark footer surfaces */
.lanting-letter .lanting-kicker {
	color: var(--ll-gold);
}

.lanting-letter .lanting-text-link,
.lanting-letter .lanting-text-link--light {
	color: var(--ll-ivory);
	border-color: rgba(247, 244, 237, .3);
}

.lanting-letter .lanting-text-link:hover,
.lanting-letter .lanting-text-link--light:hover {
	color: var(--ll-gold);
	border-color: var(--ll-gold);
}

/* Brighter, hero-specific CTA feedback on dark imagery. */
.lanting-hero .lanting-actions .lanting-text-link {
	transition: color var(--ll-transition), border-color var(--ll-transition), transform var(--ll-transition);
}

.lanting-hero .lanting-actions .lanting-button:hover,
.lanting-hero .lanting-actions .lanting-button:focus-visible {
	border-color: #d8bd86;
	background: #d8bd86;
	color: var(--ll-jade-deep);
	transform: translateY(-2px);
}

.lanting-hero .lanting-actions .lanting-text-link:hover,
.lanting-hero .lanting-actions .lanting-text-link:focus-visible {
	border-color: #d8bd86;
	color: #f0d49a;
	transform: translateY(-2px);
}

.lanting-hero .lanting-actions .lanting-button:focus-visible,
.lanting-hero .lanting-actions .lanting-text-link:focus-visible {
	outline: 2px solid #d8bd86;
	outline-offset: 4px;
}
