:root {
	--shc-ink: #202a27;
	--shc-muted: #65716b;
	--shc-paper: #fcfaf6;
	--shc-line: #e5e2da;
	--shc-sage: #dbe7df;
	--shc-sage-deep: #3f6256;
	--shc-rose: #ead8d3;
	--shc-gold: #c9a85e;
	--shc-berry: #84565f;
	--shc-shell: 1380px;
	--shc-serif: Georgia, "Times New Roman", serif;
	--shc-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--shc-paper);
	color: var(--shc-ink);
	font-family: var(--shc-sans);
	font-size: 16px;
	line-height: 1.5;
}

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

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

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

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

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

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

.screen-reader-text:focus {
	z-index: 100000;
	top: 8px;
	left: 8px;
	width: auto;
	height: auto;
	padding: 12px 16px;
	clip: auto;
	background: #fff;
	color: #000;
}

.shc-announcement {
	min-height: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 7px 20px;
	background: #25332e;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .1em;
	text-align: center;
	text-transform: uppercase;
}

.shc-site-header {
	position: relative;
	z-index: 50;
	background: rgba(252, 250, 246, .98);
	border-bottom: 1px solid var(--shc-line);
}

.shc-header-main {
	min-height: 82px;
	display: grid;
	grid-template-columns: 286px minmax(280px, 1fr) auto;
	align-items: center;
	gap: 32px;
}

.shc-brand {
	display: inline-flex;
	align-items: center;
	gap: 13px;
	width: fit-content;
}

.shc-custom-logo {
	max-width: 250px;
	max-height: 62px;
	object-fit: contain;
}

.shc-brand-mark {
	width: 46px;
	height: 46px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	overflow: hidden;
	border: 1px solid #bdc9c2;
	border-radius: 14px 14px 14px 5px;
	background: #f5f1e8;
	box-shadow: 0 5px 18px rgba(55, 72, 64, .08);
	font-family: var(--shc-serif);
	font-size: 15px;
	font-weight: 700;
}

.shc-brand-mark span {
	display: grid;
	place-items: center;
}

.shc-brand-mark span:first-child {
	background: var(--shc-sage);
	color: #36584c;
}

.shc-brand-mark span:last-child {
	background: var(--shc-rose);
	color: #764e56;
}

.shc-brand-copy strong {
	display: block;
	font-family: var(--shc-serif);
	font-size: 20px;
	font-weight: 600;
	line-height: 1;
	white-space: nowrap;
}

.shc-brand-copy em {
	color: var(--shc-sage-deep);
	font-style: normal;
}

.shc-brand-copy small {
	display: block;
	margin-top: 5px;
	color: #747f79;
	font-size: 7px;
	font-weight: 800;
	letter-spacing: .16em;
	text-transform: uppercase;
	white-space: nowrap;
}

.shc-search {
	position: relative;
	width: 100%;
	max-width: 660px;
	justify-self: center;
}

.shc-search input {
	width: 100%;
	height: 48px;
	padding: 0 52px 0 20px;
	border: 1px solid #d9ddd8;
	border-radius: 7px;
	outline: 0;
	background: #fff;
	color: var(--shc-ink);
}

.shc-search input:focus {
	border-color: #789085;
	box-shadow: 0 0 0 3px rgba(104, 133, 119, .12);
}

.shc-search button {
	position: absolute;
	top: 0;
	right: 0;
	width: 52px;
	height: 48px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.shc-search button span {
	position: relative;
	width: 16px;
	height: 16px;
	display: block;
	margin: auto;
	border: 1.8px solid #5c6963;
	border-radius: 50%;
}

.shc-search button span::after {
	content: "";
	position: absolute;
	right: -5px;
	bottom: -3px;
	width: 7px;
	height: 2px;
	border-radius: 2px;
	background: #5c6963;
	transform: rotate(45deg);
}

.shc-account-actions {
	display: flex;
	align-items: center;
	gap: 22px;
	font-size: 11px;
	font-weight: 700;
	white-space: nowrap;
}

.shc-account-actions a:hover,
.shc-primary-nav a:hover {
	color: var(--shc-sage-deep);
}

.shc-bag-link {
	display: inline-flex;
	align-items: center;
	gap: 7px;
}

.shc-cart-count {
	min-width: 21px;
	height: 21px;
	display: inline-grid;
	place-items: center;
	padding-inline: 5px;
	border-radius: 50%;
	background: var(--shc-ink);
	color: #fff;
	font-size: 9px;
}

.shc-primary-nav {
	border-top: 1px solid var(--shc-line);
}

.shc-menu,
.shc-fallback-menu {
	min-height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(18px, 2.4vw, 36px);
	margin: 0;
	padding: 0;
	list-style: none;
}

.shc-menu li,
.shc-fallback-menu li {
	position: relative;
}

.shc-menu a,
.shc-fallback-menu a {
	display: block;
	padding-block: 15px;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .035em;
}

.shc-menu .sub-menu {
	position: absolute;
	z-index: 20;
	top: 100%;
	left: -18px;
	min-width: 210px;
	display: none;
	margin: 0;
	padding: 10px 18px;
	border: 1px solid var(--shc-line);
	background: #fff;
	box-shadow: 0 14px 35px rgba(36, 48, 43, .12);
	list-style: none;
}

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

.shc-menu-toggle {
	display: none;
	width: 42px;
	height: 42px;
	padding: 11px;
	border: 0;
	background: transparent;
}

.shc-menu-toggle > span:not(.screen-reader-text) {
	display: block;
	width: 20px;
	height: 1.5px;
	margin: 5px 0;
	background: var(--shc-ink);
}

.shc-eyebrow {
	margin: 0 0 16px;
	color: var(--shc-sage-deep);
	font-size: 9px;
	font-weight: 900;
	letter-spacing: .16em;
	text-transform: uppercase;
}

.shc-hero {
	overflow: hidden;
	background:
		radial-gradient(circle at 78% 22%, rgba(221, 190, 184, .55), transparent 26%),
		linear-gradient(115deg, #faf6ef 0%, #e7eee8 100%);
}

.shc-hero-inner {
	min-height: 660px;
	display: grid;
	grid-template-columns: minmax(430px, 1fr) minmax(430px, .95fr);
	gap: 70px;
	align-items: center;
	padding-block: 80px;
}

.shc-hero-copy h1,
.shc-section-heading h2,
.shc-membership-copy h2,
.shc-story-inner h2,
.shc-page-heading h1,
.shc-page-hero h1,
.shc-not-found h1 {
	margin: 0;
	font-family: var(--shc-serif);
	font-weight: 500;
	letter-spacing: -.045em;
	line-height: 1;
}

.shc-hero-copy h1 {
	max-width: 690px;
	font-size: clamp(48px, 6vw, 82px);
}

.shc-hero-copy > p:not(.shc-eyebrow) {
	max-width: 650px;
	margin: 27px 0 0;
	color: var(--shc-muted);
	font-size: 15px;
	line-height: 1.75;
}

.shc-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 34px;
}

.shc-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
	min-height: 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 22px;
	border: 1px solid var(--shc-ink);
	border-radius: 4px;
	font-size: 10px;
	font-weight: 900;
	letter-spacing: .055em;
	text-transform: uppercase;
	transition: transform .16s ease, background .16s ease, color .16s ease;
}

.shc-button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
	transform: translateY(-1px);
}

.shc-button-dark,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce a.button.alt,
.woocommerce button.button.alt {
	background: var(--shc-ink);
	color: #fff;
}

.shc-button-light {
	background: transparent;
	color: var(--shc-ink);
}

.shc-trust-row {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 24px;
	margin-top: 35px;
	color: #68756e;
	font-size: 9px;
	font-weight: 700;
}

.shc-trust-row span::before {
	content: "✓";
	margin-right: 6px;
	color: var(--shc-sage-deep);
}

.shc-paper-display {
	position: relative;
	min-height: 500px;
}

.shc-paper {
	position: absolute;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 32px;
	border: 1px solid rgba(83, 88, 77, .15);
	box-shadow: 0 28px 60px rgba(53, 63, 56, .16);
	font-family: var(--shc-serif);
}

.shc-paper span,
.shc-paper small {
	font-family: var(--shc-sans);
	font-size: 8px;
	font-weight: 900;
	letter-spacing: .16em;
}

.shc-paper-back {
	top: 4%;
	left: 5%;
	width: 52%;
	height: 78%;
	background: #d4e2da;
	transform: rotate(-8deg);
}

.shc-paper-main {
	z-index: 2;
	top: 1%;
	left: 22%;
	width: 54%;
	height: 92%;
	background:
		radial-gradient(circle at 65% 34%, #c89098 0 8%, transparent 9%),
		radial-gradient(circle at 38% 50%, #9ab29e 0 12%, transparent 13%),
		linear-gradient(145deg, #f6ecd8, #e8d6cf);
	transform: rotate(2deg);
}

.shc-paper-main strong {
	font-size: clamp(34px, 4vw, 58px);
	font-weight: 500;
	line-height: .95;
}

.shc-paper-front {
	z-index: 3;
	right: 1%;
	bottom: 0;
	width: 39%;
	height: 60%;
	background: #e7d4cf;
	transform: rotate(7deg);
}

.shc-specimen {
	position: absolute;
	z-index: 5;
	width: 76px;
	height: 76px;
	display: grid;
	place-items: center;
	border: 8px solid #fff;
	border-radius: 50%;
	box-shadow: 0 12px 26px rgba(50, 57, 52, .18);
	background: #758d7f;
	color: #fff;
	font-size: 30px;
}

.shc-specimen-one {
	right: 6%;
	top: 13%;
}

.shc-specimen-two {
	left: 2%;
	bottom: 5%;
	background: #9a7178;
}

.shc-category-section,
.shc-story-section {
	padding-block: 88px;
}

.shc-section-heading {
	display: flex;
	justify-content: space-between;
	align-items: end;
	gap: 30px;
	margin-bottom: 38px;
}

.shc-section-heading h2,
.shc-membership-copy h2,
.shc-story-inner h2 {
	font-size: clamp(36px, 4vw, 56px);
}

.shc-section-heading > a,
.shc-story-inner a {
	padding-bottom: 5px;
	border-bottom: 1px solid var(--shc-ink);
	font-size: 10px;
	font-weight: 800;
}

.shc-category-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 14px;
}

.shc-category-card {
	min-height: 230px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 25px;
	border: 1px solid rgba(50, 64, 57, .08);
	transition: transform .2s ease, box-shadow .2s ease;
}

.shc-category-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 34px rgba(52, 63, 57, .09);
}

.shc-category-card > span {
	width: 44px;
	height: 44px;
	margin-bottom: auto;
	border: 1px solid currentColor;
	border-radius: 50% 50% 50% 15%;
	opacity: .45;
}

.shc-category-card h3 {
	margin: 20px 0 7px;
	font-family: var(--shc-serif);
	font-size: 20px;
	font-weight: 500;
}

.shc-category-card p {
	margin: 0;
	color: var(--shc-muted);
	font-size: 9px;
	line-height: 1.55;
}

.shc-tone-rose { background: #f1e4df; }
.shc-tone-sage { background: #e4ece6; }
.shc-tone-gold { background: #eee5d1; }
.shc-tone-blue { background: #e1eaeb; }
.shc-tone-lilac { background: #e9e3ec; }
.shc-tone-clay { background: #eae0d5; }

.shc-products-section {
	padding-block: 85px 100px;
	border-block: 1px solid var(--shc-line);
	background: #f6f3ed;
}

.shc-empty-products {
	min-height: 260px;
	display: grid;
	place-items: center;
	border: 1px solid var(--shc-line);
	background: #fff;
	color: var(--shc-muted);
	text-align: center;
}

.shc-membership-section {
	padding-block: 95px;
	background: #283832;
	color: #fff;
}

.shc-membership-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 90px;
	align-items: center;
}

.shc-membership-copy .shc-eyebrow {
	color: #b5c9bf;
}

.shc-membership-copy > p:not(.shc-eyebrow) {
	max-width: 620px;
	color: #cad4cf;
	line-height: 1.75;
}

.shc-membership-copy .shc-button {
	margin-top: 18px;
	border-color: #fff;
	color: #fff;
}

.shc-plan-mini {
	display: grid;
	grid-template-columns: 1fr 1fr;
	border: 1px solid rgba(255, 255, 255, .24);
}

.shc-plan-mini > div {
	min-height: 230px;
	display: flex;
	flex-direction: column;
	padding: 30px;
}

.shc-plan-mini > div + div {
	border-left: 1px solid rgba(255, 255, 255, .24);
	background: rgba(255, 255, 255, .06);
}

.shc-plan-mini span {
	font-size: 10px;
	font-weight: 900;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.shc-plan-mini strong {
	margin: auto 0 6px;
	font-family: var(--shc-serif);
	font-size: 42px;
	font-weight: 500;
}

.shc-plan-mini small {
	color: #c8d3ce;
}

.shc-story-inner {
	display: grid;
	grid-template-columns: 260px 1fr;
	gap: 70px;
	align-items: center;
}

.shc-maker-mark {
	aspect-ratio: 1;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	place-items: center;
	padding: 22%;
	border-radius: 50% 50% 50% 18%;
	background: linear-gradient(135deg, var(--shc-sage), #f4eee1 52%, var(--shc-rose));
	box-shadow: 0 20px 50px rgba(55, 71, 64, .1);
	font-family: var(--shc-serif);
	font-size: 44px;
}

.shc-maker-mark small {
	font-size: 16px;
}

.shc-story-inner > div:last-child > p:not(.shc-eyebrow) {
	max-width: 720px;
	color: var(--shc-muted);
	line-height: 1.75;
}

.shc-page-main,
.shc-single-main,
.shc-archive-main,
.shc-woocommerce-main {
	min-height: 540px;
	padding-block: 55px 100px;
}

.shc-content-page {
	max-width: 980px;
}

.shc-page-heading {
	padding-bottom: 34px;
	border-bottom: 1px solid var(--shc-line);
}

.shc-page-heading h1,
.shc-page-hero h1,
.shc-not-found h1 {
	font-size: clamp(44px, 6vw, 72px);
}

.shc-entry-content {
	padding-block: 38px;
	color: #3f4a45;
	line-height: 1.8;
}

.shc-entry-content h2,
.shc-entry-content h3 {
	font-family: var(--shc-serif);
	font-weight: 500;
}

.shc-featured-image {
	margin-top: 38px;
}

.shc-page-hero {
	padding-block: 80px;
	border-bottom: 1px solid var(--shc-line);
	background: linear-gradient(115deg, #e7ece6, #f7f1e8);
}

.shc-page-hero p:last-child {
	max-width: 700px;
	color: var(--shc-muted);
}

.shc-membership-plans {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 22px;
padding-block: 80px 110px;
}

.shc-membership-plans article {
min-height: 500px;
padding: clamp(34px, 5vw, 60px);
border: 1px solid var(--shc-line);
background: #fff;
}

.shc-membership-plans .shc-plan-featured {
background: #283832;
color: #fff;
}

.shc-membership-plans h2 {
margin: 30px 0;
font-family: var(--shc-serif);
font-size: 52px;
font-weight: 500;
}

.shc-membership-plans h2 small {
font-family: var(--shc-sans);
font-size: 12px;
font-weight: 500;
}

.shc-membership-plans li {
margin-block: 12px;
color: var(--shc-muted);
}

.shc-plan-featured li {
color: #d0dad5;
}

.shc-post-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px 24px;
	padding-top: 45px;
}

.shc-post-image {
	aspect-ratio: 4 / 3;
	display: block;
	overflow: hidden;
	margin-bottom: 20px;
}

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

.shc-post-card h2 {
	margin: 0;
	font-family: var(--shc-serif);
	font-size: 26px;
	font-weight: 500;
}

.shc-post-card > p:not(.shc-eyebrow) {
	color: var(--shc-muted);
	font-size: 13px;
}

.shc-not-found {
	min-height: 650px;
	display: grid;
	place-content: center;
	justify-items: center;
	padding-block: 80px;
	text-align: center;
}

.shc-not-found > span {
	color: var(--shc-berry);
	font-size: 38px;
}

.shc-not-found > p:not(.shc-eyebrow) {
	max-width: 600px;
	color: var(--shc-muted);
}

.shc-not-found .shc-button {
	margin-top: 18px;
}

.shc-site-footer {
	padding-top: 68px;
	border-top: 1px solid var(--shc-line);
	background: #f1eee7;
}

.shc-footer-grid {
	display: grid;
	grid-template-columns: 2fr repeat(3, 1fr);
	gap: 55px;
	padding-bottom: 58px;
}

.shc-footer-brand p {
	max-width: 330px;
	color: var(--shc-muted);
	font-size: 11px;
	line-height: 1.7;
}

.shc-footer-grid > div:not(:first-child) {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.shc-footer-grid > div:not(:first-child) strong {
	margin-bottom: 5px;
	font-family: var(--shc-serif);
	font-size: 17px;
	font-weight: 500;
}

.shc-footer-grid > div:not(:first-child) a {
	color: var(--shc-muted);
	font-size: 10px;
}

.shc-footer-grid > div:not(:first-child) a:hover {
	color: var(--shc-sage-deep);
}

.shc-footer-bottom {
	min-height: 65px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	border-top: 1px solid #dedbd2;
	color: #6f7974;
	font-size: 9px;
}

/* WooCommerce: hook-based styling keeps plugin template updates safe. */
.woocommerce .woocommerce-breadcrumb {
	margin-bottom: 35px;
	color: #7a857f;
	font-size: 10px;
}

.woocommerce-products-header {
	margin-bottom: 45px;
	padding: 60px;
	background: linear-gradient(115deg, #f8f2e9, #e6eee8);
}

.woocommerce-products-header__title,
.woocommerce div.product .product_title,
.woocommerce-cart .entry-title,
.woocommerce-checkout .entry-title {
	font-family: var(--shc-serif);
	font-size: clamp(42px, 5vw, 66px);
	font-weight: 500;
	letter-spacing: -.04em;
	line-height: 1;
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
	font-size: 11px;
}

.woocommerce .woocommerce-ordering select {
	min-height: 42px;
	padding: 0 35px 0 12px;
	border: 1px solid var(--shc-line);
	background: #fff;
}

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

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

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

.woocommerce ul.products li.product a img {
	width: 100%;
	aspect-ratio: 1;
	margin: 0 0 18px;
	border-radius: 5px;
	background: #e8e5dd;
	object-fit: cover;
	object-position: center;
	transition: transform .2s ease, box-shadow .2s ease;
}

.woocommerce ul.products li.product:hover a img {
	transform: translateY(-3px);
	box-shadow: 0 16px 30px rgba(45, 57, 51, .1);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
	padding: 0;
	font-family: var(--shc-serif);
	font-size: 18px;
	font-weight: 500;
	line-height: 1.25;
}

.woocommerce ul.products li.product .price {
	margin-top: 7px;
	color: var(--shc-ink);
	font-size: 14px;
	font-weight: 800;
}

.shc-loop-excerpt {
	min-height: 46px;
	margin: 9px 0 14px;
	color: var(--shc-muted);
	font-size: 10px;
	line-height: 1.6;
}

.woocommerce ul.products li.product .button {
	width: 100%;
	margin-top: 9px;
}

.shc-product-badges {
	position: absolute;
	z-index: 4;
	top: 10px;
	left: 10px;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.single-product .summary .shc-product-badges {
	position: static;
	margin-bottom: 15px;
}

.shc-badge {
	padding: 6px 9px;
	border-radius: 2px;
	background: #fff;
	color: var(--shc-ink);
	box-shadow: 0 4px 14px rgba(40, 50, 45, .08);
	font-size: 8px;
	font-weight: 900;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.shc-badge-new {
	background: var(--shc-sage-deep);
	color: #fff;
}

.shc-badge-premium {
	background: #d0ae64;
	color: #2d2a23;
}

.shc-badge-sale {
	background: var(--shc-berry);
	color: #fff;
}

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

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
	width: calc(50% - 45px);
}

.woocommerce div.product div.images img {
	width: 100%;
	background: #ebe8df;
	object-fit: contain;
}

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

.woocommerce div.product p.price,
.woocommerce div.product span.price {
	color: var(--shc-ink);
	font-size: 22px;
	font-weight: 800;
}

.woocommerce-product-details__short-description {
	color: var(--shc-muted);
	line-height: 1.75;
}

.woocommerce div.product form.cart {
	display: flex;
	gap: 10px;
	margin-top: 28px;
}

.woocommerce .quantity .qty {
	min-height: 48px;
	border: 1px solid var(--shc-line);
}

.shc-digital-note {
	display: grid;
	gap: 9px;
	margin-top: 25px;
	padding-top: 22px;
	border-top: 1px solid var(--shc-line);
	color: var(--shc-muted);
	font-size: 10px;
}

.shc-image-note {
	clear: both;
	padding-top: 35px;
	color: var(--shc-muted);
	font-size: 10px;
}

.woocommerce div.product .woocommerce-tabs {
	padding-top: 45px;
}

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

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
	border-color: var(--shc-line);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
	border-color: var(--shc-line);
	background: #f2efe8;
}

.woocommerce table.shop_table {
	border-color: var(--shc-line);
	border-radius: 0;
	background: #fff;
}

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

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.select2-container--default .select2-selection--single {
	min-height: 48px;
	padding: 11px 13px;
	border: 1px solid #d9ddd8;
	border-radius: 3px;
	background: #fff;
}

.woocommerce-info,
.woocommerce-message,
.woocommerce-error {
	border-top-color: var(--shc-sage-deep);
	background: #eef2ed;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
	margin: 0;
	padding: 0;
	border: 1px solid var(--shc-line);
	list-style: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation li + li {
	border-top: 1px solid var(--shc-line);
}

.woocommerce-account .woocommerce-MyAccount-navigation a {
	display: block;
	padding: 13px 16px;
}

.shc-template-canvas {
	background: #fff;
}

@media (max-width: 1100px) {
	.shc-shell {
		width: min(100% - 40px, 960px);
	}

	.shc-header-main {
		grid-template-columns: 250px 1fr auto;
		gap: 18px;
	}

	.shc-account-actions > a:not(.shc-bag-link) {
		display: none;
	}

	.shc-category-grid {
		grid-template-columns: repeat(3, 1fr);
	}

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

@media (max-width: 850px) {
	body.admin-bar .shc-site-header {
		top: 46px;
	}

	.shc-header-main {
		min-height: 72px;
		grid-template-columns: 44px 1fr auto;
	}

	.shc-menu-toggle {
		display: block;
	}

	.shc-search {
		grid-column: 1 / -1;
		grid-row: 2;
		max-width: none;
		margin-bottom: 14px;
	}

	.shc-primary-nav {
		display: none;
	}

	.shc-primary-nav.is-open {
		display: block;
	}

	.shc-menu,
	.shc-fallback-menu {
		display: block;
		padding-block: 12px;
	}

	.shc-menu a,
	.shc-fallback-menu a {
		padding: 10px 4px;
	}

	.shc-menu .sub-menu {
		position: static;
		display: block;
		margin-left: 16px;
		border: 0;
		box-shadow: none;
		background: transparent;
	}

	.shc-hero-inner {
		grid-template-columns: 1fr;
		gap: 40px;
		padding-block: 64px;
	}

	.shc-paper-display {
		min-height: 460px;
	}

	.shc-membership-inner,
	.shc-story-inner {
		grid-template-columns: 1fr;
	}

	.shc-maker-mark {
		width: 220px;
	}

	.shc-membership-plans {
		grid-template-columns: 1fr;
	}

	.shc-footer-grid {
		grid-template-columns: 1.5fr 1fr 1fr;
	}

	.shc-footer-grid > div:last-child {
		grid-column: 2 / -1;
	}

	.woocommerce div.product div.images,
	.woocommerce div.product div.summary {
		width: 100%;
		float: none;
	}
}

@media (max-width: 620px) {
	.shc-shell {
		width: min(100% - 28px, 560px);
	}

	.shc-announcement {
		font-size: 9px;
	}

	.shc-brand-copy small {
		display: none;
	}

	.shc-brand-copy strong {
		font-size: 17px;
	}

	.shc-account-actions {
		gap: 8px;
	}

	.shc-hero-inner {
		min-height: auto;
	}

	.shc-hero-copy h1 {
		font-size: 49px;
	}

	.shc-hero-actions {
		flex-direction: column;
	}

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

	.shc-paper-display {
		min-height: 350px;
	}

	.shc-paper {
		padding: 20px;
	}

	.shc-paper-main strong {
		font-size: 33px;
	}

	.shc-specimen {
		width: 56px;
		height: 56px;
		border-width: 6px;
		font-size: 21px;
	}

	.shc-category-section,
	.shc-story-section,
	.shc-products-section,
	.shc-membership-section {
		padding-block: 62px;
	}

	.shc-section-heading {
		align-items: flex-start;
		flex-direction: column;
	}

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

	.shc-category-card {
		min-height: 190px;
		padding: 19px;
	}

	.shc-plan-mini {
		grid-template-columns: 1fr;
	}

	.shc-plan-mini > div + div {
		border-top: 1px solid rgba(255, 255, 255, .24);
		border-left: 0;
	}

	.woocommerce-products-header {
		padding: 35px 24px;
	}

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

	.shc-loop-excerpt {
		display: none;
	}

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

	.woocommerce ul.products li.product .button {
		min-height: 42px;
		padding: 8px;
		font-size: 8px;
	}

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

	.shc-footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 38px 24px;
	}

	.shc-footer-grid > div:first-child,
	.shc-footer-grid > div:last-child {
		grid-column: 1 / -1;
	}

	.shc-footer-bottom {
		align-items: flex-start;
		flex-direction: column;
		justify-content: center;
		padding-block: 18px;
	}
}

