:root {
	--lc-ink: #1c1c19;
	--lc-muted: #706d67;
	--lc-paper: #ffffff;
	--lc-soft: #f4f1eb;
	--lc-soft-2: #ebe4d9;
	--lc-wood: #b87845;
	--lc-wood-dark: #8a542e;
	--lc-line: #ded9d1;
	--lc-sage: #596759;
	--lc-max: 1320px;
}

html {
	scroll-behavior: smooth;
}

body.lifycraft-storefront {
	margin: 0;
	background: var(--lc-paper);
	color: var(--lc-ink);
	font-family: "Manrope Variable", Manrope, Arial, sans-serif;
	font-size: 15px;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}

body.lifycraft-storefront.lc-drawer-open {
	overflow: hidden;
}

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

.lifycraft-storefront a {
	color: inherit;
	text-decoration: none;
}

.lifycraft-storefront button,
.lifycraft-storefront input,
.lifycraft-storefront select {
	color: inherit;
	font: inherit;
}

.lifycraft-storefront button {
	cursor: pointer;
}

.lifycraft-storefront img {
	max-width: 100%;
	border-radius: 0;
}

.lc-container {
	width: min(calc(100% - 64px), var(--lc-max));
	margin-inline: auto;
}

.site-content,
.col-full,
.content-area,
.site-main {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
}

.right-sidebar .content-area,
.left-sidebar .content-area,
.right-sidebar .widget-area,
.left-sidebar .widget-area {
	float: none;
	width: 100%;
	margin: 0;
}

.lc-eyebrow {
	display: block;
	color: var(--lc-wood-dark);
	font-size: 10px;
	font-weight: 850;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.lc-announcement {
	display: flex;
	justify-content: center;
	gap: 14px;
	padding: 10px 20px;
	background: var(--lc-ink);
	color: #fff;
	font-size: 11px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.lc-announcement span {
	color: #bcbab5;
}

.lc-site-header {
	position: sticky;
	z-index: 80;
	top: 0;
	background: rgba(255, 255, 255, 0.96);
	border-bottom: 1px solid rgba(222, 217, 209, 0.9);
	backdrop-filter: blur(14px);
}

.admin-bar .lc-site-header {
	top: 32px;
}

.lc-header-main {
	display: grid;
	grid-template-columns: 180px 1fr auto;
	align-items: center;
	height: 94px;
}

.lc-brand,
.custom-logo-link {
	display: inline-flex;
	align-items: center;
	width: max-content;
	margin: 0;
}

.lc-brand img,
.custom-logo {
	display: block;
	width: auto;
	height: 72px;
	max-height: 76px;
}

.lc-primary-menu,
.lc-menu-fallback {
	display: flex;
	justify-content: center;
	gap: 30px;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 13px;
	font-weight: 650;
}

.lc-primary-menu li,
.lc-menu-fallback li {
	position: relative;
	margin: 0;
}

.lc-primary-menu .sub-menu {
	position: absolute;
	top: calc(100% + 20px);
	left: -20px;
	display: none;
	min-width: 220px;
	margin: 0;
	padding: 14px;
	background: #fff;
	border: 1px solid var(--lc-line);
	box-shadow: 0 18px 35px rgba(30, 26, 20, 0.1);
	list-style: none;
}

.lc-primary-menu li:hover > .sub-menu,
.lc-primary-menu li:focus-within > .sub-menu {
	display: block;
}

.lc-primary-menu .sub-menu a {
	display: block;
	padding: 8px;
}

.lc-primary-menu a,
.lc-header-action {
	transition: opacity 160ms ease;
}

.lc-primary-menu a:hover,
.lc-header-action:hover {
	opacity: 0.58;
}

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

.lc-header-action,
.lc-icon-button {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 5px;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	font-size: 12px;
	font-weight: 700;
}

.lc-cart-count {
	display: inline-grid;
	min-width: 22px;
	height: 22px;
	padding: 0 5px;
	place-items: center;
	border-radius: 99px;
	background: var(--lc-ink);
	color: #fff;
	font-size: 10px;
}

.lc-icon {
	position: relative;
	display: inline-block;
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
}

.lc-icon-search {
	width: 15px;
	height: 15px;
	border: 1.7px solid currentcolor;
	border-radius: 50%;
}

.lc-icon-search::after {
	position: absolute;
	right: -4px;
	bottom: -2px;
	width: 7px;
	height: 1.5px;
	background: currentcolor;
	content: "";
	transform: rotate(45deg);
}

.lc-icon-bag {
	border: 1.5px solid currentcolor;
	border-radius: 2px;
	transform: scale(0.78);
	transform-origin: center bottom;
}

.lc-icon-bag::before {
	position: absolute;
	top: -8px;
	left: 3px;
	width: 9px;
	height: 9px;
	border: 1.7px solid currentcolor;
	border-bottom: 0;
	border-radius: 6px 6px 0 0;
	content: "";
}

.lc-icon-user {
	border: 1.5px solid currentcolor;
	border-radius: 50%;
}

.lc-icon-user::before {
	position: absolute;
	top: 2px;
	left: 5px;
	width: 6px;
	height: 6px;
	border: 1.2px solid currentcolor;
	border-radius: 50%;
	content: "";
}

.lc-icon-user::after {
	position: absolute;
	right: 3px;
	bottom: 2px;
	left: 3px;
	height: 5px;
	border: 1.2px solid currentcolor;
	border-radius: 8px 8px 3px 3px;
	content: "";
}

.lc-icon-menu::before,
.lc-icon-menu::after {
	position: absolute;
	left: 0;
	width: 18px;
	height: 1.5px;
	background: currentcolor;
	content: "";
}

.lc-icon-menu::before {
	top: 5px;
}

.lc-icon-menu::after {
	bottom: 5px;
	width: 12px;
}

.lc-icon-close::before,
.lc-icon-close::after {
	position: absolute;
	top: 8px;
	left: 0;
	width: 18px;
	height: 1.5px;
	background: currentcolor;
	content: "";
	transform: rotate(45deg);
}

.lc-icon-close::after {
	transform: rotate(-45deg);
}

.lc-menu-button {
	display: none;
}

.lc-search-panel {
	position: absolute;
	right: 0;
	left: 0;
	padding: 30px max(32px, calc((100vw - var(--lc-max)) / 2));
	background: #fff;
	border-top: 1px solid var(--lc-line);
	box-shadow: 0 18px 30px rgba(30, 26, 20, 0.08);
}

.lc-search-panel form {
	display: flex;
	margin-top: 10px;
	border-bottom: 1px solid var(--lc-ink);
}

.lc-search-panel input[type="search"] {
	flex: 1;
	margin: 0;
	padding: 10px 0 16px;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	outline: 0;
	font-size: clamp(20px, 3vw, 34px);
}

.lc-search-panel button {
	align-self: center;
	padding: 10px 0;
	background: transparent;
	border: 0;
	border-radius: 0;
	color: var(--lc-ink);
	font-weight: 800;
}

.lc-drawer-backdrop {
	position: fixed;
	z-index: 100;
	inset: 0;
	background: rgba(18, 17, 15, 0.45);
	opacity: 0;
	transition: opacity 220ms ease;
}

.lc-drawer-backdrop.is-open {
	opacity: 1;
}

.lc-mobile-drawer,
.lc-cart-drawer {
	position: fixed;
	z-index: 110;
	top: 0;
	bottom: 0;
	background: #fff;
	box-shadow: 0 0 60px rgba(0, 0, 0, 0.12);
	transition: transform 280ms ease;
}

.lc-mobile-drawer {
	left: 0;
	width: min(88vw, 400px);
	transform: translateX(-105%);
}

.lc-cart-drawer {
	right: 0;
	display: flex;
	width: min(92vw, 470px);
	flex-direction: column;
	transform: translateX(105%);
}

.lc-mobile-drawer.is-open,
.lc-cart-drawer.is-open {
	transform: translateX(0);
}

.lc-drawer-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 24px 26px;
	border-bottom: 1px solid var(--lc-line);
}

.lc-drawer-head h2 {
	margin: 4px 0 0;
	font-size: 22px;
}

.lc-mobile-menu,
.lc-mobile-drawer .lc-menu-fallback {
	display: flex;
	flex-direction: column;
	gap: 0;
	margin: 0;
	padding: 24px;
	list-style: none;
}

.lc-mobile-menu a,
.lc-mobile-drawer .lc-menu-fallback a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 0;
	border-bottom: 1px solid var(--lc-line);
	font-size: 19px;
	font-weight: 650;
}

.lc-drawer-note {
	position: absolute;
	right: 24px;
	bottom: 28px;
	left: 24px;
	padding: 18px;
	background: var(--lc-soft);
}

.lc-drawer-note span,
.lc-drawer-note strong {
	display: block;
}

.lc-drawer-note span {
	color: var(--lc-muted);
	font-size: 11px;
	text-transform: uppercase;
}

.lc-cart-drawer .widget_shopping_cart_content {
	flex: 1;
	overflow-y: auto;
	padding: 24px;
}

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

.lc-cart-drawer .woocommerce-mini-cart-item {
	display: grid;
	grid-template-columns: 88px 1fr;
	gap: 14px;
	padding: 0 0 20px 0;
	border-bottom: 1px solid var(--lc-line);
}

.lc-cart-drawer .woocommerce-mini-cart-item > a:not(.remove) {
	display: contents;
	font-size: 13px;
	font-weight: 750;
}

.lc-cart-drawer .woocommerce-mini-cart-item img {
	grid-row: span 2;
	width: 88px;
	height: 104px;
	object-fit: cover;
}

.lc-cart-drawer .remove {
	position: absolute;
	right: 28px;
	background: none;
	color: var(--lc-muted) !important;
}

.lc-cart-drawer .woocommerce-mini-cart__empty-message {
	display: grid;
	min-height: 50vh;
	place-content: center;
	color: var(--lc-muted);
	text-align: center;
}

.lc-cart-drawer .woocommerce-mini-cart__total {
	display: flex;
	justify-content: space-between;
	padding: 18px 0 8px;
	border-top: 1px solid var(--lc-line);
}

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

.lc-cart-drawer .button {
	margin: 0;
	padding: 14px 18px;
	background: #fff;
	border: 1px solid var(--lc-ink);
	border-radius: 0;
	color: var(--lc-ink);
	text-align: center;
}

.lc-cart-drawer .checkout {
	background: var(--lc-ink);
	color: #fff;
}

.lc-hero {
	overflow: hidden;
	padding: 72px 0 76px;
	background: var(--lc-soft);
}

.lc-hero-grid {
	display: grid;
	grid-template-columns: minmax(390px, 0.83fr) 1.17fr;
	align-items: center;
	gap: clamp(50px, 7vw, 110px);
}

.lc-hero-copy h1 {
	margin: 18px 0 24px;
	font-size: clamp(58px, 6.1vw, 94px);
	font-weight: 560;
	letter-spacing: -0.065em;
	line-height: 0.95;
}

.lc-hero-copy h1 em {
	display: block;
	color: var(--lc-wood-dark);
	font-family: Georgia, serif;
	font-weight: 400;
}

.lc-hero-copy > p {
	max-width: 490px;
	margin: 0;
	color: #535049;
	font-size: 17px;
	line-height: 1.75;
}

.lc-hero-actions {
	display: flex;
	align-items: center;
	gap: 26px;
	margin-top: 35px;
}

.lc-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
	min-height: 53px;
	padding: 0 24px;
	border: 1px solid;
	border-radius: 0;
	font-size: 12px;
	font-weight: 800;
}

.lifycraft-storefront a.lc-button-dark {
	background: var(--lc-ink);
	border-color: var(--lc-ink);
	color: #fff;
}

.lifycraft-storefront a.lc-button-light {
	background: #fff;
	border-color: #fff;
	color: var(--lc-ink);
}

.lc-underlined-link {
	display: inline-block;
	padding-bottom: 4px;
	border-bottom: 1px solid currentcolor;
	font-size: 12px;
	font-weight: 800;
}

.lc-hero-facts {
	display: flex;
	margin-top: 50px;
	color: var(--lc-muted);
	font-size: 10px;
}

.lc-hero-facts span {
	padding: 0 14px;
	border-right: 1px solid #cfc8bd;
}

.lc-hero-facts span:first-child {
	padding-left: 0;
}

.lc-hero-facts span:last-child {
	border-right: 0;
}

.lc-hero-facts strong {
	display: block;
	color: var(--lc-ink);
	font-size: 12px;
}

.lc-hero-visual {
	position: relative;
}

.lc-hero-image {
	display: block;
	width: 100%;
	aspect-ratio: 1.08;
	object-fit: cover;
}

.lc-hero-product {
	position: absolute;
	bottom: -35px;
	left: -56px;
	display: grid;
	grid-template-columns: 108px 1fr;
	align-items: center;
	width: 340px;
	padding: 13px;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 18px 50px rgba(39, 31, 21, 0.12);
}

.lc-hero-product img {
	width: 108px;
	height: 108px;
	background: var(--lc-soft);
	object-fit: cover;
}

.lc-hero-product span,
.lc-hero-product small,
.lc-hero-product strong,
.lc-hero-product b {
	display: block;
}

.lc-hero-product span {
	padding-left: 14px;
}

.lc-hero-product small {
	color: var(--lc-wood-dark);
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.lc-hero-product strong {
	margin: 5px 0 7px;
	font-size: 15px;
}

.lc-hero-product b {
	color: var(--lc-muted);
	font-size: 10px;
}

.lc-trust-strip {
	border-bottom: 1px solid var(--lc-line);
}

.lc-trust-strip .lc-container {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.lc-trust-strip .lc-container > div {
	padding: 24px 28px;
	border-right: 1px solid var(--lc-line);
}

.lc-trust-strip .lc-container > div:first-child {
	padding-left: 0;
}

.lc-trust-strip .lc-container > div:last-child {
	border-right: 0;
}

.lc-trust-strip strong,
.lc-trust-strip span {
	display: block;
}

.lc-trust-strip strong {
	margin-bottom: 3px;
	font-size: 12px;
}

.lc-trust-strip span {
	color: var(--lc-muted);
	font-size: 10px;
}

.lc-section {
	padding-top: 110px;
	padding-bottom: 110px;
}

.lc-section-soft {
	background: var(--lc-soft);
}

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

.lc-section-heading h2 {
	margin: 10px 0 0;
	font-size: clamp(34px, 4vw, 52px);
	font-weight: 560;
	letter-spacing: -0.045em;
	line-height: 1.04;
}

.lc-category-grid {
	display: grid;
	grid-template-columns: 1.35fr 0.8fr;
	grid-template-rows: repeat(2, 310px);
	gap: 18px;
}

.lc-category-card {
	position: relative;
	display: flex;
	overflow: hidden;
	padding: 28px;
	flex-direction: column;
	justify-content: flex-end;
	color: #fff;
}

.lc-category-large {
	grid-row: span 2;
}

.lc-category-card::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 35%, rgba(16, 14, 11, 0.72));
	content: "";
}

.lc-category-card img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 500ms ease;
}

.lc-category-card:hover img {
	transform: scale(1.025);
}

.lc-category-card span,
.lc-category-card strong,
.lc-category-card b {
	position: relative;
	z-index: 1;
}

.lc-category-card span {
	margin-bottom: 7px;
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.lc-category-card strong {
	max-width: 350px;
	font-size: 28px;
	font-weight: 600;
	letter-spacing: -0.03em;
}

.lc-category-large strong {
	font-size: 40px;
}

.lc-category-card b {
	margin-top: 15px;
	font-size: 10px;
}

ul.products.lc-product-grid,
.lc-shop-results ul.products {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
	margin: 0;
	padding: 0;
}

.lc-shop-results ul.products {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	row-gap: 46px;
}

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

ul.products li.product.lc-product-card {
	float: none;
	width: auto !important;
	margin: 0;
	padding: 0;
	text-align: left;
}

.lc-product-image {
	position: relative;
	display: block;
	aspect-ratio: 0.88;
	overflow: hidden;
	background: #eeeae4;
}

.lc-product-image img {
	position: absolute;
	inset: 0;
	width: 100% !important;
	height: 100% !important;
	margin: 0 !important;
	object-fit: cover;
	transition: opacity 260ms ease, transform 420ms ease;
}

.lc-card-hover {
	opacity: 0;
}

.lc-product-image:hover .lc-card-primary {
	opacity: 0;
}

.lc-product-image:hover .lc-card-hover {
	opacity: 1;
	transform: scale(1.02);
}

.lc-product-badge {
	position: absolute;
	z-index: 2;
	top: 13px;
	left: 13px;
	padding: 7px 10px;
	background: #fff;
	color: var(--lc-ink);
	font-size: 8px;
	font-weight: 850;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.lc-product-copy {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px 2px 0;
}

.lc-product-copy span {
	display: block;
	margin-bottom: 4px;
	color: var(--lc-muted);
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.lc-product-copy h2 {
	margin: 0;
	padding: 0;
	color: var(--lc-ink);
	font-size: 14px !important;
	font-weight: 700 !important;
	line-height: 1.4;
}

.lc-product-copy .price,
.lc-staging-card small {
	display: block;
	margin: 5px 0 0 !important;
	color: var(--lc-muted) !important;
	font-size: 12px !important;
	font-weight: 500 !important;
}

.lc-product-copy .button {
	display: grid;
	width: 38px;
	height: 38px;
	margin: 0;
	padding: 0;
	overflow: hidden;
	place-items: center;
	background: transparent;
	border: 1px solid var(--lc-line);
	border-radius: 50%;
	color: transparent;
	font-size: 0;
}

.lc-product-copy .button::before {
	color: var(--lc-ink);
	content: "+";
	font-size: 20px;
	font-weight: 400;
}

.lc-product-copy .button:hover {
	background: var(--lc-ink);
}

.lc-product-copy .button:hover::before {
	color: #fff;
}

.lc-story {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	align-items: center;
	gap: clamp(55px, 8vw, 120px);
	padding-top: 130px;
	padding-bottom: 130px;
}

.lc-story-image {
	position: relative;
	aspect-ratio: 0.95;
}

.lc-story-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.lc-story-image > span {
	position: absolute;
	right: -30px;
	bottom: 35px;
	padding: 17px 22px;
	background: #fff;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.lc-story-copy h2,
.lc-inspiration h2 {
	margin: 15px 0 26px;
	font-size: clamp(40px, 4.7vw, 64px);
	font-weight: 540;
	letter-spacing: -0.055em;
	line-height: 1.02;
}

.lc-story-copy > p {
	max-width: 500px;
	color: var(--lc-muted);
	font-size: 15px;
	line-height: 1.8;
}

.lc-story-steps {
	margin: 30px 0 32px;
	padding: 0;
	border-top: 1px solid var(--lc-line);
	list-style: none;
}

.lc-story-steps li {
	display: grid;
	grid-template-columns: 38px 1fr;
	gap: 12px;
	padding: 17px 0;
	border-bottom: 1px solid var(--lc-line);
}

.lc-story-steps li > b {
	color: var(--lc-wood);
	font-size: 10px;
}

.lc-story-steps span,
.lc-story-steps strong {
	display: block;
}

.lc-story-steps span {
	color: var(--lc-muted);
	font-size: 11px;
}

.lc-story-steps strong {
	margin-bottom: 3px;
	color: var(--lc-ink);
	font-size: 13px;
}

.lc-inspiration {
	padding: 100px 0;
	background: var(--lc-sage);
	color: #fff;
}

.lc-inspiration-grid {
	display: grid;
	grid-template-columns: 0.95fr 0.75fr 0.55fr;
	align-items: end;
	gap: 20px;
}

.lc-inspiration-grid > div:first-child {
	align-self: center;
	padding-right: 50px;
}

.lc-inspiration .lc-eyebrow {
	color: #d7c6ad;
}

.lc-inspiration p {
	max-width: 390px;
	color: #d7ddd7;
}

.lc-inspiration .lc-button {
	margin-top: 24px;
}

.lc-inspiration-grid > img {
	width: 100%;
	aspect-ratio: 0.86;
	object-fit: cover;
}

.lc-inspiration-grid > .lc-inspiration-tall {
	aspect-ratio: 0.72;
}

.lc-newsletter {
	background: var(--lc-soft-2);
}

.lc-newsletter-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 80px;
	min-height: 260px;
}

.lc-newsletter h2 {
	margin: 8px 0 0;
	font-size: 38px;
	font-weight: 560;
	letter-spacing: -0.04em;
}

.lc-newsletter-slot {
	text-align: right;
}

.lc-footer {
	background: var(--lc-ink);
	color: #fff;
}

.lc-footer-grid {
	display: grid;
	grid-template-columns: 2fr repeat(3, 1fr);
	gap: 70px;
	padding-top: 76px;
	padding-bottom: 72px;
}

.lc-footer-brand p {
	max-width: 350px;
	margin: 22px 0;
	color: #b9b7b1;
	font-size: 13px;
	line-height: 1.7;
}

.lc-footer-brand > span {
	color: #87857f;
	font-size: 9px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.lc-footer-grid > div:not(.lc-footer-brand) {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 11px;
	color: #aaa8a2;
	font-size: 12px;
}

.lc-footer-grid > div strong {
	margin-bottom: 7px;
	color: #fff;
	font-size: 10px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

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

.lc-footer-grid li {
	margin: 0 0 11px;
}

.lc-footer-bottom {
	display: flex;
	justify-content: space-between;
	padding-top: 18px;
	padding-bottom: 22px;
	border-top: 1px solid #373734;
	color: #77756f;
	font-size: 9px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.lc-shop-hero {
	padding: 92px 0 84px;
	background: var(--lc-soft);
}

.lc-shop-hero h1 {
	max-width: 1000px;
	margin: 18px 0 20px;
	font-size: clamp(52px, 6vw, 82px);
	font-weight: 560;
	letter-spacing: -0.06em;
	line-height: 0.98;
}

.lc-shop-hero h1 em {
	display: block;
	color: var(--lc-wood-dark);
	font-family: Georgia, serif;
	font-weight: 400;
}

.lc-shop-hero p,
.lc-shop-hero .term-description {
	max-width: 580px;
	margin: 0;
	color: var(--lc-muted);
	font-size: 16px;
}

.lc-shop-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 74px;
	border-bottom: 1px solid var(--lc-line);
	color: var(--lc-muted);
	font-size: 11px;
}

.lc-shop-toolbar .woocommerce-result-count,
.lc-shop-toolbar .woocommerce-ordering {
	float: none;
	margin: 0;
}

.lc-shop-toolbar select {
	min-width: 160px;
	padding: 8px 28px 8px 8px;
	background: #fff;
	border: 0;
	border-bottom: 1px solid var(--lc-ink);
	border-radius: 0;
	box-shadow: none;
	outline: 0;
	font-weight: 700;
}

.lc-mobile-filter-toggle {
	display: none;
}

.lc-shop-layout {
	display: grid;
	grid-template-columns: 210px 1fr;
	gap: 55px;
	padding-top: 44px;
	padding-bottom: 120px;
}

.lc-product-filters {
	font-size: 12px;
}

.lc-filter-head {
	display: flex;
	justify-content: space-between;
	padding-bottom: 18px;
}

.lc-filter-head button {
	display: none;
	padding: 0;
	background: transparent;
	border: 0;
	border-bottom: 1px solid #999;
	border-radius: 0;
	color: var(--lc-muted);
	font-size: 10px;
}

.lc-product-filters section {
	padding: 21px 0;
	border-top: 1px solid var(--lc-line);
}

.lc-product-filters h2 {
	margin: 0 0 12px;
	font-size: 12px;
	font-weight: 800;
}

.lc-product-filters ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.lc-product-filters li {
	margin: 10px 0;
	color: var(--lc-muted);
}

.lc-product-filters .current-cat > a {
	color: var(--lc-ink);
	font-weight: 800;
}

.lc-product-filters p {
	margin: 0;
	color: var(--lc-muted);
	font-size: 10px;
}

.lc-static-filter-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 6px;
}

.lc-static-filter-grid span {
	display: grid;
	height: 34px;
	place-items: center;
	border: 1px solid var(--lc-line);
	font-size: 10px;
}

.lc-shop-results > .woocommerce-notices-wrapper,
.lc-shop-results > .woocommerce-result-count,
.lc-shop-results > .woocommerce-ordering {
	display: none;
}

.lc-product-breadcrumbs {
	padding-top: 24px;
	padding-bottom: 24px;
}

.lc-product-breadcrumbs .woocommerce-breadcrumb {
	margin: 0;
	color: var(--lc-muted);
	font-size: 10px;
}

.lc-single-product {
	display: grid;
	grid-template-columns: 1.13fr 0.87fr;
	align-items: start;
	gap: clamp(48px, 7vw, 100px);
	padding-bottom: 110px;
}

.lc-single-product::before,
.lc-single-product::after {
	display: none !important;
	content: none !important;
}

.lc-product-gallery {
	position: sticky;
	top: 112px;
}

.lc-product-gallery .woocommerce-product-gallery {
	float: none !important;
	width: 100% !important;
	margin: 0 !important;
}

.lc-product-gallery .woocommerce-product-gallery__wrapper {
	margin: 0;
}

.lc-product-gallery .woocommerce-product-gallery__image {
	overflow: hidden;
	background: var(--lc-soft);
}

.lc-product-gallery .woocommerce-product-gallery__image img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
}

.lc-product-gallery .flex-control-thumbs {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 8px;
	margin: 9px 0 0 !important;
	padding: 0;
}

.lc-product-gallery .flex-control-thumbs li {
	float: none !important;
	width: 100% !important;
	margin: 0 !important;
}

.lc-product-gallery .flex-control-thumbs img {
	width: 100%;
	aspect-ratio: 1;
	border: 1px solid transparent;
	object-fit: cover;
}

.lc-product-gallery .flex-active {
	border-color: var(--lc-ink) !important;
}

.lc-single-product .summary {
	float: none !important;
	width: 100% !important;
	margin: 0 !important;
	padding-top: 12px;
}

.lc-single-product .product_title {
	margin: 13px 0 15px;
	font-size: clamp(36px, 4.2vw, 58px);
	font-weight: 560;
	letter-spacing: -0.05em;
	line-height: 1.05;
}

.lc-single-product .woocommerce-product-details__short-description {
	color: var(--lc-muted);
	line-height: 1.7;
}

.lc-single-product .price {
	margin: 22px 0 0 !important;
	color: var(--lc-ink) !important;
	font-size: 25px !important;
	font-weight: 800 !important;
}

.lc-single-product form.cart {
	margin: 28px 0 0 !important;
	padding: 0 !important;
}

.lc-single-product table.variations {
	margin: 0;
}

.lc-single-product table.variations,
.lc-single-product table.variations tbody,
.lc-single-product table.variations tr,
.lc-single-product table.variations th,
.lc-single-product table.variations td {
	display: block;
	width: 100%;
	padding: 0;
	background: transparent;
	border: 0;
}

.lc-single-product table.variations tr {
	margin-top: 25px;
}

.lc-single-product table.variations label {
	display: block;
	margin-bottom: 11px;
	font-size: 12px;
	font-weight: 850;
}

.lc-single-product table.variations select {
	width: 100%;
	padding: 12px;
	border: 1px solid var(--lc-line);
	border-radius: 0;
	background: #fff;
}

.lc-single-product table.variations select.lc-enhanced-select {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
}

.lc-option-buttons {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	gap: 7px;
}

.lc-option-buttons[data-lc-pack-options] {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lc-option-button {
	min-height: 45px;
	padding: 8px;
	background: #fff;
	border: 1px solid var(--lc-line);
	border-radius: 0;
	box-shadow: none;
	font-size: 11px;
	font-weight: 700;
}

.lc-option-buttons[data-lc-pack-options] .lc-option-button {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 55px;
	padding: 10px 14px;
	text-align: left;
}

.lc-option-button.is-selected {
	background: var(--lc-ink);
	border-color: var(--lc-ink);
	color: #fff;
}

.lc-single-product .reset_variations {
	display: inline-block;
	margin-top: 8px;
	color: var(--lc-muted);
	font-size: 10px;
}

.lc-single-product .single_variation_wrap {
	margin-top: 22px;
}

.lc-single-product .woocommerce-variation-price {
	margin-bottom: 12px;
}

.lc-single-product .quantity .qty {
	width: 64px;
	height: 55px;
	border: 1px solid var(--lc-line);
	border-radius: 0;
	box-shadow: none;
}

.lc-single-product .single_add_to_cart_button {
	min-height: 55px;
	padding: 0 26px;
	background: var(--lc-ink);
	border-radius: 0;
	color: #fff;
	font-size: 12px;
	font-weight: 800;
}

.lc-delivery-notes {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-top: 22px;
	padding: 22px 0;
	border-bottom: 1px solid var(--lc-line);
}

.lc-delivery-notes div + div {
	padding-left: 16px;
	border-left: 1px solid var(--lc-line);
}

.lc-delivery-notes strong,
.lc-delivery-notes span {
	display: block;
}

.lc-delivery-notes strong {
	margin-bottom: 4px;
	font-size: 10px;
}

.lc-delivery-notes span {
	color: var(--lc-muted);
	font-size: 9px;
	line-height: 1.5;
}

.lc-variation-value {
	display: flex;
	justify-content: space-between;
	min-height: 42px;
	align-items: center;
	color: var(--lc-muted);
	font-size: 10px;
}

.lc-variation-value strong {
	color: var(--lc-wood-dark);
}

.lc-maker-banner {
	background: var(--lc-soft);
}

.lc-maker-banner .lc-container {
	position: relative;
	display: flex;
	min-height: 520px;
	align-items: center;
	justify-content: flex-end;
	overflow: hidden;
}

.lc-maker-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.lc-maker-banner .lc-container::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, transparent 35%, rgba(18, 17, 15, 0.72));
	content: "";
}

.lc-maker-banner .lc-container > div {
	position: relative;
	z-index: 1;
	width: 48%;
	padding: 40px;
	color: #fff;
}

.lc-maker-banner .lc-eyebrow {
	color: #e4c7a5;
}

.lc-maker-banner h2 {
	margin: 15px 0 0;
	font-size: clamp(38px, 5vw, 64px);
	font-weight: 540;
	letter-spacing: -0.055em;
	line-height: 1.02;
}

.lc-product-extras {
	padding-top: 90px;
	padding-bottom: 100px;
}

.lc-product-extras .woocommerce-tabs ul.tabs {
	display: flex;
	gap: 25px;
	margin: 0 0 30px;
	padding: 0;
	border-bottom: 1px solid var(--lc-line);
}

.lc-product-extras .woocommerce-tabs ul.tabs li {
	margin: 0;
	padding: 0 0 12px;
	background: transparent;
	border: 0;
}

.lc-product-extras .woocommerce-tabs ul.tabs li::after {
	display: none;
}

.lc-product-extras .woocommerce-tabs ul.tabs a {
	padding: 0;
	font-size: 11px;
	font-weight: 800;
}

.lc-product-extras .panel {
	max-width: 800px;
	color: var(--lc-muted);
}

.lc-product-extras .related,
.lc-product-extras .upsells {
	margin-top: 80px;
}

.lc-product-extras .related > h2,
.lc-product-extras .upsells > h2 {
	margin-bottom: 35px;
	font-size: 38px;
	font-weight: 560;
	letter-spacing: -0.04em;
	text-align: left;
}

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

.lc-mobile-buy-bar {
	display: none;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.woocommerce-noreviews,
p.no-comments {
	margin: 0;
	padding: 16px 24px;
	background: var(--lc-soft);
	border-left: 3px solid var(--lc-wood);
	color: var(--lc-ink);
}

.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before {
	display: none;
}

.woocommerce-cart .entry-header,
.woocommerce-checkout .entry-header,
.woocommerce-account .entry-header,
.page .entry-header {
	width: min(calc(100% - 64px), var(--lc-max));
	margin: 65px auto 35px;
}

.woocommerce-cart .entry-content,
.woocommerce-checkout .entry-content,
.woocommerce-account .entry-content,
.page .entry-content {
	width: min(calc(100% - 64px), var(--lc-max));
	margin: 0 auto 100px;
}

.woocommerce-cart table,
.woocommerce-checkout table {
	border: 1px solid var(--lc-line);
}

.woocommerce-cart .button,
.woocommerce-checkout .button,
.woocommerce-account .button {
	background: var(--lc-ink);
	border-radius: 0;
	color: #fff;
}

@media (max-width: 1050px) {
	.lc-header-main {
		grid-template-columns: auto 1fr auto;
		height: 82px;
	}

	.lc-brand img,
	.custom-logo {
		height: 60px;
		max-height: 64px;
	}

	.lc-menu-button {
		display: inline-flex;
	}

	.lc-brand,
	.custom-logo-link {
		justify-self: center;
	}

	.lc-primary-nav,
	.lc-account-link,
	.lc-action-label {
		display: none !important;
	}

	.lc-hero-grid {
		grid-template-columns: 0.9fr 1.1fr;
		gap: 45px;
	}

	.lc-hero-facts {
		flex-wrap: wrap;
	}

	ul.products.lc-product-grid,
	.lc-product-extras ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.lc-shop-results ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 760px) {
	.lc-container {
		width: min(calc(100% - 34px), var(--lc-max));
	}

	.admin-bar .lc-site-header {
		top: 46px;
	}

	.lc-announcement {
		gap: 8px;
		font-size: 9px;
	}

	.lc-announcement span:last-child {
		display: none;
	}

	.lc-header-main {
		height: 72px;
	}

	.lc-brand img,
	.custom-logo {
		width: auto;
		height: 52px;
		max-height: 54px;
	}

	.lc-header-actions {
		gap: 9px;
	}

	.lc-hero {
		padding: 46px 0 42px;
	}

	.lc-hero-grid {
		grid-template-columns: 1fr;
		gap: 50px;
	}

	.lc-hero-copy h1 {
		margin: 14px 0 20px;
		font-size: 58px;
	}

	.lc-hero-copy > p {
		font-size: 14px;
	}

	.lc-hero-actions {
		gap: 18px;
		margin-top: 27px;
	}

	.lc-hero-actions .lc-button {
		flex: 1;
		gap: 14px;
		padding-inline: 16px;
	}

	.lc-hero-facts {
		margin-top: 32px;
	}

	.lc-hero-image {
		aspect-ratio: 0.94;
	}

	.lc-hero-product {
		right: 12px;
		bottom: -24px;
		left: 12px;
		width: auto;
		grid-template-columns: 78px 1fr;
	}

	.lc-hero-product img {
		width: 78px;
		height: 78px;
	}

	.lc-trust-strip .lc-container {
		grid-template-columns: repeat(2, 1fr);
		padding: 15px 0;
	}

	.lc-trust-strip .lc-container > div {
		padding: 13px 12px;
		border-bottom: 1px solid var(--lc-line);
	}

	.lc-trust-strip .lc-container > div:nth-child(2) {
		border-right: 0;
	}

	.lc-trust-strip .lc-container > div:nth-child(n + 3) {
		border-bottom: 0;
	}

	.lc-section {
		padding-top: 75px;
		padding-bottom: 75px;
	}

	.lc-section-heading {
		align-items: flex-end;
		margin-bottom: 26px;
	}

	.lc-section-heading h2 {
		font-size: 34px;
	}

	.lc-category-grid {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 420px 235px;
		gap: 10px;
	}

	.lc-category-large {
		grid-column: span 2;
		grid-row: auto;
	}

	.lc-category-card {
		padding: 18px;
	}

	.lc-category-card strong,
	.lc-category-large strong {
		font-size: 22px;
	}

	ul.products.lc-product-grid,
	.lc-shop-results ul.products,
	.lc-product-extras ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 24px 10px;
	}

	.lc-product-copy {
		align-items: flex-start;
	}

	.lc-product-copy h2 {
		font-size: 12px !important;
	}

	.lc-product-copy .button {
		width: 30px;
		height: 30px;
	}

	.lc-story {
		grid-template-columns: 1fr;
		gap: 50px;
		padding-top: 80px;
		padding-bottom: 80px;
	}

	.lc-story-image > span {
		right: 10px;
		bottom: 10px;
	}

	.lc-story-copy h2 {
		font-size: 43px;
	}

	.lc-inspiration {
		padding: 75px 0;
	}

	.lc-inspiration-grid {
		grid-template-columns: 1fr 1fr;
	}

	.lc-inspiration-grid > div:first-child {
		grid-column: span 2;
		padding: 0 0 30px;
	}

	.lc-inspiration h2 {
		font-size: 44px;
	}

	.lc-newsletter-inner {
		grid-template-columns: 1fr;
		gap: 30px;
		padding-top: 55px;
		padding-bottom: 55px;
	}

	.lc-newsletter h2 {
		font-size: 30px;
	}

	.lc-newsletter-slot {
		text-align: left;
	}

	.lc-footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 45px 30px;
		padding-top: 60px;
	}

	.lc-footer-brand {
		grid-column: span 2;
	}

	.lc-footer-grid > div:last-child {
		display: none;
	}

	.lc-footer-bottom {
		flex-wrap: wrap;
		gap: 8px;
	}

	.lc-shop-hero {
		padding: 58px 0 53px;
	}

	.lc-shop-hero h1 {
		font-size: 49px;
	}

	.lc-shop-toolbar {
		height: 66px;
	}

	.lc-mobile-filter-toggle {
		display: inline-flex;
		gap: 15px;
		padding: 0;
		background: transparent;
		border: 0;
		border-radius: 0;
		box-shadow: none;
		font-weight: 800;
	}

	.lc-shop-toolbar .woocommerce-result-count {
		display: none;
	}

	.lc-shop-toolbar select {
		min-width: 125px;
	}

	.lc-shop-layout {
		display: block;
		padding-top: 27px;
		padding-bottom: 75px;
	}

	.lc-product-filters {
		position: fixed;
		z-index: 110;
		top: 0;
		bottom: 0;
		left: 0;
		width: min(88vw, 400px);
		padding: 25px;
		overflow-y: auto;
		background: #fff;
		box-shadow: 0 0 60px rgba(0, 0, 0, 0.12);
		transform: translateX(-105%);
		transition: transform 280ms ease;
	}

	.lc-product-filters.is-open {
		transform: translateX(0);
	}

	.lc-filter-head button {
		display: inline-block;
	}

	.lc-product-breadcrumbs {
		padding-top: 18px;
		padding-bottom: 18px;
	}

	.lc-single-product {
		grid-template-columns: 1fr;
		gap: 35px;
		padding-bottom: 75px;
	}

	.lc-product-gallery {
		position: static;
	}

	.lc-product-gallery .flex-control-thumbs {
		overflow-x: auto;
	}

	.lc-single-product .product_title {
		font-size: 40px;
	}

	.lc-option-buttons {
		grid-template-columns: repeat(7, minmax(0, 1fr));
		gap: 4px;
	}

	.lc-option-buttons[data-lc-pack-options] {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.lc-option-buttons[data-lc-pack-options] .lc-option-button {
		padding: 9px;
		font-size: 9px;
	}

	.lc-maker-banner .lc-container {
		width: 100%;
		min-height: 500px;
		align-items: flex-end;
	}

	.lc-maker-banner .lc-container::after {
		background: linear-gradient(0deg, rgba(18, 17, 15, 0.78), transparent 70%);
	}

	.lc-maker-banner .lc-container > div {
		width: 100%;
		padding: 34px 18px;
	}

	.lc-product-extras {
		padding-top: 70px;
	}

	.lc-mobile-buy-bar {
		position: fixed;
		z-index: 75;
		right: 0;
		bottom: 0;
		left: 0;
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 14px;
		padding: 11px 17px;
		background: #fff;
		border-top: 1px solid var(--lc-line);
		box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.08);
	}

	.lc-mobile-buy-bar[hidden] {
		display: none;
	}

	.lc-mobile-buy-bar span,
	.lc-mobile-buy-bar strong {
		display: block;
	}

	.lc-mobile-buy-bar span {
		color: var(--lc-muted);
		font-size: 8px;
	}

	.lc-mobile-buy-bar strong {
		font-size: 13px;
	}

	.lc-mobile-buy-bar button {
		min-width: 130px;
		padding: 13px 15px;
		background: var(--lc-ink);
		border: 0;
		border-radius: 0;
		color: #fff;
		font-size: 11px;
		font-weight: 800;
	}
}

@media (prefers-reduced-motion: reduce) {
	.lifycraft-storefront *,
	.lifycraft-storefront *::before,
	.lifycraft-storefront *::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}
