/* =====================================================================
   She's Crafty by Gina — theme stylesheet
   Theme by The Free Website Guys.
   ===================================================================== */

/* ---------------------------------------------------------------------
   1. Reset & base
   --------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
html, body { max-width: 100%; overflow-x: hidden; margin: 0; padding: 0; }

body {
	background-color: var(--color-plaster);
	color: var(--color-ink);
	font-family: 'DM Sans', system-ui, sans-serif;
	-webkit-font-smoothing: antialiased;
	line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Bricolage Grotesque', system-ui, sans-serif;
	letter-spacing: -0.01em;
	font-weight: inherit;
	font-size: inherit;
	margin: 0;
}

p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; background: none; border: none; cursor: pointer; }
img { max-width: 100%; height: auto; display: block; }

img:not(.cover-img):not(.hero-bg-img):not(.site-logo-img):not(.theme-product-card__image):not(.theme-hero__image):not(.theme-process-collage__img) {
	max-width: 100%;
	height: auto;
}
.cover-img, .hero-bg-img, .theme-process-collage__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.container-wide {
	width: 100%;
	max-width: 80rem;
	margin: 0 auto;
	padding: 0 1rem;
}
@media (min-width: 640px) { .container-wide { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container-wide { padding: 0 2rem; } }

/* ---------------------------------------------------------------------
   2. Shared text tokens / helpers
   --------------------------------------------------------------------- */
.theme-eyebrow, .theme-exhibit-num {
	font-family: 'DM Sans', system-ui, sans-serif;
	font-size: 12px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--color-ink);
}
.theme-eyebrow { color: var(--color-magenta); margin-bottom: 0.75rem; display: block; }
.theme-eyebrow--sun { color: var(--color-sun); }

/* ---------------------------------------------------------------------
   3. Buttons
   --------------------------------------------------------------------- */
.btn-primary, .btn-secondary, .theme-btn-sun {
	display: inline-flex;
	min-height: 48px;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	border-radius: 0;
	padding: 0.75rem 1.5rem;
	font-weight: 600;
	font-size: 1rem;
	text-transform: none;
	transition: background-color .2s ease, color .2s ease, border-color .2s ease, opacity .2s ease;
	cursor: pointer;
	border: 1px solid var(--color-ink);
}
.btn-primary {
	background-color: var(--color-ink);
	color: var(--color-paper);
}
.btn-primary:hover { background-color: var(--color-magenta); border-color: var(--color-magenta); }
.btn-secondary {
	background-color: transparent;
	color: var(--color-ink);
}
.btn-secondary:hover { background-color: var(--color-ink); color: var(--color-paper); }
.theme-btn-sun {
	border-color: var(--color-sun);
	background-color: var(--color-sun);
	color: var(--color-ink);
	padding: 0.875rem 1.75rem;
}
.theme-btn-sun:hover { background-color: var(--color-teal); border-color: var(--color-teal); color: var(--color-paper); }
.btn-primary:focus-visible, .btn-secondary:focus-visible, .theme-btn-sun:focus-visible {
	outline: none;
	box-shadow: 0 0 0 2px var(--color-magenta);
}
.theme-btn-group-anim svg { transition: transform .3s ease; }
.theme-btn-group-anim:hover svg { transform: translateX(4px); }

.checkout-input {
	height: 48px;
	width: 100%;
	border-radius: 0;
	border: 1px solid var(--color-border);
	background-color: var(--color-paper);
	padding: 0 1rem;
	font-size: 1rem;
	color: var(--color-ink);
}
.checkout-input::placeholder { color: var(--color-muted-light); }
.checkout-input:focus-visible { outline: none; box-shadow: 0 0 0 2px var(--color-magenta); }
textarea.checkout-input { height: auto; padding: 0.75rem 1rem; resize: vertical; }

/* ---------------------------------------------------------------------
   4. Reveal animations (Section 2.1)
   --------------------------------------------------------------------- */
.reveal-item {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity .7s cubic-bezier(.25,.4,.25,1), transform .7s cubic-bezier(.25,.4,.25,1);
}
.reveal-item[data-reveal-delay="1"] { transition-delay: .08s; }
.reveal-item[data-reveal-delay="2"] { transition-delay: .16s; }
.reveal-item[data-reveal-delay="3"] { transition-delay: .24s; }
.reveal-item.is-visible { opacity: 1; transform: translateY(0); }

body.is-customizer .reveal-item { opacity: 1 !important; transform: none !important; }

@media (prefers-reduced-motion: reduce) {
	.reveal-item { transition-duration: .001ms !important; }
}

.theme-scroll-progress {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	z-index: 1;
	height: 2px;
	background: transparent;
	pointer-events: none;
}
.theme-scroll-progress__bar {
	display: block;
	height: 100%;
	width: 100%;
	background-color: var(--color-magenta);
	transform-origin: 0 50%;
	transform: scaleX(0);
	transition: transform .1s linear;
}

/* ---------------------------------------------------------------------
   5. Header
   --------------------------------------------------------------------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background-color: var(--color-plaster);
	border-bottom: 1px solid var(--color-ink);
}
.site-header__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 72px;
	gap: 1rem;
}
@media (min-width: 1024px) {
	.site-header__row {
		display: grid;
		grid-template-columns: 1fr auto 1fr;
		align-items: center;
	}
	.site-header__brand { justify-self: start; }
	.site-header__nav { justify-self: center; }
	.site-header__actions { justify-self: end; }
}
.site-header__brand { display: flex; align-items: center; gap: 0.75rem; min-width: 0; }
.site-header .site-logo-img {
	height: var(--logo-height);
	width: auto;
	max-width: 200px;
	object-fit: contain;
	display: block;
}
@media (min-width: 1024px) {
	.site-header .site-logo-img { height: calc(var(--logo-height) + 4px); }
}
.site-logo-text { font-family: 'Bricolage Grotesque', system-ui, sans-serif; font-weight: 700; font-size: 1.25rem; color: var(--color-ink); }
.site-header__brand-name { font-family: 'Bricolage Grotesque', system-ui, sans-serif; font-weight: 700; }

.theme-nav-list { display: none; align-items: center; gap: 2.25rem; }
.theme-nav-link {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	font-size: 15px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	font-weight: 500;
	color: var(--color-ink);
}
.theme-nav-link::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -2px;
	height: 1px;
	width: 100%;
	background-color: currentColor;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .3s ease;
}
.theme-nav-link:hover::after, .theme-nav-link.is-active::after { transform: scaleX(1); }

.theme-mobile-toggle { display: inline-flex; padding: 0.5rem; color: var(--color-ink); }
.theme-icon-close[hidden], .theme-icon-menu[hidden] { display: none; }

@media (min-width: 1024px) {
	.site-header__nav { display: block; }
	.theme-nav-list { display: flex; }
	.theme-mobile-toggle { display: none; }
}

.site-header__actions { display: flex; align-items: center; gap: 0.75rem; }
.theme-cart-toggle {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	min-height: 44px;
	padding: 0.5rem;
	color: var(--color-ink);
	transition: color .2s ease;
}
.theme-cart-toggle:hover { color: var(--color-magenta); }
.theme-cart-count {
	position: absolute;
	top: 2px;
	right: 2px;
	min-width: 1.25rem;
	height: 1.25rem;
	padding: 0 0.25rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: 600;
	background-color: var(--color-magenta);
	color: var(--color-paper);
}
.theme-cart-count:empty { display: none; }

.theme-mobile-overlay[hidden],
.theme-mobile-panel[hidden] { display: none !important; }
body.mobile-menu-open { overflow: hidden; }

.theme-brand-rail { width: 100%; display: flex; height: 5px; }
.theme-brand-rail span { flex: 1 1 0; height: 100%; display: block; }

.theme-mobile-overlay {
	position: fixed;
	inset: 72px 0 0 0;
	background-color: color-mix(in srgb, var(--color-ink) 40%, transparent);
	z-index: 40;
}
.theme-mobile-panel {
	position: fixed;
	right: 0;
	top: 72px;
	bottom: 0;
	width: 100%;
	max-width: 24rem;
	background-color: var(--color-paper);
	border-left: 1px solid var(--color-border);
	z-index: 50;
	display: flex;
	flex-direction: column;
	animation: theme-slide-up .5s ease-out;
}
.theme-mobile-nav-list { display: flex; flex-direction: column; flex: 1; }
.theme-mobile-nav-link {
	display: block;
	padding: 1.25rem 1.5rem;
	font-size: 14px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	font-weight: 500;
	color: var(--color-ink);
	border-bottom: 1px solid var(--color-border);
}
.theme-mobile-nav-link:hover { background-color: var(--color-plaster); }
.theme-mobile-panel__actions { padding: 1.5rem; border-top: 1px solid var(--color-border); display: flex; flex-direction: column; gap: 0.75rem; }
@media (min-width: 1024px) {
	.theme-mobile-overlay, .theme-mobile-panel { display: none !important; }
}

/* ---------------------------------------------------------------------
   6. Hero
   --------------------------------------------------------------------- */
.theme-hero {
	background-color: #F3EFE7;
	min-height: calc(100svh - 72px);
	display: flex;
	align-items: center;
}
body.theme-no-hero .theme-hero { display: none; }
.theme-home { scroll-margin-top: 6rem; }
@media (min-width: 1024px) { .theme-home { scroll-margin-top: 7rem; } }
.theme-hero__inner { padding: 2.5rem 0; width: 100%; }
@media (max-width: 639px) {
	.theme-hero .container-wide,
	.site-footer .container-wide {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
}
@media (min-width: 1024px) { .theme-hero__inner { padding: 3.5rem 0; } }
.theme-hero__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
@media (min-width: 1024px) { .theme-hero__grid { grid-template-columns: 0.82fr 1.18fr; gap: 4rem; } }

.theme-hero__eyebrow {
	display: inline-block;
	font-size: 12px;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--color-magenta);
	font-weight: 600;
	margin-bottom: 1.5rem;
}
.theme-hero__title {
	font-size: 3rem;
	font-weight: 700;
	line-height: 1.03;
	color: var(--color-ink);
	margin-bottom: 1.5rem;
}
@media (min-width: 640px) { .theme-hero__title { font-size: 3.75rem; } }
@media (min-width: 1024px) { .theme-hero__title { font-size: 4.5rem; } }
@media (min-width: 1280px) { .theme-hero__title { font-size: 5rem; } }
.theme-hero__title-accent { color: var(--color-magenta); }
.theme-hero__subtitle { font-size: 1.125rem; color: var(--color-muted); max-width: 32rem; line-height: 1.6; margin-bottom: 2rem; }
@media (min-width: 1024px) { .theme-hero__subtitle { font-size: 1.25rem; } }
.theme-hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.theme-hero__frame { background-color: var(--color-ink); padding: 3px; box-shadow: 0 18px 36px color-mix(in srgb, var(--color-ink) 14%, transparent); }
.theme-hero__frame-inner { background-color: var(--color-paper); padding: 1rem; }
@media (min-width: 1024px) { .theme-hero__frame-inner { padding: 1.25rem; } }
.theme-hero__image-wrap {
	position: relative;
	aspect-ratio: 6 / 5;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}
.theme-hero__image {
	position: static;
	inset: auto;
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.theme-hero__meta { margin-top: 1rem; display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.theme-hero__meta-left { min-width: 0; }
.theme-hero__meta-left .theme-eyebrow { margin-bottom: 0.25rem; color: var(--color-muted); }
.theme-hero__meta-name { font-weight: 600; font-size: 1.125rem; color: var(--color-ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.theme-hero__meta-price { font-weight: 600; font-size: 1.125rem; color: var(--color-ink); flex-shrink: 0; }

/* ---------------------------------------------------------------------
   7. Product grid & card (shared across collection/archive/related — 31.13)
   --------------------------------------------------------------------- */
.theme-shop-section, .theme-shop-archive { background-color: #F3EFE7; padding: 3.5rem 0 5rem; scroll-margin-top: 6rem; }
@media (min-width: 1024px) { .theme-shop-section, .theme-shop-archive { padding: 5rem 0; scroll-margin-top: 7rem; } }
.theme-shop-section__head { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2.5rem; }
@media (min-width: 1024px) { .theme-shop-section__head { flex-direction: row; align-items: flex-end; justify-content: space-between; gap: 1.5rem; margin-bottom: 3.5rem; } }
.theme-shop-heading { font-size: 1.875rem; font-weight: 700; color: var(--color-ink); max-width: 36rem; line-height: 1.2; }
@media (min-width: 640px) { .theme-shop-heading { font-size: 2.25rem; } }
@media (min-width: 1024px) { .theme-shop-heading { font-size: 3rem; } }
.theme-shop-section__subtitle { font-size: 1rem; color: var(--color-muted); max-width: 28rem; line-height: 1.6; }
@media (min-width: 1024px) { .theme-shop-section__subtitle { font-size: 1.125rem; } }

.theme-product-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.75rem 1.75rem;
}
@media (min-width: 640px) { .theme-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .theme-product-grid--collection, .theme-product-grid--archive { grid-template-columns: repeat(6, minmax(0, 1fr)); row-gap: 3rem; } }
@media (min-width: 1024px) { .theme-product-grid--related { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.theme-product-grid__cell { grid-column: span 1; min-width: 0; }
@media (min-width: 640px) { .theme-product-grid__cell { grid-column: span 1; } }
@media (min-width: 1024px) {
	.theme-product-grid--collection .theme-product-grid__cell,
	.theme-product-grid--archive .theme-product-grid__cell { grid-column: span 2; }
	.theme-grid-col-start-1 { grid-column-start: 1; }
	.theme-grid-col-start-2 { grid-column-start: 2; }
	.theme-grid-col-start-3 { grid-column-start: 3; }
	.theme-grid-col-start-4 { grid-column-start: 4; }
	.theme-grid-col-start-5 { grid-column-start: 5; }
}

.theme-product-card-wrap { height: 100%; display: flex; }
.theme-product-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	width: 100%;
}
.theme-product-card__frame {
	display: block;
	background-color: var(--color-ink);
	padding: 3px;
	box-shadow: 0 14px 28px color-mix(in srgb, var(--color-ink) 10%, transparent);
	transition: box-shadow .5s ease, transform .5s ease;
}
.theme-product-card:hover .theme-product-card__frame,
.theme-product-card:focus-visible .theme-product-card__frame {
	box-shadow: 0 22px 44px color-mix(in srgb, var(--color-ink) 18%, transparent);
	transform: translateY(-4px);
}
.theme-product-card__frame-inner { display: block; background-color: var(--color-paper); padding: 1rem; }
@media (min-width: 1024px) { .theme-product-card__frame-inner { padding: 1.25rem; } }
.theme-product-card__image-wrapper {
	position: relative;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}
.theme-product-card__image {
	position: static;
	inset: auto;
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: transform .7s ease;
}
.theme-product-card:hover .theme-product-card__image { transform: scale(1.04); }

.theme-product-card__info { display: flex; flex-direction: column; min-height: 150px; padding-top: 1rem; flex: 1; }
.theme-product-card__title {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--color-ink);
	line-height: 1.35;
	min-height: 3.5rem;
}
@media (min-width: 1024px) { .theme-product-card__title { font-size: 1.5rem; min-height: 4.5rem; } }
.theme-product-card__subtitle-row { min-height: 1.75rem; margin-top: 0.25rem; display: block; }
.theme-product-card__subtitle {
	font-size: 14px;
	color: var(--color-muted);
	text-transform: uppercase;
	letter-spacing: 0.03em;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	display: block;
}
.theme-product-card__bottom-row { margin-top: auto; display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; min-width: 0; }
.theme-product-card__price { font-size: 1.25rem; font-weight: 600; color: var(--color-ink); line-height: 1; }
@media (min-width: 1024px) { .theme-product-card__price { font-size: 1.5rem; } }
.theme-product-card__price .woocommerce-Price-amount { font-weight: 600; }
.theme-product-card__cta {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	font-size: 15px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: var(--color-ink);
	transition: color .2s ease;
	white-space: nowrap;
}
.theme-product-card:hover .theme-product-card__cta { color: var(--color-magenta); }
.theme-product-card__cta-text { border-bottom: 1px solid transparent; padding-bottom: 2px; }
.theme-product-card:hover .theme-product-card__cta-text { border-color: var(--color-magenta); }
.theme-product-card__cta svg { transition: transform .3s ease; }
.theme-product-card:hover .theme-product-card__cta svg { transform: translate(2px, -2px); }
.theme-product-card__stock--oos { font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-magenta); }

.theme-shop-empty { text-align: center; padding: 3rem 0; color: var(--color-muted); }

/* ---------------------------------------------------------------------
   8. Services list ("What Gina Creates")
   --------------------------------------------------------------------- */
.theme-services-section { background-color: var(--color-paper); padding: 3.5rem 0 4rem; border-top: 1px solid var(--color-border); }
.theme-services-section__head { margin-bottom: 1.5rem; }
@media (min-width: 1024px) { .theme-services-section__head { margin-bottom: 2rem; } }
.theme-services-heading { font-size: 1.875rem; font-weight: 700; color: var(--color-ink); line-height: 1.2; }
@media (min-width: 640px) { .theme-services-heading { font-size: 2.25rem; } }
@media (min-width: 1024px) { .theme-services-heading { font-size: 3rem; } }
.theme-services-section__subtitle { font-size: 1rem; color: var(--color-muted); margin-top: 0.75rem; }
@media (min-width: 1024px) { .theme-services-section__subtitle { font-size: 1.125rem; } }

.theme-services-list { border-top: 1px solid var(--color-border); }
.theme-services-list__item {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 1rem;
	border-bottom: 1px solid var(--color-border);
	padding: 1.25rem 0;
	transition: color .2s ease;
}
.theme-services-list__num { font-size: 14px; letter-spacing: 0.2em; color: var(--color-muted); width: 2rem; }
.theme-services-list__name {
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--color-ink);
	transition: transform .5s ease;
}
@media (min-width: 640px) { .theme-services-list__name { font-size: 1.875rem; } }
@media (min-width: 1024px) { .theme-services-list__name { font-size: 2.25rem; } }
.theme-services-list__item:hover .theme-services-list__name { transform: translateX(4px); }
.theme-services-list__marker { height: 12px; width: 12px; flex-shrink: 0; transition: transform .5s ease; }
.theme-services-list__item:hover .theme-services-list__marker { transform: scale(1.6); }

/* ---------------------------------------------------------------------
   9. Process notes
   --------------------------------------------------------------------- */
.theme-process-section { background-color: #F3EFE7; padding: 3.5rem 0 4rem; border-top: 1px solid var(--color-border); scroll-margin-top: 6rem; }
@media (min-width: 1024px) { .theme-process-section { scroll-margin-top: 7rem; } }
.theme-process-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
@media (min-width: 1024px) { .theme-process-grid { grid-template-columns: 0.9fr 1.1fr; gap: 3.5rem; } }
.theme-process-heading { font-size: 1.875rem; font-weight: 700; color: var(--color-ink); line-height: 1.2; margin-bottom: 1.5rem; }
@media (min-width: 640px) { .theme-process-heading { font-size: 2.25rem; } }
@media (min-width: 1024px) { .theme-process-heading { font-size: 3rem; } }
.theme-process-body { display: flex; flex-direction: column; gap: 1rem; color: var(--color-muted); font-size: 1rem; line-height: 1.75; }
.theme-techniques-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.5rem 2rem;
	margin-top: 1.5rem;
	font-family: 'Bricolage Grotesque', system-ui, sans-serif;
	font-size: 1.125rem;
	color: var(--color-ink);
}

.theme-process-collage {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	grid-template-rows: repeat(2, minmax(0, 1fr));
	gap: 0.75rem;
	height: 360px;
	max-height: 520px;
}
@media (min-width: 640px) { .theme-process-collage { height: 440px; } }
@media (min-width: 1024px) { .theme-process-collage { height: 480px; } }
.theme-process-collage__large { grid-column: span 2; background-color: var(--color-ink); padding: 3px; overflow: hidden; }
.theme-process-collage__small { background-color: var(--color-ink); padding: 3px; overflow: hidden; }
.theme-process-collage__frame { width: 100%; height: 100%; background-color: var(--color-paper); padding: 0.5rem; position: relative; overflow: hidden; }
.theme-process-collage__img--zoom1 { transform: scale(1.4); transform-origin: 30% 40%; }
.theme-process-collage__img--zoom2 { transform: scale(1.6); transform-origin: 70% 60%; }
.theme-process-collage__img--large:hover { transform: scale(1.03); transition: transform .9s ease; }

/* ---------------------------------------------------------------------
   10. Customization + Contact split
   --------------------------------------------------------------------- */
.theme-cta-contact-section { background-color: var(--color-paper); padding: 3.5rem 0 4rem; border-top: 1px solid var(--color-border); scroll-margin-top: 6rem; }
@media (min-width: 1024px) { .theme-cta-contact-section { scroll-margin-top: 7rem; } }
.theme-cta-contact-grid { display: grid; grid-template-columns: 1fr; border: 1px solid var(--color-border); }
@media (min-width: 1024px) { .theme-cta-contact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.theme-cta-contact-grid__cta {
	background-color: var(--color-ink);
	color: var(--color-paper);
	padding: 2rem;
	display: flex;
	flex-direction: column;
}
@media (min-width: 1024px) { .theme-cta-contact-grid__cta { padding: 2.5rem; } }
.theme-cta-contact-heading { font-size: 1.875rem; font-weight: 700; line-height: 1.2; margin-bottom: 1.5rem; }
@media (min-width: 640px) { .theme-cta-contact-heading { font-size: 2.25rem; } }
@media (min-width: 1024px) { .theme-cta-contact-heading { font-size: 3rem; } }
.theme-cta-contact-body { font-size: 1rem; max-width: 28rem; line-height: 1.6; margin-bottom: 2rem; opacity: 0.85; }
@media (min-width: 1024px) { .theme-cta-contact-body { font-size: 1.125rem; } }
.theme-cta-contact-grid__cta-action { margin-top: auto; }
.theme-cta-contact-grid__info {
	background-color: var(--color-paper);
	color: var(--color-ink);
	padding: 2rem;
	display: flex;
	flex-direction: column;
	border-top: 1px solid var(--color-border);
}
@media (min-width: 1024px) { .theme-cta-contact-grid__info { padding: 2.5rem; border-top: none; border-left: 1px solid var(--color-border); } }
.theme-contact-list { display: flex; flex-direction: column; gap: 1rem; font-size: 1rem; }
@media (min-width: 1024px) { .theme-contact-list { font-size: 1.125rem; } }
.theme-contact-list__item { display: flex; align-items: flex-start; gap: 1rem; }
.theme-contact-list__item a { transition: color .2s ease; word-break: break-all; }
.theme-contact-list__item a:hover { color: var(--color-magenta); }
.theme-contact-list__item svg { margin-top: 2px; flex-shrink: 0; }

/* ---------------------------------------------------------------------
   11. Footer
   --------------------------------------------------------------------- */
.site-footer { background-color: var(--color-plaster); border-top: 1px solid var(--color-ink); }
.site-footer__inner { padding: 2.5rem 0 3rem; }
@media (min-width: 1024px) { .site-footer__inner { padding: 3rem 0; } }
.site-footer__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: flex-start; }
@media (min-width: 1024px) { .site-footer__grid { grid-template-columns: 1.1fr 1fr 1fr; gap: 4rem; } }
.site-footer__brand-col { display: flex; flex-direction: column; align-items: flex-start; gap: 1.25rem; }
.site-footer__logo-img { height: 64px; width: auto; object-fit: contain; display: block; }
.site-footer__colophon p { font-size: 1rem; color: var(--color-muted); max-width: 20rem; line-height: 1.6; }
.site-footer__nav-col .theme-exhibit-num, .site-footer__contact-col .theme-exhibit-num { font-size: 13px; margin-bottom: 1rem; display: block; }
.theme-footer-nav-list, .theme-footer-contact-list { display: flex; flex-direction: column; gap: 0.75rem; }
.theme-footer-nav-list a { font-size: 1rem; color: var(--color-ink); transition: color .2s ease; }
.theme-footer-nav-list a:hover { color: var(--color-magenta); }
.theme-footer-contact-item { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 1rem; color: var(--color-ink); }
.theme-footer-contact-item a { transition: color .2s ease; word-break: break-all; }
.theme-footer-contact-item a:hover { color: var(--color-magenta); }
.theme-footer-contact-item svg { margin-top: 2px; flex-shrink: 0; }
.site-footer__bottom {
	margin-top: 2.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--color-border);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
}
@media (min-width: 640px) { .site-footer__bottom { flex-direction: row; justify-content: space-between; } }
.site-footer__bottom .theme-exhibit-num { margin-bottom: 0; }
.site-footer__credit { font-size: 15px; color: var(--color-muted); }
.site-footer__credit a { text-decoration: underline; transition: color .2s ease; }
.site-footer__credit a:hover { color: var(--color-magenta); }

/* ---------------------------------------------------------------------
   12. Contact modal & zoom modal
   --------------------------------------------------------------------- */
.theme-modal, .theme-zoom-modal {
	position: fixed;
	inset: 0;
	z-index: 70;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
}
.theme-modal[data-state="open"], .theme-zoom-modal[data-state="open"] { display: flex; }
.theme-modal__overlay {
	position: fixed;
	inset: 0;
	background-color: rgba(0,0,0,.8);
	animation: theme-fade-in .3s ease-out;
}
.theme-modal__content {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 32rem;
	max-height: 90vh;
	overflow-y: auto;
	background-color: var(--color-paper);
	border: 1px solid var(--color-border);
	padding: 1.5rem;
	animation: theme-zoom-in .2s ease-out;
}
.theme-modal__close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	color: var(--color-muted);
	opacity: .7;
	transition: opacity .2s ease;
}
.theme-modal__close:hover { opacity: 1; }
.theme-modal__eyebrow-row { display: flex; align-items: center; gap: 0.75rem; }
.theme-modal__dot { height: 8px; width: 8px; background-color: var(--color-magenta); display: inline-block; }
.theme-modal__title { font-size: 1.5rem; font-weight: 600; color: var(--color-ink); margin: 0.5rem 0; }
.theme-modal__subtitle { color: var(--color-muted-light); margin-bottom: 1rem; }
.theme-modal__selected { border: 1px solid var(--color-border); background-color: var(--color-plaster); padding: 0.75rem 1rem; margin-bottom: 1rem; }
.theme-modal__selected-label { display: block; margin-bottom: 0.25rem; }
.theme-modal__selected-name { font-weight: 500; font-size: 0.875rem; color: var(--color-ink); }
.theme-modal__quicklinks { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; font-size: 0.875rem; color: var(--color-muted-light); padding-top: 0.5rem; border-top: 1px solid var(--color-border); margin-bottom: 1rem; }
.theme-modal__quicklinks a { display: inline-flex; align-items: center; gap: 0.5rem; transition: color .2s ease; }
.theme-modal__quicklinks a:hover { color: var(--color-ink); }
.theme-modal__form { display: flex; flex-direction: column; gap: 1rem; }
.theme-modal__form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .theme-modal__form-row { grid-template-columns: 1fr 1fr; } }
.theme-modal__field label { display: block; font-size: 12px; font-weight: 500; margin-bottom: 0.375rem; color: var(--color-ink); }
.theme-modal__textarea { height: auto; padding: 0.75rem 1rem; resize: vertical; }
.theme-modal__submit { width: 100%; text-transform: none; }
.theme-modal__success { text-align: center; padding: 2rem 0; }
.theme-modal__success-icon { width: 3.5rem; height: 3.5rem; background-color: var(--color-ink); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.theme-modal__success h3 { font-size: 1.25rem; margin-bottom: 0.5rem; color: var(--color-ink); }
.theme-modal__success p { font-size: 0.875rem; color: var(--color-muted-light); }

.theme-zoom-modal__content { position: relative; z-index: 1; width: 100%; max-width: 64rem; }
.theme-zoom-modal__content img { width: 100%; height: 80vh; object-fit: contain; background-color: var(--color-plaster); }

body.theme-modal-open { overflow: hidden; }

@keyframes theme-fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes theme-slide-up { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes theme-zoom-in { from { opacity: 0; transform: scale(.95); } to { opacity: 1; transform: scale(1); } }

/* ---------------------------------------------------------------------
   13. Single product page
   --------------------------------------------------------------------- */
.theme-single-product { background-color: #F3EFE7; }
.theme-single-product__top { padding: 2rem 0 1.5rem; }
.theme-back-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.22em;
	color: var(--color-ink);
	transition: color .2s ease;
}
.theme-back-link:hover { color: var(--color-magenta); }

.theme-single-product__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	align-items: flex-start;
	padding-bottom: 5rem;
}
@media (min-width: 1024px) { .theme-single-product__grid { grid-template-columns: minmax(0,1.15fr) minmax(360px,0.85fr); gap: 3.5rem; } }

.theme-product-gallery, .theme-product-info { min-width: 0; max-width: 100%; }
.theme-product-gallery__main {
	position: relative;
	aspect-ratio: 4/5;
	background-color: var(--color-paper);
	border: 1px solid var(--color-border);
	box-shadow: 0 18px 60px color-mix(in srgb, var(--color-ink) 10%, transparent);
	padding: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
@media (min-width: 640px) { .theme-product-gallery__main { aspect-ratio: 5/4; } }
@media (min-width: 1024px) { .theme-product-gallery__main { aspect-ratio: 4/5; } }
@media (min-width: 1280px) { .theme-product-gallery__main { aspect-ratio: 5/4; } }
.theme-product-gallery__img { position: static; width: auto; height: auto; max-width: 100%; max-height: 100%; object-fit: contain; }
.theme-product-gallery__zoom {
	position: absolute;
	bottom: 1rem;
	right: 1rem;
	width: 2.5rem;
	height: 2.5rem;
	background-color: var(--color-ink);
	color: var(--color-paper);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color .2s ease;
	z-index: 2;
}
.theme-product-gallery__zoom:hover { background-color: var(--color-magenta); }
.theme-product-thumbnails { margin-top: 1rem; display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 0.75rem; flex-wrap: wrap; max-width: 100%; }
.theme-product-thumb {
	aspect-ratio: 1/1;
	border: 1px solid var(--color-border);
	background-color: var(--color-paper);
	padding: 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: border-color .2s ease;
}
.theme-product-thumb img { max-width: 100%; max-height: 100%; object-fit: contain; }
.theme-product-thumb:hover { border-color: var(--color-ink); }
.theme-product-thumb.is-active { border-color: var(--color-magenta); }

.theme-product-info__piece-row { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; }
.theme-product-info__rule { height: 1px; width: 2.5rem; background-color: var(--color-ink); }
.theme-product-info__dot { height: 8px; width: 8px; background-color: var(--color-magenta); }
.theme-product-info__title, .product-title {
	font-family: 'Bricolage Grotesque', system-ui, sans-serif;
	font-weight: 700;
	font-size: 1.875rem;
	color: var(--color-ink);
	line-height: 1.2;
	margin-bottom: 0.75rem;
}
@media (min-width: 768px) { .theme-product-info__title, .product-title { font-size: 2.25rem; } }
.theme-product-info__subtitle { font-size: 0.875rem; color: var(--color-muted); text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 1.5rem; }
.theme-product-info__price-row { display: flex; align-items: baseline; gap: 1rem; margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--color-border); }
.theme-product-info__price { font-size: 1.875rem; font-weight: 700; color: var(--color-ink); }
.theme-product-info__price .woocommerce-Price-amount { font-weight: 700; }
.theme-product-info__stock--oos { font-weight: 600; color: var(--color-magenta); margin-bottom: 1.5rem; text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.875rem; }
.theme-product-info__description { margin-bottom: 2rem; overflow-wrap: break-word; word-break: break-word; }
.theme-product-info__description p, .woocommerce-product-details__short-description { color: var(--color-muted); line-height: 1.7; white-space: pre-line; }
.theme-product-info__details { margin-top: 2rem; overflow-wrap: break-word; word-break: break-word; }
.theme-product-info__details-body { color: var(--color-muted); line-height: 1.7; }
.theme-product-info__categories, .posted_in { margin-top: 1.5rem; font-size: 0.875rem; color: var(--color-muted); overflow-wrap: break-word; word-break: break-word; }
.theme-product-info__categories a { color: var(--color-ink); text-decoration: underline; }

.theme-quantity-label { margin-bottom: 0.5rem; display: block; }
.theme-quantity-wrapper {
	display: inline-flex;
	align-items: center;
	border: 1px solid color-mix(in srgb, var(--color-ink) 24%, transparent);
	background-color: var(--color-paper);
}
.theme-qty-minus, .theme-qty-plus {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-ink);
	transition: background-color .2s ease;
}
.theme-qty-minus:hover, .theme-qty-plus:hover { background-color: var(--color-plaster); }
.theme-qty-input {
	width: 48px;
	height: 44px;
	text-align: center;
	border: none;
	background: transparent;
	font-weight: 600;
	color: var(--color-ink);
	-moz-appearance: textfield;
}
.theme-qty-input::-webkit-outer-spin-button, .theme-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.theme-request-customization-btn { text-transform: none; }

.theme-product-info__details, .woocommerce-variation-description, .posted_in { overflow-wrap: break-word; word-break: break-word; }

/* Single product responsive layout (Section 11.13) */
.theme-product-layout { min-width: 0; }

.theme-add-to-cart-area {
	display: flex;
	align-items: stretch;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-bottom: 1.5rem;
}
.single-product .single_add_to_cart_button, .theme-add-to-cart-area .single_add_to_cart_button {
	flex: 1 1 auto;
	min-width: 160px;
}

/* Variations table layout */
.single-product .variations.shop_attributes tbody,
.single-product .variations tbody tr,
.single-product .variations tbody td {
	display: block;
	width: 100%;
}
.single-product .variations tbody td.label { padding-bottom: 0.25rem; font-weight: 600; }
.single-product .variations tbody td.value { padding-top: 0; }
.theme-attr-select-hidden { display: none !important; }

/* Variable product attribute pills (Section 11.5.2) */
.theme-attr-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.theme-attr-pill {
	border: 1px solid var(--color-border);
	background-color: var(--color-paper);
	color: var(--color-ink);
	padding: 0.5rem 1rem;
	font-size: 0.875rem;
	font-weight: 500;
	transition: border-color .2s ease, background-color .2s ease, color .2s ease;
}
.theme-attr-pill:hover { border-color: var(--color-ink); }
.theme-attr-pill.is-selected { background-color: var(--color-ink); color: var(--color-paper); border-color: var(--color-ink); }

/* ---------------------------------------------------------------------
   14. Related products
   --------------------------------------------------------------------- */
.theme-related-products { padding: 4rem 0 5rem; }
@media (min-width: 1024px) { .theme-related-products { padding: 5rem 0; } }
.theme-related-products__head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2.5rem; gap: 1rem; }
.theme-related-heading { font-size: 1.5rem; font-weight: 700; color: var(--color-ink); }
@media (min-width: 640px) { .theme-related-heading { font-size: 1.875rem; } }
.theme-related-products__link { display: inline-flex; align-items: center; gap: 0.25rem; font-size: 12px; text-transform: uppercase; letter-spacing: 0.22em; color: var(--color-ink); transition: color .2s ease; white-space: nowrap; }
.theme-related-products__link:hover { color: var(--color-magenta); }
.related-products-section { background-color: var(--color-paper); border-top: 1px solid var(--color-border); }

/* ---------------------------------------------------------------------
   15. Shop archive page title
   --------------------------------------------------------------------- */
.theme-shop-archive__head { padding-top: 2.5rem; }

/* ---------------------------------------------------------------------
   16. 404
   --------------------------------------------------------------------- */
.theme-404 { min-height: 70vh; background-color: #F3EFE7; display: flex; align-items: center; }
.theme-404__inner { text-align: center; padding: 5rem 0; }
.theme-404__badge {
	width: 6rem;
	height: 8rem;
	border: 1px solid color-mix(in srgb, var(--color-ink) 24%, transparent);
	background-color: var(--color-paper);
	margin: 0 auto 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Bricolage Grotesque', system-ui, sans-serif;
	font-size: 1.875rem;
	font-weight: 700;
	color: var(--color-ink);
}
.theme-404__title { font-size: 1.875rem; font-weight: 700; color: var(--color-ink); margin-bottom: 1rem; }
@media (min-width: 768px) { .theme-404__title { font-size: 2.25rem; } }
.theme-404__body { color: var(--color-muted-light); margin-bottom: 2rem; }

/* ---------------------------------------------------------------------
   17. Generic page template (Checkout page shell, etc.)
   --------------------------------------------------------------------- */
.theme-page { min-height: 60vh; padding: 2.5rem 0 4rem; background-color: #F3EFE7; }
.page-title { font-size: 1.875rem; font-weight: 700; color: var(--color-ink); margin-bottom: 1.5rem; }
@media (min-width: 768px) { .page-title { font-size: 2.25rem; } }

/* ---------------------------------------------------------------------
   18. Side cart drawer (Section 12)
   --------------------------------------------------------------------- */
#theme-cart-overlay {
	position: fixed;
	inset: 0;
	background-color: color-mix(in srgb, var(--color-ink) 40%, transparent);
	z-index: 55;
	opacity: 0;
	visibility: hidden;
	transition: opacity .3s ease;
}
body.cart-open #theme-cart-overlay { opacity: 1; visibility: visible; }

#theme-cart-drawer {
	position: fixed;
	right: 0;
	top: 0;
	height: 100%;
	width: 100%;
	max-width: 28rem;
	background-color: var(--color-paper);
	border-left: 1px solid var(--color-border);
	z-index: 56;
	display: flex;
	flex-direction: column;
	transform: translateX(100%);
	transition: transform .35s cubic-bezier(.25,.4,.25,1);
}
body.cart-open #theme-cart-drawer { transform: translateX(0); }
#theme-cart-drawer.is-updating { opacity: 0.6; pointer-events: none; }

.theme-cart-drawer__header { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--color-border); }
.theme-cart-drawer__title { font-size: 1.25rem; font-weight: 600; color: var(--color-ink); }
.theme-cart-drawer__close { padding: 0.25rem; color: var(--color-ink); transition: color .2s ease; }
.theme-cart-drawer__close:hover { color: var(--color-magenta); }

.theme-cart-drawer__empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 0 1.5rem; }
.theme-cart-drawer__empty-icon { width: 6rem; height: 6rem; border: 1px solid var(--color-border); background-color: var(--color-plaster); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.theme-cart-drawer__empty p { color: var(--color-muted-light); margin-bottom: 1.5rem; }

.theme-cart-drawer__items { flex: 1; overflow: auto; padding: 1.25rem 1.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.theme-cart-drawer__item { display: flex; gap: 1rem; padding-bottom: 1.25rem; border-bottom: 1px solid var(--color-border); }
.theme-cart-drawer__item:last-child { border-bottom: none; padding-bottom: 0; }
.theme-cart-drawer__item-num { padding-top: 0.5rem; width: 1.5rem; flex-shrink: 0; }
.theme-cart-drawer__item-thumb { width: 5rem; height: 6rem; border: 1px solid var(--color-border); background-color: var(--color-plaster); display: flex; align-items: center; justify-content: center; overflow: hidden; flex-shrink: 0; }
.theme-cart-drawer__item-thumb img { max-width: 100%; max-height: 100%; object-fit: contain; }
.theme-cart-drawer__item-info { flex: 1; min-width: 0; }
.theme-cart-drawer__item-name { font-family: 'Bricolage Grotesque', system-ui, sans-serif; font-size: 0.875rem; font-weight: 600; color: var(--color-ink); display: block; transition: color .2s ease; }
.theme-cart-drawer__item-name:hover { color: var(--color-magenta); }
.theme-cart-drawer__item-price { font-size: 0.875rem; color: var(--color-ink); font-weight: 500; margin-top: 0.25rem; }
.theme-cart-drawer__item-controls { display: flex; align-items: center; gap: 0.75rem; margin-top: 0.75rem; }
.theme-cart-qty-btn { padding: 0.25rem; border: 1px solid var(--color-border); display: flex; align-items: center; justify-content: center; transition: background-color .2s ease; }
.theme-cart-qty-btn:hover { background-color: var(--color-plaster); }
.theme-cart-drawer__item-qty { font-size: 0.875rem; width: 1.5rem; text-align: center; }
.theme-cart-drawer__item-remove { margin-left: auto; font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--color-muted-light); transition: color .2s ease; }
.theme-cart-drawer__item-remove:hover { color: var(--color-magenta); }

.theme-cart-drawer__footer { border-top: 1px solid var(--color-border); padding: 1.25rem 1.5rem; display: flex; flex-direction: column; gap: 1rem; background-color: var(--color-plaster); }
.theme-cart-drawer__subtotal { display: flex; justify-content: space-between; font-size: 0.875rem; }
.theme-cart-drawer__subtotal-value { font-weight: 600; color: var(--color-ink); }
.theme-cart-drawer__checkout-btn { width: 100%; text-transform: none; }
.theme-cart-drawer__empty-btn { width: 100%; font-size: 12px; text-transform: uppercase; letter-spacing: 0.22em; color: var(--color-muted-light); display: inline-flex; align-items: center; justify-content: center; gap: 0.375rem; transition: color .2s ease; }
.theme-cart-drawer__empty-btn:hover { color: var(--color-magenta); }

/* ---------------------------------------------------------------------
   19. WooCommerce style overrides (Section 14 / 11.4.1 / 11.4.2)
   --------------------------------------------------------------------- */
.woocommerce-Price-amount { color: inherit; font-weight: inherit; }
.woocommerce ul.products, ul.products { margin: 0; padding: 0; list-style: none; }

.single_add_to_cart_button.button,
.add_to_cart_button.button,
a.single_add_to_cart_button,
a.add_to_cart_button {
	background-color: var(--color-ink) !important;
	color: var(--color-paper) !important;
	border: none !important;
	border-radius: 0 !important;
	min-height: 48px !important;
	padding: 0.75rem 1.5rem !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	font-family: 'DM Sans', system-ui, sans-serif !important;
	font-size: 1rem !important;
	font-weight: 600 !important;
	letter-spacing: normal !important;
	text-transform: none !important;
	cursor: pointer !important;
	transition: opacity .2s ease !important;
}
.single_add_to_cart_button.button:hover,
.add_to_cart_button.button:hover {
	opacity: 0.85 !important;
	background-color: var(--color-ink) !important;
	color: var(--color-paper) !important;
}
.single_add_to_cart_button.button:disabled,
.single_add_to_cart_button.button.disabled,
.add_to_cart_button.button:disabled,
.add_to_cart_button.button.disabled {
	cursor: not-allowed !important;
	opacity: 0.4 !important;
	pointer-events: none !important;
}
.single_add_to_cart_button.button:disabled:hover,
.single_add_to_cart_button.button.disabled:hover,
.add_to_cart_button.button:disabled:hover,
.add_to_cart_button.button.disabled:hover {
	opacity: 0.4 !important;
	background-color: var(--color-ink) !important;
}
.single-product .single_add_to_cart_button.loading::after,
.ajax_add_to_cart.loading::after { display: none !important; }
.ajax_add_to_cart.theme-btn-loading { opacity: 0.6 !important; pointer-events: none !important; cursor: wait !important; }

.woocommerce-page a.added_to_cart.wc-forward,
.single-product a.added_to_cart.wc-forward,
body a.added_to_cart.wc-forward { display: none !important; }

/* Notices — scoped visibility (Section 14.1) */
.single-product .woocommerce-message,
.single-product .woocommerce-info,
#theme-cart-drawer .woocommerce-message { display: none; }
.woocommerce-error, .woocommerce-message, .woocommerce-info {
	border: 1px solid var(--color-border);
	background-color: var(--color-paper);
	color: var(--color-ink);
	padding: 1rem 1.5rem;
	font-size: 0.9375rem;
	list-style: none;
	margin: 0 0 1.5rem;
}

/* ---------------------------------------------------------------------
   20. Checkout Block (Section 13)
   --------------------------------------------------------------------- */
body.woocommerce-checkout .site-main { padding-top: var(--header-height, 0px); padding-bottom: 4rem; }
body.woocommerce-checkout .entry-content { width: 100%; }

body.woocommerce-checkout .wc-block-checkout,
body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout.is-large {
	display: block;
}
@media (min-width: 768px) {
	body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout.is-large,
	body.woocommerce-checkout .wc-block-checkout.wc-block-components-sidebar-layout {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: var(--checkout-gap, 2rem);
		align-items: start;
	}
}
body.woocommerce-checkout .wc-block-checkout__main,
body.woocommerce-checkout .wc-block-checkout__sidebar {
	min-width: 0;
	width: 100%;
	max-width: none;
}
body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-components-select select {
	width: 100% !important;
	max-width: none !important;
	font-family: 'DM Sans', system-ui, sans-serif;
	color: var(--color-ink);
	border: 1px solid var(--color-border);
	border-radius: 0;
	background-color: var(--color-paper);
	padding: revert;
}
body.woocommerce-checkout .wc-block-components-text-input input:focus,
body.woocommerce-checkout .wc-block-components-select select:focus,
body.woocommerce-checkout .wc-block-components-text-input input:focus-visible {
	outline: none;
	box-shadow: 0 0 0 2px var(--color-magenta);
}
body.woocommerce-checkout .wc-block-components-text-input input::placeholder { color: var(--color-muted-light); }
body.woocommerce-checkout .wc-block-checkout__sidebar {
	background-color: var(--color-plaster);
	border-radius: 0;
	padding: 2rem;
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button {
	background-color: var(--color-ink) !important;
	color: var(--color-paper) !important;
	border-radius: 0 !important;
	text-transform: none !important;
	font-weight: 600 !important;
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover { opacity: 0.85; }
body.woocommerce-checkout .wc-block-components-notice-banner {
	border-radius: 0;
	border-color: var(--color-border);
}
body.woocommerce-checkout h2, body.woocommerce-checkout h3 {
	font-family: 'Bricolage Grotesque', system-ui, sans-serif;
	color: var(--color-ink);
}

/* ---------------------------------------------------------------------
   21. Cart / My Account width parity (Section 13.7)
   --------------------------------------------------------------------- */
body.woocommerce-cart .entry-content,
body.woocommerce-account .entry-content { width: 100%; }

/* ---------------------------------------------------------------------
   22. Thank-you page (Section 22.8)
   --------------------------------------------------------------------- */
body.theme-thankyou-page { overflow-x: hidden; background-color: #F3EFE7; }
.theme-thankyou { max-width: 48rem; margin: 0 auto; padding: 4rem 1rem 6rem; text-align: center; }
.theme-thankyou__icon { width: 4rem; height: 4rem; background-color: var(--color-ink); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.theme-thankyou__title { font-size: 1.875rem; font-weight: 700; color: var(--color-ink); margin: 0.75rem 0 1rem; }
@media (min-width: 768px) { .theme-thankyou__title { font-size: 2.25rem; } }
body.theme-thankyou-page .woocommerce-order { text-align: left; margin-top: 2rem; }
body.theme-thankyou-page .woocommerce-order h2,
body.theme-thankyou-page .woocommerce-order-details__title { font-family: 'Bricolage Grotesque', system-ui, sans-serif; color: var(--color-ink); padding: 0 0 1rem 0; }
body.theme-thankyou-page .woocommerce-order-overview { display: flex; flex-wrap: wrap; gap: 1rem 2rem; list-style: none; padding: 0; margin: 0 0 2rem; }
body.theme-thankyou-page .woocommerce-order-overview li { border: none; padding: 0; }
body.theme-thankyou-page .woocommerce-order-details table { width: 100%; table-layout: fixed; border-collapse: collapse; margin-bottom: 2rem; }
body.theme-thankyou-page .woocommerce-order-details table th,
body.theme-thankyou-page .woocommerce-order-details table td { border: 1px solid var(--color-border); padding: 0.75rem; }
body.theme-thankyou-page .woocommerce-order-details tfoot th { text-align: left; }
body.theme-thankyou-page .woocommerce-order-details tfoot td { text-align: right; }
body.theme-thankyou-page .woocommerce-customer-details {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}
body.theme-thankyou-page .woocommerce-customer-details address {
	max-width: 480px;
	overflow-wrap: break-word;
	border: 1px solid var(--color-border);
	padding: 1rem;
}

/* ---------------------------------------------------------------------
   23. WooCommerce breadcrumbs (not present in the source design — suppressed
        in functions.php; no styling required here).
   --------------------------------------------------------------------- */

/* ---------------------------------------------------------------------
   24. Card compact button variant placeholder (no card add-to-cart button
        exists in this design — Section 19.1 — kept empty intentionally).
   --------------------------------------------------------------------- */
