:root {
	--color-ink: #141414;
	--color-muted: #65635e;
	--color-line: #dedbd2;
	--color-surface: #ffffff;
	--color-soft: #f5f4ef;
	--color-olive: #536456;
	--color-rust: #7b3f3f;
	--color-steel: #273747;
	--shadow-soft: 0 18px 40px rgba(20, 20, 20, 0.08);
	--page-max: 1480px;
	--header-height: 76px;
	--font-base: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--font-display: Georgia, "Times New Roman", serif;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--color-surface);
	color: var(--color-ink);
	font-family: var(--font-base);
	font-size: 15px;
	line-height: 1.55;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

body.nav-open,
body.filter-open {
	overflow: hidden;
}

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

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

a:hover {
	text-decoration: underline;
	text-underline-offset: 0.22em;
}

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

button,
.button,
.wp-element-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
	border: 1px solid var(--color-ink);
	border-radius: 3px;
	background: var(--color-ink);
	color: #ffffff;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 18px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1;
	text-transform: uppercase;
	transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

button:hover,
.button:hover,
.wp-element-button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
	background: #ffffff;
	color: var(--color-ink);
	text-decoration: none;
}

.button-secondary {
	background: #ffffff;
	color: var(--color-ink);
}

.button-secondary:hover {
	background: var(--color-soft);
}

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

.skip-link:focus {
	left: 20px;
	top: 20px;
	width: auto;
	height: auto;
	clip: auto;
	background: #ffffff;
	color: var(--color-ink);
	padding: 12px 16px;
	z-index: 1000;
}

.eyebrow {
	margin: 0 0 10px;
	color: var(--color-muted);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.section-wrap {
	width: min(var(--page-max), calc(100% - 48px));
	margin-inline: auto;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.woocommerce-noreviews,
p.no-comments {
	border: 1px solid var(--color-line);
	border-top: 3px solid var(--color-olive);
	background: #ffffff;
	color: var(--color-ink);
	padding: 16px 18px;
	list-style: none;
}
