/* =============================================================
   Ginger's Crochet — theme.css
   Author: The Free Website Guys
   ============================================================= */

/* -------------------------------------------------------------
   0. ROOT TOKENS (fallback values; PHP emits the live Customizer
   values as inline :root — Section 6.1 / 22.9)
   ------------------------------------------------------------- */
:root {
	--color-background: #f7f0e9;
	--color-foreground: #40291c;
	--color-primary: #4f3222;
	--color-primary-foreground: #f9f5f0;
	--color-linen: #f2e8de;
	--color-bone: #ebe0d6;
	--color-rose: #e6bcc3;
	--color-rose-foreground: #40291c;
	--color-navy: #344665;
	--color-navy-foreground: #f9f5f0;
	--color-flag-red: #bc2429;
	--color-flag-red-foreground: #ffffff;
	--logo-height: 44px;

	/* Derived / structural tokens (Section 6 — computed, not exposed) */
	--color-border: color-mix(in srgb, var(--color-foreground) 12%, transparent);
	--color-border-strong: color-mix(in srgb, var(--color-foreground) 20%, transparent);
	--radius: 0.625rem;
	--card-radius: 1rem;
	--shadow-soft: 0 4px 18px -8px rgba(64, 41, 28, 0.1);
	--shadow-elevated: 0 16px 48px -16px rgba(64, 41, 28, 0.22);

	--font-display: 'Instrument Serif', system-ui, -apple-system, sans-serif;
	--font-body: 'Switzer', system-ui, -apple-system, sans-serif;

	--header-height: 64px;

	--gc-admin-bar-offset: 0px;

	--btn-radius: 9999px;
	--btn-height: 44px;
	--btn-padding: 0 1.5rem;
	--btn-font-size: 14px;
	--btn-font-weight: 500;
	--btn-letter-spacing: normal;
	--btn-text-transform: none;
	--btn-icon-padding: 0;
	--checkout-gap: 1.5rem;
	--checkout-max-width: 80rem;
}

/* -------------------------------------------------------------
   1. RESET
   ------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { max-width: 100%; overflow-x: clip; }
body { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; background: none; border: none; padding: 0; color: inherit; }
a { color: inherit; text-decoration: none; }
input, textarea, select { font: inherit; color: inherit; }

/* Heading font-weight reset (Tailwind preflight parity — Section 2.2.4) */
h1, h2, h3, h4, h5, h6, .font-display {
	font-weight: inherit;
	font-size: inherit;
	margin: 0;
}

/* -------------------------------------------------------------
   2. GLOBAL IMAGE RULE — exclude cover images (Section 15)
   ------------------------------------------------------------- */
img:not(.cover-img) {
	max-width: 100%;
	height: auto;
}
.cover-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}
video.cover-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* -------------------------------------------------------------
   3. BASE TYPOGRAPHY
   ------------------------------------------------------------- */
body {
	background-color: var(--color-background);
	color: var(--color-foreground);
	font-family: var(--font-body);
	-webkit-font-smoothing: antialiased;
	font-feature-settings: 'ss01', 'cv11';
}
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	letter-spacing: -0.012em;
	font-weight: 400;
}
em { font-style: italic; }
section[id] { scroll-margin-top: var(--header-height); }

.container-wide {
	width: 100%;
	max-width: 80rem;
	margin-inline: auto;
	padding-inline: 1.25rem;
}
@media (min-width: 640px) { .container-wide { padding-inline: 1.5rem; } }
@media (min-width: 1024px) {
	:root { --header-height: 80px; }
}
@media (min-width: 1024px) { .container-wide { padding-inline: 2.5rem; } }

.theme-eyebrow {
	font-size: 12px;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: var(--color-flag-red);
	margin: 0 0 1rem;
	font-weight: 500;
}

/* -------------------------------------------------------------
   4. BUTTONS
   ------------------------------------------------------------- */
.theme-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);
	letter-spacing: var(--btn-letter-spacing);
	text-transform: var(--btn-text-transform);
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
	border: 1px solid transparent;
	height: 44px;
	padding: 0 1.5rem;
	font-family: var(--font-body);
}
.theme-btn-lg { height: 48px; padding: 0 1.75rem; }
.theme-btn-sm { height: 36px; padding: 0 1rem; }
.theme-btn-full { width: 100%; }
.theme-btn-primary {
	background-color: var(--color-primary);
	color: var(--color-primary-foreground);
	border-color: var(--color-primary);
}
.theme-btn-primary:hover { background-color: color-mix(in srgb, var(--color-primary) 90%, black); }
.theme-btn-outline {
	background-color: transparent;
	color: var(--color-foreground);
	border-color: color-mix(in srgb, var(--color-foreground) 25%, transparent);
}
.theme-btn-outline:hover { border-color: var(--color-foreground); background-color: color-mix(in srgb, var(--color-foreground) 4%, transparent); }
.theme-btn-ghost { background-color: transparent; border-color: transparent; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }
.theme-btn-ghost:hover { background-color: color-mix(in srgb, var(--color-foreground) 5%, transparent); }
.theme-btn-rose { background-color: var(--color-rose); color: var(--color-rose-foreground); border-color: var(--color-rose); }
.theme-btn-rose:hover { background-color: color-mix(in srgb, var(--color-rose) 90%, black); }
.theme-btn-glass { background-color: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.4); backdrop-filter: blur(12px); }
.theme-btn-glass:hover { background-color: rgba(255,255,255,0.2); }
.theme-btn svg { pointer-events: none; flex-shrink: 0; }

/* =============================================================
   HEADER
   ============================================================= */
.site-header {
	position: fixed;
	inset-inline: 0;
	top: var(--gc-admin-bar-offset);
	z-index: 50;
	transition: background-color 0.5s ease, border-color 0.5s ease, top 0.2s ease;
	background-color: transparent;
	border-bottom: 1px solid transparent;
}
.site-header.is-solid {
	background-color: color-mix(in srgb, var(--color-background) 85%, transparent);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-bottom-color: color-mix(in srgb, var(--color-foreground) 10%, transparent);
}
.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 64px;
}
@media (min-width: 1024px) {
	.site-header__inner {
		height: 80px;
		display: grid;
		grid-template-columns: 1fr auto 1fr;
	}
}
.site-header__menu-toggle .icon-menu,
.site-header__menu-toggle .icon-close {
	transition: opacity 0.25s ease, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.site-header.menu-open .site-header__menu-toggle .icon-menu {
	opacity: 0;
	transform: rotate(-90deg) scale(0.85);
}
.site-header.menu-open .site-header__menu-toggle .icon-close {
	opacity: 1;
	transform: rotate(0deg) scale(1);
}
.site-header:not(.menu-open) .site-header__menu-toggle .icon-close {
	opacity: 0;
	transform: rotate(90deg) scale(0.85);
}
.site-header__menu-icon {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
}
.site-header__menu-toggle .icon-close {
	position: absolute;
	inset: 0;
}
.site-header__menu-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 9999px;
	color: #fff;
	order: 1;
	transition: background-color 0.3s, color 0.3s;
}
.site-header:not(.is-solid) .site-header__menu-toggle { color: #fff; }
.site-header.is-solid .site-header__menu-toggle,
.site-header.menu-open .site-header__menu-toggle { color: var(--color-foreground); }
.site-header:not(.is-solid) .site-header__menu-toggle:hover,
.site-header:not(.is-solid) .site-header__cart-btn:hover { background-color: rgba(255, 255, 255, 0.1); }
.site-header.is-solid .site-header__menu-toggle:hover,
.site-header.is-solid .site-header__cart-btn:hover { background-color: color-mix(in srgb, var(--color-foreground) 6%, transparent); }
@media (min-width: 1024px) { .site-header__menu-toggle { display: none; } }

.site-header__brand { display: flex; align-items: center; flex-shrink: 0; order: 2; }
@media (min-width: 1024px) { .site-header__brand { order: 1; justify-self: start; } }
.site-header__brand .site-logo-img { height: var(--logo-height); width: auto; max-height: 120px; }
.site-header__brand .site-logo-text { font-family: var(--font-display); font-size: 1.5rem; color: #fff; }
.site-header.is-solid .site-header__brand .site-logo-text { color: var(--color-foreground); }

.site-header__nav { display: none; order: 3; }
@media (min-width: 1024px) {
	.site-header__nav { display: flex; justify-self: center; order: 2; }
}
.theme-nav-list { display: flex; align-items: center; gap: 1.75rem; }
.theme-nav-link {
	position: relative;
	font-size: 14px;
	font-weight: 500;
	transition: color 0.3s ease;
	color: rgba(255,255,255,0.85);
}
.site-header.is-solid .theme-nav-link { color: color-mix(in srgb, var(--color-foreground) 75%, transparent); }
.site-header__nav .theme-nav-link:hover { color: #fff; }
.site-header.is-solid .site-header__nav .theme-nav-link:hover { color: var(--color-primary); }
.theme-nav-link.is-active { color: #fff; }
.site-header.is-solid .site-header__nav .theme-nav-link.is-active { color: var(--color-primary); }

.site-header__actions { display: flex; align-items: center; gap: 0.5rem; justify-self: end; order: 3; }
.site-header__cart-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 9999px;
	color: #fff;
	transition: background-color 0.3s, color 0.3s;
}
.site-header:not(.is-solid) .site-header__cart-btn { color: #fff; }
.site-header.is-solid .site-header__cart-btn,
.site-header.menu-open .site-header__cart-btn { color: var(--color-foreground); }
.theme-cart-count {
	position: absolute;
	top: -2px;
	right: -2px;
	background-color: var(--color-flag-red);
	color: var(--color-flag-red-foreground);
	font-size: 12px;
	font-weight: 500;
	min-width: 18px;
	height: 18px;
	padding: 0 4px;
	border-radius: 9999px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.theme-cart-count:empty { display: none; }
body.is-customizer .theme-cart-count:empty { display: none; }

.site-header__mobile-panel {
	display: none;
	border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent);
	background-color: color-mix(in srgb, var(--color-background) 95%, transparent);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
}
.site-header.menu-open .site-header__mobile-panel {
	display: block;
	animation: gc-fade-in 0.7s ease-out both;
}
@media (min-width: 1024px) { .site-header__mobile-panel { display: none !important; } }

@media (max-width: 1023px) {
	.site-header__mobile-panel-inner {
		padding-block: 1rem;
	}
	.site-header__mobile-panel .theme-nav-list {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		flex-wrap: nowrap;
		gap: 0;
		width: 100%;
	}
	.site-header__mobile-panel .theme-nav-list > li {
		width: 100%;
	}
	.site-header__mobile-panel .theme-nav-list .theme-nav-link {
		display: block;
		width: 100%;
		padding-block: 0.75rem;
		border-bottom: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent);
		font-size: 14px;
		font-weight: 500;
		color: color-mix(in srgb, var(--color-foreground) 80%, transparent);
		text-align: left;
		transition: color 0.3s ease;
	}
	.site-header__mobile-panel .theme-nav-list .theme-nav-link:hover,
	.site-header__mobile-panel .theme-nav-list .theme-nav-link:focus {
		color: var(--color-primary);
	}
	.site-header__mobile-panel .theme-nav-list .theme-nav-link.is-active {
		color: color-mix(in srgb, var(--color-foreground) 80%, transparent);
	}
	.site-header__mobile-panel .theme-nav-list > li:last-child > .theme-nav-link {
		border-bottom: 0;
	}
	.site-header__mobile-panel .theme-nav-list .sub-menu {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		width: 100%;
		padding-left: 1rem;
	}
}

@keyframes gc-fade-in {
	from { opacity: 0; }
	to { opacity: 1; }
}

/* WordPress admin bar — keep header flush below the bar on all breakpoints */
body.admin-bar {
	--gc-admin-bar-offset: var(--wp-admin--admin-bar--height, 32px);
}
@media screen and (max-width: 782px) {
	body.admin-bar {
		--gc-admin-bar-offset: var(--wp-admin--admin-bar--height, 46px);
	}
}
@media screen and (max-width: 600px) {
	html #wpadminbar {
		position: fixed !important;
		top: 0 !important;
	}
}
body.admin-bar section[id] {
	scroll-margin-top: calc(var(--header-height) + var(--gc-admin-bar-offset));
}
@media (min-width: 1024px) {
	body.admin-bar .single-product .theme-product-gallery {
		top: calc(7rem + var(--gc-admin-bar-offset));
	}
}

.site-main { padding-top: calc(var(--header-height) + var(--gc-admin-bar-offset)); }
body.theme-no-hero .site-main { padding-top: calc(var(--header-height) + var(--gc-admin-bar-offset)); }
body.home .site-main, .hero-section { padding-top: 0; }

/* =============================================================
   HERO
   ============================================================= */
.hero-section {
	position: relative;
	min-height: 100vh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.hero-section__video { z-index: 0; }
.hero-section__scrim-radial {
	position: absolute; inset: 0; z-index: 1; pointer-events: none;
	background-image: radial-gradient(at center, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.7) 70%, rgba(0,0,0,0.82) 100%);
}
.hero-section__scrim-dark { position: absolute; inset: 0; z-index: 1; pointer-events: none; background-color: color-mix(in srgb, var(--color-foreground) 25%, transparent); }
.hero-section__content { position: relative; z-index: 2; text-align: center; color: #fff; padding-top: 10rem; padding-bottom: 6rem; }
@media (min-width: 1024px) { .hero-section__content { padding-top: 13rem; padding-bottom: 8rem; } }

.hero-section__badge-row { display: flex; justify-content: center; margin-bottom: 1.75rem; }
.hero-section__badge {
	display: inline-flex; align-items: center; gap: 0.5rem;
	padding: 0.375rem 1rem; border-radius: 9999px;
	background-color: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.3);
	backdrop-filter: blur(12px);
	font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500; color: #fff;
}
.hero-section__badge-icon { color: var(--color-rose); }

.hero-section__title {
	color: #fff;
	line-height: 1.05;
	letter-spacing: -0.02em;
	margin-inline: auto;
	max-width: 64rem;
	filter: drop-shadow(0 2px 30px rgba(0,0,0,0.55));
	font-size: clamp(2rem, 5.4vw, 4.2rem);
}
.hero-section__title em { color: var(--color-rose); font-style: italic; }
.hero-section__title-break { display: none; }
@media (min-width: 640px) { .hero-section__title-break { display: block; } }

.hero-section__subtitle {
	margin: 1.75rem auto 0; max-width: 42rem;
	font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.65;
}
@media (min-width: 640px) { .hero-section__subtitle { font-size: 15px; } }

.hero-section__actions { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0.75rem; justify-content: center; }
@media (min-width: 640px) { .hero-section__actions { flex-direction: row; gap: 1rem; } }

/* =============================================================
   ABOUT
   ============================================================= */
.about-section { background-color: var(--color-linen); padding: 6rem 0; }
@media (min-width: 768px) { .about-section { padding: 8rem 0; } }
.about-section__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: stretch; }
@media (min-width: 1024px) { .about-section__grid { grid-template-columns: repeat(12, 1fr); gap: 4rem; } }
.about-section__photo-col { display: flex; min-width: 0; }
@media (min-width: 1024px) { .about-section__photo-col { grid-column: span 5 / span 5; } }
.about-section__photo-frame {
	position: relative; width: 100%; min-height: 520px; aspect-ratio: 4/5;
	overflow: hidden; border-radius: var(--card-radius);
	background-color: var(--color-bone); box-shadow: var(--shadow-elevated);
}
@media (min-width: 1024px) { .about-section__photo-frame { min-height: 0; aspect-ratio: auto; height: 100%; } }
.about-section__badge {
	position: absolute; top: 1rem; left: 1rem; z-index: 2;
	display: inline-flex; align-items: center; gap: 0.5rem;
	padding: 0.25rem 0.75rem; border-radius: 9999px;
	background-color: var(--color-navy); color: var(--color-navy-foreground);
	font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500;
}
.about-section__badge-dot { width: 6px; height: 6px; border-radius: 9999px; background-color: var(--color-flag-red); display: inline-block; }

.about-section__copy-col { min-width: 0; }
@media (min-width: 1024px) { .about-section__copy-col { grid-column: span 7 / span 7; padding-left: 1.5rem; } }
.about-section .section-heading, .about-section__title {
	font-size: 2.25rem; line-height: 1.05; color: var(--color-foreground);
}
@media (min-width: 768px) { .about-section__title { font-size: 3rem; } }
@media (min-width: 1024px) { .about-section__title { font-size: 3.4rem; } }

.about-section__quote {
	margin-top: 2rem; font-family: var(--font-display); font-style: italic;
	font-size: 1.25rem; line-height: 1.4; color: color-mix(in srgb, var(--color-foreground) 75%, transparent);
	border-left: 2px solid color-mix(in srgb, var(--color-flag-red) 70%, transparent);
	padding-left: 1.25rem;
}
@media (min-width: 768px) { .about-section__quote { font-size: 1.5rem; } }

.about-section__paragraphs { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.25rem; max-width: 65ch; }
.about-section__paragraphs p { font-size: 15px; line-height: 1.7; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); overflow-wrap: break-word; }
@media (min-width: 768px) { .about-section__paragraphs p { font-size: 16px; } }

.about-section__stats {
	margin-top: 2.5rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
	border-top: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent); padding-top: 2rem;
}
.about-section__stat-value { font-family: var(--font-display); font-size: 1.5rem; color: var(--color-primary); }
@media (min-width: 768px) { .about-section__stat-value { font-size: 1.875rem; } }
.about-section__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 SECTION + PRODUCT CARDS
   ============================================================= */
.shop-section { background-color: var(--color-background); padding: 6rem 0; }
@media (min-width: 768px) { .shop-section { padding: 8rem 0; } }
.shop-section__header { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2.5rem; }
@media (min-width: 1024px) { .shop-section__header { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.shop-section__intro { 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-section__subtitle { margin-top: 1.25rem; font-size: 14px; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); line-height: 1.7; max-width: 36rem; }
@media (min-width: 768px) { .shop-section__subtitle { font-size: 15px; } }

.shop-section__search { position: relative; width: 100%; }
@media (min-width: 1024px) { .shop-section__search { width: 20rem; } }
.shop-section__search-icon { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: color-mix(in srgb, var(--color-foreground) 40%, transparent); pointer-events: none; }
.shop-section__search-icon-hidden { display: none; }
.shop-section__search-input {
	width: 100%; height: 44px; padding-left: 2.75rem; padding-right: 1rem;
	border-radius: 9999px; background-color: var(--color-linen); border: 1px solid var(--color-border);
	font-size: 14px; transition: border-color 0.2s;
}
.shop-section__search-input::placeholder { color: color-mix(in srgb, var(--color-foreground) 45%, transparent); }
.shop-section__search-input:focus { outline: none; border-color: color-mix(in srgb, var(--color-primary) 60%, transparent); }

.shop-section__filters { display: flex; flex-wrap: wrap; gap: 0.625rem; margin-bottom: 2.5rem; }
.shop-filter-pill {
	padding: 0 1.25rem; height: 40px; border-radius: 9999px; font-size: 14px; font-weight: 500;
	border: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent);
	background-color: transparent; color: color-mix(in srgb, var(--color-foreground) 75%, transparent);
	transition: color 0.2s, border-color 0.2s, background-color 0.2s;
}
.shop-filter-pill:hover { border-color: var(--color-primary); color: var(--color-primary); }
.shop-filter-pill.is-active { background-color: var(--color-primary); color: var(--color-primary-foreground); border-color: var(--color-primary); }

.shop-section__empty, .shop-archive__empty { text-align: center; padding: 5rem 0; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }

.theme-product-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 1.5rem 1.5rem;
	align-items: stretch;
}
@media (min-width: 640px) { .theme-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .theme-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); column-gap: 1.5rem; row-gap: 2.5rem; } }

.theme-shop-card-slot { display: contents; }
.theme-shop-card-slot.theme-shop-card--hidden { display: none; }

.theme-product-card-wrap { display: flex; flex-direction: column; height: 100%; }
.theme-product-card { display: flex; flex-direction: column; height: 100%; }
.theme-product-card__image-wrapper {
	position: relative; aspect-ratio: 1/1; background-color: var(--color-linen);
	border-radius: var(--card-radius); overflow: hidden; margin-bottom: 1rem;
}
.theme-product-card__carousel { position: absolute; inset: 0; }
.theme-product-card__image { position: absolute; inset: 0; opacity: 0; transition: opacity 0.4s ease; pointer-events: none; }
.theme-product-card__image.is-active { opacity: 1; pointer-events: auto; }
.theme-product-card__image img { will-change: transform; transition: transform 1.4s cubic-bezier(0.22,0.61,0.36,1); }
.theme-product-card:hover .theme-product-card__image.is-active img { transform: scale(1.04); }

.theme-product-card > .theme-product-card__image-wrapper > .theme-card-link { position: absolute; inset: 0; z-index: 2; pointer-events: auto; }
.theme-product-card__image-wrapper *:not(.theme-card-link) { pointer-events: none; }
.theme-product-card__image-wrapper .theme-product-card__nav,
.theme-product-card__image-wrapper .theme-product-card__quick-actions a,
.theme-product-card__image-wrapper .theme-product-card__quick-actions button { pointer-events: auto; }

.theme-product-card__badge {
	position: absolute; top: 0.75rem; left: 0.75rem; z-index: 3;
	background-color: var(--color-foreground); color: var(--color-background);
	font-size: 11px; font-weight: 500; padding: 0.25rem 0.625rem; border-radius: 9999px;
}
.theme-product-card__nav {
	position: absolute; top: 50%; transform: translateY(-50%); z-index: 4;
	width: 32px; height: 32px; border-radius: 9999px;
	background-color: color-mix(in srgb, var(--color-background) 85%, transparent);
	backdrop-filter: blur(8px);
	display: inline-flex; align-items: center; justify-content: center;
	color: var(--color-foreground); opacity: 1; transition: opacity 0.3s, background-color 0.3s, color 0.3s;
	box-shadow: var(--shadow-soft);
}
@media (hover: hover) and (pointer: fine) {
	.theme-product-card__nav { opacity: 0; }
	.theme-product-card:hover .theme-product-card__nav { opacity: 1; }
}
.theme-product-card__nav:hover { background-color: var(--color-primary); color: var(--color-primary-foreground); }
.theme-product-card__nav--prev { left: 0.5rem; }
.theme-product-card__nav--next { right: 0.5rem; }
.theme-product-card__dots { position: absolute; top: 0.75rem; right: 0.75rem; z-index: 3; display: flex; gap: 0.25rem; pointer-events: none; }
.theme-product-card__dot { height: 4px; width: 4px; border-radius: 9999px; background-color: color-mix(in srgb, var(--color-background) 60%, transparent); transition: width 0.3s, background-color 0.3s; }
.theme-product-card__dot.is-active { width: 1rem; background-color: var(--color-background); }

.theme-product-card__quick-actions {
	position: absolute; inset-inline: 0.75rem; bottom: 0.75rem; z-index: 4;
	display: flex; align-items: center; gap: 0.5rem; opacity: 0; transition: opacity 0.5s ease;
}
.theme-product-card:hover .theme-product-card__quick-actions { opacity: 1; }
.theme-product-card__add-btn.add_to_cart_button.ajax_add_to_cart {
	flex: 1 1 auto; height: 40px !important; min-height: 40px !important; padding: 0 0.75rem !important;
	border-radius: 9999px !important; background-color: color-mix(in srgb, var(--color-background) 95%, transparent) !important;
	color: var(--color-foreground) !important; font-size: 14px !important; font-weight: 500 !important;
	display: inline-flex !important; align-items: center; justify-content: center; gap: 0.5rem;
	backdrop-filter: blur(8px); box-shadow: var(--shadow-soft); border: none !important;
}
.theme-product-card__add-btn.add_to_cart_button.ajax_add_to_cart:hover { background-color: var(--color-primary) !important; color: var(--color-primary-foreground) !important; }
.theme-product-card__quick-view {
	width: 40px; height: 40px; border-radius: 9999px; flex-shrink: 0;
	display: inline-flex; align-items: center; justify-content: center;
	background-color: color-mix(in srgb, var(--color-background) 95%, transparent);
	color: var(--color-foreground); backdrop-filter: blur(8px); box-shadow: var(--shadow-soft);
	transition: background-color 0.3s, color 0.3s;
}
.theme-product-card__quick-view:hover { background-color: var(--color-primary); color: var(--color-primary-foreground); }

.theme-product-card__info-link { display: block; padding-inline: 0.125rem; }
.theme-product-card__category { font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em; color: color-mix(in srgb, var(--color-flag-red) 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.3; color: var(--color-foreground);
	transition: color 0.3s; overflow-wrap: break-word;
}
@media (min-width: 768px) { .theme-product-card__title { font-size: 1.3rem; } }
@media (min-width: 1024px) { .theme-product-card__title { font-size: 1.4rem; } }
.theme-product-card:hover .theme-product-card__title { color: var(--color-primary); }
.theme-product-card__price { margin-top: 0.375rem; font-size: 14px; font-weight: 500; color: color-mix(in srgb, var(--color-foreground) 85%, transparent); }
.theme-product-card__price .woocommerce-Price-amount { color: inherit; }

.shop-section__view-more { margin-top: 3rem; display: flex; justify-content: center; }
#shop-view-more-wrap.is-hidden { display: none; }

/* =============================================================
   MARQUEE
   ============================================================= */
.marquee-section { background-color: var(--color-primary); padding: 1.25rem 0; overflow: hidden; }
.marquee-section__track { display: flex; white-space: nowrap; width: max-content; animation: gc-marquee 32s linear infinite; }
@keyframes gc-marquee { from { transform: translateX(0); } to { transform: translateX(-33.3333%); } }
.marquee-section__item { display: flex; align-items: center; flex-shrink: 0; color: color-mix(in srgb, var(--color-primary-foreground) 90%, transparent); font-family: var(--font-display); font-size: 1.125rem; }
@media (min-width: 768px) { .marquee-section__item { font-size: 1.25rem; } }
.marquee-section__text { margin-inline: 1.5rem; }
@media (min-width: 768px) { .marquee-section__text { margin-inline: 2rem; } }
.marquee-section__divider { color: color-mix(in srgb, var(--color-primary-foreground) 40%, transparent); font-size: 0.875rem; }

/* =============================================================
   SERVICES / STUDIO
   ============================================================= */
.services-section { background-color: var(--color-background); padding: 6rem 0; }
@media (min-width: 768px) { .services-section { padding: 8rem 0; } }
.services-section__intro { max-width: 48rem; margin-bottom: 3.5rem; }
.services-section .section-heading, .services-section__title { font-size: 2.25rem; line-height: 1.05; color: var(--color-foreground); }
@media (min-width: 768px) { .services-section__title { font-size: 3rem; } }
@media (min-width: 1024px) { .services-section__title { font-size: 3.2rem; } }
.services-section__grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 768px) { .services-section__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; } }
.services-section__card {
	background-color: var(--color-linen); border: 1px solid var(--color-border);
	border-radius: var(--card-radius); padding: 1.75rem;
	transition: border-color 0.2s;
}
@media (min-width: 768px) { .services-section__card { padding: 2rem; } }
.services-section__card:hover { border-color: color-mix(in srgb, var(--color-primary) 40%, transparent); }
.services-section__card-icon {
	display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px;
	border-radius: 9999px; background-color: color-mix(in srgb, var(--color-rose) 40%, transparent);
	color: var(--color-primary); margin-bottom: 1.5rem; transition: transform 0.3s;
}
.services-section__card:hover .services-section__card-icon { transform: rotate(20deg); }
.services-section__card-title { font-family: var(--font-display); font-size: 1.5rem; color: var(--color-foreground); margin-bottom: 0.75rem; }
.services-section__card-body { font-size: 14px; line-height: 1.7; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); overflow-wrap: break-word; }

/* =============================================================
   FAQ + TESTIMONIALS
   ============================================================= */
.faq-section { background-color: var(--color-background); padding: 6rem 0; }
@media (min-width: 768px) { .faq-section { padding: 8rem 0; } }
.faq-section__stack { display: flex; flex-direction: column; gap: 5rem; }
@media (min-width: 768px) { .faq-section__stack { gap: 6rem; } }
.faq-section__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .faq-section__grid { grid-template-columns: repeat(12, 1fr); } }
.faq-section__intro { min-width: 0; }
@media (min-width: 1024px) { .faq-section__intro { grid-column: span 4 / span 4; } }
.faq-section .section-heading, .faq-section__title { font-size: 2.25rem; line-height: 1.05; color: var(--color-foreground); }
@media (min-width: 768px) { .faq-section__title { font-size: 3rem; } }
.faq-section__subtitle { margin-top: 1.5rem; font-size: 14px; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); line-height: 1.7; max-width: 24rem; }
@media (min-width: 768px) { .faq-section__subtitle { font-size: 15px; } }

.faq-section__side-card { display: none; margin-top: 2.5rem; position: relative; overflow: hidden; border-radius: var(--card-radius); border: 1px solid var(--color-border); background-color: var(--color-linen); padding: 1.75rem; }
@media (min-width: 1024px) { .faq-section__side-card { display: block; } }
.faq-section__side-card-glow { position: absolute; top: -2.5rem; right: -2.5rem; width: 8rem; height: 8rem; border-radius: 9999px; background-color: color-mix(in srgb, var(--color-rose) 40%, transparent); filter: blur(40px); }
.faq-section__side-card-inner { position: relative; }
.faq-section__side-card-icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 9999px; background-color: color-mix(in srgb, var(--color-rose) 40%, transparent); color: var(--color-primary); margin-bottom: 1.25rem; }
.faq-section__side-card-title { font-family: var(--font-display); font-size: 1.5rem; line-height: 1.3; color: var(--color-foreground); margin-bottom: 0.5rem; }
.faq-section__side-card-body { font-size: 14px; line-height: 1.7; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); margin-bottom: 1.5rem; }

.faq-section__list { min-width: 0; }
@media (min-width: 1024px) { .faq-section__list { grid-column: span 8 / span 8; } }
.faq-item { border-bottom: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent); }
.faq-item__question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.25rem 0; text-align: left; }
.faq-item__question span:first-child { font-family: var(--font-display); font-size: 1.125rem; line-height: 1.4; color: var(--color-foreground); }
@media (min-width: 768px) { .faq-item__question span:first-child { font-size: 1.25rem; } }
.faq-item__icon { flex-shrink: 0; color: var(--color-primary); display: inline-flex; }
.faq-item__icon .icon-minus { display: none; }
.faq-item.is-open .faq-item__icon .icon-plus { display: none; }
.faq-item.is-open .faq-item__icon .icon-minus { display: inline-flex; }
.faq-item__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.3s ease-out; }
.faq-item.is-open .faq-item__panel { grid-template-rows: 1fr; }
.faq-item__panel-inner { overflow: hidden; }
.faq-item__panel p { padding-bottom: 1.5rem; padding-right: 2rem; font-size: 14px; line-height: 1.7; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); max-width: 42rem; overflow-wrap: break-word; }
@media (min-width: 768px) { .faq-item__panel p { font-size: 15px; } }

.testimonials-block__header { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; margin-bottom: 2rem; }
.testimonials-block__title { font-family: var(--font-display); font-size: 1.875rem; line-height: 1.2; color: var(--color-foreground); }
@media (min-width: 768px) { .testimonials-block__title { font-size: 2.25rem; } }
.testimonials-block__nav { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }
.testimonials-block__nav-btn { width: 40px; height: 40px; border-radius: 9999px; border: 1px solid color-mix(in srgb, var(--color-foreground) 20%, transparent); display: inline-flex; align-items: center; justify-content: center; transition: border-color 0.2s, color 0.2s; }
.testimonials-block__nav-btn:hover { border-color: var(--color-primary); color: var(--color-primary); }

.testimonials-block__viewport { overflow: hidden; margin-inline: -0.75rem; }
.testimonials-block__track { display: flex; transition: transform 0.5s cubic-bezier(0.22,0.61,0.36,1); }
.testimonials-block__slide { flex: 0 0 100%; padding-inline: 0.75rem; }
@media (min-width: 768px) { .testimonials-block__slide { flex: 0 0 50%; } }
@media (min-width: 1024px) { .testimonials-block__slide { flex: 0 0 25%; } }
.testimonials-block__card { height: 100%; background-color: var(--color-background); border: 1px solid var(--color-border); border-radius: var(--card-radius); padding: 1.5rem; display: flex; flex-direction: column; }
.testimonials-block__stars { display: flex; gap: 0.125rem; margin-bottom: 1rem; color: var(--color-flag-red); }
.testimonials-block__text { font-size: 14px; line-height: 1.7; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); flex: 1; overflow-wrap: break-word; }
.testimonials-block__author { margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--color-border); }
.testimonials-block__name { font-size: 14px; font-weight: 500; color: var(--color-foreground); }
.testimonials-block__city { font-size: 12px; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }

.testimonials-block__dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 2rem; }
.testimonials-block__dot { height: 6px; width: 6px; border-radius: 9999px; background-color: color-mix(in srgb, var(--color-foreground) 25%, transparent); transition: width 0.2s, background-color 0.2s; }
.testimonials-block__dot:hover { background-color: color-mix(in srgb, var(--color-foreground) 40%, transparent); }
.testimonials-block__dot.is-active { width: 2rem; background-color: var(--color-primary); }

/* =============================================================
   PRE-CONTACT CTA BAND
   ============================================================= */
.cta-band { position: relative; overflow: hidden; }
.cta-band__video { z-index: 0; }
.cta-band__scrim { position: absolute; inset: 0; z-index: 1; pointer-events: none; background-color: color-mix(in srgb, var(--color-foreground) 35%, transparent); }
.cta-band__content { position: relative; z-index: 2; padding-block: 7rem; text-align: center; color: #fff; }
@media (max-width: 639px) { .cta-band__content { padding-inline: 1.25rem; } }
@media (min-width: 640px) and (max-width: 1023px) { .cta-band__content { padding-inline: 1.5rem; padding-block: 10rem; } }
@media (min-width: 1024px) { .cta-band__content { padding: 10rem 0; } }
.cta-band__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; }
.cta-band__eyebrow-line { height: 1px; width: 2rem; background-color: color-mix(in srgb, var(--color-rose) 70%, transparent); display: inline-block; }
.cta-band__title { color: #fff; line-height: 1.05; letter-spacing: -0.02em; margin-inline: auto; max-width: 56rem; filter: drop-shadow(0 2px 30px rgba(0,0,0,0.55)); font-size: clamp(2rem, 5.4vw, 4rem); }
.cta-band__title em { color: var(--color-rose); font-style: italic; }
.cta-band__subtitle { margin: 1.75rem auto 0; max-width: 36rem; font-size: 15px; color: rgba(255,255,255,0.8); line-height: 1.7; }
.cta-band__content > div:last-child { margin-top: 2.5rem; }

/* =============================================================
   CONTACT
   ============================================================= */
.contact-section { background-color: var(--color-linen); padding-top: 6rem; padding-bottom: 3rem; }
@media (min-width: 768px) { .contact-section { padding-top: 8rem; padding-bottom: 4rem; } }
.contact-section__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: stretch; }
@media (min-width: 1024px) { .contact-section__grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.contact-section__intro-col { display: flex; flex-direction: column; height: 100%; min-width: 0; }
.contact-title { font-size: 2.25rem; line-height: 1.05; color: var(--color-foreground); }
@media (min-width: 768px) { .contact-title { font-size: 3rem; } }
@media (min-width: 1024px) { .contact-title { font-size: 3.4rem; } }
.contact-section__subtitle { margin-top: 1.5rem; font-size: 15px; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); line-height: 1.7; max-width: 28rem; overflow-wrap: break-word; }

.contact-section__channels { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.contact-section__channel { display: inline-flex; align-items: center; gap: 1rem; color: var(--color-foreground); transition: color 0.2s; min-width: 0; }
a.contact-section__channel:hover { color: var(--color-primary); }
.contact-section__channel-icon { width: 44px; height: 44px; border-radius: 9999px; background-color: var(--color-background); border: 1px solid var(--color-border); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; transition: border-color 0.2s; }
a.contact-section__channel:hover .contact-section__channel-icon { border-color: var(--color-primary); }
.contact-section__channel-text { display: flex; flex-direction: column; text-align: left; min-width: 0; }
.contact-section__channel-label { font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.contact-section__channel-value { font-size: 15px; font-weight: 500; overflow-wrap: break-word; }

.contact-section__quote-wrap { margin-top: auto; padding-top: 2.5rem; }
.contact-section__quote-card { position: relative; border-radius: var(--card-radius); border: 1px solid var(--color-border); background-color: color-mix(in srgb, var(--color-background) 60%, transparent); padding: 1.5rem; }
@media (min-width: 768px) { .contact-section__quote-card { padding: 1.75rem; } }
.contact-section__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.4; border-left: 2px solid color-mix(in srgb, var(--color-flag-red) 70%, transparent); padding-left: 1.25rem; overflow-wrap: break-word; }
@media (min-width: 768px) { .contact-section__quote { font-size: 1.25rem; } }
.contact-section__quote-caption { margin-top: 0.75rem; padding-left: 1.25rem; font-size: 13px; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }

.contact-section__form { background-color: var(--color-background); border: 1px solid var(--color-border); border-radius: var(--card-radius); padding: 1.5rem; box-shadow: var(--shadow-soft); height: 100%; display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 768px) { .contact-section__form { padding: 2rem; } }
.contact-section__form-fields { flex: 1; display: flex; flex-direction: column; gap: 1rem; }
.contact-section__form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .contact-section__form-row { grid-template-columns: 1fr 1fr; } }
.contact-section__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; }
.contact-section__input {
	width: 100%; height: 48px; padding: 0 1rem; background-color: var(--color-linen);
	border: 1px solid var(--color-border-strong); border-radius: calc(var(--radius) - 2px);
	font-size: 14px; color: var(--color-foreground); transition: border-color 0.2s;
}
.contact-section__input::placeholder { color: color-mix(in srgb, var(--color-foreground) 45%, transparent); }
.contact-section__input:focus { outline: none; border-color: var(--color-primary); }
.contact-section__textarea { height: auto; padding-top: 0.75rem; padding-bottom: 0.75rem; resize: none; }
.contact-section__select-wrap { position: relative; }
.contact-section__select { appearance: none; padding-right: 2.5rem; }
.contact-section__select-caret { position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); pointer-events: none; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.contact-section__form-submit { padding-top: 0.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.contact-section__helper { font-size: 12px; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); text-align: center; }

/* =============================================================
   FOOTER — parity with Lovable Footer.tsx
   ============================================================= */
.site-footer {
	background-color: var(--color-linen);
	border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent);
}
.site-footer__inner {
	padding-block: 3.5rem;
}
@media (min-width: 1024px) {
	.site-footer__inner { padding-block: 5rem; }
}
.site-footer__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	width: 100%;
}
@media (min-width: 640px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) {
	.site-footer__grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 3rem;
	}
}
.site-footer__brand { display: inline-flex; align-items: center; }
.site-footer__brand .site-logo-img { height: 3.5rem; width: auto; }
.site-footer__brand .site-logo-text {
	font-family: var(--font-display);
	font-size: 1.5rem;
	color: var(--color-foreground);
}
.site-footer__tagline {
	margin-top: 1rem;
	font-size: 14px;
	color: color-mix(in srgb, var(--color-foreground) 65%, transparent);
	line-height: 1.625;
	max-width: 20rem;
	overflow-wrap: break-word;
}
.site-footer__badge {
	margin-top: 1rem;
	font-size: 13px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--color-navy);
	font-weight: 500;
}
.site-footer__heading {
	font-family: var(--font-display);
	font-size: 1.125rem;
	font-weight: 400;
	color: var(--color-foreground);
	margin: 0 0 1rem;
}
.site-footer__col nav { width: 100%; }
.theme-nav-list--footer {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.625rem;
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
}
.theme-nav-list--footer li { width: 100%; }
.theme-nav-list--footer a,
.theme-footer-nav-link,
.theme-footer-cat-link {
	display: inline-block;
	font-size: 14px;
	font-weight: 400;
	color: color-mix(in srgb, var(--color-foreground) 65%, transparent);
	transition: color 0.2s ease;
	text-align: left;
}
.theme-nav-list--footer a:hover,
.theme-footer-nav-link:hover,
.theme-footer-cat-link:hover {
	color: var(--color-primary);
}
.site-footer .theme-nav-link {
	position: static;
	font-size: 14px;
	font-weight: 400;
	color: color-mix(in srgb, var(--color-foreground) 65%, transparent);
}
.site-footer .theme-nav-link:hover,
.site-footer .theme-nav-link.is-active {
	color: var(--color-primary);
}
.site-footer__contact-list {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	font-size: 14px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.site-footer__contact-list li { margin: 0; }
.site-footer__contact-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: color-mix(in srgb, var(--color-foreground) 75%, transparent);
	transition: color 0.2s ease;
	overflow-wrap: anywhere;
}
.site-footer__contact-link:hover { color: var(--color-primary); }
.site-footer__contact-link svg { flex-shrink: 0; }
.site-footer__contact-static {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: color-mix(in srgb, var(--color-foreground) 75%, transparent);
}
.site-footer__contact-static svg { flex-shrink: 0; }
.site-footer__bottom {
	margin-top: 3.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
}
@media (min-width: 640px) {
	.site-footer__bottom {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}
}
.site-footer__copy,
.site-footer__built-by {
	margin: 0;
	font-size: 13px;
	color: color-mix(in srgb, var(--color-foreground) 65%, transparent);
}
.site-footer__built-by a {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 2px;
	transition: color 0.2s ease;
}
.site-footer__built-by a:hover { color: var(--color-primary); }

/* =============================================================
   404
   ============================================================= */
.theme-404 { padding-top: 9rem; min-height: 60vh; }
.theme-404__inner { max-width: 36rem; margin-inline: auto; padding-block: 5rem; text-align: center; }
.theme-404__title { font-size: 2.5rem; margin-bottom: 1rem; }
.theme-404__message { color: color-mix(in srgb, var(--color-foreground) 65%, transparent); margin-bottom: 2rem; font-size: 15px; }

/* =============================================================
   REVEAL ANIMATIONS (Section 2.1)
   ============================================================= */
.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;
}
.reveal-item.is-revealed { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
	.reveal-item { transition: none; }
	.marquee-section__track { animation: none; }
}

/* Customizer preview + no-JS fallback: never leave content invisible */
body.is-customizer .reveal-item,
body.no-js .reveal-item {
	opacity: 1;
	transform: none;
}

/* =============================================================
   WOOCOMMERCE — GENERIC PAGE / SINGLE PRODUCT
   ============================================================= */

.generic-page .page-title, .shop-archive .page-title { font-size: 2.5rem; margin-bottom: 2rem; padding-top: 2rem; }

.theme-breadcrumb { padding-block: 1.5rem; 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-inline: 0.5rem; opacity: 0.5; }
.theme-breadcrumb__current { color: var(--color-foreground); }

.single-product .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) { .single-product .theme-product-layout { grid-template-columns: 7fr 5fr; gap: 4rem; } }
.single-product .theme-product-gallery, .single-product .theme-product-info { min-width: 0; max-width: 100%; }
@media (min-width: 1024px) { .single-product .theme-product-gallery { position: sticky; top: 7rem; } }
.theme-product-gallery__main { position: relative; aspect-ratio: 1/1; width: 100%; background-color: var(--color-linen); border-radius: var(--card-radius); overflow: hidden; margin-bottom: 1rem; }
.product-main-img-el { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.single-product .theme-product-thumbnails { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.625rem; flex-wrap: wrap; max-width: 100%; }
.theme-product-thumb { position: relative; aspect-ratio: 1/1; background-color: var(--color-linen); border-radius: calc(var(--radius) - 2px); overflow: hidden; border: 2px solid transparent; transition: border-color 0.2s; }
.theme-product-thumb.is-active { border-color: var(--color-primary); }
.theme-product-thumb:hover { border-color: color-mix(in srgb, var(--color-foreground) 20%, transparent); }
.theme-product-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.theme-product-info__category { font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--color-primary); margin-bottom: 0.75rem; font-weight: 500; }
.product-title, .theme-product-info__title {
	font-family: var(--font-body); font-weight: 600; font-size: 1.875rem; line-height: 1.05; color: var(--color-foreground); margin-bottom: 1rem; overflow-wrap: break-word;
}
@media (min-width: 768px) { .theme-product-info__title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .theme-product-info__title { font-size: 2.6rem; } }
.theme-product-info__price { font-size: 20px; font-weight: 500; color: color-mix(in srgb, var(--color-foreground) 90%, transparent); margin-bottom: 1.75rem; }
.theme-product-info__price .woocommerce-Price-amount { color: inherit; }
.theme-stock-indicator { font-size: 13px; font-weight: 500; margin-bottom: 1rem; }
.theme-stock-indicator--out { color: var(--color-flag-red); }
.theme-product-info__description { font-size: 15px; line-height: 1.7; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); margin-bottom: 2rem; overflow-wrap: break-word; }
.theme-product-info__description p:first-child { margin-top: 0; }

/* Variable product — attribute swatches */
.theme-product-variations {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	margin-bottom: 2rem;
}
.theme-variation-header {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 0.375rem 0.75rem;
	margin-bottom: 0.75rem;
}
.theme-variation-label {
	font-size: 12px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: color-mix(in srgb, var(--color-foreground) 55%, transparent);
	font-weight: 500;
}
.theme-variation-selected-value {
	font-size: 14px;
	font-weight: 500;
	color: var(--color-primary);
	min-height: 1.25rem;
}
.theme-variation-selected-value:empty { display: none; }
.theme-variation-swatches {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}
.theme-variation-select-wrap {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
.theme-swatch {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	border: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent);
	background-color: transparent;
	color: color-mix(in srgb, var(--color-foreground) 75%, transparent);
	transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
	padding: 0;
	font-family: var(--font-body);
}
.theme-swatch:focus-visible {
	outline: 2px solid var(--color-primary);
	outline-offset: 2px;
}
.theme-swatch--label {
	min-height: 40px;
	padding: 0 1.15rem;
	border-radius: 9999px;
	font-size: 14px;
	font-weight: 500;
}
.theme-swatch--label .theme-swatch__fill { display: none; }
.theme-swatch--label:hover {
	border-color: var(--color-primary);
	color: var(--color-primary);
}
.theme-swatch--label.is-selected {
	background-color: var(--color-primary);
	border-color: var(--color-primary);
	color: var(--color-primary-foreground);
	box-shadow: var(--shadow-soft);
}
.theme-swatch--color {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 9999px;
	border: 2px solid color-mix(in srgb, var(--color-foreground) 12%, transparent);
	background-color: var(--color-linen);
	padding: 3px;
}
.theme-swatch--color .theme-swatch__text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
.theme-swatch--color .theme-swatch__fill {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 9999px;
	background-color: var(--swatch-color, var(--color-bone));
	box-shadow: inset 0 1px 2px rgba(64, 41, 28, 0.12);
	transition: transform 0.2s ease;
}
.theme-swatch--color.is-light {
	border-color: color-mix(in srgb, var(--color-foreground) 22%, transparent);
}
.theme-swatch--color.is-light .theme-swatch__fill {
	box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--color-foreground) 14%, transparent);
}
.theme-swatch--color:hover {
	border-color: color-mix(in srgb, var(--color-primary) 50%, transparent);
	transform: translateY(-1px);
}
.theme-swatch--color.is-selected {
	border-color: var(--color-primary);
	box-shadow: 0 0 0 2px color-mix(in srgb, var(--color-primary) 18%, transparent), var(--shadow-soft);
}
.theme-swatch--color.is-selected .theme-swatch__fill {
	transform: scale(0.88);
}

.theme-qty-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-quantity-wrapper { display: inline-flex; align-items: center; border: 1px solid color-mix(in srgb, var(--color-foreground) 20%, transparent); border-radius: 9999px; height: 44px; flex-shrink: 0; }
.theme-qty-minus, .theme-qty-plus { padding-inline: 1rem; height: 100%; display: inline-flex; align-items: center; transition: color 0.2s; }
.theme-qty-minus:hover, .theme-qty-plus:hover { color: var(--color-primary); }
.theme-qty-input { width: 44px; min-width: 0; border: none; background: transparent; text-align: center; font-size: 14px; font-weight: 500; -moz-appearance: textfield; }
.theme-qty-input::-webkit-outer-spin-button, .theme-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.single-product .theme-add-to-cart-area { display: flex; align-items: stretch; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2rem; }
.single-product .single_add_to_cart_button { flex: 1 1 auto; min-width: 160px; }
.theme-buy-now-button.button { background-color: transparent !important; }

.theme-product-info__details { padding-top: 2rem; border-top: 1px solid var(--color-border); }
.theme-details-heading { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); margin-bottom: 1rem; }
.single-product .woocommerce-product-details__short-description ul { display: flex; flex-direction: column; gap: 0.625rem; }
.single-product .woocommerce-product-details__short-description li { font-size: 14px; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); display: flex; align-items: flex-start; overflow-wrap: break-word; }
.single-product .woocommerce-product-details__short-description li::before { content: ''; width: 4px; height: 4px; background-color: var(--color-primary); border-radius: 9999px; margin-top: 0.6rem; margin-right: 0.75rem; flex-shrink: 0; }
.single-product .woocommerce-product-details__short-description,
.single-product .woocommerce-variation-description,
.single-product .posted_in { overflow-wrap: break-word; word-break: break-word; }

.related-products-section { padding-top: 4rem; padding-bottom: 4rem; border-top: 1px solid var(--color-border); }
.related-products-section__header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2.5rem; gap: 1rem; }
.related-products-section__title { font-family: var(--font-display); font-size: 1.875rem; color: var(--color-foreground); }
@media (min-width: 768px) { .related-products-section__title { font-size: 2.25rem; } }
.related-products-section__view-all { display: none; align-items: center; gap: 0.375rem; font-size: 14px; font-weight: 500; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); transition: color 0.2s; }
@media (min-width: 640px) { .related-products-section__view-all { display: inline-flex; } }
.related-products-section__view-all:hover { color: var(--color-primary); }

.shop-archive { padding-top: 2rem; }

/* =============================================================
   WOOCOMMERCE — ADD TO CART BUTTON 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 {
	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;
	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-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 {
	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-outline.single_add_to_cart_button.button {
	background-color: transparent !important;
	color: var(--color-foreground) !important;
	border: 1px solid color-mix(in srgb, var(--color-foreground) 25%, transparent) !important;
}
.theme-btn-outline.single_add_to_cart_button.button:hover {
	background-color: color-mix(in srgb, var(--color-foreground) 4%, transparent) !important;
	color: var(--color-foreground) !important;
}
/* Card compact button — overrides global rules, scoped after them */
.theme-product-card .add_to_cart_button.ajax_add_to_cart {
	min-height: 40px !important;
}
.single-product .single_add_to_cart_button.loading::after,
.ajax_add_to_cart.loading::after { display: none !important; }

/* Hide "View cart" injected by WooCommerce after AJAX add-to-cart (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; }

/* WooCommerce notices — scoped visibility (Section 14.1) */
.single-product .woocommerce-message,
.single-product .woocommerce-info { display: none; }
#theme-cart-drawer .woocommerce-message { display: none; }
.woocommerce-message, .woocommerce-info, .woocommerce-error {
	background-color: var(--color-linen); border: 1px solid var(--color-border); border-radius: var(--radius);
	padding: 1rem 1.25rem; font-size: 14px; color: var(--color-foreground); list-style: none; margin-bottom: 1.5rem;
}
.woocommerce-error { border-color: color-mix(in srgb, var(--color-flag-red) 40%, transparent); }

/* =============================================================
   SIDE CART DRAWER
   ============================================================= */
#theme-cart-overlay {
	position: fixed; inset: 0; background-color: color-mix(in srgb, var(--color-foreground) 30%, transparent);
	z-index: 90; opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
body.cart-open #theme-cart-overlay { opacity: 1; pointer-events: auto; }

#theme-cart-drawer {
	position: fixed; top: 0; right: 0; height: 100%; width: 100%; max-width: 26rem;
	background-color: var(--color-background); z-index: 91; box-shadow: var(--shadow-elevated);
	display: flex; flex-direction: column; transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
body.cart-open #theme-cart-drawer { transform: translateX(0); }
#theme-cart-drawer.is-updating { opacity: 0.6; pointer-events: none; }

.theme-cart-drawer__header { display: flex; align-items: center; justify-content: space-between; padding: 1.5rem; border-bottom: 1px solid var(--color-border); }
.theme-cart-drawer__title { font-family: var(--font-display); font-size: 1.5rem; color: var(--color-foreground); }
.theme-cart-drawer__close { padding: 0.375rem; border-radius: 9999px; transition: background-color 0.2s; }
.theme-cart-drawer__close:hover { background-color: color-mix(in srgb, var(--color-foreground) 6%, transparent); }

.theme-cart-drawer__empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 1.5rem; text-align: center; }
.theme-cart-drawer__empty svg { color: color-mix(in srgb, var(--color-foreground) 30%, transparent); margin-bottom: 1rem; }
.theme-cart-drawer__empty-text { color: color-mix(in srgb, var(--color-foreground) 65%, transparent); margin-bottom: 1.5rem; font-size: 14px; }

.theme-cart-drawer__items { flex: 1; overflow-y: auto; padding: 1.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.theme-cart-item { display: flex; gap: 1rem; }
.theme-cart-item__image { position: relative; width: 80px; height: 96px; background-color: var(--color-bone); border-radius: calc(var(--radius) - 4px); overflow: hidden; flex-shrink: 0; display: block; }
.theme-cart-item__image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.theme-cart-item__info { flex: 1; min-width: 0; }
.theme-cart-item__name { font-size: 14px; font-weight: 500; display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; transition: color 0.2s; }
.theme-cart-item__name:hover { color: var(--color-primary); }
.theme-cart-item__price { font-size: 13px; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); margin-top: 0.125rem; }
.theme-cart-item__variation { font-size: 12px; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); display: flex; flex-direction: column; margin-top: 0.25rem; }
.theme-cart-item__controls { display: flex; align-items: center; gap: 0.75rem; margin-top: 0.75rem; }
.theme-cart-item__controls button { padding: 0.25rem; border-radius: 0.25rem; transition: background-color 0.2s; display: inline-flex; }
.theme-cart-item__controls button:hover { background-color: var(--color-bone); }
.theme-cart-item__qty { font-size: 13px; width: 1.5rem; text-align: center; }
.theme-cart-item__remove { margin-left: auto; font-size: 13px; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); transition: color 0.2s; }
.theme-cart-item__remove:hover { color: var(--color-flag-red); }

.theme-cart-drawer__footer { padding: 1.5rem; border-top: 1px solid var(--color-border); background-color: color-mix(in srgb, var(--color-linen) 40%, transparent); display: flex; flex-direction: column; gap: 1rem; }
.theme-cart-drawer__subtotal-row { display: flex; justify-content: space-between; font-size: 14px; }
.theme-cart-drawer__subtotal-label { color: color-mix(in srgb, var(--color-foreground) 65%, transparent); }
.theme-cart-drawer__subtotal-value { font-weight: 500; }
.theme-cart-drawer__note { font-size: 13px; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }

/* =============================================================
   CHECKOUT BLOCK (Section 13)
   ============================================================= */
body.woocommerce-checkout .site-main,
body.woocommerce-checkout .site-main .container-wide,
body.woocommerce-checkout #page-content,
body.woocommerce-checkout .entry-content,
body.woocommerce-checkout article,
body.woocommerce-checkout .generic-page {
	max-width: 100%;
	width: 100%;
	box-sizing: border-box;
}

body.woocommerce-checkout .site-main {
	padding-top: calc(var(--header-height) + var(--gc-admin-bar-offset) + 2rem);
	padding-bottom: 4rem;
}

body.woocommerce-checkout .site-main .container-wide {
	max-width: var(--checkout-max-width);
	margin-inline: auto;
}

body.woocommerce-checkout .entry-content,
.entry-content:has(.wc-block-checkout),
.entry-content:has(.wp-block-woocommerce-checkout) {
	max-width: 100%;
}

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;
	width: 100%;
	max-width: var(--checkout-max-width);
	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,
	body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout,
	body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout.is-large,
	.entry-content .wc-block-components-sidebar-layout,
	.entry-content .wc-block-checkout-sidebar-layout,
	.entry-content .wc-block-components-sidebar-layout.wc-block-checkout,
	.entry-content .wc-block-components-sidebar-layout.wc-block-checkout.is-large {
		display: grid;
		grid-template-columns: 1fr minmax(360px, 400px);
		gap: var(--checkout-gap);
		align-items: start;
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
	}
}

body.woocommerce-checkout .wc-block-components-sidebar-layout > .wc-block-components-notices,
body.woocommerce-checkout .wc-block-checkout-sidebar-layout > .wc-block-components-notices,
body.woocommerce-checkout .wc-block-components-sidebar-layout > .wc-block-components-notice-banner,
body.woocommerce-checkout .wc-block-checkout-sidebar-layout > .wc-block-components-notice-banner,
.entry-content .wc-block-components-sidebar-layout > .wc-block-components-notices,
.entry-content .wc-block-checkout-sidebar-layout > .wc-block-components-notices,
.entry-content .wc-block-components-sidebar-layout > .wc-block-components-notice-banner,
.entry-content .wc-block-checkout-sidebar-layout > .wc-block-components-notice-banner {
	grid-column: 1 / -1;
	order: 1;
	width: 100%;
	max-width: var(--checkout-max-width);
	margin-inline: auto;
	box-sizing: border-box;
}

body.woocommerce-checkout .wc-block-components-notices,
.entry-content .wc-block-components-notices {
	width: 100%;
	max-width: var(--checkout-max-width);
	margin-inline: auto;
	box-sizing: border-box;
}

body.woocommerce-checkout .wc-block-checkout__main,
.entry-content .wc-block-checkout__main {
	order: 2;
	min-width: 0;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}

body.woocommerce-checkout .wc-block-checkout__sidebar,
.entry-content .wc-block-checkout__sidebar {
	order: 3;
	min-width: 0;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}

@media (min-width: 768px) {
	body.woocommerce-checkout .wc-block-checkout__sidebar,
	.entry-content .wc-block-checkout__sidebar {
		min-width: 360px;
	}
}

body.woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-block,
.entry-content .wp-block-woocommerce-checkout-order-summary-block,
body.woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-order-summary,
.entry-content .wc-block-checkout__sidebar .wc-block-components-order-summary {
	width: 100%;
	min-width: 0;
	max-width: 100%;
	box-sizing: border-box;
}

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 > * {
	box-sizing: border-box;
}

body.woocommerce-checkout .page-title,
body.woocommerce-cart .page-title,
body.woocommerce-account .page-title { font-size: 2.5rem; margin-bottom: 2rem; }

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: 14px;
	color: var(--color-foreground);
	border: 1px solid var(--color-border-strong);
	border-radius: calc(var(--radius) - 2px);
	background-color: var(--color-background);
	padding: revert;
}
body.woocommerce-checkout .wc-block-components-text-input input:focus,
body.woocommerce-checkout .wc-block-components-select select:focus,
body.woocommerce-checkout .wc-block-components-textarea textarea:focus {
	outline: none;
	border-color: var(--color-primary);
}
body.woocommerce-checkout .wc-block-components-text-input input::placeholder { color: color-mix(in srgb, var(--color-foreground) 45%, transparent); }

body.woocommerce-checkout .wc-block-checkout__sidebar {
	background-color: var(--color-linen);
	border-radius: var(--card-radius);
	padding: 2rem;
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button {
	background-color: var(--color-primary) !important;
	color: var(--color-primary-foreground) !important;
	border-radius: var(--btn-radius) !important;
	font-family: var(--font-body) !important;
	text-transform: none !important;
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover { opacity: 0.9; }
body.woocommerce-checkout h2, body.woocommerce-checkout .wc-block-components-title {
	font-family: var(--font-display);
	font-weight: 400;
	color: var(--color-foreground);
}

/* =============================================================
   THANK YOU PAGE (Section 22.8)
   ============================================================= */
body.theme-thankyou-page { overflow-x: hidden; }
body.theme-thankyou-page .woocommerce-order,
body.theme-thankyou-page .woocommerce-order-details,
body.theme-thankyou-page .woocommerce-customer-details { margin-bottom: 2rem; }
body.theme-thankyou-page .woocommerce-order h2,
body.theme-thankyou-page .woocommerce-order-details__title {
	font-family: var(--font-display); font-weight: 400; font-size: 1.75rem;
	padding: 0 0 1rem 0; color: var(--color-foreground);
}
body.theme-thankyou-page .woocommerce-order-overview { display: flex; flex-wrap: wrap; gap: 1.5rem; list-style: none; padding: 1.5rem; background-color: var(--color-linen); border-radius: var(--card-radius); margin-bottom: 2rem; }
body.theme-thankyou-page .woocommerce-order-overview li { font-size: 14px; }
body.theme-thankyou-page .woocommerce-order-overview li strong { display: block; font-weight: 500; margin-top: 0.25rem; }
body.theme-thankyou-page .woocommerce-order-details table,
body.theme-thankyou-page table.shop_table { width: 100%; table-layout: fixed; border-collapse: collapse; font-size: 14px; }
body.theme-thankyou-page .woocommerce-order-details th,
body.theme-thankyou-page .woocommerce-order-details 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; }
@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 { min-width: 0; overflow-wrap: break-word; font-style: normal; line-height: 1.7; }

/* =============================================================
   CART / ACCOUNT PAGES WIDTH PARITY (Section 13.7)
   ============================================================= */
body.woocommerce-cart .site-main,
body.woocommerce-account .site-main { padding-top: calc(var(--header-height) + var(--gc-admin-bar-offset) + 2rem); padding-bottom: 4rem; }

/* =============================================================
   RESPONSIVE: hide desktop-only nav on mobile handled via media queries above
   ============================================================= */
