/* =========================================================================
   Bear Hugs — main stylesheet
   Warm ivory, hand-stitched design system for Debbie's Bear Hugs.
   Single light theme. No external requests; fonts are self-hosted.
   ========================================================================= */

/* -------------------------------------------------------------------------
   1. Fonts (self-hosted; graceful fallback if files are missing)
   ------------------------------------------------------------------------- */
@font-face {
	font-family: 'Lora';
	src: url('../fonts/lora-600.woff2') format('woff2');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Lora';
	src: url('../fonts/lora-700.woff2') format('woff2');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Great Vibes';
	src: url('../fonts/great-vibes-400.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Nunito Sans';
	src: url('../fonts/nunito-sans-400.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Nunito Sans';
	src: url('../fonts/nunito-sans-600.woff2') format('woff2');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Nunito Sans';
	src: url('../fonts/nunito-sans-700.woff2') format('woff2');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

/* -------------------------------------------------------------------------
   2. Tokens
   ------------------------------------------------------------------------- */
:root {
	--ground: #F1DCAE;
	--panel: #E9CD8F;
	--card: #FFFFFF;
	--ink: #4A3E3A;
	--muted: #77644C;
	--rose: #A9636F;
	--rose-deep: #8E4E5B;
	--rose-soft: #EBD3D7;
	--thread: #C7AB77;
	--teal: #47808A;

	--font-heading: 'Lora', "Palatino Linotype", Georgia, serif;
	--font-script: 'Great Vibes', "Snell Roundhand", "Segoe Script", cursive;
	--font-body: 'Nunito Sans', "Avenir Next", "Segoe UI", sans-serif;

	--heart-svg: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23A9636F' d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E");

	--shadow-soft: 0 2px 10px rgba(74, 62, 58, 0.08);
	--shadow-lift: 0 10px 24px rgba(74, 62, 58, 0.14);
	--radius: 10px;
}

/* -------------------------------------------------------------------------
   3. Base / light reset
   ------------------------------------------------------------------------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--ground);
	color: var(--ink);
	font-family: var(--font-body);
	font-size: 1.0625rem;
	line-height: 1.65;
	overflow-wrap: break-word;
}

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

a {
	color: var(--teal);
	text-decoration-thickness: 1px;
	text-underline-offset: 2px;
}

a:hover {
	color: var(--rose-deep);
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-heading);
	font-weight: 700;
	color: var(--rose-deep);
	line-height: 1.2;
	margin: 0 0 0.6em;
}

h1 { font-size: clamp(1.9rem, 4.5vw, 2.8rem); }
h2 { font-size: clamp(1.5rem, 3.2vw, 2rem); }
h3 { font-size: clamp(1.2rem, 2.4vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1.125rem; font-weight: 600; }

p {
	margin: 0 0 1.1em;
}

table {
	border-collapse: collapse;
	width: 100%;
}

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

/* Script accents — small flourishes only */
.bh-script {
	font-family: var(--font-script);
	font-weight: 400;
	color: var(--rose);
	line-height: 1.3;
}

/* Layout wrap */
.bh-wrap {
	max-width: 1140px;
	margin-inline: auto;
	padding-inline: clamp(1rem, 4vw, 2rem);
}

.bh-wrap--narrow {
	max-width: 780px;
}

.bh-main {
	display: block;
	padding-block: 1.5rem 3rem;
}

/* Screen reader + skip link */
.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
}

.skip-link:focus {
	position: fixed !important;
	top: 8px;
	left: 8px;
	z-index: 1000;
	width: auto;
	height: auto;
	margin: 0;
	padding: 0.6rem 1rem;
	clip: auto;
	clip-path: none;
	white-space: normal;
	background: var(--card);
	color: var(--rose-deep);
	border: 2px solid var(--rose);
	border-radius: var(--radius);
	box-shadow: var(--shadow-lift);
}

/* Focus visibility */
:focus-visible {
	outline: 3px solid var(--rose);
	outline-offset: 2px;
	border-radius: 2px;
}

/* -------------------------------------------------------------------------
   4. Buttons
   ------------------------------------------------------------------------- */
.bh-btn,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce button.button.alt,
.wp-element-button {
	display: inline-block;
	background: var(--rose);
	color: #FFFFFF;
	font-family: var(--font-body);
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.2;
	padding: 0.8rem 1.6rem;
	border: 2px solid var(--rose);
	border-radius: 999px;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.bh-btn:hover,
.bh-btn:focus-visible,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce button.button.alt:hover {
	background: var(--rose-deep);
	border-color: var(--rose-deep);
	color: #FFFFFF;
}

.bh-btn--outline {
	background: transparent;
	color: var(--rose-deep);
}

.bh-btn--outline:hover,
.bh-btn--outline:focus-visible {
	background: var(--rose-soft);
	border-color: var(--rose-deep);
	color: var(--rose-deep);
}

.woocommerce a.button.disabled,
.woocommerce button.button:disabled,
.woocommerce button.button:disabled[disabled] {
	background: var(--thread);
	border-color: var(--thread);
	color: var(--ink);
	opacity: 0.7;
}

/* -------------------------------------------------------------------------
   5. Header and navigation
   ------------------------------------------------------------------------- */
.bh-header {
	position: relative;
	background: var(--ground);
	padding-top: 1.25rem;
}

.bh-header-inner {
	position: relative;
	max-width: 1140px;
	margin-inline: auto;
	padding-inline: clamp(1rem, 4vw, 2rem);
	text-align: center;
}

.bh-logo .custom-logo {
	width: clamp(120px, 14vw, 160px);
	height: clamp(120px, 14vw, 160px);
	object-fit: cover;
	border-radius: 50%;
	border: 4px solid #FFFFFF;
	outline: 2px dashed var(--thread);
	outline-offset: 3px;
	box-shadow: var(--shadow-soft);
}

.bh-site-title {
	margin: 0.6rem 0 0;
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: clamp(1.4rem, 3vw, 1.9rem);
}

.bh-site-title a {
	color: var(--rose-deep);
	text-decoration: none;
}

.bh-site-title a:hover {
	color: var(--rose);
}

.bh-tagline {
	margin: 0.1rem 0 0;
	font-size: 1.35rem;
}

.bh-cart-link {
	position: absolute;
	top: 0;
	right: clamp(1rem, 4vw, 2rem);
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.4rem 0.9rem;
	background: var(--card);
	border: 1px dashed var(--thread);
	border-radius: 999px;
	color: var(--rose-deep);
	font-weight: 700;
	font-size: 0.95rem;
	text-decoration: none;
	box-shadow: var(--shadow-soft);
}

.bh-cart-link:hover {
	border-color: var(--rose);
	color: var(--rose);
}

.bh-cart-count {
	display: inline-grid;
	place-items: center;
	min-width: 1.5em;
	height: 1.5em;
	padding-inline: 0.25em;
	background: var(--rose);
	color: #FFFFFF;
	border-radius: 999px;
	font-size: 0.85em;
	line-height: 1;
}

/* Navigation */
.bh-nav {
	margin-top: 1rem;
}

.bh-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.25rem 1.75rem;
}

.bh-menu a {
	display: inline-block;
	padding: 0.5rem 0.15rem;
	color: var(--ink);
	font-weight: 600;
	text-decoration: none;
	border-bottom: 2px solid transparent;
}

.bh-menu a:hover,
.bh-menu .current-menu-item > a,
.bh-menu .current_page_item > a {
	color: var(--rose-deep);
	border-bottom-color: var(--rose);
}

.bh-menu .sub-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0 1rem;
	font-size: 0.95em;
}

/* Mobile toggle */
.bh-nav-toggle {
	display: none;
	position: absolute;
	top: 0;
	left: clamp(1rem, 4vw, 2rem);
	align-items: center;
	gap: 0.5rem;
	padding: 0.45rem 0.9rem;
	background: var(--card);
	border: 1px dashed var(--thread);
	border-radius: 999px;
	color: var(--rose-deep);
	font-weight: 700;
	font-size: 0.95rem;
	cursor: pointer;
	box-shadow: var(--shadow-soft);
}

.bh-nav-toggle-bars {
	position: relative;
	display: inline-block;
	width: 18px;
	height: 2px;
	background: currentColor;
	border-radius: 2px;
}

.bh-nav-toggle-bars::before,
.bh-nav-toggle-bars::after {
	content: "";
	position: absolute;
	left: 0;
	width: 18px;
	height: 2px;
	background: currentColor;
	border-radius: 2px;
}

.bh-nav-toggle-bars::before { top: -6px; }
.bh-nav-toggle-bars::after { top: 6px; }

@media (max-width: 820px) {
	.bh-nav-toggle {
		display: inline-flex;
	}

	.bh-nav {
		display: none;
	}

	body.bh-nav-open .bh-nav {
		display: block;
	}

	.bh-menu {
		flex-direction: column;
		gap: 0;
		background: var(--panel);
		border: 1px dashed var(--thread);
		border-radius: var(--radius);
		padding: 0.5rem 0;
		margin-top: 0.75rem;
	}

	.bh-menu a {
		display: block;
		padding: 0.7rem 1.25rem;
		border-bottom: none;
	}

	.bh-menu .sub-menu {
		flex-direction: column;
		gap: 0;
		padding-left: 1rem;
	}
}

/* -------------------------------------------------------------------------
   6. Stitched seam dividers
   ------------------------------------------------------------------------- */
.bh-seam {
	position: relative;
	height: 28px;
	margin: 1.5rem 0;
}

.bh-seam::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	border-top: 2px dashed var(--thread);
}

.bh-seam::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 28px;
	height: 28px;
	background-color: var(--ground);
	background-image: var(--heart-svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 18px 18px;
}

.bh-seam--header {
	margin: 1.25rem 0 0;
}

/* -------------------------------------------------------------------------
   7. Hero
   ------------------------------------------------------------------------- */
.bh-hero {
	padding-block: clamp(2rem, 6vw, 4rem) 1rem;
	text-align: center;
}

.bh-eyebrow {
	font-size: clamp(1.5rem, 3.4vw, 2rem);
	margin-bottom: 0.4rem;
}

.bh-hero-title {
	max-width: 22ch;
	margin-inline: auto;
}

.bh-hero-lede {
	max-width: 62ch;
	margin-inline: auto;
	font-size: 1.125rem;
	color: var(--muted);
}

.bh-hero-ctas {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.9rem;
	margin-top: 1.6rem;
}

/* -------------------------------------------------------------------------
   8. Quilt patches (featured products)
   ------------------------------------------------------------------------- */
.bh-quilt {
	padding-block: clamp(2rem, 5vw, 3rem);
	overflow: hidden;
}

.bh-quilt .bh-wrap {
	max-width: 1280px;
}

.bh-quilt-strip {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	padding-block: 1.75rem;
}

.bh-quilt-strip::before {
	content: "";
	position: absolute;
	left: -5%;
	right: -5%;
	top: 50%;
	border-top: 2px dashed var(--thread);
	z-index: 0;
}

.bh-patch {
	position: relative;
	z-index: 1;
	display: block;
	width: clamp(120px, 15vw, 175px);
	aspect-ratio: 1 / 1;
	transform: rotate(45deg);
	overflow: hidden;
	background: #FFFFFF;
	border: 4px solid #FFFFFF;
	outline: 2px dashed var(--thread);
	outline-offset: 4px;
	box-shadow: var(--shadow-soft);
	margin: clamp(1.1rem, 2.2vw, 1.75rem);
}

.bh-patch .bh-patch-img,
.bh-patch img {
	display: block;
	width: 100%;
	height: 100%;
}

.bh-patch img {
	object-fit: cover;
	transform: rotate(-45deg) scale(1.45);
}

.bh-patch:focus-visible {
	outline: 3px solid var(--rose);
	outline-offset: 4px;
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
	.bh-patch {
		transition: box-shadow 0.25s ease, outline-color 0.25s ease;
	}

	.bh-patch:hover {
		box-shadow: var(--shadow-lift);
		outline-color: var(--rose);
	}
}

/* -------------------------------------------------------------------------
   9. How it works — steps on a stitch line
   ------------------------------------------------------------------------- */
.bh-steps {
	padding-block: clamp(1.5rem, 4vw, 2.5rem);
	text-align: center;
}

.bh-steps-list {
	list-style: none;
	margin: 2.5rem 0 1rem;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	position: relative;
}

.bh-steps-list::before {
	content: "";
	position: absolute;
	left: 8%;
	right: 8%;
	top: 21px;
	border-top: 2px dashed var(--thread);
}

.bh-step {
	position: relative;
	padding-top: 3.4rem;
}

.bh-step-num {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%) rotate(45deg);
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	background: var(--rose);
	border: 3px solid #FFFFFF;
	outline: 2px dashed var(--thread);
	outline-offset: 3px;
	box-shadow: var(--shadow-soft);
}

.bh-step-num span {
	transform: rotate(-45deg);
	color: #FFFFFF;
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 1.15rem;
	line-height: 1;
}

.bh-step-title {
	margin-bottom: 0.35em;
}

.bh-step p {
	color: var(--muted);
	max-width: 34ch;
	margin-inline: auto;
}

@media (max-width: 700px) {
	.bh-steps-list {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.bh-steps-list::before {
		display: none;
	}
}

/* -------------------------------------------------------------------------
   10. Polaroid cards — front page and WooCommerce loops
   ------------------------------------------------------------------------- */
.bh-section-title {
	text-align: center;
}

.bh-bears,
.bh-welcome,
.bh-reviews {
	padding-block: clamp(1.5rem, 4vw, 2.5rem);
}

.bh-polaroids,
.woocommerce ul.products,
.woocommerce-page ul.products {
	list-style: none;
	margin: 2rem 0 1rem;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: clamp(1.5rem, 3vw, 2.25rem);
}

.bh-polaroid,
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
	width: auto;
	float: none;
	margin: 0;
	background: var(--card);
	padding: 0.8rem 0.8rem 1.1rem;
	border-radius: 4px;
	box-shadow: var(--shadow-soft);
	text-align: center;
	position: relative;
}

/* Alternating polaroid tilt, straighten and lift on hover */
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
	.bh-polaroid,
	.woocommerce ul.products li.product {
		transition: transform 0.25s ease, box-shadow 0.25s ease;
	}

	.bh-polaroid:nth-child(odd),
	.woocommerce ul.products li.product:nth-child(odd) {
		transform: rotate(-3deg);
	}

	.bh-polaroid:nth-child(even),
	.woocommerce ul.products li.product:nth-child(even) {
		transform: rotate(2.5deg);
	}

	.bh-polaroid:hover,
	.bh-polaroid:focus-within,
	.woocommerce ul.products li.product:hover,
	.woocommerce ul.products li.product:focus-within {
		transform: rotate(0deg) translateY(-6px);
		box-shadow: var(--shadow-lift);
		z-index: 2;
	}
}

.bh-polaroid a {
	display: block;
	color: inherit;
	text-decoration: none;
}

.bh-polaroid-img img,
.woocommerce ul.products li.product img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 2px;
	margin: 0 0 0.7rem;
}

.bh-polaroid-title,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .woocommerce-loop-category__title {
	display: block;
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 1.05rem;
	color: var(--ink);
	padding: 0;
	margin: 0 0 0.15rem;
}

.bh-polaroid-price,
.woocommerce ul.products li.product .price {
	display: block;
	color: var(--rose-deep);
	font-weight: 700;
	font-size: 1rem;
	margin: 0 0 0.2rem;
}

.woocommerce ul.products li.product .price del {
	color: var(--muted);
	font-weight: 400;
	opacity: 1;
}

.woocommerce ul.products li.product .price ins {
	text-decoration: none;
	font-weight: 700;
}

.bh-polaroid-caption {
	display: block;
	font-size: 1.3rem;
	margin-top: 0.1rem;
}

.woocommerce ul.products li.product .button {
	margin-top: 0.6rem;
	font-size: 0.9rem;
	padding: 0.55rem 1.2rem;
}

/* Sale badge */
.woocommerce span.onsale {
	position: absolute;
	top: -0.5rem;
	left: -0.5rem;
	z-index: 3;
	min-width: auto;
	min-height: auto;
	line-height: 1;
	padding: 0.5rem 0.7rem;
	background: var(--rose);
	color: #FFFFFF;
	font-weight: 700;
	font-size: 0.8rem;
	border-radius: 999px;
	box-shadow: var(--shadow-soft);
}

.bh-more {
	text-align: center;
	margin-top: 1.75rem;
}

@media (max-width: 1000px) {
	.bh-polaroids,
	.woocommerce ul.products,
	.woocommerce-page ul.products {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 700px) {
	.bh-polaroids,
	.woocommerce ul.products,
	.woocommerce-page ul.products {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 430px) {
	.bh-polaroids,
	.woocommerce ul.products,
	.woocommerce-page ul.products {
		grid-template-columns: 1fr;
		max-width: 320px;
		margin-inline: auto;
	}
}

/* -------------------------------------------------------------------------
   11. Linen panels, welcome, reviews
   ------------------------------------------------------------------------- */
.bh-panel {
	background: var(--panel);
	border: 1px dashed var(--thread);
	border-radius: var(--radius);
	padding: clamp(1.5rem, 4vw, 2.5rem);
}

.bh-welcome-panel {
	max-width: 780px;
	margin-inline: auto;
	text-align: center;
}

.bh-welcome-panel p {
	text-align: left;
}

.bh-signoff {
	font-size: 2rem;
	text-align: center !important;
	margin: 1rem 0 0;
}

.bh-reviews-list {
	list-style: none;
	margin: 2rem 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.bh-review blockquote {
	margin: 0;
	height: 100%;
	background: var(--card);
	border-left: 4px solid var(--rose);
	border-radius: var(--radius);
	padding: 1.25rem 1.4rem;
	box-shadow: var(--shadow-soft);
}

.bh-review blockquote p {
	font-style: italic;
	color: var(--ink);
}

.bh-review-meta {
	display: block;
	color: var(--muted);
	font-size: 0.92rem;
}

.bh-review-author {
	font-weight: 700;
	color: var(--rose-deep);
}

.bh-review-product {
	display: block;
}

@media (max-width: 820px) {
	.bh-reviews-list {
		grid-template-columns: 1fr;
	}
}

/* -------------------------------------------------------------------------
   12. Notice panel (lead-time note)
   ------------------------------------------------------------------------- */
.bh-notice {
	background: var(--panel);
	border-left: 4px solid var(--rose);
	border-radius: 0 var(--radius) var(--radius) 0;
	padding: 0.9rem 1.2rem;
	margin: 1.25rem 0;
	font-size: 0.98rem;
	color: var(--ink);
}

.bh-notice p:last-child {
	margin-bottom: 0;
}

/* -------------------------------------------------------------------------
   13. Entry content typography (pages and posts)
   ------------------------------------------------------------------------- */
.entry-content {
	max-width: 70ch;
	margin-inline: auto;
}

.entry-content h2,
.entry-content h3 {
	margin-top: 1.6em;
}

.entry-content ul {
	list-style: none;
	margin: 0 0 1.25em;
	padding-left: 0.25rem;
}

.entry-content ul li {
	position: relative;
	padding-left: 1.8rem;
	margin-bottom: 0.5em;
}

.entry-content ul li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.32em;
	width: 1rem;
	height: 1rem;
	background-image: var(--heart-svg);
	background-repeat: no-repeat;
	background-size: contain;
}

.entry-content ul ul {
	margin-top: 0.5em;
}

.entry-content ol {
	margin: 0 0 1.25em;
	padding-left: 1.4rem;
}

.entry-content ol li {
	margin-bottom: 0.5em;
}

.entry-content ol li::marker {
	color: var(--rose);
	font-weight: 700;
}

.entry-content blockquote {
	margin: 1.5em 0;
	padding: 1rem 1.4rem;
	background: var(--panel);
	border-left: 4px solid var(--rose);
	border-radius: 0 var(--radius) var(--radius) 0;
	font-style: italic;
}

.entry-content blockquote p:last-child {
	margin-bottom: 0;
}

.entry-content table {
	margin: 1.5em 0;
	background: var(--card);
	border: 1px dashed var(--thread);
	border-radius: var(--radius);
	overflow: hidden;
}

.entry-content th,
.entry-content td {
	padding: 0.7rem 1rem;
	text-align: left;
	border-bottom: 1px dashed var(--thread);
}

.entry-content th {
	font-family: var(--font-heading);
	font-weight: 600;
	color: var(--rose-deep);
	background: var(--panel);
}

.entry-content tr:last-child td {
	border-bottom: none;
}

.entry-content img {
	border-radius: var(--radius);
}

.entry-content hr {
	border: none;
	border-top: 2px dashed var(--thread);
	margin: 2em 0;
}

/* Page headers */
.bh-page-header {
	text-align: center;
	margin-bottom: 1.75rem;
}

.bh-page-title {
	margin-bottom: 0.2em;
}

.bh-post-meta {
	color: var(--muted);
	font-size: 0.95rem;
}

.bh-archive-description {
	color: var(--muted);
	max-width: 60ch;
	margin-inline: auto;
}

/* Post cards (blog/index/archive) */
.bh-post-list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 1.75rem;
	margin-block: 1.5rem;
}

.bh-post-card {
	background: var(--card);
	border-radius: var(--radius);
	box-shadow: var(--shadow-soft);
	padding: 1.25rem;
}

.bh-post-card-thumb img {
	display: block;
	width: 100%;
	border-radius: 6px;
	margin-bottom: 0.9rem;
}

.bh-post-card-title {
	font-size: 1.2rem;
	margin-bottom: 0.3em;
}

.bh-post-card-title a {
	color: var(--rose-deep);
	text-decoration: none;
}

.bh-post-card-title a:hover {
	color: var(--rose);
	text-decoration: underline;
}

.bh-post-card-excerpt {
	color: var(--muted);
	font-size: 0.98rem;
}

.bh-single-thumb {
	margin: 0 0 1.5rem;
}

.bh-single-thumb img {
	border-radius: var(--radius);
}

/* Pagination */
.pagination,
.woocommerce nav.woocommerce-pagination {
	text-align: center;
	margin: 2rem 0 0;
}

.pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.4rem;
}

.pagination .page-numbers,
.woocommerce nav.woocommerce-pagination ul {
	border: none;
}

.woocommerce nav.woocommerce-pagination ul li {
	border: none;
	margin: 0 0.2rem;
}

.pagination .page-numbers,
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
	display: inline-grid;
	place-items: center;
	min-width: 2.4rem;
	height: 2.4rem;
	padding-inline: 0.6rem;
	background: var(--card);
	border: 1px dashed var(--thread);
	border-radius: 999px;
	color: var(--ink);
	font-weight: 600;
	text-decoration: none;
}

.pagination .page-numbers.current,
.woocommerce nav.woocommerce-pagination ul li span.current {
	background: var(--rose);
	border-color: var(--rose);
	color: #FFFFFF;
}

.pagination .page-numbers:hover,
.woocommerce nav.woocommerce-pagination ul li a:hover {
	border-color: var(--rose);
	color: var(--rose-deep);
	background: var(--rose-soft);
}

/* -------------------------------------------------------------------------
   14. Forms — search, comments, CF7, WooCommerce
   ------------------------------------------------------------------------- */
input[type="text"],
input[type="search"],
input[type="email"],
input[type="url"],
input[type="tel"],
input[type="number"],
input[type="password"],
input[type="date"],
select,
textarea {
	width: 100%;
	max-width: 100%;
	background: var(--card);
	color: var(--ink);
	border: 1px solid var(--thread);
	border-radius: 8px;
	padding: 0.65rem 0.9rem;
	line-height: 1.4;
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
	outline: 3px solid var(--rose);
	outline-offset: 1px;
	border-color: var(--rose);
}

label {
	display: inline-block;
	font-weight: 600;
	margin-bottom: 0.3rem;
}

.search-form {
	display: flex;
	gap: 0.6rem;
	max-width: 480px;
	margin-inline: auto;
}

.search-form .search-field {
	flex: 1;
}

.search-form .search-submit {
	background: var(--rose);
	color: #FFFFFF;
	border: 2px solid var(--rose);
	border-radius: 999px;
	padding: 0.55rem 1.3rem;
	font-weight: 700;
	cursor: pointer;
}

.search-form .search-submit:hover {
	background: var(--rose-deep);
	border-color: var(--rose-deep);
}

/* Contact Form 7 */
.wpcf7 form {
	background: var(--panel);
	border: 1px dashed var(--thread);
	border-radius: var(--radius);
	padding: clamp(1.25rem, 3vw, 2rem);
}

.wpcf7 form p {
	margin-bottom: 1rem;
}

.wpcf7 .wpcf7-submit {
	width: auto;
	background: var(--rose);
	color: #FFFFFF;
	border: 2px solid var(--rose);
	border-radius: 999px;
	padding: 0.8rem 1.8rem;
	font-weight: 700;
	cursor: pointer;
}

.wpcf7 .wpcf7-submit:hover {
	background: var(--rose-deep);
	border-color: var(--rose-deep);
}

.wpcf7 .wpcf7-not-valid-tip {
	color: var(--rose-deep);
	font-size: 0.9rem;
}

.wpcf7 .wpcf7-response-output {
	border: 1px dashed var(--rose) !important;
	border-radius: var(--radius);
	padding: 0.8rem 1rem !important;
	margin: 1rem 0 0 !important;
}

/* Comments */
.bh-comments {
	margin-top: 2.5rem;
	border-top: 2px dashed var(--thread);
	padding-top: 1.75rem;
}

.bh-comment-list {
	list-style: none;
	margin: 0 0 1.5rem;
	padding: 0;
}

.bh-comment-list .comment,
.bh-comment-list .pingback {
	background: var(--card);
	border-radius: var(--radius);
	box-shadow: var(--shadow-soft);
	padding: 1rem 1.25rem;
	margin-bottom: 1rem;
}

.bh-comment-list .children {
	list-style: none;
	margin: 1rem 0 0;
	padding-left: 1.25rem;
	border-left: 2px dashed var(--thread);
}

.bh-comment-list .comment-meta a,
.bh-comment-list .comment-metadata a {
	color: var(--muted);
	font-size: 0.9rem;
}

.bh-comment-list .avatar {
	border-radius: 50%;
	margin-right: 0.6rem;
}

.comment-reply-link {
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--rose-deep);
}

.comment-form textarea {
	min-height: 140px;
}

.comment-form .submit {
	background: var(--rose);
	color: #FFFFFF;
	border: 2px solid var(--rose);
	border-radius: 999px;
	padding: 0.7rem 1.6rem;
	font-weight: 700;
	cursor: pointer;
	width: auto;
}

.comment-form .submit:hover {
	background: var(--rose-deep);
	border-color: var(--rose-deep);
}

/* -------------------------------------------------------------------------
   15. WooCommerce — shop and archive chrome
   ------------------------------------------------------------------------- */
.bh-woocommerce .woocommerce-products-header__title,
.bh-woocommerce h1.page-title {
	text-align: center;
	margin-bottom: 0.5em;
}

.woocommerce .woocommerce-result-count {
	color: var(--muted);
	font-size: 0.95rem;
}

.woocommerce .woocommerce-ordering select {
	width: auto;
}

.woocommerce .woocommerce-breadcrumb {
	color: var(--muted);
	font-size: 0.92rem;
	margin-bottom: 1.5rem;
}

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

/* Notices */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
	background: var(--panel);
	border-top: none;
	border-left: 4px solid var(--rose);
	border-radius: 0 var(--radius) var(--radius) 0;
	color: var(--ink);
	padding: 1rem 1.25rem 1rem 3rem;
}

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

.woocommerce-error {
	border-left-color: var(--rose-deep);
}

.woocommerce-error::before {
	color: var(--rose-deep);
}

/* Star ratings */
.woocommerce .star-rating span::before,
.woocommerce p.stars a {
	color: var(--rose);
}

/* -------------------------------------------------------------------------
   16. WooCommerce — single product
   ------------------------------------------------------------------------- */
.woocommerce div.product {
	display: block;
}

.woocommerce div.product div.images,
.woocommerce-page div.product div.images {
	width: 48%;
	float: left;
	margin-bottom: 2rem;
}

.woocommerce div.product div.summary,
.woocommerce-page div.product div.summary {
	width: 48%;
	float: right;
	margin-bottom: 2rem;
}

.woocommerce div.product div.images img {
	border-radius: var(--radius);
	border: 6px solid #FFFFFF;
	box-shadow: var(--shadow-soft);
}

.woocommerce div.product div.images .flex-control-thumbs {
	margin-top: 0.75rem;
	display: flex;
	gap: 0.5rem;
}

.woocommerce div.product div.images .flex-control-thumbs li {
	width: auto;
	flex: 0 0 21%;
	float: none;
}

.woocommerce div.product div.images .flex-control-thumbs img {
	border-radius: 6px;
	border: 3px solid #FFFFFF;
	opacity: 0.75;
}

.woocommerce div.product div.images .flex-control-thumbs img.flex-active,
.woocommerce div.product div.images .flex-control-thumbs img:hover {
	opacity: 1;
}

.woocommerce div.product .product_title {
	color: var(--rose-deep);
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
	color: var(--rose-deep);
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 1.5rem;
}

.woocommerce div.product p.price del {
	color: var(--muted);
	opacity: 1;
}

.woocommerce div.product p.price ins {
	text-decoration: none;
}

.woocommerce div.product .woocommerce-product-details__short-description {
	color: var(--ink);
}

/* Quantity + add to cart */
.woocommerce div.product form.cart {
	margin: 1.5rem 0;
	padding: 1.25rem;
	background: var(--panel);
	border: 1px dashed var(--thread);
	border-radius: var(--radius);
}

.woocommerce div.product form.cart div.quantity {
	margin-right: 0.75rem;
}

.woocommerce .quantity .qty {
	width: 4.5em;
	text-align: center;
	padding: 0.65rem 0.4rem;
}

.woocommerce div.product form.cart .button,
.woocommerce div.product form.cart .single_add_to_cart_button {
	background: var(--rose);
	border: 2px solid var(--rose);
	color: #FFFFFF;
	border-radius: 999px;
	padding: 0.8rem 1.8rem;
	font-weight: 700;
	font-size: 1rem;
}

.woocommerce div.product form.cart .button:hover,
.woocommerce div.product form.cart .single_add_to_cart_button:hover {
	background: var(--rose-deep);
	border-color: var(--rose-deep);
}

.woocommerce div.product form.cart .variations select {
	margin-bottom: 0.5rem;
}

.woocommerce div.product form.cart .variations label {
	font-weight: 600;
	color: var(--ink);
}

.woocommerce .product_meta {
	color: var(--muted);
	font-size: 0.92rem;
}

.woocommerce .product_meta a {
	color: var(--teal);
}

/* Personalisation fields */
.bh-persona {
	margin: 1.25rem 0;
	padding: 1.25rem 1.4rem;
	background: var(--card);
	border: 1px dashed var(--thread);
	border-radius: var(--radius);
}

.bh-persona legend,
.bh-persona .bh-persona__title,
.bh-persona .bh-persona-title {
	font-family: var(--font-heading);
	font-weight: 600;
	color: var(--rose-deep);
	font-size: 1.1rem;
	margin-bottom: 0.6rem;
	padding: 0 0.4rem;
}

.bh-persona label {
	display: block;
	font-weight: 600;
	color: var(--ink);
	margin: 0.75rem 0 0.25rem;
}

.bh-persona .bh-persona__hint,
.bh-persona .bh-persona-hint,
.bh-persona small {
	display: block;
	font-weight: 400;
	color: var(--muted);
	font-size: 0.88rem;
	margin-top: 0.2rem;
}

.bh-persona input[type="text"],
.bh-persona input[type="email"],
.bh-persona select,
.bh-persona textarea {
	border: 1px solid var(--thread);
	border-radius: 8px;
	background: #FFFFFF;
}

.bh-persona input:focus-visible,
.bh-persona select:focus-visible,
.bh-persona textarea:focus-visible {
	outline: 3px solid var(--rose);
	border-color: var(--rose);
}

.bh-persona .required,
.woocommerce form .form-row .required {
	color: var(--rose-deep);
	text-decoration: none;
}

/* Product tabs */
.woocommerce div.product .woocommerce-tabs {
	clear: both;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
	padding: 0;
	margin: 0 0 1.25rem;
	border-bottom: 2px dashed var(--thread);
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
}

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

.woocommerce div.product .woocommerce-tabs ul.tabs li {
	background: var(--panel);
	border: 1px dashed var(--thread);
	border-bottom: none;
	border-radius: 8px 8px 0 0;
	margin: 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 {
	color: var(--ink);
	font-weight: 600;
	padding: 0.6rem 1.2rem;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
	background: var(--card);
	border-color: var(--rose);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
	color: var(--rose-deep);
}

.woocommerce div.product .woocommerce-tabs .panel h2 {
	font-size: 1.3rem;
}

/* Related products */
.woocommerce .related.products,
.woocommerce .up-sells.products {
	clear: both;
	padding-top: 1.5rem;
}

.woocommerce .related.products > h2,
.woocommerce .up-sells.products > h2 {
	text-align: center;
}

@media (max-width: 820px) {
	.woocommerce div.product div.images,
	.woocommerce-page div.product div.images,
	.woocommerce div.product div.summary,
	.woocommerce-page div.product div.summary {
		width: 100%;
		float: none;
	}
}

/* -------------------------------------------------------------------------
   17. WooCommerce — cart and checkout
   ------------------------------------------------------------------------- */
.woocommerce table.shop_table {
	background: var(--card);
	border: 1px dashed var(--thread);
	border-radius: var(--radius);
	border-collapse: separate;
	border-spacing: 0;
	overflow: hidden;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
	border-top: none;
	border-bottom: 1px dashed var(--thread);
	padding: 0.85rem 1rem;
	vertical-align: middle;
}

.woocommerce table.shop_table thead th {
	background: var(--panel);
	font-family: var(--font-heading);
	font-weight: 600;
	color: var(--rose-deep);
}

.woocommerce table.shop_table tbody tr:last-child td {
	border-bottom: none;
}

.woocommerce table.shop_table img {
	width: 64px;
	border-radius: 6px;
}

.woocommerce a.remove {
	color: var(--rose-deep) !important;
	font-weight: 400;
}

.woocommerce a.remove:hover {
	background: var(--rose-deep);
	color: #FFFFFF !important;
}

.woocommerce .cart-collaterals .cart_totals h2 {
	font-size: 1.3rem;
}

.woocommerce .coupon .input-text {
	width: auto;
	min-width: 140px;
}

/* Checkout */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
	background: var(--card);
	border: 1px solid var(--thread);
	border-radius: 8px;
	padding: 0.65rem 0.9rem;
	line-height: 1.4;
}

.woocommerce form .form-row label {
	font-weight: 600;
	color: var(--ink);
}

.woocommerce form.checkout h3,
.woocommerce-checkout #order_review_heading {
	color: var(--rose-deep);
}

#add_payment_method #payment,
.woocommerce-cart #payment,
.woocommerce-checkout #payment {
	background: var(--panel);
	border-radius: var(--radius);
	border: 1px dashed var(--thread);
}

.woocommerce-checkout #payment div.payment_box {
	background: var(--card);
	color: var(--ink);
}

.woocommerce-checkout #payment div.payment_box::before {
	border-bottom-color: var(--card);
}

#payment .place-order .button {
	width: 100%;
	font-size: 1.05rem;
}

.woocommerce form.login,
.woocommerce form.register,
.woocommerce form.checkout_coupon {
	border: 1px dashed var(--thread);
	border-radius: var(--radius);
	background: var(--card);
}

/* Order received / account */
.woocommerce-order-overview {
	list-style: none;
	padding: 1rem 1.25rem;
	background: var(--panel);
	border: 1px dashed var(--thread);
	border-radius: var(--radius);
}

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

.woocommerce-MyAccount-navigation li {
	border-bottom: 1px dashed var(--thread);
}

.woocommerce-MyAccount-navigation li a {
	display: block;
	padding: 0.6rem 0.25rem;
	color: var(--ink);
	font-weight: 600;
	text-decoration: none;
}

.woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-MyAccount-navigation li a:hover {
	color: var(--rose-deep);
}

/* -------------------------------------------------------------------------
   18. Footer
   ------------------------------------------------------------------------- */
.bh-footer {
	margin-top: 2rem;
	padding-bottom: 2rem;
	background: var(--ground);
}

.bh-footer-inner {
	max-width: 1140px;
	margin-inline: auto;
	padding-inline: clamp(1rem, 4vw, 2rem);
	text-align: center;
}

.bh-footer-strapline {
	font-size: clamp(1.7rem, 4vw, 2.2rem);
	margin: 0.5rem 0 1rem;
}

.bh-footer-menu {
	list-style: none;
	margin: 0 0 1rem;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.4rem 1.5rem;
}

.bh-footer-menu a {
	color: var(--ink);
	font-weight: 600;
	text-decoration: none;
}

.bh-footer-menu a:hover {
	color: var(--rose-deep);
	text-decoration: underline;
}

.bh-footer-line {
	color: var(--muted);
	margin-bottom: 0.4rem;
}

.bh-footer-copy {
	color: var(--muted);
	font-size: 0.9rem;
	margin-bottom: 0.75rem;
}

.bh-back-to-top {
	margin: 0;
}

.bh-back-to-top a {
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--rose-deep);
}

/* -------------------------------------------------------------------------
   19. Motion and accessibility guards
   ------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

/* Gutenberg separator rendered as a stitched seam with a centre heart */
.entry-content hr.wp-block-separator,
hr.wp-block-separator {
	border: 0;
	border-top: 2px dashed var(--thread);
	background: none;
	height: 0;
	margin: 2.4rem auto;
	max-width: 100%;
	position: relative;
	overflow: visible;
}
hr.wp-block-separator::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 34px;
	height: 20px;
	background: var(--ground) var(--heart-svg) center / 15px auto no-repeat;
}

/* WooCommerce coming-soon teaser, restyled to the brand */
.wp-block-woocommerce-coming-soon .wp-block-heading {
	font-family: var(--font-heading);
	color: var(--rose-deep);
	font-size: clamp(1.6rem, 4vw, 2.2rem);
	text-wrap: balance;
}
.wp-block-woocommerce-coming-soon .wp-block-paragraph {
	font-family: var(--font-body);
	color: var(--ink);
	max-width: 46ch;
	margin-inline: auto;
	font-size: 1.05rem;
	line-height: 1.65;
}
.wp-block-woocommerce-coming-soon .wp-block-spacer {
	height: 48px !important;
}


/* --- Mobile compatibility: 44px touch targets --- */
.bh-nav-toggle {
	padding: 0.6rem 0.9rem;
}
.bh-cart-link {
	padding: 0.6rem 0.9rem;
}
.woocommerce ul.products li.product .button {
	padding: 0.7rem 1.2rem;
}
.bh-footer-menu a {
	display: inline-block;
	padding: 0.5rem 0.15rem;
}

/* --- Quilt patch clearance on small phones: keep rotated corners clear of the clip edge --- */
@media (max-width: 430px) {
	.bh-patch {
		margin: 1.1rem;
		outline-offset: 3px;
	}
}

/* --- Front-page section intro line --- */
.bh-section-intro {
	max-width: 56ch;
	margin: -0.4rem auto 1.4rem;
	text-align: center;
	color: var(--muted);
}


/* Quilt strip: seam line only when the patches sit on a single row */
@media (max-width: 1120px) {
	.bh-quilt-strip::before {
		display: none;
	}
}

/* Phones: an even two-by-two quilt block, never an orphaned diamond */
@media (max-width: 560px) {
	.bh-quilt-strip {
		display: grid;
		grid-template-columns: repeat(2, max-content);
		justify-content: center;
	}
	.bh-patch {
		width: 100px;
		margin: 0.8rem;
	}
}

/* WooCommerce adds clearfix pseudo-elements to ul.products; in a grid layout
   they become phantom first/last grid items and leave an empty first cell. */
.woocommerce ul.products::before,
.woocommerce ul.products::after,
.woocommerce-page ul.products::before,
.woocommerce-page ul.products::after {
	content: none;
}
