/* =========================================================================
   TiggleMe Boutique — theme.css
   Design tokens ported 1:1 from the original design source.
   ========================================================================= */

:root {
	/* Fallback hex values (converted via the same HSL formula as theme_hsl_to_hex()).
	   Overridden by the live Customizer values emitted in wp_add_inline_style(). */
	--color-background: #fbf8f4;
	--color-foreground: #261d26;
	--color-primary: #3c253a;
	--color-primary-foreground: #fbf8f4;
	--color-secondary: #f3efe8;
	--color-muted: #eeeae3;
	--color-muted-foreground: #6c606c;
	--color-accent: #ce9012;
	--color-border: #e4dfd7;
	--color-card: #ffffff;
	--color-surface-soft: #f5f1ea;
	--color-destructive: #bc2e24;

	--gold-stop-1: #6b4a15;
	--gold-stop-2: #f5d878;
	--gold-stop-3: #fdf3cb;
	--gold-stop-4: #f0cf6a;
	--gold-stop-5: #5c4114;

	--font-display: 'Playfair Display', Georgia, serif;
	--font-body: 'Jost', 'Helvetica Neue', sans-serif;

	--radius: 0;
	--shadow-soft: 0 4px 24px -8px rgba(60, 37, 58, 0.14);
	--shadow-elevated: 0 18px 60px -24px rgba(60, 37, 58, 0.32);
	--transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);

	--topbar-height: 40px;
	--header-nav-height: 64px;
	--header-height: calc(var(--topbar-height) + var(--header-nav-height));
	--page-top-padding: calc(var(--header-height) + 2.5rem);
	--logo-height: 64px;

	--btn-radius: 0;
	--btn-height: 44px;
	--btn-padding: 0 1.4rem;
	--btn-font-size: 12px;
	--btn-font-weight: 500;
	--btn-letter-spacing: 0.18em;
	--btn-text-transform: uppercase;
	--btn-icon-padding: 0.6rem;
}

/* -------------------------------------------------------------------------
   RESET & BASE
   ------------------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: var(--page-top-padding); }

@media (min-width: 1024px) {
	:root { --header-nav-height: 80px; --page-top-padding: calc(var(--header-height) + 3rem); }
}

/* WordPress admin bar offset */
body.admin-bar .theme-topbar { top: 32px; }
body.admin-bar .site-header { top: calc(40px + 32px); }
@media screen and (max-width: 782px) {
	body.admin-bar .theme-topbar { top: 46px; }
	body.admin-bar .site-header { top: calc(40px + 46px); }
}

body {
	margin: 0;
	background-color: var(--color-background);
	color: var(--color-foreground);
	font-family: var(--font-body);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	font-weight: 400;
	letter-spacing: -0.01em;
	text-wrap: balance;
	margin: 0;
}

p, li { text-wrap: pretty; margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; cursor: pointer; }
button { font-family: inherit; background: none; border: none; cursor: pointer; color: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

img:not(.cover-img):not(.hero-bg-img):not(.product-card-img):not(.theme-product-card__img):not(.site-logo-img):not(.site-footer__logo) {
	max-width: 100%;
	height: auto;
	display: block;
}
.cover-img, .hero-bg-img, .product-card-img, .theme-product-card__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.container-wide {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 1.5rem;
}
@media (min-width: 1024px) {
	.container-wide { padding: 0 2rem; }
}

.site-main { overflow-x: hidden; }
body.theme-no-hero .site-main {
	padding-top: var(--page-top-padding);
	padding-bottom: 4rem;
}
body.admin-bar.theme-no-hero .site-main {
	padding-top: calc(var(--page-top-padding) + 32px);
}
@media (max-width: 782px) {
	body.admin-bar.theme-no-hero .site-main {
		padding-top: calc(var(--page-top-padding) + 46px);
	}
}
body.theme-no-hero .not-found-page { padding-top: 0; padding-bottom: 0; }

.eyebrow, .micro-label {
	display: inline-block;
	font-family: var(--font-body);
	font-size: 11px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.22em;
}
.micro-label { color: var(--color-foreground); }

.section-heading { font-family: var(--font-display); font-weight: 400; letter-spacing: -0.025em; text-wrap: balance; }

.img-zoom { overflow: hidden; position: relative; }
.img-zoom img { transition: transform 1.2s var(--transition-smooth); will-change: transform; }
.img-zoom:hover img { transform: scale(1.06); }

.text-gold {
	font-style: italic;
	background-image: linear-gradient(100deg,
		color-mix(in srgb, var(--color-accent) 85%, transparent) 0%,
		var(--gold-stop-1) 18%,
		var(--gold-stop-2) 38%,
		var(--gold-stop-3) 48%,
		var(--gold-stop-4) 58%,
		var(--color-accent) 78%,
		var(--gold-stop-5) 100%);
	background-size: 220% 100%;
	background-position: 0% 50%;
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	-webkit-text-fill-color: transparent;
	animation: goldSheen 7s ease-in-out infinite;
	padding-bottom: 0.06em;
}
.heading-emphasis { font-style: italic; font-weight: 400; }
@keyframes goldSheen { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
@media (prefers-reduced-motion: reduce) {
	.text-gold { animation: none; }
}

.link-shimmer { position: relative; display: inline-block; }
.link-shimmer::after {
	content: ''; position: absolute; left: 0; bottom: -2px; height: 1px; width: 100%;
	background: currentColor; transform: scaleX(0); transform-origin: right;
	transition: transform 0.5s var(--transition-smooth);
}
.link-shimmer:hover::after { transform: scaleX(1); transform-origin: left; }

.btn-shine { position: relative; overflow: hidden; isolation: isolate; }
.btn-shine::before {
	content: ''; position: absolute; inset: 0;
	background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.28) 50%, transparent 70%);
	transform: translateX(-120%); transition: transform 0.9s var(--transition-smooth);
	pointer-events: none; z-index: 1;
}
.btn-shine:hover::before { transform: translateX(120%); }

/* -------------------------------------------------------------------------
   ANIMATIONS / SCROLL REVEAL (Section 2.1)
   ------------------------------------------------------------------------- */

.reveal-item {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.65s var(--transition-smooth), transform 0.65s var(--transition-smooth);
}
.reveal-item.is-visible { opacity: 1; transform: translateY(0); }

/* No-JS / preview fallback — never leave content permanently invisible. */
body.is-customizer .reveal-item,
.no-js .reveal-item {
	opacity: 1 !important;
	transform: none !important;
}

.rise-in { opacity: 0; animation: riseIn 0.7s var(--transition-smooth) both; }
@keyframes riseIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
body.is-customizer .rise-in { opacity: 1; animation: none; transform: none; }

.hover-lift { transition: transform 0.5s var(--transition-smooth), box-shadow 0.5s var(--transition-smooth); }
.hover-lift:hover { transform: translateY(-6px); box-shadow: var(--shadow-elevated); }

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
	}
	.reveal-item { opacity: 1 !important; transform: none !important; }
}

/* -------------------------------------------------------------------------
   SCROLL PROGRESS (gold bar — mirrors Lovable ScrollProgress)
   ------------------------------------------------------------------------- */

.theme-scroll-progress {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 60;
	height: 2px;
	background: var(--color-accent);
	transform: scaleX(0);
	transform-origin: left center;
	pointer-events: none;
	will-change: transform;
}
body.admin-bar .theme-scroll-progress { top: 32px; }
@media screen and (max-width: 782px) {
	body.admin-bar .theme-scroll-progress { top: 46px; }
}
@media (prefers-reduced-motion: reduce) {
	.theme-scroll-progress { display: none; }
}

/* -------------------------------------------------------------------------
   TOP ANNOUNCEMENT BAR
   ------------------------------------------------------------------------- */

.theme-topbar {
	position: fixed; top: 0; left: 0; right: 0; z-index: 50;
	height: 40px;
	background-color: var(--color-primary);
	border-bottom: 1px solid color-mix(in srgb, var(--color-primary-foreground) 10%, transparent);
	overflow: hidden;
}
.theme-topbar__track {
	display: flex; align-items: center; height: 100%;
	white-space: nowrap; gap: 2.5rem; padding: 0 1rem;
	width: max-content;
	animation: theme-marquee 30s linear infinite;
}
@keyframes theme-marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-33.3333%); } }
.theme-topbar__item { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.theme-topbar__label {
	font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.18em;
	color: color-mix(in srgb, var(--color-primary-foreground) 90%, transparent);
	white-space: nowrap;
}
.theme-topbar__dot {
	width: 6px; height: 6px; border-radius: 999px; background: var(--color-accent);
	display: inline-block; flex-shrink: 0;
}

/* -------------------------------------------------------------------------
   HEADER
   ------------------------------------------------------------------------- */

.site-header {
	position: fixed; top: 40px; left: 0; right: 0; z-index: 40;
	background-color: transparent;
	border-bottom: 1px solid transparent;
	transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.site-header.is-solid {
	background-color: color-mix(in srgb, var(--color-background) 95%, transparent);
	backdrop-filter: blur(12px);
	border-bottom-color: var(--color-border);
	box-shadow: 0 1px 16px -8px color-mix(in srgb, var(--color-foreground) 35%, transparent);
}
.site-header__nav {
	display: flex; align-items: center; justify-content: space-between;
	height: 96px; transition: height 0.3s ease;
}
.site-header.is-solid .site-header__nav,
.site-header--scrolled .site-header__nav { height: 64px; }
@media (min-width: 1024px) {
	.site-header__nav { height: 112px; }
	.site-header.is-solid .site-header__nav,
	.site-header--scrolled .site-header__nav { height: 80px; }
}

.site-header__brand { display: flex; align-items: center; gap: 0.75rem; min-width: 0; }
.site-logo-frame {
	position: relative; display: block; flex-shrink: 0; border-radius: 999px; background: #fff;
	box-shadow: 0 1px 2px rgba(0,0,0,0.08); overflow: hidden;
	ring: 1px solid var(--color-border);
	border: 1px solid var(--color-border);
	transition: all 0.3s ease;
	line-height: 0;
}
.site-header:not(.is-solid) .site-logo-frame { border: 2px solid rgba(255,255,255,0.8); }
/* Matches Lovable: compact h-11/lg:h-14, at-top h-16/lg:h-20 */
.site-logo-img {
	height: calc(var(--logo-height) * 0.6875);
	width: auto !important;
	max-width: none;
	display: block;
	flex-shrink: 0;
	transition: height 0.3s ease;
}
.site-header.is-solid .site-logo-img { height: calc(var(--logo-height) * 0.6875); }
@media (min-width: 1024px) {
	.site-logo-img { height: calc(var(--logo-height) * 0.875); }
	.site-header.is-solid .site-logo-img { height: calc(var(--logo-height) * 0.875); }
}
.site-header:not(.is-solid) .site-logo-img { height: var(--logo-height); }
@media (min-width: 1024px) {
	.site-header:not(.is-solid) .site-logo-img { height: calc(var(--logo-height) * 1.25); }
}
.site-logo-text { font-family: var(--font-display); font-size: 1.35rem; color: inherit; }

.theme-nav-list { display: none; align-items: center; gap: 2rem; margin-left: auto; }
@media (min-width: 1024px) { .theme-nav-list { display: flex; } }
.theme-nav-list li { display: inline-flex; }
.theme-nav-list a {
	font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.18em;
	color: color-mix(in srgb, var(--color-foreground) 75%, transparent);
	transition: color 0.3s ease;
	position: relative; display: inline-block;
}
.site-header:not(.is-solid) .theme-nav-list a { color: color-mix(in srgb, var(--color-primary-foreground) 80%, transparent); }
.theme-nav-list a:hover { color: var(--color-foreground); }
.site-header:not(.is-solid) .theme-nav-list a:hover { color: var(--color-primary-foreground); }
.theme-nav-list a::after {
	content: ''; position: absolute; left: 0; bottom: -2px; height: 1px; width: 100%;
	background: currentColor; transform: scaleX(0); transform-origin: right;
	transition: transform 0.3s var(--transition-smooth);
}
.theme-nav-list a:hover::after { transform: scaleX(1); transform-origin: left; }

.site-header__actions { display: flex; align-items: center; gap: 0.25rem; }
@media (min-width: 1024px) { .site-header__actions { margin-left: 1.5rem; } }

.theme-cart-button {
	position: relative; padding: 0.5rem; color: var(--color-foreground); transition: opacity 0.2s ease;
}
.site-header:not(.is-solid) .theme-cart-button { color: var(--color-primary-foreground); }
.theme-cart-button:hover { opacity: 0.7; }
.theme-cart-button svg { display: block; }
.theme-cart-count {
	position: absolute; top: -2px; right: -2px; min-width: 18px; height: 18px; padding: 0 4px;
	background: var(--color-accent); color: #fff; font-size: 10px; font-weight: 600;
	display: flex; align-items: center; justify-content: center;
}
.theme-cart-count:empty { display: none; }

.theme-menu-toggle { padding: 0.5rem; color: var(--color-foreground); }
.site-header:not(.is-solid) .theme-menu-toggle { color: var(--color-primary-foreground); }
.theme-menu-toggle .icon-close { display: none; }
.theme-menu-toggle.is-active .icon-menu { display: none; }
.theme-menu-toggle.is-active .icon-close { display: block; }
@media (min-width: 1024px) { .theme-menu-toggle { display: none; } }

.theme-mobile-menu {
	max-height: 0; overflow: hidden; transition: max-height 0.35s var(--transition-smooth);
	border-top: 1px solid transparent;
}
.theme-mobile-menu.is-open { max-height: 480px; border-top-color: var(--color-border); }
.theme-mobile-nav-list { display: flex; flex-direction: column; padding: 1rem 0; }
.theme-mobile-nav-list a {
	display: block; padding: 0.75rem 0; font-size: 14px; font-weight: 500;
	text-transform: uppercase; letter-spacing: 0.14em; color: var(--color-foreground);
	transition: transform 0.3s ease, color 0.3s ease;
}
.theme-mobile-nav-list a:hover { color: var(--color-accent); transform: translateX(4px); }
@media (min-width: 1024px) { .theme-mobile-menu { display: none; } }

/* -------------------------------------------------------------------------
   HERO
   ------------------------------------------------------------------------- */

.hero-section {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
}
.hero-section__media, .hero-section__fallback-img {
	position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 70% top;
}
.hero-section__fallback-img { display: none; }
@media (prefers-reduced-motion: reduce) {
	.hero-section__media { display: none; }
	.hero-section__fallback-img { display: block; }
}
.hero-section__scrim {
	position: absolute; inset: 0;
	background: linear-gradient(to top,
		color-mix(in srgb, var(--color-foreground) 85%, transparent) 0%,
		color-mix(in srgb, var(--color-foreground) 45%, transparent) 45%,
		color-mix(in srgb, var(--color-foreground) 25%, transparent) 100%);
}
.hero-section__content { position: relative; padding-bottom: 4rem; padding-top: 8rem; }
@media (min-width: 1024px) { .hero-section__content { padding-bottom: 6rem; } }
.hero-section__inner { max-width: 42rem; }
.hero-section__eyebrow { color: var(--color-primary-foreground); display: block; }
.hero-section__title {
	margin-top: 1rem; font-size: 3rem; line-height: 0.95; letter-spacing: -0.025em;
	color: var(--color-primary-foreground); font-weight: 400;
}
@media (min-width: 640px) { .hero-section__title { font-size: 3.75rem; } }
@media (min-width: 1024px) { .hero-section__title { font-size: 4.5rem; } }
.hero-section__title-line2 { display: block; font-style: italic; }
.hero-section__title-line1 { display: block; }
.hero-section__paragraph {
	margin-top: 1.5rem; font-size: 1rem; line-height: 1.625; max-width: 36rem;
	color: color-mix(in srgb, var(--color-primary-foreground) 85%, transparent);
}
@media (min-width: 640px) { .hero-section__paragraph { font-size: 1.125rem; } }
.hero-section__ctas { margin-top: 2.25rem; display: flex; flex-direction: column; gap: 0.75rem; }
@media (min-width: 640px) { .hero-section__ctas { flex-direction: row; gap: 1rem; } }

/* -------------------------------------------------------------------------
   BUTTONS
   ------------------------------------------------------------------------- */

.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
	white-space: nowrap; height: var(--btn-height); padding: var(--btn-padding);
	font-size: var(--btn-font-size); font-weight: var(--btn-font-weight);
	text-transform: var(--btn-text-transform); letter-spacing: var(--btn-letter-spacing);
	border-radius: var(--btn-radius); border: none; cursor: pointer;
	transition: transform 0.3s var(--transition-smooth), box-shadow 0.3s var(--transition-smooth), opacity 0.2s ease, background-color 0.2s ease;
}
.btn svg { transition: transform 0.3s var(--transition-smooth); flex-shrink: 0; }
.btn:hover svg { transform: translateX(4px); }
.btn:active { transform: scale(0.96); }

.btn-pill { background: var(--color-foreground); color: var(--color-background); box-shadow: var(--shadow-soft); }
.btn-pill:hover { background: color-mix(in srgb, var(--color-foreground) 85%, transparent); transform: translateY(-2px); box-shadow: var(--shadow-elevated); }

.btn-pill-light { background: var(--color-background); color: var(--color-foreground); box-shadow: var(--shadow-soft); }
.btn-pill-light:hover { background: color-mix(in srgb, var(--color-background) 90%, transparent); transform: translateY(-2px); box-shadow: var(--shadow-elevated); }

.btn-outline {
	background: transparent; border: 1px solid var(--color-border); color: var(--color-foreground);
}
.btn-outline:hover { border-color: color-mix(in srgb, var(--color-foreground) 40%, transparent); color: var(--color-foreground); }

.btn-founder-gold { background: var(--color-accent); color: var(--color-foreground); }
.btn-founder-gold:hover { background: color-mix(in srgb, var(--color-accent) 90%, transparent); }
.btn-founder-outline { border: 1px solid var(--color-accent); color: var(--color-accent); background: transparent; }
.btn-founder-outline:hover { background: var(--color-accent); color: var(--color-foreground); }

.btn-outline-link {
	display: inline-flex; align-items: center; gap: 0.5rem; border: 1px solid color-mix(in srgb, var(--color-foreground) 20%, transparent);
	padding: 0.75rem 1.75rem; font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.18em;
	color: color-mix(in srgb, var(--color-foreground) 80%, transparent); transition: all 0.3s ease; cursor: pointer;
}
.btn-outline-link:hover { border-color: var(--color-foreground); color: var(--color-foreground); }
.btn-outline-link:hover .theme-shop-view-more-arrow { transform: translateY(2px); }
.theme-shop-view-more-arrow { display: inline-block; transition: transform 0.3s ease; }

/* -------------------------------------------------------------------------
   PROMISE / VALUES
   ------------------------------------------------------------------------- */

.promise-section { padding: 5rem 0; background: var(--color-foreground); color: var(--color-primary-foreground); }
@media (min-width: 1024px) { .promise-section { padding: 7rem 0; } }
.promise-section__head {
	display: flex; flex-direction: column; gap: 1rem; padding-bottom: 2.5rem;
	border-bottom: 1px solid color-mix(in srgb, var(--color-primary-foreground) 15%, transparent);
}
@media (min-width: 640px) { .promise-section__head { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.promise-section__heading { font-size: 1.875rem; line-height: 1.25; max-width: 30rem; color: var(--color-primary-foreground); }
@media (min-width: 640px) { .promise-section__heading { font-size: 2.25rem; } }
.promise-section__sub { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.22em; color: color-mix(in srgb, var(--color-primary-foreground) 50%, transparent); }

.promise-section__grid { display: grid; grid-template-columns: 1fr; }
@media (min-width: 768px) { .promise-section__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.promise-card {
	padding: 2.5rem 0; border-bottom: 1px solid color-mix(in srgb, var(--color-primary-foreground) 20%, transparent);
}
@media (min-width: 768px) {
	.promise-card { padding: 3rem 2.5rem; border-bottom: none; border-left: 1px solid color-mix(in srgb, var(--color-primary-foreground) 20%, transparent); }
	.promise-card:first-child { padding-left: 0; border-left: none; }
	.promise-card:last-child { padding-right: 0; }
}
.promise-card__head { display: flex; align-items: center; gap: 1rem; }
.promise-card__icon {
	width: 2.25rem; height: 2.25rem; border: 1px solid color-mix(in srgb, var(--color-accent) 40%, transparent);
	display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--color-accent);
}
.promise-card__index { font-size: 11px; font-weight: 500; letter-spacing: 0.3em; color: color-mix(in srgb, var(--color-primary-foreground) 40%, transparent); }
.promise-card__title { margin-top: 1.5rem; font-size: 1.5rem; line-height: 1.375; color: var(--color-primary-foreground); }
@media (min-width: 1024px) { .promise-card__title { font-size: 1.75rem; } }
.promise-card__body { margin-top: 1rem; font-size: 0.875rem; line-height: 1.9; color: color-mix(in srgb, var(--color-primary-foreground) 70%, transparent); }

/* -------------------------------------------------------------------------
   SHOP SECTION
   ------------------------------------------------------------------------- */

.shop-section { padding: 5rem 0; }
@media (min-width: 1024px) { .shop-section { padding: 7rem 0; } }
.shop-section__head {
	display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2.5rem; padding-bottom: 2rem;
	border-bottom: 1px solid var(--color-border);
}
@media (min-width: 640px) { .shop-section__head { flex-direction: row; align-items: baseline; justify-content: space-between; } }
.shop-heading { font-size: 2.25rem; line-height: 1; letter-spacing: -0.025em; }
@media (min-width: 640px) { .shop-heading { font-size: 3rem; } }
.shop-section__sub, .shop-section__head p { margin-top: 0.5rem; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--color-muted-foreground); font-weight: 500; }

.shop-filters { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 3rem; }
.theme-cat-filter {
	border: 1px solid var(--color-border); padding: 0.5rem 1.25rem; font-size: 12px; font-weight: 500;
	text-transform: uppercase; letter-spacing: 0.16em; color: color-mix(in srgb, var(--color-foreground) 75%, transparent);
	transition: transform 0.2s var(--transition-smooth), color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
	cursor: pointer;
}
.theme-cat-filter:active { transform: scale(0.96); }
.theme-cat-filter:hover { color: var(--color-foreground); border-color: color-mix(in srgb, var(--color-foreground) 40%, transparent); }
.theme-cat-filter.is-active { background: var(--color-foreground); color: var(--color-background); border-color: var(--color-foreground); }

.theme-product-grid {
	display: grid; grid-template-columns: 1fr; gap: 2rem 2rem; row-gap: 3rem;
	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(4, minmax(0, 1fr)); } }
.theme-product-grid--3 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .theme-product-grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .theme-product-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.theme-shop-item.is-hidden-extra { display: none; }
.theme-product-card-wrap {
	display: block; width: 100%; min-width: 0; position: relative;
	transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.theme-product-card-wrap:hover { transform: translateY(-6px); }
@media (prefers-reduced-motion: reduce) {
	.theme-product-card-wrap { transition: none; }
	.theme-product-card-wrap:hover { transform: none; }
}
.shop-view-more-wrap { margin-top: 3.5rem; display: flex; justify-content: center; }
.shop-empty { padding: 3rem 0; text-align: center; color: var(--color-muted-foreground); grid-column: 1 / -1; }

/* Product card — mirrors src/components/ProductCard.tsx */
.theme-product-card__link {
	display: block; color: inherit; text-decoration: none; cursor: pointer;
}
.theme-product-card__image-wrapper {
	position: relative; aspect-ratio: 3 / 4; overflow: hidden; background: var(--color-secondary);
}
.theme-product-card__img {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	object-fit: cover; object-position: center;
	display: block;
	transition: transform 1s ease-out;
}
.theme-product-card-wrap:hover .theme-product-card__img { transform: scale(1.05); }
.theme-product-card__image-overlay {
	position: absolute; inset: 0; z-index: 1;
	background: transparent;
	transition: background-color 0.5s ease;
	pointer-events: none;
}
.theme-product-card-wrap:hover .theme-product-card__image-overlay {
	background: color-mix(in srgb, var(--color-foreground) 5%, transparent);
}
.theme-product-card__badge {
	position: absolute; top: 1rem; left: 1rem; z-index: 2;
	background: color-mix(in srgb, var(--color-background) 90%, transparent);
	backdrop-filter: blur(4px);
	padding: 0.375rem 0.75rem; font-size: 10px; text-transform: uppercase; letter-spacing: 0.15em; font-weight: 600;
	color: var(--color-foreground);
	transition: transform 0.5s ease;
}
.theme-product-card-wrap:hover .theme-product-card__badge { transform: translateY(-2px); }
.theme-product-card__badge--stock {
	top: auto; bottom: 1rem; left: 1rem; background: var(--color-destructive); color: #fff;
}
.theme-product-card__quick-add {
	position: absolute; top: 0; left: 0; right: 0; z-index: 3;
	aspect-ratio: 3 / 4;
	display: flex; align-items: flex-end;
	padding: 1rem;
	transform: translateY(1rem); opacity: 0;
	transition: transform 0.3s ease-out, opacity 0.3s ease-out;
	pointer-events: none;
}
@media (min-width: 640px) {
	.theme-product-card__quick-add { padding: 1.25rem; }
}
.theme-product-card-wrap:hover .theme-product-card__quick-add {
	transform: translateY(0); opacity: 1;
}
.theme-product-card__add-btn {
	pointer-events: none;
}
.theme-product-card-wrap:hover .theme-product-card__add-btn {
	pointer-events: auto;
}
.theme-product-card__add-btn:active { transform: scale(0.98); }
.theme-product-card__add-btn.theme-btn-loading,
.theme-product-card__add-btn.loading {
	opacity: 0.6 !important;
	pointer-events: none !important;
	cursor: wait !important;
}

.theme-product-card__info {
	display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem;
	padding-top: 1.25rem; min-width: 0;
}
.theme-product-card__info-text { min-width: 0; flex: 1; display: flex; flex-direction: column; gap: 0.25rem; }
.theme-product-card__title {
	margin: 0;
	font-family: var(--font-display);
	font-size: 1.125rem; font-weight: 400; line-height: 1.375;
	color: var(--color-foreground);
	transition: color 0.3s ease;
	display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.theme-product-card-wrap:hover .theme-product-card__title { color: var(--color-accent); }
.theme-product-card__tagline {
	margin: 0; font-size: 0.75rem; font-style: italic; line-height: 1.35;
	color: var(--color-muted-foreground);
	display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden;
}
.theme-product-card__price {
	font-family: var(--font-display); font-size: 1.125rem; font-weight: 400; color: var(--color-foreground); flex-shrink: 0;
	transition: transform 0.3s ease;
}
.theme-product-card-wrap:hover .theme-product-card__price { transform: translateY(-2px); }
.theme-product-card__price .woocommerce-Price-amount { font-family: var(--font-display); font-weight: 400; }
.theme-product-card__price del { opacity: 0.5; font-size: 0.85em; margin-right: 0.35em; }

/* -------------------------------------------------------------------------
   ABOUT SECTION
   ------------------------------------------------------------------------- */

.about-section { padding: 6rem 0; background: var(--color-surface-soft); overflow: hidden; }
@media (min-width: 1024px) { .about-section { padding: 8rem 0; } }

.about-intro { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
@media (min-width: 1024px) { .about-intro { grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 3rem; } }
.about-intro__text { order: 2; }
@media (min-width: 1024px) { .about-intro__text { order: unset; grid-column: span 5 / span 5; } }
.about-eyebrow { display: block; font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.3em; color: var(--color-accent); }
.about-section__heading { margin-top: 1.5rem; font-size: 3rem; line-height: 0.92; letter-spacing: -0.025em; }
@media (min-width: 1024px) { .about-section__heading { font-size: 4.5rem; } }
.about-intro__paragraph { margin-top: 2rem; font-size: 1.125rem; line-height: 1.9; color: var(--color-muted-foreground); }
.about-intro__image { order: 1; position: relative; display: flex; justify-content: flex-end; }
@media (min-width: 1024px) { .about-intro__image { order: unset; grid-column: span 7 / span 7; } }
.about-intro__image-frame { width: 100%; position: relative; aspect-ratio: 4 / 5; }
@media (min-width: 1024px) { .about-intro__image-frame { width: 91.6667%; } }
.about-intro__frame-accent {
	display: none; position: absolute; bottom: -2rem; left: -2rem; width: 16rem; height: 16rem;
	border-left: 1px solid color-mix(in srgb, var(--color-accent) 40%, transparent);
	border-bottom: 1px solid color-mix(in srgb, var(--color-accent) 40%, transparent);
}
@media (min-width: 1024px) { .about-intro__frame-accent { display: block; } }

.about-story { margin-top: 7rem; display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .about-story { margin-top: 10rem; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 4rem; align-items: stretch; } }
.about-story__text { display: flex; flex-direction: column; justify-content: space-between; height: 100%; order: 2; }
@media (min-width: 1024px) { .about-story__text { grid-column: span 6 / span 6; order: 2; } }
.about-section__subheading { font-size: 2.25rem; line-height: 1; letter-spacing: -0.025em; }
@media (min-width: 1024px) { .about-section__subheading { font-size: 3rem; } }
.about-story__paragraphs { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 2rem; font-size: 1.125rem; line-height: 1.9; color: var(--color-muted-foreground); }
.about-story__promise-wrap { margin-top: 3rem; }
.about-story__promise-card {
	position: relative;
	padding: 1.5rem;
	background: color-mix(in srgb, var(--color-background) 80%, transparent);
	border: 1px solid color-mix(in srgb, var(--color-border) 50%, transparent);
	box-shadow: var(--shadow-elevated);
	overflow: hidden;
	transition: transform 0.5s var(--transition-smooth), box-shadow 0.5s var(--transition-smooth), border-color 0.5s var(--transition-smooth);
}
@media (min-width: 1024px) { .about-story__promise-card { padding: 2rem; } }
@media (hover: hover) {
	.about-story__promise-card:hover {
		transform: translateY(-4px);
		box-shadow: 0 25px 50px -12px color-mix(in srgb, var(--color-foreground) 25%, transparent);
		border-color: color-mix(in srgb, var(--color-accent) 30%, transparent);
	}
}
.about-story__promise-card-accent {
	position: absolute;
	inset: 0 0 auto 0;
	height: 4px;
	background: linear-gradient(to right, transparent, var(--color-accent), transparent);
	pointer-events: none;
}
.about-story__promise-inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.about-story__promise-row { display: flex; gap: 1rem; }
.about-story__promise-index {
	flex-shrink: 0;
	width: 2.5rem;
	height: 2.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: color-mix(in srgb, var(--color-accent) 10%, transparent);
	color: var(--color-accent);
	font-family: var(--font-display);
	font-size: 0.875rem;
	font-weight: 500;
	transition: transform 0.5s var(--transition-smooth), background-color 0.5s var(--transition-smooth);
}
@media (hover: hover) {
	.about-story__promise-card:hover .about-story__promise-index {
		transform: scale(1.1);
		background: color-mix(in srgb, var(--color-accent) 20%, transparent);
	}
	.about-story__promise-card:hover .about-story__promise-row h4 { color: var(--color-accent); }
}
.about-story__promise-row h4 {
	font-family: var(--font-display);
	font-size: 1.125rem;
	line-height: 1.375;
	color: var(--color-foreground);
	letter-spacing: -0.025em;
	transition: color 0.3s ease;
}
@media (min-width: 1024px) { .about-story__promise-row h4 { font-size: 1.25rem; } }
.about-story__promise-row p { margin-top: 0.25rem; font-size: 0.875rem; color: var(--color-muted-foreground); line-height: 1.625; }
.about-story__image { order: 1; height: auto; }
@media (min-width: 1024px) { .about-story__image { grid-column: span 6 / span 6; order: 1; height: 100%; } }
.about-story__image-frame {
	position: relative;
	overflow: hidden;
	aspect-ratio: 3 / 5;
	height: auto;
	min-height: 0;
}
@media (min-width: 1024px) {
	.about-story__image-frame {
		height: 100%;
		min-height: 24rem;
		aspect-ratio: auto;
	}
}
.about-story__image-frame .cover-img { object-position: top center; }

.about-founder { margin-top: 7rem; position: relative; overflow: hidden; background: var(--color-foreground); color: var(--color-primary-foreground); padding: 2rem; }
@media (min-width: 1024px) { .about-founder { margin-top: 10rem; padding: 5rem; } }
@media (min-width: 640px) { .about-founder { padding: 3rem; } }
.about-founder__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: stretch; }
@media (min-width: 1024px) { .about-founder__grid { grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 4rem; } }
.about-founder__image { height: 100%; }
@media (min-width: 1024px) { .about-founder__image { grid-column: span 5 / span 5; } }
.about-founder__image-frame { height: 100%; min-height: 20rem; position: relative; }
.about-founder__text { }
@media (min-width: 1024px) { .about-founder__text { grid-column: span 7 / span 7; } }
.about-founder__eyebrow { display: block; font-family: var(--font-display); font-style: italic; font-size: 1.5rem; }
.about-founder__heading { margin-top: 1rem; font-size: 2.25rem; line-height: 1; letter-spacing: -0.025em; }
@media (min-width: 1024px) { .about-founder__heading { font-size: 3.75rem; } }
.about-founder__rule { margin-top: 2rem; width: 5rem; height: 1px; background: var(--color-accent); }
.about-founder__quote {
	margin-top: 2rem; font-size: 1.125rem; font-style: italic; font-weight: 300; line-height: 1.85;
	color: color-mix(in srgb, var(--color-primary-foreground) 80%, transparent); max-width: 42rem;
}
@media (min-width: 1024px) { .about-founder__quote { font-size: 1.25rem; } }
.about-founder__paragraph { margin-top: 1.5rem; line-height: 1.9; color: color-mix(in srgb, var(--color-primary-foreground) 70%, transparent); max-width: 42rem; }
.about-founder__ctas { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 640px) { .about-founder__ctas { flex-direction: row; } }

/* -------------------------------------------------------------------------
   LIVE SHOWS
   ------------------------------------------------------------------------- */

.live-section { padding: 5rem 0; background: var(--color-surface-soft); }
@media (min-width: 1024px) { .live-section { padding: 7rem 0; } }
.live-eyebrow { color: var(--color-accent); }
.live-section__heading { margin-top: 0.75rem; font-size: 3rem; line-height: 0.98; letter-spacing: -0.025em; max-width: 48rem; }
@media (min-width: 640px) { .live-section__heading { font-size: 3.75rem; } }
.live-section__paragraph { margin-top: 1.5rem; max-width: 42rem; font-size: 1.125rem; line-height: 1.9; color: var(--color-muted-foreground); }
.live-section__ctas { margin-top: 2.25rem; display: flex; flex-direction: column; gap: 0.75rem; }
@media (min-width: 640px) { .live-section__ctas { flex-direction: row; } }
.live-section__image { margin-top: 3.5rem; overflow: hidden; box-shadow: var(--shadow-elevated); }
.live-section__image-photo {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	display: block;
}

.live-steps { margin-top: 6rem; }
.live-steps__heading { font-size: 2.25rem; line-height: 1; letter-spacing: -0.025em; }
@media (min-width: 640px) { .live-steps__heading { font-size: 3rem; } }
.live-steps__grid { margin-top: 3rem; display: grid; grid-template-columns: 1fr; gap: 1.5rem; position: relative; }
@media (min-width: 640px) { .live-steps__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .live-steps__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 2rem; } }
.live-step-card {
	height: 100%; border: 1px solid var(--color-border); background: var(--color-card); padding: 1.75rem;
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.live-step-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -20px rgba(0,0,0,0.25); border-color: color-mix(in srgb, var(--color-accent) 30%, transparent); }
.live-step-card__head { display: flex; align-items: center; justify-content: space-between; }
.live-step-card__icon {
	width: 2.5rem; height: 2.5rem; background: color-mix(in srgb, var(--color-accent) 15%, transparent);
	display: flex; align-items: center; justify-content: center; color: var(--color-accent);
	transition: transform 0.3s ease, background-color 0.3s ease;
}
.live-step-card:hover .live-step-card__icon { transform: scale(1.1); background: color-mix(in srgb, var(--color-accent) 25%, transparent); }
.live-step-card__index { font-family: var(--font-display); font-size: 1.875rem; color: color-mix(in srgb, var(--color-muted-foreground) 40%, transparent); transition: color 0.3s ease; }
.live-step-card:hover .live-step-card__index { color: color-mix(in srgb, var(--color-accent) 60%, transparent); }
.live-step-card h3 { margin-top: 1.25rem; font-size: 1.25rem; line-height: 1.375; color: var(--color-foreground); }
.live-step-card p { margin-top: 0.75rem; font-size: 0.875rem; color: var(--color-muted-foreground); line-height: 1.85; }

.cta-band { margin-top: 6rem; position: relative; overflow: hidden; text-align: center; }
.cta-band__bg { position: absolute; }
.cta-band__scrim { position: absolute; inset: 0; background: color-mix(in srgb, var(--color-primary) 80%, transparent); }
.cta-band__content { position: relative; z-index: 1; padding: 2.5rem 1.5rem; }
@media (min-width: 1024px) { .cta-band__content { padding: 4rem 2rem; } }
.cta-band__eyebrow { color: var(--color-accent); }
.cta-band__title { margin-top: 0.75rem; font-size: 2.25rem; line-height: 1; letter-spacing: -0.025em; color: var(--color-primary-foreground); }
@media (min-width: 640px) { .cta-band__title { font-size: 3rem; } }
.cta-band__paragraph { margin-top: 1.25rem; max-width: 32rem; margin-left: auto; margin-right: auto; color: color-mix(in srgb, var(--color-primary-foreground) 85%, transparent); line-height: 1.625; }
.cta-band__ctas { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; justify-content: center; }
@media (min-width: 640px) { .cta-band__ctas { flex-direction: row; } }

/* -------------------------------------------------------------------------
   FAQ
   ------------------------------------------------------------------------- */

.faq-section { padding: 5rem 0; }
@media (min-width: 1024px) { .faq-section { padding: 7rem 0; } }
.faq-section__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 1024px) { .faq-section__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 4rem; } }
.faq-section__intro { position: sticky; top: 6rem; align-self: flex-start; }
.faq-eyebrow { color: var(--color-accent); }
.faq-section__heading { margin-top: 0.75rem; font-size: 2.25rem; line-height: 1; letter-spacing: -0.025em; }
@media (min-width: 640px) { .faq-section__heading { font-size: 3rem; } }
.faq-section__paragraph { margin-top: 1.25rem; font-size: 0.875rem; color: var(--color-muted-foreground); line-height: 1.85; }
.faq-accordion { }
@media (min-width: 1024px) { .faq-accordion { grid-column: span 2 / span 2; } }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-item__trigger {
	width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
	padding: 1rem 0; text-align: left; font-family: var(--font-display); font-size: 1.125rem; font-weight: 500; color: var(--color-foreground);
}
.faq-item__trigger:hover { text-decoration: underline; }
.faq-item__chevron { flex-shrink: 0; transition: transform 0.2s ease; }
.faq-item__trigger[aria-expanded="true"] .faq-item__chevron { transform: rotate(180deg); }
.faq-item__panel { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item__panel-inner { padding-bottom: 1rem; font-size: 0.875rem; color: var(--color-muted-foreground); line-height: 1.85; }

/* -------------------------------------------------------------------------
   CONTACT
   ------------------------------------------------------------------------- */

.contact-section { padding: 5rem 0; background: var(--color-surface-soft); }
@media (min-width: 1024px) { .contact-section { padding: 7rem 0; } }
.contact-eyebrow { color: var(--color-accent); }
.contact-title { margin-top: 0.75rem; font-size: 3rem; line-height: 0.98; letter-spacing: -0.025em; }
@media (min-width: 640px) { .contact-title { font-size: 3.75rem; } }
.contact-section__paragraph { margin-top: 1.5rem; max-width: 36rem; color: var(--color-muted-foreground); line-height: 1.9; }

.contact-grid { margin-top: 3.5rem; display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: stretch; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 3.5rem; } }
.contact-form-wrap { height: 100%; }
@media (min-width: 1024px) { .contact-form-wrap { grid-column: span 3 / span 3; } }
.contact-form {
	height: 100%; display: flex; flex-direction: column; gap: 1.25rem;
	border: 1px solid var(--color-border); background: var(--color-card); padding: 1.5rem;
}
@media (min-width: 1024px) { .contact-form { padding: 2.25rem; } }
.contact-form__row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .contact-form__row { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.contact-form label, .contact-form__message label { display: block; font-size: 0.875rem; font-weight: 500; margin-bottom: 0.375rem; }
.contact-form input, .contact-form textarea {
	width: 100%; border: 1px solid var(--color-border); background: var(--color-background);
	padding: 0.55rem 0.75rem; font-size: 0.875rem; transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--color-muted-foreground); }
.contact-form input:focus-visible, .contact-form textarea:focus-visible {
	outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 2px color-mix(in srgb, var(--color-primary) 30%, transparent);
}
.contact-form__message { flex: 1; display: flex; flex-direction: column; }
.contact-form__message textarea { flex: 1; min-height: 120px; resize: vertical; }
.contact-form__submit { width: 100%; }
@media (min-width: 640px) { .contact-form__submit { width: auto; align-self: flex-start; } }
.contact-form__disclaimer { font-size: 0.75rem; color: var(--color-muted-foreground); }
.contact-form__disclaimer a { color: var(--color-foreground); }

.contact-info { height: 100%; display: flex; flex-direction: column; justify-content: space-between; padding: 0.5rem 0; }
@media (min-width: 1024px) { .contact-info { grid-column: span 2 / span 2; padding: 0.75rem 0; } }
.contact-info h3 { font-size: 1.5rem; color: var(--color-foreground); }
.contact-info__list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info__list li { display: flex; align-items: flex-start; gap: 0.75rem; }
.contact-info__list svg { margin-top: 0.25rem; color: var(--color-accent); flex-shrink: 0; }
.contact-info__list a {
	display: block; color: var(--color-foreground); word-break: break-all; transition: color 0.3s ease;
}
.contact-info__list a:hover { color: var(--color-accent); }
.contact-info__note { margin-top: 1.75rem; font-size: 0.875rem; color: var(--color-muted-foreground); line-height: 1.85; }

/* -------------------------------------------------------------------------
   FOOTER
   ------------------------------------------------------------------------- */

.site-footer { border-top: 2px solid color-mix(in srgb, var(--color-accent) 40%, transparent); background: var(--color-secondary); }
.site-footer__inner { padding-block: 3rem; }
@media (min-width: 1024px) { .site-footer__inner { padding-block: 4rem; } }
.site-footer__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 768px) { .site-footer__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .site-footer__grid { gap: 3rem; } }
.site-footer__col .micro-label { margin-bottom: 1rem; color: var(--color-foreground); }
/* Beat WooCommerce .woocommerce-page img { height:auto; max-width:100% } on cart/checkout. */
.site-footer__logo,
.woocommerce-page .site-footer__logo,
.woocommerce .site-footer__logo {
	height: var(--logo-height);
	width: auto;
	max-width: none;
	transition: transform 0.5s ease;
	cursor: pointer;
}
.site-footer__logo:hover { transform: scale(1.05); }
.site-footer__desc { margin-top: 1rem; font-size: 0.875rem; color: var(--color-muted-foreground); max-width: 20rem; line-height: 1.85; }
.theme-footer-nav-list { display: flex; flex-direction: column; gap: 0.75rem; }
.theme-footer-nav-list a { display: inline-block; font-size: 0.875rem; color: var(--color-muted-foreground); transition: all 0.3s ease; }
.theme-footer-nav-list a:hover { color: var(--color-foreground); transform: translateX(4px); }
.site-footer__contact-list { display: flex; flex-direction: column; gap: 0.75rem; }
.site-footer__contact-list li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--color-muted-foreground); }
.site-footer__contact-list a { transition: all 0.3s ease; display: inline-block; }
.site-footer__contact-list a:hover { color: var(--color-foreground); transform: translateX(4px); }
.site-footer__bottom {
	margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--color-border);
	display: flex; flex-direction: column; align-items: center; gap: 1rem; text-align: center;
}
@media (min-width: 640px) { .site-footer__bottom { flex-direction: row; justify-content: space-between; text-align: left; } }
.site-footer__copy { font-size: 0.75rem; color: var(--color-muted-foreground); }
.site-footer__credit { font-size: 0.75rem; color: var(--color-muted-foreground); transition: color 0.2s ease; cursor: pointer; }
.site-footer__credit:hover { color: var(--color-foreground); }

/* -------------------------------------------------------------------------
   404 / GENERIC PAGES
   ------------------------------------------------------------------------- */

.not-found-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--color-muted); }
.not-found-page__inner { text-align: center; }
.not-found-page__code { font-size: 3rem; color: var(--color-foreground); margin-bottom: 1rem; }
.not-found-page__text { font-size: 1.25rem; color: var(--color-muted-foreground); margin-bottom: 1rem; }
.not-found-page__link { display: inline-block; color: var(--color-primary); text-decoration: underline; text-underline-offset: 4px; transition: all 0.3s ease; }
.not-found-page__link:hover { color: color-mix(in srgb, var(--color-primary) 90%, transparent); transform: translateX(4px); }

.generic-content { padding-bottom: 6rem; min-height: 60vh; }
.page-title { font-size: 2.5rem; margin-bottom: 1.5rem; }
.entry-content { line-height: 1.85; color: var(--color-muted-foreground); }
.entry-content p { margin-bottom: 1rem; }

/* =========================================================================
   WOOCOMMERCE
   ========================================================================= */

/* -- Notices (Section 14.1) — scoped hiding only where the theme provides
   equivalent feedback; always visible on checkout/cart/account. -- */
.single-product .woocommerce-message,
.single-product .woocommerce-info,
#theme-cart-drawer .woocommerce-message {
	display: none;
}
.woocommerce-message, .woocommerce-info, .woocommerce-error {
	max-width: 1400px; margin: 1.5rem auto; padding: 1rem 1.5rem;
	border: 1px solid var(--color-border); background: var(--color-card);
	font-size: 0.875rem; list-style: none;
}
.woocommerce-error { border-color: var(--color-destructive); color: var(--color-destructive); }

/* -- Add to cart button overrides (Section 11.4.1) — excludes card quick-add -- */
.single_add_to_cart_button.button,
.add_to_cart_button.button:not(.theme-product-card__add-btn),
a.single_add_to_cart_button,
a.add_to_cart_button:not(.theme-product-card__add-btn) {
	background-color: var(--color-primary) !important;
	color: var(--color-primary-foreground) !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;
	gap: 0.5rem;
	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;
}
.single_add_to_cart_button.button:hover,
.add_to_cart_button.button:not(.theme-product-card__add-btn):hover {
	opacity: 0.85 !important;
	background-color: var(--color-primary) !important;
	color: var(--color-primary-foreground) !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:not(.theme-product-card__add-btn) {
	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:not(.theme-product-card__add-btn):hover {
	opacity: 0.4 !important;
	background-color: var(--color-primary) !important;
}
/* Card quick-add — matches ProductCard.tsx (py-3.5 / sm:py-4, shadow-lg) */
.theme-product-card__add-btn.button.add_to_cart_button,
.theme-product-card__add-btn.add_to_cart_button.button {
	width: 100% !important;
	min-height: 2.75rem !important;
	padding: 0.875rem 1rem !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	background-color: var(--color-foreground) !important;
	color: var(--color-primary-foreground) !important;
	border: none !important;
	border-radius: 0 !important;
	font-family: var(--font-body) !important;
	font-size: 10px !important;
	font-weight: 600 !important;
	letter-spacing: 0.2em !important;
	text-transform: uppercase !important;
	line-height: 1.2 !important;
	box-shadow: var(--shadow-elevated) !important;
	cursor: pointer !important;
	transition: background-color 0.2s ease, transform 0.2s ease, opacity 0.2s ease !important;
}
@media (min-width: 640px) {
	.theme-product-card__add-btn.button.add_to_cart_button,
	.theme-product-card__add-btn.add_to_cart_button.button {
		min-height: 3rem !important;
		padding: 1rem 1rem !important;
	}
}
.theme-product-card__add-btn.button.add_to_cart_button:hover,
.theme-product-card__add-btn.add_to_cart_button.button:hover {
	background-color: color-mix(in srgb, var(--color-foreground) 85%, transparent) !important;
	opacity: 1 !important;
}
.theme-product-card__add-btn.added::after,
.theme-product-card__add-btn.loading::after {
	display: none !important;
	content: none !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; }

/* Hide "View cart" injected after AJAX add (Section 11.4.2) */
.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; }

/* -- Quantity control -- */
.theme-quantity-wrapper { display: inline-flex; align-items: stretch; border: 1px solid var(--color-border); height: var(--btn-height); }
.theme-qty-minus, .theme-qty-plus {
	width: 2.75rem; display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
	color: var(--color-foreground); transition: background-color 0.2s ease;
}
.theme-qty-minus:hover, .theme-qty-plus:hover { background: var(--color-secondary); }
.theme-qty-input {
	width: 3rem; border: none; border-left: 1px solid var(--color-border); border-right: 1px solid var(--color-border);
	text-align: center; background: transparent; -moz-appearance: textfield;
}
.theme-qty-input::-webkit-outer-spin-button, .theme-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* -- Single product page -- */
.single-product-page { padding-bottom: 6rem; }
@media (min-width: 1024px) { .single-product-page { padding-bottom: 8rem; } }
.back-to-shop {
	display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--color-muted-foreground);
	margin-bottom: 2rem; transition: color 0.2s ease; cursor: pointer;
}
.back-to-shop:hover { color: var(--color-foreground); }
.theme-product-layout { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: flex-start; min-width: 0; }
@media (min-width: 1024px) { .theme-product-layout { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 4rem; } }
.theme-product-gallery, .theme-product-info { min-width: 0; max-width: 100%; }
.theme-product-gallery__main-frame { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--color-secondary); border: 1px solid var(--color-border); }
.theme-product-gallery__main-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.theme-product-thumbnails { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1rem; max-width: 100%; }
.theme-product-thumb { width: 4.5rem; height: 4.5rem; border: 2px solid transparent; overflow: hidden; opacity: 0.6; transition: all 0.2s ease; flex-shrink: 0; cursor: pointer; }
.theme-product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.theme-product-thumb:hover { opacity: 1; }
.theme-product-thumb.is-active { border-color: var(--color-foreground); opacity: 1; }

.product-eyebrow { color: var(--color-accent); }
.product-title {
	margin-top: 0.75rem; font-family: var(--font-display); font-weight: 400; font-size: 2.25rem; line-height: 1.02;
	letter-spacing: -0.025em; color: var(--color-foreground); text-transform: none;
}
@media (min-width: 640px) { .product-title { font-size: 3rem; } }
.product-tagline { margin-top: 1rem; font-size: 1.125rem; font-style: italic; color: var(--color-muted-foreground); }
.product-price { margin-top: 1.5rem; font-family: var(--font-display); font-size: 1.875rem; color: var(--color-foreground); }
.product-price .woocommerce-Price-amount { font-family: var(--font-display); }
.product-stock { margin-top: 0.75rem; font-size: 0.875rem; font-weight: 600; }
.product-stock.is-out-of-stock { color: var(--color-destructive); }

.theme-attribute-block { margin-top: 2rem; }
.theme-attribute-pills { margin-top: 0.75rem; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.theme-attr-pill {
	border: 1px solid var(--color-border); padding: 0.5rem 1.25rem; font-size: 0.875rem;
	color: color-mix(in srgb, var(--color-foreground) 80%, transparent); transition: all 0.2s ease;
	cursor: pointer;
}
.theme-attr-pill:hover { border-color: color-mix(in srgb, var(--color-foreground) 40%, transparent); color: var(--color-foreground); }
.theme-attr-pill.is-selected { background: var(--color-foreground); color: var(--color-background); border-color: var(--color-foreground); }
.theme-attribute-pills--color { gap: 0.75rem; }
.theme-color-swatch {
	display: inline-flex; align-items: center; gap: 0.5rem;
	border: 1px solid var(--color-border); padding: 0.375rem 0.875rem 0.375rem 0.5rem;
	font-size: 0.875rem; color: var(--color-foreground); background: transparent;
	cursor: pointer; transition: border-color 0.2s ease, background 0.2s ease;
}
.theme-color-swatch:hover { border-color: color-mix(in srgb, var(--color-foreground) 40%, transparent); }
.theme-color-swatch.theme-attr-pill.is-selected,
.theme-color-swatch.is-selected {
	background: color-mix(in srgb, var(--color-primary) 5%, transparent);
	color: var(--color-foreground);
	border-color: var(--color-primary);
}
.theme-color-swatch__circle {
	width: 1.25rem; height: 1.25rem; border-radius: 50%; flex-shrink: 0;
	border: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent);
	box-sizing: border-box;
}
.theme-color-swatch.is-selected .theme-color-swatch__circle {
	border-color: color-mix(in srgb, var(--color-primary) 50%, transparent);
}
.theme-attr-select-hidden { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }

.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; }
.single-product .variations tbody td.value { padding-top: 0; }

.theme-add-to-cart-area { display: flex; align-items: stretch; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }
.single-product .single_add_to_cart_button { flex: 1 1 auto; min-width: 160px; }
.product-fit-note { margin-top: 0.75rem; font-size: 0.875rem; color: var(--color-muted-foreground); }
.product-inventory-note { margin-top: 1rem; font-size: 0.75rem; color: var(--color-muted-foreground); line-height: 1.6; }
.product-inventory-note a { color: var(--color-foreground); text-decoration: underline; text-underline-offset: 2px; }

.theme-pdp-extras { margin-top: 1.5rem; }
.theme-custom-request-field { margin-top: 1.5rem; }
.theme-custom-request-input {
	width: 100%; margin-top: 0.75rem; padding: 0.75rem;
	border: 1px solid var(--color-border); border-radius: 0;
	font-family: var(--font-body); font-size: 0.875rem; line-height: 1.5;
	color: var(--color-foreground); background: var(--color-background); resize: vertical; min-height: 4.5rem;
}
.theme-custom-request-input:focus {
	outline: none; border-color: var(--color-primary);
	box-shadow: 0 0 0 2px color-mix(in srgb, var(--color-primary) 30%, transparent);
}

.product-details-block { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--color-border); display: flex; flex-direction: column; gap: 1.5rem; }
.product-long-description, .product-details-content, .product-details-section p {
	margin-top: 0.75rem; color: var(--color-muted-foreground); line-height: 1.9;
	overflow-wrap: break-word; word-break: break-word;
}
.product-details-content ul { list-style: disc; padding-left: 1.25rem; }
.product-details-content li { margin-top: 0.35rem; }

.product-whatnot-block { margin-top: 2.5rem; background: var(--color-secondary); border: 1px solid var(--color-border); padding: 1.5rem; }
.product-whatnot-block__head { display: flex; align-items: center; gap: 0.5rem; color: var(--color-foreground); }
.product-whatnot-block p { margin-top: 0.5rem; font-size: 0.875rem; color: var(--color-muted-foreground); line-height: 1.85; }
.product-whatnot-block a { margin-top: 0.75rem; display: inline-block; }

.related-products-section { margin-top: 6rem; }
@media (min-width: 1024px) { .related-products-section { margin-top: 8rem; } }
.related-products-heading { font-size: 1.875rem; line-height: 1.08; letter-spacing: -0.025em; margin-bottom: 2.5rem; }
@media (min-width: 640px) { .related-products-heading { font-size: 2.25rem; } }

.posted_in { overflow-wrap: break-word; word-break: break-word; }

/* -- Shop archive fallback page -- */
.shop-archive-page { padding-bottom: 6rem; }
.shop-archive-page__head { margin-bottom: 2.5rem; }

/* -- Cart / Side drawer -- */
#theme-cart-overlay {
	position: fixed; inset: 0; z-index: 90; background: rgba(0,0,0,0.6);
	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; bottom: 0; z-index: 91;
	width: 100%; max-width: 28rem; background: var(--color-background);
	display: flex; flex-direction: column;
	transform: translateX(100%); transition: transform 0.4s var(--transition-smooth);
	box-shadow: -20px 0 60px -20px rgba(0,0,0,0.3);
}
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 1.5rem 1rem; border-bottom: 1px solid var(--color-border); }
.theme-cart-drawer__title { display: flex; align-items: center; gap: 0.5rem; font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; }
.theme-cart-drawer__title svg { color: var(--color-accent); }
.theme-cart-drawer__count { font-size: 0.875rem; font-weight: 400; color: var(--color-muted-foreground); font-family: var(--font-body); }
.theme-cart-drawer__close { padding: 0.5rem; opacity: 0.7; transition: opacity 0.2s ease; }
.theme-cart-drawer__close:hover { opacity: 1; }

.theme-cart-drawer__empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 1.5rem; text-align: center; gap: 1rem; }
.theme-cart-drawer__empty-icon { width: 4rem; height: 4rem; background: var(--color-secondary); display: flex; align-items: center; justify-content: center; color: var(--color-muted-foreground); }
.theme-cart-drawer__empty-title { font-family: var(--font-display); font-style: italic; font-size: 1.125rem; }
.theme-cart-drawer__empty-sub { font-size: 0.875rem; color: var(--color-muted-foreground); max-width: 18rem; }

.theme-cart-drawer__items { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.theme-cart-item { display: flex; gap: 1rem; padding: 0.75rem 0; border-bottom: 1px solid var(--color-border); }
.theme-cart-item:last-child { border-bottom: none; }
.theme-cart-item__image { width: 5rem; height: 5rem; flex-shrink: 0; overflow: hidden; background: var(--color-secondary); position: relative; }
.theme-cart-item__body { flex: 1; min-width: 0; }
.theme-cart-item__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 0.5rem; }
.theme-cart-item__name { font-family: var(--font-display); font-size: 1rem; color: var(--color-foreground); transition: color 0.2s ease; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.theme-cart-item__name:hover { color: var(--color-accent); }
.theme-cart-item__remove { color: var(--color-muted-foreground); transition: color 0.2s ease; flex-shrink: 0; }
.theme-cart-item__remove:hover { color: var(--color-destructive); }
.theme-cart-item__variation { font-size: 11px; text-transform: uppercase; letter-spacing: 0.2em; color: var(--color-muted-foreground); margin-top: 0.15rem; }
.theme-cart-item__meta { list-style: none; margin: 0.35rem 0 0; padding: 0; font-size: 0.8125rem; line-height: 1.4; }
.theme-cart-item__meta-row { margin-top: 0.25rem; display: flex; flex-wrap: wrap; gap: 0.25rem; align-items: center; }
.theme-cart-item__meta-label { color: var(--color-muted-foreground); }
.theme-cart-item__meta-color { display: inline-flex; align-items: center; gap: 0.35rem; }
.theme-cart-item__meta-swatch {
	width: 0.75rem; height: 0.75rem; border-radius: 50%; display: inline-block; flex-shrink: 0;
	border: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent); box-sizing: border-box;
}
.theme-cart-item__meta-note { font-style: italic; color: var(--color-muted-foreground); }
.theme-cart-item__footer { margin-top: 0.75rem; display: flex; align-items: center; justify-content: space-between; }
.theme-cart-item__qty { display: inline-flex; align-items: center; border: 1px solid var(--color-border); }
.theme-cart-item__qty button { padding: 0.35rem; transition: background-color 0.2s ease; }
.theme-cart-item__qty button:hover { background: var(--color-secondary); }
.theme-cart-item__qty-value { padding: 0 0.65rem; font-size: 0.875rem; }
.theme-cart-item__price { font-size: 0.875rem; }

.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-mix(in srgb, var(--color-secondary) 40%, transparent); }
.theme-cart-drawer__subtotal { display: flex; align-items: center; justify-content: space-between; }
.theme-cart-drawer__subtotal-value { font-family: var(--font-display); font-size: 1.25rem; }
.theme-cart-drawer__note { font-size: 0.75rem; color: var(--color-muted-foreground); }
.theme-cart-drawer__continue { width: 100%; text-align: center; font-size: 0.75rem; color: var(--color-muted-foreground); transition: color 0.2s ease; }
.theme-cart-drawer__continue:hover { color: var(--color-foreground); }

/* =========================================================================
   CHECKOUT (WooCommerce Checkout Block) — Section 13
   ========================================================================= */

.checkout-shell {
	width: 100%;
	max-width: none;
	margin: 0 auto;
	padding: 0 1.5rem;
	box-sizing: border-box;
}
@media (min-width: 1024px) {
	.checkout-shell { padding: 0 2rem; }
}

body.woocommerce-checkout .site-main,
body.woocommerce-checkout.checkout-page .site-main { padding-bottom: 4rem; }
body.woocommerce-checkout .entry-content,
.entry-content:has(.wc-block-checkout) { max-width: 100%; width: 100%; }

.theme-checkout-header {
	max-width: 1280px;
	margin: 0 auto 2rem;
	width: 100%;
	box-sizing: border-box;
}
.theme-checkout-header__title { margin-top: 1rem; margin-bottom: 0; }
.theme-checkout-header__intro {
	margin-top: 0.75rem;
	max-width: 42rem;
	font-size: 0.9375rem;
	line-height: 1.6;
	color: var(--color-muted-foreground);
}

body.woocommerce-checkout .wp-block-woocommerce-checkout,
body.woocommerce-checkout .wc-block-checkout,
.entry-content .wp-block-woocommerce-checkout,
.entry-content .wc-block-checkout {
	display: block;
	max-width: 1280px;
	width: 100%;
	margin-inline: auto;
	box-sizing: border-box;
}

@media (min-width: 768px) {
	body.woocommerce-checkout .wc-block-components-sidebar-layout,
	body.woocommerce-checkout .wc-block-checkout-sidebar-layout,
	.entry-content .wc-block-components-sidebar-layout,
	.entry-content .wc-block-checkout-sidebar-layout {
		display: grid;
		grid-template-columns: 1fr minmax(360px, 400px);
		gap: var(--checkout-gap, 1.5rem);
		align-items: start;
	}
}

body.woocommerce-checkout .wc-block-components-sidebar-layout > *,
body.woocommerce-checkout .wc-block-checkout-sidebar-layout > *,
.entry-content .wc-block-components-sidebar-layout > *,
.entry-content .wc-block-checkout-sidebar-layout > * {
	width: 100%;
	min-width: 0;
	max-width: 100%;
	box-sizing: border-box;
}

body.woocommerce-checkout .wc-block-components-notices,
.entry-content .wc-block-components-notices {
	max-width: 1280px;
	margin-inline: auto;
	width: 100%;
	box-sizing: border-box;
	order: 1;
	grid-column: 1 / -1;
}

body.woocommerce-checkout .wc-block-checkout__main,
.entry-content .wc-block-checkout__main { order: 2; min-width: 0; width: 100%; max-width: 100%; }
body.woocommerce-checkout .wc-block-checkout__sidebar,
.entry-content .wc-block-checkout__sidebar { order: 3; min-width: 0; width: 100%; max-width: 100%; }

body.woocommerce-checkout .wc-block-components-notice-banner,
.entry-content .wc-block-components-notice-banner { grid-column: 1 / -1; }

body.woocommerce-checkout .wc-block-checkout__sidebar,
body.woocommerce-checkout .wc-block-components-sidebar,
body.woocommerce-checkout .wp-block-woocommerce-checkout-totals-block,
.entry-content .wc-block-checkout__sidebar,
.entry-content .wc-block-components-sidebar,
.entry-content .wp-block-woocommerce-checkout-totals-block {
	background: transparent;
	padding: 0;
	border-radius: 0;
}

body.woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-block,
.entry-content .wp-block-woocommerce-checkout-order-summary-block {
	background-color: var(--color-surface-soft);
	border-radius: 0;
	padding: 2rem;
	width: 100%;
	box-sizing: border-box;
}

body.woocommerce-checkout .wc-block-checkout-empty,
.entry-content .wc-block-checkout-empty {
	margin-inline: auto;
	max-width: 36rem;
	width: 100%;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	box-sizing: border-box;
}

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 {
	width: 100% !important;
	max-width: none !important;
	font-family: var(--font-body);
	font-size: 0.875rem;
	color: var(--color-foreground);
	border: 1px solid var(--color-border);
	border-radius: 0;
	background-color: var(--color-background);
}
body.woocommerce-checkout .wc-block-components-text-input input:focus,
body.woocommerce-checkout .wc-block-components-select select:focus {
	outline: none;
	border-color: var(--color-primary);
	box-shadow: 0 0 0 2px color-mix(in srgb, var(--color-primary) 30%, transparent);
}
body.woocommerce-checkout .wc-block-components-text-input input {
	padding: revert;
}

body.woocommerce-checkout .wc-block-components-checkout-place-order-button {
	background-color: var(--color-foreground) !important;
	color: var(--color-background) !important;
	border-radius: 0 !important;
	font-family: var(--font-body) !important;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	font-size: 0.8rem !important;
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover {
	opacity: 0.85;
}

body.woocommerce-checkout .wc-block-components-panel,
body.woocommerce-checkout .wc-block-components-order-summary {
	font-family: var(--font-body);
}
body.woocommerce-checkout h2, body.woocommerce-checkout h3 {
	font-family: var(--font-display);
}

/* -------------------------------------------------------------------------
   CART / ACCOUNT / THANK-YOU WIDTH & ALIGNMENT PARITY (Section 13.7)
   ------------------------------------------------------------------------- */

body.woocommerce-cart .site-main,
body.woocommerce-account .site-main {
	padding-bottom: 4rem;
}
body.woocommerce-cart .page-title,
body.woocommerce-account .page-title,
body.theme-thankyou-page .page-title {
	max-width: 1400px; margin-left: auto; margin-right: auto; padding: 0 1.5rem;
}
@media (min-width: 1024px) {
	body.woocommerce-cart .page-title,
	body.woocommerce-account .page-title,
	body.theme-thankyou-page .page-title { padding: 0 2rem; }
}

/* -------------------------------------------------------------------------
   THANK YOU PAGE (Section 22.8)
   ------------------------------------------------------------------------- */

body.theme-thankyou-page { overflow-x: hidden; }
body.theme-thankyou-page .site-main { padding-bottom: 4rem; }
body.theme-thankyou-page .theme-thankyou { max-width: 1400px; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 1024px) { body.theme-thankyou-page .theme-thankyou { padding: 0 2rem; } }

body.theme-thankyou-page .woocommerce-order h2,
body.theme-thankyou-page .woocommerce-order-details__title {
	font-family: var(--font-display);
	padding: 0 0 1rem 0;
	font-size: 1.5rem;
}
body.theme-thankyou-page .woocommerce-order-overview {
	display: flex; flex-wrap: wrap; gap: 1.5rem; list-style: none; padding: 0; margin: 1.5rem 0;
}
body.theme-thankyou-page .woocommerce-order-overview li {
	border: 1px solid var(--color-border); padding: 1rem 1.25rem; font-size: 0.875rem;
}
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 {
	padding: 0.75rem; border-bottom: 1px solid var(--color-border); text-align: left;
}
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; border: 1px solid var(--color-border); padding: 1rem 1.25rem; font-style: normal;
}
@media (min-width: 768px) {
	body.theme-thankyou-page .woocommerce-customer-details {
		display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start;
	}
	body.theme-thankyou-page .woocommerce-customer-details address { max-width: none; min-width: 0; }
}
