/* =========================================================================
   Art by LMS Cross — theme stylesheet
   Theme by The Free Website Guys.
   ========================================================================= */

:root {
	--color-background: #faf9f5;
	--color-foreground: #172620;
	--color-primary: #23573f;
	--color-primary-foreground: #faf9f5;
	--color-secondary: #e2e9e2;
	--color-accent: #6d8d49;
	--color-muted-foreground: #5c7066;
	--color-border: #d1dbd5;
	--color-ivory: #fcfbf8;
	--color-linen: #f3f3ed;
	--color-bone: #e8ebe5;
	--color-destructive: #b6392b;
	--color-button-text: #faf9f5;
	--logo-height: 27px;
	--logo-height-sm: calc(var(--logo-height) * 0.706);
	--logo-height-md: calc(var(--logo-height) * 0.824);

	--font-body: 'Switzer', system-ui, -apple-system, sans-serif;
	--font-display: 'Newsreader', 'Instrument Serif', Georgia, serif;

	--radius-lg: 0.75rem;
	--radius-xl: 0.75rem; /* Lovable ProductCard: rounded-xl */
	--radius-md: calc(0.5rem - 2px);
	--radius-full: 999px;

	--btn-radius: 999px;
	--btn-height: 2.75rem;
	--btn-padding: 0 1.6rem;
	--btn-font-size: 14px;
	--btn-font-weight: 500;
	--btn-letter-spacing: 0;
	--btn-text-transform: none;

	--shadow-soft: 0 4px 20px -8px rgba(23, 38, 32, 0.14);
	--shadow-elevated: 0 24px 60px -18px rgba(23, 38, 32, 0.22);

	--header-height: 96px;
	--checkout-gap: 2rem;
}

/* Scoped dark surface — Shop + Footer sections */
.section-dark {
	--color-background: #111d18;
	--color-foreground: #f5f4ef;
	--color-primary: #a0bf7d;
	--color-primary-foreground: #111d18;
	--color-secondary: #21312a;
	--color-muted-foreground: #b0baab;
	--color-accent: #96b86f;
	--color-border: #2f413a;
	--color-ivory: #111d18;
	--color-linen: #1c2c25;
	--color-bone: #23342d;
	background: var(--color-background);
	color: var(--color-foreground);
}

/* -------------------------------------------------------------------------
   RESET / BASE
   ---------------------------------------------------------------------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { max-width: 100%; overflow-x: clip; }

body {
	background: var(--color-background);
	color: var(--color-foreground);
	font-family: var(--font-body);
	margin: 0;
	-webkit-font-smoothing: antialiased;
	font-feature-settings: 'ss01', 'cv11';
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: inherit;
	letter-spacing: -0.014em;
	margin: 0;
}

p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button, a { cursor: pointer; }
img { max-width: 100%; display: block; }
img:not(.cover-img):not(.theme-hero__bg):not(.theme-product-card__image):not(.theme-product-gallery__img):not(.theme-product-gallery__main img):not(.theme-product-thumb img):not(.theme-artist__image):not(.theme-cart-drawer__item-thumb img):not(.site-logo-img):not(.site-footer__logo-img) {
	max-width: 100%;
	height: auto;
}
.cover-img,
.theme-hero__bg,
.theme-artist__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100% !important;
	object-fit: cover;
	display: block;
}
.theme-cart-drawer__item-thumb img {
	width: 100%;
	height: 100% !important;
	object-fit: cover;
}
.site-logo-img,
.site-footer__logo-img {
	width: auto !important;
	max-width: none;
	height: var(--logo-height-sm);
}
@media (min-width: 640px) {
	.site-logo-img,
	.site-footer__logo-img {
		height: var(--logo-height-md);
	}
}
@media (min-width: 1024px) {
	.site-logo-img,
	.site-footer__logo-img {
		height: var(--logo-height);
	}
}
body.woocommerce-checkout .site-logo-img,
body.woocommerce-checkout .site-footer__logo-img,
body.single-product .site-logo-img,
body.single-product .site-footer__logo-img,
body.theme-no-hero .site-logo-img,
body.theme-no-hero .site-footer__logo-img {
	height: var(--logo-height-sm) !important;
	width: auto !important;
	max-width: none !important;
}
@media (min-width: 640px) {
	body.woocommerce-checkout .site-logo-img,
	body.woocommerce-checkout .site-footer__logo-img,
	body.single-product .site-logo-img,
	body.single-product .site-footer__logo-img,
	body.theme-no-hero .site-logo-img,
	body.theme-no-hero .site-footer__logo-img {
		height: var(--logo-height-md) !important;
	}
}
@media (min-width: 1024px) {
	body.woocommerce-checkout .site-logo-img,
	body.woocommerce-checkout .site-footer__logo-img,
	body.single-product .site-logo-img,
	body.single-product .site-footer__logo-img,
	body.theme-no-hero .site-logo-img,
	body.theme-no-hero .site-footer__logo-img {
		height: var(--logo-height) !important;
	}
}

section[id] { scroll-margin-top: 80px; }

img[data-protected-image], [data-protected-image] img {
	-webkit-user-drag: none;
	user-select: none;
	-webkit-user-select: none;
	-webkit-touch-callout: none;
}

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

/* -------------------------------------------------------------------------
   REVEAL ANIMATIONS (Section 2.1) — ported verbatim from source index.css
   ---------------------------------------------------------------------- */
[data-reveal] {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 900ms cubic-bezier(0.22, 1, 0.36, 1),
		transform 900ms cubic-bezier(0.22, 1, 0.36, 1),
		filter 900ms cubic-bezier(0.22, 1, 0.36, 1);
	will-change: opacity, transform;
}
[data-reveal].is-revealed { opacity: 1; transform: none; filter: none; }
[data-reveal='fade'] { transform: none; }
[data-reveal='left'] { transform: translateX(-32px); }
[data-reveal='right'] { transform: translateX(32px); }
[data-reveal='scale'] { transform: scale(0.96); }
[data-reveal='blur'] { transform: translateY(16px); filter: blur(10px); }
[data-reveal='mask'] { transform: translateY(40px); clip-path: inset(0 0 100% 0); }
[data-reveal='mask'].is-revealed { clip-path: inset(0 0 0 0); transition-duration: 1100ms; }

/* Customizer-preview fallback (Section 2.1.5) — reveal items must always be
   visible while editing in the Customizer iframe. */
body.is-customizer [data-reveal] {
	opacity: 1 !important;
	transform: none !important;
	filter: none !important;
	clip-path: none !important;
}

@media (prefers-reduced-motion: reduce) {
	[data-reveal], [data-reveal].is-revealed {
		opacity: 1 !important;
		transform: none !important;
		filter: none !important;
		clip-path: none !important;
		transition: none !important;
	}
}

.theme-underline-link, .underline-grow { position: relative; }
.theme-underline-link::after, .underline-grow::after {
	content: '';
	position: absolute;
	left: 0; bottom: -3px;
	height: 1px; width: 100%;
	background: currentColor;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 450ms cubic-bezier(0.22, 1, 0.36, 1);
}
.theme-underline-link:hover::after, .underline-grow:hover::after { transform: scaleX(1); }

/* -------------------------------------------------------------------------
   BUTTONS
   ---------------------------------------------------------------------- */
.theme-btn-primary,
.theme-btn-outline,
.theme-btn-ghost {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	white-space: nowrap;
	border-radius: var(--btn-radius);
	font-family: var(--font-body);
	font-size: var(--btn-font-size);
	font-weight: var(--btn-font-weight);
	letter-spacing: var(--btn-letter-spacing);
	text-transform: var(--btn-text-transform);
	height: var(--btn-height);
	padding: var(--btn-padding);
	border: 1px solid transparent;
	transition: opacity 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}
.theme-btn-primary,
.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-primary) !important;
	color: var(--color-button-text) !important;
	border: none !important;
	border-radius: var(--btn-radius) !important;
	min-height: var(--btn-height) !important;
	padding: var(--btn-padding) !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	font-family: var(--font-body) !important;
	font-size: var(--btn-font-size) !important;
	font-weight: var(--btn-font-weight) !important;
	letter-spacing: var(--btn-letter-spacing) !important;
	text-transform: var(--btn-text-transform) !important;
	cursor: pointer !important;
	transition: opacity 0.2s ease !important;
}
.theme-btn-primary:hover,
.single_add_to_cart_button.button:hover,
.add_to_cart_button.button:hover {
	opacity: 1 !important;
	background-color: color-mix(in srgb, var(--color-primary) 90%, transparent) !important;
	color: var(--color-button-text) !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 {
	opacity: 0.4 !important;
	background-color: var(--color-primary) !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; }

.theme-btn-outline {
	background: transparent;
	color: var(--color-foreground);
	border: 1px solid color-mix(in srgb, var(--color-foreground) 25%, transparent);
}
.theme-btn-outline:hover { border-color: var(--color-foreground); background: color-mix(in srgb, var(--color-foreground) 4%, transparent); }
.theme-btn-outline.is-disabled,
.theme-btn-outline.disabled,
.theme-product-checkout.is-disabled,
.theme-product-checkout.disabled {
	opacity: 0.45;
	pointer-events: none;
	cursor: not-allowed;
}

.theme-btn-ghost { background: transparent; border-color: transparent; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }
.theme-btn-ghost:hover { background: color-mix(in srgb, var(--color-foreground) 5%, transparent); }

.theme-btn-lg { height: 3rem; padding: 0 1.75rem; }
.theme-btn-block { width: 100%; }
.theme-btn-primary.disabled, .theme-btn-primary[aria-disabled="true"] { opacity: 0.5; pointer-events: none; }

.theme-eyebrow {
	font-size: 12px;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: var(--color-primary);
	font-weight: 500;
	margin-bottom: 1rem;
}
.theme-eyebrow--spaced { margin-bottom: 1.25rem; }

/* -------------------------------------------------------------------------
   HEADER
   ---------------------------------------------------------------------- */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 50; }
.site-announcement {
	background: var(--color-foreground);
	color: var(--color-background);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	text-align: center;
	padding: 0.5rem 1rem;
	opacity: 0.9;
}
@media (min-width: 640px) { .site-announcement { font-size: 12px; } }
.site-header__bar { transition: background-color 0.5s ease, border-color 0.5s ease; border-bottom: 1px solid transparent; }
.site-header:not(.is-solid) .site-header__bar:not(.is-scrolled) {
	background: transparent;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
}
.site-header.is-solid .site-header__bar,
.site-header__bar.is-scrolled {
	background: var(--color-ivory) !important;
	backdrop-filter: none !important;
	-webkit-backdrop-filter: none !important;
	border-bottom-color: color-mix(in srgb, var(--color-foreground) 10%, transparent);
}
.site-header__row { display: flex; align-items: center; justify-content: space-between; height: 4rem; gap: 1rem; }
@media (min-width: 1024px) { .site-header__row { height: 5rem; } }

.site-header__toggle {
	display: inline-flex; align-items: center; justify-content: center;
	width: 2.5rem; height: 2.5rem; border-radius: 999px; border: none; background: transparent;
	color: var(--color-foreground); order: 1; transition: background-color 0.3s ease, color 0.3s ease;
}
.site-header:not(.is-solid) .site-header__bar:not(.is-scrolled) .site-header__toggle { color: #fff; }
.site-header:not(.is-solid) .site-header__bar:not(.is-scrolled) .site-header__toggle:hover,
.site-header:not(.is-solid) .site-header__bar:not(.is-scrolled) .site-header__cart-btn:hover {
	background: rgba(255, 255, 255, 0.1);
}
.site-header.is-solid .site-header__toggle:hover,
.site-header__bar.is-scrolled .site-header__toggle:hover,
.site-header.is-solid .site-header__cart-btn:hover,
.site-header__bar.is-scrolled .site-header__cart-btn:hover {
	background: color-mix(in srgb, var(--color-foreground) 6%, transparent);
}
.site-header__toggle .icon-menu-close { display: none; }
.site-header__toggle[aria-expanded="true"] .icon-menu-open { display: none; }
.site-header__toggle[aria-expanded="true"] .icon-menu-close { display: block; }
@media (min-width: 1024px) { .site-header__toggle { display: none; } }

.site-header__brand { display: flex; flex-direction: column; line-height: 1; order: 2; flex-shrink: 0; }
@media (min-width: 1024px) { .site-header__brand { order: 1; } }
.site-logo-img { height: var(--logo-height-sm); width: auto !important; display: block; }
@media (min-width: 640px) { .site-logo-img { height: var(--logo-height-md); } }
@media (min-width: 1024px) { .site-logo-img { height: var(--logo-height); } }
.site-logo-img--light { display: none; }
.site-header:not(.is-solid) .site-header__bar:not(.is-scrolled) .site-logo-img--dark { display: none; }
.site-header:not(.is-solid) .site-header__bar:not(.is-scrolled) .site-logo-img--light { display: block; }
.site-logo-text { font-family: var(--font-display); font-size: 1.25rem; }
.site-header__tagline {
	display: none; margin-top: 0.375rem; font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
	color: color-mix(in srgb, var(--color-foreground) 55%, transparent);
}
.site-header:not(.is-solid) .site-header__bar:not(.is-scrolled) .site-header__tagline { color: rgba(255,255,255,0.7); }
@media (min-width: 640px) { .site-header__tagline { display: block; } }
@media (min-width: 1024px) { .site-header__tagline { font-size: 12px; } }

.site-header__nav { display: none; order: 3; margin-left: auto; }
@media (min-width: 1024px) {
	.site-header__nav { display: flex; align-items: center; gap: 1.5rem; order: 2; }
}
.theme-nav-list { display: flex; align-items: center; gap: 1.5rem; }
.theme-nav-link, .theme-nav-item > a {
	position: relative;
	font-size: 14px; font-weight: 500;
	color: color-mix(in srgb, var(--color-foreground) 75%, transparent);
	transition: color 0.3s ease;
}
.site-header:not(.is-solid) .site-header__bar:not(.is-scrolled) .theme-nav-link,
.site-header:not(.is-solid) .site-header__bar:not(.is-scrolled) .theme-nav-item > a { color: rgba(255,255,255,0.85); }
.theme-nav-link:hover, .theme-nav-item > a:hover { color: var(--color-primary); }
.site-header:not(.is-solid) .site-header__bar:not(.is-scrolled) .theme-nav-link:hover,
.site-header:not(.is-solid) .site-header__bar:not(.is-scrolled) .theme-nav-item > a:hover { color: #fff; }
.theme-nav-link.is-active, .theme-nav-item.is-active > a { color: var(--color-primary); }
.site-header:not(.is-solid) .site-header__bar:not(.is-scrolled) .theme-nav-item.is-active > a { color: #fff; }
.theme-nav-item > a::after {
	content: ''; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; border-radius: 999px;
	background: var(--color-primary); opacity: 0; transform: scaleX(0); transition: all 0.3s ease;
}
.theme-nav-item.is-active > a::after { opacity: 1; transform: scaleX(1); }
.site-header:not(.is-solid) .site-header__bar:not(.is-scrolled) .theme-nav-item.is-active > a::after { background: #fff; }

.site-header__actions { display: flex; align-items: center; justify-content: flex-end; gap: 0.5rem; order: 3; margin-left: 0; }
@media (min-width: 1024px) { .site-header__actions { margin-left: 1.5rem; } }
.site-header__cart-btn {
	position: relative; display: inline-flex; align-items: center; justify-content: center;
	width: 2.5rem; height: 2.5rem; border-radius: 999px; border: none; background: transparent; color: var(--color-foreground);
	transition: background-color 0.3s ease, color 0.3s ease;
}
.site-header:not(.is-solid) .site-header__bar:not(.is-scrolled) .site-header__cart-btn { color: #fff; }
.theme-cart-count {
	position: absolute; top: -2px; right: -2px; min-width: 1.15rem; height: 1.15rem; padding: 0 0.25rem;
	border-radius: 999px; background: var(--color-primary); color: var(--color-primary-foreground);
	font-size: 10px; font-weight: 600; display: flex; align-items: center; justify-content: center;
}
.theme-cart-count:empty { display: none; }

.site-header__mobile-nav { display: none; }
.site-header__mobile-nav.is-open {
	display: block; background: var(--color-ivory); backdrop-filter: none; -webkit-backdrop-filter: none;
	border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent);
	max-height: calc(100dvh - 8rem); overflow-y: auto;
}
@media (min-width: 1024px) { .site-header__mobile-nav { display: none !important; } }
.theme-nav-list--mobile {
	display: flex !important;
	flex-direction: column !important;
	flex-wrap: nowrap !important;
	align-items: stretch !important;
	gap: 0;
	padding: 1.5rem 0;
}
.site-header__mobile-nav .theme-nav-list,
.site-header__mobile-nav .theme-nav-list--mobile {
	flex-direction: column !important;
}
.theme-nav-list--mobile li { width: 100%; display: block; }
.theme-nav-list--mobile li a {
	display: block; width: 100%; text-align: left; font-size: 15px; font-weight: 500; padding: 0.75rem 0;
	border-bottom: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent);
	color: color-mix(in srgb, var(--color-foreground) 85%, transparent);
}
.theme-nav-list--mobile li.is-active a { color: var(--color-primary); }

body.theme-no-hero .site-main,
body.woocommerce-checkout .site-main,
body.theme-page .site-main,
main.theme-shop-archive,
main.theme-404 {
	padding-top: calc(var(--header-height) + 2.5rem);
	padding-bottom: 4rem;
}

/* -------------------------------------------------------------------------
   HERO
   ---------------------------------------------------------------------- */
.theme-hero {
	position: relative;
	min-height: 100vh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--color-foreground);
	overflow: hidden;
}
.theme-hero__scrim {
	position: absolute; inset: 0; pointer-events: none;
	background: linear-gradient(180deg, hsl(155 30% 8% / 0.55) 0%, hsl(155 30% 8% / 0.8) 100%);
}
.theme-hero__content { position: relative; z-index: 10; text-align: center; color: #fff; padding-block: 10rem 6rem; }
@media (max-width: 1023px) {
	.theme-hero__content.container-wide { padding-inline: 1.25rem; }
}
@media (min-width: 640px) and (max-width: 1023px) {
	.theme-hero__content.container-wide { padding-inline: 1.5rem; }
}
@media (min-width: 1024px) { .theme-hero__content { padding-block: 13rem 8rem; } }
.theme-hero__eyebrow { font-size: 12px; letter-spacing: 0.38em; text-transform: uppercase; color: rgba(255,255,255,0.75); margin-bottom: 1.5rem; font-weight: 500; }
.theme-hero__title {
	font-family: var(--font-display); color: #fff; line-height: 1.04; letter-spacing: -0.014em;
	margin: 0 auto; max-width: 56rem; font-size: clamp(2rem, 5.2vw, 4.2rem);
}
.theme-hero__title em { font-style: italic; }
.theme-hero__title-break { display: none; }
@media (min-width: 640px) { .theme-hero__title-break { display: inline; } }
.theme-hero__subtitle { margin: 1.75rem auto 0; max-width: 36rem; font-size: 15px; color: rgba(255,255,255,0.85); line-height: 1.6; }
.theme-hero__cta { margin-top: 2.5rem; }

/* -------------------------------------------------------------------------
   ABOUT
   ---------------------------------------------------------------------- */
.theme-about { background: var(--color-linen); padding: 6rem 0; }
@media (min-width: 768px) { .theme-about { padding: 8rem 0; } }
.theme-about__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 1024px) { .theme-about__grid { grid-template-columns: repeat(12, 1fr); gap: 4rem; } }
.theme-about__heading-col { grid-column: span 5; }
.theme-about__body-col { grid-column: span 7; }
@media (min-width: 1024px) { .theme-about__body-col { padding-left: 1.5rem; } }
.theme-about__title.section-heading { font-size: 2.25rem; line-height: 1.05; color: var(--color-foreground); }
@media (min-width: 768px) { .theme-about__title.section-heading { font-size: 3rem; } }
.theme-about__body-col p { font-size: 15px; line-height: 1.75; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); max-width: 65ch; margin-bottom: 1.25rem; }
@media (min-width: 768px) { .theme-about__body-col p { font-size: 1rem; } }

/* -------------------------------------------------------------------------
   SERVICES / THE WORK
   ---------------------------------------------------------------------- */
.theme-services { background: var(--color-ivory); padding: 6rem 0; }
@media (min-width: 768px) { .theme-services { padding: 8rem 0; } }
.theme-services__heading { max-width: 42rem; margin-bottom: 3.5rem; }
.theme-services__title.offerings-section { font-size: 2.25rem; line-height: 1.05; color: var(--color-foreground); }
.theme-services__title em { font-style: italic; }
@media (min-width: 768px) { .theme-services__title.offerings-section { font-size: 3rem; } }
.theme-services__grid {
	display: grid; grid-template-columns: 1fr; row-gap: 3rem; column-gap: 2.5rem;
}
@media (min-width: 640px) { .theme-services__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .theme-services__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); column-gap: 3.5rem; } }
.theme-service-item__icon { color: var(--color-primary); margin-bottom: 1rem; }
.theme-service-item__title { font-family: var(--font-display); font-size: 1.25rem; color: var(--color-foreground); margin-bottom: 0.65rem; line-height: 1.3; }
@media (min-width: 768px) { .theme-service-item__title { font-size: 1.5rem; } }
.theme-service-item__body { font-size: 13.5px; line-height: 1.7; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); max-width: 38ch; }
@media (min-width: 768px) { .theme-service-item__body { font-size: 14px; } }

/* -------------------------------------------------------------------------
   SHOP SECTION
   ---------------------------------------------------------------------- */
.theme-shop { padding: 6rem 0; }
@media (min-width: 768px) { .theme-shop { padding: 8rem 0; } }
.theme-shop__header { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2.5rem; }
@media (min-width: 1024px) { .theme-shop__header { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.theme-shop__heading-col { max-width: 42rem; }
.theme-shop__title.shop-heading { font-size: 2.25rem; line-height: 1.05; color: var(--color-foreground); }
@media (min-width: 768px) { .theme-shop__title.shop-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .theme-shop__title.shop-heading { font-size: 3.2rem; } }
.theme-shop__subtitle { margin-top: 1.25rem; font-size: 14px; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); line-height: 1.6; max-width: 36rem; }
@media (min-width: 768px) { .theme-shop__subtitle { font-size: 15px; } }
.theme-shop__search-wrap { position: relative; width: 100%; }
@media (min-width: 1024px) { .theme-shop__search-wrap { width: 20rem; } }
.theme-shop__search-icon { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: color-mix(in srgb, var(--color-foreground) 40%, transparent); }
.theme-shop__search {
	width: 100%; height: 2.75rem; padding: 0 1rem 0 2.75rem; border-radius: 999px;
	background: var(--color-linen); border: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent);
	font-size: 14px; color: var(--color-foreground); font-family: var(--font-body);
}
.theme-shop__search::placeholder { color: color-mix(in srgb, var(--color-foreground) 45%, transparent); }
.theme-shop__search:focus { outline: none; border-color: color-mix(in srgb, var(--color-primary) 60%, transparent); }

.theme-shop__filters { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-bottom: 2.5rem; }
.theme-cat-filter {
	padding: 0 1.25rem; height: 2.5rem; border-radius: 999px; font-size: 14px; font-weight: 500;
	border: 1px solid color-mix(in srgb, var(--color-foreground) 25%, transparent);
	background: transparent; color: color-mix(in srgb, var(--color-foreground) 80%, transparent);
	transition: all 0.2s ease;
}
.theme-cat-filter:hover { border-color: var(--color-primary); color: var(--color-primary); }
.theme-cat-filter.is-active { background: var(--color-primary); color: var(--color-primary-foreground); border-color: var(--color-primary); }

.theme-product-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem 1.5rem; align-items: stretch; }
@media (min-width: 640px) { .theme-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .theme-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.theme-product-grid--related { grid-template-columns: 1fr; }
@media (min-width: 640px) { .theme-product-grid--related { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .theme-product-grid--related { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.theme-product-card-wrap { display: flex; height: 100%; }
.theme-product-card-wrap.js-hidden { display: none !important; }
body.is-customizer .theme-product-card-wrap.reveal-item,
body.is-customizer [data-reveal] { opacity: 1 !important; transform: none !important; }

.theme-product-card { display: flex; flex-direction: column; width: 100%; }
.theme-product-card__image-wrapper {
	position: relative;
	display: grid;
	grid-template: 1fr / 1fr;
	aspect-ratio: 1 / 1;
	background: var(--color-linen);
	border-radius: var(--radius-xl);
	overflow: hidden;
	margin-bottom: 1rem;
	isolation: isolate;
}
.theme-product-card__image-wrapper > .theme-card-link,
.theme-product-card__image-wrapper > img,
.theme-product-card__image-wrapper > .theme-product-card__scrim,
.theme-product-card__image-wrapper > .theme-product-card__badge,
.theme-product-card__image-wrapper > .theme-product-card__nav,
.theme-product-card__image-wrapper > .theme-product-card__dots,
.theme-product-card__image-wrapper > .theme-product-card__quick-view-wrap {
	grid-area: 1 / 1;
}
.theme-product-card__image-wrapper .theme-card-link { position: relative; z-index: 2; width: 100%; height: 100%; border-radius: inherit; }
.theme-product-card__image-wrapper > img.theme-product-card__image,
.theme-product-card__image-wrapper .theme-product-card__image {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 0;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
	border: none !important;
	border-radius: var(--radius-xl);
	object-fit: cover !important;
	object-position: center;
	display: block;
	transition: transform 1.4s cubic-bezier(0.22, 0.61, 0.36, 1);
	will-change: transform;
	pointer-events: none;
	z-index: 0;
}
.theme-product-card:hover .theme-product-card__image { transform: scale(1.04); }
.theme-product-card__scrim {
	position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: 0; transition: opacity 0.5s ease;
	background: linear-gradient(to top, color-mix(in srgb, var(--color-foreground) 25%, transparent), transparent 60%);
	border-radius: inherit;
}
.theme-product-card:hover .theme-product-card__scrim { opacity: 1; }
.theme-product-card__badge {
	position: absolute; top: 0.75rem; left: 0.75rem; z-index: 3; background: var(--color-foreground); color: var(--color-background);
	font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; padding: 0.25rem 0.625rem; border-radius: 999px; pointer-events: none;
}
.theme-product-card__nav {
	position: absolute; top: 50%; transform: translateY(-50%); z-index: 4; width: 2rem; height: 2rem; border-radius: 999px;
	background: color-mix(in srgb, var(--color-background) 85%, transparent); backdrop-filter: blur(6px); border: none;
	display: inline-flex; align-items: center; justify-content: center; color: var(--color-foreground);
	opacity: 0; transition: opacity 0.3s ease, background-color 0.3s ease, color 0.3s ease; box-shadow: var(--shadow-soft); pointer-events: auto;
}
.theme-product-card:hover .theme-product-card__nav { opacity: 1; }
.theme-product-card__nav:hover { background: var(--color-primary); color: var(--color-primary-foreground); }
.theme-product-card__nav--prev { left: 0.5rem; }
.theme-product-card__nav--next { right: 0.5rem; }
.theme-product-card__dots { position: absolute; top: 0.75rem; right: 0.75rem; z-index: 3; display: flex; gap: 0.25rem; pointer-events: none; }
.theme-product-card__dot { height: 0.25rem; width: 0.25rem; border-radius: 999px; background: color-mix(in srgb, var(--color-background) 60%, transparent); transition: all 0.2s ease; }
.theme-product-card__dot.is-active { width: 1rem; background: var(--color-background); }
.theme-product-card__quick-view-wrap {
	position: absolute; left: 0.75rem; right: 0.75rem; bottom: 0.75rem; z-index: 4; display: flex; align-items: center; justify-content: flex-end;
	opacity: 0; transition: opacity 0.5s ease;
}
.theme-product-card:hover .theme-product-card__quick-view-wrap { opacity: 1; }
.theme-product-card__quick-view {
	width: 2.5rem; height: 2.5rem; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center;
	background: color-mix(in srgb, var(--color-background) 95%, transparent); backdrop-filter: blur(6px); color: var(--color-foreground); box-shadow: var(--shadow-soft);
	pointer-events: auto; transition: background-color 0.3s ease, color 0.3s ease;
}
.theme-product-card__quick-view:hover { background: var(--color-primary); color: var(--color-primary-foreground); }

.theme-product-card__info { display: block; padding: 0 0.125rem; flex: 1; }
.theme-product-card__cat { font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em; color: color-mix(in srgb, var(--color-primary) 90%, transparent); margin-bottom: 0.375rem; font-weight: 500; }
.theme-product-card__title {
	font-family: var(--font-display); font-size: 1.15rem; line-height: 1.375; color: var(--color-foreground); transition: color 0.3s ease;
	min-width: 0; overflow-wrap: break-word;
}
@media (min-width: 768px) { .theme-product-card__title { font-size: 1.3rem; } }
@media (min-width: 1024px) { .theme-product-card__title { font-size: 1.4rem; } }
.theme-product-card:hover .theme-product-card__title { color: var(--color-primary); }
.theme-product-card__price { margin-top: 0.375rem; font-size: 13px; font-weight: 500; letter-spacing: 0.06em; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); }
.theme-product-card__price .woocommerce-Price-amount,
.theme-product-card__price .amount { font-size: inherit; font-weight: inherit; letter-spacing: inherit; color: inherit; }

.theme-shop__empty { text-align: center; padding: 5rem 0; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.theme-shop__load-more-wrap { margin-top: 3rem; display: flex; justify-content: center; }
.theme-shop__load-more-wrap.is-hidden { display: none; }

/* -------------------------------------------------------------------------
   ARTIST SECTION
   ---------------------------------------------------------------------- */
.theme-artist { background: var(--color-ivory); padding: 6rem 0; }
@media (min-width: 768px) { .theme-artist { padding: 8rem 0; } }
.theme-artist__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .theme-artist__grid { grid-template-columns: repeat(12, 1fr); gap: 4rem; } }
.theme-artist__image-col { grid-column: span 5; }
.theme-artist__image-wrap { position: relative; width: 100%; aspect-ratio: 4 / 5; overflow: hidden; border-radius: 1rem; background: var(--color-secondary); }
.theme-artist__body-col { grid-column: span 7; }
@media (min-width: 1024px) { .theme-artist__body-col { padding-left: 1.5rem; } }
.theme-artist__title { font-size: 2.25rem; line-height: 1.05; color: var(--color-foreground); }
@media (min-width: 768px) { .theme-artist__title { font-size: 3rem; } }
.theme-artist__quote {
	margin-top: 2rem; font-family: var(--font-display); font-style: italic; font-size: 1.25rem; line-height: 1.4;
	color: color-mix(in srgb, var(--color-foreground) 75%, transparent);
	border-left: 2px solid color-mix(in srgb, var(--color-primary) 70%, transparent); padding-left: 1.25rem;
}
@media (min-width: 768px) { .theme-artist__quote { font-size: 1.5rem; } }
.theme-artist__body { margin-top: 2rem; }
.theme-artist__body p { font-size: 15px; line-height: 1.75; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); max-width: 65ch; margin-bottom: 1.25rem; }
@media (min-width: 768px) { .theme-artist__body p { font-size: 1rem; } }

/* -------------------------------------------------------------------------
   CONTACT SECTION
   ---------------------------------------------------------------------- */
.theme-contact { background: var(--color-linen); padding: 6rem 0 3rem; }
@media (min-width: 768px) { .theme-contact { padding: 8rem 0 4rem; } }
.theme-contact__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: stretch; }
@media (min-width: 1024px) { .theme-contact__grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.theme-contact__info-col { display: flex; flex-direction: column; height: 100%; }
.theme-contact__title.contact-title { font-size: 2.25rem; line-height: 1.05; color: var(--color-foreground); }
@media (min-width: 768px) { .theme-contact__title.contact-title { font-size: 3rem; } }
@media (min-width: 1024px) { .theme-contact__title.contact-title { font-size: 3.4rem; } }
.theme-contact__body { margin-top: 1.5rem; font-size: 15px; line-height: 1.6; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); max-width: 32rem; }
.theme-contact__list { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.theme-contact__list-link { display: inline-flex; align-items: center; gap: 1rem; color: var(--color-foreground); transition: color 0.2s ease; }
.theme-contact__list-link:hover { color: var(--color-primary); }
.theme-contact__list-icon {
	width: 2.75rem; height: 2.75rem; border-radius: 999px; background: var(--color-ivory);
	border: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent);
	display: inline-flex; align-items: center; justify-content: center; transition: border-color 0.2s ease; flex-shrink: 0;
}
.theme-contact__list-link:hover .theme-contact__list-icon { border-color: var(--color-primary); }
.theme-contact__list-text { display: flex; flex-direction: column; text-align: left; }
.theme-contact__list-label { font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.theme-contact__list-value { font-size: 15px; font-weight: 500; overflow-wrap: anywhere; }

.theme-contact-form {
	background: var(--color-ivory); border: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent);
	border-radius: 1rem; padding: 1.5rem; box-shadow: var(--shadow-soft); display: flex; flex-direction: column; height: 100%; gap: 1rem;
}
@media (min-width: 768px) { .theme-contact-form { padding: 2rem; } }
.theme-contact-form__fields { flex: 1; display: flex; flex-direction: column; gap: 1rem; }
.theme-form-field-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .theme-form-field-row { grid-template-columns: 1fr 1fr; } }
.theme-form-field label { display: block; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); margin-bottom: 0.5rem; }
.theme-form-field input, .theme-form-field textarea, .theme-select-wrap select {
	width: 100%; height: 3rem; padding: 0 1rem; background: var(--color-ivory);
	border: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent); border-radius: var(--radius-md);
	font-size: 14px; color: var(--color-foreground); font-family: var(--font-body); transition: border-color 0.2s ease;
}
.theme-form-field textarea { height: auto; padding: 0.75rem 1rem; resize: none; }
.theme-form-field input::placeholder, .theme-form-field textarea::placeholder { color: color-mix(in srgb, var(--color-foreground) 45%, transparent); }
.theme-form-field input:focus, .theme-form-field textarea:focus, .theme-select-wrap select:focus { outline: none; border-color: var(--color-primary); }
.theme-select-wrap { position: relative; }
.theme-select-wrap select { appearance: none; padding-right: 2.5rem; }
.theme-select-wrap__icon { position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); pointer-events: none; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.theme-contact-form__submit-wrap { padding-top: 0.5rem; }
.theme-contact-form__success { margin-top: 0.75rem; text-align: center; font-size: 13px; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); }
.theme-contact-form__error { margin-top: 0.75rem; text-align: center; font-size: 13px; color: var(--color-destructive); }

/* -------------------------------------------------------------------------
   FOOTER
   ---------------------------------------------------------------------- */
.site-footer { border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); }
.site-footer__inner { padding-block: 3.5rem 5rem; display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (max-width: 1023px) {
	.site-footer__inner.container-wide { padding-inline: 1.25rem; }
}
@media (min-width: 640px) and (max-width: 1023px) {
	.site-footer__inner.container-wide { padding-inline: 1.5rem; }
}
.site-footer__bottom { margin-top: 0; padding: 2rem 0 0; }
@media (min-width: 640px) { .site-footer__inner { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .site-footer__inner { grid-template-columns: repeat(6, 1fr); gap: 3rem; } }
.site-footer__col--brand { grid-column: span 1; }
@media (min-width: 1024px) { .site-footer__col--brand { grid-column: span 2; } }
.site-footer__brand { display: inline-flex; flex-direction: column; }
.site-footer__logo-img { height: 1.75rem; width: auto !important; max-width: none; }
body.woocommerce-checkout .site-footer__logo-img,
body.single-product .site-footer__logo-img {
	height: 1.75rem !important;
}
.site-footer__tagline-label { margin-top: 0.375rem; font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }
.site-footer__tagline { margin-top: 1.25rem; font-size: 13.5px; line-height: 1.6; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); max-width: 22rem; }
.site-footer__heading { font-family: var(--font-display); font-size: 1.125rem; color: var(--color-foreground); margin-bottom: 1rem; }
.site-footer__links, .site-footer__contact { display: flex; flex-direction: column; gap: 0.65rem; }
.site-footer__links a, .site-footer__contact-link { font-size: 14px; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); transition: color 0.2s ease; }
.site-footer__links a:hover, .site-footer__contact-link:hover { color: var(--color-primary); }
.site-footer__contact-link { display: inline-flex; align-items: flex-start; gap: 0.5rem; overflow-wrap: anywhere; }
.site-footer__bottom {
	padding-top: 2rem; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent);
	text-align: center; font-size: 12px; color: color-mix(in srgb, var(--color-foreground) 60%, transparent);
}
.site-footer__bottom p { margin-bottom: 0.375rem; }
.site-footer__credit-link { text-decoration: underline; text-underline-offset: 4px; text-decoration-color: color-mix(in srgb, var(--color-foreground) 30%, transparent); }
.site-footer__credit-link:hover { color: var(--color-primary); text-decoration-color: var(--color-primary); }

/* -------------------------------------------------------------------------
   CART DRAWER + OVERLAY (Section 12)
   ---------------------------------------------------------------------- */
#theme-cart-overlay { position: fixed; inset: 0; background: color-mix(in srgb, var(--color-foreground) 30%, transparent); z-index: 60; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
body.cart-open #theme-cart-overlay { opacity: 1; pointer-events: auto; }

#theme-cart-drawer {
	position: fixed; top: 0; right: 0; height: 100%; width: 100%; max-width: 28rem; background: var(--color-ivory);
	z-index: 61; box-shadow: var(--shadow-elevated); display: flex; flex-direction: column;
	transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 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.5rem; border-bottom: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); }
.theme-cart-drawer__title { font-family: var(--font-display); font-size: 1.5rem; color: var(--color-foreground); }
.theme-cart-drawer__close { padding: 0.375rem; border-radius: 999px; border: none; background: transparent; color: var(--color-foreground); }
.theme-cart-drawer__close:hover { background: color-mix(in srgb, var(--color-foreground) 6%, transparent); }
.theme-cart-drawer__empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 1.5rem; text-align: center; }
.theme-cart-drawer__empty-icon { color: color-mix(in srgb, var(--color-foreground) 30%, transparent); margin-bottom: 1rem; }
.theme-cart-drawer__empty p { color: color-mix(in srgb, var(--color-foreground) 65%, transparent); margin-bottom: 1.5rem; font-size: 14px; }
.theme-cart-drawer__items { flex: 1; overflow: auto; padding: 1.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.theme-cart-drawer__item { display: flex; gap: 1rem; }
.theme-cart-drawer__item-thumb { width: 5rem; height: 6rem; background: var(--color-bone); border-radius: var(--radius-md); overflow: hidden; flex-shrink: 0; display: block; }
.theme-cart-drawer__item-body { flex: 1; min-width: 0; }
.theme-cart-drawer__item-name { font-size: 14px; font-weight: 500; display: block; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.theme-cart-drawer__item-name:hover { color: var(--color-primary); }
.theme-cart-drawer__item-meta, .theme-cart-drawer__item-price { font-size: 13px; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); margin-top: 0.125rem; }
.theme-cart-drawer__item-qty { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.5rem; }
.theme-cart-drawer__item-qty button { padding: 0.25rem; border-radius: var(--radius-md); border: none; background: transparent; color: var(--color-foreground); display: inline-flex; }
.theme-cart-drawer__item-qty button:hover { background: var(--color-bone); }
.theme-cart-drawer__item-qty-value { font-size: 13px; width: 1.5rem; text-align: center; }
.theme-cart-drawer__item-remove { margin-left: auto; font-size: 13px; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); background: none; border: none; padding: 0; }
.theme-cart-drawer__item-remove:hover { color: var(--color-destructive); }
.theme-cart-drawer__footer { padding: 1.5rem; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); background: color-mix(in srgb, var(--color-linen) 40%, transparent); display: flex; flex-direction: column; gap: 1rem; }
.theme-cart-drawer__subtotal { display: flex; justify-content: space-between; font-size: 14px; }
.theme-cart-drawer__subtotal span:first-child { color: color-mix(in srgb, var(--color-foreground) 65%, transparent); }
.theme-cart-drawer__subtotal span:last-child { font-weight: 500; }
.theme-cart-drawer__postage-note { font-size: 13px; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }

/* -------------------------------------------------------------------------
   SINGLE PRODUCT PAGE (Section 11.13)
   ---------------------------------------------------------------------- */
.theme-breadcrumb { padding: 1.5rem 0; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.theme-breadcrumb a:hover { color: var(--color-primary); }
.theme-breadcrumb__sep { margin: 0 0.5rem; opacity: 0.5; }
.theme-breadcrumb__current { color: var(--color-foreground); }

.theme-product-layout { display: grid; grid-template-columns: 1fr; gap: 2.5rem; padding-bottom: 5rem; align-items: flex-start; min-width: 0; }
@media (min-width: 1024px) { .theme-product-layout { grid-template-columns: repeat(12, 1fr); gap: 4rem; } }
.theme-product-gallery { grid-column: span 7; min-width: 0; max-width: 100%; }
@media (min-width: 1024px) { .theme-product-gallery { position: sticky; top: 7rem; } }
.theme-product-gallery__main {
	position: relative;
	display: grid;
	grid-template: 1fr / 1fr;
	width: 100%;
	aspect-ratio: 1 / 1;
	background: var(--color-linen);
	border-radius: var(--radius-xl);
	overflow: hidden;
	margin-bottom: 1rem;
}
.theme-product-gallery__main img,
.theme-product-gallery__img {
	grid-area: 1 / 1;
	width: 100%;
	height: 100%;
	min-height: 0;
	max-width: none !important;
	object-fit: cover !important;
	object-position: center;
	display: block;
}
.theme-product-thumbnails {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 0.625rem;
	max-width: 100%;
}
.theme-product-thumb {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	background: var(--color-linen);
	border-radius: var(--radius-md);
	overflow: hidden;
	border: 2px solid transparent;
	padding: 0;
	cursor: pointer;
}
.theme-product-thumb img {
	width: 100%;
	height: 100%;
	min-height: 0;
	object-fit: cover !important;
	display: block;
}
.theme-product-thumb.is-active { border-color: var(--color-primary); }
.theme-product-thumb:not(.is-active):hover { border-color: color-mix(in srgb, var(--color-foreground) 20%, transparent); }
.theme-product-gallery__notice { margin-top: 1rem; font-size: 12px; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); line-height: 1.6; }

.theme-product-info { grid-column: span 5; min-width: 0; max-width: 100%; }
.theme-product-info__cat { font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--color-primary); margin-bottom: 0.75rem; font-weight: 500; }
main.theme-product-page {
	background: var(--color-ivory);
	padding-top: 8rem;
	padding-bottom: 0;
}
@media (min-width: 1024px) {
	main.theme-product-page { padding-top: 10rem; }
}

.theme-product-info__title.product-title {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: 1.875rem; line-height: 1.05; color: var(--color-foreground); margin-bottom: 1rem;
	overflow-wrap: break-word;
}
@media (min-width: 768px) { .theme-product-info__title.product-title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .theme-product-info__title.product-title { font-size: 2.6rem; } }
.theme-product-info__price-pill {
	display: inline-flex; align-items: center; gap: 0.5rem; font-size: 15px; font-weight: 500; letter-spacing: 0.05em; color: var(--color-foreground);
	background: color-mix(in srgb, var(--color-secondary) 60%, transparent); padding: 0.5rem 1rem; border-radius: 999px; margin-bottom: 1.75rem;
}
.theme-product-info__stock.is-out-of-stock { color: var(--color-destructive); font-weight: 500; margin-bottom: 1rem; }
.theme-product-info__description { font-size: 15px; line-height: 1.7; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); margin-bottom: 2rem; overflow-wrap: break-word; word-break: break-word; }
.theme-product-info__notice { border-radius: var(--radius-lg); border: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); background: color-mix(in srgb, var(--color-linen) 60%, transparent); padding: 1rem 1.25rem; font-size: 14px; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); line-height: 1.6; margin-bottom: 2rem; }
.theme-product-info__notice a { color: var(--color-primary); text-decoration: underline; text-underline-offset: 4px; }
.theme-add-to-cart-area { display: flex; align-items: stretch; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2rem; }
.theme-add-to-cart-area .theme-variations-form { flex: 1 1 100%; width: 100%; margin-bottom: 0; }
.theme-add-to-cart-area .single_add_to_cart_button,
.theme-add-to-cart-area .theme-btn-outline { flex: 1 1 auto; min-width: 160px; }
.theme-add-to-cart-area .theme-variations-form + .theme-btn-outline { flex: 1 1 auto; min-width: 160px; }
.theme-product-info__details { padding-top: 2rem; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); margin-bottom: 2rem; }
.theme-product-info__details-label { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); margin-bottom: 1rem; }
.theme-product-info__details ul { display: flex; flex-direction: column; gap: 0.65rem; }
.theme-product-info__details li { font-size: 14px; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); display: flex; align-items: flex-start; overflow-wrap: break-word; }
.theme-product-info__details li::before { content: ''; width: 4px; height: 4px; border-radius: 999px; background: var(--color-primary); margin-top: 0.55rem; margin-right: 0.75rem; flex-shrink: 0; }
.theme-product-info__features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; padding-top: 1.5rem; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); }
.theme-feature { text-align: center; }
.theme-feature svg { margin: 0 auto 0.5rem; color: var(--color-primary); }
.theme-feature p { font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }

.theme-related-products { border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); padding-top: 4rem; padding-bottom: 5rem; }
.theme-related-products__eyebrow { font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--color-primary); margin-bottom: 1rem; font-weight: 500; }
.theme-related-products__title { font-size: 1.875rem; color: var(--color-foreground); margin-bottom: 2.5rem; }
@media (min-width: 768px) { .theme-related-products__title { font-size: 2.25rem; } }

.single-product .theme-product-gallery,
.single-product .theme-product-info { min-width: 0; max-width: 100%; }
.single-product .theme-product-info__description,
.single-product .woocommerce-variation-description,
.single-product .posted_in { overflow-wrap: break-word; word-break: break-word; }
.single-product .woocommerce-message, .single-product .woocommerce-info { display: none; }
#theme-cart-drawer .woocommerce-message { display: none; }

/* -------------------------------------------------------------------------
   SHOP ARCHIVE
   ---------------------------------------------------------------------- */
.theme-shop-archive__header { margin-bottom: 2.5rem; }
.theme-shop-archive .page-title { font-size: 2.5rem; color: var(--color-foreground); }
.theme-shop-archive__empty { text-align: center; padding: 5rem 0; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }

/* -------------------------------------------------------------------------
   404 / GENERIC PAGE
   ---------------------------------------------------------------------- */
.theme-404__inner { text-align: center; padding: 6rem 0; }
.theme-404__inner h1 { font-size: 3rem; margin-bottom: 1rem; }
.theme-404__inner p { margin-bottom: 1.5rem; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); }
.theme-page .page-title { font-size: 2.25rem; margin-bottom: 2rem; color: var(--color-foreground); }

.theme-add-to-cart-area .quantity,
.theme-variation-atc .quantity,
.theme-variations-form .quantity { display: none !important; }

/* Variable product attribute pills */
.theme-variations { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 1.5rem; }
.variations.theme-variations { border: 0; margin: 0; width: 100%; }
.variations.theme-variations table,
.variations.theme-variations tbody,
.variations.theme-variations tr,
.variations.theme-variations td { display: block; border: 0; padding: 0; }
.theme-variation-group__label {
	font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
	color: color-mix(in srgb, var(--color-foreground) 55%, transparent);
	margin-bottom: 0.65rem; font-weight: 500;
}
.theme-variation-pills { display: flex; flex-wrap: wrap; gap: 0.65rem; }
.theme-variation-pill {
	padding: 0 1.25rem; height: 2.5rem; border-radius: 999px; font-size: 14px; font-weight: 500;
	font-family: var(--font-body); border: 1px solid color-mix(in srgb, var(--color-foreground) 25%, transparent);
	background: transparent; color: color-mix(in srgb, var(--color-foreground) 80%, transparent);
	transition: all 0.2s ease; cursor: pointer;
}
.theme-variation-pill:hover { border-color: var(--color-primary); color: var(--color-primary); }
.theme-variation-pill.is-active {
	background: var(--color-primary); color: var(--color-primary-foreground); border-color: var(--color-primary);
}
.theme-variation-select-wrap { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.theme-variation-atc { display: flex; flex-wrap: wrap; gap: 0.75rem; width: 100%; }
.theme-variations-form { width: 100%; }
.theme-variations-form .single_add_to_cart_button { flex: 1 1 auto; min-width: 160px; }
.theme-variations-form .woocommerce-variation.single_variation { margin-bottom: 0.75rem; }

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

/* -------------------------------------------------------------------------
   WOOCOMMERCE CHECKOUT BLOCK OVERRIDES (Section 13)
   ---------------------------------------------------------------------- */
body.woocommerce-checkout .site-main { padding-top: calc(var(--header-height) + 2.5rem); padding-bottom: 4rem; }
body.woocommerce-checkout .wc-block-checkout,
body.woocommerce-cart .wp-block-woocommerce-cart {
	font-family: var(--font-body);
}
body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout.is-large {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--checkout-gap);
	align-items: start;
}
body.woocommerce-checkout .wc-block-checkout { display: block; }
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,
body.woocommerce-checkout .wc-block-components-textarea textarea,
body.woocommerce-checkout .wc-block-components-combobox .wc-block-components-combobox-control input,
body.woocommerce-checkout .wc-block-components-combobox .wc-block-components-combobox-control button,
body.woocommerce-checkout .wc-block-components-form .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-components-form .wc-block-components-select select,
body.woocommerce-checkout .wc-block-components-address-form input,
body.woocommerce-checkout .wc-block-components-address-form select {
	width: 100% !important;
	max-width: none !important;
	min-height: 3rem !important;
	font-family: var(--font-body) !important;
	font-size: 14px !important;
	font-weight: 400 !important;
	line-height: 1.4 !important;
	color: var(--color-foreground) !important;
	border: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent) !important;
	border-radius: var(--radius-md) !important;
	background: var(--color-ivory) !important;
	box-shadow: none !important;
	transition: border-color 0.2s ease !important;
}
body.woocommerce-checkout .wc-block-components-text-input input::placeholder,
body.woocommerce-checkout .wc-block-components-textarea textarea::placeholder,
body.woocommerce-checkout .wc-block-components-combobox .wc-block-components-combobox-control input::placeholder {
	color: color-mix(in srgb, var(--color-foreground) 45%, transparent) !important;
	opacity: 1 !important;
}
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-textarea textarea:focus,
body.woocommerce-checkout .wc-block-components-combobox .wc-block-components-combobox-control input:focus {
	outline: none !important;
	border-color: var(--color-primary) !important;
	box-shadow: none !important;
}
body.woocommerce-checkout .wc-block-components-select select,
body.woocommerce-checkout .wc-block-components-address-form select {
	appearance: auto !important;
	cursor: pointer !important;
}
body.woocommerce-checkout .wc-block-components-combobox .wc-block-components-combobox-control button {
	background: var(--color-ivory) !important;
	border: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent) !important;
	color: var(--color-foreground) !important;
}
body.woocommerce-checkout .wc-block-checkout__sidebar {
	background-color: var(--color-linen);
	border-radius: var(--radius-lg);
	padding: 1.75rem;
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button {
	background: var(--color-primary) !important; color: var(--color-primary-foreground) !important;
	border-radius: var(--btn-radius) !important; font-family: var(--font-body) !important; text-transform: none !important;
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover {
	background: color-mix(in srgb, var(--color-primary) 90%, transparent) !important;
	opacity: 1 !important;
}
body.woocommerce-checkout .page-title { max-width: 80rem; margin: 0 auto 2rem; padding: 0 1.25rem; font-size: 2.5rem; }
@media (min-width: 640px) { body.woocommerce-checkout .page-title { padding: 0 1.5rem; } }
@media (min-width: 1024px) { body.woocommerce-checkout .page-title { padding: 0 2.5rem; } }
@media (max-width: 767px) {
	body.woocommerce-checkout .wc-block-checkout__main { order: 1; }
	body.woocommerce-checkout .wc-block-checkout__sidebar { order: 2; margin-top: 2rem; }
}

body.woocommerce-cart .wp-block-woocommerce-cart,
body.woocommerce-account .woocommerce-MyAccount-content { max-width: 80rem; margin: 0 auto; padding: 0 1.25rem; }
@media (min-width: 640px) { body.woocommerce-cart .wp-block-woocommerce-cart, body.woocommerce-account .woocommerce-MyAccount-content { padding: 0 1.5rem; } }
@media (min-width: 1024px) { body.woocommerce-cart .wp-block-woocommerce-cart, body.woocommerce-account .woocommerce-MyAccount-content { padding: 0 2.5rem; } }

/* -------------------------------------------------------------------------
   THANK YOU PAGE (Section 22.8)
   ---------------------------------------------------------------------- */
body.theme-thankyou-page { overflow-x: hidden; }
body.theme-thankyou-page .theme-thankyou { max-width: 80rem; margin: 0 auto; padding: 0 1.25rem; }
body.theme-thankyou-page .woocommerce-order h2,
body.theme-thankyou-page .woocommerce-order-details__title { font-family: var(--font-display); font-size: 1.75rem; padding: 0 0 1rem 0; }
body.theme-thankyou-page .woocommerce-order-details table { width: 100%; table-layout: fixed; }
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; margin-top: 2rem; }
body.theme-thankyou-page .woocommerce-customer-details address { max-width: 480px; overflow-wrap: break-word; }

/* -------------------------------------------------------------------------
   WOOCOMMERCE NOTICE STYLING (Section 14.1) — shop / archive contexts
   ---------------------------------------------------------------------- */
.woocommerce-error, .woocommerce-message, .woocommerce-info {
	font-family: var(--font-body); border-radius: var(--radius-md); padding: 1rem 1.25rem; font-size: 14px; margin: 0 0 1.5rem;
	background: var(--color-linen); color: var(--color-foreground); border-left: 3px solid var(--color-primary); list-style: none;
}
.woocommerce-error { border-left-color: var(--color-destructive); }

/* Print/A4 element widths within notice */
.woocommerce-error a, .woocommerce-message a, .woocommerce-info a { color: var(--color-primary); }
