:root {
	--cs-ink: #201813;
	--cs-muted: #6f6259;
	--cs-line: #e8e0d8;
	--cs-paper: #fffaf4;
	--cs-clay: #b85f38;
	--cs-sage: #5f7560;
	--cs-brass: #c79b45;
	--cs-cream: #f7efe5;
	--cs-white: #fff;
	--cs-shadow: 0 18px 50px rgba(50, 35, 24, .12);
	--cs-radius: 8px;
	--cs-max: 1240px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--cs-paper);
	color: var(--cs-ink);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.55;
	text-rendering: optimizeLegibility;
}

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

a {
	color: inherit;
	text-decoration-thickness: .08em;
	text-underline-offset: .18em;
}

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

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

.skip-link:focus {
	z-index: 10000;
	top: 12px;
	left: 12px;
	clip: auto;
	width: auto;
	height: auto;
	padding: 10px 14px;
	background: var(--cs-ink);
	color: var(--cs-white);
}

.cs-site-header {
	position: sticky;
	z-index: 50;
	top: 0;
	border-bottom: 1px solid rgba(32, 24, 19, .1);
	background: rgba(255, 250, 244, .94);
	backdrop-filter: blur(16px);
}

.cs-announcement {
	display: flex;
	justify-content: center;
	gap: 28px;
	padding: 8px 18px;
	background: var(--cs-ink);
	color: var(--cs-white);
	font-size: 13px;
}

.cs-header-inner {
	display: grid;
	grid-template-columns: minmax(160px, 220px) 1fr auto;
	align-items: center;
	gap: 24px;
	max-width: var(--cs-max);
	margin: 0 auto;
	padding: 14px 24px;
}

.cs-logo-text,
.custom-logo-link {
	display: inline-flex;
	align-items: center;
	color: var(--cs-ink);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 27px;
	font-weight: 700;
	letter-spacing: 0;
	text-decoration: none;
}

.custom-logo {
	max-height: 52px;
	width: auto;
}

.cs-primary-nav ul,
.cs-site-footer ul {
	display: flex;
	align-items: center;
	gap: 24px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.cs-primary-nav a {
	font-size: 14px;
	font-weight: 650;
	text-decoration: none;
}

.cs-header-actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

.cs-search-form {
	display: flex;
	align-items: center;
	min-width: 260px;
	border: 1px solid var(--cs-line);
	background: var(--cs-white);
}

.cs-search-form input {
	width: 100%;
	min-width: 0;
	border: 0;
	background: transparent;
	padding: 10px 12px;
	outline: 0;
}

.cs-search-form button,
.cs-button,
.button,
.added_to_cart,
.single_add_to_cart_button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	border: 0;
	border-radius: var(--cs-radius);
	background: var(--cs-ink);
	color: var(--cs-white);
	padding: 10px 16px;
	font-weight: 750;
	text-decoration: none;
	cursor: pointer;
	transition: transform .18s ease, background .18s ease;
}

.cs-search-form button {
	border-radius: 0;
	background: var(--cs-clay);
}

.button:hover,
.cs-button:hover,
.single_add_to_cart_button:hover {
	transform: translateY(-1px);
	background: #3a2a20;
}

.cs-cart-link {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 42px;
	border: 1px solid var(--cs-line);
	border-radius: var(--cs-radius);
	background: var(--cs-white);
	padding: 9px 12px;
	font-weight: 750;
	text-decoration: none;
}

.cs-cart-count {
	display: inline-grid;
	place-items: center;
	min-width: 22px;
	height: 22px;
	border-radius: 999px;
	background: var(--cs-clay);
	color: var(--cs-white);
	font-size: 12px;
}

.site-main {
	min-height: 65vh;
}

.cs-page-shell,
.cs-shop-shell,
.cs-recently-viewed {
	max-width: var(--cs-max);
	margin: 0 auto;
	padding: 56px 24px;
}

.cs-hero {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
	gap: 28px;
	align-items: stretch;
	max-width: var(--cs-max);
	margin: 0 auto;
	padding: 34px 24px 24px;
	min-height: 560px;
}

.cs-hero-copy {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	border-radius: var(--cs-radius);
	background:
		linear-gradient(180deg, rgba(32, 24, 19, .08), rgba(32, 24, 19, .76)),
		radial-gradient(circle at 18% 12%, rgba(199, 155, 69, .5), transparent 32%),
		linear-gradient(135deg, #8b4a2b, #2a2019 58%, #5f7560);
	color: var(--cs-white);
	padding: clamp(28px, 6vw, 72px);
}

.cs-hero-copy p,
.cs-section-head p,
.cs-maker-band p {
	margin: 0 0 10px;
	color: var(--cs-clay);
	font-size: 13px;
	font-weight: 850;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.cs-hero-copy p {
	color: #ffd891;
}

.cs-hero h1 {
	max-width: 780px;
	margin: 0 0 24px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(42px, 7vw, 86px);
	line-height: .95;
	letter-spacing: 0;
}

.cs-hero-panel {
	display: grid;
	align-content: end;
	gap: 12px;
	border: 1px solid var(--cs-line);
	border-radius: var(--cs-radius);
	background:
		linear-gradient(180deg, rgba(255, 250, 244, .72), rgba(255, 250, 244, .96)),
		repeating-linear-gradient(45deg, rgba(32, 24, 19, .08) 0 1px, transparent 1px 12px);
	padding: 28px;
}

.cs-hero-panel span {
	display: block;
	border-bottom: 1px solid var(--cs-line);
	padding: 18px 0;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(28px, 4vw, 52px);
}

.cs-section-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 24px;
}

.cs-section-head h2,
.cs-maker-band h2,
.cs-content h1,
.cs-empty-state h1 {
	margin: 0;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(30px, 4vw, 52px);
	line-height: 1.02;
}

.cs-product-grid,
.woocommerce ul.products {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.cs-product-card,
.woocommerce ul.products li.product {
	position: relative;
	float: none;
	width: auto;
	margin: 0;
	overflow: hidden;
	border: 1px solid var(--cs-line);
	border-radius: var(--cs-radius);
	background: var(--cs-white);
	box-shadow: 0 1px 0 rgba(32, 24, 19, .04);
}

.cs-product-image {
	position: relative;
	display: block;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	background: var(--cs-cream);
	text-decoration: none;
}

.cs-product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .38s ease;
}

.cs-product-card:hover .cs-product-image img {
	transform: scale(1.045);
}

.onsale,
.cs-card-badges span {
	position: absolute;
	z-index: 2;
	top: 12px;
	left: 12px;
	border-radius: 999px;
	background: var(--cs-brass);
	color: var(--cs-ink);
	padding: 6px 10px;
	font-size: 12px;
	font-weight: 850;
}

.cs-card-badges {
	position: absolute;
	z-index: 3;
	top: 12px;
	right: 12px;
	display: grid;
	gap: 6px;
}

.cs-card-badges span {
	position: static;
	background: var(--cs-sage);
	color: var(--cs-white);
}

.cs-product-info {
	display: grid;
	gap: 10px;
	padding: 14px;
}

.woocommerce-loop-product__title {
	margin: 0;
	font-size: 16px;
	line-height: 1.25;
}

.woocommerce-loop-product__title a {
	text-decoration: none;
}

.cs-product-meta-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.price {
	color: var(--cs-ink);
	font-weight: 850;
}

.price del {
	color: var(--cs-muted);
	font-weight: 500;
}

.price ins {
	text-decoration: none;
}

.star-rating {
	overflow: hidden;
	height: 1em;
	color: var(--cs-brass);
	font-size: 13px;
	line-height: 1;
}

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

.woocommerce-ordering select,
.quantity .qty,
.variations select {
	min-height: 42px;
	border: 1px solid var(--cs-line);
	border-radius: var(--cs-radius);
	background: var(--cs-white);
	padding: 8px 10px;
}

.product .summary {
	display: grid;
	gap: 16px;
}

.single-product div.product {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
	gap: 44px;
	align-items: start;
}

.single-product .product_title {
	margin: 0;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(34px, 5vw, 64px);
	line-height: 1;
}

.single-product .woocommerce-product-gallery,
.single-product .summary {
	float: none;
	width: auto;
}

.single-product .woocommerce-product-gallery {
	overflow: hidden;
	border-radius: var(--cs-radius);
	background: var(--cs-cream);
}

.cs-story-strip {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	margin: 10px 0;
}

.cs-story-strip div {
	border: 1px solid var(--cs-line);
	border-radius: var(--cs-radius);
	background: var(--cs-white);
	padding: 14px;
}

.cs-story-strip strong,
.cs-story-strip span {
	display: block;
}

.cs-story-strip span {
	margin-top: 4px;
	color: var(--cs-muted);
	font-size: 14px;
}

.cs-maker-band {
	display: grid;
	grid-template-columns: minmax(0, .95fr) minmax(280px, .65fr);
	gap: 32px;
	align-items: center;
	margin: 34px auto 72px;
	max-width: var(--cs-max);
	padding: 42px 24px;
	border-block: 1px solid var(--cs-line);
}

.cs-maker-band ul {
	display: grid;
	gap: 14px;
	margin: 0;
	padding-left: 20px;
	color: var(--cs-muted);
}

.cs-site-footer {
	background: var(--cs-ink);
	color: var(--cs-white);
	padding: 44px 24px 90px;
}

.cs-footer-grid {
	display: grid;
	grid-template-columns: 1.2fr .8fr .8fr;
	gap: 32px;
	max-width: var(--cs-max);
	margin: 0 auto;
}

.cs-site-footer .cs-logo-text {
	color: var(--cs-white);
}

.cs-site-footer h2 {
	margin: 0 0 10px;
	font-size: 16px;
}

.cs-site-footer p,
.cs-footer-bottom {
	color: rgba(255, 255, 255, .72);
}

.cs-site-footer ul {
	display: grid;
	gap: 10px;
	align-items: start;
}

.cs-site-footer a {
	color: var(--cs-white);
	text-decoration: none;
}

.cs-footer-bottom {
	max-width: var(--cs-max);
	margin: 32px auto 0;
	font-size: 13px;
}

.cs-mobile-bar {
	position: fixed;
	z-index: 60;
	right: 12px;
	bottom: 12px;
	left: 12px;
	display: none;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
	border: 1px solid rgba(255, 255, 255, .18);
	border-radius: var(--cs-radius);
	background: rgba(32, 24, 19, .94);
	padding: 8px;
	box-shadow: var(--cs-shadow);
	backdrop-filter: blur(14px);
}

.cs-mobile-bar a {
	display: grid;
	place-items: center;
	min-height: 42px;
	border-radius: 6px;
	color: var(--cs-white);
	font-weight: 800;
	text-decoration: none;
}

.cs-mobile-bar a:active {
	background: rgba(255, 255, 255, .12);
}

.cs-confetti {
	position: fixed;
	z-index: 9999;
	pointer-events: none;
	inset: 0;
	overflow: hidden;
}

.cs-confetti i {
	position: absolute;
	top: -10px;
	width: 9px;
	height: 16px;
	border-radius: 2px;
	animation: cs-confetti-fall 900ms ease-out forwards;
}

.cs-toast {
	position: fixed;
	z-index: 10000;
	right: 18px;
	bottom: 24px;
	max-width: min(360px, calc(100vw - 36px));
	border-radius: var(--cs-radius);
	background: var(--cs-ink);
	color: var(--cs-white);
	padding: 13px 16px;
	box-shadow: var(--cs-shadow);
	font-weight: 800;
	transform: translateY(18px);
	opacity: 0;
	transition: transform .2s ease, opacity .2s ease;
}

.cs-toast.is-visible {
	transform: translateY(0);
	opacity: 1;
}

@keyframes cs-confetti-fall {
	to {
		transform: translate3d(var(--x), 105vh, 0) rotate(520deg);
		opacity: 0;
	}
}

@media (max-width: 1024px) {
	.cs-header-inner {
		grid-template-columns: 1fr auto;
	}

	.cs-primary-nav {
		grid-column: 1 / -1;
		overflow-x: auto;
		padding-bottom: 2px;
	}

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

	.single-product div.product {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 760px) {
	body {
		padding-bottom: 74px;
	}

	.cs-announcement {
		justify-content: flex-start;
		overflow-x: auto;
		white-space: nowrap;
	}

	.cs-header-inner {
		display: flex;
		flex-wrap: wrap;
		gap: 12px;
		padding: 12px 16px;
	}

	.cs-brand {
		flex: 1 1 auto;
	}

	.cs-logo-text {
		font-size: 24px;
	}

	.cs-header-actions {
		width: 100%;
	}

	.cs-header-actions .cs-cart-link {
		display: none;
	}

	.cs-search-form {
		width: 100%;
		min-width: 0;
	}

	.cs-primary-nav ul {
		gap: 16px;
	}

	.cs-hero {
		grid-template-columns: 1fr;
		min-height: 0;
		padding: 18px 16px;
	}

	.cs-hero-copy {
		min-height: 460px;
	}

	.cs-hero-panel {
		display: none;
	}

	.cs-page-shell,
	.cs-shop-shell,
	.cs-recently-viewed {
		padding: 38px 16px;
	}

	.cs-section-head {
		display: block;
	}

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

	.cs-product-info {
		padding: 12px;
	}

	.cs-product-meta-row {
		display: grid;
	}

	.cs-product-meta-row .button {
		width: 100%;
		min-height: 40px;
		padding-inline: 10px;
		font-size: 13px;
	}

	.cs-story-strip,
	.cs-maker-band,
	.cs-footer-grid {
		grid-template-columns: 1fr;
	}

	.cs-maker-band {
		margin-bottom: 38px;
		padding: 34px 16px;
	}

	.cs-site-footer {
		padding-inline: 16px;
	}

	.cs-mobile-bar {
		display: grid;
	}

	.cs-toast {
		right: 12px;
		bottom: 86px;
	}
}

@media (max-width: 420px) {
	.cs-product-grid,
	.woocommerce ul.products {
		gap: 10px;
	}

	.woocommerce-loop-product__title {
		font-size: 14px;
	}

	.price {
		font-size: 14px;
	}
}
