/*
 * Fully Booked — theme stylesheet.
 * Theme by The Free Website Guys.
 */

/* =========================================================================
 * ROOT TOKENS
 * ========================================================================= */
:root {
	--color-background: #fbf8f4;
	--color-foreground: #1e1d1a;
	--color-primary: #c39755;
	--color-primary-foreground: #fefdfb;
	--color-secondary: #f3efe7;
	--color-muted: #e9e4dd;
	--color-muted-foreground: #67635b;
	--color-accent: #6a7854;
	--color-highlight: #ca9072;
	--color-border: #e2ddd4;
	--color-button-text: #fefdfb;
	--logo-height: 56px;

	--font-display: 'Cormorant Garamond', 'Playfair Display', serif;
	--font-body: 'Jost', 'Inter', 'Helvetica Neue', sans-serif;

	--radius: 0.25rem;
	--btn-radius: 0;
	--btn-height: 3rem;
	--btn-padding: 0 2rem;
	--btn-font-size: 0.6875rem;
	--btn-font-weight: 600;
	--btn-letter-spacing: 0.28em;
	--btn-text-transform: uppercase;
	--btn-icon-padding: 0.5rem;
	--card-radius: 0.5rem;
	--section-padding: 2rem;
	--header-height: 4.2rem;
	--shadow-soft: 0 6px 24px -8px rgba(30, 29, 26, 0.16);
	--shadow-elevated: 0 14px 40px -12px rgba(30, 29, 26, 0.3);
	--transition-smooth: cubic-bezier(0.25, 0.4, 0.25, 1);
}

/* =========================================================================
 * RESET / BASE
 * ========================================================================= */
* { box-sizing: border-box; }
html, body { overflow-x: hidden; }
body {
	margin: 0;
	background: var(--color-background);
	color: var(--color-foreground);
	font-family: var(--font-body);
	font-weight: 400;
	font-size: 1rem;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}
body::before {
	content: '';
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: 9999;
	opacity: 0.02;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
	background-repeat: repeat;
	background-size: 128px 128px;
}
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	font-weight: 500;
	font-size: inherit;
	letter-spacing: -0.01em;
	margin: 0;
}
p { margin: 0; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; background: none; border: none; padding: 0; cursor: pointer; color: inherit; }
input, textarea, select { font-family: inherit; }
img { display: block; max-width: 100%; }
img:not(.theme-product-card-img):not(.featured-row__img-wrap img):not(.theme-cart-drawer__item-image img):not(.theme-cart-drawer__pair-image img):not(.theme-product-main-image img):not(.theme-product-thumb img):not(.hero-section__img):not(.cover-img):not(.cat-tiles__tile img):not(.quote-divider__img):not(.theme-about-image):not(.theme-makers-image):not(.theme-contact-note-image):not(.search-dialog__result-image img) {
	max-width: 100%;
	height: auto;
}
.cover-img, .hero-section__img, .theme-product-card-img, .featured-row__img-wrap img, .cat-tiles__tile img, .quote-divider__img, .theme-about-image, .theme-makers-image, .theme-contact-note-image,
.theme-cart-drawer__item-image img, .theme-cart-drawer__pair-image img, .theme-product-main-image img, .theme-product-thumb img, .search-dialog__result-image img {
	width: 100%;
	height: 100% !important;
	object-fit: cover;
}
.cover-img, .hero-section__img, .cat-tiles__tile img, .quote-divider__img, .theme-about-image, .theme-makers-image, .theme-contact-note-image {
	position: absolute;
	inset: 0;
}
.theme-product-card-img, .featured-row__img-wrap img, .theme-cart-drawer__item-image img, .theme-cart-drawer__pair-image img {
	position: relative;
}
.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
}
.skip-link { z-index: 100000; }

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* =========================================================================
 * LAYOUT UTILITIES
 * ========================================================================= */
.container-wide {
	width: 100%;
	max-width: 80rem;
	margin: 0 auto;
	padding: 0 1.5rem;
}
@media (min-width: 1024px) { .container-wide { padding: 0 2.5rem; } }
.scroll-mt { scroll-margin-top: 8rem; }
.label-eyebrow {
	display: block;
	font-family: var(--font-body);
	font-size: 0.75rem;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--color-muted-foreground);
}
.section-heading {
	font-family: var(--font-display);
	font-style: italic;
	font-weight: 500;
	font-size: 2.25rem;
	line-height: 1.15;
	color: var(--color-foreground);
	margin-top: 0.75rem;
}
@media (min-width: 768px) { .section-heading { font-size: 3rem; } }

.reveal-item {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.7s var(--transition-smooth), transform 0.7s var(--transition-smooth);
}
.reveal-item.is-visible { opacity: 1; transform: translateY(0); }
body.is-customizer .reveal-item { opacity: 1 !important; transform: none !important; }

/* =========================================================================
 * BUTTONS
 * ========================================================================= */
.btn-theme {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	height: 3rem;
	padding: 0 2.25rem;
	font-family: var(--font-body);
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	border: 1px solid transparent;
	cursor: pointer;
	transition: background-color 0.25s ease, color 0.25s ease, opacity 0.25s ease;
	white-space: nowrap;
}
.btn-theme--filled { background: var(--color-foreground); color: var(--color-background); }
.btn-theme--filled:hover { background: var(--color-primary); color: var(--color-primary-foreground); }
.btn-theme--outline { background: transparent; color: var(--color-foreground); border-color: var(--color-foreground); }
.btn-theme--outline:hover { background: var(--color-foreground); color: var(--color-background); }
.btn-theme--inverse { background: var(--color-background); color: var(--color-foreground); }
.btn-theme--inverse:hover { background: var(--color-primary); color: var(--color-primary-foreground); }

.scroll-btn-group { display: flex; align-items: center; gap: 0.25rem; }
.scroll-btn {
	width: 2.25rem; height: 2.25rem;
	display: inline-flex; align-items: center; justify-content: center;
	border: 1px solid var(--color-border);
	color: var(--color-foreground);
	transition: background-color 0.25s ease, color 0.25s ease;
}
.scroll-btn:hover { background: var(--color-foreground); color: var(--color-background); }

/* =========================================================================
 * HEADER
 * ========================================================================= */
.site-header {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 50;
	background: rgba(251, 248, 244, 0.85);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(226, 221, 212, 0.6);
}
.site-header__inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: var(--header-height);
	width: 100%;
	max-width: 80rem;
	margin: 0 auto;
	padding: 0 1rem;
}
@media (min-width: 768px) { .site-header__inner { padding: 0 2rem; } }
.site-header__left { display: flex; align-items: center; gap: 1.5rem; }
.site-header__menu-btn { display: inline-flex; padding: 0.5rem; margin-left: -0.5rem; }
.site-header__nav { display: none; }
@media (min-width: 1024px) {
	.site-header__menu-btn { display: none; }
	.site-header__nav { display: block; }
}
.theme-nav-list { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.nav-link {
	font-size: 0.75rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	font-weight: 500;
	color: var(--color-foreground);
	transition: color 0.3s ease;
	background: none; border: none; cursor: pointer;
}
@media (min-width: 1280px) {
	.nav-link { font-size: 0.8125rem; letter-spacing: 0.24em; }
}
.nav-link:hover { color: var(--color-primary); }
.site-header__brand {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	max-width: min(11rem, 42vw);
	max-height: calc(var(--header-height) - 0.5rem);
	overflow: hidden;
}
.site-logo-img {
	display: block;
	width: auto !important;
	height: auto;
	max-width: 100%;
	max-height: min(var(--logo-height), calc(var(--header-height) - 0.75rem));
	object-fit: contain;
}
.site-logo-text {
	line-height: 1;
	max-height: calc(var(--header-height) - 0.75rem);
	font-family: var(--font-display);
	font-style: italic;
	font-size: clamp(1.125rem, 4vw, 1.5rem);
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.site-header__right { display: flex; align-items: center; gap: 0.125rem; }
.site-header__icon-btn {
	position: relative;
	width: 2.75rem; height: 2.75rem;
	display: inline-flex; align-items: center; justify-content: center;
	color: var(--color-foreground);
	transition: color 0.3s ease;
}
.site-header__search-btn { display: none; }
@media (min-width: 640px) { .site-header__search-btn { display: inline-flex; } }
.site-header__icon-btn:hover { color: var(--color-primary); }
.theme-cart-count {
	position: absolute; top: -1px; right: -1px;
	min-width: 1.15rem; height: 1.15rem;
	display: inline-flex; align-items: center; justify-content: center;
	font-size: 0.6875rem; font-weight: 500;
	background: var(--color-primary); color: var(--color-primary-foreground);
	border-radius: 999px; padding: 0 0.2rem;
}
.theme-cart-count:empty { display: none; }

/* Mobile menu */
.mobile-menu-overlay {
	position: fixed; inset: 0; z-index: 59;
	background: rgba(30, 29, 26, 0.4);
	opacity: 0; pointer-events: none;
	transition: opacity 0.3s ease;
}
.mobile-menu {
	position: fixed; top: 0; left: 0; bottom: 0;
	width: 88vw; max-width: 24rem;
	background: var(--color-background);
	border-right: 1px solid var(--color-border);
	z-index: 60;
	display: flex; flex-direction: column;
	transform: translateX(-100%);
	transition: transform 0.35s var(--transition-smooth);
}
body.mobile-menu-open .mobile-menu-overlay { opacity: 1; pointer-events: auto; }
body.mobile-menu-open .mobile-menu { transform: translateX(0); }
.mobile-menu__header {
	position: relative; display: flex; align-items: center; justify-content: center;
	height: 4.8rem; padding: 0 1.25rem;
	border-bottom: 1px solid var(--color-border);
	flex-shrink: 0;
}
.mobile-menu__close { position: absolute; right: 0.75rem; padding: 0.25rem; }
.mobile-menu__nav { flex: 1; overflow-y: auto; padding: 0.75rem 0.5rem; }
.theme-nav-list--mobile { display: flex; flex-direction: column; }
.theme-nav-list--mobile li { border-bottom: 1px solid rgba(226, 221, 212, 0.4); }
.theme-nav-list--mobile .nav-link { display: block; width: 100%; text-align: left; padding: 1rem 0.75rem; font-size: 1rem; letter-spacing: 0.28em; }
.mobile-menu__footer {
	border-top: 1px solid var(--color-border);
	padding: 1rem 0.75rem;
	display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem;
	flex-shrink: 0;
}
.mobile-menu__action {
	display: flex; align-items: center; justify-content: center; gap: 0.5rem;
	padding: 0.75rem 0;
	border: 1px solid var(--color-border);
	font-size: 0.875rem; letter-spacing: 0.24em; text-transform: uppercase;
	transition: background-color 0.25s ease, color 0.25s ease;
}
.mobile-menu__action:hover { background: var(--color-foreground); color: var(--color-background); }
.mobile-menu__action--filled { background: var(--color-foreground); color: var(--color-background); border-color: var(--color-foreground); }
.mobile-menu__action--filled:hover { background: var(--color-primary); color: var(--color-primary-foreground); }

/* Search dialog */
.search-dialog {
	position: fixed; inset: 0; z-index: 80;
	opacity: 0; pointer-events: none;
	transition: opacity 0.3s ease;
}
body.search-open .search-dialog { opacity: 1; pointer-events: auto; }
.search-dialog__overlay { position: absolute; inset: 0; background: rgba(30, 29, 26, 0.4); backdrop-filter: blur(4px); }
.search-dialog__panel {
	position: relative;
	background: var(--color-background);
	width: 100%; max-height: 92vh; overflow-y: auto;
	border-bottom: 1px solid var(--color-border);
	box-shadow: var(--shadow-elevated);
}
.search-dialog__close { position: absolute; top: 1.25rem; right: 1.25rem; padding: 0.5rem; opacity: 0.7; z-index: 10; }
@media (min-width: 1024px) { .search-dialog__close { top: 1.75rem; right: 2rem; } }
.search-dialog__close:hover { opacity: 1; }
.search-dialog__inner { padding: 2.5rem 0; }
.search-dialog__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 1024px) { .search-dialog__grid { grid-template-columns: 260px 1fr; gap: 4rem; } }
.search-dialog__categories h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 1.5rem; }
.search-dialog__categories ul { display: flex; flex-direction: column; gap: 0.875rem; }
.search-dialog__categories a { font-size: 0.75rem; letter-spacing: 0.22em; text-transform: uppercase; }
.search-dialog__categories a:hover { color: var(--color-primary); }
.search-dialog__input-row { display: flex; align-items: center; gap: 0.75rem; border-bottom: 1px solid rgba(30,29,26,0.3); padding-bottom: 0.75rem; }
.search-dialog__input-row input {
	flex: 1; background: transparent; border: none; outline: none;
	font-family: var(--font-display); font-size: 1.5rem;
}
.search-dialog__results-heading { font-family: var(--font-display); font-size: 1.5rem; margin: 2.5rem 0 1.5rem; }
.search-dialog__results-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; }
@media (min-width: 768px) { .search-dialog__results-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .search-dialog__results-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 2rem; } }
.search-dialog__result-card { text-align: left; }
.search-dialog__result-image { aspect-ratio: 1 / 1; background: var(--color-secondary); overflow: hidden; }
.search-dialog__result-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.search-dialog__result-card:hover .search-dialog__result-image img { transform: scale(1.05); }
.search-dialog__result-title { margin-top: 0.75rem; font-size: 0.75rem; letter-spacing: 0.24em; text-transform: uppercase; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.search-dialog__result-price { margin-top: 0.25rem; font-size: 0.75rem; color: rgba(30, 29, 26, 0.7); }
.search-dialog__no-results { font-size: 0.875rem; color: rgba(30, 29, 26, 0.6); margin-top: 2.5rem; }
.search-dialog__no-results em { font-family: var(--font-display); font-style: italic; }

/* Contact modal */
.contact-modal {
	position: fixed; inset: 0; z-index: 90;
	display: flex; align-items: center; justify-content: center;
	padding: 1rem;
	opacity: 0; pointer-events: none;
	transition: opacity 0.3s ease;
}
body.contact-modal-open .contact-modal { opacity: 1; pointer-events: auto; }
.contact-modal__overlay { position: absolute; inset: 0; background: rgba(30, 29, 26, 0.5); }
.contact-modal__panel {
	position: relative;
	max-width: 34rem; width: 100%;
	max-height: calc(100vh - 2rem); overflow-y: auto;
	margin: 0;
	background: var(--color-background);
	border: 1px solid var(--color-border);
	border-radius: var(--card-radius);
	padding: 2rem;
	box-shadow: var(--shadow-elevated);
	transform: scale(0.96);
	transition: transform 0.3s var(--transition-smooth);
}
body.contact-modal-open .contact-modal__panel { transform: scale(1); }
.contact-modal__close { position: absolute; top: 1rem; right: 1rem; padding: 0.25rem; opacity: 0.7; }
.contact-modal__close:hover { opacity: 1; }
.contact-modal__title { font-size: 1.5rem; margin-top: 0.5rem; }
.contact-modal__desc { font-size: 0.9375rem; line-height: 1.6; color: var(--color-muted-foreground); margin-top: 0.5rem; }
.contact-modal__email-row {
	display: flex; align-items: center; gap: 0.5rem;
	font-size: 0.875rem; color: var(--color-muted-foreground);
	border-top: 1px solid var(--color-border);
	padding-top: 1rem; margin-top: 1rem;
}
.contact-modal__form { display: flex; flex-direction: column; gap: 1rem; margin-top: 1rem; }
.contact-modal__submit-row { display: flex; justify-content: flex-end; }
.theme-contact-modal-success { font-size: 0.875rem; color: var(--color-accent); margin-top: 0.75rem; }

.form-grid-2 { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .form-grid-2 { grid-template-columns: 1fr 1fr; } }
.form-full { grid-column: 1 / -1; }
.form-submit-row { display: flex; justify-content: flex-end; }

input:not([type]),
input[type="text"], input[type="email"], input[type="tel"], input[type="date"], input[type="search"], input[type="number"], textarea, select {
	width: 100%;
	padding: 0.625rem 0.75rem;
	background: var(--color-background);
	border: 1px solid var(--color-border);
	font-size: 0.875rem;
	color: var(--color-foreground);
	transition: border-color 0.25s ease;
}
input::placeholder, textarea::placeholder { color: var(--color-muted-foreground); }
input:not([type]):focus,
input[type="text"]:focus, input[type="email"]:focus, input[type="tel"]:focus, input[type="date"]:focus, input[type="search"]:focus, input[type="number"]:focus,
textarea:focus, select:focus { outline: none; border-color: var(--color-primary); }

.parties-section__form label,
.makers-section__form label,
.contact-modal__form label { display: block; margin-bottom: 0.375rem; }
.parties-section__form .form-grid-2,
.parties-section__form .form-full { grid-column: 1 / -1; }

/* =========================================================================
 * HERO
 * ========================================================================= */
.hero-section { position: relative; width: 100%; }
.hero-section__media {
	position: relative; width: 100%; height: 100vh; min-height: 600px;
	overflow: hidden; background: var(--color-secondary);
}
.hero-section__img { object-position: top center; }
.hero-section__gradient {
	position: absolute; inset: 0;
	background: linear-gradient(to right, rgba(251,248,244,0.85), rgba(251,248,244,0.45), transparent);
}
.hero-section__content { position: absolute; inset: 0; display: flex; align-items: center; }
.hero-section__box { max-width: 42rem; }
.hero-section__eyebrow { display: block; font-size: 0.6875rem; letter-spacing: 0.42em; text-transform: uppercase; color: rgba(30,29,26,0.7); margin-bottom: 1rem; }
.hero-section__title {
	font-family: var(--font-display); font-style: italic;
	font-size: 2.25rem; line-height: 1.05; color: var(--color-foreground);
	margin-bottom: 1.5rem; max-width: 36rem;
}
@media (min-width: 768px) { .hero-section__title { font-size: 3.75rem; } }
@media (min-width: 1024px) { .hero-section__title { font-size: 4.5rem; } }
.hero-section__subtitle { font-size: 0.875rem; color: rgba(30,29,26,0.8); max-width: 28rem; margin-bottom: 2rem; line-height: 1.7; }
@media (min-width: 768px) { .hero-section__subtitle { font-size: 1rem; } }
.hero-section__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* =========================================================================
 * FEATURED ROW
 * ========================================================================= */
.featured-row { background: var(--color-background); padding: 3.5rem 0; }
@media (min-width: 1024px) { .featured-row { padding: 5rem 0; } }
.featured-row__head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2rem; }
.featured-row__title { font-family: var(--font-body); font-weight: 600; font-size: 0.75rem; letter-spacing: 0.28em; text-transform: uppercase; }
.featured-row__scroller {
	display: flex; gap: 1.25rem; overflow-x: auto; padding-bottom: 1rem;
	scrollbar-width: none; scroll-snap-type: x mandatory;
}
@media (min-width: 1024px) { .featured-row__scroller { gap: 1.5rem; } }
.featured-row__scroller::-webkit-scrollbar { display: none; }
.featured-row__card { flex-shrink: 0; width: 68vw; scroll-snap-align: start; display: block; }
@media (min-width: 640px) { .featured-row__card { width: calc((100% - 1.25rem) / 2); } }
@media (min-width: 768px) { .featured-row__card { width: calc((100% - 2.5rem) / 3); } }
@media (min-width: 1024px) { .featured-row__card { width: calc((100% - 4.5rem) / 4); } .featured-row { padding: 5rem 0; } }
.featured-row__img-wrap { position: relative; aspect-ratio: 1 / 1; background: rgba(233,228,221,0.4); overflow: hidden; }
.featured-row__img-wrap img { position: absolute; inset: 0; width: 100%; height: 100% !important; object-fit: cover; transition: opacity 0.5s ease; }
.featured-row__card:hover .featured-row__img-wrap img { opacity: 0.9; }
.featured-row__img-wrap img.is-soldout { opacity: 0.6; }
.featured-row__meta { padding-top: 1rem; text-align: center; }
.featured-row__meta h3 { font-family: var(--font-body); font-size: 0.8125rem; color: var(--color-foreground); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; transition: color 0.25s ease; }
.featured-row__card:hover .featured-row__meta h3 { color: var(--color-primary); }
.featured-row__meta .italic-sub { font-family: var(--font-display); font-style: italic; font-size: 0.75rem; color: rgba(30,29,26,0.7); margin-top: 0.125rem; }
.featured-row__meta .muted-sub { font-size: 0.6875rem; color: var(--color-muted-foreground); margin-top: 0.25rem; }
.featured-row__meta .price-sub { font-size: 0.75rem; color: var(--color-foreground); margin-top: 0.25rem; }

.theme-product-card__badge {
	position: absolute; top: 0.75rem; left: 0.75rem; z-index: 10;
	font-size: 0.625rem; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 600;
	background: rgba(251,248,244,0.9); backdrop-filter: blur(4px);
	color: var(--color-foreground); padding: 0.375rem 0.75rem;
}

/* =========================================================================
 * CATEGORY TILES
 * ========================================================================= */
.cat-tiles { background: var(--color-background); padding-bottom: 1rem; }
.cat-tiles__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
@media (min-width: 1024px) { .cat-tiles__grid { grid-template-columns: repeat(4, 1fr); } }
.cat-tiles__tile { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--color-secondary); display: block; }
.cat-tiles__tile img { transition: transform 0.7s ease; }
.cat-tiles__tile:hover img { transform: scale(1.05); }
.cat-tiles__overlay { position: absolute; inset: 0; background: rgba(30,29,26,0.3); transition: background-color 0.3s ease; }
.cat-tiles__tile:hover .cat-tiles__overlay { background: rgba(30,29,26,0.45); }
.cat-tiles__label {
	position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
	font-weight: 600; color: var(--color-background); font-size: 0.875rem; letter-spacing: 0.32em; text-transform: uppercase;
	text-align: center; padding: 0 1rem;
}
@media (min-width: 768px) { .cat-tiles__label { font-size: 1rem; } }

/* =========================================================================
 * SHOP SECTION
 * ========================================================================= */
.shop-section { background: var(--color-background); padding: 3.5rem 0; }
@media (min-width: 1024px) { .shop-section { padding: 5rem 0; } }
.shop-section__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.shop-section__heading { font-family: var(--font-body); font-weight: 600; font-size: 0.75rem; letter-spacing: 0.28em; text-transform: uppercase; }
.theme-shop-count { font-size: 0.75rem; color: var(--color-muted-foreground); }
.shop-section__controls { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 2.5rem; align-items: flex-end; }
@media (min-width: 1024px) { .shop-section__controls { grid-template-columns: 1fr auto; gap: 2.5rem; } }
.shop-section__search { position: relative; max-width: 28rem; width: 100%; }
.shop-section__search svg { position: absolute; left: 0.75rem; top: 50%; transform: translateY(-50%); color: var(--color-muted-foreground); }
.shop-section__search input { height: 2.75rem; padding-left: 2.5rem; }
.shop-section__price { width: 100%; }
@media (min-width: 1024px) { .shop-section__price { width: 18rem; } }
.shop-section__price-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.75rem; font-size: 0.75rem; }
.shop-section__price-head span:first-child { letter-spacing: 0.28em; text-transform: uppercase; color: var(--color-muted-foreground); }

.price-range-wrapper { position: relative; height: 1.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-secondary); }
.range-track-fill { background: var(--color-primary); }
.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: 1.1rem; height: 1.1rem; border-radius: 50%;
	background: var(--color-background); border: 2px solid var(--color-primary); cursor: pointer;
}
.range-input::-moz-range-thumb { pointer-events: auto; width: 1.1rem; height: 1.1rem; border-radius: 50%; background: var(--color-background); border: 2px solid var(--color-primary); cursor: pointer; }
.range-input--max { z-index: 3; }
.range-input--min { z-index: 4; }

.shop-section__chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2.5rem; }
.theme-cat-filter {
	height: 2.25rem; padding: 0 1rem;
	display: inline-flex; align-items: center;
	font-size: 0.6875rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500;
	border: 1px solid var(--color-border); background: var(--color-background); color: var(--color-foreground);
	transition: border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}
.theme-cat-filter:hover { border-color: var(--color-foreground); }
.theme-cat-filter.is-active { background: var(--color-foreground); color: var(--color-background); border-color: var(--color-foreground); }
.theme-shop-empty { text-align: center; padding: 4rem 0; color: var(--color-muted-foreground); font-size: 0.875rem; }

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

.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: rgba(233,228,221,0.4); overflow: hidden; }
.theme-product-card__image-wrapper img { position: absolute; inset: 0; width: 100%; height: 100% !important; object-fit: cover; transition: opacity 0.5s ease; }
.theme-product-card:hover .theme-product-card__image-wrapper img { opacity: 0.9; }
.theme-product-card-img.is-soldout { opacity: 0.6; }
.theme-product-card__info { padding-top: 1rem; text-align: center; flex: 1; }
.theme-product-card__title { font-family: var(--font-body); font-size: 0.8125rem; color: var(--color-foreground); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; transition: color 0.25s ease; }
.theme-product-card:hover .theme-product-card__title { color: var(--color-primary); }
.theme-product-card__subtitle { font-family: var(--font-display); font-style: italic; font-size: 0.75rem; color: rgba(30,29,26,0.7); margin-top: 0.125rem; }
.theme-product-card__cat { font-size: 0.6875rem; color: var(--color-muted-foreground); margin-top: 0.25rem; }
.theme-product-card__price { font-size: 0.75rem; color: var(--color-foreground); margin-top: 0.25rem; }

/* =========================================================================
 * EVENTS
 * ========================================================================= */
.events-section { background: color-mix(in srgb, var(--color-secondary) 40%, transparent); padding: 5rem 0; border-top: 1px solid var(--color-border); }
.events-section__head { display: flex; flex-direction: column; gap: 1.5rem; justify-content: space-between; margin-bottom: 2.5rem; }
@media (min-width: 1024px) { .events-section__head { flex-direction: row; align-items: flex-end; } }
.events-section__body { font-size: 1rem; line-height: 1.7; color: rgba(30,29,26,0.75); margin-top: 1.25rem; max-width: 36rem; }
.events-section__list {
	display: grid; grid-template-columns: 1fr; gap: 1px;
	background: var(--color-border); border: 1px solid var(--color-border);
}
@media (min-width: 768px) { .events-section__list { grid-template-columns: 1fr 1fr; } }
.events-section__list li { background: var(--color-background); padding: 1.75rem 2rem; display: flex; flex-direction: column; gap: 0.75rem; transition: background-color 0.25s ease; }
.events-section__list li:hover { background: color-mix(in srgb, var(--color-secondary) 50%, transparent); }
.events-section__date { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.6875rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--color-primary); }
.events-section__list h3 { font-family: var(--font-display); font-style: italic; font-size: 1.5rem; line-height: 1.2; }
@media (min-width: 768px) { .events-section__list h3 { font-size: 1.875rem; } }
.events-section__meta { display: flex; flex-direction: column; gap: 0.375rem; font-size: 0.875rem; color: rgba(30,29,26,0.75); }
.events-section__meta span { display: inline-flex; align-items: center; gap: 0.5rem; }
.events-section__note { font-size: 0.875rem; color: var(--color-muted-foreground); line-height: 1.6; margin-top: 0.25rem; }

/* =========================================================================
 * PARTIES
 * ========================================================================= */
.parties-section { background: var(--color-background); padding: 5rem 0; border-top: 1px solid var(--color-border); }
.parties-section__intro { max-width: 42rem; }
.parties-section__intro p { font-size: 1rem; line-height: 1.7; color: rgba(30,29,26,0.75); margin-top: 1.25rem; }
.parties-section__grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--color-border); border: 1px solid var(--color-border); margin-top: 3rem; }
@media (min-width: 1024px) { .parties-section__grid { grid-template-columns: repeat(3, 1fr); } }
.parties-section__card { background: var(--color-background); padding: 1.75rem 2rem; display: flex; flex-direction: column; }
.parties-section__tagline { font-size: 0.6875rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--color-primary); }
.parties-section__card h3 { font-family: var(--font-display); font-style: italic; font-size: 1.5rem; margin-top: 0.75rem; line-height: 1.2; }
@media (min-width: 768px) { .parties-section__card h3 { font-size: 1.875rem; } }
.parties-section__card p { font-size: 0.875rem; color: rgba(30,29,26,0.75); line-height: 1.6; margin-top: 1rem; }
.parties-section__card ul { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 0.5rem; }
.parties-section__card ul li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.875rem; color: rgba(30,29,26,0.8); }
.parties-section__card ul li svg { margin-top: 0.125rem; flex-shrink: 0; color: var(--color-primary); }
.parties-section__best { margin-top: auto; padding-top: 1.5rem; font-size: 0.6875rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--color-muted-foreground); }

.parties-section__form-wrap {
	margin-top: 3rem; border: 1px solid var(--color-border); background: color-mix(in srgb, var(--color-secondary) 40%, transparent);
	padding: 1.75rem; display: grid; grid-template-columns: 1fr; gap: 2.5rem;
}
@media (min-width: 768px) { .parties-section__form-wrap { padding: 3rem; } }
@media (min-width: 1024px) { .parties-section__form-wrap { grid-template-columns: minmax(0, 20rem) 1fr; } }
.parties-section__form-wrap h3 { font-family: var(--font-display); font-style: italic; font-size: 1.875rem; margin-top: 0.75rem; line-height: 1.2; }
.parties-section__form-wrap > div:first-child > span { display: inline-flex; align-items: center; gap: 0.5rem; }
.parties-section__form-wrap p { font-size: 0.875rem; color: rgba(30,29,26,0.75); line-height: 1.6; margin-top: 1rem; }
.parties-section__form { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .parties-section__form { grid-template-columns: 1fr 1fr; } }
.theme-parties-success { grid-column: 1 / -1; font-size: 0.875rem; color: var(--color-accent); }

/* =========================================================================
 * ABOUT / MEET OWNER
 * ========================================================================= */
.about-section { background: color-mix(in srgb, var(--color-secondary) 40%, transparent); padding: 5rem 0; border-top: 1px solid var(--color-border); }
.about-section__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: stretch; }
@media (min-width: 1024px) { .about-section__grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.about-section__image-wrap { position: relative; width: 100%; aspect-ratio: 1 / 1; min-height: 28rem; overflow: hidden; }
@media (min-width: 1024px) { .about-section__image-wrap { aspect-ratio: auto; height: 100%; } }
.about-section__body { color: rgba(30,29,26,0.8); line-height: 1.7; margin: 1.5rem 0 2rem; }
.about-section__body p { margin-bottom: 1rem; }
.about-section__body .about-section__closing {
	font-family: var(--font-display);
	font-style: italic;
	font-size: 1.125rem;
	color: var(--color-foreground);
}
.about-section__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem; }

/* =========================================================================
 * BOOK CLUBS
 * ========================================================================= */
.clubs-section { background: color-mix(in srgb, var(--color-secondary) 40%, transparent); padding: 5rem 0; border-top: 1px solid var(--color-border); }
.clubs-section__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: flex-start; }
@media (min-width: 1024px) { .clubs-section__grid { grid-template-columns: minmax(0, 26rem) 1fr; gap: 5rem; } }
.clubs-section__grid > div:first-child p.theme-clubs-body { font-size: 1rem; line-height: 1.7; color: rgba(30,29,26,0.75); margin-top: 1.25rem; }
.clubs-section__note { display: flex; align-items: flex-start; gap: 0.5rem; border-left: 2px solid var(--color-primary); padding: 0.25rem 0 0.25rem 1rem; margin: 1.5rem 0 2rem; }
.clubs-section__note p { font-size: 0.875rem; color: rgba(30,29,26,0.7); line-height: 1.6; }
.clubs-section__perks { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--color-border); border: 1px solid var(--color-border); }
@media (min-width: 640px) { .clubs-section__perks { grid-template-columns: 1fr 1fr; } }
.clubs-section__perks li { background: var(--color-background); padding: 1.75rem 2rem; }
.clubs-section__perk-wide { grid-column: 1 / -1; }
.clubs-section__perks h3 { font-family: var(--font-display); font-style: italic; font-size: 1.5rem; margin-top: 1rem; line-height: 1.2; }
.clubs-section__perks p { font-size: 0.875rem; color: rgba(30,29,26,0.75); line-height: 1.6; margin-top: 0.75rem; }

/* =========================================================================
 * MAKERS
 * ========================================================================= */
.makers-section { background: var(--color-background); padding: 5rem 0; border-top: 1px solid var(--color-border); }
.makers-section__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: stretch; }
@media (min-width: 1024px) { .makers-section__grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.makers-section__image-wrap { position: relative; min-height: 22rem; overflow: hidden; }
.makers-section__overlay { position: absolute; inset: 0; background: rgba(30,29,26,0.5); }
.makers-section__caption { position: absolute; inset: 0; display: flex; align-items: flex-end; padding: 2rem; }
@media (min-width: 1024px) { .makers-section__caption { padding: 3rem; } }
.makers-section__caption-inner { display: flex; flex-direction: column; max-width: 28rem; }
.makers-section__caption .theme-makers-eyebrow {
	display: block;
	font-size: 0.625rem;
	letter-spacing: 0.36em;
	text-transform: uppercase;
	color: rgba(251,248,244,0.8);
}
.makers-section__caption .theme-makers-title {
	font-family: var(--font-display);
	font-style: italic;
	font-weight: 500;
	color: var(--color-background);
	font-size: 1.875rem;
	line-height: 1.15;
	margin-top: 0.75rem;
}
@media (min-width: 768px) { .makers-section__caption .theme-makers-title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .makers-section__caption .theme-makers-title { font-size: 3rem; } }
.makers-section__caption .theme-makers-body {
	font-size: 0.875rem;
	color: rgba(251,248,244,0.85);
	line-height: 1.6;
	margin-top: 1rem;
	max-width: 26rem;
}
.makers-section__form-card { border: 1px solid var(--color-border); padding: 1.75rem; display: flex; flex-direction: column; justify-content: center; }
@media (min-width: 768px) { .makers-section__form-card { padding: 2.5rem; } }
.makers-section__form-card h3 { font-family: var(--font-display); font-style: italic; font-size: 1.875rem; margin: 0.75rem 0 1.5rem; }
.makers-section__form { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .makers-section__form { grid-template-columns: 1fr 1fr; } }
.theme-makers-success { font-size: 0.875rem; color: var(--color-accent); }

/* =========================================================================
 * TESTIMONIALS
 * ========================================================================= */
.testimonials-section { background: color-mix(in srgb, var(--color-secondary) 40%, transparent); padding: 5rem 0; }
.testimonials-section__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; margin-bottom: 3.5rem; }
.testimonials-section__scroller { display: flex; gap: 1.25rem; overflow-x: auto; padding-bottom: 1rem; scrollbar-width: none; scroll-snap-type: x mandatory; }
.testimonials-section__scroller::-webkit-scrollbar { display: none; }
.testimonials-section__card {
	flex-shrink: 0; width: 82vw; scroll-snap-align: start;
	background: var(--color-background); border: 1px solid var(--color-border);
	padding: 2rem; display: flex; flex-direction: column;
	cursor: pointer; transition: transform 0.5s var(--transition-smooth), background-color 0.5s ease, box-shadow 0.5s ease, border-color 0.5s ease;
}
@media (min-width: 640px) { .testimonials-section__card { width: calc((100% - 1.25rem) / 2); } }
@media (min-width: 1024px) { .testimonials-section__card { width: calc((100% - 3rem) / 3); padding: 2.5rem; } }
.testimonials-section__card:hover {
	transform: translateY(-0.5rem);
	background: color-mix(in srgb, var(--color-secondary) 40%, transparent);
	box-shadow: 0 28px 60px -24px rgba(30,29,26,0.35);
	border-color: var(--color-primary);
}
.testimonials-section__card blockquote { font-family: var(--font-display); font-style: italic; font-size: 1.25rem; line-height: 1.4; margin-bottom: 1.5rem; transition: color 0.5s ease; }
.testimonials-section__card:hover blockquote { color: var(--color-primary); }
.testimonials-section__card figcaption { margin-top: auto; }
.testimonials-section__name { font-size: 0.875rem; }
.testimonials-section__place { font-size: 0.75rem; color: var(--color-muted-foreground); letter-spacing: 0.05em; text-transform: uppercase; margin-top: 0.25rem; }

/* =========================================================================
 * QUOTE DIVIDER
 * ========================================================================= */
.quote-divider { position: relative; width: 100%; height: 70vh; overflow: hidden; }
.quote-divider__img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: center center;
	will-change: transform;
}
@media (min-width: 768px) { .quote-divider { height: 80vh; } }
@media (min-width: 1024px) { .quote-divider { height: 85vh; } }
.quote-divider__tint { position: absolute; inset: 0; background: rgba(30,29,26,0.5); }
.quote-divider__content { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; padding: 0 1.5rem; }
.quote-divider__content figure { max-width: 48rem; text-align: center; }
.quote-divider__content blockquote { font-family: var(--font-display); font-style: italic; font-size: 1.875rem; line-height: 1.15; color: var(--color-background); }
@media (min-width: 768px) { .quote-divider__content blockquote { font-size: 3rem; } }
@media (min-width: 1024px) { .quote-divider__content blockquote { font-size: 3.75rem; } }
.quote-divider__content figcaption { margin-top: 2rem; font-size: 0.625rem; letter-spacing: 0.42em; text-transform: uppercase; color: rgba(251,248,244,0.8); }
@media (min-width: 768px) { .quote-divider__content figcaption { font-size: 0.6875rem; } }

/* =========================================================================
 * FAQ
 * ========================================================================= */
.faq-section { background: var(--color-background); padding: 5rem 0; border-top: 1px solid var(--color-border); }
.faq-section__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: flex-start; }
@media (min-width: 1024px) { .faq-section__grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.faq-section__intro { position: sticky; top: 8rem; }
.faq-section__intro p { font-size: 1rem; line-height: 1.7; color: rgba(30,29,26,0.75); margin-top: 1.5rem; max-width: 26rem; }
.theme-faq-item { border-bottom: 1px solid var(--color-border); }
.theme-faq-toggle { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; text-align: left; padding: 1.25rem 0; }
.theme-faq-toggle span:first-child { font-size: 0.9375rem; color: var(--color-foreground); transition: color 0.25s ease; }
.theme-faq-item:hover .theme-faq-toggle span:first-child { color: var(--color-primary); }
.theme-faq-icon { flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; width: 1rem; height: 1rem; color: var(--color-foreground); }
.theme-faq-icon-minus { display: none; }
.theme-faq-item.is-open .theme-faq-icon-plus { display: none; }
.theme-faq-item.is-open .theme-faq-icon-minus { display: block; }
.theme-faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.theme-faq-item.is-open .theme-faq-answer { max-height: 20rem; }
.theme-faq-answer p { font-size: 0.875rem; color: rgba(30,29,26,0.75); line-height: 1.6; padding-bottom: 1.5rem; padding-right: 2.5rem; }

/* =========================================================================
 * MARQUEE
 * ========================================================================= */
.marquee-section { position: relative; background: var(--color-foreground); color: var(--color-background); border-top: 1px solid rgba(30,29,26,0.2); border-bottom: 1px solid rgba(30,29,26,0.2); padding: 1.5rem 0; overflow: hidden; }
@media (min-width: 1024px) { .marquee-section { padding: 2rem 0; } }
.marquee-section__track-wrap { display: flex; white-space: nowrap; }
.marquee-section__track { display: flex; flex-shrink: 0; animation: fb-marquee 38s linear infinite; }
.marquee-section:hover .marquee-section__track { animation-play-state: paused; }
@keyframes fb-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-section__group { display: flex; align-items: center; gap: 2.5rem; padding-right: 2.5rem; }
@media (min-width: 1024px) { .marquee-section__group { gap: 3.5rem; padding-right: 3.5rem; } }
.marquee-section__word-wrap { display: flex; align-items: center; gap: 2.5rem; }
@media (min-width: 1024px) { .marquee-section__word-wrap { gap: 3.5rem; } }
.marquee-section__word { font-family: var(--font-display); font-style: italic; font-size: 1.875rem; color: var(--color-background); }
@media (min-width: 768px) { .marquee-section__word { font-size: 2.25rem; } }
@media (min-width: 1024px) { .marquee-section__word { font-size: 3rem; } }
.marquee-section__dot { width: 0.5rem; height: 0.5rem; border-radius: 50%; background: var(--color-primary); flex-shrink: 0; }

/* =========================================================================
 * CONTACT
 * ========================================================================= */
.contact-section { background: var(--color-background); padding: 5rem 0; border-top: 1px solid var(--color-border); }
.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 { display: flex; flex-direction: column; justify-content: center; }
.contact-section__intro p.theme-contact-body { color: rgba(30,29,26,0.8); line-height: 1.7; margin: 1.5rem 0 2rem; max-width: 28rem; }
.contact-section__links { display: flex; flex-direction: column; gap: 1rem; }
.contact-section__links a { display: flex; align-items: center; gap: 0.75rem; font-size: 0.875rem; word-break: break-all; transition: color 0.25s ease; }
.contact-section__links a:hover { color: var(--color-primary); }
.contact-section__note {
	position: relative; overflow: hidden; padding: 2rem;
	display: flex; flex-direction: column; justify-content: center;
	min-height: 22rem; height: 100%;
}
@media (min-width: 1024px) { .contact-section__note { padding: 3rem; } }
.contact-section__note-tint { position: absolute; inset: 0; background: rgba(30,29,26,0.6); }
.contact-section__note-content { position: relative; }
.contact-section__note-content span.theme-contact-note-eyebrow { font-size: 0.6875rem; letter-spacing: 0.36em; text-transform: uppercase; color: rgba(251,248,244,0.8); display: block; margin-bottom: 0.75rem; }
.contact-section__note-content h3 { font-family: var(--font-display); font-style: italic; font-size: 1.5rem; color: var(--color-background); line-height: 1.2; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .contact-section__note-content h3 { font-size: 1.875rem; } }
.contact-section__note-content p { font-size: 0.875rem; color: rgba(251,248,244,0.85); line-height: 1.6; margin-bottom: 2rem; max-width: 28rem; }

/* =========================================================================
 * FOOTER
 * ========================================================================= */
.site-footer { background: var(--color-foreground); color: var(--color-background); }
.site-footer__inner { padding-top: 4rem; padding-bottom: 0.5rem; }
.site-footer__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 768px) { .site-footer__grid { grid-template-columns: repeat(4, 1fr); gap: 3rem; } }
.site-footer__brand-link { display: inline-block; }
.site-footer__brand-name { display: block; font-family: var(--font-display); font-style: italic; font-size: 1.875rem; line-height: 1; color: var(--color-background); transition: color 0.25s ease; }
@media (min-width: 1024px) { .site-footer__brand-name { font-size: 2.25rem; } }
.site-footer__brand-link:hover .site-footer__brand-name { color: var(--color-primary); }
.site-footer__brand-tagline { display: block; margin-top: 0.5rem; font-size: 0.625rem; letter-spacing: 0.36em; text-transform: uppercase; color: rgba(251,248,244,0.6); }
.site-footer__desc { margin-top: 1.25rem; font-size: 0.875rem; color: rgba(251,248,244,0.7); max-width: 20rem; line-height: 1.6; }
.site-footer__col h4 { font-size: 0.6875rem; letter-spacing: 0.32em; text-transform: uppercase; font-weight: 600; color: var(--color-primary); margin-bottom: 1.25rem; }
.site-footer__col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.site-footer__col ul li a, .site-footer__col ul li button { font-size: 0.875rem; color: rgba(251,248,244,0.7); transition: color 0.25s ease; }
.site-footer__col ul li a:hover, .site-footer__col ul li button:hover { color: var(--color-primary); }
.site-footer__connect li { display: flex; align-items: flex-start; gap: 0.5rem; }
.site-footer__connect svg { flex-shrink: 0; margin-top: 0.125rem; }
.site-footer__muted { color: rgba(251,248,244,0.5) !important; }
.site-footer__bottom {
	margin-top: 1.5rem; padding-top: 0.75rem;
	border-top: 1px solid rgba(251,248,244,0.15);
	display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 0.5rem;
}
@media (min-width: 640px) { .site-footer__bottom { flex-direction: row; } }
.site-footer__bottom p { font-size: 0.625rem; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(251,248,244,0.6); }
.site-footer__bottom a { text-decoration: underline; text-underline-offset: 4px; }
.site-footer__bottom a:hover { color: var(--color-primary); }

/* =========================================================================
 * SIDE CART DRAWER + OVERLAY
 * ========================================================================= */
#theme-cart-overlay {
	position: fixed; inset: 0; z-index: 50;
	background: rgba(30,29,26,0.3);
	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; right: 0; top: 0; height: 100%; width: 100%; max-width: 32rem;
	background: var(--color-background); z-index: 51; box-shadow: var(--shadow-elevated);
	display: flex; flex-direction: column;
	transform: translateX(100%);
	transition: transform 0.4s 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: 2rem 2rem 1.25rem; border-bottom: 1px solid var(--color-border); flex-shrink: 0; }
.theme-cart-drawer__title { font-family: var(--font-display); font-style: italic; font-size: 1.5rem; }
.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: 2rem; text-align: center; }
.theme-cart-drawer__empty svg { color: var(--color-muted-foreground); margin-bottom: 1.25rem; }
.theme-cart-drawer__empty p { color: var(--color-muted-foreground); margin-bottom: 1.5rem; }
.theme-cart-drawer__items { flex: 1; overflow-y: auto; padding: 1.5rem 2rem; display: flex; flex-direction: column; gap: 2rem; }
.theme-cart-drawer__item { display: flex; gap: 1.25rem; }
.theme-cart-drawer__item-image { width: 6rem; height: 8rem; flex-shrink: 0; background: var(--color-secondary); overflow: hidden; position: relative; display: block; }
.theme-cart-drawer__item-image img { position: absolute; inset: 0; width: 100%; height: 100% !important; object-fit: cover; }
.theme-cart-drawer__item-body { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.theme-cart-drawer__item-name { font-size: 0.75rem; letter-spacing: 0.22em; text-transform: uppercase; display: block; }
.theme-cart-drawer__item-name:hover { opacity: 0.7; }
.theme-cart-drawer__item-attrs { font-size: 0.75rem; color: var(--color-muted-foreground); font-style: italic; margin-top: 0.375rem; }
.theme-cart-drawer__item-price { font-size: 0.875rem; margin-top: 0.375rem; }
.theme-cart-drawer__item-controls { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 1rem; }
.theme-cart-drawer__qty { display: flex; align-items: center; border: 1px solid var(--color-border); }
.theme-cart-drawer__qty button { padding: 0.375rem 0.625rem; transition: background-color 0.25s ease; }
.theme-cart-drawer__qty button:hover { background: var(--color-secondary); }
.theme-cart-drawer__qty span { padding: 0 0.75rem; font-size: 0.875rem; min-width: 28px; text-align: center; }
.theme-cart-drawer__remove { font-size: 0.75rem; color: var(--color-muted-foreground); text-decoration: underline; text-underline-offset: 4px; }
.theme-cart-drawer__remove:hover { color: var(--color-foreground); }
.theme-cart-drawer__pair { padding-top: 1rem; border-top: 1px solid var(--color-border); }
.theme-cart-drawer__pair-title { font-family: var(--font-display); font-style: italic; font-size: 1.125rem; margin-bottom: 1rem; }
.theme-cart-drawer__pair-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.75rem;
}
@media (min-width: 1024px) {
	.theme-cart-drawer__pair-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.theme-cart-drawer__pair-item { width: 100%; min-width: 0; text-align: left; background: none; border: none; padding: 0; color: inherit; cursor: pointer; }
a.theme-cart-drawer__pair-link { display: block; text-decoration: none; }
.theme-cart-drawer__pair-image { display: block; aspect-ratio: 3 / 4; background: var(--color-secondary); overflow: hidden; margin-bottom: 0.5rem; position: relative; }
.theme-cart-drawer__pair-image img { position: absolute; inset: 0; width: 100%; height: 100% !important; object-fit: cover; transition: transform 0.7s ease; }
.theme-cart-drawer__pair-item:hover .theme-cart-drawer__pair-image img { transform: scale(1.05); }
.theme-cart-drawer__pair-name { display: block; font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.theme-cart-drawer__pair-price { display: block; font-size: 0.75rem; color: var(--color-muted-foreground); margin-top: 0.125rem; }
.theme-cart-drawer__footer { padding: 1.5rem 2rem; border-top: 1px solid var(--color-border); display: flex; flex-direction: column; gap: 1rem; flex-shrink: 0; }
.theme-cart-drawer__subtotal-row { display: flex; align-items: baseline; justify-content: space-between; font-family: var(--font-display); font-size: 1.25rem; }
.theme-cart-drawer__note { font-size: 0.75rem; color: var(--color-muted-foreground); }
.theme-cart-drawer__checkout-btn { width: 100%; }

/* Hide "View cart" injected by WooCommerce after AJAX add-to-cart */
.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;
}

/* Scoped WC notice 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 {
	border-top-color: var(--color-primary);
	font-family: var(--font-body);
	font-size: 0.875rem;
	border-radius: var(--card-radius);
	padding: 1rem 1rem 1rem 3rem;
	background: var(--color-secondary);
}

/* =========================================================================
 * SINGLE PRODUCT
 * ========================================================================= */
.single-product .site-main { padding-top: var(--header-height); }
.single-product .theme-product-layout-wrap { padding-top: 2rem; }
@media (min-width: 768px) { .single-product .theme-product-layout-wrap { padding-top: 3rem; } }
.theme-product-layout { display: grid; grid-template-columns: 1fr; gap: 2rem; min-width: 0; }
@media (min-width: 1024px) {
	.theme-product-layout {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		gap: 4rem;
		align-items: start;
	}
}
.theme-product-gallery, .theme-product-info { min-width: 0; max-width: 100%; }
.theme-product-gallery { display: flex; flex-direction: column; padding: 1.5rem; }
.theme-product-main-image { order: 1; }
.theme-product-thumbnails { display: flex; flex-direction: row; gap: 0.75rem; flex-wrap: wrap; max-width: 100%; order: 2; padding-top: 0.75rem; }
.theme-product-thumb {
	width: 3.5rem; height: 3.5rem; overflow: hidden; border: 1px solid transparent; border-radius: var(--radius);
	opacity: 0.6; transition: opacity 0.25s ease, border-color 0.25s ease; flex-shrink: 0; position: relative;
}
.theme-product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.theme-product-thumb.is-active, .theme-product-thumb:hover { opacity: 1; border-color: var(--color-foreground); }
.theme-product-main-image {
	position: relative; flex: 1; min-height: 60vh;
	display: flex; align-items: center; justify-content: center; overflow: hidden;
}
@media (min-width: 768px) { .theme-product-main-image { min-height: 78vh; } }
@media (min-width: 1024px) { .theme-product-main-image { min-height: 88vh; } }
.theme-product-main-image img {
	position: relative; inset: auto; width: 100%; height: 100% !important; max-height: 88vh; object-fit: contain;
}
.theme-product-thumb img { height: 100% !important; object-fit: cover; }
.theme-product-info { padding: 2.5rem 1.5rem; }
@media (min-width: 768px) { .theme-product-info { padding: 3rem 2.5rem; } }
.theme-product-breadcrumb { font-size: 0.75rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--color-muted-foreground); margin-bottom: 1.5rem; }
.theme-product-breadcrumb span { margin: 0 0.5rem; }
.theme-product-breadcrumb a:hover { color: var(--color-foreground); }
.posted_in { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-muted-foreground); margin-bottom: 0.5rem; overflow-wrap: break-word; word-break: break-word; }
.posted_in a { color: var(--color-muted-foreground); text-decoration: underline; text-underline-offset: 2px; }
.product-title { font-family: var(--font-body); font-weight: 600; font-size: 0.9375rem; letter-spacing: 0.22em; text-transform: uppercase; line-height: 1.5; }
.theme-product-edition { margin-top: 0.5rem; font-family: var(--font-display); font-style: italic; font-size: 1rem; color: rgba(30,29,26,0.7); }
.theme-product-sku { margin-top: 0.75rem; font-size: 0.75rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--color-muted-foreground); }
.theme-product-divider { height: 1px; background: var(--color-border); margin: 1.75rem 0; }
.theme-product-price { font-size: 1.125rem; }
.theme-product-price .price del { color: var(--color-muted-foreground); }
.theme-product-price .price ins { text-decoration: none; color: var(--color-primary); }
.theme-stock-indicator--out { margin-top: 0.75rem; font-size: 0.8125rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-highlight); }
.theme-product-note-box { margin-top: 1.75rem; background: color-mix(in srgb, var(--color-secondary) 70%, transparent); padding: 1rem 1.25rem; font-size: 0.8125rem; color: rgba(30,29,26,0.85); line-height: 1.6; border-radius: var(--radius); }
.theme-product-description { margin-top: 1.75rem; font-family: var(--font-display); font-size: 1.1875rem; line-height: 1.55; color: rgba(30,29,26,0.9); overflow-wrap: break-word; word-break: break-word; }
.theme-product-description p { margin-bottom: 1rem; }

.variations.shop_attributes { margin-top: 1.75rem; }
.single-product .variations.shop_attributes tbody,
.single-product .variations tbody tr,
.single-product .variations tbody td { display: block; width: 100%; }
.single-product .variations tbody tr { margin-bottom: 1.25rem; }
.single-product .variations tbody td.label { padding-bottom: 0.5rem; }
.single-product .variations tbody td.label label { font-size: 0.75rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--color-muted-foreground); font-weight: 600; font-style: normal; }
.single-product .variations tbody td.value { padding-top: 0; }
.theme-attr-select-hidden { display: none !important; }
.theme-attr-pill-group { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.theme-attr-pill {
	min-width: 3rem; padding: 0.6rem 1rem; font-size: 0.75rem; letter-spacing: 0.05em;
	border: 1px solid var(--color-border); border-radius: var(--radius);
	transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}
.theme-attr-pill:hover { border-color: var(--color-foreground); }
.theme-attr-pill.is-selected { background: var(--color-foreground); color: var(--color-background); border-color: var(--color-foreground); }

.theme-quantity-wrapper { display: flex; align-items: center; border: 1px solid var(--color-border); height: var(--btn-height); flex-shrink: 0; }
.theme-qty-minus, .theme-qty-plus { width: 3rem; height: 100%; display: inline-flex; align-items: center; justify-content: center; font-size: 1rem; transition: background-color 0.2s ease; }
.theme-qty-minus:hover, .theme-qty-plus:hover { background: var(--color-secondary); }
.theme-qty-input {
	width: 3.5rem; height: 100%; text-align: center; border: none; border-left: 1px solid var(--color-border); border-right: 1px solid var(--color-border);
	-moz-appearance: textfield;
}
.theme-qty-input::-webkit-outer-spin-button, .theme-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.theme-add-to-cart-area { display: flex; align-items: stretch; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }
.single-product .single_add_to_cart_button { flex: 1 1 auto; min-width: 160px; min-height: 3.5rem !important; }

.theme-product-details { margin-top: 3rem; }
.theme-product-details h2 { font-size: 0.75rem; letter-spacing: 0.28em; text-transform: uppercase; margin-bottom: 1.25rem; }
.theme-product-details__body ul { list-style: disc; padding-left: 1.25rem; display: flex; flex-direction: column; gap: 0.625rem; }
.theme-product-details__body li { font-size: 0.875rem; color: rgba(30,29,26,0.8); line-height: 1.6; }
.theme-product-details__body li::marker { color: var(--color-primary); }

.related-products-section { padding: 4rem 0 6rem; border-top: 1px solid var(--color-border); margin-top: 2rem; }
.related-products-section__title { font-family: var(--font-display); font-size: 1.875rem; margin-bottom: 3rem; line-height: 1.15; }
@media (min-width: 768px) { .related-products-section__title { font-size: 2.25rem; } }
.related-products-section__accent { font-style: italic; color: var(--color-primary); }

/* =========================================================================
 * ADD TO CART BUTTON STYLE OVERRIDE (Section 11.4.1)
 * ========================================================================= */
.single_add_to_cart_button.button,
.add_to_cart_button.button,
a.single_add_to_cart_button,
a.add_to_cart_button {
	background-color: var(--color-primary) !important;
	color: var(--color-button-text) !important;
	border: none !important;
	border-radius: var(--btn-radius) !important;
	min-height: var(--btn-height) !important;
	padding: var(--btn-padding) !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	font-family: var(--font-body) !important;
	font-size: var(--btn-font-size) !important;
	font-weight: var(--btn-font-weight) !important;
	letter-spacing: var(--btn-letter-spacing) !important;
	text-transform: var(--btn-text-transform) !important;
	cursor: pointer !important;
	transition: opacity 0.2s ease !important;
}
.single_add_to_cart_button.button:hover,
.add_to_cart_button.button:hover {
	opacity: 0.85 !important;
	background-color: var(--color-primary) !important;
	color: var(--color-button-text) !important;
}
.single_add_to_cart_button.button:disabled,
.single_add_to_cart_button.button.disabled,
.add_to_cart_button.button:disabled,
.add_to_cart_button.button.disabled {
	cursor: not-allowed !important;
	opacity: 0.4 !important;
	pointer-events: none !important;
}
.single_add_to_cart_button.button:disabled:hover,
.single_add_to_cart_button.button.disabled:hover,
.add_to_cart_button.button:disabled:hover,
.add_to_cart_button.button.disabled:hover {
	opacity: 0.4 !important;
	background-color: var(--color-primary) !important;
}
.single-product .single_add_to_cart_button.loading::after,
.ajax_add_to_cart.loading::after { display: none !important; }
.ajax_add_to_cart.theme-btn-loading { opacity: 0.6 !important; pointer-events: none !important; cursor: wait !important; }
.single_add_to_cart_button.theme-btn-loading { opacity: 0.6 !important; pointer-events: none !important; cursor: wait !important; }

/* =========================================================================
 * WOOCOMMERCE ARCHIVE / SHOP PAGE
 * ========================================================================= */
.woocommerce-archive-wrap .site-page-wrap { padding-top: calc(var(--header-height) + 2rem); padding-bottom: 4rem; }
.shop-heading { font-family: var(--font-display); font-size: 2.25rem; margin-bottom: 2rem; }
.woocommerce-pagination { margin-top: 3rem; text-align: center; }
.woocommerce-pagination .page-numbers { display: inline-flex; gap: 0.5rem; }
.woocommerce-pagination .page-numbers li a, .woocommerce-pagination .page-numbers li span {
	display: inline-flex; align-items: center; justify-content: center; width: 2.25rem; height: 2.25rem;
	border: 1px solid var(--color-border); font-size: 0.8125rem;
}
.woocommerce-pagination .page-numbers li .current { background: var(--color-foreground); color: var(--color-background); }

/* =========================================================================
 * GENERIC PAGE / 404
 * ========================================================================= */
.site-page-wrap { padding-top: calc(var(--header-height) + 3rem); padding-bottom: 5rem; }
.page-title { font-family: var(--font-display); font-size: 2.25rem; margin-bottom: 2rem; }
.error-404-wrap {
	min-height: 100dvh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 2rem;
	text-align: center;
	background: var(--color-muted);
}
.error-404-wrap h1 { font-size: 2.25rem; font-weight: 700; margin-bottom: 1rem; }
.error-404-wrap p { font-size: 1.25rem; color: var(--color-muted-foreground); margin-bottom: 1rem; }
.error-404-wrap a { color: var(--color-primary); text-decoration: underline; }
.error-404-wrap a:hover { color: rgba(195, 151, 85, 0.9); }

/* =========================================================================
 * WOOCOMMERCE CHECKOUT BLOCK (Section 13)
 * ========================================================================= */
body.woocommerce-checkout .site-main { padding-top: var(--header-height); padding-bottom: 4rem; }
body.woocommerce-checkout .site-page-wrap--checkout { padding-top: calc(var(--header-height) + 0.75rem); padding-bottom: 4rem; }
body.woocommerce-checkout .page-title--checkout { margin-bottom: 1.25rem; }
body.woocommerce-checkout .entry-content,
body.woocommerce-checkout .entry-content--checkout { max-width: 100%; }

body.woocommerce-checkout .wp-block-woocommerce-checkout,
body.woocommerce-checkout .wc-block-checkout {
	display: block !important;
	width: 100% !important;
	max-width: none !important;
}

body.woocommerce-checkout .wc-block-components-sidebar-layout,
body.woocommerce-checkout .wc-block-checkout__sidebar-layout {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) !important;
	gap: 3rem !important;
	align-items: start !important;
	width: 100% !important;
	max-width: none !important;
}

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

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

body.woocommerce-checkout .wc-block-checkout__sidebar,
body.woocommerce-checkout .wc-block-components-sidebar {
	display: block !important;
	width: 100% !important;
	min-width: 0 !important;
	max-width: none !important;
	grid-column: 1 !important;
	grid-row: 2 !important;
}

@media (min-width: 1024px) {
	body.woocommerce-checkout .wc-block-checkout__main,
	body.woocommerce-checkout .wc-block-components-main {
		grid-column: 1 !important;
		grid-row: 1 !important;
	}

	body.woocommerce-checkout .wc-block-checkout__sidebar,
	body.woocommerce-checkout .wc-block-components-sidebar {
		grid-column: 2 !important;
		grid-row: 1 !important;
	}
}

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

body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-components-combobox-control input,
body.woocommerce-checkout .wc-block-components-select select,
body.woocommerce-checkout .wc-block-components-country-input select,
body.woocommerce-checkout .wc-block-components-state-input select,
body.woocommerce-checkout select {
	width: 100% !important;
	max-width: none !important;
	font-family: var(--font-body) !important;
	font-size: 0.875rem !important;
	font-weight: 400 !important;
	font-style: normal !important;
	line-height: 1.5 !important;
	color: var(--color-foreground) !important;
	background: var(--color-background) !important;
	border: 1px solid var(--color-border) !important;
	border-radius: var(--radius) !important;
	box-shadow: none !important;
	-webkit-appearance: none !important;
	appearance: none !important;
}

body.woocommerce-checkout .wc-block-components-text-input input::placeholder,
body.woocommerce-checkout .wc-block-components-combobox-control input::placeholder {
	color: var(--color-muted-foreground) !important;
	opacity: 1 !important;
}

body.woocommerce-checkout .wc-block-components-text-input input:focus,
body.woocommerce-checkout .wc-block-components-combobox-control input:focus,
body.woocommerce-checkout .wc-block-components-select select:focus,
body.woocommerce-checkout select:focus {
	outline: none !important;
	border-color: var(--color-primary) !important;
	box-shadow: 0 0 0 1px var(--color-primary) !important;
}

body.woocommerce-checkout .wc-block-components-text-input label,
body.woocommerce-checkout .wc-block-components-select label,
body.woocommerce-checkout .wc-block-components-checkbox__label {
	font-family: var(--font-body) !important;
	font-size: 0.875rem !important;
	color: var(--color-foreground) !important;
}

body.woocommerce-checkout .wc-block-checkout__sidebar {
	background-color: var(--color-secondary) !important;
	border-radius: var(--card-radius) !important;
	padding: var(--section-padding) !important;
}

body.woocommerce-checkout .wc-block-components-checkout-place-order-button {
	background-color: var(--color-primary) !important;
	color: var(--color-button-text) !important;
	border-radius: var(--btn-radius) !important;
	font-family: var(--font-body) !important;
	letter-spacing: var(--btn-letter-spacing) !important;
	text-transform: var(--btn-text-transform) !important;
	font-size: var(--btn-font-size) !important;
	font-weight: var(--btn-font-weight) !important;
}

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

/* =========================================================================
 * 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-size: 1.5rem; }
body.theme-thankyou-page .woocommerce-order-overview { display: flex; flex-wrap: wrap; gap: 1rem 2rem; list-style: none; padding: 1.5rem; background: var(--color-secondary); border-radius: var(--card-radius); margin-bottom: 2rem; }
body.theme-thankyou-page .woocommerce-order-overview li { font-size: 0.875rem; }
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; border: 1px solid var(--color-border); padding: 1.25rem; border-radius: var(--card-radius); }

/* =========================================================================
 * CART / ACCOUNT PAGE WIDTH PARITY (Section 13.7)
 * ========================================================================= */
body.woocommerce-cart .site-page-wrap,
body.woocommerce-account .site-page-wrap { max-width: 80rem; }
