/* =========================================================================
   Sourdough on Summerhill — theme.css
   ========================================================================= */

:root {
	--color-background: #f9f5ec;
	--color-foreground: #2c3824;
	--color-primary: #3b4b30;
	--color-primary-fg: #f9f5eb;
	--color-secondary: #f2ecde;
	--color-muted: #f2eee3;
	--color-accent: #bd8f32;
	--color-accent-fg: #fcf9f3;
	--color-border: #b7c3ac;
	--color-card: #fcf9f3;
	--color-button-text: #f9f5eb;
	--logo-height: 80px;

	--font-display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
	--font-body: 'Nunito Sans', 'Helvetica Neue', sans-serif;

	--radius: 8px;
	--btn-radius: 8px;
	--btn-height: 3.25rem;
	--btn-padding: 0 2.25rem;
	--btn-font-size: 0.75rem;
	--btn-font-weight: 700;
	--btn-letter-spacing: 0.18em;
	--btn-text-transform: uppercase;
	--btn-icon-padding: 0.6rem;
	--card-radius: 12px;
	--section-padding: 2rem;
	--header-height: 104px;
	--checkout-gap: 2rem;

	--shadow-soft: 0 8px 28px -10px rgba(44, 56, 36, 0.20);
	--shadow-elevated: 0 18px 48px -14px rgba(44, 56, 36, 0.30);
	--transition-smooth: cubic-bezier(0.25, 0.4, 0.25, 1);
}

/* ---------------------------------------------------------------------
   BASE
   --------------------------------------------------------------------- */
* { box-sizing: border-box; }
html, body { overflow-x: hidden; }
html { background-color: var(--color-background); scroll-behavior: smooth; }
body {
	margin: 0;
	color: var(--color-foreground);
	background-color: var(--color-background);
	font-family: var(--font-body);
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	font-weight: inherit;
	font-size: inherit;
	letter-spacing: -0.01em;
	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; }
a,
button,
[role="button"],
[data-scroll-to],
[data-nav-target],
[data-category-tile],
[data-filter-toggle],
[data-filter-option],
[data-filter-price],
[data-search-open],
[data-cart-open],
[data-contact-open],
[data-faq-toggle],
[data-mobile-menu-open],
[data-mobile-accordion],
label[for],
summary,
.theme-icon-btn,
.nav-link,
.theme-category-tile,
.theme-card-link,
.theme-mobile-footer-btn,
.theme-filter-dropdown__btn,
.theme-search-hit,
.theme-search-cat,
input[type="submit"],
input[type="button"],
input[type="reset"] {
	cursor: pointer;
}
img { max-width: 100%; height: auto; display: block; }
img:not(.cover-img):not(.theme-product-gallery-img):not(.theme-hero__slide) {
	max-width: 100%;
	height: auto;
}
.cover-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.container-wide { width: 100%; max-width: 84rem; margin: 0 auto; padding: 0 1.5rem; }
.container-editorial { width: 100%; max-width: 64rem; margin: 0 auto; padding: 0 1.5rem; }
@media (max-width: 1023px) {
	.container-wide,
	.container-editorial { padding: 0 1.75rem; }
}
@media (min-width: 1024px) { .container-wide, .container-editorial { padding: 0 2.5rem; } }

.theme-eyebrow, .theme-eyebrow-inverse {
	font-family: var(--font-body);
	font-size: 0.6875rem;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--color-primary);
	display: inline-block;
}
.theme-eyebrow-inverse { color: rgba(249,245,236,0.9); }

.btn-cta, .btn-cta-pink, .theme-btn-primary, .theme-btn-outline {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	height: var(--btn-height);
	padding: var(--btn-padding);
	border-radius: var(--btn-radius);
	font-family: var(--font-body);
	font-size: var(--btn-font-size);
	font-weight: var(--btn-font-weight);
	letter-spacing: var(--btn-letter-spacing);
	text-transform: var(--btn-text-transform);
	transition: all 0.3s var(--transition-smooth);
	border: 1px solid transparent;
	cursor: pointer;
}
.btn-cta, .theme-btn-primary {
	background: var(--color-accent);
	color: var(--color-button-text);
}
.btn-cta:hover, .theme-btn-primary:hover {
	filter: brightness(1.08);
	box-shadow: 0 10px 24px -12px rgba(59, 75, 48, 0.55);
}
.btn-cta-pink {
	background-color: #ffffff;
	color: var(--color-foreground);
	border-color: var(--color-border);
}
.btn-cta-pink:hover {
	background-color: var(--color-foreground);
	color: #fff;
	border-color: var(--color-foreground);
}
.theme-btn-outline {
	background: transparent;
	border-color: var(--color-border);
	color: var(--color-foreground);
	text-transform: uppercase;
	font-size: 0.75rem;
	letter-spacing: 0.24em;
}
.theme-btn-outline:hover { background: var(--color-secondary); }

.section-heading, .theme-shop-section__title, .theme-caption-strip__text {
	font-family: var(--font-display);
	font-weight: 500;
	font-style: italic;
}

/* ---------------------------------------------------------------------
   ANIMATION / REVEAL SYSTEM (Section 2.1)
   --------------------------------------------------------------------- */
.reveal-item {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.9s cubic-bezier(0.25,0.4,0.25,1), transform 0.9s cubic-bezier(0.25,0.4,0.25,1);
}
.reveal-item.is-visible { opacity: 1; transform: translateY(0); }
body.is-customizer .reveal-item,
body.is-customizer .theme-product-card-wrap.reveal-item {
	opacity: 1 !important;
	transform: none !important;
}
@media (prefers-reduced-motion: reduce) {
	.reveal-item { transition: none; opacity: 1; transform: none; }
}
.animate-fade-in { animation: theme-fadeIn 0.5s var(--transition-smooth) forwards; }
@keyframes theme-fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes theme-slideUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* ---------------------------------------------------------------------
   HEADER
   --------------------------------------------------------------------- */
.theme-announcement-bar { position: fixed; top: 0; left: 0; right: 0; z-index: 60; background: var(--color-primary); color: var(--color-primary-fg); }
.theme-announcement-inner { display: flex; align-items: center; justify-content: center; position: relative; min-height: 2.25rem; padding: 0.375rem 2rem; }
.theme-announcement-text { font-size: 0.625rem; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 600; text-align: center; }
.theme-announcement-close { position: absolute; right: 0.5rem; padding: 0.25rem; opacity: 0.7; }
.theme-announcement-close:hover { opacity: 1; }
body.has-announcement .site-header { top: var(--announcement-offset, 36px); }

.site-header { position: fixed; left: 0; right: 0; top: 0; z-index: 50; transition: all 0.3s ease; background: transparent; color: #fff; border-bottom: 1px solid transparent; }
.site-header.is-solid,
.site-header.is-scrolled {
	background: rgba(249,245,236,0.95);
	backdrop-filter: blur(10px);
	color: var(--color-foreground);
	border-bottom-color: var(--color-border);
}
.site-header.is-scrolled { box-shadow: var(--shadow-elevated); }
.site-header__bar { position: relative; }
.site-header__scrim {
	display: none;
	pointer-events: none;
	position: absolute;
	inset: 0 0 auto 0;
	height: 180%;
	background: linear-gradient(to bottom, rgba(0,0,0,0.45), rgba(0,0,0,0.2), transparent);
}
body.home .site-header:not(.is-scrolled):not(.is-solid):not(.has-mega-open) .site-header__scrim {
	display: block;
}
@media (max-width: 767px) {
	body.home .site-header:not(.is-scrolled):not(.is-solid) .site-header__scrim { display: none; }
	body.home .site-header:not(.is-scrolled):not(.is-solid) {
		background: rgba(249,245,236,0.95);
		backdrop-filter: blur(10px);
		color: var(--color-foreground);
		border-bottom-color: var(--color-border);
	}
}

/* WP admin bar offset */
body.admin-bar .theme-announcement-bar { top: 32px; }
body.admin-bar .site-header { top: 32px; }
body.admin-bar.has-announcement .site-header { top: calc(32px + var(--announcement-offset, 36px)); }
@media screen and (max-width: 782px) {
	body.admin-bar .theme-announcement-bar { top: 46px; }
	body.admin-bar .site-header { top: 46px; }
	body.admin-bar.has-announcement .site-header { top: calc(46px + var(--announcement-offset, 36px)); }
}

.site-nav { position: relative; display: flex; align-items: center; justify-content: space-between; height: 104px; transition: height 0.3s ease; overflow: visible; }
.site-header.is-scrolled .site-nav { height: 84px; }
@media (min-width: 1024px) { .site-nav { height: 120px; } .site-header.is-scrolled .site-nav { height: 84px; } }

.site-nav__mobile-toggle { display: flex; align-items: center; flex: 1; }
.theme-mobile-menu-btn { display: flex; flex-direction: column; gap: 5px; padding: 0.5rem; align-items: flex-start; justify-content: center; }
.theme-mobile-menu-btn span { display: block; height: 2.5px; width: 20px; background: currentColor; border-radius: 1px; transition: all 0.3s ease; transform-origin: center; }
.theme-mobile-menu-btn span:nth-child(1) { width: 20px; }
.theme-mobile-menu-btn span:nth-child(2) { width: 28px; }
.theme-mobile-menu-btn span:nth-child(3) { width: 14px; }
.theme-mobile-menu-btn:hover span:nth-child(3) { width: 24px; }
@media (min-width: 768px) { .site-nav__mobile-toggle { display: none; } }

.site-logo-link { display: flex; align-items: center; gap: 0.75rem; position: absolute; left: 50%; transform: translateX(-50%); }
@media (min-width: 768px) { .site-logo-link { position: static; transform: none; flex: 1; justify-content: flex-start; } }
.site-logo-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1;
	overflow: hidden;
	transition: height 0.3s ease, width 0.3s ease, border-radius 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
	height: 77px;
	width: 77px;
	border-radius: 12px;
	background: transparent;
}
@media (min-width: 1024px) {
	.site-logo-badge { height: 90px; width: 90px; }
}
.site-header.is-scrolled .site-logo-badge,
.site-header.is-solid .site-logo-badge {
	height: 54px;
	width: 54px;
	border-radius: 12px;
	background: transparent;
	box-shadow: none;
	transform: none;
}
@media (min-width: 768px) {
	body.home .site-header:not(.is-scrolled):not(.is-solid):not(.has-mega-open) .site-logo-badge {
		height: 104px;
		width: 104px;
		border-radius: 999px;
		background: rgba(249,245,236,0.95);
		box-shadow: 0 0 0 1px rgba(255,255,255,0.4), 0 10px 25px -5px rgba(0,0,0,0.18);
		transform: translateY(12px);
		backdrop-filter: blur(4px);
	}
}
@media (min-width: 1024px) {
	body.home .site-header:not(.is-scrolled):not(.is-solid):not(.has-mega-open) .site-logo-badge {
		height: 124px;
		width: 124px;
		transform: translateY(16px);
	}
}
.site-logo-img {
	height: 100% !important;
	width: 100% !important;
	object-fit: contain;
	display: block;
	padding: 9%;
	box-sizing: border-box;
	transition: padding 0.3s ease;
}
.site-header.is-scrolled .site-logo-img,
.site-header.is-solid .site-logo-img { padding: 0; }
.site-logo-text { font-family: var(--font-display); font-style: italic; font-size: 1.25rem; }
.site-brand-name { font-family: var(--font-body); font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.2em; }

.site-nav__desktop { display: none; }
@media (min-width: 768px) { .site-nav__desktop { display: flex; align-items: center; gap: 1.25rem; justify-content: center; } }
.theme-nav-list { display: flex; align-items: center; gap: 1.25rem; list-style: none; margin: 0; padding: 0; }
@media (min-width: 1024px) { .theme-nav-list { gap: 2.25rem; } }
.theme-nav-item { position: static; }
.theme-nav-list a, .nav-link {
	font-size: 0.8125rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700;
	transition: color 0.3s ease; display: inline-flex; align-items: center; gap: 0.25rem;
}
.theme-nav-list a:hover, .nav-link:hover,
.theme-nav-item.is-open > .nav-link { color: var(--color-accent); }
.theme-nav-chevron { display: inline-flex; }

/* Mega menu */
.theme-mega-menu {
	position: absolute;
	top: 100%;
	left: 50%;
	right: auto;
	z-index: 40;
	display: none;
	width: 100vw;
	max-width: 100vw;
	transform: translateX(-50%);
}
.theme-nav-item.is-open > .theme-mega-menu { display: block; animation: theme-fadeIn 0.25s ease forwards; }
.theme-mega-menu__inner {
	background: var(--color-background);
	color: var(--color-foreground);
	box-shadow: var(--shadow-elevated);
	border-top: 1px solid var(--color-border);
	border-bottom: 1px solid var(--color-border);
}
.theme-mega-menu__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	padding-top: 3rem;
	padding-bottom: 3rem;
	padding-left: 2rem;
	padding-right: 2rem;
	box-sizing: border-box;
}
@media (min-width: 768px) {
	.theme-mega-menu__grid {
		grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
		align-items: stretch;
		padding-left: 2.5rem;
		padding-right: 2.5rem;
	}
}
@media (min-width: 1024px) {
	.theme-mega-menu__grid {
		padding-left: 3.5rem;
		padding-right: 3.5rem;
	}
}
.theme-mega-menu__columns {
	display: grid;
	grid-template-columns: repeat(var(--mega-cols, 1), minmax(0, 1fr));
	gap: 2.5rem;
}
.theme-mega-menu__col-title {
	font-size: 0.6875rem;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	font-weight: 700;
	opacity: 0.6;
	margin: 0 0 1.5rem;
	padding-bottom: 0.75rem;
	border-bottom: 1px solid var(--color-border);
}
.theme-mega-menu__links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.75rem; }
.theme-mega-menu__link {
	text-align: left;
	font-size: 0.875rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--color-foreground);
	transition: color 0.2s ease;
}
.theme-mega-menu__link:hover { color: var(--color-primary); }
.theme-mega-menu__shop-all {
	margin-top: 2rem;
	align-self: flex-start;
	font-size: 0.6875rem;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	font-weight: 700;
	border-bottom: 1px solid var(--color-primary);
	padding-bottom: 0.25rem;
}
.theme-mega-menu__feature {
	display: none;
	text-align: left;
	overflow: hidden;
	height: 100%;
	align-self: stretch;
	min-height: 0;
}
@media (min-width: 768px) { .theme-mega-menu__feature { display: block; } }
.theme-mega-menu__feature-media {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	min-height: 22rem;
	aspect-ratio: 4 / 5;
	overflow: hidden;
}
.theme-mega-menu__feature-media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	object-position: center;
	transition: transform 1.2s ease;
}
.theme-mega-menu__feature:hover img { transform: scale(1.05); }
.theme-mega-menu__feature-overlay {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top, rgba(0,0,0,0.55), rgba(0,0,0,0.1), rgba(0,0,0,0.2));
	pointer-events: none;
}
.theme-mega-menu__feature-eyebrow {
	position: absolute;
	top: 1.5rem;
	left: 1.5rem;
	right: 1.5rem;
	font-size: 0.6875rem;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	font-weight: 700;
	color: rgba(255,255,255,0.95);
	z-index: 1;
}
.theme-mega-menu__feature-foot {
	position: absolute;
	bottom: 1.5rem;
	left: 1.5rem;
	right: 1.5rem;
	color: #fff;
	z-index: 1;
}
.theme-mega-menu__feature-title {
	display: block;
	font-family: var(--font-display);
	font-weight: 800;
	text-transform: uppercase;
	font-size: 1.5rem;
	line-height: 1.15;
	margin-bottom: 0.75rem;
	text-shadow: 0 2px 18px rgba(0,0,0,0.6);
}
.theme-mega-menu__feature-cta {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.6875rem;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	font-weight: 700;
	border-bottom: 1px solid rgba(255,255,255,0.8);
	padding-bottom: 0.25rem;
}

.site-nav__icons { display: flex; align-items: center; justify-content: flex-end; flex: 1; gap: 0.25rem; }
.theme-icon-btn { padding: 0.5rem; display: inline-flex; transition: opacity 0.3s ease; position: relative; }
.theme-icon-btn:hover { opacity: 0.7; }
.theme-cart-count {
	position: absolute; top: -2px; right: -2px; min-width: 1.25rem; height: 1.25rem; padding: 0 3px;
	display: flex; align-items: center; justify-content: center; font-size: 0.625rem; font-weight: 600;
	background: var(--color-accent); color: var(--color-accent-fg); border-radius: 999px;
}
.theme-cart-count:empty { display: none; }

/* Mobile off-canvas menu */
.theme-mobile-menu {
	position: fixed; top: 0; left: 0; height: 100%; width: 88vw; max-width: 380px;
	background: var(--color-background); z-index: 90; transform: translateX(-100%);
	transition: transform 0.35s var(--transition-smooth); display: flex; flex-direction: column;
	border-right: 1px solid var(--color-border); color: var(--color-foreground);
}
.theme-mobile-menu.is-open { transform: translateX(0); }
.theme-mobile-menu__header { display: flex; align-items: center; justify-content: flex-end; padding: 0 1.25rem; height: 64px; border-bottom: 1px solid rgba(0,0,0,0.08); }
.theme-mobile-menu__header-spacer { display: none; }
.theme-mobile-menu__nav { flex: 1; overflow-y: auto; padding: 0.75rem 0.5rem; }
.theme-mobile-nav-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.theme-mobile-nav-item { border-bottom: 1px solid rgba(0,0,0,0.06); }
.theme-mobile-nav-toggle,
.theme-mobile-nav-link {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 0.75rem;
	font-family: var(--font-display);
	font-size: 1.125rem;
	text-align: left;
	color: var(--color-foreground);
}
.theme-mobile-nav-toggle svg { transition: transform 0.3s ease; }
.theme-mobile-nav-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.theme-mobile-nav-panel { padding: 0 0.75rem 0.75rem; }
.theme-mobile-nav-group { margin-bottom: 1rem; }
.theme-mobile-nav-group-title {
	font-size: 0.75rem;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	opacity: 0.5;
	margin: 0 0 0.5rem;
}
.theme-mobile-nav-group ul { list-style: none; margin: 0; padding: 0; }
.theme-mobile-nav-group button {
	width: 100%;
	text-align: left;
	padding: 0.625rem 0;
	font-size: 0.875rem;
	opacity: 0.85;
}
.theme-mobile-nav-group button:hover { color: var(--color-primary); opacity: 1; }
.theme-mobile-nav-shop-all {
	font-size: 0.75rem !important;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--color-primary) !important;
	text-decoration: underline;
	text-underline-offset: 4px;
	opacity: 1 !important;
}
.theme-mobile-menu__footer {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.5rem;
	padding: 1rem 0.75rem;
	border-top: 1px solid var(--color-border);
}
.theme-mobile-footer-btn {
	display: flex; align-items: center; justify-content: center; gap: 0.5rem;
	padding: 0.75rem; border: 1px solid var(--color-border);
	font-size: 0.6875rem; letter-spacing: 0.2em; text-transform: uppercase;
}
.theme-mobile-footer-btn:hover { background: var(--color-primary); color: var(--color-primary-fg); }
.theme-mobile-footer-btn--contact { width: 100%; }
.theme-mobile-menu-overlay { position: fixed; inset: 0; background: rgba(44,56,36,0.4); z-index: 85; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.theme-mobile-menu-overlay.is-open { opacity: 1; pointer-events: auto; }

/* Search dialog (Lovable 2-col layout) */
.theme-search-dialog { position: fixed; inset: 0; z-index: 100; display: none; }
.theme-search-dialog.is-open { display: block; animation: theme-fadeIn 0.25s ease forwards; }
.theme-search-overlay { position: absolute; inset: 0; background: rgba(44,56,36,0.4); backdrop-filter: blur(2px); border: none; }
.theme-search-panel { position: relative; background: var(--color-background); max-height: 92vh; overflow-y: auto; border-bottom: 1px solid var(--color-border); box-shadow: var(--shadow-elevated); color: var(--color-foreground); }
.theme-search-close { position: absolute; top: 1.25rem; right: 1.25rem; z-index: 5; }
.theme-search-inner { padding: 2.5rem 0.25rem 3.5rem; }
@media (min-width: 768px) { .theme-search-inner { padding: 3rem 0.5rem 3.5rem; } }
@media (min-width: 1024px) { .theme-search-inner { padding: 3.5rem 0; } }
.theme-search-panel .container-wide {
	padding-left: 1.75rem;
	padding-right: 1.75rem;
}
@media (min-width: 768px) {
	.theme-search-panel .container-wide {
		padding-left: 2.25rem;
		padding-right: 2.25rem;
	}
}
@media (min-width: 1024px) {
	.theme-search-panel .container-wide {
		padding-left: 2.5rem;
		padding-right: 2.5rem;
	}
}
.theme-search-layout { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 1024px) {
	.theme-search-layout { grid-template-columns: 260px minmax(0, 1fr); gap: 4rem; }
	.theme-search-main { padding-right: 4rem; }
}
.theme-search-aside__title { font-family: var(--font-display); font-size: 1.5rem; margin: 0 0 1.5rem; }
.theme-search-cats { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.875rem; }
.theme-search-cat {
	text-align: left;
	font-size: 0.75rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	opacity: 0.85;
}
.theme-search-cat:hover { color: var(--color-primary); opacity: 1; }
.theme-search-input-row { display: flex; align-items: center; gap: 0.75rem; border-bottom: 1px solid color-mix(in srgb, var(--color-primary) 30%, transparent); padding-bottom: 0.75rem; }
.theme-search-input { flex: 1; background: transparent; border: none; outline: none; font-family: var(--font-display); font-size: 1.5rem; }
.theme-search-results-wrap { margin-top: 2.5rem; }
.theme-search-results-heading { font-family: var(--font-display); font-size: 1.5rem; margin: 0 0 1.5rem; }
.theme-search-results { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (min-width: 768px) { .theme-search-results { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .theme-search-results { grid-template-columns: repeat(4, 1fr); gap: 2rem; } }
.theme-search-hit { text-align: left; display: block; color: inherit; text-decoration: none; }
.theme-search-hit__image { aspect-ratio: 1/1; background: var(--color-secondary); overflow: hidden; position: relative; display: block; }
.theme-search-hit__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.theme-search-hit:hover .theme-search-hit__image img { transform: scale(1.05); }
.theme-search-hit__title { margin-top: 0.75rem; font-size: 0.75rem; letter-spacing: 0.24em; text-transform: uppercase; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.theme-search-hit__price { margin-top: 0.25rem; font-size: 0.75rem; opacity: 0.7; display: block; }
.theme-search-empty { font-size: 0.875rem; opacity: 0.6; }

/* Contact modal */
.theme-contact-modal { position: fixed; inset: 0; z-index: 110; display: none; align-items: center; justify-content: center; padding: 1.5rem; }
.theme-contact-modal.is-open { display: flex; }
.theme-contact-modal__overlay { position: absolute; inset: 0; background: rgba(44,56,36,0.5); border: none; }
.theme-contact-modal__panel {
	position: relative;
	background: var(--color-background);
	max-width: 32rem;
	width: 100%;
	max-height: 90vh;
	overflow-y: auto;
	padding: 1.5rem;
	border: 1px solid var(--color-border);
	border-radius: 0;
	box-shadow: var(--shadow-elevated);
	display: grid;
	gap: 1rem;
}
.theme-contact-modal__close { position: absolute; top: 1rem; right: 1rem; z-index: 2; }
.theme-contact-modal__eyebrow { margin: 0; }
.theme-contact-modal__title {
	font-family: var(--font-display);
	font-style: italic;
	font-size: 1.5rem;
	line-height: 1.25;
	margin: 0;
	font-weight: 500;
}
.theme-contact-modal__desc { font-size: 0.9375rem; line-height: 1.6; opacity: 0.85; margin: 0; }
.theme-contact-modal__meta {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	border-top: 1px solid var(--color-border);
	padding-top: 1rem;
	margin-top: 0.25rem;
	font-size: 0.875rem;
	opacity: 0.85;
}
.theme-contact-modal__meta p { display: flex; align-items: center; gap: 0.5rem; margin: 0; }
.theme-contact-modal__meta a { color: inherit; text-decoration: none; }
.theme-contact-modal__meta a:hover { color: var(--color-foreground); }
.theme-contact-modal__form { margin-top: 0; display: flex; flex-direction: column; gap: 1rem; }
.theme-form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .theme-form-row { grid-template-columns: 1fr 1fr; } }
.theme-form-field label {
	font-size: 0.6875rem;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	font-weight: 600;
	display: block;
	margin-bottom: 0.375rem;
	opacity: 0.75;
}
.theme-form-field input, .theme-form-field textarea {
	width: 100%;
	padding: 0.625rem 0.75rem;
	background: var(--color-background);
	border: 1px solid var(--color-border);
	font-family: var(--font-body);
	font-size: 0.875rem;
	resize: none;
	border-radius: 0;
	box-sizing: border-box;
}
.theme-form-field input:focus, .theme-form-field textarea:focus { outline: none; border-color: var(--color-primary); }
.theme-form-actions { display: flex; justify-content: flex-end; }
.theme-form-actions .btn-cta {
	border-radius: 0;
	height: 2.75rem;
	padding: 0 1.5rem;
	font-size: 0.75rem;
	letter-spacing: 0.24em;
}
.theme-contact-form-error { color: #ba3a2c; font-size: 0.8125rem; }
.theme-contact-modal__success { display: none; text-align: center; padding: 2rem 0; }
.theme-contact-modal__success.is-visible { display: block; }
.theme-contact-modal__success-icon { display: inline-flex; align-items: center; justify-content: center; width: 3.5rem; height: 3.5rem; border-radius: 50%; background: var(--color-accent); color: var(--color-accent-fg); margin-bottom: 1rem; }
.theme-contact-modal__form.is-hidden { display: none; }

/* ---------------------------------------------------------------------
   HERO
   --------------------------------------------------------------------- */
.theme-hero { position: relative; width: 100%; height: 100svh; min-height: 100svh; overflow: hidden; }
.theme-hero__slide {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	min-width: 100%;
	min-height: 100%;
	max-width: none;
	object-fit: cover;
	object-position: center;
	opacity: 0;
	transition: opacity 1.4s cubic-bezier(0.25,0.4,0.25,1), transform 1.4s cubic-bezier(0.25,0.4,0.25,1);
	transform: scale(1.04);
}
.theme-hero__slide.is-active { opacity: 1; transform: scale(1); z-index: 1; }
.theme-hero__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(44,56,36,0.6), rgba(44,56,36,0.15) 60%, rgba(44,56,36,0.2)); z-index: 2; }
.theme-hero__content { position: absolute; inset-inline: 0; bottom: 0; z-index: 3; }
.theme-hero__content-inner { padding-bottom: 5rem; display: flex; flex-direction: column; gap: 2rem; }
@media (min-width: 768px) { .theme-hero__content-inner { flex-direction: row; align-items: flex-end; justify-content: space-between; padding-bottom: 6rem; } }
.theme-hero__title { font-family: var(--font-display); font-style: italic; font-weight: 500; color: #fff; font-size: 2rem; line-height: 0.95; letter-spacing: -0.01em; }
@media (min-width: 640px) { .theme-hero__title { font-size: 2.5rem; } }
@media (min-width: 768px) { .theme-hero__title { font-size: 3rem; } }
@media (min-width: 1024px) { .theme-hero__title { font-size: 3.75rem; } }
@media (min-width: 1280px) { .theme-hero__title { font-size: 4.5rem; } }
.theme-hero__cta { flex-shrink: 0; align-self: flex-start; }
.theme-hero__dots { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; gap: 0.5rem; }
.theme-hero__dot { height: 8px; width: 8px; border-radius: 999px; background: rgba(249,245,236,0.5); transition: all 0.5s ease; }
.theme-hero__dot.is-active { width: 2.5rem; background: #fff; }

/* ---------------------------------------------------------------------
   CAPTION STRIP
   --------------------------------------------------------------------- */
.theme-caption-strip { border-bottom: 1px solid var(--color-border); background: color-mix(in srgb, var(--color-secondary) 60%, transparent); }
.theme-caption-strip__inner { padding: 2rem 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 768px) { .theme-caption-strip__inner { flex-direction: row; align-items: center; justify-content: space-between; } }
.theme-caption-strip__text { font-size: 1.25rem; line-height: 1.4; }
@media (min-width: 768px) { .theme-caption-strip__text { font-size: 1.5rem; } }
.theme-caption-strip__cta { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700; color: var(--color-primary); }
.theme-caption-strip__cta:hover { color: var(--color-accent); }

/* ---------------------------------------------------------------------
   GENERIC SECTION SPACING
   --------------------------------------------------------------------- */
.theme-section { position: relative; }
.theme-section-head { text-align: center; max-width: 48rem; margin: 0 auto 3rem; }
.theme-section-head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-bottom: 2.5rem; }

/* Shop categories */
.theme-shop-categories__inner { padding: 4rem 0 3rem; }
@media (min-width: 1024px) { .theme-shop-categories__inner { padding: 5rem 0 4rem; } }
.theme-shop-categories__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-bottom: 2rem; }
.theme-shop-categories__title { font-size: 1.875rem; font-weight: 600; }
@media (min-width: 768px) { .theme-shop-categories__title { font-size: 2.25rem; } }
.theme-clear-filter { font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700; color: var(--color-primary); }
.theme-shop-categories__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
@media (min-width: 768px) { .theme-shop-categories__grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; } }
.theme-category-tile { position: relative; aspect-ratio: 3/4; overflow: hidden; background: var(--color-secondary); text-align: left; display: block; width: 100%; }
.theme-category-tile__image { transition: transform 1.2s ease-out; }
.theme-category-tile:hover .theme-category-tile__image { transform: scale(1.05); }
.theme-category-tile__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(44,56,36,0.6), rgba(44,56,36,0.1) 60%, rgba(44,56,36,0.15)); }
.theme-category-tile__label { position: absolute; bottom: 1rem; left: 1rem; color: #fff; font-weight: 600; font-size: 1.125rem; }
.theme-category-tile__arrow { position: absolute; bottom: 1rem; right: 1rem; width: 2rem; height: 2rem; border-radius: 50%; background: #fff; color: var(--color-primary); display: flex; align-items: center; justify-content: center; transition: transform 0.3s ease; }
.theme-category-tile.is-active { outline: 4px solid var(--color-accent); }
.theme-category-tile:hover .theme-category-tile__arrow { transform: translateX(4px); }

/* Promo banner */
.theme-promo-banner { position: relative; display: block; width: 100%; height: 55vh; min-height: 22rem; overflow: hidden; text-align: left; }
@media (min-width: 768px) { .theme-promo-banner { height: 65vh; min-height: 0; } }
.theme-promo-banner__image { transition: transform 1.2s ease-out; }
.theme-promo-banner:hover .theme-promo-banner__image { transform: scale(1.04); }
.theme-promo-banner__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(44,56,36,0.6), rgba(44,56,36,0.1) 60%, rgba(44,56,36,0.15)); }
.theme-promo-banner__content {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-end;
	gap: 1.25rem;
	padding: 1.5rem;
}
@media (min-width: 768px) {
	.theme-promo-banner__content {
		padding: 3.5rem;
		gap: 0;
	}
}
.theme-promo-banner__title {
	font-style: italic;
	font-weight: 500;
	color: #fff;
	font-size: 1.85rem;
	line-height: 1.1;
	max-width: 100%;
	margin: 0;
}
@media (min-width: 768px) {
	.theme-promo-banner__title {
		font-size: 3.75rem;
		line-height: 1;
		max-width: calc(100% - 12rem);
	}
}
.theme-promo-banner__cta {
	position: static;
	align-self: flex-start;
	flex-shrink: 0;
	transition: transform 0.3s ease;
}
@media (min-width: 768px) {
	.theme-promo-banner__cta {
		position: absolute;
		bottom: 3.5rem;
		right: 3.5rem;
		align-self: auto;
	}
}
.theme-promo-banner:hover .theme-promo-banner__cta { transform: translateX(4px); }

/* Philosophy tickets */
.philosophy-section { background: color-mix(in srgb, var(--color-secondary) 50%, transparent); padding: 4rem 0; }
@media (min-width: 1024px) { .philosophy-section { padding: 6rem 0; } }
.philosophy-section__title { font-size: 1.875rem; margin-top: 0.75rem; }
@media (min-width: 768px) { .philosophy-section__title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .philosophy-section__title { font-size: 3rem; } }
.theme-philosophy-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 3rem; }
@media (min-width: 640px) { .theme-philosophy-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .theme-philosophy-grid { grid-template-columns: repeat(4, 1fr); gap: 2rem; } }

.ticket-card {
	position: relative;
	border: 1px solid rgba(44,56,36,0.15);
	box-shadow: var(--shadow-soft);
	padding: 1.75rem 1.5rem 1.75rem 2rem;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ticket-card.tilt-left { transform: rotate(-1deg); }
.ticket-card.tilt-right { transform: rotate(1deg); }
.ticket-card:hover { transform: translateY(-6px) rotate(0) scale(1.02); }
.ticket-paper {
	background-color: var(--color-card);
	background-image: radial-gradient(rgba(44,56,36,0.05) 1px, transparent 1px), radial-gradient(rgba(44,56,36,0.04) 1px, transparent 1px);
	background-size: 18px 18px, 11px 11px;
	background-position: 0 0, 6px 6px;
}
.ticket-perf-left {
	-webkit-mask-image: radial-gradient(circle at 0 8px, transparent 4.5px, black 5px) 0 0 / 100% 16px;
	mask-image: radial-gradient(circle at 0 8px, transparent 4.5px, black 5px) 0 0 / 100% 16px;
}
.ticket-stamp {
	position: absolute; top: 1rem; right: 1rem; display: inline-flex; align-items: center; justify-content: center;
	height: 3rem; width: 3rem; border-radius: 50%; border: 2px dashed var(--color-accent); color: var(--color-accent);
	transform: rotate(6deg); transition: transform 0.5s ease;
}
.ticket-card:hover .ticket-stamp { transform: rotate(24deg) scale(1.1); }
.ticket-meta { font-size: 0.625rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--color-accent); margin-bottom: 1rem; font-family: var(--font-body); }
.ticket-dot { color: rgba(44,56,36,0.4); }
.ticket-number { font-weight: 700; font-size: 3rem; line-height: 1; margin-bottom: 0.75rem; color: rgba(44,56,36,0.9); }
.ticket-divider { height: 1px; width: 2.5rem; background: rgba(44,56,36,0.3); margin-bottom: 1rem; transition: all 0.5s ease; }
.ticket-card:hover .ticket-divider { width: 5rem; background: var(--color-accent); }
.ticket-title { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.5rem; line-height: 1.3; }
.ticket-text { font-size: 0.875rem; opacity: 0.7; line-height: 1.6; }
.ticket-footer { margin-top: 1.5rem; padding-top: 1rem; border-top: 1px dashed rgba(44,56,36,0.25); display: flex; align-items: center; justify-content: space-between; font-family: var(--font-body); font-size: 0.625rem; letter-spacing: 0.22em; text-transform: uppercase; opacity: 0.6; }
.ticket-pulse-wrap { display: inline-flex; align-items: center; gap: 0.375rem; }
.ticket-pulse { display: inline-block; height: 6px; width: 6px; border-radius: 999px; background: var(--color-accent); animation: theme-ticket-pulse 2.2s ease-in-out infinite; }
@keyframes theme-ticket-pulse {
	0%, 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(189,143,50,0.6); }
	50% { transform: scale(1.35); opacity: 0.85; box-shadow: 0 0 0 6px rgba(189,143,50,0); }
}

/* New arrivals */
.theme-new-arrivals { padding: 3rem 0; }
@media (min-width: 1024px) { .theme-new-arrivals { padding: 5rem 0; } }
.theme-new-arrivals__grid { display: grid; grid-template-columns: 1fr; gap: 1rem; align-items: end; }
@media (min-width: 768px) { .theme-new-arrivals__grid { grid-template-columns: 5fr 7fr; gap: 1.5rem; } }
.theme-new-arrivals__image { position: relative; height: 460px; overflow: hidden; }
@media (min-width: 768px) { .theme-new-arrivals__image { height: 660px; } }
.theme-new-arrivals__feature { position: relative; display: block; height: 460px; overflow: hidden; text-align: left; }
@media (min-width: 768px) { .theme-new-arrivals__feature { height: 660px; } }
.theme-new-arrivals__feature img { transition: transform 1.2s ease-out; }
.theme-new-arrivals__feature:hover img { transform: scale(1.04); }
.theme-new-arrivals__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(44,56,36,0.4), transparent); }
.theme-new-arrivals__title { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; text-align: center; color: #fff; font-style: italic; font-weight: 500; font-size: 3rem; line-height: 0.9; padding: 1.5rem; text-shadow: 0 4px 28px rgba(0,0,0,0.4); }
@media (min-width: 640px) { .theme-new-arrivals__title { font-size: 3.75rem; } }
@media (min-width: 768px) { .theme-new-arrivals__title { font-size: 4.5rem; } }
.theme-new-arrivals__cta { position: absolute; bottom: 1.5rem; right: 1.5rem; transition: transform 0.3s ease; }
.theme-new-arrivals__feature:hover .theme-new-arrivals__cta { transform: translateX(4px); }

/* Product grids */
.theme-product-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; gap: 1.5rem; align-items: stretch; }
@media (min-width: 640px) { .theme-product-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1024px) { .theme-product-grid { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 2rem; } }
.theme-product-grid--3 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .theme-product-grid--3 { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1024px) { .theme-product-grid--3 { grid-template-columns: repeat(3, minmax(0,1fr)); } }

.theme-featured-products, .theme-shop-section__body, .theme-related-products { padding: 3rem 0; }
@media (min-width: 1024px) { .theme-featured-products { padding: 4rem 0 5rem; } }

.theme-product-card-wrap { display: flex; flex-direction: column; height: 100%; }
.theme-product-card { position: relative; display: flex; flex-direction: column; height: 100%; }
.theme-product-card > .theme-card-link { position: absolute; inset: 0; z-index: 2; pointer-events: auto; }
.theme-product-card *:not(.theme-card-link) { pointer-events: none; }
.theme-product-card__image-wrapper { position: relative; aspect-ratio: 1/1; overflow: hidden; background: var(--color-muted); }
.theme-product-card__image { transition: transform 0.7s ease; }
.theme-product-card:hover .theme-product-card__image { transform: scale(1.03); }
.theme-product-card__badge { position: absolute; top: 0.75rem; left: 0.75rem; padding: 0.25rem 0.625rem; font-size: 0.625rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; background: var(--color-foreground); color: var(--color-background); z-index: 3; }
.theme-product-card__info { padding-top: 1rem; padding-bottom: 0.25rem; flex: 1; min-width: 0; }
.theme-product-card__title { font-family: var(--font-body); font-weight: 600; text-transform: uppercase; letter-spacing: 0.03em; font-size: 0.9375rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.theme-product-card:hover .theme-product-card__title { color: var(--color-primary); }
.theme-product-card__price { margin-top: 0.5rem; font-size: 0.875rem; font-weight: 600; }
.theme-product-card__price .amount { font-weight: 600; }

/* Shop section */
.theme-shop-section { background: color-mix(in srgb, var(--color-secondary) 50%, transparent); border-radius: 1.5rem; margin: 0 0.75rem; }
@media (min-width: 768px) { .theme-shop-section { margin: 0 1.5rem; } }
.theme-shop-section__head { padding-top: 4rem; padding-bottom: 1rem; text-align: center; }
@media (min-width: 1024px) { .theme-shop-section__head { padding-top: 6rem; } }
.theme-shop-section__title { font-size: 2.25rem; line-height: 1.05; }
@media (min-width: 768px) { .theme-shop-section__title { font-size: 3rem; } }
@media (min-width: 1024px) { .theme-shop-section__title { font-size: 3.75rem; } }
.theme-shop-filters { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2.5rem; justify-content: center; }
@media (min-width: 640px) { .theme-shop-filters { flex-direction: row; gap: 1rem; } }
.theme-shop-filters {
	position: relative;
	z-index: 40;
	isolation: isolate;
}
.theme-filter-dropdown { position: relative; flex: 1; z-index: 1; }
.theme-filter-dropdown.is-open { z-index: 50; }
@media (min-width: 640px) { .theme-filter-dropdown { max-width: 20rem; } }
.theme-filter-dropdown__btn { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 0.75rem 1rem; border-radius: var(--radius); border: 2px solid var(--color-border); background: var(--color-background); transition: border-color 0.2s ease; }
.theme-filter-dropdown__btn:hover { border-color: var(--color-primary); }
.theme-filter-dropdown__label-wrap { display: flex; flex-direction: column; align-items: flex-start; }
.theme-filter-dropdown__label { font-size: 0.6875rem; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.6; }
.theme-filter-dropdown__value { font-size: 0.875rem; font-weight: 600; margin-top: 0.125rem; }
.theme-filter-dropdown__btn svg { transition: transform 0.2s ease; }
.theme-filter-dropdown.is-open .theme-filter-dropdown__btn svg { transform: rotate(180deg); }
.theme-filter-dropdown__list { position: absolute; left: 0; right: 0; top: 100%; margin-top: 0.25rem; z-index: 60; background: var(--color-background); border: 2px solid var(--color-border); border-radius: var(--radius); box-shadow: var(--shadow-elevated); max-height: 20rem; overflow-y: auto; list-style: none; padding: 0.25rem 0; }
.theme-filter-dropdown__list button { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 0.625rem 1rem; text-align: left; font-size: 0.875rem; }
.theme-filter-dropdown__list button:hover { background: color-mix(in srgb, var(--color-secondary) 60%, transparent); }
.theme-filter-dropdown__list button svg { display: none; }
.theme-filter-dropdown__list button.is-active { color: var(--color-primary); font-weight: 600; }
.theme-filter-dropdown__list button.is-active svg { display: block; }
.theme-filter-clear-all { font-size: 0.75rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700; color: var(--color-primary); align-self: center; }
@media (min-width: 640px) { .theme-filter-clear-all { align-self: flex-end; padding-bottom: 0.75rem; } }

.theme-shop-empty { padding: 5rem 1rem; text-align: center; border: 2px dashed var(--color-border); border-radius: 1rem; background: var(--color-background); }
.theme-shop-empty__title { font-family: var(--font-display); font-style: italic; font-size: 1.5rem; margin-bottom: 0.5rem; }
.theme-shop-empty__text { font-size: 0.875rem; opacity: 0.7; }

/* Two-up banners */
.theme-twoup-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; padding: 4rem 0; }
@media (min-width: 768px) { .theme-twoup-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; } }
.theme-twoup-banner { position: relative; display: block; width: 100%; aspect-ratio: 4/5; overflow: hidden; text-align: left; }
@media (min-width: 768px) { .theme-twoup-banner { aspect-ratio: 5/6; } }
.theme-twoup-banner img { transition: transform 1.2s ease-out; }
.theme-twoup-banner:hover img { transform: scale(1.04); }
.theme-twoup-banner__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(44,56,36,0.6), rgba(44,56,36,0.1) 60%, rgba(44,56,36,0.15)); }
.theme-twoup-banner__content { position: absolute; inset-inline: 0; bottom: 0; padding: 2rem; }
@media (min-width: 768px) { .theme-twoup-banner__content { padding: 2.5rem; } }
.theme-twoup-banner__eyebrow { display: inline-block; font-size: 0.6875rem; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 700; color: var(--color-primary-fg); background: var(--color-accent); padding: 0.375rem 0.75rem; border-radius: 999px; margin-bottom: 0.75rem; }
.theme-twoup-banner__title { font-style: italic; font-weight: 500; color: #fff; font-size: 1.5rem; line-height: 1; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .theme-twoup-banner__title { font-size: 1.875rem; } }
@media (min-width: 1024px) { .theme-twoup-banner__title { font-size: 2.25rem; } }

/* About / process */
.theme-about-grid { display: grid; grid-template-columns: 1fr; min-height: 70vh; }
@media (min-width: 1024px) { .theme-about-grid { grid-template-columns: 1fr 1fr; } }
.theme-about-image { position: relative; min-height: 50vh; overflow: hidden; order: 2; }
@media (min-width: 1024px) { .theme-about-image { min-height: 100%; order: 1; } }
.theme-about-copy { display: flex; flex-direction: column; justify-content: center; padding: 2.5rem 2rem; order: 1; }
@media (min-width: 768px) { .theme-about-copy { padding: 3.5rem; } }
@media (min-width: 1024px) { .theme-about-copy { padding: 5rem; order: 2; } }
.about-section__title { font-size: 2.25rem; line-height: 1.05; margin: 1.5rem 0 2rem; }
@media (min-width: 768px) { .about-section__title { font-size: 3rem; } }
.theme-about-text { display: flex; flex-direction: column; gap: 1rem; opacity: 0.75; font-size: 0.9375rem; line-height: 1.7; margin-bottom: 2.5rem; }
.theme-about-quote { font-family: var(--font-display); font-style: italic; font-size: 1.25rem; line-height: 1.4; border-top: 1px solid var(--color-border); padding-top: 2rem; }
@media (min-width: 768px) { .theme-about-quote { font-size: 1.5rem; } }

/* Markets & events */
.theme-markets { padding: 5rem 0; }
@media (min-width: 1024px) { .theme-markets { padding: 7rem 0; } }
.theme-markets__intro { margin-top: 1.25rem; opacity: 0.7; font-size: 0.9375rem; max-width: 34rem; margin-left: auto; margin-right: auto; }
.theme-markets__empty { border: 1px dashed rgba(44,56,36,0.25); padding: 3.5rem 1.5rem; text-align: center; }
.theme-markets__empty-title { font-family: var(--font-display); font-style: italic; font-size: 1.25rem; margin-bottom: 0.5rem; }
.theme-markets__empty-text { opacity: 0.6; font-size: 0.875rem; }
.theme-markets__list { display: flex; flex-direction: column; gap: 1.75rem; }
.theme-market-card { padding: 1.5rem; }
@media (min-width: 768px) { .theme-market-card { padding: 2rem; } }
.theme-market-card__body { display: flex; flex-direction: column; gap: 1.5rem; }
@media (min-width: 768px) { .theme-market-card__body { flex-direction: row; align-items: center; gap: 2rem; } }
.theme-market-card__date { flex-shrink: 0; display: flex; align-items: center; gap: 1rem; padding-bottom: 1.25rem; border-bottom: 1px dashed rgba(44,56,36,0.3); }
@media (min-width: 768px) { .theme-market-card__date { display: block; padding-bottom: 0; padding-right: 2rem; border-bottom: none; border-right: 1px dashed rgba(44,56,36,0.3); text-align: center; min-width: 7.5rem; } }
.theme-market-card__month { font-size: 0.625rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--color-accent); }
.theme-market-card__day { font-family: var(--font-display); font-weight: 700; font-size: 3rem; line-height: 1; }
@media (min-width: 768px) { .theme-market-card__day { font-size: 3.75rem; } }
.theme-market-card__weekday { font-size: 0.625rem; letter-spacing: 0.24em; text-transform: uppercase; opacity: 0.55; margin-top: 0.5rem; }
.theme-market-card__info { flex: 1; min-width: 0; }
.theme-market-card__title { font-weight: 600; font-size: 1.5rem; margin-bottom: 0.25rem; }
.theme-market-card__meta { display: flex; flex-direction: column; gap: 0.5rem; opacity: 0.7; font-size: 0.875rem; }
.theme-market-card__meta span { display: flex; align-items: flex-start; gap: 0.5rem; }
.theme-market-card__note { margin-top: 1rem; font-size: 0.875rem; opacity: 0.6; line-height: 1.6; }
.theme-market-card__action { flex-shrink: 0; }
@media (min-width: 768px) { .theme-market-card__action { padding-left: 1.5rem; border-left: 1px dashed rgba(44,56,36,0.25); } }

/* Meet the baker */
.theme-baker-section { padding: 4rem 0; background: var(--color-card); }
@media (min-width: 1024px) { .theme-baker-section { padding: 6rem 0; } }
.theme-baker-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
@media (min-width: 1024px) { .theme-baker-grid { grid-template-columns: 5fr 7fr; gap: 4rem; } }
.theme-baker-image { position: relative; aspect-ratio: 4/5; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow-elevated); }
.theme-baker-copy h2 { font-style: italic; font-weight: 500; font-size: 2.25rem; line-height: 1.05; margin: 1rem 0 2rem; }
@media (min-width: 768px) { .theme-baker-copy h2 { font-size: 3rem; } }
.theme-baker-text { display: flex; flex-direction: column; gap: 1rem; font-size: 0.9375rem; line-height: 1.7; opacity: 0.9; }
.theme-baker-text__quote { font-family: var(--font-display); font-style: italic; font-size: 1.125rem; }

/* Story banner */
.theme-story__banner { position: relative; width: 100%; height: 60vh; overflow: hidden; }
@media (min-width: 768px) { .theme-story__banner { height: 70vh; } }
.theme-story__overlay { position: absolute; inset: 0; background: linear-gradient(to right, var(--color-primary), color-mix(in srgb, var(--color-primary) 85%, transparent), color-mix(in srgb, var(--color-primary) 30%, transparent)); }
.theme-story__content { position: absolute; inset: 0; display: flex; align-items: center; }
.theme-story__copy { max-width: 36rem; }
.theme-story__title { font-style: italic; font-weight: 500; color: #fff; font-size: 2.25rem; line-height: 1; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .theme-story__title { font-size: 3.75rem; } }
.theme-story__text { color: rgba(255,255,255,0.95); font-size: 0.875rem; line-height: 1.7; }
@media (min-width: 768px) { .theme-story__text { font-size: 0.9375rem; } }

/* Marquee */
.theme-marquee { position: relative; overflow: hidden; background: var(--color-accent); border-top: 1px solid rgba(44,56,36,0.1); border-bottom: 1px solid rgba(44,56,36,0.1); padding: 1.25rem 0; }
.theme-marquee__track { display: flex; white-space: nowrap; animation: theme-marquee-scroll 30s linear infinite; }
.theme-marquee__group { display: flex; flex-shrink: 0; align-items: center; gap: 2rem; padding-right: 2rem; }
.theme-marquee__item { display: flex; align-items: center; gap: 2rem; font-family: var(--font-display); font-style: italic; color: #fff; font-size: 1.875rem; letter-spacing: -0.01em; }
@media (min-width: 768px) { .theme-marquee__item { font-size: 3rem; } }
.theme-marquee__star { color: rgba(255,255,255,0.8); font-size: 1.875rem; }
@media (min-width: 768px) { .theme-marquee__star { font-size: 3rem; } }
@keyframes theme-marquee-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* FAQ */
.theme-faq-section { padding: 5rem 0; }
@media (min-width: 1024px) { .theme-faq-section { padding: 7rem 0; } }
.theme-faq-header { margin-bottom: 4rem; }
.theme-faq-header__title { font-style: italic; font-weight: 500; font-size: 3rem; letter-spacing: -0.01em; border-bottom: 1px solid var(--color-border); padding-bottom: 1rem; }
@media (min-width: 768px) { .theme-faq-header__title { font-size: 3.75rem; } }
@media (min-width: 1024px) { .theme-faq-header__title { font-size: 4.5rem; } }
.theme-faq-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .theme-faq-grid { grid-template-columns: 4fr 8fr; gap: 5rem; } }
.theme-faq-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
@media (min-width: 1024px) { .theme-faq-sidebar { position: sticky; top: 8rem; align-self: flex-start; } }
.theme-faq-sidebar p { font-size: 1rem; line-height: 1.6; }
@media (min-width: 768px) { .theme-faq-sidebar p { font-size: 1.125rem; } }
.theme-faq-sidebar .btn-cta { align-self: flex-start; padding: 0.75rem 2rem; height: auto; }
.theme-faq-list { border-top: 1px solid var(--color-border); }
.theme-faq-item { border-bottom: 1px solid var(--color-border); }
.theme-faq-item__question { width: 100%; display: flex; align-items: flex-start; justify-content: space-between; gap: 1.5rem; padding: 1.25rem 0; text-align: left; }
.theme-faq-item__question span:first-child { font-weight: 600; font-size: 0.9375rem; line-height: 1.4; }
@media (min-width: 768px) { .theme-faq-item__question span:first-child { font-size: 1rem; } }
.theme-faq-item__question:hover span:first-child { color: var(--color-primary); }
.theme-faq-item__icon { flex-shrink: 0; margin-top: 0.125rem; color: var(--color-primary); }
.theme-faq-item__icon .icon-minus { display: none; }
.theme-faq-item[aria-expanded="true"] .icon-plus,
.theme-faq-item__question[aria-expanded="true"] ~ * .icon-plus { display: none; }
.theme-faq-item__question[aria-expanded="true"] .icon-plus { display: none; }
.theme-faq-item__question[aria-expanded="true"] .icon-minus { display: block; }
.theme-faq-item__answer { overflow: hidden; transition: max-height 0.4s cubic-bezier(0.25,0.4,0.25,1); }
.theme-faq-item__answer p { padding-bottom: 1.5rem; padding-right: 3rem; opacity: 0.7; font-size: 0.9375rem; line-height: 1.7; }

/* Contact band */
.theme-contact-band { position: relative; margin-top: 6rem; margin-bottom: -5rem; overflow: hidden; }
@media (min-width: 1024px) { .theme-contact-band { margin-bottom: -7rem; } }
.theme-contact-band__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.theme-contact-band__overlay { position: absolute; inset: 0; background: rgba(44,56,36,0.8); }
.theme-contact-band__content {
	position: relative;
	text-align: center;
	padding: 5rem 1.75rem;
}
@media (min-width: 768px) {
	.theme-contact-band__content { padding: 8rem 2.25rem; }
}
@media (min-width: 1024px) {
	.theme-contact-band__content { padding: 8rem 2.5rem; }
}
.theme-contact-band__title { font-style: italic; font-weight: 500; color: #fff; font-size: 2.25rem; line-height: 1.05; margin: 1.25rem 0 2rem; }
@media (min-width: 768px) { .theme-contact-band__title { font-size: 3rem; } }
@media (min-width: 1024px) { .theme-contact-band__title { font-size: 3.75rem; } }
.theme-contact-band__text { max-width: 32rem; margin: 0 auto 2.5rem; color: rgba(255,255,255,0.9); font-size: 0.9375rem; line-height: 1.7; }
.theme-contact-band__actions { display: flex; flex-direction: column; gap: 0.75rem; justify-content: center; }
@media (min-width: 640px) { .theme-contact-band__actions { flex-direction: row; } }

/* ---------------------------------------------------------------------
   FOOTER
   --------------------------------------------------------------------- */
.site-footer { background: var(--color-foreground); color: var(--color-background); }
.site-footer .container-wide {
	padding-left: 1.75rem;
	padding-right: 1.75rem;
}
@media (min-width: 768px) {
	.site-footer .container-wide {
		padding-left: 2.25rem;
		padding-right: 2.25rem;
	}
}
@media (min-width: 1024px) {
	.site-footer .container-wide {
		padding-left: 2.5rem;
		padding-right: 2.5rem;
	}
}
.site-footer__newsletter { border-bottom: 1px solid rgba(249,245,236,0.15); }
.site-footer__newsletter-inner { padding: 3.5rem 0; display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
@media (min-width: 1024px) { .site-footer__newsletter-inner { grid-template-columns: 1fr 1fr; } }
.site-footer__newsletter-title { font-style: italic; font-size: 1.875rem; line-height: 1.1; margin-top: 0.75rem; }
@media (min-width: 1024px) { .site-footer__newsletter-title { font-size: 2.25rem; } }
.site-footer__newsletter-form { display: flex; width: 100%; }
.site-footer__newsletter-input { flex: 1; background: transparent; border: none; border-bottom: 1px solid rgba(249,245,236,0.4); padding: 0.75rem 0.25rem; font-size: 0.875rem; color: var(--color-background); }
.site-footer__newsletter-input::placeholder { color: rgba(249,245,236,0.5); }
.site-footer__newsletter-input:focus { outline: none; border-color: var(--color-background); }
.site-footer__newsletter-btn { margin-left: 0.75rem; display: inline-flex; align-items: center; gap: 0.5rem; padding: 0 1.5rem; height: 3rem; background: var(--color-background); color: var(--color-foreground); font-size: 0.6875rem; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 600; }
.site-footer__newsletter-btn:hover { background: var(--color-accent); color: var(--color-accent-fg); }
.site-footer__main { padding: 4rem 0 1.5rem; }
@media (min-width: 1024px) { .site-footer__main { padding: 5rem 0 2rem; } }
.site-footer__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 768px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .site-footer__grid { grid-template-columns: repeat(12, 1fr); gap: 3rem; } }
.site-footer__brand { grid-column: span 12; }
@media (min-width: 1024px) { .site-footer__brand { grid-column: span 4; } }
.site-footer__logo-link { display: flex; flex-direction: column; align-items: flex-start; }
.site-footer__logo-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: var(--color-background);
	padding: 0.5rem;
	box-shadow: var(--shadow-soft);
}
.site-footer__logo-img {
	height: 64px !important;
	width: auto !important;
	max-height: 64px;
	border-radius: 999px;
	object-fit: contain;
	display: block;
}
.site-footer__tagline { font-size: 0.625rem; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 600; opacity: 0.6; margin-top: 0.75rem; }
.site-footer__about { margin-top: 1.5rem; font-size: 0.875rem; opacity: 0.7; max-width: 24rem; line-height: 1.7; }
.site-footer__col { grid-column: span 6; }
@media (min-width: 1024px) { .site-footer__col { grid-column: span 2; } }
.site-footer__col-title { font-size: 0.6875rem; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 600; opacity: 0.6; margin-bottom: 1.25rem; }
.site-footer__links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.75rem; }
.site-footer__links a, .theme-footer-link-btn { font-size: 0.875rem; opacity: 0.8; text-align: left; }
.site-footer__links a:hover, .theme-footer-link-btn:hover { opacity: 1; }
.site-footer__contact-list li { display: flex; align-items: flex-start; gap: 0.5rem; }
.site-footer__sub-link a { padding-left: 1.5rem; }
.site-footer__bottom { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(249,245,236,0.15); display: flex; flex-direction: column; gap: 1rem; align-items: center; justify-content: space-between; }
@media (min-width: 640px) { .site-footer__bottom { flex-direction: row; } }
.site-footer__copyright, .site-footer__built-by { font-size: 0.625rem; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 600; opacity: 0.55; }
.site-footer__built-by a { text-decoration: underline; text-underline-offset: 4px; }
.site-footer__built-by a:hover { opacity: 1; color: var(--color-background); }

/* ---------------------------------------------------------------------
   SIDE CART
   --------------------------------------------------------------------- */
#theme-cart-overlay { position: fixed; inset: 0; background: rgba(44,56,36,0.3); z-index: 199; 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: 200; 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: 2rem 2rem 1.25rem; border-bottom: 1px solid var(--color-border); }
.theme-cart-drawer__title { font-style: italic; font-size: 1.5rem; }
.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-icon { opacity: 0.4; margin-bottom: 1.25rem; }
.theme-cart-drawer__empty p { opacity: 0.7; 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 {
	position: relative;
	width: 6rem;
	height: 8rem;
	background: var(--color-secondary);
	overflow: hidden;
	flex-shrink: 0;
	display: block;
}
.theme-cart-drawer__item-image img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	object-position: center;
}
.theme-cart-drawer__item-info { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.theme-cart-drawer__item-name { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; }
.theme-cart-drawer__item-name:hover { opacity: 0.7; }
.theme-cart-drawer__item-variation { font-size: 0.75rem; opacity: 0.6; 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; }
.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; display: inline-block; }
.theme-cart-drawer__remove { font-size: 0.75rem; opacity: 0.65; text-decoration: underline; text-underline-offset: 4px; }
.theme-cart-drawer__remove:hover { opacity: 1; }
.theme-cart-drawer__footer { padding: 1.5rem 2rem; border-top: 1px solid var(--color-border); display: flex; flex-direction: column; gap: 1rem; }
.theme-cart-drawer__subtotal { display: flex; align-items: baseline; justify-content: space-between; font-family: var(--font-display); font-size: 1.25rem; }
.theme-cart-drawer__shipping-note { font-size: 0.75rem; opacity: 0.6; }
.theme-cart-drawer__checkout { width: 100%; }

/* 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-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;
}
.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; }
.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 PRODUCT PAGE
   --------------------------------------------------------------------- */
.theme-single-product-main {
	padding-top: 8.5rem;
	background: var(--color-background);
}
@media (min-width: 1024px) {
	.theme-single-product-main { padding-top: 10rem; }
}

.theme-product-layout {
	display: grid;
	grid-template-columns: 1fr;
	align-items: start;
	min-width: 0;
	gap: 0;
}
@media (min-width: 1024px) {
	.theme-product-layout {
		grid-template-columns: 1fr 1fr;
		gap: 0;
	}
}

.theme-product-gallery,
.theme-product-info { min-width: 0; max-width: 100%; }

.theme-product-gallery {
	position: relative;
	display: flex;
	flex-direction: column;
	background: var(--color-background);
	padding: 1.25rem 1.25rem 0;
	overflow: hidden;
}
@media (min-width: 768px) {
	.theme-product-gallery { padding: 1.5rem 1.5rem 0; }
}
@media (min-width: 1024px) {
	.theme-product-gallery {
		position: sticky;
		top: 9rem;
		align-self: start;
		padding: 0 1.25rem 2rem 1.75rem;
		overflow: visible;
	}
}

.theme-product-main-image {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	aspect-ratio: 1 / 1;
	max-height: min(78vh, 720px);
	padding: 0;
	overflow: hidden;
	isolation: isolate;
}
.theme-product-gallery-img {
	position: static;
	inset: auto;
	display: block;
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: min(78vh, 720px);
	object-fit: contain;
}

.theme-product-thumbnails {
	position: relative;
	z-index: 1;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem;
	margin-top: 1rem;
	padding: 0 0 1.5rem;
	overflow-x: auto;
	background: var(--color-background);
}
.theme-product-thumb {
	width: 4rem;
	height: 4rem;
	flex-shrink: 0;
	overflow: hidden;
	border: 1px solid transparent;
	opacity: 0.6;
	background: transparent;
	padding: 0;
	cursor: pointer;
	transition: opacity 0.2s ease, border-color 0.2s ease;
}
.theme-product-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.theme-product-thumb.is-active {
	opacity: 1;
	border-color: var(--color-primary);
}
.theme-product-thumb:hover { opacity: 1; }

.theme-product-info {
	padding: 2rem 1.5rem 3rem;
}
@media (min-width: 768px) {
	.theme-product-info { padding: 2.5rem 2.5rem 3.5rem; }
}
@media (min-width: 1024px) {
	.theme-product-info { padding: 0 2.5rem 4rem 2rem; }
}

.theme-product-breadcrumb {
	font-size: 0.75rem;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	font-family: var(--font-body);
	color: color-mix(in srgb, var(--color-foreground) 55%, transparent);
	margin-bottom: 1.5rem;
}
.theme-product-breadcrumb a { color: inherit; transition: color 0.2s ease; }
.theme-product-breadcrumb a:hover { color: var(--color-foreground); }
.theme-product-breadcrumb__sep { margin: 0 0.5rem; }

.theme-product-magazine-title {
	font-family: var(--font-display);
	line-height: 0.92;
	letter-spacing: -0.025em;
	color: var(--color-foreground);
	margin: 0 0 1.5rem;
}
.theme-product-magazine-title__the {
	display: block;
	font-weight: 500;
	font-size: 1.875rem;
}
@media (min-width: 768px) {
	.theme-product-magazine-title__the { font-size: 2.25rem; }
}
.theme-product-magazine-title__name {
	display: block;
	font-weight: 800;
	text-transform: uppercase;
	font-size: 3rem;
}
@media (min-width: 768px) {
	.theme-product-magazine-title__name { font-size: 3.75rem; }
}

.theme-product-sku {
	font-size: 0.75rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	font-family: var(--font-body);
	color: color-mix(in srgb, var(--color-foreground) 55%, transparent);
	margin: 0;
}

.theme-product-divider {
	height: 1px;
	background: var(--color-border);
	margin: 1.75rem 0;
}

.theme-product-price-row {
	display: flex;
	align-items: baseline;
	justify-content: flex-end;
}
.theme-product-price {
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--color-foreground);
	margin: 0;
}
.theme-product-price .amount { font-weight: 800; }
.theme-product-shipping-note {
	margin: 0.5rem 0 0;
	font-size: 13px;
	font-family: var(--font-body);
	color: color-mix(in srgb, var(--color-foreground) 55%, transparent);
}

.theme-attribute-group { margin-top: 1.75rem; }
.theme-attribute-group__label {
	font-size: 0.75rem;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	font-family: var(--font-body);
	font-weight: 400;
	color: color-mix(in srgb, var(--color-foreground) 55%, transparent);
	margin: 0 0 0.75rem;
}
.theme-attribute-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}
.theme-attribute-pill {
	min-width: 56px;
	padding: 0.625rem 1rem;
	font-size: 0.75rem;
	font-family: var(--font-body);
	letter-spacing: 0.05em;
	border: 1px solid var(--color-border);
	background: transparent;
	color: var(--color-foreground);
	cursor: pointer;
	transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.theme-attribute-pill:hover { border-color: var(--color-primary); }
.theme-attribute-pill.is-active {
	background: var(--color-foreground);
	color: var(--color-background);
	border-color: var(--color-primary);
}

.theme-product-cta,
.theme-add-to-cart-area.theme-product-cta {
	margin-top: 2rem;
	display: block;
}
.theme-product-atc,
.theme-single-product-main .single_add_to_cart_button.theme-product-atc {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	width: 100%;
	height: 3.5rem;
	min-width: 0;
	flex: none;
	font-size: 0.75rem;
	letter-spacing: 0.28em;
	text-transform: uppercase;
}
.theme-product-atc.disabled,
.theme-product-atc:disabled {
	opacity: 0.5;
	pointer-events: none;
	cursor: not-allowed;
}
.theme-product-atc.is-added {
	pointer-events: none;
}

.theme-product-features {
	margin-top: 2.5rem;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
	text-align: center;
}
.theme-product-feature {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.theme-product-feature__icon {
	margin-bottom: 0.75rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	border-radius: 9999px;
	background: var(--color-accent);
	color: var(--color-background);
	box-shadow: 0 4px 10px color-mix(in srgb, var(--color-foreground) 12%, transparent);
}
.theme-product-feature__title {
	margin: 0;
	font-family: var(--font-body);
	font-size: 12px;
	font-weight: 600;
	line-height: 1.35;
	color: var(--color-foreground);
}
.theme-product-feature__sub {
	margin: 0.25rem 0 0;
	font-family: var(--font-body);
	font-size: 11px;
	line-height: 1.35;
	color: color-mix(in srgb, var(--color-foreground) 55%, transparent);
}

.theme-product-details { margin-top: 3rem; }
.theme-product-details__title {
	font-size: 0.75rem;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	font-family: var(--font-body);
	font-weight: 400;
	color: var(--color-foreground);
	margin: 0 0 1.25rem;
}
.theme-product-details__description,
.theme-product-details__description p {
	font-family: var(--font-display);
	font-size: 19px;
	line-height: 1.55;
	color: color-mix(in srgb, var(--color-foreground) 90%, transparent);
	margin: 0 0 1rem;
	overflow-wrap: break-word;
}
.theme-product-details__description p:last-child { margin-bottom: 0; }
.theme-product-details__list { margin-top: 1.5rem; }
.theme-product-details__list ul {
	margin: 0;
	padding-left: 1.25rem;
	list-style: disc;
}
.theme-product-details__list li {
	font-family: var(--font-body);
	font-size: 14px;
	line-height: 1.6;
	color: color-mix(in srgb, var(--color-foreground) 80%, transparent);
	margin-bottom: 0.625rem;
}
.theme-product-details__list li::marker { color: var(--color-primary); }

.theme-attr-select-hidden { display: none !important; }
.theme-single-product-main .woocommerce-variation,
.theme-single-product-main .woocommerce-variation-price,
.theme-single-product-main .woocommerce-variation-availability {
	display: none !important;
}

.theme-related-products {
	padding: 6rem 0;
	border-top: 1px solid var(--color-border);
	margin-top: 3rem;
}
.theme-related-products__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 3rem;
}
.theme-related-products__title {
	font-family: var(--font-display);
	font-size: 1.875rem;
	line-height: 1.2;
	margin: 0;
}
@media (min-width: 768px) {
	.theme-related-products__title { font-size: 2.25rem; }
}
.theme-related-products__title-em { font-style: italic; }

.variations.shop_attributes { width: 100%; margin: 1rem 0; }
.single-product .variations tbody { display: block; width: 100%; }
.single-product .variations tbody tr { display: block; width: 100%; margin-bottom: 1rem; }
.single-product .variations tbody td { display: block; width: 100%; }
.single-product .variations tbody td.label { padding-bottom: 0.25rem; font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; }
.single-product .variations tbody td.value { padding-top: 0; }
.single-product .variations tbody td.value select { width: 100%; padding: 0.625rem; border: 1px solid var(--color-border); background: var(--color-background); }

/* ---------------------------------------------------------------------
   ARCHIVE / SHOP PAGE
   --------------------------------------------------------------------- */
.theme-shop-archive-main { padding-top: 7rem; padding-bottom: 5rem; }
.theme-shop-archive__head { padding: 2rem 0; }

/* ---------------------------------------------------------------------
   GENERIC PAGES / 404
   --------------------------------------------------------------------- */
.theme-generic-main, .theme-page-container { padding-top: 7rem; }
.theme-404-main { min-height: 70vh; display: flex; align-items: center; }
.theme-404-inner { text-align: center; padding: 6rem 0; }
.theme-404-title { font-size: 4rem; margin-bottom: 1rem; }
.theme-404-text { font-size: 1.25rem; opacity: 0.7; margin-bottom: 2rem; }
.page-title { font-size: 2rem; margin-bottom: 1.5rem; }

/* ---------------------------------------------------------------------
   CUSTOMIZER MEDIA CONTROL (light styling reused; full version in customizer-controls.css)
   --------------------------------------------------------------------- */

/* ---------------------------------------------------------------------
   WOOCOMMERCE CHECKOUT BLOCK OVERRIDES (Section 13)
   --------------------------------------------------------------------- */
body.woocommerce-checkout .site-main { padding-top: var(--header-height, 104px); padding-bottom: 4rem; }
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: var(--radius);
	background-color: var(--color-background); color: var(--color-foreground);
}
body.woocommerce-checkout .wc-block-components-text-input input:focus,
body.woocommerce-checkout .wc-block-components-select select:focus { border-color: var(--color-primary); }
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);
	text-transform: var(--btn-text-transform);
}
body.woocommerce-checkout .wc-block-components-notice-banner { border-radius: var(--radius); }
body.woocommerce-checkout .wc-block-checkout__sidebar {
	background-color: var(--color-secondary);
	border-radius: var(--card-radius);
	padding: var(--section-padding);
}
@media (min-width: 768px) {
	body.woocommerce-checkout .wc-block-checkout {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: var(--checkout-gap);
		align-items: start;
	}
	body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout.is-large {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: var(--checkout-gap);
		align-items: start;
	}
}
.page-title { font-family: var(--font-display); }
body.woocommerce-checkout .woocommerce-message,
body.woocommerce-checkout .woocommerce-info { border-radius: var(--radius); }
.single-product .woocommerce-message,
.single-product .woocommerce-info { display: none; }
#theme-cart-drawer .woocommerce-message { display: none; }

/* Thank you page */
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-details tfoot th { text-align: left; }
body.theme-thankyou-page .woocommerce-order-details tfoot td { text-align: right; }
body.theme-thankyou-page .woocommerce-order h2,
body.theme-thankyou-page .woocommerce-order-details__title { padding: 0 0 1rem 0; font-size: 1.5rem; }
body.theme-thankyou-page .woocommerce-customer-details { display: flex; flex-direction: column; gap: 1.5rem; }
body.theme-thankyou-page .woocommerce-customer-details address { max-width: 480px; overflow-wrap: break-word; }

/* Media control preview in Customizer (kept minimal; full rules in customizer-controls.css) */
