/* ==========================================================================
   Nerdycraftsmith theme.css
   All colors reference CSS custom properties emitted by functions.php
   (nc_inline_theme_colors) from the Customizer. No hardcoded hex here.
   ========================================================================== */

:root {
	--font-display: 'Newsreader', 'Instrument Serif', Georgia, serif;
	--font-body: 'Switzer', system-ui, -apple-system, sans-serif;
	--radius: 0.5rem;
	--shadow-soft: 0 4px 20px -8px rgba(0,0,0,0.55);
	--shadow-elevated: 0 24px 60px -18px rgba(0,0,0,0.7);
	--btn-radius: 999px;
	--btn-height: 3rem;
	--btn-padding: 0 1.75rem;
	--btn-font-size: 14px;
	--btn-font-weight: 500;
	--btn-letter-spacing: normal;
	--btn-text-transform: none;
	--color-button-text: var(--color-primary-fg);
	--header-height: 116px;
}

/* ---------------------------------------------------------------------
   Base / reset
   --------------------------------------------------------------------- */
* { border-color: var(--color-border); box-sizing: border-box; }
html, body { max-width: 100%; overflow-x: clip; }
html { scroll-behavior: smooth; }

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

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; cursor: pointer; }
button { cursor: pointer; font-family: inherit; background: none; border: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
img.cover-img, img.hero-bg-img, img.theme-product-card-img, .theme-product-main-image img, .theme-product-thumb img, .owner-photo {
	max-width: none;
	height: 100%;
	width: 100%;
	object-fit: cover;
}
section[id] { scroll-margin-top: 80px; }
input, textarea, select { font-family: inherit; }

.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 animation (data-reveal / reveal-item) + Customizer fallback
   --------------------------------------------------------------------- */
[data-reveal], .reveal-item {
	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);
	will-change: opacity, transform;
}
[data-reveal].is-revealed, .reveal-item.is-revealed { opacity: 1; transform: translateY(0); }
body.is-customizer [data-reveal],
body.is-customizer .reveal-item { opacity: 1 !important; transform: none !important; }
@media (prefers-reduced-motion: reduce) {
	[data-reveal], .reveal-item { transition: none !important; opacity: 1 !important; transform: none !important; }
}

@keyframes nc-fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes nc-slide-in-bottom { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes nc-marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-33.3333%); } }
@keyframes nc-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* ---------------------------------------------------------------------
   Buttons
   --------------------------------------------------------------------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	white-space: nowrap;
	border-radius: var(--btn-radius);
	font-size: var(--btn-font-size);
	font-weight: var(--btn-font-weight);
	font-family: var(--font-body);
	text-transform: var(--btn-text-transform);
	transition: background-color .2s ease, opacity .2s ease, border-color .2s ease;
	border: 1px solid transparent;
	height: var(--btn-height);
	padding: var(--btn-padding);
}
.btn svg { width: 1rem; height: 1rem; flex-shrink: 0; }
.btn-sm { height: 2.25rem; padding: 0 1rem; }
.btn-lg { height: 3rem; padding: 0 1.75rem; }
.btn-primary { background: var(--color-primary); color: var(--color-primary-fg); border-color: var(--color-primary); }
.btn-primary:hover { opacity: .9; }
.btn-outline { background: transparent; color: var(--color-foreground); border-color: color-mix(in srgb, var(--color-foreground) 25%, transparent); }
.btn-outline:hover { border-color: var(--color-foreground); background: color-mix(in srgb, var(--color-foreground) 4%, transparent); }
.btn-glass { background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.4); backdrop-filter: blur(12px); }
.btn-glass:hover { background: rgba(255,255,255,0.2); }
.btn-ghost { border-color: transparent; background: transparent; }
.btn-ghost:hover { background: color-mix(in srgb, var(--color-foreground) 5%, transparent); }

/* ---------------------------------------------------------------------
   Header
   --------------------------------------------------------------------- */
.site-header { position: fixed; inset: 0 0 auto 0; z-index: 50; }
.theme-announcement-bar {
	background: var(--color-foreground);
	color: var(--color-background);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	padding: 0.5rem 1rem;
	text-align: center;
}
@media (min-width: 640px) {
	.theme-announcement-bar { font-size: 12px; }
}
.theme-announcement-bar span { opacity: 0.9; }

.theme-header-bar { transition: background-color .5s ease, border-color .5s ease; background: transparent; border-bottom: 1px solid transparent; }
.site-header.is-solid .theme-header-bar,
.site-header:not(.is-solid) .theme-header-bar.is-solid {
	background: color-mix(in srgb, var(--color-ivory) 85%, transparent);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent);
}
.theme-header-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 4rem;
}
@media (min-width: 1024px) {
	.theme-header-row { height: 5rem; display: grid; grid-template-columns: 1fr auto 1fr; }
}

.theme-menu-toggle {
	display: inline-flex; align-items: center; justify-content: center;
	width: 2.5rem; height: 2.5rem; border-radius: 999px;
	color: #fff; order: 1;
	transition: background-color .2s ease;
}
.theme-menu-toggle:hover { background: rgba(255,255,255,0.1); }
.site-header.is-solid .theme-menu-toggle { color: var(--color-foreground); }
.site-header.is-solid .theme-menu-toggle:hover { background: color-mix(in srgb, var(--color-foreground) 6%, transparent); }
.theme-menu-toggle svg { width: 1.25rem; height: 1.25rem; }
@media (min-width: 1024px) { .theme-menu-toggle { display: none; } }

.theme-brand { display: flex; align-items: center; flex-shrink: 0; order: 2; color: #fff; }
.site-header.is-solid .theme-brand { color: var(--color-foreground); }
@media (min-width: 1024px) { .theme-brand { order: 1; justify-self: start; } }
.site-logo-img { height: 3rem !important; width: auto !important; display: block; }
@media (min-width: 1024px) {
	.site-logo-img { height: var(--logo-height, 56px) !important; }
}
.site-logo-text { font-family: var(--font-display); font-size: 1.5rem; display: block; }

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

.theme-header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 0.5rem; order: 3; }
.theme-cart-btn {
	position: relative; display: inline-flex; align-items: center; justify-content: center;
	width: 2.5rem; height: 2.5rem; border-radius: 999px; color: #fff;
	transition: background-color .2s ease;
}
.theme-cart-btn:hover { background: rgba(255,255,255,0.1); }
.site-header.is-solid .theme-cart-btn { color: var(--color-foreground); }
.site-header.is-solid .theme-cart-btn:hover { background: color-mix(in srgb, var(--color-foreground) 6%, transparent); }
.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-fg);
	font-size: 10px; font-weight: 600; display: flex; align-items: center; justify-content: center;
}
.theme-cart-count:empty { display: none; }

.theme-mobile-nav { display: none; }
.theme-mobile-nav.is-open {
	display: block;
	background: color-mix(in srgb, var(--color-ivory) 95%, transparent);
	backdrop-filter: blur(20px);
	border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent);
	max-height: calc(100dvh - 8rem);
	overflow-y: auto;
}
.theme-mobile-nav .theme-nav-list--mobile { flex-direction: column; align-items: stretch; gap: 0; padding: 1.5rem 1.25rem; }
.theme-mobile-nav .theme-nav-link {
	display: block; width: 100%; text-align: left; font-size: 15px; 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);
}
@media (min-width: 1024px) { .theme-mobile-nav { display: none !important; } }

/* Home hero fills viewport under fixed header */
body.home main { padding-top: 0; }
body.theme-no-hero .site-main,
body.theme-no-hero main { padding-top: var(--header-height); }

/* ---------------------------------------------------------------------
   Hero
   --------------------------------------------------------------------- */
.hero-section {
	position: relative; min-height: 100vh; width: 100%;
	display: flex; align-items: center; justify-content: center;
	overflow: hidden; background: var(--color-background);
}
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-scrim-gradient {
	position: absolute; inset: 0; pointer-events: none;
	background-image:
		radial-gradient(at 20% 20%, color-mix(in srgb, var(--color-accent) 32%, transparent) 0%, transparent 55%),
		radial-gradient(at 80% 80%, color-mix(in srgb, var(--color-primary) 22%, transparent) 0%, transparent 55%),
		linear-gradient(180deg, color-mix(in srgb, var(--color-background) 45%, transparent) 0%, color-mix(in srgb, var(--color-background) 72%, transparent) 100%);
}
.hero-scrim-flat { position: absolute; inset: 0; background: color-mix(in srgb, var(--color-background) 25%, transparent); pointer-events: none; }
.hero-content { position: relative; z-index: 10; text-align: center; color: #fff; padding: 10rem 0 6rem; }
@media (min-width: 1024px) { .hero-content { padding: 13rem 0 8rem; } }
.hero-eyebrow { font-size: 12px; letter-spacing: 0.38em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 1.5rem; font-weight: 500; }
.hero-title {
	color: #fff; line-height: 1.02; letter-spacing: -0.02em; max-width: 64rem; margin: 0 auto;
	filter: drop-shadow(0 2px 30px rgba(0,0,0,0.55));
	font-size: clamp(2rem, 5.4vw, 4.4rem);
}
.hero-title em { font-style: italic; }
.hero-title-break { display: none; }
@media (min-width: 640px) { .hero-title-break { display: block; } }
.hero-subtitle { margin-top: 1.75rem; max-width: 42rem; margin-left: auto; margin-right: auto; font-size: 14px; color: rgba(255,255,255,0.85); line-height: 1.6; }
@media (min-width: 640px) { .hero-subtitle { font-size: 15px; } }
.hero-actions { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0.75rem; justify-content: center; }
@media (min-width: 640px) { .hero-actions { flex-direction: row; gap: 1rem; } }

/* ---------------------------------------------------------------------
   GenAI notice
   --------------------------------------------------------------------- */
.genai-section { background: var(--color-background); border-top: 1px solid color-mix(in srgb, var(--color-primary) 20%, transparent); border-bottom: 1px solid color-mix(in srgb, var(--color-primary) 20%, transparent); }
.genai-inner { display: flex; align-items: flex-start; gap: 0.75rem; padding: 1rem 0; font-size: 13px; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); }
@media (min-width: 768px) { .genai-inner { align-items: center; padding: 1.25rem 0; font-size: 14px; } }
.genai-icon { display: inline-flex; align-items: center; justify-content: center; width: 1.75rem; height: 1.75rem; border-radius: 999px; background: color-mix(in srgb, var(--color-primary) 10%, transparent); color: var(--color-primary); flex-shrink: 0; }
.genai-inner p { line-height: 1.6; }

/* ---------------------------------------------------------------------
   Section shared typography
   --------------------------------------------------------------------- */
.eyebrow { font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--color-primary); margin-bottom: 1.25rem; font-weight: 500; }
.pull-quote {
	margin-top: 2rem; font-family: var(--font-display); font-style: italic; font-size: 1.25rem; line-height: 1.35;
	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) { .pull-quote { font-size: 1.5rem; } }
.prose { display: flex; flex-direction: column; gap: 1.25rem; font-size: 15px; line-height: 1.7; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); max-width: 65ch; }
@media (min-width: 768px) { .prose { font-size: 1rem; } }

/* ---------------------------------------------------------------------
   About
   --------------------------------------------------------------------- */
.about-section { background: var(--color-linen); padding: 6rem 0; }
@media (min-width: 768px) { .about-section { padding: 8rem 0; } }
.about-section .section-heading { font-size: 2.25rem; line-height: 1.05; color: var(--color-foreground); }
@media (min-width: 768px) { .about-section .section-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .about-section .section-heading { font-size: 3.4rem; } }
.about-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 5fr 7fr; gap: 4rem; } }
.about-col-right { min-width: 0; }
@media (min-width: 1024px) { .about-col-right { padding-left: 1.5rem; } }
.about-pillars { margin-top: 3rem; display: grid; grid-template-columns: repeat(auto-fill, minmax(0,1fr)); gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .about-pillars { grid-template-columns: repeat(3, minmax(0,1fr)); } }
.pillar-card { border-radius: 1rem; border: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); background: var(--color-ivory); padding: 1.5rem; }
.pillar-icon {
	display: inline-flex; align-items: center; justify-content: center; width: 2.5rem; height: 2.5rem; border-radius: 999px;
	background: color-mix(in srgb, var(--color-primary) 10%, transparent); color: var(--color-primary); margin-bottom: 1rem;
	border: 1px solid transparent; transition: transform .3s ease, border-color .3s ease;
}
.pillar-card:hover .pillar-icon {
	transform: rotate(20deg);
	border-color: color-mix(in srgb, var(--color-primary) 40%, transparent);
}
.pillar-icon svg { width: 1.25rem; height: 1.25rem; }
.pillar-title { font-family: var(--font-display); font-size: 1.125rem; color: var(--color-foreground); margin-bottom: 0.5rem; }
.pillar-body { font-size: 13px; line-height: 1.6; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); }

/* ---------------------------------------------------------------------
   Services / carousel
   --------------------------------------------------------------------- */
.services-section { background: var(--color-ivory); padding: 6rem 0; }
@media (min-width: 768px) { .services-section { padding: 8rem 0; } }
.services-intro { max-width: 48rem; margin: 0 auto 3.5rem; text-align: center; }
.services-section .section-heading { font-size: 2.25rem; line-height: 1.05; color: var(--color-foreground); }
@media (min-width: 768px) { .services-section .section-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .services-section .section-heading { font-size: 3.2rem; } }
.services-heading-em { font-style: italic; }
.services-subheading { margin-top: 1.25rem; font-size: 15px; line-height: 1.6; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); }
@media (min-width: 768px) { .services-subheading { font-size: 1rem; } }

.theme-carousel { display: flex; align-items: center; gap: 0.75rem; }
@media (min-width: 1024px) { .theme-carousel { gap: 1rem; } }
.carousel-arrow {
	display: none; flex-shrink: 0; width: 3rem; height: 3rem; align-items: center; justify-content: center;
	border-radius: 999px; border: 1px solid color-mix(in srgb, var(--color-foreground) 30%, transparent); color: var(--color-foreground);
	transition: border-color .2s ease;
}
.carousel-arrow:hover { border-color: var(--color-primary); }
@media (min-width: 1024px) { .carousel-arrow { display: flex; } }
.theme-carousel-viewport { flex: 1; min-width: 0; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; -ms-overflow-style: none; scrollbar-width: none; cursor: grab; }
.theme-carousel-viewport::-webkit-scrollbar { display: none; }
.theme-carousel-track { display: flex; margin-left: -1.25rem; padding: 0.25rem 0; }
@media (min-width: 768px) { .theme-carousel-track { margin-left: -1.5rem; } }
.theme-carousel-slide { flex: 0 0 82%; min-width: 0; scroll-snap-align: start; padding-left: 1.25rem; }
@media (min-width: 640px) { .theme-carousel-slide { flex: 0 0 60%; } }
@media (min-width: 768px) { .theme-carousel-slide { flex: 0 0 50%; padding-left: 1.5rem; } }
@media (min-width: 1024px) { .theme-carousel-slide { flex: 0 0 33.333%; } }
.offering-card { background: var(--color-linen); border: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); border-radius: 1rem; overflow: hidden; padding: 1.5rem; height: 100%; display: flex; flex-direction: column; transition: border-color .2s ease; }
@media (min-width: 768px) { .offering-card { padding: 1.75rem; } }
.offering-card:hover { border-color: color-mix(in srgb, var(--color-primary) 40%, transparent); }
.offering-icon { display: inline-flex; align-items: center; justify-content: center; width: 3rem; height: 3rem; border-radius: 999px; background: var(--color-primary); color: var(--color-primary-fg); margin-bottom: 1.25rem; }
.offering-icon svg { width: 1.25rem; height: 1.25rem; }
.offering-title { font-family: var(--font-display); font-size: 1.25rem; color: var(--color-foreground); margin-bottom: 0.75rem; line-height: 1.3; }
@media (min-width: 768px) { .offering-title { font-size: 1.5rem; } }
.offering-body { font-size: 13.5px; line-height: 1.6; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); }
.carousel-dots { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-top: 1.5rem; }
@media (min-width: 1024px) { .carousel-dots { display: none; } }
.carousel-dot { height: 0.5rem; width: 0.5rem; border-radius: 999px; background: color-mix(in srgb, var(--color-foreground) 25%, transparent); transition: all .2s ease; }
.carousel-dot.is-active { width: 1.5rem; background: var(--color-primary); }
.services-footer-note { margin-top: 3rem; text-align: center; font-family: var(--font-display); font-style: italic; font-size: 1.125rem; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); max-width: 42rem; margin-left: auto; margin-right: auto; }
@media (min-width: 768px) { .services-footer-note { font-size: 1.25rem; } }

/* ---------------------------------------------------------------------
   Marquee
   --------------------------------------------------------------------- */
.theme-marquee { background: var(--color-primary); padding: 1.25rem 0; overflow: hidden; }
.theme-marquee-track { display: flex; white-space: nowrap; animation: nc-marquee 22s linear infinite; width: max-content; }
.theme-marquee-item { display: flex; align-items: center; flex-shrink: 0; color: color-mix(in srgb, var(--color-primary-fg) 95%, transparent); font-family: var(--font-display); font-size: 1.125rem; letter-spacing: 0.02em; }
@media (min-width: 768px) { .theme-marquee-item { font-size: 1.25rem; } }
.theme-marquee-item { margin: 0 1.5rem; }
@media (min-width: 768px) { .theme-marquee-item { margin: 0 2rem; } }
.theme-marquee-dot { color: color-mix(in srgb, var(--color-primary-fg) 50%, transparent); font-size: 0.875rem; margin-left: 1.5rem; }
@media (min-width: 768px) { .theme-marquee-dot { margin-left: 2rem; } }

/* ---------------------------------------------------------------------
   Owner
   --------------------------------------------------------------------- */
.owner-section { background: var(--color-ivory); padding: 6rem 0; }
@media (min-width: 768px) { .owner-section { padding: 8rem 0; } }
.owner-section .section-heading { font-size: 2.25rem; line-height: 1.05; color: var(--color-foreground); }
@media (min-width: 768px) { .owner-section .section-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .owner-section .section-heading { font-size: 3.4rem; } }
.owner-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: stretch; }
@media (min-width: 1024px) { .owner-grid { grid-template-columns: 5fr 7fr; gap: 4rem; } }
.owner-photo-col { display: flex; min-width: 0; }
.owner-photo-frame { position: relative; width: 100%; min-height: 520px; aspect-ratio: 4/5; overflow: hidden; border-radius: 1rem; background: var(--color-secondary); box-shadow: var(--shadow-elevated); }
@media (min-width: 1024px) { .owner-photo-frame { min-height: 0; aspect-ratio: auto; height: 100%; } }
.owner-photo { position: absolute; inset: 0; animation: nc-float 4s ease-in-out infinite; }
.owner-badge { position: absolute; top: 1rem; left: 1rem; display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.25rem 0.75rem; border-radius: 999px; background: var(--color-primary); color: var(--color-primary-fg); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500; }
.owner-badge-dot { width: 0.375rem; height: 0.375rem; border-radius: 999px; background: #fff; }
.owner-name-tag { position: absolute; bottom: 1rem; right: 1rem; display: inline-flex; align-items: center; padding: 0.375rem 0.75rem; border-radius: 999px; background: color-mix(in srgb, var(--color-ivory) 90%, transparent); backdrop-filter: blur(4px); color: var(--color-foreground); font-size: 11px; font-weight: 500; box-shadow: var(--shadow-soft); }
.owner-content-col { min-width: 0; }
@media (min-width: 1024px) { .owner-content-col { padding-left: 1.5rem; } }
.owner-cta { margin-top: 2.5rem; display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem; }
.owner-stats { margin-top: 2.5rem; display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1.5rem; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent); padding-top: 2rem; }
.owner-stat { display: flex; flex-direction: column; }
.owner-stat-icon { display: inline-flex; align-items: center; justify-content: center; width: 2.25rem; height: 2.25rem; border-radius: 999px; background: color-mix(in srgb, var(--color-accent) 20%, transparent); color: var(--color-accent); margin-bottom: 0.75rem; }
.owner-stat-icon svg { width: 1rem; height: 1rem; }
.owner-stat-value { font-family: var(--font-display); font-size: 1.25rem; color: var(--color-primary); }
@media (min-width: 768px) { .owner-stat-value { font-size: 1.5rem; } }
.owner-stat-label { margin-top: 0.25rem; font-size: 12px; text-transform: uppercase; letter-spacing: 0.18em; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }

/* ---------------------------------------------------------------------
   Shop
   --------------------------------------------------------------------- */
.shop-section { background: var(--color-ivory); padding: 6rem 0; }
@media (min-width: 768px) { .shop-section { padding: 8rem 0; } }
.shop-header { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2.5rem; }
@media (min-width: 1024px) { .shop-header { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.shop-header-text { max-width: 42rem; }
.shop-heading { font-size: 2.25rem; line-height: 1.05; color: var(--color-foreground); }
@media (min-width: 768px) { .shop-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .shop-heading { font-size: 3.2rem; } }
.shop-subheading { margin-top: 1.25rem; font-size: 14px; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); line-height: 1.6; max-width: 36rem; }
@media (min-width: 768px) { .shop-subheading { font-size: 15px; } }
.shop-search-wrap { position: relative; width: 100%; }
@media (min-width: 1024px) { .shop-search-wrap { width: 20rem; } }
.shop-search-icon { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: color-mix(in srgb, var(--color-foreground) 40%, transparent); }
.shop-search-input { 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); }
.shop-search-input::placeholder { color: color-mix(in srgb, var(--color-foreground) 45%, transparent); }
.shop-search-input:focus { outline: none; border-color: color-mix(in srgb, var(--color-primary) 60%, transparent); }

.shop-filters { display: flex; flex-wrap: wrap; gap: 0.625rem; margin-bottom: 2.5rem; }
.shop-filter-btn { 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) 15%, transparent); background: transparent; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); transition: all .2s ease; }
.shop-filter-btn:hover { border-color: var(--color-primary); color: var(--color-primary); }
.shop-filter-btn.is-active { background: var(--color-primary); color: var(--color-primary-fg); border-color: var(--color-primary); }
.shop-empty-message { text-align: center; padding: 5rem 0; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }

.theme-product-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem 1.5rem; }
@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)); } }
.shop-view-more-wrap { margin-top: 3rem; display: flex; justify-content: center; }

/* Product cards (shared across shop, archive, related — Section 31.13) */
.theme-product-card-wrap { min-width: 0; }
.theme-product-card { display: flex; flex-direction: column; height: 100%; }
.theme-product-card__image-wrapper { position: relative; aspect-ratio: 1/1; background: var(--color-linen); border-radius: 0.75rem; overflow: hidden; margin-bottom: 1rem; }
.theme-product-card__image-wrapper > .theme-card-link { position: absolute; inset: 0; z-index: 0; }
.theme-product-card-img { position: absolute; inset: 0; opacity: 0; transition: opacity .3s ease, transform 1.4s cubic-bezier(.22,.61,.36,1); pointer-events: none; }
.theme-product-card-img.is-active { opacity: 1; z-index: 1; }
.theme-product-card:hover .theme-product-card-img.is-active { transform: scale(1.04); }
.theme-product-card__scrim { position: absolute; inset: 0; background: linear-gradient(to top, color-mix(in srgb, var(--color-foreground) 35%, transparent), transparent 60%); opacity: 0; transition: opacity .5s ease; pointer-events: none; z-index: 2; }
.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-card-nav {
	position: absolute; top: 50%; transform: translateY(-50%); z-index: 20; width: 2rem; height: 2rem; border-radius: 999px;
	background: color-mix(in srgb, var(--color-background) 85%, transparent); backdrop-filter: blur(6px);
	display: inline-flex; align-items: center; justify-content: center; color: var(--color-foreground);
	opacity: 0; transition: all .3s ease; pointer-events: auto;
}
.theme-product-card:hover .theme-card-nav { opacity: 1; }
.theme-card-nav:hover { background: var(--color-primary); color: var(--color-primary-fg); }
.theme-card-nav--prev { left: 0.5rem; }
.theme-card-nav--next { right: 0.5rem; }
.theme-card-dots { position: absolute; top: 0.75rem; right: 0.75rem; z-index: 3; display: flex; gap: 0.25rem; pointer-events: none; }
.theme-card-dot { height: 0.25rem; width: 0.25rem; border-radius: 999px; background: color-mix(in srgb, var(--color-background) 60%, transparent); transition: all .2s ease; }
.theme-card-dot.is-active { width: 1rem; background: var(--color-background); }
.theme-product-card__quick-view-row { position: absolute; inset: auto 0.75rem 0.75rem auto; z-index: 20; opacity: 0; transition: opacity .5s ease; pointer-events: none; }
.theme-product-card:hover .theme-product-card__quick-view-row { opacity: 1; }
.theme-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);
	transition: all .3s ease; pointer-events: auto;
}
.theme-card-quick-view:hover { background: var(--color-primary); color: var(--color-primary-fg); }
.theme-product-card__meta-link { display: block; padding: 0 0.125rem; }
.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.35; color: var(--color-foreground); transition: color .3s ease; }
@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 .amount { font-weight: 500; }
.theme-product-card__price del { opacity: .5; margin-right: .25rem; }

.theme-archive-main .container-wide,
.theme-archive-shell { padding-top: var(--header-height); padding-bottom: 6rem; }
.theme-archive-pagination { margin-top: 3rem; text-align: center; }

/* ---------------------------------------------------------------------
   Streams
   --------------------------------------------------------------------- */
.streams-section { background: var(--color-linen); padding: 6rem 0; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); }
@media (min-width: 768px) { .streams-section { padding: 8rem 0; } }
.streams-inner { max-width: 48rem; text-align: center; margin: 0 auto; }
.streams-section .section-heading { font-size: 2.25rem; line-height: 1.05; color: var(--color-foreground); margin-bottom: 1.5rem; }
@media (min-width: 768px) { .streams-section .section-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .streams-section .section-heading { font-size: 3.2rem; } }
.streams-body { font-size: 15px; line-height: 1.6; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); margin-bottom: 2rem; }
@media (min-width: 768px) { .streams-body { font-size: 1rem; } }
.streams-embed {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	margin-top: 2rem;
	border-radius: 0.75rem;
	overflow: hidden;
	background: var(--color-bone);
	box-shadow: 0 20px 50px color-mix(in srgb, var(--color-foreground) 12%, transparent);
}
.streams-embed iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}
.streams-placeholder { margin-top: 0; }
.streams-note { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 13px; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.streams-social { margin-top: 2rem; display: flex; justify-content: center; gap: 0.75rem; color: color-mix(in srgb, var(--color-foreground) 45%, transparent); }

/* ---------------------------------------------------------------------
   FAQ
   --------------------------------------------------------------------- */
.faq-section { background: var(--color-linen); border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); padding: 6rem 0; }
@media (min-width: 768px) { .faq-section { padding: 8rem 0; } }
.faq-outer-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .faq-outer-grid { grid-template-columns: 4fr 8fr; } }
.faq-side .section-heading { font-size: 2.25rem; line-height: 1.05; color: var(--color-foreground); }
@media (min-width: 768px) { .faq-side .section-heading { font-size: 3rem; } }
.faq-subheading { margin-top: 1.5rem; font-size: 14px; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); line-height: 1.6; max-width: 24rem; }
@media (min-width: 768px) { .faq-subheading { font-size: 15px; } }
.faq-card { display: none; margin-top: 2.5rem; position: relative; overflow: hidden; border-radius: 1rem; border: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); background: var(--color-ivory); padding: 1.75rem; }
@media (min-width: 1024px) { .faq-card { display: block; } }
.faq-card-icon { display: inline-flex; align-items: center; justify-content: center; width: 2.75rem; height: 2.75rem; border-radius: 999px; background: var(--color-primary); color: var(--color-primary-fg); margin-bottom: 1.25rem; }
.faq-card-heading { font-family: var(--font-display); font-size: 1.5rem; color: var(--color-foreground); line-height: 1.3; margin-bottom: 0.5rem; }
.faq-card-body { font-size: 14px; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); line-height: 1.6; margin-bottom: 1.5rem; }
.faq-item { border-bottom: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.25rem 0; text-align: left; }
.faq-question span:first-child { font-family: var(--font-display); font-size: 1.125rem; color: var(--color-foreground); line-height: 1.35; }
@media (min-width: 768px) { .faq-question span:first-child { font-size: 1.25rem; } }
.faq-icon { flex-shrink: 0; color: var(--color-primary); display: inline-flex; }
.faq-icon .icon-minus { display: none; }
.faq-item.is-open .faq-icon .icon-plus { display: none; }
.faq-item.is-open .faq-icon .icon-minus { display: block; }
.faq-answer-wrap { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease-out; }
.faq-item.is-open .faq-answer-wrap { grid-template-rows: 1fr; }
.faq-answer-inner { overflow: hidden; }
.faq-answer { padding: 0 2rem 1.5rem 0; font-size: 14px; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); line-height: 1.6; max-width: 42rem; }
@media (min-width: 768px) { .faq-answer { font-size: 15px; } }

/* ---------------------------------------------------------------------
   Pre-contact CTA
   --------------------------------------------------------------------- */
.precta-section { position: relative; overflow: hidden; background: var(--color-background); }
.precta-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.precta-scrim-gradient {
	position: absolute; inset: 0; pointer-events: none;
	background-image:
		radial-gradient(at 20% 20%, color-mix(in srgb, var(--color-accent) 55%, transparent) 0%, transparent 55%),
		radial-gradient(at 80% 80%, color-mix(in srgb, var(--color-primary) 45%, transparent) 0%, transparent 55%),
		linear-gradient(180deg, color-mix(in srgb, var(--color-background) 65%, transparent) 0%, color-mix(in srgb, var(--color-background) 90%, transparent) 100%);
}
.precta-scrim-flat { position: absolute; inset: 0; background: color-mix(in srgb, var(--color-background) 40%, transparent); pointer-events: none; }
.precta-content { position: relative; z-index: 10; padding: 7rem 0; text-align: center; color: #fff; }
@media (min-width: 768px) { .precta-content { padding: 10rem 0; } }
.precta-eyebrow { display: inline-flex; align-items: center; justify-content: center; gap: 0.75rem; font-size: 12px; letter-spacing: 0.38em; text-transform: uppercase; color: rgba(255,255,255,0.85); margin-bottom: 1.5rem; font-weight: 500; }
.precta-rule { height: 1px; width: 2rem; background: rgba(255,255,255,0.6); }
.precta-title { color: #fff; line-height: 1.05; letter-spacing: -0.02em; max-width: 56rem; margin: 0 auto; filter: drop-shadow(0 2px 30px rgba(0,0,0,0.55)); font-size: clamp(2rem, 5.4vw, 4rem); }
.precta-title em { font-style: italic; }
.precta-subtitle { margin-top: 1.75rem; max-width: 36rem; margin-left: auto; margin-right: auto; font-size: 15px; color: rgba(255,255,255,0.85); line-height: 1.6; }
.precta-actions { margin-top: 2.5rem; }

/* ---------------------------------------------------------------------
   Contact
   --------------------------------------------------------------------- */
.contact-section { background: var(--color-linen); padding: 6rem 0 3rem; }
@media (min-width: 768px) { .contact-section { padding: 8rem 0 4rem; } }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: stretch; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.contact-info-col { display: flex; flex-direction: column; height: 100%; }
.contact-section .section-heading { font-size: 2.25rem; line-height: 1.05; color: var(--color-foreground); }
@media (min-width: 768px) { .contact-section .section-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .contact-section .section-heading { font-size: 3.4rem; } }
.contact-subheading { margin-top: 1.5rem; font-size: 15px; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); line-height: 1.6; max-width: 28rem; }
.contact-methods { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.contact-method { display: inline-flex; align-items: center; gap: 1rem; color: var(--color-foreground); transition: color .2s ease; }
.contact-method:hover { color: var(--color-primary); }
.contact-method-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 .2s ease; }
.contact-method:hover .contact-method-icon { border-color: var(--color-primary); }
.contact-method-text { display: flex; flex-direction: column; text-align: left; }
.contact-method-label { font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.contact-method-value { font-size: 15px; font-weight: 500; word-break: break-all; }
.contact-quote-card { margin-top: auto; padding-top: 2.5rem; }
.contact-quote-card { position: relative; border-radius: 1rem; border: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); background: color-mix(in srgb, var(--color-ivory) 70%, transparent); padding: 1.5rem; }
@media (min-width: 768px) { .contact-quote-card { padding: 1.75rem; } }
.contact-quote-badge { position: absolute; top: -0.75rem; left: 1.5rem; display: inline-flex; align-items: center; gap: 0.375rem; padding: 0.25rem 0.75rem; border-radius: 999px; background: var(--color-primary); color: var(--color-primary-fg); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500; }
.contact-quote { font-family: var(--font-display); font-style: italic; color: color-mix(in srgb, var(--color-foreground) 85%, transparent); font-size: 1.125rem; line-height: 1.35; border-left: 2px solid color-mix(in srgb, var(--color-primary) 70%, transparent); padding-left: 1.25rem; }
@media (min-width: 768px) { .contact-quote { font-size: 1.25rem; } }
.contact-quote-note { margin-top: 0.75rem; padding-left: 1.25rem; font-size: 13px; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); letter-spacing: 0.02em; }

.contact-form { background: var(--color-ivory); border: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); border-radius: 1rem; padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; height: 100%; box-shadow: var(--shadow-soft); }
@media (min-width: 768px) { .contact-form { padding: 2rem; } }
.contact-form-fields { flex: 1; display: flex; flex-direction: column; gap: 1rem; }
.form-row-2 { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .form-row-2 { grid-template-columns: 1fr 1fr; } }
.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-input {
	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: calc(var(--radius) - 2px); font-size: 14px; color: var(--color-foreground); font-family: var(--font-body); transition: border-color .2s ease;
}
.theme-input::placeholder { color: color-mix(in srgb, var(--color-foreground) 45%, transparent); }
.theme-input:focus { outline: none; border-color: var(--color-primary); }
.theme-textarea { height: auto; padding: 0.75rem 1rem; resize: none; }
.theme-select-wrap { position: relative; }
.theme-select { appearance: none; padding-right: 2.5rem; }
.theme-select-chevron { position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); pointer-events: none; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.contact-form-submit { padding-top: 0.5rem; }
.contact-submit-btn { width: 100%; }
.contact-form-success { margin-top: 0.75rem; text-align: center; font-size: 13px; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); }

/* ---------------------------------------------------------------------
   Footer
   --------------------------------------------------------------------- */
.site-footer { background: var(--color-linen); border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); }
.theme-footer-inner { padding: 3.5rem 0; }
@media (min-width: 768px) { .theme-footer-inner { padding: 5rem 0; } }
.theme-footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 640px) { .theme-footer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1024px) { .theme-footer-grid { grid-template-columns: repeat(6, minmax(0,1fr)); gap: 3rem; } }
.theme-footer-col--wide { grid-column: span 2 / span 2; }
@media (min-width: 1024px) { .theme-footer-col--wide { grid-column: span 2 / span 2; } }
.theme-footer-logo-img { height: 9rem !important; width: auto !important; }
.theme-footer-heading { font-family: var(--font-display); font-size: 1.125rem; color: var(--color-foreground); margin-bottom: 1rem; }
.theme-footer-list { display: flex; flex-direction: column; gap: 0.625rem; }
.theme-footer-link { font-size: 14px; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); transition: color .2s ease; }
.theme-footer-link:hover { color: var(--color-primary); }
.theme-footer-contact { gap: 0.75rem; }
.theme-footer-contact-link { display: inline-flex; align-items: flex-start; gap: 0.5rem; font-size: 14px; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); word-break: break-all; transition: color .2s ease; }
.theme-footer-contact-link:hover { color: var(--color-primary); }
.theme-footer-bottom { margin-top: 3.5rem; padding-top: 2rem; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); text-align: center; font-size: 12px; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }

/* ---------------------------------------------------------------------
   Promo banner
   --------------------------------------------------------------------- */
.theme-promo-banner {
	position: fixed; bottom: 1.5rem; left: 1rem; right: 1rem; z-index: 55; display: flex; align-items: flex-start; gap: 0.75rem;
	background: var(--color-foreground); color: var(--color-background); border-radius: 1rem; box-shadow: var(--shadow-elevated); padding: 1rem 1.25rem;
	opacity: 0; transform: translateY(8px); transition: opacity .3s ease, transform .3s ease;
}
.theme-promo-banner.is-visible { opacity: 1; transform: translateY(0); }
@media (min-width: 640px) { .theme-promo-banner { left: auto; right: 1.5rem; max-width: 26rem; } }
.theme-promo-text { font-size: 13px; line-height: 1.6; flex: 1; }
@media (min-width: 640px) { .theme-promo-text { font-size: 15px; } }
.theme-promo-badge { font-weight: 600; color: var(--color-background); background: color-mix(in srgb, var(--color-primary) 70%, transparent); padding: 0.125rem 0.375rem; border-radius: 4px; }
.theme-promo-dismiss { flex-shrink: 0; margin-top: 0.125rem; padding: 0.375rem; border-radius: 999px; transition: background-color .2s ease; }
.theme-promo-dismiss:hover { background: rgba(255,255,255,0.1); }

/* ---------------------------------------------------------------------
   Cart drawer & overlay
   --------------------------------------------------------------------- */
#theme-cart-overlay { position: fixed; inset: 0; background: color-mix(in srgb, var(--color-foreground) 30%, transparent); z-index: 50; opacity: 0; pointer-events: none; transition: opacity .3s ease; }
body.cart-open #theme-cart-overlay { opacity: 1; pointer-events: auto; }
#theme-cart-drawer {
	position: fixed; right: 0; top: 0; height: 100%; width: 100%; max-width: 28rem; background: var(--color-ivory); z-index: 51;
	box-shadow: var(--shadow-elevated); display: flex; flex-direction: column;
	opacity: 0; transform: translateY(20px); pointer-events: none;
}
body.cart-open #theme-cart-drawer {
	animation: nc-slide-in-bottom 0.7s ease-out both;
	pointer-events: auto;
}
#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-size: 1.5rem; color: var(--color-foreground); }
.theme-cart-close { padding: 0.375rem; border-radius: 999px; transition: background-color .2s ease; }
.theme-cart-close:hover { background: color-mix(in srgb, var(--color-foreground) 6%, transparent); }
.theme-cart-empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 1.5rem; text-align: center; }
.theme-cart-empty-icon { color: color-mix(in srgb, var(--color-foreground) 30%, transparent); margin-bottom: 1rem; }
.theme-cart-empty-text { color: color-mix(in srgb, var(--color-foreground) 65%, transparent); margin-bottom: 1.5rem; font-size: 14px; }
.theme-cart-items { flex: 1; overflow: auto; padding: 1.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.theme-cart-item { display: flex; gap: 1rem; }
.theme-cart-item-image { width: 5rem; height: 6rem; background: var(--color-bone); border-radius: 0.375rem; overflow: hidden; flex-shrink: 0; }
.theme-cart-item-info { flex: 1; min-width: 0; }
.theme-cart-item-title { font-size: 14px; font-weight: 500; display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; transition: color .2s ease; }
.theme-cart-item-title:hover { color: var(--color-primary); }
.theme-cart-item-variant { font-size: 12px; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); margin-top: 0.125rem; }
.theme-cart-item-price { font-size: 13px; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); margin-top: 0.125rem; }
.theme-cart-item-controls { display: flex; align-items: center; gap: 0.75rem; margin-top: 0.75rem; }
.theme-cart-qty-btn { padding: 0.25rem; border-radius: 4px; transition: background-color .2s ease; }
.theme-cart-qty-btn:hover { background: var(--color-bone); }
.theme-cart-qty-value { font-size: 13px; width: 1.5rem; text-align: center; }
.theme-cart-remove { margin-left: auto; font-size: 13px; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); transition: color .2s ease; }
.theme-cart-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-subtotal-row { display: flex; justify-content: space-between; font-size: 14px; }
.theme-cart-subtotal-row .theme-cart-subtotal-label { color: color-mix(in srgb, var(--color-foreground) 65%, transparent); }
.theme-cart-subtotal-row .theme-cart-subtotal-value { font-weight: 500; }
.theme-cart-fulfillment-note { font-size: 13px; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.theme-cart-checkout-btn { width: 100%; }
.theme-cart-empty-btn { width: 100%; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }

/* Hide WooCommerce "View cart" link 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; }

/* Suppress WooCommerce's own loading spinner in favor of the theme's state */
.single-product .single_add_to_cart_button.loading::after,
.ajax_add_to_cart.loading::after { display: none !important; }

/* Add-to-cart button style override (Section 11.4.1) */
.single_add_to_cart_button.button,
.add_to_cart_button.button,
a.single_add_to_cart_button,
a.add_to_cart_button,
button.single_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;
}
.single_add_to_cart_button.button:hover,
.add_to_cart_button.button:hover {
	opacity: 0.85 !important;
	background-color: var(--color-primary) !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,
.add_to_cart_button.button:disabled:hover,
.add_to_cart_button.button.disabled:hover {
	opacity: 0.4 !important;
	background-color: var(--color-primary) !important;
}
.theme-btn-loading { opacity: .6 !important; pointer-events: none !important; cursor: wait !important; }

/* ---------------------------------------------------------------------
   Single product page
   --------------------------------------------------------------------- */
.theme-product-page { padding-top: 6rem; padding-bottom: 5rem; background: var(--color-ivory); min-height: 100vh; }
@media (min-width: 1024px) { .theme-product-page { padding-top: 7rem; } }
.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: .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: start; min-width: 0; }
@media (min-width: 1024px) { .theme-product-layout { grid-template-columns: 7fr 5fr; gap: 4rem; } }
.theme-product-gallery, .theme-product-info { min-width: 0; max-width: 100%; }
@media (min-width: 1024px) { .theme-product-gallery { position: sticky; top: 7rem; } }
.theme-product-main-image { position: relative; aspect-ratio: 1/1; width: 100%; background: var(--color-linen); border-radius: 0.75rem; overflow: hidden; margin-bottom: 1rem; }
.theme-product-thumbnails { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 0.625rem; flex-wrap: wrap; max-width: 100%; }
.theme-product-thumb { aspect-ratio: 1/1; background: var(--color-linen); border-radius: 0.375rem; overflow: hidden; border: 2px solid transparent; transition: border-color .2s ease; }
.theme-product-thumb:hover { border-color: color-mix(in srgb, var(--color-foreground) 20%, transparent); }
.theme-product-thumb.is-active { border-color: var(--color-primary); }

.theme-product-cat { font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--color-primary); margin-bottom: 0.75rem; font-weight: 500; }
.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; }
@media (min-width: 768px) { .product-title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .product-title { font-size: 2.6rem; } }
.theme-product-price-badge { 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-description { font-size: 15px; line-height: 1.6; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); margin-bottom: 2rem; overflow-wrap: break-word; word-break: break-word; }
.theme-stock-indicator--out { display: inline-block; margin-bottom: 1.5rem; padding: 0.375rem 0.875rem; border-radius: 999px; background: color-mix(in srgb, var(--color-destructive) 15%, transparent); color: var(--color-destructive); font-size: 13px; font-weight: 500; }
.theme-product-info-note { border-radius: 0.75rem; 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: 1.5rem; }
.theme-product-info-note a { color: var(--color-primary); text-decoration: underline; text-underline-offset: 4px; }
.theme-product-info-note a:hover { opacity: .8; }

.theme-product-options { margin-top: 1rem; }
.theme-option-group { margin-bottom: 1rem; }
.theme-option-label { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); margin-bottom: 0.625rem; }
.theme-option-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.theme-option-pill { padding: 0 1rem; height: 2.5rem; border-radius: 999px; font-size: 13px; font-weight: 500; border: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent); background: transparent; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); transition: all .2s ease; }
.theme-option-pill:hover { border-color: var(--color-primary); color: var(--color-primary); }
.theme-option-pill.is-active { background: var(--color-primary); color: var(--color-primary-fg); border-color: var(--color-primary); }
.theme-option-pill.is-disabled,
.theme-option-pill:disabled { opacity: 0.35; cursor: not-allowed; pointer-events: none; }
.theme-variation-select-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.theme-variations-form .quantity { display: flex; align-items: center; margin-bottom: 0.75rem; }
.theme-simple-cart-form .quantity { display: flex; align-items: center; margin-bottom: 0.75rem; }
.theme-variations-form .woocommerce-variation-add-to-cart.disabled .single_add_to_cart_button,
.theme-variations-form .woocommerce-variation-add-to-cart.disabled .theme-variation-buy-now { opacity: 0.4; pointer-events: none; cursor: not-allowed; }
.theme-variations-form .quantity .qty { width: 4rem; height: 2.75rem; text-align: center; border-radius: 999px; border: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent); background: var(--color-linen); color: var(--color-foreground); font-size: 14px; font-weight: 500; }
.theme-variations-form .woocommerce-variation-price { margin-bottom: 1rem; font-size: 1.125rem; font-weight: 500; color: var(--color-foreground); }
form.variations_form table.variations { display: none !important; }
form.variations_form .reset_variations { display: none !important; }

.theme-add-to-cart-area { display: flex; align-items: stretch; flex-wrap: wrap; gap: 0.75rem; padding-top: 0.5rem; }
.theme-add-to-cart-area .single_add_to_cart_button { flex: 1 1 auto; min-width: 160px; }
.theme-buy-now-btn { flex: 1 1 auto; min-width: 160px; }

.theme-product-details { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); }
.theme-product-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-details-list { display: flex; flex-direction: column; gap: 0.625rem; }
.theme-details-list li { font-size: 14px; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); display: flex; align-items: flex-start; overflow-wrap: break-word; word-break: break-word; }
.theme-details-dot { width: 0.25rem; height: 0.25rem; background: var(--color-primary); border-radius: 999px; margin-top: 0.625rem; margin-right: 0.75rem; flex-shrink: 0; }

.theme-product-features { margin-top: 2rem; display: grid; grid-template-columns: repeat(3, minmax(0,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; }
.theme-related-eyebrow { font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--color-primary); margin-bottom: 1rem; font-weight: 500; }
.theme-related-heading { font-size: 1.875rem; color: var(--color-foreground); margin-bottom: 2.5rem; }
@media (min-width: 768px) { .theme-related-heading { font-size: 2.25rem; } }
.theme-related-grid { grid-template-columns: 1fr; }
@media (min-width: 640px) { .theme-related-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1024px) { .theme-related-grid { grid-template-columns: repeat(4, minmax(0,1fr)); } }

/* Global cover-image exclusion list (Section 15.1) */
img:not(.cover-img):not(.hero-bg-img):not(.theme-product-card-img):not(.owner-photo) {
	max-width: 100%;
	height: auto;
}

/* ---------------------------------------------------------------------
   WooCommerce notices (Section 14.1)
   --------------------------------------------------------------------- */
.woocommerce-message, .woocommerce-info {
	border-radius: calc(var(--radius) - 2px);
	border: 1px solid color-mix(in srgb, var(--color-primary) 30%, transparent);
	background: color-mix(in srgb, var(--color-primary) 8%, var(--color-ivory));
	color: var(--color-foreground);
	padding: 1rem 1.25rem;
	font-size: 14px;
	margin: 0 0 1.5rem;
	list-style: none;
}
.woocommerce-error {
	border-radius: calc(var(--radius) - 2px);
	border: 1px solid color-mix(in srgb, var(--color-destructive) 40%, transparent);
	background: color-mix(in srgb, var(--color-destructive) 8%, var(--color-ivory));
	color: var(--color-foreground);
	padding: 1rem 1.25rem;
	font-size: 14px;
	margin: 0 0 1.5rem;
}

/* ---------------------------------------------------------------------
   Generic page shell / 404
   --------------------------------------------------------------------- */
.theme-generic-main, .theme-page-shell { padding-top: var(--header-height); padding-bottom: 6rem; min-height: 60vh; }
.page-title { font-size: 2.25rem; margin-bottom: 1.5rem; color: var(--color-foreground); }

.theme-404-main { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--color-muted); }
.theme-404-inner { text-align: center; }
.theme-404-title { font-size: 2.25rem; font-weight: 700; margin-bottom: 1rem; color: var(--color-foreground); }
.theme-404-body { font-size: 1.25rem; color: var(--color-muted-foreground); margin-bottom: 1rem; }
.theme-404-link { color: var(--color-primary); text-decoration: underline; transition: color .2s ease; }
.theme-404-link:hover { color: color-mix(in srgb, var(--color-primary) 90%, transparent); }

/* ==========================================================================
   Checkout Block, Cart, My Account, Thank-you (Section 13, 13.7, 22.8)
   ========================================================================== */
body.woocommerce-checkout {
	background: var(--color-ivory);
}

/* Single top offset — avoid stacking .theme-generic-main + .theme-page-shell padding */
body.woocommerce-checkout .site-main.theme-generic-main,
body.woocommerce-checkout.theme-no-hero .site-main,
body.woocommerce-checkout.theme-no-hero main {
	padding-top: 6rem !important;
	padding-bottom: 4rem;
}
@media (min-width: 1024px) {
	body.woocommerce-checkout .site-main.theme-generic-main,
	body.woocommerce-checkout.theme-no-hero .site-main,
	body.woocommerce-checkout.theme-no-hero main {
		padding-top: 7rem !important;
	}
}
body.woocommerce-checkout .theme-page-shell {
	padding-top: 0 !important;
	min-height: 0;
}

body.woocommerce-checkout .page-title {
	font-family: var(--font-display);
	font-size: 2.25rem;
	line-height: 1.05;
	margin: 0 0 2rem;
	color: var(--color-foreground);
}
@media (min-width: 768px) {
	body.woocommerce-checkout .page-title {
		font-size: 3rem;
		margin-bottom: 2.5rem;
	}
}

body.woocommerce-cart .site-main,
body.woocommerce-account .site-main {
	padding-top: var(--header-height);
	padding-bottom: 4rem;
}
body.woocommerce-checkout .entry-content,
body.woocommerce-cart .entry-content,
body.woocommerce-account .entry-content { width: 100%; }

/* Flat 2-column checkout layout — one grid only, equal-width columns */
body.woocommerce-checkout .wp-block-woocommerce-checkout,
body.woocommerce-checkout .wc-block-checkout {
	display: block !important;
	width: 100% !important;
	max-width: none !important;
}

body.woocommerce-checkout .wc-block-components-sidebar-layout {
	display: block !important;
	width: 100% !important;
	max-width: none !important;
}

@media (min-width: 1024px) {
	body.woocommerce-checkout .wc-block-components-sidebar-layout {
		display: grid !important;
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
		gap: 2.5rem !important;
		align-items: start !important;
	}

	body.woocommerce-checkout .wc-block-checkout .wc-block-components-notice-banner {
		grid-column: 1 / -1;
	}
}

body.woocommerce-checkout .wc-block-checkout__main,
body.woocommerce-checkout .wc-block-checkout__sidebar {
	display: block !important;
	width: 100% !important;
	max-width: none !important;
	min-width: 0 !important;
	grid-column: auto !important;
}

/* Checkout inputs — match Lovable (.theme-input); keep WC default padding */
body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-components-text-input textarea,
body.woocommerce-checkout .wc-block-components-textarea textarea,
body.woocommerce-checkout .wc-block-components-select select,
body.woocommerce-checkout .wc-block-components-combobox .wc-block-components-combobox-control input,
body.woocommerce-checkout .wc-block-components-combobox-control input,
body.woocommerce-checkout .wc-block-components-phone-number input,
body.woocommerce-checkout .wc-block-components-address-form input,
body.woocommerce-checkout .wc-block-components-address-form select,
body.woocommerce-checkout .wc-block-components-address-form textarea {
	width: 100% !important;
	max-width: none !important;
	height: 3rem !important;
	min-height: 3rem !important;
	background: var(--color-ivory) !important;
	border: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent) !important;
	border-radius: calc(var(--radius) - 2px) !important;
	font-size: 14px !important;
	font-family: var(--font-body) !important;
	font-weight: 400 !important;
	color: var(--color-foreground) !important;
	box-shadow: none !important;
	appearance: none !important;
	-webkit-appearance: none !important;
	transition: border-color .2s ease !important;
}

body.woocommerce-checkout .wc-block-components-text-input textarea,
body.woocommerce-checkout .wc-block-components-textarea textarea,
body.woocommerce-checkout .wc-block-components-address-form textarea {
	height: auto !important;
	min-height: 6.5rem !important;
	resize: none !important;
}

body.woocommerce-checkout .wc-block-components-select select,
body.woocommerce-checkout .wc-block-components-address-form select {
	background-image: linear-gradient(45deg, transparent 50%, color-mix(in srgb, var(--color-foreground) 55%, transparent) 50%), linear-gradient(135deg, color-mix(in srgb, var(--color-foreground) 55%, transparent) 50%, transparent 50%) !important;
	background-position: calc(100% - 18px) calc(50% + 2px), calc(100% - 13px) calc(50% + 2px) !important;
	background-size: 5px 5px, 5px 5px !important;
	background-repeat: no-repeat !important;
}

body.woocommerce-checkout .wc-block-components-text-input input::placeholder,
body.woocommerce-checkout .wc-block-components-text-input textarea::placeholder,
body.woocommerce-checkout .wc-block-components-textarea textarea::placeholder,
body.woocommerce-checkout .wc-block-components-address-form input::placeholder,
body.woocommerce-checkout .wc-block-components-address-form textarea::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-text-input textarea:focus,
body.woocommerce-checkout .wc-block-components-textarea textarea:focus,
body.woocommerce-checkout .wc-block-components-select select:focus,
body.woocommerce-checkout .wc-block-components-combobox .wc-block-components-combobox-control input:focus,
body.woocommerce-checkout .wc-block-components-combobox-control input:focus,
body.woocommerce-checkout .wc-block-components-phone-number input:focus,
body.woocommerce-checkout .wc-block-components-address-form input:focus,
body.woocommerce-checkout .wc-block-components-address-form select:focus,
body.woocommerce-checkout .wc-block-components-address-form textarea:focus {
	outline: none !important;
	border-color: var(--color-primary) !important;
	box-shadow: none !important;
}

body.woocommerce-checkout .wc-block-components-checkout-place-order-button {
	background: var(--color-primary) !important;
	color: var(--color-primary-fg) !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 { opacity: .9; }

body.woocommerce-checkout .wc-block-checkout__sidebar {
	background-color: var(--color-linen) !important;
	border: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent) !important;
	border-radius: 1rem !important;
	padding: 1.5rem !important;
}
@media (min-width: 1024px) {
	body.woocommerce-checkout .wc-block-checkout__sidebar {
		padding: 1.75rem !important;
		position: sticky;
		top: 7rem;
	}
}

body.woocommerce-checkout .wc-block-components-notice-banner {
	border-radius: calc(var(--radius) - 2px);
}

body.theme-thankyou-page .woocommerce-order,
body.theme-thankyou-page .woocommerce-order-overview,
body.theme-thankyou-page .woocommerce-order-details,
body.theme-thankyou-page .woocommerce-customer-details {
	font-family: var(--font-body);
	color: var(--color-foreground);
}
body.theme-thankyou-page { overflow-x: hidden; }
body.theme-thankyou-page .woocommerce-order-overview {
	display: flex; flex-wrap: wrap; gap: 1.5rem; list-style: none; padding: 0; margin: 0 0 2rem;
}
body.theme-thankyou-page .woocommerce-order-overview li {
	border-right: none; padding: 0; font-size: 14px;
}
body.theme-thankyou-page .woocommerce-order-details table { width: 100%; table-layout: fixed; border-collapse: collapse; }
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-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-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;
}
