.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	min-height: 48px;
	padding: 0.75rem 1.5rem;
	border: 1px solid transparent;
	border-radius: var(--r-pill);
	background: transparent;
	font-family: var(--font-ui);
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.02em;
	line-height: 1;
	cursor: pointer;
	transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn--primary {
	background: var(--ink);
	color: var(--cream);
}

.btn--primary:hover {
	background: var(--gold-deep);
	color: var(--white);
}

.btn--gold {
	background: var(--gold-deep);
	color: var(--white);
}

.btn--gold:hover {
	background: var(--ink);
	color: var(--cream);
}

.btn--outline {
	background: transparent;
	border-color: var(--line);
	color: var(--ink);
}

.btn--outline:hover {
	border-color: var(--gold-deep);
	color: var(--gold-deep);
}

.badge {
	display: inline-flex;
	align-items: center;
	padding: 0.3rem 0.75rem;
	border-radius: var(--r-pill);
	background: var(--gold-soft);
	color: var(--gold-deep);
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	line-height: 1.2;
}

.product-card {
	position: relative;
}

.product-card__media {
	position: relative;
}

.product-card__badge {
	position: absolute;
	top: 0.45rem;
	left: 0.45rem;
	z-index: 2;
	max-width: calc(100% - 1rem);
	background: #e4c44a;
	color: var(--ink);
	letter-spacing: 0;
	font-weight: 600;
	pointer-events: none;
}

.card {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--r-md);
}

.entry-card {
	padding: 2rem;
	margin-bottom: 1.5rem;
}

.icon-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid var(--line);
	border-radius: var(--r-pill);
	background: var(--white);
	color: var(--ink);
	cursor: pointer;
	transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.icon-btn:hover {
	background: var(--gold-soft);
	border-color: transparent;
	color: var(--gold-deep);
}

.icon-btn svg {
	width: 18px;
	height: 18px;
}

.icon-btn--ghost {
	background: transparent;
	border-color: transparent;
}

.icon-btn--ghost:hover {
	background: var(--gold-soft);
	border-color: transparent;
	color: var(--gold-deep);
}

.icon-btn--account,
.icon-btn--cart {
	background: var(--gold-soft);
	border-color: transparent;
	color: var(--gold-deep);
}

.icon-btn--account:hover,
.icon-btn--cart:hover {
	background: var(--gold);
	color: var(--white);
}

.site-header {
	position: sticky;
	top: var(--wp-admin--admin-bar--height, 0px);
	z-index: 200;
	padding-top: env(safe-area-inset-top);
	overflow: visible;
	background: #F3F4F1;
	border: 0;
}

.site-header-spacer {
	height: calc(var(--header-offset) + var(--header-bar-height));
	background: var(--white);
}

body.has-float-header {
	background: var(--white);
}

@media screen and (max-width: 600px) {
	.admin-bar .site-header:not(.site-header--hero) {
		top: 0;
	}
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	min-width: 0;
	min-height: 80px;
}

.site-branding {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.site-logo img {
	max-height: 48px;
	max-width: 140px;
	width: auto;
	object-fit: contain;
}

.site-brand {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}

.site-brand__name {
	font-family: var(--font-display);
	font-size: 1.35rem;
	font-weight: 400;
	letter-spacing: 0.04em;
	line-height: 1;
	color: var(--ink);
	white-space: nowrap;
}

.site-brand__tag {
	font-size: 0.625rem;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--ink-soft);
}

.primary-nav {
	display: none;
	overflow: visible;
}

.primary-nav > ul {
	display: flex;
	align-items: center;
	gap: 1.75rem;
}

.primary-nav a {
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--ink);
	transition: color 0.25s ease;
}

.primary-nav a:hover,
.primary-nav .current-menu-item > a,
.primary-nav .current_page_item > a {
	color: var(--gold-deep);
}

.primary-nav .menu-item-has-children {
	position: relative;
}

.primary-nav .menu-item-has-children > a::after {
	content: "";
	display: inline-block;
	width: 0.38em;
	height: 0.38em;
	margin-left: 0.4em;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: translateY(-0.18em) rotate(45deg);
}

.primary-nav .sub-menu {
	position: absolute;
	top: 100%;
	left: 50%;
	z-index: 240;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0;
	min-width: 13.5rem;
	margin: 0;
	padding: 0.75rem 0 0.45rem;
	background: #f3f4f1;
	border-radius: var(--r-sm);
	box-shadow: 0 12px 32px rgba(42, 37, 33, 0.12);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translate(-50%, 0.35rem);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.primary-nav .sub-menu::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 100%;
	height: 0.75rem;
}

.primary-nav .menu-item-has-children:hover > .sub-menu,
.primary-nav .menu-item-has-children:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translate(-50%, 0);
}

.primary-nav .sub-menu a {
	display: block;
	padding: 0.5rem 1rem;
	color: var(--ink);
	white-space: nowrap;
}

.primary-nav .sub-menu a:hover,
.primary-nav .sub-menu a:focus-visible {
	color: var(--gold-deep);
	background: var(--gold-soft);
}

.site-header__actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 0.15rem;
	flex-shrink: 0;
}

.lang-switcher {
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	min-height: 44px;
	padding: 0 0.7rem;
	border-radius: var(--r-pill);
	color: var(--ink);
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.lang-switcher__link {
	color: inherit;
	text-decoration: none;
	opacity: 0.38;
	transition: opacity 0.2s ease;
}

.lang-switcher__link:hover,
.lang-switcher__link:focus-visible,
.lang-switcher__link.is-active {
	opacity: 1;
}

.lang-switcher__sep {
	opacity: 0.28;
}

.icon-btn--cart {
	position: relative;
}

.cart-count {
	position: absolute;
	top: 4px;
	right: 4px;
	min-width: 16px;
	height: 16px;
	padding: 0 4px;
	border-radius: var(--r-pill);
	background: var(--gold-deep);
	color: var(--white);
	font-size: 0.625rem;
	font-weight: 600;
	line-height: 16px;
	text-align: center;
}

.cart-count.is-empty {
	display: none;
}

.header-search {
	border-top: 1px solid var(--line);
	background: #F3F4F1;
	padding-block: 1rem;
}

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

.header-search__form {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.header-search__form input[type="search"] {
	flex: 1 1 220px;
	min-height: 48px;
	padding-inline: 1.25rem;
	border: 1px solid var(--line);
	border-radius: var(--r-pill);
	background: var(--white);
}

.header-search-pill {
	display: none;
	position: relative;
	align-items: center;
	gap: 0.45rem;
	min-height: 44px;
	padding: 0 1rem 0 0.85rem;
	border: 0;
	border-radius: var(--r-pill);
	background: var(--ink-glass);
	color: var(--white);
}

.header-search-pill svg {
	width: 16px;
	height: 16px;
	flex: 0 0 16px;
}

.header-search-pill input[type="search"] {
	width: 7.5rem;
	min-height: 44px;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--white);
	outline: none;
	box-shadow: none;
	-webkit-appearance: none;
	appearance: none;
	transition: width 0.25s ease;
}

.header-search-pill input[type="search"]:focus,
.header-search-pill input[type="search"]:focus-visible {
	outline: none;
	box-shadow: none;
}

.header-search-pill:focus-within {
	box-shadow: 0 0 0 2px var(--gold);
}

.header-search-pill:focus-within input[type="search"] {
	width: 14rem;
}

.header-search-pill input[type="search"]::placeholder {
	color: rgba(255, 255, 255, 0.72);
}

.header-search-pill input[type="search"]::-webkit-search-cancel-button {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2'%3E%3Cpath d='M6 6l12 12M18 6 6 18' stroke-linecap='round'/%3E%3C/svg%3E");
}

.header-search-suggest {
	z-index: 240;
	min-width: 0;
	padding: 0.35rem;
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	background: var(--white);
	color: var(--ink);
}

.header-search-suggest[hidden] {
	display: none;
}

.header-search-pill .header-search-suggest {
	position: absolute;
	top: calc(100% + 0.55rem);
	right: 0;
	width: min(22.5rem, calc(100vw - 2 * var(--gutter)));
	min-width: 18rem;
}

.header-search-suggest--panel {
	flex: 1 1 100%;
}

.header-search-suggest__list {
	display: grid;
	gap: 0.15rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.header-search-suggest__item {
	display: grid;
	grid-template-columns: 3rem minmax(0, 1fr);
	align-items: center;
	gap: 0.75rem;
	padding: 0.45rem 0.55rem;
	border-radius: var(--r-sm);
	color: inherit;
	text-decoration: none;
}

.header-search-suggest__item:hover,
.header-search-suggest__item.is-active {
	background: #f3f4f1;
}

.header-search-suggest__thumb {
	display: block;
	overflow: hidden;
	width: 3rem;
	height: 3rem;
	border-radius: var(--r-sm);
	background: var(--gold-soft);
}

.header-search-suggest__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.header-search-suggest__copy {
	display: grid;
	gap: 0.15rem;
	min-width: 0;
}

.header-search-suggest__name {
	font-family: var(--font-display);
	font-size: 0.98rem;
	font-weight: 400;
	line-height: 1.25;
	color: var(--ink);
}

.header-search-suggest__price {
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--ink-soft);
}

.header-search-suggest__price del {
	margin-right: 0.3rem;
	font-weight: 400;
}

.header-search-suggest__price ins {
	text-decoration: none;
	color: var(--ink);
}

.header-search-suggest__empty,
.header-search-suggest__more {
	display: block;
	padding: 0.7rem 0.65rem;
	font-size: 0.8125rem;
}

.header-search-suggest__empty {
	color: var(--ink-soft);
}

.header-search-suggest__more {
	border-top: 1px solid var(--line);
	color: var(--gold-deep);
	text-decoration: none;
}

.header-search-suggest__more:hover {
	color: var(--ink);
}

.nav-toggle {
	display: inline-flex;
}

.offcanvas-backdrop {
	position: fixed;
	inset: 0;
	z-index: 210;
	background: var(--ink-veil);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.offcanvas-backdrop.is-visible {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.offcanvas {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 220;
	display: flex;
	flex-direction: column;
	width: min(400px, 86vw);
	max-width: 100%;
	height: 100%;
	padding: max(1.25rem, env(safe-area-inset-top)) var(--gutter) max(2rem, env(safe-area-inset-bottom));
	background: var(--surface);
	overflow-x: hidden;
	transform: translateX(100%);
	transition: transform 0.35s ease;
}

.offcanvas.is-open {
	transform: translateX(0);
}

.offcanvas__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1.1rem;
}

.offcanvas__title {
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 500;
	color: var(--ink);
}

.offcanvas__nav {
	flex: 1 1 auto;
	min-width: 0;
	min-height: 0;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.offcanvas__nav ul {
	display: flex;
	flex-direction: column;
	gap: 0;
	min-width: 0;
	max-width: 100%;
}

.offcanvas__nav > ul > li {
	border-bottom: 1px solid var(--line);
}

.offcanvas__nav > ul > li:first-child {
	border-top: 1px solid var(--line);
}

.offcanvas__nav > ul > li > a {
	display: flex;
	align-items: center;
	min-height: 3.25rem;
	padding: 0.75rem 0;
	font-family: var(--font-display);
	font-size: 1.25rem;
	font-weight: 400;
	letter-spacing: 0.03em;
	line-height: 1.2;
	color: var(--ink);
	transition: color 0.25s ease;
}

.offcanvas__nav a:hover,
.offcanvas__nav a:focus-visible,
.offcanvas__nav .current-menu-item > a {
	color: var(--gold-deep);
}

.offcanvas__nav .menu-item-has-children {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 2.75rem;
	align-items: stretch;
	min-width: 0;
}

.offcanvas__nav .menu-item-has-children > a {
	min-width: 0;
	min-height: 3.25rem;
}

.offcanvas__nav .sub-menu-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	min-height: 3.25rem;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--ink);
	cursor: pointer;
}

.offcanvas__nav .sub-menu-toggle:hover,
.offcanvas__nav .sub-menu-toggle:focus-visible {
	color: var(--gold-deep);
}

.offcanvas__nav .sub-menu-toggle::after {
	content: "";
	display: block;
	width: 0.42em;
	height: 0.42em;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: translateY(-0.12em) rotate(45deg);
	transition: transform 0.2s ease;
}

.offcanvas__nav .menu-item-has-children.is-open > .sub-menu-toggle::after {
	transform: translateY(0.1em) rotate(225deg);
}

.offcanvas__nav .sub-menu {
	display: none;
	grid-column: 1 / -1;
	min-width: 0;
	max-width: 100%;
	margin: 0 0 0.55rem;
	padding: 0.15rem 0.15rem 0.2rem 0.9rem;
	border-left: 1px solid rgba(184, 151, 90, 0.45);
}

.offcanvas__nav .menu-item-has-children.is-open > .sub-menu {
	display: flex;
	flex-direction: column;
}

.offcanvas__nav .sub-menu li {
	border: 0;
}

.offcanvas__nav .sub-menu a {
	display: flex;
	align-items: center;
	min-width: 0;
	min-height: 2.65rem;
	padding: 0.4rem 0.15rem;
	font-family: var(--font-ui);
	font-size: 0.9375rem;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1.3;
	color: var(--ink-soft);
	overflow-wrap: anywhere;
}

.primary-nav .sub-menu-toggle {
	display: none;
}

body.is-nav-open {
	overflow: hidden;
}

.site-main {
	padding-block: 3rem 4rem;
}

.entry-header {
	margin-bottom: 2rem;
}

.entry-content {
	max-width: 72ch;
}

.entry-content > * + * {
	margin-top: 1.25rem;
}

.entry-content h2 {
	margin-top: 2.4rem;
	font-size: clamp(1.45rem, 2vw, 1.85rem);
	letter-spacing: 0.01em;
}

.entry-content ul,
.entry-content ol {
	padding-left: 1.15rem;
}

.entry-content ul {
	list-style: disc;
}

.entry-content ol {
	list-style: decimal;
}

.entry-content li {
	color: var(--ink-soft);
}

.entry-content li + li {
	margin-top: 0.4rem;
}

.entry-content a {
	color: var(--gold-deep);
	text-decoration: underline;
	text-underline-offset: 0.2em;
}

.page-hero,
.error-404 {
	padding-block: 4rem 5rem;
}

.page-hero__inner,
.error-404__inner {
	display: grid;
	gap: 1.25rem;
	max-width: 40rem;
}

.site-footer {
	background: #F3F4F1;
	color: var(--ink);
	padding-block: 2.5rem 1.75rem;
	border-radius: var(--r-lg) var(--r-lg) 0 0;
}

.site-footer h2,
.site-footer h3 {
	color: var(--ink);
}

.site-footer p {
	color: var(--ink-soft);
}

.footer-subscribe {
	display: grid;
	justify-items: start;
	gap: 1.15rem;
	padding: 1.75rem;
	border-radius: var(--r-lg);
	background: var(--white);
}

.footer-subscribe__badge {
	background: var(--gold-soft);
	color: var(--gold-deep);
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.footer-subscribe__row {
	display: grid;
	gap: 1.35rem;
	width: 100%;
}

.footer-subscribe__copy {
	max-width: 28rem;
}

.footer-subscribe__copy h2 {
	font-family: var(--font-display);
	font-size: clamp(1.85rem, 4vw, 2.6rem);
	font-weight: 400;
	line-height: 1.15;
}

.footer-subscribe__form {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	align-items: center;
}

.footer-subscribe__form input[type="email"] {
	flex: 1 1 200px;
	min-height: 48px;
	padding-inline: 1.15rem;
	border: 0;
	border-radius: var(--r-pill);
	background: #F3F4F1;
	color: var(--ink);
}

.footer-subscribe__form input[type="email"]::placeholder {
	color: var(--ink-soft);
}

.footer-subscribe__form .btn {
	flex: 1 1 100%;
}

.footer-subscribe__hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.footer-subscribe__status {
	flex: 1 1 100%;
	margin: 0;
	font-size: 0.92rem;
	line-height: 1.45;
}

.footer-subscribe__status.is-error {
	color: #8a3a32;
}

.footer-main {
	display: grid;
	gap: 2rem;
	padding-block: 2.5rem;
}

.footer-brand__name {
	display: inline-block;
	margin-bottom: 0.65rem;
	font-family: var(--font-display);
	font-size: 1.45rem;
	font-weight: 400;
	letter-spacing: 0.04em;
	line-height: 1;
	color: var(--ink);
}

.footer-brand p {
	max-width: 22rem;
}

.footer-social {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 1.15rem;
}

.footer-social__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: var(--r-pill);
	background: var(--white);
	color: var(--ink);
	transition: transform 0.25s ease, background-color 0.25s ease;
}

.footer-social__link svg {
	width: 20px;
	height: 20px;
}

a.footer-social__link:hover {
	transform: translateY(-1px);
}

.footer-cols {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.75rem;
}

.footer-col h3 {
	margin-bottom: 0.9rem;
	font-family: var(--font-ui);
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--gold-deep);
}

.footer-col ul {
	display: grid;
	gap: 0.65rem;
}

.footer-col a {
	font-size: 0.9375rem;
	color: var(--ink-soft);
	transition: color 0.25s ease;
}

.footer-col a:hover {
	color: var(--gold-deep);
}

.site-footer__wordmark {
	margin: 0 0 1.5rem;
	max-width: 100%;
	overflow: hidden;
	font-family: var(--font-display);
	font-size: clamp(2.4rem, 11vw, 8.5rem);
	font-weight: 400;
	letter-spacing: -0.02em;
	line-height: 0.9;
	text-align: center;
	white-space: nowrap;
	color: var(--ink);
	opacity: 0.08;
}

.site-footer__legal {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.85rem 1.25rem;
	padding-top: 1.35rem;
	border-top: 1px solid var(--line);
}

.site-footer__copy {
	font-size: 0.8125rem;
}

.footer-legal-nav ul {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1.35rem;
}

.footer-legal-nav a {
	font-size: 0.8125rem;
	color: var(--ink-soft);
	transition: color 0.25s ease;
}

.footer-legal-nav a:hover {
	color: var(--gold-deep);
}

.offcanvas__account {
	padding-top: 0.75rem;
}

.offcanvas__account a {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	color: var(--gold-deep);
	font-size: 0.9375rem;
	font-weight: 500;
}

.offcanvas__lang {
	display: grid;
	gap: 0.55rem;
	margin-top: auto;
	padding-top: 1rem;
}

.offcanvas__lang-label {
	margin: 0;
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ink-soft);
}

.offcanvas__lang .lang-switcher {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	width: 100%;
	min-height: 48px;
	padding: 0.25rem;
	background: var(--white);
	border: 1px solid var(--line);
	color: var(--ink);
	font-size: 0.8125rem;
}

.offcanvas__lang .lang-switcher__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 0 0.75rem;
	border-radius: var(--r-pill);
	opacity: 0.42;
}

.offcanvas__lang .lang-switcher__link.is-active,
.offcanvas__lang .lang-switcher__link:hover,
.offcanvas__lang .lang-switcher__link:focus-visible {
	background: var(--ink);
	color: var(--cream);
	opacity: 1;
}

.offcanvas__lang .lang-switcher__sep {
	opacity: 0.2;
}

@media (max-width: 1279px) {
	.site-header .lang-switcher {
		display: none;
	}
}

@media (max-width: 479px) {
	.site-header__inner {
		gap: 0.5rem;
		min-height: 72px;
	}

	.site-branding {
		min-width: 0;
		flex-shrink: 1;
	}

	.site-brand__name {
		font-size: 1.05rem;
		letter-spacing: 0.05em;
	}

	.site-brand__tag {
		display: none;
	}

	.site-logo img {
		max-height: 40px;
		max-width: 110px;
	}

	.site-header__actions .icon-btn--account {
		display: none;
	}
}

body.has-hero-frame .site-header--hero:not(.is-scrolled):not(.is-search-open) {
	position: absolute;
	top: calc(var(--wp-admin--admin-bar--height, 0px) + var(--header-offset));
	left: 0;
	right: 0;
	background: transparent;
	border-bottom: 0;
}

body.has-hero-frame .site-header--hero:not(.is-scrolled):not(.is-search-open) .site-header__inner {
	padding-inline: calc(var(--gutter) + 0.85rem);
}

body.has-hero-frame .site-header--hero:not(.is-scrolled):not(.is-search-open) .site-brand__name {
	color: var(--white);
}

body.has-hero-frame .site-header--hero:not(.is-scrolled):not(.is-search-open) .icon-btn {
	color: var(--white);
	background: transparent;
	border-color: transparent;
}

body.has-hero-frame .site-header--hero:not(.is-scrolled):not(.is-search-open) .lang-switcher {
	color: var(--white);
}

body.has-hero-frame .site-header--hero:not(.is-scrolled):not(.is-search-open) .icon-btn:hover,
body.has-hero-frame .site-header--hero:not(.is-scrolled):not(.is-search-open) .icon-btn--account,
body.has-hero-frame .site-header--hero:not(.is-scrolled):not(.is-search-open) .icon-btn--cart,
body.has-hero-frame .site-header--hero:not(.is-scrolled):not(.is-search-open) .nav-toggle,
body.has-hero-frame .site-header--hero:not(.is-scrolled):not(.is-search-open) .search-toggle {
	background: var(--ink-glass);
	color: var(--white);
}

body.has-hero-frame .site-header--hero:not(.is-scrolled):not(.is-search-open) .icon-btn--account:hover,
body.has-hero-frame .site-header--hero:not(.is-scrolled):not(.is-search-open) .icon-btn--cart:hover,
body.has-hero-frame .site-header--hero:not(.is-scrolled):not(.is-search-open) .nav-toggle:hover,
body.has-hero-frame .site-header--hero:not(.is-scrolled):not(.is-search-open) .search-toggle:hover {
	background: var(--ink-veil);
	color: var(--white);
}

.site-header--hero.is-scrolled,
.site-header--hero.is-search-open {
	position: fixed;
	top: calc(var(--wp-admin--admin-bar--height, 0px) + max(12px, env(safe-area-inset-top)));
	left: var(--gutter);
	right: var(--gutter);
	overflow: visible;
	background: #F3F4F1;
	border: 0;
	border-radius: var(--r-lg);
	transition: transform 0.35s ease, opacity 0.28s ease;
}

.site-header--hero.is-scrolled.is-hidden {
	transform: translateY(calc(-100% - 24px));
	opacity: 0;
	pointer-events: none;
}

.site-header--hero.is-scrolled .site-header__inner,
.site-header--hero.is-search-open .site-header__inner {
	padding-inline: 1rem;
}

.site-header--hero.is-scrolled .site-brand__name,
.site-header--hero.is-search-open .site-brand__name {
	color: var(--ink);
}

.site-header--hero.is-scrolled .icon-btn,
.site-header--hero.is-search-open .icon-btn {
	color: var(--ink);
}

.site-header--hero.is-scrolled .icon-btn:hover,
.site-header--hero.is-search-open .icon-btn:hover {
	background: var(--gold-soft);
	color: var(--gold-deep);
}

.site-header--hero.is-scrolled .icon-btn--account,
.site-header--hero.is-scrolled .icon-btn--cart,
.site-header--hero.is-scrolled .nav-toggle,
.site-header--hero.is-scrolled .search-toggle,
.site-header--hero.is-search-open .icon-btn--account,
.site-header--hero.is-search-open .icon-btn--cart,
.site-header--hero.is-search-open .nav-toggle,
.site-header--hero.is-search-open .search-toggle {
	background: var(--gold-soft);
	color: var(--gold-deep);
}

.site-header--hero.is-scrolled .icon-btn--account:hover,
.site-header--hero.is-scrolled .icon-btn--cart:hover,
.site-header--hero.is-search-open .icon-btn--account:hover,
.site-header--hero.is-search-open .icon-btn--cart:hover {
	background: var(--gold);
	color: var(--white);
}

.site-header--hero.is-scrolled .header-search,
.site-header--hero.is-search-open .header-search {
	border-top: 1px solid var(--line);
	background: transparent;
}

@media (min-width: 768px) {
	.site-footer {
		padding-block: 3.5rem 2rem;
	}

	.footer-subscribe {
		padding: 2.25rem;
	}

	.footer-subscribe__row {
		grid-template-columns: minmax(0, 1fr) minmax(16rem, 22rem);
		align-items: end;
		gap: 2.5rem;
	}

	.footer-main {
		grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
		align-items: start;
		gap: 3rem;
		padding-block: 3rem;
	}

	.footer-cols {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 1.5rem;
	}

	.footer-subscribe__form .btn {
		flex: 0 0 auto;
	}
}

@media (min-width: 1024px) {
	.site-footer {
		border-radius: var(--r-hero) var(--r-hero) 0 0;
	}

	.footer-subscribe {
		padding: 2.75rem;
		border-radius: var(--r-hero);
	}
}

@media (min-width: 1280px) {
	.site-header__inner {
		display: grid;
		grid-template-columns: auto minmax(0, 1fr) auto;
		justify-content: stretch;
		min-height: 88px;
	}

	.site-branding {
		justify-self: start;
	}

	.primary-nav {
		display: block;
		justify-self: center;
		min-width: 0;
	}

	.site-header__actions {
		justify-self: end;
	}

	.primary-nav > ul {
		gap: 1.15rem;
	}

	.primary-nav a {
		font-size: 0.8125rem;
		white-space: nowrap;
	}

	.nav-toggle,
	.offcanvas,
	.offcanvas-backdrop {
		display: none;
	}

	body.has-hero-frame .site-header--hero:not(.is-scrolled):not(.is-search-open) {
		position: absolute;
		top: calc(var(--wp-admin--admin-bar--height, 0px) + var(--header-offset));
		left: 0;
		right: 0;
		background: transparent;
		border-bottom: 0;
	}

	body.has-hero-frame .site-header--hero:not(.is-scrolled):not(.is-search-open) .site-header__inner {
		padding-inline: calc(var(--gutter) + 2.5rem);
	}

	body.has-hero-frame .site-header--hero:not(.is-scrolled):not(.is-search-open) .site-brand__name {
		font-size: 1.45rem;
		letter-spacing: 0.02em;
		color: var(--white);
	}

	body.has-hero-frame .site-header--hero:not(.is-scrolled):not(.is-search-open) .primary-nav a {
		color: var(--white);
	}

	body.has-hero-frame .site-header--hero:not(.is-scrolled):not(.is-search-open) .primary-nav a:hover,
	body.has-hero-frame .site-header--hero:not(.is-scrolled):not(.is-search-open) .primary-nav .current-menu-item > a {
		color: var(--gold);
	}

	body.has-hero-frame .site-header--hero:not(.is-scrolled):not(.is-search-open) .primary-nav .sub-menu a {
		color: var(--ink);
	}

	body.has-hero-frame .site-header--hero:not(.is-scrolled):not(.is-search-open) .primary-nav .sub-menu a:hover,
	body.has-hero-frame .site-header--hero:not(.is-scrolled):not(.is-search-open) .primary-nav .sub-menu a:focus-visible {
		color: var(--gold-deep);
	}

	body.has-hero-frame .site-header--hero:not(.is-scrolled):not(.is-search-open) .icon-btn {
		color: var(--white);
		background: transparent;
		border-color: transparent;
	}

	body.has-hero-frame .site-header--hero:not(.is-scrolled):not(.is-search-open) .icon-btn:hover {
		background: var(--ink-glass);
		color: var(--white);
	}

	body.has-hero-frame .site-header--hero:not(.is-scrolled):not(.is-search-open) .icon-btn--account,
	body.has-hero-frame .site-header--hero:not(.is-scrolled):not(.is-search-open) .icon-btn--cart {
		background: var(--ink-glass);
		color: var(--white);
	}

	body.has-hero-frame .site-header--hero:not(.is-scrolled):not(.is-search-open) .icon-btn--account:hover,
	body.has-hero-frame .site-header--hero:not(.is-scrolled):not(.is-search-open) .icon-btn--cart:hover {
		background: var(--ink-veil);
		color: var(--white);
	}

	.site-header--hero .search-toggle,
	.site-header--hero .header-search {
		display: none;
	}

	.site-header--hero .header-search-pill {
		display: flex;
	}

	.site-header--hero.is-scrolled {
		position: fixed;
		top: calc(var(--wp-admin--admin-bar--height, 0px) + 20px);
		left: var(--gutter);
		right: var(--gutter);
		background: #F3F4F1;
		border: 0;
		border-radius: var(--r-hero);
		transition: transform 0.35s ease, opacity 0.28s ease;
	}

	.site-header--hero.is-scrolled.is-hidden {
		transform: translateY(calc(-100% - 28px));
		opacity: 0;
		pointer-events: none;
	}

	.site-header--hero.is-scrolled .site-header__inner {
		padding-inline: calc((var(--header-bar-height) - 48px) / 2);
	}

	.site-header--hero.is-scrolled .site-brand__name {
		color: var(--ink);
	}

	.site-header--hero.is-scrolled .primary-nav a {
		color: var(--ink);
	}

	.site-header--hero.is-scrolled .primary-nav a:hover,
	.site-header--hero.is-scrolled .primary-nav .current-menu-item > a {
		color: var(--gold-deep);
	}

	.site-header--hero.is-scrolled .icon-btn {
		color: var(--ink);
	}

	.site-header--hero.is-scrolled .icon-btn:hover {
		background: var(--gold-soft);
		color: var(--gold-deep);
	}

	.site-header--hero.is-scrolled .icon-btn--account,
	.site-header--hero.is-scrolled .icon-btn--cart {
		background: var(--gold-soft);
		color: var(--gold-deep);
	}

	.site-header--hero.is-scrolled .icon-btn--account:hover,
	.site-header--hero.is-scrolled .icon-btn--cart:hover {
		background: var(--gold);
		color: var(--white);
	}

	.site-header--hero.is-scrolled .header-search-pill {
		background: var(--gold-soft);
		color: var(--ink);
	}

	.site-header--hero.is-scrolled .header-search-pill input[type="search"],
	.site-header--hero.is-scrolled .header-search-pill input[type="search"]::placeholder {
		color: var(--ink);
	}

	.site-header--hero.is-scrolled .header-search-pill input[type="search"]::-webkit-search-cancel-button {
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232A2521' stroke-width='2'%3E%3Cpath d='M6 6l12 12M18 6 6 18' stroke-linecap='round'/%3E%3C/svg%3E");
	}
}

@media (min-width: 1280px) and (max-width: 1439px) {
	.primary-nav > ul {
		gap: 0.85rem;
	}
}

@media (min-width: 1440px) {
	.primary-nav > ul {
		gap: 1.25rem;
	}

	.primary-nav a {
		font-size: 0.875rem;
	}

	body.has-hero-frame .site-header--hero:not(.is-scrolled):not(.is-search-open) .site-header__inner {
		padding-inline: calc(var(--gutter) + 3rem);
	}
}

.mini-cart-backdrop {
	position: fixed;
	inset: 0;
	z-index: 225;
	background: var(--ink-veil);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mini-cart-backdrop.is-visible {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.mini-cart {
	position: fixed;
	top: var(--wp-admin--admin-bar--height, 0px);
	right: 0;
	z-index: 230;
	display: flex;
	flex-direction: column;
	width: min(26.25rem, 100vw);
	height: calc(100% - var(--wp-admin--admin-bar--height, 0px));
	background: var(--white);
	border-radius: var(--r-lg) 0 0 var(--r-lg);
	overflow: hidden;
	transform: translateX(100%);
	transition: transform 0.35s ease;
}

.mini-cart.is-open {
	transform: translateX(0);
}

.mini-cart__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	flex-shrink: 0;
	padding: 1.25rem 1.25rem 0.85rem;
}

.mini-cart__title {
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 400;
	line-height: 1.2;
	color: var(--ink);
}

.mini-cart__panel {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	min-height: 0;
	padding: 0 1.25rem max(1.25rem, env(safe-area-inset-bottom));
}

.mini-cart__count {
	margin-bottom: 1rem;
	font-size: 0.8125rem;
	line-height: 1.4;
	color: var(--ink-soft);
}

.mini-cart__list {
	flex: 1 1 auto;
	min-height: 0;
	margin: 0;
	padding: 0;
	overflow-y: auto;
	overscroll-behavior: contain;
	-webkit-overflow-scrolling: touch;
}

.mini-cart__item {
	display: grid;
	grid-template-columns: 4.5rem minmax(0, 1fr);
	gap: 0.9rem;
	padding: 1rem 0;
	border-top: 1px solid var(--line);
}

.mini-cart__item:first-child {
	border-top: 0;
	padding-top: 0;
}

.mini-cart__thumb {
	overflow: hidden;
	width: 4.5rem;
	height: 4.5rem;
	background: #f3f4f1;
	border-radius: var(--r-sm);
}

.mini-cart__thumb img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.mini-cart__info {
	display: flex;
	flex-direction: column;
	min-width: 0;
	gap: 0.55rem;
}

.mini-cart__row {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 0.75rem;
}

.mini-cart__name {
	margin: 0;
	font-size: 0.9375rem;
	font-weight: 600;
	line-height: 1.35;
	color: var(--ink);
}

.mini-cart__name a:hover {
	color: var(--gold-deep);
}

.mini-cart__price {
	margin: 0;
	flex: 0 0 auto;
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1.35;
	color: var(--ink);
	white-space: nowrap;
}

.mini-cart__info .variation {
	margin: 0;
	font-size: 0.75rem;
	line-height: 1.4;
	color: var(--ink-soft);
}

.mini-cart__controls {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
}

.mini-cart__qty {
	display: inline-flex;
	align-items: center;
	height: 40px;
	border: 1px solid var(--line);
	border-radius: var(--r-pill);
	background: var(--white);
}

.mini-cart__qty-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--ink);
	font-size: 1.05rem;
	line-height: 1;
	cursor: pointer;
}

.mini-cart__qty-btn:hover {
	color: var(--gold-deep);
}

.mini-cart__qty-input {
	width: 2.25rem;
	height: 40px;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--ink);
	font-size: 0.875rem;
	font-weight: 600;
	text-align: center;
	-moz-appearance: textfield;
	appearance: textfield;
}

.mini-cart__qty-input::-webkit-outer-spin-button,
.mini-cart__qty-input::-webkit-inner-spin-button {
	margin: 0;
	-webkit-appearance: none;
}

.mini-cart__remove {
	font-size: 0.8125rem;
	font-weight: 500;
	color: var(--ink-soft);
	text-decoration: underline;
	text-underline-offset: 0.18em;
}

.mini-cart__remove:hover {
	color: var(--ink);
}

.mini-cart__footer {
	flex-shrink: 0;
	margin-top: auto;
	padding-top: 1.15rem;
	border-top: 1px solid var(--line);
}

.mini-cart__totals {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 0.35rem;
	font-size: 0.9375rem;
}

.mini-cart__totals strong {
	font-size: 1.125rem;
	font-weight: 700;
}

.mini-cart__hint {
	margin-bottom: 1rem;
	font-size: 0.75rem;
	line-height: 1.45;
	color: var(--ink-soft);
}

.mini-cart__checkout {
	width: 100%;
	min-height: 48px;
}

.mini-cart__cart-link {
	display: none !important;
}

.mini-cart__continue {
	display: block;
	width: 100%;
	margin-top: 0.7rem;
	padding: 0;
	border: 0;
	background: none;
	color: var(--ink-soft);
	font: inherit;
	font-size: 0.8125rem;
	font-weight: 500;
	text-align: center;
	cursor: pointer;
}

.mini-cart__cart-link:hover,
.mini-cart__continue:hover {
	color: var(--ink);
}

.mini-cart__empty {
	display: grid;
	justify-items: start;
	gap: 0.65rem;
	padding: 1.5rem 0 0.5rem;
}

.mini-cart__empty-title {
	font-family: var(--font-display);
	font-size: 1.25rem;
	font-weight: 400;
	color: var(--ink);
}

.mini-cart__empty-text {
	margin-bottom: 0.5rem;
	font-size: 0.9375rem;
	line-height: 1.5;
	color: var(--ink-soft);
}

.mini-cart.is-busy .mini-cart__qty-btn,
.mini-cart.is-busy .mini-cart__qty-input {
	pointer-events: none;
	opacity: 0.55;
}

body.is-cart-open {
	overflow: hidden;
}

@media (min-width: 768px) {
	.mini-cart__top,
	.mini-cart__panel {
		padding-inline: 1.5rem;
	}

	.mini-cart__top {
		padding-top: 1.5rem;
	}

	.mini-cart__panel {
		padding-bottom: 1.5rem;
	}
}
