:root {
	--wf-ivory: #f6f2ea;
	--wf-paper: #fffdf8;
	--wf-olive: #697258;
	--wf-olive-dark: #394230;
	--wf-sage: #a8ae96;
	--wf-gold: #b39a63;
	--wf-ink: #25261f;
	--wf-muted: #6f7066;
	--wf-line: rgba(57, 66, 48, 0.18);
	--wf-shadow: 0 22px 65px rgba(42, 46, 35, 0.12);
	--wf-container: 1440px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	background: var(--wf-ivory);
	color: var(--wf-ink);
	font-family: "Helvetica Neue", Arial, sans-serif;
	margin: 0;
}

body.wf-no-scroll {
	overflow: hidden;
}

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

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

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

button,
a {
	-webkit-tap-highlight-color: transparent;
}

.screen-reader-text,
.wf-skip-link {
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	overflow: hidden;
	position: absolute !important;
	white-space: nowrap;
	width: 1px;
}

.wf-skip-link:focus {
	background: var(--wf-paper);
	clip: auto !important;
	clip-path: none;
	color: var(--wf-ink);
	height: auto;
	left: 15px;
	padding: 12px 18px;
	top: 15px;
	width: auto;
	z-index: 9999;
}

.wf-container {
	margin-left: auto;
	margin-right: auto;
	max-width: var(--wf-container);
	padding-left: 4.5vw;
	padding-right: 4.5vw;
	width: 100%;
}

.wf-narrow {
	max-width: 980px;
}

.wf-announcement {
	align-items: center;
	background: var(--wf-olive-dark);
	color: #f7f3e8;
	display: flex;
	font-size: 11px;
	justify-content: space-between;
	letter-spacing: 0.11em;
	min-height: 36px;
	padding: 0 4.5vw;
	text-transform: uppercase;
}

.wf-announcement p {
	margin: 0;
}

.wf-announcement a {
	align-items: center;
	display: inline-flex;
	gap: 8px;
}

.wf-site-header {
	background: rgba(246, 242, 234, 0.96);
	border-bottom: 1px solid var(--wf-line);
	position: sticky;
	top: 0;
	z-index: 60;
	backdrop-filter: blur(14px);
}

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

.wf-header-inner {
	align-items: center;
	display: grid;
	grid-template-columns: minmax(170px, 1fr) auto minmax(170px, 1fr);
	margin: auto;
	max-width: var(--wf-container);
	min-height: 88px;
	padding: 0 4.5vw;
}

.wf-brand {
	display: flex;
	flex-direction: column;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 24px;
	font-weight: 400;
	letter-spacing: -0.045em;
	line-height: 0.84;
	width: max-content;
}

.wf-brand > span:nth-child(2) {
	margin-left: 25px;
}

.wf-brand small {
	color: var(--wf-gold);
	font-family: Arial, sans-serif;
	font-size: 7px;
	letter-spacing: 0.3em;
	margin: 10px 0 0 1px;
}

.wf-brand .custom-logo-link {
	display: block;
}

.wf-brand .custom-logo {
	height: auto;
	max-height: 62px;
	max-width: 180px;
	width: auto;
}

.wf-desktop-nav .wf-menu,
.wf-desktop-nav .menu {
	align-items: center;
	display: flex;
	gap: clamp(19px, 2.3vw, 38px);
	list-style: none;
	margin: 0;
	padding: 0;
}

.wf-desktop-nav li {
	position: relative;
}

.wf-desktop-nav a {
	display: block;
	font-size: 11px;
	letter-spacing: 0.09em;
	padding: 36px 0 33px;
	position: relative;
	text-transform: uppercase;
	white-space: nowrap;
}

.wf-desktop-nav > ul > li > a::after {
	background: var(--wf-olive-dark);
	bottom: 27px;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 180ms ease;
	width: 100%;
}

.wf-desktop-nav > ul > li:hover > a::after,
.wf-desktop-nav .current-menu-item > a::after,
.wf-desktop-nav .current_page_item > a::after {
	transform: scaleX(1);
}

.wf-desktop-nav .sub-menu {
	background: var(--wf-paper);
	box-shadow: var(--wf-shadow);
	display: none;
	left: -22px;
	list-style: none;
	margin: 0;
	min-width: 220px;
	padding: 13px 22px;
	position: absolute;
	top: 76px;
}

.wf-desktop-nav .sub-menu a {
	border-bottom: 1px solid var(--wf-line);
	padding: 13px 0;
}

.wf-desktop-nav li:hover > .sub-menu,
.wf-desktop-nav li:focus-within > .sub-menu {
	display: block;
}

.wf-header-actions {
	display: flex;
	gap: 4px;
	justify-content: flex-end;
}

.wf-icon-button {
	align-items: center;
	background: transparent;
	border: 0;
	color: var(--wf-ink);
	cursor: pointer;
	display: inline-flex;
	height: 42px;
	justify-content: center;
	position: relative;
	width: 42px;
}

.wf-icon-button:hover,
.wf-icon-button:focus-visible {
	color: var(--wf-gold);
}

.wf-icon {
	display: inline-block;
	height: 20px;
	position: relative;
	width: 20px;
}

.wf-icon-search::before {
	border: 1.7px solid currentColor;
	border-radius: 50%;
	content: "";
	height: 11px;
	left: 1px;
	position: absolute;
	top: 1px;
	width: 11px;
}

.wf-icon-search::after {
	background: currentColor;
	content: "";
	height: 1.7px;
	position: absolute;
	right: 2px;
	top: 13px;
	transform: rotate(45deg);
	width: 7px;
}

.wf-icon-user::before {
	border: 1.6px solid currentColor;
	border-radius: 50%;
	content: "";
	height: 7px;
	left: 6px;
	position: absolute;
	top: 1px;
	width: 7px;
}

.wf-icon-user::after {
	border: 1.6px solid currentColor;
	border-bottom: 0;
	border-radius: 10px 10px 0 0;
	bottom: 1px;
	content: "";
	height: 8px;
	left: 3px;
	position: absolute;
	width: 13px;
}

.wf-icon-bag::before {
	border: 1.6px solid currentColor;
	bottom: 1px;
	content: "";
	height: 13px;
	left: 3px;
	position: absolute;
	width: 14px;
}

.wf-icon-bag::after {
	border: 1.6px solid currentColor;
	border-bottom: 0;
	border-radius: 6px 6px 0 0;
	content: "";
	height: 5px;
	left: 7px;
	position: absolute;
	top: 0;
	width: 6px;
}

.wf-cart-count {
	align-items: center;
	background: var(--wf-olive);
	border-radius: 50%;
	color: #fff;
	display: flex;
	font-size: 8px;
	height: 16px;
	justify-content: center;
	position: absolute;
	right: 0;
	top: 1px;
	width: 16px;
}

.wf-menu-toggle {
	display: none;
}

.wf-icon-menu::before,
.wf-icon-menu::after {
	background: currentColor;
	content: "";
	height: 1px;
	left: 1px;
	position: absolute;
	width: 18px;
}

.wf-icon-menu::before {
	top: 6px;
}

.wf-icon-menu::after {
	top: 13px;
}

.wf-search-panel {
	background: var(--wf-paper);
	border-top: 1px solid var(--wf-line);
	box-shadow: 0 18px 35px rgba(41, 46, 35, 0.08);
	padding: 22px 4.5vw;
}

.wf-search-panel[hidden] {
	display: none;
}

.wf-search-panel form {
	align-items: center;
	border-bottom: 1px solid var(--wf-olive-dark);
	display: flex;
	gap: 14px;
	margin: auto;
	max-width: 780px;
}

.wf-search-panel input[type="search"] {
	background: transparent;
	border: 0;
	color: var(--wf-ink);
	flex: 1;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 20px;
	outline: 0;
	padding: 15px 4px;
}

.wf-search-close {
	background: transparent;
	border: 0;
	cursor: pointer;
	font-size: 26px;
	height: 42px;
	width: 42px;
}

.wf-mobile-drawer {
	inset: 0;
	pointer-events: none;
	position: fixed;
	visibility: hidden;
	z-index: 100;
}

.wf-mobile-drawer.is-open {
	pointer-events: auto;
	visibility: visible;
}

.wf-drawer-backdrop {
	background: rgba(26, 29, 22, 0.5);
	border: 0;
	inset: 0;
	opacity: 0;
	position: absolute;
	transition: opacity 220ms ease;
	width: 100%;
}

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

.wf-mobile-drawer-inner {
	background: var(--wf-paper);
	bottom: 0;
	display: flex;
	flex-direction: column;
	left: 0;
	max-width: 420px;
	padding: 28px;
	position: absolute;
	top: 0;
	transform: translateX(-100%);
	transition: transform 260ms ease;
	width: 88vw;
}

.wf-mobile-drawer.is-open .wf-mobile-drawer-inner {
	transform: translateX(0);
}

.wf-mobile-drawer-header {
	align-items: center;
	border-bottom: 1px solid var(--wf-line);
	display: flex;
	font-size: 9px;
	justify-content: space-between;
	letter-spacing: 0.16em;
	padding-bottom: 20px;
	text-transform: uppercase;
}

.wf-mobile-close {
	background: transparent;
	border: 0;
	cursor: pointer;
	font-size: 28px;
}

.wf-mobile-drawer nav {
	display: flex;
	flex: 1;
	flex-direction: column;
	justify-content: center;
}

.wf-mobile-nav,
.wf-mobile-drawer .wf-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.wf-mobile-nav a,
.wf-mobile-drawer .wf-menu a {
	border-bottom: 1px solid var(--wf-line);
	display: block;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 31px;
	padding: 15px 0;
}

.wf-mobile-phone {
	font-size: 12px;
	letter-spacing: 0.08em;
}

.wf-eyebrow {
	color: var(--wf-olive);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.21em;
	margin: 0 0 22px;
	text-transform: uppercase;
}

.wf-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.wp-block-button__link,
.wc-block-components-button {
	align-items: center;
	background: var(--wf-olive-dark);
	border: 1px solid var(--wf-olive-dark);
	border-radius: 0 !important;
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	font-size: 10px;
	font-weight: 500;
	justify-content: center;
	letter-spacing: 0.12em;
	line-height: 1.2;
	min-height: 50px;
	padding: 0 27px;
	text-transform: uppercase;
	transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.wf-button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.wp-block-button__link:hover,
.wc-block-components-button:hover {
	background: var(--wf-gold);
	border-color: var(--wf-gold);
	color: #fff;
}

.wf-button-secondary {
	background: transparent;
	color: var(--wf-olive-dark);
}

.wf-button-secondary:hover {
	background: var(--wf-olive-dark);
	border-color: var(--wf-olive-dark);
	color: #fff;
}

.wf-text-link {
	border-bottom: 1px solid currentColor;
	display: inline-block;
	font-size: 10px;
	letter-spacing: 0.1em;
	padding-bottom: 5px;
	text-transform: uppercase;
}

.wf-hero {
	display: grid;
	grid-template-columns: 45% 55%;
	min-height: 670px;
	overflow: hidden;
}

.wf-hero-copy {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 78px clamp(38px, 6vw, 104px);
	position: relative;
}

.wf-hero-copy::before {
	border: 1px solid rgba(179, 154, 99, 0.24);
	border-radius: 50%;
	content: "";
	height: 360px;
	left: -220px;
	position: absolute;
	top: 60px;
	width: 360px;
}

.wf-hero h1 {
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(50px, 4.6vw, 75px);
	font-weight: 400;
	letter-spacing: -0.055em;
	line-height: 1.02;
	margin: 0;
	max-width: 700px;
}

.wf-hero h1 em {
	color: var(--wf-olive);
	display: block;
	font-weight: 400;
	margin-top: 7px;
}

.wf-hero-intro {
	color: var(--wf-muted);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 17px;
	line-height: 1.75;
	margin: 31px 0 34px;
	max-width: 510px;
}

.wf-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 13px;
}

.wf-hero-note {
	align-items: center;
	color: var(--wf-muted);
	display: flex;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 12px;
	font-style: italic;
	gap: 12px;
	margin-top: 42px;
}

.wf-hero-note span {
	background: var(--wf-gold);
	height: 1px;
	width: 38px;
}

.wf-hero-visual {
	min-height: 670px;
	overflow: hidden;
	position: relative;
}

.wf-hero-visual::after {
	background: linear-gradient(90deg, rgba(57, 66, 48, 0.13), transparent 28%);
	content: "";
	inset: 0;
	pointer-events: none;
	position: absolute;
}

.wf-hero-visual > img {
	height: 100%;
	object-fit: cover;
	position: absolute;
	width: 100%;
}

.wf-hero-card {
	background: rgba(255, 253, 248, 0.94);
	bottom: 38px;
	box-shadow: var(--wf-shadow);
	min-width: 235px;
	padding: 23px 28px;
	position: absolute;
	right: 38px;
	z-index: 2;
}

.wf-hero-card p {
	color: var(--wf-gold);
	font-size: 8px;
	letter-spacing: 0.17em;
	margin: 0 0 8px;
	text-transform: uppercase;
}

.wf-hero-card strong {
	display: block;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 21px;
	font-weight: 400;
	margin-bottom: 15px;
}

.wf-hero-card a {
	border-bottom: 1px solid var(--wf-olive-dark);
	font-size: 9px;
	letter-spacing: 0.08em;
	padding-bottom: 3px;
	text-transform: uppercase;
}

.wf-trust-strip {
	background: var(--wf-olive-dark);
	color: var(--wf-ivory);
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	padding: 0 4.5vw;
}

.wf-trust-strip > div {
	align-items: center;
	border-right: 1px solid rgba(255, 255, 255, 0.14);
	display: flex;
	gap: 18px;
	justify-content: center;
	min-height: 112px;
	padding: 20px 30px;
}

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

.wf-trust-icon {
	color: #ccb987;
	font-size: 25px;
	min-width: 26px;
}

.wf-trust-strip > div > span:last-child {
	color: rgba(255, 255, 255, 0.66);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 12px;
	line-height: 1.55;
}

.wf-trust-strip strong {
	color: #fff;
	display: block;
	font-family: "Helvetica Neue", Arial, sans-serif;
	font-size: 9px;
	letter-spacing: 0.12em;
	margin-bottom: 3px;
	text-transform: uppercase;
}

.wf-section {
	padding: 100px 0 115px;
}

.wf-category-section {
	background: var(--wf-paper);
}

.wf-section-heading,
.wf-products-heading {
	align-items: flex-end;
	display: flex;
	justify-content: space-between;
	margin-bottom: 35px;
}

.wf-section-heading .wf-eyebrow,
.wf-products-heading .wf-eyebrow {
	margin-bottom: 11px;
}

.wf-section-heading h2,
.wf-products-heading h2,
.wf-story-copy h2,
.wf-contact-section h2,
.wf-page-header h1 {
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(40px, 4vw, 60px);
	font-weight: 400;
	letter-spacing: -0.05em;
	line-height: 1.06;
	margin: 0;
}

.wf-category-grid {
	display: grid;
	gap: 22px;
	grid-template-columns: repeat(3, 1fr);
}

.wf-category-card {
	display: block;
	min-height: 445px;
	overflow: hidden;
	position: relative;
}

.wf-category-card::after {
	background: linear-gradient(0deg, rgba(31, 34, 25, 0.76), rgba(31, 34, 25, 0.02) 62%);
	content: "";
	inset: 0;
	position: absolute;
}

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

.wf-category-card-2 img {
	object-position: 68% center;
}

.wf-category-card-3 img {
	object-position: 34% center;
}

.wf-category-card:hover img {
	transform: scale(1.035);
}

.wf-category-card > div {
	bottom: 29px;
	color: #fff;
	left: 29px;
	position: absolute;
	right: 29px;
	z-index: 2;
}

.wf-category-card p {
	font-size: 8px;
	letter-spacing: 0.16em;
	margin: 0 0 8px;
	text-transform: uppercase;
}

.wf-category-card h3 {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 27px;
	font-weight: 400;
	margin: 0 0 18px;
}

.wf-category-card span {
	border-bottom: 1px solid rgba(255, 255, 255, 0.8);
	font-size: 9px;
	letter-spacing: 0.09em;
	padding-bottom: 4px;
	text-transform: uppercase;
}

.wf-products-section {
	background: var(--wf-ivory);
}

.wf-products-heading {
	display: grid;
	gap: 50px;
	grid-template-columns: 1fr minmax(300px, 450px);
}

.wf-products-heading > p {
	color: var(--wf-muted);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 15px;
	line-height: 1.75;
	margin: 0;
}

.wf-product-grid {
	display: grid;
	gap: 42px 19px;
	grid-template-columns: repeat(4, 1fr);
}

.wf-product-image {
	aspect-ratio: 0.82;
	background: #eae5dc;
	overflow: hidden;
	position: relative;
}

.wf-product-image > a:first-child {
	display: block;
	height: 100%;
}

.wf-product-image img {
	height: 100%;
	object-fit: cover;
	transition: transform 500ms ease;
	width: 100%;
}

.wf-product-card:hover .wf-product-image img {
	transform: scale(1.035);
}

.wf-product-badge {
	background: var(--wf-paper);
	color: var(--wf-olive-dark);
	font-size: 8px;
	left: 13px;
	letter-spacing: 0.13em;
	padding: 8px 11px 7px;
	position: absolute;
	text-transform: uppercase;
	top: 13px;
}

.wf-quick-add {
	align-items: center;
	background: rgba(57, 66, 48, 0.96) !important;
	border: 0 !important;
	bottom: 0;
	color: #fff !important;
	display: flex;
	font-size: 9px !important;
	font-weight: 600;
	justify-content: center;
	letter-spacing: 0.12em;
	left: 0;
	line-height: 1.2;
	min-height: 47px !important;
	opacity: 0;
	padding: 0 14px !important;
	position: absolute;
	right: 0;
	text-align: center;
	text-transform: uppercase;
	transform: translateY(100%);
	transition: opacity 180ms ease, transform 180ms ease;
}

.wf-product-card:hover .wf-quick-add,
.wf-quick-add:focus {
	opacity: 1;
	transform: translateY(0);
}

.wf-product-card > p {
	color: var(--wf-gold);
	font-size: 8px;
	letter-spacing: 0.13em;
	margin: 18px 0 8px;
	text-transform: uppercase;
}

.wf-product-card > p a {
	color: inherit;
}

.wf-product-info {
	align-items: flex-start;
	display: flex;
	gap: 10px;
	justify-content: space-between;
}

.wf-product-info h3 {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.3;
	margin: 0;
}

.wf-product-info strong {
	color: var(--wf-olive-dark);
	font-size: 12px;
	font-weight: 500;
	white-space: nowrap;
}

.wf-product-info del {
	color: #9c9d94;
	margin-right: 3px;
}

.wf-product-info ins {
	text-decoration: none;
}

.wf-empty-products {
	align-items: center;
	border: 1px solid var(--wf-line);
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 320px;
	padding: 45px;
	text-align: center;
}

.wf-empty-products h2,
.wf-empty-products h3 {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 28px;
	font-weight: 400;
	margin: 0 0 10px;
}

.wf-empty-products p {
	color: var(--wf-muted);
	margin: 0 0 24px;
}

.wf-story-section {
	background: var(--wf-paper);
	display: grid;
	grid-template-columns: 52% 48%;
	min-height: 700px;
}

.wf-story-image {
	margin: 72px 0 72px 4.5vw;
	min-height: 550px;
	overflow: hidden;
	position: relative;
}

.wf-story-image::after {
	border: 1px solid rgba(255, 255, 255, 0.68);
	content: "";
	inset: 22px;
	position: absolute;
}

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

.wf-story-copy {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 80px clamp(46px, 8vw, 140px);
}

.wf-story-copy h2 {
	margin-bottom: 31px;
}

.wf-story-copy > p:not(.wf-eyebrow) {
	color: var(--wf-muted);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 15px;
	line-height: 1.8;
	margin: 0 0 17px;
}

.wf-story-copy .wf-text-link {
	margin-top: 18px;
}

.wf-contact-section {
	background: var(--wf-olive);
	color: #fff;
	display: grid;
	gap: 80px;
	grid-template-columns: 1fr 1fr;
	padding: 98px 8vw;
}

.wf-contact-section .wf-eyebrow {
	color: #d4c59b;
}

.wf-contact-details {
	align-items: stretch;
	border-top: 1px solid rgba(255, 255, 255, 0.22);
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.wf-contact-details > * {
	align-items: center;
	border-bottom: 1px solid rgba(255, 255, 255, 0.22);
	display: grid;
	gap: 20px;
	grid-template-columns: 32px 1fr;
	min-height: 84px;
}

.wf-contact-symbol {
	color: #d4c59b;
	font-size: 21px;
}

.wf-contact-details span:last-child {
	color: rgba(255, 255, 255, 0.78);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 14px;
}

.wf-contact-details strong {
	color: #fff;
	display: block;
	font-family: "Helvetica Neue", Arial, sans-serif;
	font-size: 9px;
	letter-spacing: 0.13em;
	margin-bottom: 5px;
	text-transform: uppercase;
}

.wf-footer {
	background: #30372a;
	color: rgba(255, 255, 255, 0.7);
	padding: 72px 0 27px;
}

.wf-footer-main {
	display: grid;
	gap: 50px;
	grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
	padding-bottom: 62px;
}

.wf-footer-brand {
	color: #fff;
	font-size: 30px;
}

.wf-footer-main h2 {
	color: #fff;
	font-family: "Helvetica Neue", Arial, sans-serif;
	font-size: 9px;
	font-weight: 500;
	letter-spacing: 0.16em;
	margin: 0 0 21px;
	text-transform: uppercase;
}

.wf-footer-main > div {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	gap: 11px;
}

.wf-footer-main > div > a,
.wf-footer-main > div > p,
.wf-footer-menu a {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 13px;
	margin: 0;
}

.wf-footer-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.wf-footer-menu li {
	margin-bottom: 11px;
}

.wf-footer a:hover {
	color: #fff;
}

.wf-socials {
	display: flex;
	gap: 12px;
	margin-top: 12px;
}

.wf-socials a {
	border-bottom: 1px solid currentColor;
	font-size: 10px !important;
	letter-spacing: 0.08em;
	padding-bottom: 3px;
	text-transform: uppercase;
}

.wf-footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	display: flex;
	font-size: 9px;
	justify-content: space-between;
	letter-spacing: 0.07em;
	padding-top: 25px;
	text-transform: uppercase;
}

.wf-footer-bottom p {
	margin: 0;
}

.wf-content-main,
.wf-shop-main {
	min-height: 55vh;
	padding: 86px 0 112px;
}

.wf-page-header {
	margin-bottom: 48px;
	max-width: 850px;
}

.wf-page-header .wf-eyebrow {
	margin-bottom: 12px;
}

.wf-entry-content,
.wf-archive-description {
	color: var(--wf-muted);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 17px;
	line-height: 1.8;
}

.wf-entry-content h2,
.wf-entry-content h3 {
	color: var(--wf-ink);
	font-family: Georgia, "Times New Roman", serif;
	font-weight: 400;
}

.wf-entry-content a {
	border-bottom: 1px solid currentColor;
	color: var(--wf-olive);
}

.wf-single-image {
	margin-bottom: 38px;
}

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

.wf-post-card-image {
	aspect-ratio: 1.2;
	display: block;
	margin-bottom: 22px;
	overflow: hidden;
}

.wf-post-card-image img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.wf-post-card .wf-eyebrow {
	margin-bottom: 9px;
}

.wf-post-card h2 {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 26px;
	font-weight: 400;
	line-height: 1.2;
	margin: 0 0 12px;
}

.wf-post-excerpt {
	color: var(--wf-muted);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 14px;
	line-height: 1.7;
}

.wf-error-page {
	align-items: center;
	display: flex;
	flex-direction: column;
	min-height: 50vh;
	justify-content: center;
	text-align: center;
}

.wf-error-page h1 {
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(42px, 6vw, 72px);
	font-weight: 400;
	margin: 0 0 14px;
}

.wf-error-page > p:not(.wf-eyebrow) {
	color: var(--wf-muted);
	margin: 0 0 28px;
}

/* WooCommerce */
.woocommerce .woocommerce-breadcrumb {
	color: var(--wf-muted);
	font-size: 10px;
	letter-spacing: 0.08em;
	margin-bottom: 34px;
	text-transform: uppercase;
}

.woocommerce .woocommerce-breadcrumb a {
	color: var(--wf-olive);
}

.woocommerce-products-header__title,
.woocommerce div.product .product_title,
.cart_totals h2,
.woocommerce-billing-fields h3,
.woocommerce-additional-fields h3,
#order_review_heading,
.woocommerce-account h2 {
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(36px, 4vw, 58px);
	font-weight: 400;
	letter-spacing: -0.045em;
	line-height: 1.08;
}

.woocommerce .woocommerce-result-count {
	color: var(--wf-muted);
	font-size: 10px;
	letter-spacing: 0.08em;
	margin: 16px 0 26px;
	text-transform: uppercase;
}

.woocommerce .woocommerce-ordering select {
	background: transparent;
	border: 0;
	border-bottom: 1px solid var(--wf-line);
	border-radius: 0;
	color: var(--wf-ink);
	font-size: 11px;
	padding: 10px 32px 10px 8px;
}

.woocommerce ul.products {
	clear: both;
	display: grid;
	gap: 42px 20px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin: 28px 0 0;
}

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

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
	float: none;
	margin: 0;
	padding: 0;
	width: auto;
}

.woocommerce ul.products li.product a img {
	aspect-ratio: 0.82;
	background: #eae5dc;
	margin: 0 0 18px;
	object-fit: cover;
	transition: transform 350ms ease;
}

.woocommerce ul.products li.product:hover a img {
	transform: scale(1.02);
}

.woocommerce ul.products li.product .woocommerce-loop-category__title,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.3;
	padding: 0 0 8px;
}

.woocommerce ul.products li.product .price {
	color: var(--wf-olive-dark);
	font-size: 12px;
	font-weight: 500;
}

.woocommerce ul.products li.product .button {
	margin-top: 13px;
	min-height: 43px;
	padding: 0 17px;
	width: 100%;
}

.woocommerce span.onsale {
	background: var(--wf-paper);
	border-radius: 0;
	color: var(--wf-olive-dark);
	font-size: 8px;
	font-weight: 500;
	letter-spacing: 0.13em;
	line-height: 1;
	margin: 13px !important;
	min-height: auto;
	min-width: auto;
	padding: 9px 11px;
	text-transform: uppercase;
}

.woocommerce nav.woocommerce-pagination ul {
	border: 0;
	display: flex;
	gap: 7px;
	justify-content: center;
}

.woocommerce nav.woocommerce-pagination ul li {
	border: 1px solid var(--wf-line);
	float: none;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
	height: 40px;
	line-height: 24px;
	min-width: 40px;
}

.woocommerce nav.woocommerce-pagination ul li span.current,
.woocommerce nav.woocommerce-pagination ul li a:hover {
	background: var(--wf-olive-dark);
	color: #fff;
}

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

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

.woocommerce div.product div.images img {
	background: #eae5dc;
}

.woocommerce div.product .summary {
	padding: 20px 0 0 clamp(20px, 4vw, 65px);
}

.woocommerce div.product .product_title {
	margin-bottom: 20px;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
	color: var(--wf-olive);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 25px;
}

.woocommerce-product-details__short-description {
	color: var(--wf-muted);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 15px;
	line-height: 1.75;
	margin: 25px 0;
}

.woocommerce div.product form.cart {
	align-items: stretch;
	display: flex;
	gap: 10px;
	margin: 28px 0;
}

.woocommerce .quantity .qty {
	background: var(--wf-paper);
	border: 1px solid var(--wf-line);
	border-radius: 0;
	height: 50px;
	width: 70px;
}

.product_meta {
	border-top: 1px solid var(--wf-line);
	color: var(--wf-muted);
	font-size: 10px;
	letter-spacing: 0.08em;
	line-height: 2;
	margin-top: 28px;
	padding-top: 18px;
	text-transform: uppercase;
}

.product_meta > span {
	display: block;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
	border-bottom: 1px solid var(--wf-line);
	margin: 0 0 32px;
	padding: 0;
}

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

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

.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
	display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.1em;
	padding: 15px 0;
	text-transform: uppercase;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
	border-bottom: 2px solid var(--wf-olive-dark);
}

.woocommerce-Tabs-panel,
.woocommerce .related.products {
	color: var(--wf-muted);
	font-family: Georgia, "Times New Roman", serif;
	line-height: 1.75;
}

.woocommerce .related.products > h2,
.woocommerce .up-sells > h2 {
	color: var(--wf-ink);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 38px;
	font-weight: 400;
	margin: 65px 0 30px;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
	background: var(--wf-paper);
	border-top-color: var(--wf-olive);
	color: var(--wf-ink);
}

.woocommerce-message::before,
.woocommerce-info::before {
	color: var(--wf-olive);
}

.woocommerce-error {
	border-top-color: #8c4c43;
}

.woocommerce table.shop_table {
	background: var(--wf-paper);
	border: 1px solid var(--wf-line);
	border-collapse: collapse;
	border-radius: 0;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
	border-color: var(--wf-line);
	padding: 18px;
}

.woocommerce table.shop_table th {
	font-size: 9px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.woocommerce table.cart img {
	width: 78px;
}

.woocommerce-cart table.cart td.actions .coupon .input-text {
	border: 1px solid var(--wf-line);
	min-height: 50px;
	padding: 0 15px;
	width: 190px;
}

.cart-collaterals {
	margin-top: 35px;
}

.woocommerce .cart-collaterals .cart_totals,
.woocommerce-page .cart-collaterals .cart_totals {
	float: right;
	width: min(100%, 520px);
}

.cart_totals h2 {
	font-size: 36px;
}

.woocommerce form .form-row label {
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.08em;
	margin-bottom: 7px;
	text-transform: uppercase;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.select2-container--default .select2-selection--single {
	background: var(--wf-paper);
	border: 1px solid var(--wf-line);
	border-radius: 0;
	min-height: 50px;
	padding: 12px 14px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
	line-height: 24px;
}

#add_payment_method #payment,
.woocommerce-cart #payment,
.woocommerce-checkout #payment {
	background: var(--wf-paper);
	border-radius: 0;
}

#add_payment_method #payment div.payment_box,
.woocommerce-cart #payment div.payment_box,
.woocommerce-checkout #payment div.payment_box {
	background: var(--wf-ivory);
}

#add_payment_method #payment div.payment_box::before,
.woocommerce-cart #payment div.payment_box::before,
.woocommerce-checkout #payment div.payment_box::before {
	border-bottom-color: var(--wf-ivory);
}

.woocommerce-checkout-review-order-table {
	margin-bottom: 25px !important;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
	width: 25%;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
	list-style: none;
	margin: 0;
	padding: 0 28px 0 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation li {
	border-bottom: 1px solid var(--wf-line);
}

.woocommerce-account .woocommerce-MyAccount-navigation a {
	display: block;
	font-size: 10px;
	letter-spacing: 0.09em;
	padding: 14px 0;
	text-transform: uppercase;
}

.woocommerce-account .woocommerce-MyAccount-content {
	width: 72%;
}

.wc-block-cart,
.wc-block-checkout {
	max-width: var(--wf-container);
	padding: 20px 0;
}

.wc-block-components-product-name {
	font-family: Georgia, "Times New Roman", serif;
}

.wc-block-components-text-input input,
.wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input {
	border-color: var(--wf-line) !important;
	border-radius: 0 !important;
}

@media (max-width: 1100px) {
	.wf-desktop-nav {
		display: none;
	}

	.wf-menu-toggle {
		display: inline-flex;
		justify-self: start;
	}

	.wf-header-inner {
		grid-template-columns: 1fr auto 1fr;
	}

	.wf-product-grid,
	.woocommerce ul.products {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.wf-story-section {
		grid-template-columns: 1fr 1fr;
	}

	.wf-story-image {
		margin-left: 0;
	}
}

@media (max-width: 782px) {
	.admin-bar .wf-site-header {
		top: 46px;
	}

	.wf-announcement {
		justify-content: center;
	}

	.wf-announcement a {
		display: none;
	}

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

	.wf-hero-copy {
		min-height: 550px;
		padding: 70px 8vw;
	}

	.wf-hero-visual {
		min-height: 540px;
	}

	.wf-trust-strip {
		grid-template-columns: 1fr;
		padding: 0 22px;
	}

	.wf-trust-strip > div {
		border-bottom: 1px solid rgba(255, 255, 255, 0.14);
		border-right: 0;
		justify-content: flex-start;
		min-height: 95px;
		padding: 18px 12px;
	}

	.wf-section {
		padding: 80px 0 92px;
	}

	.wf-category-grid {
		grid-template-columns: 1fr 1fr;
	}

	.wf-category-card:last-child {
		grid-column: 1 / -1;
	}

	.wf-products-heading {
		align-items: flex-start;
		gap: 23px;
		grid-template-columns: 1fr;
	}

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

	.wf-quick-add {
		opacity: 1;
		transform: translateY(0);
	}

	.wf-story-section {
		grid-template-columns: 1fr;
	}

	.wf-story-image {
		margin: 0;
		min-height: 520px;
	}

	.wf-story-copy {
		padding: 72px 22px 84px;
	}

	.wf-contact-section {
		gap: 45px;
		grid-template-columns: 1fr;
		padding: 78px 22px;
	}

	.wf-footer-main {
		grid-template-columns: 1fr 1fr;
	}

	.wf-footer-brand {
		grid-column: 1 / -1;
	}

	.wf-footer-bottom {
		flex-direction: column;
		gap: 12px;
	}

	.wf-post-grid {
		grid-template-columns: 1fr 1fr;
	}

	.woocommerce div.product .summary {
		padding-left: 0;
	}

	.woocommerce-account .woocommerce-MyAccount-navigation,
	.woocommerce-account .woocommerce-MyAccount-content {
		float: none;
		width: 100%;
	}

	.woocommerce-account .woocommerce-MyAccount-navigation {
		margin-bottom: 35px;
	}
}

@media (max-width: 600px) {
	.admin-bar .wf-site-header {
		position: sticky;
		top: 0;
	}

	.wf-header-inner {
		min-height: 72px;
		padding-left: 16px;
		padding-right: 16px;
	}

	.wf-brand {
		font-size: 19px;
	}

	.wf-brand .custom-logo {
		max-height: 48px;
		max-width: 140px;
	}

	.wf-desktop-action {
		display: none;
	}

	.wf-icon-button {
		height: 37px;
		width: 35px;
	}

	.wf-hero-copy {
		min-height: 540px;
		padding: 60px 22px;
	}

	.wf-hero h1 {
		font-size: 47px;
	}

	.wf-hero-intro {
		font-size: 15px;
	}

	.wf-hero-actions,
	.wf-hero-actions .wf-button {
		width: 100%;
	}

	.wf-hero-note {
		font-size: 11px;
		margin-top: 28px;
	}

	.wf-hero-visual {
		min-height: 440px;
	}

	.wf-hero-card {
		bottom: 18px;
		left: 18px;
		right: 18px;
	}

	.wf-section-heading {
		align-items: flex-start;
		flex-direction: column;
		gap: 22px;
	}

	.wf-category-grid {
		grid-template-columns: 1fr;
	}

	.wf-category-card,
	.wf-category-card:last-child {
		grid-column: auto;
		min-height: 400px;
	}

	.wf-product-info {
		flex-direction: column;
	}

	.wf-footer-main {
		grid-template-columns: 1fr;
	}

	.wf-footer-brand {
		grid-column: auto;
	}

	.wf-post-grid {
		grid-template-columns: 1fr;
	}

	.wf-content-main,
	.wf-shop-main {
		padding: 60px 0 80px;
	}

	.woocommerce ul.products {
		gap: 32px 12px;
	}

	.woocommerce ul.products li.product .woocommerce-loop-product__title {
		font-size: 16px;
	}

	.woocommerce div.product form.cart {
		align-items: stretch;
		flex-direction: column;
	}

	.woocommerce .quantity .qty {
		width: 100%;
	}

	.woocommerce table.shop_table_responsive tr td,
	.woocommerce-page table.shop_table_responsive tr td {
		padding: 14px;
	}

	.woocommerce-cart table.cart td.actions .coupon .input-text {
		margin-bottom: 9px;
		width: 100%;
	}

	.wf-products-section .wf-product-grid {
		grid-template-columns: 1fr;
	}

	.wf-products-section .wf-product-card {
		max-width: 440px;
		width: 100%;
	}

	.wf-products-section .wf-product-image {
		aspect-ratio: 4 / 5;
	}

	.wf-products-section .wf-quick-add {
		font-size: 9px !important;
		min-height: 48px !important;
	}

	.wf-products-section .wf-product-card > p {
		margin-top: 16px;
	}

	.wf-products-section .wf-product-info {
		align-items: baseline;
		flex-direction: row;
	}

	.wf-products-section .wf-product-info h3 {
		font-size: 20px;
		max-width: 75%;
	}
}

/* Branded WooCommerce coming-soon page */
body.wf-coming-soon-page {
	background: var(--wf-ivory);
	margin: 0;
	overflow-x: hidden;
}

.wf-coming-soon {
	background: var(--wf-ivory);
	display: grid;
	grid-template-columns: minmax(320px, 0.92fr) minmax(480px, 1.08fr);
	min-height: 100svh;
}

.wf-coming-visual {
	background-image:
		linear-gradient(180deg, rgba(27, 31, 22, 0.04), rgba(27, 31, 22, 0.19)),
		var(--wf-coming-image);
	background-position: center;
	background-size: cover;
	min-height: 100svh;
}

.wf-coming-content {
	display: flex;
	flex-direction: column;
	min-height: 100svh;
	padding: clamp(34px, 5vw, 72px) clamp(38px, 7vw, 110px) 34px;
}

.wf-coming-brand {
	align-self: flex-start;
	display: flex;
	flex-direction: column;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(23px, 2.1vw, 31px);
	letter-spacing: -0.05em;
	line-height: 0.82;
}

.wf-coming-brand > span:nth-child(2) {
	margin-left: 28px;
}

.wf-coming-brand small {
	color: var(--wf-gold);
	font-family: Arial, sans-serif;
	font-size: 7px;
	letter-spacing: 0.29em;
	margin-top: 12px;
}

.wf-coming-brand .wf-coming-logo-image {
	display: block !important;
	height: auto !important;
	max-height: 120px !important;
	max-width: 120px !important;
	object-fit: contain;
	width: 120px !important;
}

.wf-coming-copy {
	margin: auto 0;
	max-width: 650px;
	padding: 70px 0;
}

.wf-coming-eyebrow {
	color: var(--wf-olive);
	font-size: 9px;
	font-weight: 600;
	letter-spacing: 0.21em;
	margin: 0 0 25px;
	text-transform: uppercase;
}

.wf-coming-copy h1 {
	color: var(--wf-ink);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(48px, 5.2vw, 82px);
	font-weight: 400;
	letter-spacing: -0.06em;
	line-height: 0.98;
	margin: 0;
}

.wf-coming-copy h1 em {
	color: var(--wf-gold);
	font-weight: 400;
}

.wf-coming-text {
	color: var(--wf-muted);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(15px, 1.3vw, 18px);
	line-height: 1.75;
	margin: 34px 0 0;
	max-width: 530px;
}

.wf-coming-actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 22px;
	margin-top: 38px;
}

.wf-coming-primary {
	align-items: center;
	background: var(--wf-olive-dark);
	border: 1px solid var(--wf-olive-dark);
	color: #fff;
	display: inline-flex;
	font-size: 9px;
	justify-content: center;
	letter-spacing: 0.12em;
	min-height: 50px;
	padding: 0 27px;
	text-transform: uppercase;
}

.wf-coming-primary:hover {
	background: var(--wf-gold);
	border-color: var(--wf-gold);
	color: #fff;
}

.wf-coming-secondary {
	border-bottom: 1px solid var(--wf-olive-dark);
	font-size: 9px;
	letter-spacing: 0.12em;
	padding-bottom: 5px;
	text-transform: uppercase;
}

.wf-coming-footer {
	align-items: center;
	border-top: 1px solid var(--wf-line);
	color: var(--wf-muted);
	display: flex;
	font-size: 9px;
	justify-content: space-between;
	letter-spacing: 0.09em;
	padding-top: 25px;
	text-transform: uppercase;
}

.wf-coming-footer a {
	color: var(--wf-olive-dark);
}

@media (max-width: 820px) {
	.wf-coming-soon {
		display: block;
		min-height: 100svh;
		position: relative;
	}

	.wf-coming-visual {
		inset: 0;
		min-height: 100%;
		position: absolute;
	}

	.wf-coming-visual::after {
		background: linear-gradient(180deg, rgba(25, 28, 20, 0.45), rgba(25, 28, 20, 0.77));
		content: "";
		inset: 0;
		position: absolute;
	}

	.wf-coming-content {
		color: #fff;
		padding: 31px 24px 25px;
		position: relative;
		z-index: 1;
	}

	.wf-coming-brand,
	.wf-coming-copy h1,
	.wf-coming-copy h1 em {
		color: #fff;
	}

	.wf-coming-brand .wf-coming-logo-image {
		max-height: 92px !important;
		max-width: 92px !important;
		width: 92px !important;
	}

	.wf-coming-brand small,
	.wf-coming-eyebrow {
		color: #e0c98d;
	}

	.wf-coming-copy {
		padding: 65px 0;
	}

	.wf-coming-copy h1 {
		font-size: clamp(45px, 13vw, 67px);
	}

	.wf-coming-text {
		color: rgba(255, 255, 255, 0.82);
	}

	.wf-coming-primary {
		background: #f5f0e6;
		border-color: #f5f0e6;
		color: var(--wf-olive-dark);
	}

	.wf-coming-secondary {
		border-color: rgba(255, 255, 255, 0.75);
	}

	.wf-coming-footer {
		border-color: rgba(255, 255, 255, 0.25);
		color: rgba(255, 255, 255, 0.75);
		gap: 13px;
	}

	.wf-coming-footer a {
		color: #fff;
	}
}

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

	.wf-coming-primary {
		width: 100%;
	}

	.wf-coming-footer {
		align-items: flex-start;
		flex-direction: column;
	}
}

/* WooCommerce refinement — 1.2.0 */
.wf-shop-main {
	padding-top: clamp(54px, 7vw, 92px);
}

.post-type-archive-product .woocommerce-products-header {
	border-bottom: 1px solid var(--wf-line);
	margin-bottom: 25px;
	padding-bottom: 30px;
}

.post-type-archive-product .woocommerce-products-header__title {
	margin: 0;
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
	margin-bottom: 32px;
}

.woocommerce ul.products {
	align-items: start;
}

.woocommerce ul.products li.product {
	display: flex;
	flex-direction: column;
	transition: transform 220ms ease;
}

.woocommerce ul.products li.product:hover {
	transform: translateY(-3px);
}

.woocommerce ul.products li.product a.woocommerce-LoopProduct-link {
	display: block;
}

.woocommerce ul.products li.product a img {
	aspect-ratio: 4 / 5;
	margin-bottom: 16px;
	overflow: hidden;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
	font-size: clamp(17px, 1.35vw, 21px);
	letter-spacing: -0.015em;
	margin: 0;
	min-height: 58px;
	padding-bottom: 7px;
}

.woocommerce ul.products li.product .price {
	display: block;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 14px;
	margin-bottom: 15px;
}

.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product a.button {
	align-items: center;
	background: var(--wf-olive-dark);
	border-color: var(--wf-olive-dark);
	color: #fff;
	display: flex;
	font-size: 9px;
	justify-content: center;
	line-height: 1.2;
	margin-top: 0;
	min-height: 44px;
	padding: 0 14px;
	text-align: center;
	width: 100%;
}

.woocommerce ul.products li.product .button:hover,
.woocommerce ul.products li.product a.button:hover {
	background: var(--wf-gold);
	border-color: var(--wf-gold);
	color: #fff;
}

.single-product .wf-shop-main {
	padding-top: clamp(35px, 5vw, 68px);
}

.single-product .woocommerce .woocommerce-breadcrumb {
	margin-bottom: clamp(28px, 4vw, 48px);
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
	margin-bottom: clamp(42px, 5vw, 64px);
}

.woocommerce div.product div.images img {
	aspect-ratio: 1.2 / 1;
	object-fit: cover;
}

.woocommerce div.product .summary {
	padding-top: 8px;
}

.woocommerce div.product .product_title {
	font-size: clamp(42px, 4.4vw, 64px);
	margin: 0 0 22px;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
	color: var(--wf-gold);
	display: block;
	font-size: 27px;
	margin: 0 0 24px;
}

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

.woocommerce div.product form.cart .button,
.woocommerce div.product form.cart button.single_add_to_cart_button {
	background: var(--wf-olive-dark);
	border: 1px solid var(--wf-olive-dark);
	color: #fff;
	min-height: 52px;
	padding-left: 34px;
	padding-right: 34px;
}

.woocommerce div.product form.cart .button:hover,
.woocommerce div.product form.cart button.single_add_to_cart_button:hover {
	background: var(--wf-gold);
	border-color: var(--wf-gold);
	color: #fff;
}

.woocommerce .quantity .qty {
	height: 52px;
}

.product_meta {
	margin-top: 24px;
	padding-top: 20px;
}

.wf-product-reassurance {
	border-bottom: 1px solid var(--wf-line);
	border-top: 1px solid var(--wf-line);
	margin-top: 26px;
	padding: 8px 0;
}

.wf-product-reassurance > div {
	align-items: center;
	display: flex;
	gap: 12px;
	padding: 11px 0;
}

.wf-product-reassurance > div + div {
	border-top: 1px solid rgba(57, 66, 48, 0.1);
}

.wf-product-reassurance span {
	align-items: center;
	border: 1px solid var(--wf-line);
	border-radius: 50%;
	color: var(--wf-gold);
	display: inline-flex;
	flex: 0 0 34px;
	height: 34px;
	justify-content: center;
}

.wf-product-reassurance p {
	display: flex;
	flex-direction: column;
	gap: 3px;
	margin: 0;
}

.wf-product-reassurance strong {
	color: var(--wf-ink);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.wf-product-reassurance small {
	color: var(--wf-muted);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 12px;
}

.woocommerce div.product .woocommerce-tabs {
	clear: both;
	padding-top: 5px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
	margin-bottom: 25px;
}

.woocommerce-Tabs-panel h2 {
	color: var(--wf-ink);
	font-size: clamp(27px, 3vw, 38px);
	font-weight: 400;
	margin-top: 0;
}

@media (min-width: 1101px) {
	.woocommerce ul.products.columns-1 {
		grid-template-columns: minmax(260px, 330px);
	}

	.woocommerce ul.products.columns-2 {
		grid-template-columns: repeat(2, minmax(260px, 1fr));
		max-width: 720px;
	}
}

@media (max-width: 782px) {
	.woocommerce div.product div.images,
	.woocommerce div.product div.summary {
		margin-bottom: 38px;
	}

	.woocommerce div.product div.images img {
		aspect-ratio: auto;
	}
}

@media (max-width: 600px) {
	.post-type-archive-product .woocommerce-products-header {
		margin-bottom: 24px;
		padding-bottom: 22px;
	}

	.post-type-archive-product .woocommerce-products-header__title {
		font-size: 43px;
	}

	.post-type-archive-product .woocommerce-result-count {
		display: none;
	}

	.post-type-archive-product .woocommerce-ordering {
		float: none;
		margin: 0 0 30px;
		width: 100%;
	}

	.post-type-archive-product .woocommerce-ordering select {
		min-height: 45px;
		width: 100%;
	}

	body.woocommerce .wf-shop-main ul.products,
	body.woocommerce-page .wf-shop-main ul.products,
	.woocommerce .wf-shop-main ul.products[class*="columns-"] {
		display: grid !important;
		gap: 36px 14px;
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		margin-top: 0;
	}

	body.woocommerce .wf-shop-main ul.products li.product,
	body.woocommerce-page .wf-shop-main ul.products li.product,
	.woocommerce .wf-shop-main ul.products[class*="columns-"] li.product {
		clear: none !important;
		float: none !important;
		margin: 0 !important;
		max-width: none !important;
		width: 100% !important;
	}

	body.woocommerce .wf-shop-main ul.products li.product a img,
	body.woocommerce-page .wf-shop-main ul.products li.product a img {
		aspect-ratio: 4 / 5;
		margin-bottom: 13px;
	}

	body.woocommerce .wf-shop-main ul.products li.product .woocommerce-loop-product__title,
	body.woocommerce-page .wf-shop-main ul.products li.product .woocommerce-loop-product__title {
		font-size: 17px;
		line-height: 1.22;
		min-height: 44px;
		padding-bottom: 6px;
	}

	body.woocommerce .wf-shop-main ul.products li.product .price,
	body.woocommerce-page .wf-shop-main ul.products li.product .price {
		font-size: 13px;
		margin-bottom: 13px;
		min-height: 18px;
	}

	.woocommerce ul.products li.product .button,
	.woocommerce ul.products li.product a.button {
		font-size: 8px;
		height: 44px;
		letter-spacing: 0.08em;
		line-height: 1.2;
		margin-top: auto;
		padding-left: 6px;
		padding-right: 6px;
		white-space: normal;
	}

	.woocommerce div.product .product_title {
		font-size: 39px;
	}

	.woocommerce div.product form.cart .button,
	.woocommerce div.product form.cart button.single_add_to_cart_button {
		width: 100%;
	}
}
