/* =========================================================================
   THE JACHIN PROJECT — THEME STYLESHEET
   Author: The Free Website Guys
   ========================================================================= */

:root {
	--color-background: #f9f5f1;
	--color-foreground: #141c34;
	--color-card: #efe9e1;
	--color-primary: #192957;
	--color-primary-foreground: #faf8f4;
	--color-secondary: #ebe4db;
	--color-muted: #d4ccc4;
	--color-muted-foreground: #4e556a;
	--color-border: #d5ccc3;
	--color-butter: #f2ece4;
	--color-rosa: #ebafa2;
	--color-marigold: #ecab3c;
	--color-teal: #c86341;
	--color-lilac: #253b7e;
	--logo-height: 80px;

	--font-display: 'Fraunces', serif;
	--font-body: 'Inter', sans-serif;

	--radius: 0.75rem;
	--shadow-soft: 0 4px 20px -4px rgba(20, 28, 52, 0.08);
	--shadow-elevated: 0 8px 40px -8px rgba(20, 28, 52, 0.16);
	--transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
	--header-height: 96px;

	--btn-radius: 999px;
	--btn-height: 3rem;
	--btn-padding: 0.9rem 2rem;
	--btn-font-size: 11px;
	--btn-font-weight: 600;
	--btn-letter-spacing: 0.22em;
	--btn-text-transform: uppercase;
	--btn-icon-padding: 0.6rem;
	--checkout-gap: 2.5rem;
	--card-radius: 1rem;
	--section-padding: 2rem;
}

/* -------------------------------------------------------------------------
   RESET / BASE
   ---------------------------------------------------------------------- */
* { box-sizing: border-box; }

html, body { max-width: 100%; overflow-x: clip; }

body {
	margin: 0;
	background-color: var(--color-background);
	color: var(--color-foreground);
	font-family: var(--font-body);
	-webkit-font-smoothing: antialiased;
	line-height: 1.5;
}

img { max-width: 100%; display: block; }

img:not(.cover-img):not(.product-card-img):not(.hero-bg-img):not(.theme-cart-item__img) {
	height: auto;
}
.cover-img, .product-card-img, .hero-bg-img, .theme-cart-item__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	font-weight: inherit;
	font-size: inherit;
	letter-spacing: -0.015em;
	margin: 0;
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; background: none; border: none; cursor: pointer; padding: 0; color: inherit; }
ul, ol { margin: 0; padding: 0; }

.container-wide {
	width: 100%;
	max-width: 84rem;
	margin: 0 auto;
	padding: 0 1.5rem;
}
@media (min-width: 1024px) { .container-wide { padding: 0 2rem; } }

.theme-eyebrow {
	display: block;
	font-size: 13px;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--color-lilac);
	font-weight: 700;
	margin-bottom: 0.75rem;
}
.theme-eyebrow--sm { font-size: 11px; letter-spacing: 0.24em; color: rgba(20,28,52,0.5); font-weight: 400; }
.theme-eyebrow--inverse { color: var(--color-background); }

.section-heading {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: 1.875rem;
	line-height: 1.05;
	letter-spacing: -0.015em;
}
@media (min-width: 768px) { .section-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .section-heading { font-size: 3.75rem; } }

.theme-section { padding: 5rem 0; }
.theme-section--founder { padding-top: 0; }
.theme-section--butter { background-color: var(--color-butter); }
.theme-section--services { background-color: var(--color-butter); padding: 5rem 0; }
.scroll-mt-24 { scroll-margin-top: 6rem; }

.theme-section__head { max-width: 42rem; margin: 0 auto 2.5rem; text-align: center; }
.theme-section__head--left { max-width: 100%; text-align: left; margin-bottom: 4rem; }
.theme-section__desc { color: rgba(20,28,52,0.75); font-size: 1rem; line-height: 1.6; margin-top: 1.25rem; }
@media (min-width: 768px) { .theme-section__desc { font-size: 1.125rem; } }
.theme-section__cta { text-align: center; margin-top: 3rem; }

/* -------------------------------------------------------------------------
   BUTTONS
   ---------------------------------------------------------------------- */
.theme-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	border-radius: var(--btn-radius);
	padding: var(--btn-padding);
	font-size: var(--btn-font-size);
	letter-spacing: var(--btn-letter-spacing);
	text-transform: var(--btn-text-transform);
	font-weight: var(--btn-font-weight);
	font-family: var(--font-body);
	transition: opacity 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
	cursor: pointer;
	white-space: nowrap;
}
.theme-btn-hero-primary, .theme-btn-cta-primary { text-transform: none; }
.theme-btn-hero-primary { background-color: rgba(249,245,241,0.95); color: var(--color-foreground); }
.theme-btn-hero-primary:hover { background-color: var(--color-background); }
.theme-btn-hero-outline { border: 1px solid rgba(249,245,241,0.8); color: var(--color-background); text-transform: uppercase; }
.theme-btn-hero-outline:hover { background-color: rgba(249,245,241,0.15); border-color: var(--color-background); }
.theme-btn-primary { background-color: var(--color-lilac); color: var(--color-background); }
.theme-btn-primary:hover { background-color: rgba(37,59,126,0.9); }
.theme-btn-outline { border: 1px solid var(--color-lilac); color: var(--color-lilac); background: transparent; }
.theme-btn-outline:hover { background-color: var(--color-lilac); color: var(--color-background); }
.theme-btn-outline-teal { border: 1px solid var(--color-teal); color: var(--color-teal); background: transparent; }
.theme-btn-outline-teal:hover { background-color: var(--color-teal); color: var(--color-background); }
.theme-btn-outline-soft { border: 1px solid rgba(20,28,52,0.3); color: var(--color-foreground); background: transparent; }
.theme-btn-outline-soft:hover { border-color: var(--color-foreground); }
.theme-btn-cta-primary { background-color: var(--color-background); color: var(--color-foreground); border: 1px solid var(--color-foreground); text-transform: uppercase; }
.theme-btn-cta-primary:hover { background-color: var(--color-marigold); }
.theme-btn-cta-outline { border: 1px solid rgba(249,245,241,0.7); color: var(--color-background); background: transparent; text-transform: uppercase; }
.theme-btn-cta-outline:hover { border-color: var(--color-background); background-color: rgba(249,245,241,0.1); }
.theme-btn-block { width: 100%; }

/* -------------------------------------------------------------------------
   ANNOUNCEMENT BAR
   ---------------------------------------------------------------------- */
.theme-announcement-bar { position: relative; background-color: var(--color-lilac); color: var(--color-background); }
.theme-announcement-inner { padding: 0.5rem 0; text-align: center; }
.theme-announcement-text { font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; }
.theme-announcement-dismiss { position: absolute; right: 0.75rem; top: 50%; transform: translateY(-50%); opacity: 0.7; padding: 0.25rem; }
.theme-announcement-dismiss:hover { opacity: 1; }

/* -------------------------------------------------------------------------
   HEADER
   ---------------------------------------------------------------------- */
.site-header {
	position: sticky;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	background-color: var(--color-background);
	border-top: 2px solid rgba(37,59,126,0.4);
	border-bottom: 1px solid transparent;
	transition: background-color 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
	-webkit-backdrop-filter: blur(0);
	backdrop-filter: blur(0);
}
.site-header.is-solid,
.site-header.is-scrolled {
	background-color: rgba(249,245,241,0.95);
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
	border-bottom-color: rgba(213,204,195,0.6);
}
.site-nav { position: relative; display: flex; align-items: center; justify-content: space-between; height: 6rem; }
@media (min-width: 768px) { .site-nav { height: 8rem; } }
.site-nav__side { display: flex; align-items: center; gap: 2.5rem; flex: 1; }
.site-nav__side--right { justify-content: flex-end; gap: 1.5rem; }
@media (max-width: 1023px) {
	.site-nav__side--left { display: none; }
	.site-nav__side--right { flex: 0; }
}
.theme-nav-list { display: none; align-items: center; gap: 2.5rem; list-style: none; }
@media (min-width: 1024px) { .theme-nav-list { display: flex; } }
.theme-nav-link, .theme-nav-list a {
	font-size: 13px;
	font-family: var(--font-body);
	color: rgba(20,28,52,0.8);
	transition: color 0.2s ease;
	cursor: pointer;
}
.theme-nav-link:hover, .theme-nav-list a:hover { color: var(--color-foreground); }
.site-nav__toggle { display: flex; align-items: center; justify-content: center; padding: 0.5rem; margin-left: -0.5rem; position: relative; z-index: 3; flex-shrink: 0; touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
@media (min-width: 1024px) { .site-nav__toggle { display: none; } }
.site-nav__brand { position: absolute; left: 50%; transform: translateX(-50%); display: flex; align-items: center; z-index: 2; pointer-events: none; }
.site-nav__brand .site-logo-img,
.site-nav__brand .site-logo-text { pointer-events: auto; }
.site-logo-img { height: 5rem !important; width: auto !important; display: block; object-fit: contain; }
@media (min-width: 768px) { .site-logo-img { height: 6.5rem !important; } }
.site-logo-text { font-family: var(--font-display); font-size: 1.5rem; line-height: 5rem; display: block; }
@media (min-width: 768px) { .site-logo-text { line-height: 6.5rem; } }
.site-nav__links { display: none; align-items: center; gap: 2.5rem; }
@media (min-width: 1024px) { .site-nav__links { display: flex; } }
.theme-cart-toggle {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 999px;
	border: 1px solid rgba(20,28,52,0.3);
	font-size: 13px;
	transition: border-color 0.2s ease;
}
.theme-cart-toggle:hover { border-color: var(--color-foreground); }
.theme-cart-count { line-height: 1; min-width: 1ch; text-align: center; font-size: 13px; font-family: var(--font-body); }
.site-nav__mobile { display: none; border-top: 1px solid rgba(213,204,195,0.6); }
@media (max-width: 1023px) {
	.site-nav__mobile.is-open {
		display: block;
		padding: 1rem 0;
		animation: fadeIn 0.25s var(--transition-smooth);
	}
	.site-nav__mobile .theme-nav-list {
		display: flex;
		flex-direction: column;
		gap: 0.25rem;
		list-style: none;
	}
}
@media (min-width: 1024px) {
	.site-nav__mobile { display: none !important; }
}
.theme-nav-list--mobile a { font-size: 0.875rem; padding: 0.5rem 0; display: block; }

/* -------------------------------------------------------------------------
   THEME MODAL (contact / policy / sponsors)
   ---------------------------------------------------------------------- */
.theme-modal { position: fixed; inset: 0; z-index: 200; display: none; }
.theme-modal.is-open { display: block; }
.theme-modal__overlay { position: absolute; inset: 0; background: rgba(20,28,52,0.5); animation: fadeIn 0.25s var(--transition-smooth); }
.theme-modal__panel {
	position: relative;
	margin: 4vh auto;
	background: var(--color-background);
	border-radius: 1rem;
	max-width: 32rem;
	width: 90vw;
	max-height: 90vh;
	overflow-y: auto;
	padding: 2rem;
	animation: modalIn 0.3s var(--transition-smooth);
	box-shadow: var(--shadow-elevated);
}
.theme-modal__panel--lg { max-width: 64rem; width: 95vw; height: 88vh; max-height: 88vh; display: flex; flex-direction: column; padding: 0; overflow: hidden; }
@keyframes modalIn { from { opacity: 0; transform: translateY(16px) scale(0.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.theme-modal__close { position: absolute; top: 1rem; right: 1rem; z-index: 5; padding: 0.35rem; opacity: 0.7; }
.theme-modal__close:hover { opacity: 1; }
.theme-modal__title { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 0.5rem; }
.theme-modal__desc { color: rgba(20,28,52,0.7); margin-bottom: 1.25rem; }
.theme-contact-quicklinks { display: flex; flex-wrap: wrap; gap: 1rem; font-size: 0.875rem; color: rgba(20,28,52,0.7); margin-bottom: 1.25rem; }
.theme-contact-quicklinks a { display: inline-flex; align-items: center; gap: 0.5rem; }
.theme-contact-quicklinks a:hover { color: var(--color-foreground); }
.theme-form-row--2col { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 480px) { .theme-form-row--2col { grid-template-columns: 1fr; } }
.theme-form-field { margin-bottom: 1rem; }
.theme-form-field label { display: block; font-size: 0.875rem; font-weight: 500; margin-bottom: 0.375rem; }
.theme-form-field input, .theme-form-field textarea, .theme-contact-form input, .theme-contact-form textarea {
	width: 100%;
	padding: 0.65rem 0.75rem;
	background-color: var(--color-background);
	border: 1px solid var(--color-border);
	border-radius: 0.5rem;
	font-family: var(--font-body);
	font-size: 1rem;
	transition: box-shadow 0.3s ease;
}
.theme-form-field input:focus, .theme-form-field textarea:focus { outline: none; box-shadow: 0 0 0 2px rgba(37,59,126,0.3); }
.theme-form-field textarea { resize: none; }
.theme-form-actions { display: flex; justify-content: flex-end; }
.theme-contact-success { text-align: center; padding: 2rem 0; }
.theme-contact-success__icon { width: 3.5rem; height: 3.5rem; background: var(--color-primary); border-radius: 999px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; color: var(--color-primary-foreground); }
.theme-contact-success h3 { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 0.5rem; }
.theme-contact-success p { color: rgba(20,28,52,0.7); font-size: 0.875rem; }

/* Policy + sponsors modal layout */
.theme-policy-header { padding: 1.5rem 1.5rem 1rem; border-bottom: 1px solid var(--color-border); background: var(--color-butter); }
@media (min-width: 768px) { .theme-policy-header { padding: 1.5rem 2rem 1rem; } }
.theme-policy-header p.theme-eyebrow { margin-bottom: 0.25rem; }
.theme-policy-header h2 { font-size: 1.5rem; line-height: 1.2; margin-top: 0.25rem; }
@media (min-width: 768px) { .theme-policy-header h2 { font-size: 1.875rem; } }
.theme-policy-header__desc { font-size: 0.875rem; color: rgba(20,28,52,0.7); margin-top: 0.25rem; }
.theme-policy-jump { display: none; padding: 0.75rem 1rem; border-bottom: 1px solid var(--color-border); align-items: center; gap: 0.5rem; }
@media (max-width: 767px) { .theme-policy-jump { display: flex; } }
.theme-policy-jump label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; flex-shrink: 0; color: rgba(20,28,52,0.6); }
.theme-policy-jump select { flex: 1; min-width: 0; padding: 0.5rem 0.75rem; border: 1px solid var(--color-border); border-radius: 0.5rem; background: var(--color-background); font-size: 0.875rem; }
.theme-policy-body { flex: 1; display: flex; min-height: 0; overflow: hidden; }
.theme-policy-sidebar { display: none; width: 16rem; flex-shrink: 0; border-right: 1px solid var(--color-border); background: rgba(242,236,228,0.5); overflow-y: auto; padding: 1.5rem 1.25rem; }
@media (min-width: 768px) { .theme-policy-sidebar { display: block; } }
.theme-policy-toc { list-style: none; font-size: 0.875rem; }
.theme-policy-toc__link { width: 100%; text-align: left; padding: 0.5rem 0.75rem; border-radius: 0.5rem; display: flex; gap: 0.5rem; align-items: flex-start; color: rgba(20,28,52,0.7); transition: background-color 0.2s ease, color 0.2s ease; }
.theme-policy-toc__link:hover { background: rgba(20,28,52,0.05); color: var(--color-foreground); }
.theme-policy-toc__link.is-active { background: var(--color-lilac); color: var(--color-background); }
.theme-policy-toc__num { font-size: 11px; font-weight: 600; opacity: 0.5; margin-top: 0.15rem; }
.theme-policy-toc__link.is-active .theme-policy-toc__num { opacity: 0.9; }
.theme-policy-content { flex: 1; overflow-y: auto; position: relative; padding: 2rem 1.5rem; }
@media (min-width: 768px) { .theme-policy-content { padding: 2rem 2.5rem; } }
.theme-policy-content > * { max-width: 42rem; margin: 0 auto; }
.theme-policy-section { scroll-margin-top: 1rem; margin-bottom: 3rem; }
.theme-policy-section h3 { font-size: 1.5rem; margin: 0.5rem 0 1rem; }
@media (min-width: 768px) { .theme-policy-section h3 { font-size: 1.875rem; } }
.theme-policy-section__body { font-size: 15px; line-height: 1.7; color: rgba(20,28,52,0.8); }
.theme-policy-section__body p { margin-bottom: 0.75rem; }
.theme-policy-section__body ol, .theme-policy-section__body ul { padding-left: 1.25rem; margin: 0.5rem 0; }
.theme-policy-section__body li { margin-bottom: 0.5rem; }
.theme-policy-divider { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(213,204,195,0.6); }
.theme-policy-footer-note { padding-top: 1rem; border-top: 1px solid var(--color-border); font-size: 0.875rem; color: rgba(20,28,52,0.7); }
.theme-policy-footer-note__small { font-style: italic; font-size: 0.75rem; margin-top: 0.5rem; }
.theme-back-to-top { position: sticky; bottom: 1rem; float: right; margin: 0 1rem 1rem 0; width: 2.5rem; height: 2.5rem; border-radius: 999px; background: var(--color-lilac); color: var(--color-background); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-elevated); }

.theme-sponsors-tabs { display: flex; gap: 0.5rem; padding: 0.75rem 1.5rem; border-bottom: 1px solid var(--color-border); overflow-x: auto; }
.theme-sponsors-tab { flex-shrink: 0; padding: 0.5rem 1rem; border-radius: 999px; border: 1px solid var(--color-border); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; color: rgba(20,28,52,0.7); }
.theme-sponsors-tab.is-active { background: var(--color-lilac); color: var(--color-background); border-color: var(--color-lilac); }
.theme-sponsors-body { flex: 1; overflow-y: auto; padding: 2rem 1.5rem; max-width: 60rem; margin: 0 auto; }
@media (min-width: 768px) { .theme-sponsors-body { padding: 2rem 2.5rem; } }
.theme-sponsors-intro { font-size: 15px; line-height: 1.7; color: rgba(20,28,52,0.8); margin-bottom: 3rem; }
.theme-sponsors-intro p { margin-bottom: 1rem; }
.theme-sponsors-intro__quote { font-family: var(--font-display); font-style: italic; font-size: 1.125rem; color: var(--color-foreground); padding-top: 0.5rem; }
.theme-sponsors-event { margin-bottom: 3rem; scroll-margin-top: 1rem; }
.theme-sponsors-event__head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 0.5rem; margin-bottom: 1.25rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--color-border); }
.theme-sponsors-event__head h3 { font-size: 1.375rem; }
@media (min-width: 768px) { .theme-sponsors-event__head h3 { font-size: 1.5rem; } }
.theme-sponsors-event__count { font-size: 0.75rem; color: rgba(20,28,52,0.6); }
.theme-sponsors-event__intro { font-size: 0.875rem; color: rgba(20,28,52,0.7); margin-bottom: 1.25rem; }
.theme-sponsors-cta { text-align: center; padding-top: 1.5rem; border-top: 1px solid var(--color-border); }
.theme-sponsors-cta svg { color: var(--color-primary); margin: 0 auto 0.75rem; }
.theme-sponsors-cta p { color: rgba(20,28,52,0.75); font-size: 0.875rem; max-width: 28rem; margin: 0 auto 1rem; }

/* -------------------------------------------------------------------------
   SCROLL REVEAL / ANIMATIONS (Section 2.1)
   ---------------------------------------------------------------------- */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.reveal-item, .fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--transition-smooth), transform 0.7s var(--transition-smooth); }
.reveal-item.is-visible, .fade-up.is-visible { opacity: 1; transform: translateY(0); }
.theme-product-grid .reveal-item,
.theme-product-grid .reveal-item.is-visible { opacity: 1; transform: none; }
body.is-customizer .reveal-item, body.is-customizer .fade-up { opacity: 1 !important; transform: none !important; }
@media (prefers-reduced-motion: reduce) {
	.reveal-item, .fade-up { transition: none; opacity: 1; transform: none; }
}
.theme-shop-item.is-extra { display: none; }
.theme-shop-item.is-extra.is-shown { display: block; }
.theme-shop-item[hidden] { display: none; }

/* -------------------------------------------------------------------------
   HERO
   ---------------------------------------------------------------------- */
.theme-hero { position: relative; background-color: var(--color-background); }
.theme-hero__media { position: relative; width: 100%; height: 92vh; min-height: 620px; overflow: hidden; }
.theme-hero__img { transform: scale(1.05); transition: transform 6s ease-out; }
.theme-hero__scrim { position: absolute; inset: 0; background: rgba(0,0,0,0.45); pointer-events: none; }
.theme-hero__scrim-bottom { position: absolute; inset-inline: 0; bottom: 0; height: 33%; background: linear-gradient(to top, rgba(0,0,0,0.5), transparent); pointer-events: none; }
.theme-hero__inner { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; text-align: center; }
.theme-hero__content { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; max-width: 60rem; padding: 0 0.5rem; }
.theme-hero__kicker { display: block; color: rgba(249,245,241,0.85); text-transform: uppercase; letter-spacing: 0.32em; font-size: 11px; font-weight: 600; margin-bottom: 1.5rem; }
.theme-hero__title { font-family: var(--font-display); font-weight: 400; font-style: italic; color: var(--color-background); line-height: 0.98; letter-spacing: -0.015em; font-size: 2.75rem; }
@media (min-width: 640px) { .theme-hero__title { font-size: 4.5rem; } }
@media (min-width: 1024px) { .theme-hero__title { font-size: 6.5rem; } }
.theme-hero__subtitle { margin-top: 1.5rem; max-width: 42rem; color: rgba(249,245,241,0.9); font-size: 1rem; line-height: 1.6; }
@media (min-width: 768px) { .theme-hero__subtitle { font-size: 1.125rem; } }
.theme-hero__actions { margin-top: 2.5rem; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; }
@media (min-width: 640px) { .theme-hero__actions { flex-direction: row; } }

/* -------------------------------------------------------------------------
   NEXT STEP TILES
   ---------------------------------------------------------------------- */
.theme-section--tiles { padding: 4rem 0 3rem; }
.theme-tiles { display: flex; flex-direction: column; align-items: center; gap: 2.5rem; padding: 1.5rem 0 1rem; }
@media (min-width: 1024px) { .theme-tiles { flex-direction: row; justify-content: center; gap: 3rem; } }
.theme-tile { display: flex; flex-direction: column; align-items: center; gap: 1rem; width: 16rem; text-align: center; }
@media (min-width: 768px) { .theme-tile { width: 18rem; } }
.theme-tile__icon { width: 7rem; height: 7rem; border-radius: 999px; display: flex; align-items: center; justify-content: center; color: var(--color-background); transition: transform 0.3s ease; }
@media (min-width: 768px) { .theme-tile__icon { width: 10rem; height: 10rem; } }
.theme-tile:hover .theme-tile__icon { transform: scale(1.05); }
.theme-tile__icon--nopal { background-color: rgba(25,41,87,0.85); }
.theme-tile__icon--marigold { background-color: rgba(236,171,60,0.85); }
.theme-tile__icon--lilac { background-color: rgba(37,59,126,0.85); }
.theme-tile__kicker { font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--color-lilac); font-weight: 700; }
.theme-tile__label { font-family: var(--font-display); font-size: 1.25rem; line-height: 1.3; margin-top: -0.5rem; }
@media (min-width: 768px) { .theme-tile__label { font-size: 1.5rem; } }
.theme-tile__sub { font-size: 0.875rem; color: rgba(20,28,52,0.7); line-height: 1.6; max-width: 16rem; }

/* -------------------------------------------------------------------------
   PRODUCT GRID / CARDS
   ---------------------------------------------------------------------- */
.theme-product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; align-items: stretch; }
@media (min-width: 768px) { .theme-product-grid { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 2rem; } }
@media (min-width: 1024px) { .theme-product-grid { gap: 2.5rem; } }
.theme-product-grid--featured { grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .theme-product-grid--featured { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 2rem; } }
@media (min-width: 1024px) { .theme-product-grid--featured { gap: 3rem; } }
.theme-product-grid--related { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 1024px) { .theme-product-grid--related { grid-template-columns: repeat(4, minmax(0,1fr)); } }

.theme-product-card-wrap { display: block; height: 100%; }
.theme-product-card { display: flex; flex-direction: column; height: 100%; }
.theme-product-card__media { position: relative; margin-bottom: 1.25rem; transition: transform 0.3s var(--transition-smooth); }
.theme-product-card:hover .theme-product-card__media { transform: translateY(-3px); }
.theme-product-card__image-link,
.theme-product-card__body-link { display: block; text-decoration: none; color: inherit; }
.theme-product-card__image-wrapper { position: relative; aspect-ratio: 1/1; background-color: var(--color-card); border-radius: 1rem; overflow: hidden; }
.theme-product-card__image-wrapper img,
.theme-product-card__image-wrapper .product-card-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.7s var(--transition-smooth);
}
.theme-product-card:hover .theme-product-card__image-wrapper img,
.theme-product-card:hover .theme-product-card__image-wrapper .product-card-img { transform: scale(1.04); }
.theme-product-card__image-wrapper.is-soldout img,
.theme-product-card__image-wrapper.is-soldout .product-card-img { opacity: 0.6; }
.theme-badge { position: absolute; top: 1rem; z-index: 3; padding: 0.25rem 0.75rem; border-radius: 0.375rem; font-size: 11px; font-weight: 500; letter-spacing: 0.02em; }
.theme-badge--soldout { right: 1rem; background: var(--color-foreground); color: var(--color-background); }
.theme-product-card__quick-add {
	position: absolute;
	inset-inline: 1rem;
	bottom: 1rem;
	z-index: 4;
	padding: 0.75rem;
	border-radius: 999px;
	background: var(--color-teal);
	color: var(--color-background);
	border: 1px solid var(--color-teal);
	font-size: 11px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	font-weight: 600;
	text-align: center;
	opacity: 0;
	transform: translateY(0.5rem);
	transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.2s ease, color 0.2s ease;
}
.theme-product-card:hover .theme-product-card__quick-add { opacity: 1; transform: translateY(0); }
.theme-product-card__quick-add:hover { background: var(--color-background); color: var(--color-teal); }
.theme-product-card__info { padding: 0 0.25rem; display: flex; flex-direction: column; gap: 0.375rem; }
.theme-product-card__cat { font-size: 12px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--color-muted-foreground); }
.theme-product-card__title { font-family: var(--font-display); font-weight: 500; font-size: 1rem; line-height: 1.375; color: var(--color-foreground); transition: color 0.3s ease; min-width: 0; }
@media (min-width: 768px) { .theme-product-card__title { font-size: 1.125rem; } }
.theme-product-card:hover .theme-product-card__title { color: var(--color-primary); }
.theme-product-card__price { font-size: 1rem; color: rgba(20,28,52,0.85); }
.theme-product-card__price .woocommerce-Price-amount { font-weight: inherit; }

/* -------------------------------------------------------------------------
   FEATURED / ABOUT / FOUNDER / SERVICES
   ---------------------------------------------------------------------- */
.theme-section--about { position: relative; padding-top: 8rem; padding-bottom: 6rem; }
@media (min-width: 768px) { .theme-section--about { padding-top: 12rem; padding-bottom: 8rem; } }
.theme-about__banner { position: relative; width: 100%; height: 42vh; min-height: 280px; overflow: hidden; margin-bottom: 2.5rem; }
@media (min-width: 768px) { .theme-about__banner { height: 55vh; } }
.theme-about__content { margin-top: 4rem; }
@media (min-width: 768px) { .theme-about__content { margin-top: 6rem; } }
.theme-about__grid { position: relative; display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (max-width: 767px) {
	.theme-about__col {
		text-align: center;
		max-width: 22rem;
		margin-left: auto;
		margin-right: auto;
	}
	.theme-about__rule { margin-left: auto; margin-right: auto; }
	.theme-about__link { margin-left: auto; margin-right: auto; }
}
@media (min-width: 768px) { .theme-about__grid { grid-template-columns: repeat(12, 1fr); gap: 0; } }
.theme-about__col { grid-column: span 4 / span 4; }
.theme-about__col:first-of-type { grid-column-start: 2; }
.theme-about__col p { font-size: 1.125rem; line-height: 1.7; color: rgba(20,28,52,0.9); font-weight: 300; }
.theme-about__rule { height: 1px; width: 3rem; background: var(--color-marigold); margin-bottom: 2rem; }
.theme-about__divider { display: none; grid-column: span 2 / span 2; justify-content: center; }
@media (min-width: 768px) { .theme-about__divider { display: flex; } }
.theme-about__divider::before { content: ''; width: 1px; height: 100%; background: rgba(25,41,87,0.2); }
.theme-about__link { display: inline-flex; flex-direction: column; margin-top: 2.5rem; max-width: 20rem; }
.theme-about__link span:first-child { font-size: 11px; text-transform: uppercase; letter-spacing: 0.15em; font-weight: 600; color: var(--color-foreground); margin-bottom: 0.5rem; transition: color 0.3s ease; }
.theme-about__link:hover span:first-child { color: var(--color-marigold); }
.theme-about__link-rule { position: relative; display: block; height: 1px; background: var(--color-foreground); overflow: hidden; }
.theme-about__link-rule span { position: absolute; inset: 0; background: var(--color-marigold); transform: translateX(-100%); transition: transform 0.5s ease; }
.theme-about__link:hover .theme-about__link-rule span { transform: translateX(0); }
.theme-about__hr { margin-top: 5rem; height: 1px; max-width: 28rem; margin-left: auto; margin-right: auto; background: linear-gradient(to right, transparent, var(--color-marigold), transparent); opacity: 0.4; }

.theme-founder { display: grid; grid-template-columns: 1fr; gap: 3rem; max-width: 72rem; margin: 0 auto; align-items: center; padding-bottom: 5rem; }
@media (min-width: 768px) { .theme-founder { grid-template-columns: 5fr 7fr; gap: 5rem; padding-bottom: 7rem; } }
@media (min-width: 1024px) { .theme-founder { padding-bottom: 8rem; } }
.theme-founder__media { position: relative; }
.theme-founder__photo { position: relative; z-index: 10; aspect-ratio: 3/4; overflow: hidden; }
.theme-founder__quote {
	position: absolute;
	bottom: -1.5rem;
	right: -1.5rem;
	z-index: 20;
	background: var(--color-primary);
	padding: 1.5rem;
	box-shadow: var(--shadow-elevated);
	max-width: 15rem;
	display: none;
}
@media (min-width: 1024px) { .theme-founder__quote { display: block; max-width: 240px; } }
.theme-founder__quote p { font-family: var(--font-display); font-style: italic; font-size: 1.125rem; line-height: 1.3; color: var(--color-background); }
.theme-founder__body { display: flex; flex-direction: column; align-items: flex-start; gap: 1.5rem; max-width: 36rem; }
.theme-eyebrow--nopal { color: var(--color-primary); }
.theme-founder__rule { height: 1px; width: 6rem; background: var(--color-primary); margin-top: 1rem; }
.theme-founder__subtitle { font-family: var(--font-display); font-size: 1.5rem; color: var(--color-primary); padding-top: 0.5rem; }
.theme-founder__body p { font-size: 1.125rem; line-height: 1.7; font-weight: 300; }
.theme-founder__link {
	display: inline-flex;
	align-items: center;
	gap: 1rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.22em;
	font-size: 12px;
	padding-top: 1rem;
}
.theme-founder__link-line { display: block; width: 3rem; height: 1px; background: var(--color-marigold); transition: width 0.5s ease; flex-shrink: 0; }
.theme-founder__link:hover .theme-founder__link-line { width: 5rem; }

.theme-services-list { border-top: 1px solid rgba(20,28,52,0.1); }
.theme-service-row { display: flex; flex-direction: column; padding: 2rem 1rem; border-bottom: 1px solid rgba(20,28,52,0.1); transition: background-color 0.5s ease; }
@media (min-width: 768px) { .theme-service-row { flex-direction: row; align-items: center; padding: 2.5rem 1.5rem; } }
.theme-service-row:hover { background-color: rgba(25,41,87,0.03); }
.theme-service-row__num { font-family: var(--font-display); font-weight: 300; font-size: 3rem; color: var(--color-primary); line-height: 1; margin-bottom: 0.75rem; }
@media (min-width: 768px) { .theme-service-row__num { font-size: 3.75rem; width: 6rem; margin-bottom: 0; } }
@media (min-width: 1024px) { .theme-service-row__num { font-size: 4.5rem; width: 8rem; } }
.theme-service-row__title { flex: 1; }
@media (min-width: 768px) { .theme-service-row__title { padding-right: 2rem; } }
.theme-service-row__title h3 { font-family: var(--font-display); font-weight: 300; font-size: 1.5rem; transition: color 0.3s ease; }
@media (min-width: 768px) { .theme-service-row__title h3 { font-size: 1.875rem; } }
@media (min-width: 1024px) { .theme-service-row__title h3 { font-size: 2.25rem; } }
.theme-service-row:hover .theme-service-row__title h3 { color: var(--color-lilac); }
.theme-service-row__desc { flex: 1; margin-top: 0.5rem; }
@media (min-width: 768px) { .theme-service-row__desc { padding: 0 1.5rem; margin-top: 0; } }
@media (min-width: 1024px) { .theme-service-row__desc { padding: 0 3rem; } }
.theme-service-row__desc p { font-size: 0.875rem; color: rgba(20,28,52,0.7); line-height: 1.6; max-width: 24rem; }
@media (min-width: 768px) { .theme-service-row__desc p { font-size: 1rem; } }
.theme-service-row__icon { margin-top: 1rem; display: flex; color: rgba(20,28,52,0.4); transition: color 0.3s ease, transform 0.3s ease; }
@media (min-width: 768px) { .theme-service-row__icon { margin-top: 0; justify-content: flex-end; width: 6rem; } }
.theme-service-row:hover .theme-service-row__icon { color: var(--color-marigold); transform: scale(1.1); }
.theme-services__more { margin-top: 3rem; display: flex; justify-content: flex-end; }
.theme-services__more a { display: flex; align-items: center; gap: 1rem; font-size: 0.875rem; font-weight: 500; }
.theme-services__more-line { height: 1px; width: 2rem; background: var(--color-lilac); transition: width 0.3s ease; }
.theme-services__more a:hover .theme-services__more-line { width: 4rem; }

/* -------------------------------------------------------------------------
   SHOP SECTION
   ---------------------------------------------------------------------- */
.theme-shop__head { text-align: center; margin-bottom: 3rem; }
.shop-heading { margin-bottom: 2.5rem; }
.theme-shop__search { position: relative; max-width: 28rem; margin: 0 auto 2rem; }
.theme-shop__search-icon { position: absolute; left: 0; top: 50%; transform: translateY(-50%); color: var(--color-muted-foreground); }
.theme-shop__search-input { width: 100%; padding: 0.5rem 0 0.5rem 1.75rem; background: transparent; border: none; border-bottom: 1px solid var(--color-border); font-family: var(--font-body); font-size: 1rem; transition: border-color 0.2s ease; }
.theme-shop__search-input:focus { outline: none; border-bottom-color: var(--color-foreground); }
.theme-shop__cats { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; margin-bottom: 1rem; overflow-x: visible; }
@media (max-width: 767px) {
	.theme-shop__cats { gap: 0.375rem; }
	.theme-cat-pill {
		flex-shrink: 1;
		padding: 0.4rem 0.85rem;
		font-size: 10px;
		letter-spacing: 0.12em;
	}
}
@media (min-width: 768px) { .theme-shop__cats { flex-wrap: wrap; justify-content: center; } }
.theme-cat-pill { flex-shrink: 0; padding: 0.5rem 1.25rem; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; border-radius: 999px; border: 1px solid var(--color-border); background: transparent; color: var(--color-foreground); transition: all 0.3s ease; }
.theme-cat-pill:hover { border-color: var(--color-lilac); color: var(--color-lilac); }
.theme-cat-pill.is-active { background: var(--color-lilac); color: var(--color-background); border-color: var(--color-lilac); }
.theme-shop__price-toggle-wrap { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
.theme-shop__price-toggle { display: flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-muted-foreground); transition: color 0.3s ease; }
.theme-shop__price-toggle:hover { color: var(--color-foreground); }
.theme-shop__price-toggle svg { transition: transform 0.3s ease; }
.theme-shop__price-toggle.is-open svg { transform: rotate(180deg); }
.theme-shop__price-panel { width: 100%; max-width: 22rem; }
.theme-shop__price-labels { display: flex; justify-content: space-between; font-size: 0.875rem; color: var(--color-muted-foreground); margin-top: 0.5rem; }

.price-range-wrapper { position: relative; height: 1.5rem; margin-top: 0.5rem; }
.range-track-bg, .range-track-fill { position: absolute; height: 4px; top: 50%; transform: translateY(-50%); pointer-events: none; border-radius: 999px; }
.range-track-bg { left: 0; right: 0; background: var(--color-border); }
.range-track-fill { background: var(--color-lilac); }
.range-input { position: absolute; left: 0; top: 0; width: 100%; height: 100%; margin: 0; -webkit-appearance: none; appearance: none; background: transparent; pointer-events: none; }
.range-input::-webkit-slider-thumb { -webkit-appearance: none; pointer-events: auto; width: 16px; height: 16px; border-radius: 999px; background: var(--color-lilac); border: 2px solid var(--color-background); box-shadow: 0 1px 3px rgba(0,0,0,0.3); cursor: pointer; }
.range-input::-moz-range-thumb { pointer-events: auto; width: 16px; height: 16px; border-radius: 999px; background: var(--color-lilac); border: 2px solid var(--color-background); cursor: pointer; }
.range-input::-moz-range-track { background: transparent; }
.range-input--max { z-index: 3; }
.range-input--min { z-index: 4; }

.theme-shop__empty { text-align: center; padding: 5rem 0; color: var(--color-muted-foreground); }
.theme-shop__empty[hidden] { display: none; }

/* -------------------------------------------------------------------------
   GIVE & SPONSOR
   ---------------------------------------------------------------------- */
.theme-give { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .theme-give { grid-template-columns: 5fr 7fr; gap: 4rem; } }
.theme-give__image { position: relative; aspect-ratio: 4/5; border-radius: 0.5rem; overflow: hidden; }
.theme-give__content p { font-size: 1.125rem; line-height: 1.7; color: rgba(20,28,52,0.8); max-width: 36rem; margin-top: 1.5rem; margin-bottom: 2rem; }
.theme-give__cards { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-bottom: 2.5rem; }
@media (min-width: 640px) { .theme-give__cards { grid-template-columns: 1fr 1fr; } }
.theme-give__card { display: flex; align-items: flex-start; gap: 1rem; padding: 1.5rem; background: var(--color-background); border-radius: 0.5rem; border: 1px solid var(--color-border); text-align: left; transition: border-color 0.2s ease; }
.theme-give__card:hover { border-color: var(--color-lilac); }
.theme-give__card-icon { color: var(--color-marigold); flex-shrink: 0; margin-top: 0.15rem; }
.theme-give__card strong { display: block; font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 0.25rem; transition: color 0.2s ease; }
.theme-give__card:hover strong { color: var(--color-lilac); }
.theme-give__card em { display: block; font-style: normal; font-size: 0.875rem; color: rgba(20,28,52,0.7); }

.theme-sponsors-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; max-width: 60rem; margin: 0 auto 2.5rem; }
@media (min-width: 640px) { .theme-sponsors-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 768px) { .theme-sponsors-grid { grid-template-columns: repeat(6, 1fr); gap: 1rem; } }
.theme-sponsor-tile { aspect-ratio: 4/3; background: var(--color-background); border: 1px solid var(--color-border); border-radius: 0.5rem; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.375rem; padding: 0.75rem; transition: border-color 0.2s ease, box-shadow 0.2s ease; }
.theme-sponsor-tile:hover { border-color: rgba(20,28,52,0.4); box-shadow: var(--shadow-soft); }
.theme-sponsor-tile img { max-height: 3rem; width: auto; object-fit: contain; filter: grayscale(1); opacity: 0.7; transition: filter 0.2s ease, opacity 0.2s ease; }
.theme-sponsor-tile:hover img { filter: grayscale(0); opacity: 1; }
.theme-sponsor-tile__placeholder { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(20,28,52,0.4); text-align: center; }
.theme-sponsor-tile p { font-size: 11px; color: rgba(20,28,52,0.6); text-align: center; line-height: 1.2; }
.theme-sponsor-tile--modal { aspect-ratio: 4/3; }
.theme-sponsors-grid--modal { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
@media (min-width: 640px) { .theme-sponsors-grid--modal { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .theme-sponsors-grid--modal { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .theme-sponsors-grid--modal { grid-template-columns: repeat(5, 1fr); } }
.theme-sponsors__actions { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; }
@media (min-width: 640px) { .theme-sponsors__actions { flex-direction: row; } }

/* -------------------------------------------------------------------------
   POLICY SUMMARY
   ---------------------------------------------------------------------- */
.theme-policy-cards { display: grid; grid-template-columns: 1fr; gap: 1rem; max-width: 60rem; margin: 0 auto 3rem; }
@media (min-width: 640px) { .theme-policy-cards { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .theme-policy-cards { grid-template-columns: repeat(3, 1fr); } }
.theme-policy-card { background: var(--color-card); border: 1px solid var(--color-border); border-radius: 0.75rem; padding: 1.5rem; display: flex; align-items: flex-start; gap: 1.25rem; transition: border-color 0.2s ease; }
.theme-policy-card:hover { border-color: rgba(20,28,52,0.3); }
.theme-policy-card__icon { flex-shrink: 0; width: 2.75rem; height: 2.75rem; display: flex; align-items: center; justify-content: center; color: var(--color-lilac); }
.theme-policy-card h3 { font-size: 15px; font-weight: 500; line-height: 1.3; font-family: var(--font-body); }
.theme-policy-card p { color: rgba(20,28,52,0.65); font-size: 0.875rem; line-height: 1.5; margin-top: 0.25rem; }

/* -------------------------------------------------------------------------
   FAQ
   ---------------------------------------------------------------------- */
.theme-faq__wrap { max-width: 56rem; margin: 0 auto; }
.theme-faq__tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.625rem; margin-bottom: 2.5rem; overflow-x: visible; }
@media (max-width: 767px) {
	.theme-faq__tabs { gap: 0.5rem; }
	.theme-faq__tab {
		flex-shrink: 1;
		padding: 0.5rem 0.85rem;
		font-size: 10px;
		letter-spacing: 0.14em;
	}
}
@media (min-width: 768px) { .theme-faq__tabs { flex-wrap: wrap; justify-content: center; } }
.theme-faq__tab { flex-shrink: 0; border-radius: 999px; border: 1px solid var(--color-border); padding: 0.625rem 1.25rem; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600; transition: all 0.3s ease; }
.theme-faq__tab--teal { border-color: var(--color-teal); color: var(--color-teal); }
.theme-faq__tab--teal.is-active { background: var(--color-teal); color: var(--color-background); }
.theme-faq__tab--rosa { border-color: var(--color-rosa); color: var(--color-foreground); }
.theme-faq__tab--rosa.is-active { background: var(--color-rosa); color: var(--color-foreground); }
.theme-faq__tab--lilac { border-color: var(--color-lilac); color: var(--color-lilac); }
.theme-faq__tab--lilac.is-active { background: var(--color-lilac); color: var(--color-background); }
.theme-faq__tab--nopal { border-color: var(--color-primary); color: var(--color-primary); }
.theme-faq__tab--nopal.is-active { background: var(--color-primary); color: var(--color-background); }
.theme-faq__tab--marigold { border-color: var(--color-marigold); color: var(--color-foreground); }
.theme-faq__tab--marigold.is-active { background: var(--color-marigold); color: var(--color-foreground); }
.theme-faq__panels { border-top: 1px solid rgba(20,28,52,0.15); }
.theme-faq__panel { display: none; }
.theme-faq__panel.is-active { display: block; }
.theme-faq__item { border-bottom: 1px solid rgba(20,28,52,0.15); }
.theme-faq__question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.25rem 0; text-align: left; }
.theme-faq__question span:first-child { font-family: var(--font-display); font-size: 1.125rem; line-height: 1.4; }
@media (min-width: 768px) { .theme-faq__question span:first-child { font-size: 1.25rem; } }
.theme-faq__icon { flex-shrink: 0; width: 2.25rem; height: 2.25rem; border-radius: 999px; border: 1px solid var(--color-border); display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
.theme-faq__icon svg { transition: transform 0.3s ease; }
.theme-faq__item.is-open .theme-faq__icon svg { transform: rotate(180deg); }
.theme-faq__answer { max-height: 0; overflow: hidden; transition: max-height 0.3s var(--transition-smooth); }
.theme-faq__item.is-open .theme-faq__answer { max-height: 40rem; }
.theme-faq__answer p { color: rgba(20,28,52,0.75); font-size: 1rem; line-height: 1.6; padding-bottom: 1.5rem; padding-right: 3rem; }

/* -------------------------------------------------------------------------
   CTA BAND
   ---------------------------------------------------------------------- */
.theme-cta-band { position: relative; overflow: hidden; }
.theme-cta-band__grid { display: grid; grid-template-columns: 1fr; min-height: 420px; }
@media (min-width: 1024px) { .theme-cta-band__grid { grid-template-columns: 1fr 1fr; } }
.theme-cta-band__media { position: relative; overflow: hidden; min-height: 280px; }
@media (min-width: 1024px) { .theme-cta-band__media { min-height: 480px; } }
.theme-cta-band__content { position: relative; background: var(--color-primary); color: var(--color-primary-foreground); display: flex; align-items: center; justify-content: center; padding: 5rem 2rem; }
@media (min-width: 768px) { .theme-cta-band__content { padding: 6rem 4rem; } }
.theme-cta-band__content > div { max-width: 28rem; text-align: center; }
.cta-band__title { font-family: var(--font-display); font-weight: 400; font-size: 2.25rem; line-height: 1.2; margin: 1.25rem 0 1.5rem; color: var(--color-background); }
@media (min-width: 768px) { .cta-band__title { font-size: 3rem; } }
@media (min-width: 1024px) { .cta-band__title { font-size: 3.75rem; } }
.theme-cta-band__content p { color: rgba(249,245,241,0.9); line-height: 1.6; margin-bottom: 2.5rem; }
.theme-cta-band__actions { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; }
@media (min-width: 640px) { .theme-cta-band__actions { flex-direction: row; } }

/* -------------------------------------------------------------------------
   FOOTER
   ---------------------------------------------------------------------- */
.site-footer { border-top: 1px solid var(--color-border); background: var(--color-butter); }
.theme-footer-inner { padding-block: 4rem; }
@media (min-width: 1024px) { .theme-footer-inner { padding-block: 5rem; } }
.theme-footer-top { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 3rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--color-border); }
@media (min-width: 640px) { .theme-footer-top { flex-direction: row; align-items: center; justify-content: space-between; } }
.theme-footer-logo .site-logo-img { height: 10rem; }
@media (min-width: 640px) { .theme-footer-logo .site-logo-img { height: 12rem; } }
.theme-footer-tagline { max-width: 36rem; }
@media (min-width: 640px) { .theme-footer-tagline { text-align: right; } }
.theme-footer-tagline p { font-size: 0.875rem; color: rgba(20,28,52,0.7); line-height: 1.6; }
.theme-footer-contact-line { margin-top: 0.75rem; }
.theme-footer-dot { margin: 0 0.5rem; color: rgba(20,28,52,0.4); }
.theme-footer-columns { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
@media (min-width: 768px) { .theme-footer-columns { grid-template-columns: repeat(4, 1fr); gap: 3rem; } }
.theme-footer-col h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 1.25rem; }
.theme-footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.theme-footer-col a { font-size: 0.875rem; color: rgba(20,28,52,0.7); transition: color 0.2s ease; }
.theme-footer-col a:hover { color: var(--color-foreground); }
.theme-footer-col--reach a { display: inline-flex; align-items: center; gap: 0.5rem; }
.theme-footer-address { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: rgba(20,28,52,0.7); }
.theme-footer-bottom { margin-top: 3.5rem; padding-top: 1.5rem; border-top: 1px solid var(--color-border); display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 1rem; text-align: center; }
@media (min-width: 640px) { .theme-footer-bottom { flex-direction: row; text-align: left; } }
.theme-footer-verse { font-size: 12px; color: var(--color-primary); font-family: var(--font-display); font-style: italic; letter-spacing: 0.02em; }
.theme-footer-social { display: flex; align-items: center; gap: 1.25rem; font-size: 0.875rem; }
.theme-footer-follow { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(20,28,52,0.6); }
.theme-footer-social a { color: rgba(20,28,52,0.8); }
.theme-footer-social a:hover { color: var(--color-foreground); }
.theme-footer-copy { font-size: 12px; color: var(--color-muted-foreground); }
.theme-footer-copy a { text-decoration: underline; }
.theme-footer-copy a:hover { color: var(--color-foreground); }

/* -------------------------------------------------------------------------
   CART DRAWER
   ---------------------------------------------------------------------- */
#theme-cart-overlay { position: fixed; inset: 0; z-index: 90; background: rgba(20,28,52,0.2); 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: var(--color-background);
	z-index: 91;
	box-shadow: var(--shadow-elevated);
	display: flex;
	flex-direction: column;
	transform: translateX(100%);
	transition: transform 0.35s var(--transition-smooth);
}
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__header h2 { font-family: var(--font-display); font-size: 1.125rem; font-weight: 700; }
.theme-cart-drawer__close { padding: 0.25rem; opacity: 0.7; }
.theme-cart-drawer__close:hover { opacity: 1; }
.theme-cart-drawer__empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 1.5rem; text-align: center; gap: 0.5rem; }
.theme-cart-drawer__empty-icon { color: var(--color-muted-foreground); margin-bottom: 0.5rem; }
.theme-cart-drawer__empty p { color: var(--color-muted-foreground); margin-bottom: 1rem; }
.theme-cart-drawer__items { flex: 1; overflow-y: auto; padding: 1.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.theme-cart-item { display: flex; gap: 1rem; }
.theme-cart-item__thumb { position: relative; width: 5rem; height: 6rem; background: var(--color-secondary); overflow: hidden; flex-shrink: 0; display: block; }
.theme-cart-item__body { flex: 1; min-width: 0; }
.theme-cart-item__name { font-size: 0.875rem; font-weight: 500; display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.theme-cart-item__name:hover { opacity: 0.7; }
.theme-cart-item__price { font-size: 0.875rem; color: var(--color-muted-foreground); margin-top: 0.15rem; }
.theme-cart-item__variation { font-size: 0.75rem; color: var(--color-muted-foreground); margin-top: 0.25rem; display: flex; gap: 0.5rem; flex-wrap: wrap; }
.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; }
.theme-cart-item__controls button:hover { background: var(--color-secondary); }
.theme-cart-item__qty { font-size: 0.875rem; width: 1.5rem; text-align: center; }
.theme-cart-item__remove { margin-left: auto; font-size: 0.875rem; color: var(--color-muted-foreground); }
.theme-cart-item__remove:hover { color: var(--color-foreground); }
.theme-cart-drawer__footer { padding: 1.5rem; border-top: 1px solid var(--color-border); display: flex; flex-direction: column; gap: 1rem; }
.theme-cart-drawer__subtotal { display: flex; justify-content: space-between; font-size: 0.875rem; }
.theme-cart-drawer__shipping { font-size: 0.875rem; color: var(--color-muted-foreground); }

/* -------------------------------------------------------------------------
   WOOCOMMERCE — ADD TO CART BUTTON OVERRIDES (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: none !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;
}
.single-product .single_add_to_cart_button.loading::after,
.ajax_add_to_cart.loading::after { display: none !important; }

/* Card compact quick-add button — overrides globals above */
.theme-product-card .add_to_cart_button.ajax_add_to_cart,
.theme-product-card-wrap .add_to_cart_button.ajax_add_to_cart {
	min-height: unset !important;
	height: auto !important;
	padding: 0.75rem 1rem !important;
	border-radius: 999px !important;
	background-color: var(--color-teal) !important;
	position: absolute !important;
}
.theme-product-card .add_to_cart_button.ajax_add_to_cart:hover {
	background-color: var(--color-background) !important;
	color: var(--color-teal) !important;
}

.woocommerce-page a.added_to_cart.wc-forward,
.single-product a.added_to_cart.wc-forward,
body a.added_to_cart.wc-forward { display: none !important; }

.ajax_add_to_cart.theme-btn-loading { opacity: 0.6 !important; pointer-events: none !important; cursor: wait !important; }

/* -------------------------------------------------------------------------
   SINGLE PRODUCT PAGE (Lovable ProductDetail parity)
   ---------------------------------------------------------------------- */
body.single-product .woocommerce div.product,
body.single-product .theme-product-layout {
	margin: 0;
	padding: 0;
	float: none;
	width: 100%;
	max-width: none;
}

.theme-single-product {
	padding: 0.5rem 0 0;
	background: var(--color-background);
}
@media (min-width: 1024px) {
	.theme-single-product { padding-top: 0.75rem; }
}

.theme-single-product .theme-breadcrumb {
	padding: 1.5rem 0;
	font-size: 13px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--color-muted-foreground);
	font-family: var(--font-body);
}
.theme-single-product .theme-breadcrumb a { transition: color 0.2s ease; }
.theme-single-product .theme-breadcrumb a:hover { color: var(--color-foreground); }
.theme-single-product .theme-breadcrumb__sep { margin: 0 0.5rem; opacity: 0.5; }
.theme-single-product .theme-breadcrumb__current { color: var(--color-foreground); }

.theme-single-product .theme-product-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 2.5rem;
	padding: 1rem 0 6rem;
	align-items: start;
}
@media (min-width: 1024px) {
	.theme-single-product .theme-product-layout {
		grid-template-columns: repeat(12, minmax(0, 1fr));
		gap: 4rem;
	}
}

.theme-single-product .theme-product-gallery,
.theme-single-product .theme-product-info {
	min-width: 0;
}
@media (min-width: 1024px) {
	.theme-single-product .theme-product-gallery { grid-column: span 7 / span 7; }
	.theme-single-product .theme-product-info { grid-column: span 5 / span 5; }
}

.theme-single-product .theme-product-gallery--mobile { display: block; }
.theme-single-product .theme-product-gallery--desktop { display: none; }
@media (min-width: 1024px) {
	.theme-single-product .theme-product-gallery--mobile { display: none; }
	.theme-single-product .theme-product-gallery--desktop {
		display: flex;
		flex-direction: column;
		gap: 1rem;
	}
}

.theme-single-product .theme-product-main-image,
.theme-single-product .theme-product-stack-image {
	position: relative;
	aspect-ratio: 1 / 1;
	background: var(--color-secondary);
	overflow: hidden;
}

.theme-single-product .theme-product-detail-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.theme-single-product .theme-product-thumbnails {
	display: flex;
	gap: 0.75rem;
	margin-top: 1rem;
	overflow-x: auto;
	padding-bottom: 0.25rem;
}

.theme-single-product .theme-thumb {
	position: relative;
	width: 5rem;
	height: 5rem;
	flex-shrink: 0;
	overflow: hidden;
	background: var(--color-secondary);
	border: none;
	padding: 0;
	cursor: pointer;
}

.theme-single-product .theme-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.6;
	transition: opacity 0.2s ease;
}

.theme-single-product .theme-thumb.is-active img,
.theme-single-product .theme-thumb:hover img { opacity: 1; }

.theme-single-product .theme-thumb::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	background: var(--color-foreground);
	opacity: 0;
	transition: opacity 0.2s ease;
}

.theme-single-product .theme-thumb.is-active::after { opacity: 1; }

@media (min-width: 1024px) {
	.theme-single-product .theme-product-info {
		position: sticky;
		top: 7rem;
		align-self: start;
		padding-left: 1rem;
	}
}

.theme-single-product .theme-product-info__cat {
	display: block;
	font-size: 13px;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--color-muted-foreground);
	font-family: var(--font-body);
}

.theme-single-product .theme-product-title {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: 1.875rem;
	line-height: 1.1;
	margin: 0.75rem 0 1.25rem;
	color: var(--color-foreground);
}

@media (min-width: 768px) {
	.theme-single-product .theme-product-title { font-size: 2.25rem; }
}

@media (min-width: 1024px) {
	.theme-single-product .theme-product-title { font-size: 2.75rem; }
}

.theme-single-product .theme-product-info__price {
	font-size: 1.25rem;
	margin-bottom: 1.5rem;
	font-family: var(--font-body);
	color: var(--color-foreground);
}

.theme-single-product .theme-product-info__price .woocommerce-Price-amount,
.theme-single-product .theme-product-info__price .amount {
	font-weight: 400;
	color: inherit;
}

.theme-single-product .theme-product-info__excerpt {
	color: var(--color-muted-foreground);
	line-height: 1.625;
	margin-bottom: 2rem;
	font-family: var(--font-body);
	font-size: 1rem;
}

.theme-single-product .theme-stock-indicator--out {
	color: #bd2828;
	font-size: 0.875rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

.theme-single-product .theme-quantity-wrapper { margin-bottom: 1rem; }

.theme-single-product .theme-quantity-label {
	font-family: var(--font-body);
	font-size: 13px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--color-muted-foreground);
	margin: 0 0 0.75rem;
	font-weight: 400;
}

.theme-single-product .theme-quantity-controls {
	display: inline-flex;
	align-items: center;
	border: 1px solid var(--color-border);
}

.theme-single-product .theme-qty-minus,
.theme-single-product .theme-qty-plus {
	padding: 0.5rem 0.75rem;
	transition: background-color 0.2s ease;
	border: none;
	background: transparent;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: inherit;
}

.theme-single-product .theme-qty-minus:hover,
.theme-single-product .theme-qty-plus:hover { background: var(--color-secondary); }

.theme-single-product .theme-qty-value {
	padding: 0.5rem 1rem;
	min-width: 2.75rem;
	text-align: center;
	font-family: var(--font-body);
	font-size: 0.875rem;
	line-height: 1.25rem;
}

.theme-single-product .theme-add-to-cart-area { margin: 0; }

.theme-single-product .theme-product-cta.single_add_to_cart_button {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: unset !important;
	height: auto !important;
	padding: 1rem 1.5rem !important;
	border-radius: 999px !important;
	border: none !important;
	background-color: var(--color-foreground) !important;
	color: var(--color-background) !important;
	font-family: var(--font-body) !important;
	font-size: 12px !important;
	letter-spacing: 0.25em !important;
	text-transform: uppercase !important;
	font-weight: 500 !important;
	line-height: 1.2 !important;
	transition: background-color 0.2s ease, opacity 0.2s ease !important;
}

.theme-single-product .theme-product-cta.single_add_to_cart_button:hover {
	background-color: rgba(20, 28, 52, 0.9) !important;
	color: var(--color-background) !important;
	opacity: 1 !important;
}

.theme-single-product .theme-product-cta.single_add_to_cart_button.is-added,
.theme-single-product .theme-product-cta.single_add_to_cart_button.disabled {
	opacity: 0.6 !important;
	cursor: not-allowed !important;
	pointer-events: none !important;
}

.theme-single-product .theme-product-accordions {
	margin-top: 2.5rem;
	border-top: 1px solid var(--color-border);
}

.theme-single-product .theme-accordion { border-top: 1px solid var(--color-border); }
.theme-single-product .theme-accordion--features { border-top: none; }

.theme-single-product .theme-accordion__toggle {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.25rem 0;
	text-align: left;
	border: none;
	background: transparent;
	cursor: pointer;
	color: inherit;
}

.theme-single-product .theme-accordion__toggle span {
	font-size: 13px;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	font-family: var(--font-body);
}

.theme-single-product .theme-accordion__toggle svg {
	transition: transform 0.3s ease;
	flex-shrink: 0;
}

.theme-single-product .theme-accordion.is-open .theme-accordion__toggle svg { transform: rotate(180deg); }

.theme-single-product .theme-accordion__panel {
	display: none;
	padding-bottom: 1.5rem;
	font-family: var(--font-body);
}

.theme-single-product .theme-accordion.is-open .theme-accordion__panel { display: block; }

.theme-single-product .theme-product-features-text {
	font-size: 15px;
	color: var(--color-muted-foreground);
	line-height: 1.625;
	margin-bottom: 1rem;
	white-space: pre-line;
}

.theme-single-product .theme-product-features-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.theme-single-product .theme-product-features-list li,
.theme-single-product .theme-accordion__panel p {
	font-size: 15px;
	color: var(--color-muted-foreground);
	line-height: 1.625;
}

.theme-single-product .theme-product-features-list li {
	display: flex;
	align-items: flex-start;
	margin-bottom: 0.5rem;
}

.theme-single-product .theme-product-features-list li::before {
	content: '';
	width: 4px;
	height: 4px;
	background: var(--color-foreground);
	border-radius: 999px;
	margin: 0.5rem 0.75rem 0 0;
	flex-shrink: 0;
}

.theme-single-product .theme-accordion--shipping .theme-accordion__panel p + p { margin-top: 0.75rem; }

.theme-single-product .theme-product-accordions__rule {
	border-top: 1px solid var(--color-border);
}

.theme-single-product .theme-related-products {
	padding: 5rem 0;
	border-top: 1px solid var(--color-border);
}

.theme-single-product .theme-related__head {
	text-align: center;
	margin-bottom: 3rem;
}

.theme-single-product .theme-related__kicker {
	font-family: var(--font-display);
	font-style: italic;
	font-size: 1rem;
	color: var(--color-muted-foreground);
	margin: 0 0 0.5rem;
}

.theme-single-product .theme-related__head h2 {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: 1.875rem;
	line-height: 1.2;
	margin: 0;
}

@media (min-width: 768px) {
	.theme-single-product .theme-related__head h2 { font-size: 2.25rem; }
}

.theme-single-product .theme-product-grid--related { gap: 1.5rem; }

@media (min-width: 1024px) {
	.theme-single-product .theme-product-grid--related { gap: 2rem; }
}

/* -------------------------------------------------------------------------
   NOTICES / BREADCRUMBS (Section 14)
   ---------------------------------------------------------------------- */
.single-product .woocommerce-message,
.single-product .woocommerce-info,
#theme-cart-drawer .woocommerce-message { display: none; }
.woocommerce-message, .woocommerce-info, .woocommerce-error {
	font-family: var(--font-body);
	border-radius: 0.5rem;
	padding: 1rem 1.5rem;
	margin-bottom: 1.5rem;
	border: 1px solid var(--color-border);
	background: var(--color-card);
}
.woocommerce-breadcrumb { display: none; }

/* -------------------------------------------------------------------------
   404 / GENERIC PAGE
   ---------------------------------------------------------------------- */
.theme-404 { min-height: 60vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 1rem; padding-block: 4rem; }
.theme-404 h1 { font-size: 3rem; }
.theme-404__link { text-decoration: underline; color: var(--color-primary); }
.page-title { font-family: var(--font-display); font-weight: 400; font-size: 2.25rem; margin-bottom: 2rem; }
.theme-page-wrap { padding-block: 3rem 5rem; }

/* -------------------------------------------------------------------------
   WOOCOMMERCE CHECKOUT BLOCK (Section 13)
   ---------------------------------------------------------------------- */
body.woocommerce-checkout .site-main,
body.woocommerce-cart .site-main,
body.woocommerce-account .site-main { padding-top: 1rem; padding-bottom: 4rem; }

body.woocommerce-checkout .theme-page-wrap .entry-content,
body.woocommerce-cart .theme-page-wrap .entry-content,
body.woocommerce-account .theme-page-wrap .entry-content,
body.woocommerce-checkout .theme-page-wrap .wc-block-checkout,
body.woocommerce-cart .theme-page-wrap .wp-block-woocommerce-cart,
body.woocommerce-account .theme-page-wrap .woocommerce {
	max-width: 100%;
}

body.woocommerce-checkout .wc-block-checkout { display: block; }
@media (min-width: 768px) {
	body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout.is-large,
	body.woocommerce-checkout .wc-block-checkout__main-sidebar-layout {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: var(--checkout-gap);
		align-items: start;
	}
}
body.woocommerce-checkout .wc-block-checkout__main,
body.woocommerce-checkout .wc-block-checkout__sidebar {
	min-width: 0;
	width: 100%;
	max-width: none;
}
body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-components-select select,
body.woocommerce-checkout .wc-block-components-textarea textarea {
	width: 100% !important;
	max-width: none !important;
	font-family: var(--font-body);
	border: 1px solid var(--color-border);
	border-radius: 0.5rem;
	background-color: var(--color-background);
	color: var(--color-foreground);
	padding: revert;
}
body.woocommerce-checkout .wc-block-components-text-input input:focus,
body.woocommerce-checkout .wc-block-components-select select:focus { outline: none; box-shadow: 0 0 0 2px rgba(37,59,126,0.3); }
body.woocommerce-checkout .wc-block-checkout__sidebar {
	background-color: var(--color-card);
	border-radius: var(--card-radius);
	padding: var(--section-padding);
}
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-notice-banner { border-radius: 0.5rem; }
.woocommerce-checkout .form-row .input-text,
.woocommerce-checkout .form-row select { border: 1px solid var(--color-border); border-radius: 0.5rem; font-family: var(--font-body); }

/* -------------------------------------------------------------------------
   THANK YOU PAGE (Section 22.8)
   ---------------------------------------------------------------------- */
body.theme-thankyou-page { overflow-x: hidden; }
body.theme-thankyou-page .woocommerce-order-details table { width: 100%; table-layout: fixed; }
body.theme-thankyou-page .woocommerce-order h2,
body.theme-thankyou-page .woocommerce-order-details__title { padding: 0 0 1rem 0; font-family: var(--font-display); font-size: 1.75rem; }
body.theme-thankyou-page .woocommerce-order-details tfoot th { text-align: left; }
body.theme-thankyou-page .woocommerce-order-details tfoot td { text-align: right; }
body.theme-thankyou-page .woocommerce-order-overview { list-style: none; display: flex; flex-wrap: wrap; gap: 1.5rem; padding: 1.5rem; background: var(--color-card); border-radius: var(--card-radius); margin-bottom: 2rem; }
@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; border: 1px solid var(--color-border); border-radius: 0.5rem; padding: 1rem; }

/* -------------------------------------------------------------------------
   MISC / UTILITIES
   ---------------------------------------------------------------------- */
[hidden] { display: none !important; }
