/* ==========================================================================
   JB's Neighborhood Eats — theme stylesheet
   ========================================================================== */

:root {
	--color-background: #f7efe1;
	--color-foreground: #1c1c22;
	--color-primary: #2f2639;
	--color-primary-foreground: #f7efe1;
	--color-secondary: #efe3cd;
	--color-accent: #e2622c;
	--color-border: #e3d6bf;
	--color-marigold: #e2622c;
	--color-rosa: #c0417b;
	--color-teal: #2f2639;
	--color-nopal: #6e8a4e;
	--color-butter: #f2e4c9;
	--color-terracotta: #ca5121;
	--color-powder: #ebdbcb;
	--color-surface-white: #ffffff;
	--color-surface-deep: #17171c;
	--color-surface-deep-foreground: #f7efe1;

	--font-display: 'Barlow Condensed', sans-serif;
	--font-body: 'Barlow', sans-serif;

	--logo-height: 60px;
	--header-height: 80px;
	--announcement-bar-height: 0px;
	--site-top-offset: var(--header-height);
	--radius: 0.375rem;
	--shadow-soft: 0 4px 20px -4px rgba(47, 38, 57, 0.12);
	--shadow-elevated: 0 12px 45px -12px rgba(47, 38, 57, 0.26);
	--transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);

	--btn-radius: 999px;
	--btn-height: 3rem;
	--btn-padding: 0 2rem;
	--btn-font-size: 12px;
	--btn-font-weight: 500;
	--btn-letter-spacing: 0.2em;
	--btn-text-transform: uppercase;
	--color-button-text: var(--color-background);
	--checkout-gap: 2rem;
	--card-radius: 1rem;
	--section-padding: 2rem;
}

/* ==========================================================================
   RESET / BASE
   ========================================================================== */
* {
	box-sizing: border-box;
}
html {
	max-width: 100%;
	overflow-x: clip;
}
body {
	max-width: 100%;
	margin: 0;
	padding-top: var(--site-top-offset);
	background: var(--color-background);
	color: var(--color-foreground);
	font-family: var(--font-body);
	-webkit-font-smoothing: antialiased;
	line-height: 1.5;
	overflow-x: clip;
}
main,
.site-main {
	max-width: 100%;
	overflow-x: clip;
}
body.has-announcement-bar {
	--announcement-bar-height: 2.25rem;
	--site-top-offset: calc(var(--header-height) + var(--announcement-bar-height));
}
body.has-announcement-bar.announcement-dismissed {
	--announcement-bar-height: 0px;
	--site-top-offset: var(--header-height);
}
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	letter-spacing: 0.01em;
	font-weight: inherit;
	font-size: inherit;
	margin: 0;
}
p { margin: 0; }
a { color: inherit; text-decoration: none; cursor: pointer; }
button { font-family: inherit; background: none; border: none; cursor: pointer; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

img:not(.cover-img):not(.hero-bg-img):not(.theme-product-card-img):not(.collection-tile-img):not(.collection-video):not(.cta-bg-img) {
	max-width: 100%;
	height: auto;
}
.cover-img, .hero-bg-img, .collection-tile-img, .collection-video, .cta-bg-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.container-wide {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding-inline: 1.5rem;
	min-width: 0;
}
@media (min-width: 1024px) {
	.container-wide { padding-inline: 2rem; }
}

/* ==========================================================================
   SCROLL REVEAL / ANIMATION UTILITIES (Section 2.1)
   ========================================================================== */
.reveal-item {
	opacity: 0;
	transform: translateY(28px);
	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,
body.is-customizer .collection-tile,
body.is-customizer .theme-product-card-wrap {
	opacity: 1 !important;
	transform: none !important;
}
@media (prefers-reduced-motion: reduce) {
	.reveal-item { transition: none; opacity: 1; transform: none; }
}
.reveal-fade { animation: theme-fade-in 1.1s var(--transition-smooth); }
@keyframes theme-fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes theme-slide-up { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ==========================================================================
   ANNOUNCEMENT BAR
   ========================================================================== */
.theme-announcement-bar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 51;
	background: var(--color-foreground);
	color: var(--color-background);
}
.theme-announcement-inner { padding-block: 0.5rem; padding-inline: 2.75rem 1.5rem; text-align: center; }
.theme-announcement-text {
	font-size: 13px;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	margin: 0;
}
.theme-announcement-dismiss {
	position: absolute;
	right: 0.75rem;
	top: 50%;
	transform: translateY(-50%);
	opacity: 0.7;
	padding: 0.25rem;
	cursor: pointer;
}
.theme-announcement-dismiss:hover { opacity: 1; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
	position: fixed;
	top: var(--announcement-bar-height);
	left: 0;
	right: 0;
	width: 100%;
	z-index: 50;
	background: color-mix(in srgb, var(--color-surface-white) 95%, transparent);
	backdrop-filter: blur(6px);
	border-bottom: 1px solid var(--color-border);
	transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.site-header.is-solid,
body.mobile-menu-open .site-header {
	background: color-mix(in srgb, var(--color-surface-white) 98%, transparent);
	box-shadow: 0 4px 20px -8px rgba(47, 38, 57, 0.18);
}
body.theme-no-hero .site-header {
	background: color-mix(in srgb, var(--color-surface-white) 95%, transparent);
	border-bottom-color: var(--color-border);
}
.site-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 80px;
	gap: 1rem;
	min-width: 0;
}
.site-brand {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	flex-shrink: 1;
	min-width: 0;
}
.site-logo-wrap {
	position: relative;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	overflow: hidden;
	border: 1px solid color-mix(in srgb, var(--color-border) 60%, transparent);
	background: #fff;
	flex-shrink: 0;
}
@media (min-width: 1024px) { .site-logo-wrap { width: 64px; height: 64px; } }
@media (min-width: 1280px) { .site-logo-wrap { width: 72px; height: 72px; } }
.site-logo-img { height: var(--logo-height) !important; width: var(--logo-height) !important; object-fit: cover; display: block; }
.site-logo-text { font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; text-transform: uppercase; }
.site-brand-text { display: none; flex-direction: column; line-height: 1; }
@media (min-width: 1280px) {
	.site-brand-text { display: flex; }
}
.site-brand-name { font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; letter-spacing: 0.06em; text-transform: uppercase; }
.site-brand-sub { font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); margin-top: 0.25rem; }

.site-nav-center { display: none; flex: 1; justify-content: center; }
@media (min-width: 1024px) { .site-nav-center { display: flex; } }
.site-header .theme-nav-list,
.site-header .theme-nav-list ul {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	list-style: none;
	margin: 0;
	padding: 0;
	flex-wrap: nowrap;
}
@media (min-width: 1280px) {
	.site-header .theme-nav-list,
	.site-header .theme-nav-list ul { gap: 2rem; }
}
.site-header .theme-nav-list a {
	position: relative;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	white-space: nowrap;
	transition: color 0.3s;
}
@media (min-width: 1280px) { .site-header .theme-nav-list a { letter-spacing: 0.12em; } }
.site-header .theme-nav-list a::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 100%;
	height: 1px;
	background: currentColor;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s var(--transition-smooth);
}
.site-header .theme-nav-list a:hover::after { transform: scaleX(1); }

.site-nav-actions { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }
.btn-order-online {
	display: none;
	align-items: center;
	justify-content: center;
	white-space: nowrap;
	border-radius: 999px;
	background: var(--color-marigold);
	color: var(--color-background);
	padding: 0.75rem 1.5rem;
	font-size: 12px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	font-weight: 500;
	transition: background 0.2s;
}
.btn-order-online:hover { background: color-mix(in srgb, var(--color-marigold) 90%, black); }
@media (min-width: 768px) { .btn-order-online:not(.btn-order-online-mobile) { display: inline-flex; } }
.site-search-btn, .site-cart-btn, .site-mobile-toggle {
	position: relative;
	display: inline-flex;
	padding: 0.5rem;
	opacity: 1;
	transition: opacity 0.2s;
	cursor: pointer;
}
.site-search-btn { display: none; }
@media (min-width: 768px) { .site-search-btn { display: inline-flex; } }
.site-search-btn:hover, .site-cart-btn:hover, .site-mobile-toggle:hover { opacity: 0.6; }
.site-mobile-toggle { display: inline-flex; }
@media (min-width: 1024px) { .site-mobile-toggle { display: none; } }
.site-mobile-toggle .icon-close { display: none; }
.site-mobile-toggle[aria-expanded="true"] .icon-menu { display: none; }
.site-mobile-toggle[aria-expanded="true"] .icon-close { display: inline-flex; }

.theme-cart-count {
	position: absolute;
	top: -2px;
	right: -2px;
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: 500;
	background: var(--color-primary);
	color: var(--color-primary-foreground);
	border-radius: 50%;
}
.theme-cart-count:empty { display: none; }

.site-mobile-menu {
	display: none;
	border-top: 1px solid var(--color-border);
	padding-block: 1rem;
	max-height: calc(100dvh - var(--site-top-offset, var(--header-height)) - 1rem);
	overflow-y: auto;
	overflow-x: clip;
	-webkit-overflow-scrolling: touch;
}
.site-mobile-menu.is-open {
	display: flex;
	flex-direction: column;
	gap: 0;
	animation: theme-mobile-menu-in 0.25s ease;
}
@keyframes theme-mobile-menu-in {
	from { opacity: 0; }
	to { opacity: 1; }
}
.theme-nav-list-mobile,
.theme-nav-list-mobile .theme-mobile-nav-list,
.theme-nav-list-mobile .menu {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1rem;
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
	min-width: 0;
}
.theme-nav-list-mobile li { margin: 0; padding: 0; width: 100%; }
.theme-nav-list-mobile a {
	display: block;
	width: fit-content;
	max-width: 100%;
	text-align: left;
	font-family: var(--font-display);
	font-weight: 400;
	font-size: 14px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	padding: 0.5rem 0;
	white-space: normal;
	overflow-wrap: anywhere;
	color: var(--color-foreground);
	transition: color 0.2s;
}
.theme-nav-list-mobile a:hover {
	color: color-mix(in srgb, var(--color-foreground) 65%, transparent);
}
.btn-order-online-mobile {
	display: inline-flex;
	align-self: flex-start;
	width: fit-content;
	max-width: 100%;
	margin-top: 0.5rem;
	padding: 0.875rem 1.5rem;
	font-family: var(--font-body);
	font-weight: 500;
}

/* ==========================================================================
   BUTTONS (generic)
   ========================================================================== */
.btn-hero-primary, .btn-hero-outline, .btn-marigold, .btn-outline-marigold, .btn-outline-dark, .btn-cta-dark, .btn-primary, .btn-outline,
.btn-order-online, .theme-modal-close, .theme-cart-close, .theme-accordion-trigger {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	white-space: nowrap;
	border-radius: 999px;
	font-family: var(--font-body);
	font-size: 12px;
	letter-spacing: 0.2em;
	text-transform: none;
	font-weight: 500;
	transition: all 0.3s var(--transition-smooth);
	padding: 0.9rem 2rem;
	text-transform: uppercase;
	cursor: pointer;
}
.btn-hero-primary, .single_add_to_cart_button, .single-product .single_add_to_cart_button { text-transform: none; }
.btn-hero-primary { background: var(--color-marigold); color: var(--color-background); text-transform: uppercase; }
.btn-hero-primary:hover { background: color-mix(in srgb, var(--color-marigold) 90%, black); }
.btn-hero-outline { border: 1px solid color-mix(in srgb, var(--color-background) 70%, transparent); color: var(--color-background); }
.btn-hero-outline:hover { background: var(--color-background); color: var(--color-foreground); }
.btn-marigold { background: var(--color-marigold); color: var(--color-background); padding: 1rem 2.75rem; font-size: 13px; letter-spacing: 0.24em; }
.btn-marigold:hover { background: color-mix(in srgb, var(--color-marigold) 90%, black); }
.btn-outline-marigold { border: 2px solid var(--color-marigold); color: var(--color-marigold); padding: 0.85rem 2.25rem; font-size: 13px; letter-spacing: 0.24em; font-weight: 600; background: transparent; }
.btn-outline-marigold:hover { background: var(--color-marigold); color: var(--color-background); }
.btn-outline-dark { border: 1px solid var(--color-foreground); color: var(--color-foreground); padding: 1rem 2.75rem; font-size: 13px; letter-spacing: 0.24em; background: transparent; }
.btn-outline-dark:hover { background: var(--color-foreground); color: var(--color-background); }
.btn-cta-dark { background: var(--color-foreground); color: var(--color-background); padding: 1.25rem 3rem; font-size: 13px; letter-spacing: 0.28em; }
.btn-cta-dark:hover { background: color-mix(in srgb, var(--color-foreground) 90%, white); }
.btn-primary { background: var(--color-primary); color: var(--color-primary-foreground); }
.btn-primary:hover { opacity: 0.9; }
.btn-outline { border: 1px solid var(--color-border); background: transparent; }
.btn-outline:hover { background: var(--color-secondary); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero-section,
.about-section,
.collection-section,
.menu-section,
.order-section,
.shop-section,
.cta-section,
.scroll-reveal-section {
	overflow-x: clip;
	max-width: 100%;
}
.hero-section { background: var(--color-background); }
.hero-media {
	position: relative;
	width: 100%;
	height: 78vh;
	min-height: 560px;
	overflow: hidden;
}
@media (min-width: 768px) { .hero-media { height: 88vh; min-height: 680px; } }
body:not(.theme-no-hero) .hero-media { margin-top: 0; }
.hero-bg-img { animation: theme-hero-zoom 18s ease-in-out infinite alternate; }
@media (prefers-reduced-motion: reduce) { .hero-bg-img { animation: none; } }
@keyframes theme-hero-zoom { from { transform: scale(1); } to { transform: scale(1.08); } }
.hero-gradient-mobile {
	position: absolute; inset: 0;
	background: linear-gradient(to top, color-mix(in srgb, var(--color-foreground) 80%, transparent), color-mix(in srgb, var(--color-foreground) 25%, transparent) 60%, transparent);
}
@media (min-width: 768px) { .hero-gradient-mobile { display: none; } }
.hero-gradient-desktop { display: none; position: absolute; inset: 0; }
@media (min-width: 768px) {
	.hero-gradient-desktop {
		display: block;
		background: linear-gradient(to right, color-mix(in srgb, var(--color-foreground) 80%, transparent) 0%, color-mix(in srgb, var(--color-foreground) 45%, transparent) 30%, color-mix(in srgb, var(--color-foreground) 15%, transparent) 55%, transparent 75%);
	}
}
.hero-gradient-bottom { position: absolute; inset-inline: 0; bottom: 0; height: 25%; background: linear-gradient(to top, color-mix(in srgb, var(--color-foreground) 25%, transparent), transparent); }
.hero-content-wrap { position: relative; height: 100%; display: flex; align-items: center; }
.hero-copy { max-width: 36rem; text-shadow: 0 2px 16px color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.hero-eyebrow { display: block; font-size: 11px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--color-marigold); margin-bottom: 1rem; }
.hero-title {
	font-family: var(--font-display);
	font-weight: 600;
	text-transform: uppercase;
	font-size: 2.75rem;
	line-height: 0.95;
	letter-spacing: 0.02em;
	color: var(--color-background);
	margin-bottom: 0.5rem;
	overflow-wrap: break-word;
}
@media (min-width: 640px) { .hero-title { font-size: 3.5rem; } }
@media (min-width: 768px) { .hero-title { font-size: 4.25rem; } }
@media (min-width: 1280px) { .hero-title { font-size: 5.5rem; } }
.hero-subtitle {
	font-family: var(--font-display);
	font-style: italic;
	font-weight: 500;
	font-size: 1.5rem;
	line-height: 0.95;
	letter-spacing: 0.02em;
	color: var(--color-background);
	margin-bottom: 1.5rem;
}
@media (min-width: 640px) { .hero-subtitle { font-size: 1.75rem; } }
@media (min-width: 768px) { .hero-subtitle { font-size: 2.25rem; } }
@media (min-width: 1024px) { .hero-subtitle { font-size: 2.75rem; } }
.hero-description { color: color-mix(in srgb, var(--color-background) 90%, transparent); font-size: 1rem; line-height: 1.7; margin-bottom: 2.5rem; max-width: 28rem; }
@media (min-width: 768px) { .hero-description { font-size: 1.125rem; } }
.hero-actions { display: flex; flex-direction: column; gap: 1rem; max-width: 100%; }
.hero-actions .btn-hero-primary,
.hero-actions .btn-hero-outline { max-width: 100%; text-align: center; }
@media (min-width: 640px) { .hero-actions { flex-direction: row; } }

/* ==========================================================================
   SECTION HEADINGS (per-section scale, Section 2.2.5)
   ========================================================================== */
.section-heading { font-family: var(--font-display); font-weight: 400; letter-spacing: 0.01em; overflow-wrap: break-word; }
.about-section .section-heading { font-style: italic; font-size: 2.25rem; line-height: 1.15; }
@media (min-width: 768px) { .about-section .section-heading { font-size: 3.75rem; } }
.collection-section .section-heading,
.shop-section .section-heading,
.order-section .section-heading { font-style: italic; font-size: 2.25rem; }
@media (min-width: 768px) { .collection-section .section-heading, .shop-section .section-heading, .order-section .section-heading { font-size: 3.75rem; } }
.menu-heading { font-style: italic; font-size: 2.25rem; line-height: 1.02; }
@media (min-width: 768px) { .menu-heading { font-size: 3.75rem; } }
@media (min-width: 1024px) { .menu-heading { font-size: 4.5rem; } }
.menu-build-heading { font-style: italic; font-size: 1.875rem; }
@media (min-width: 768px) { .menu-build-heading { font-size: 3rem; } }
.cta-heading { font-style: italic; font-size: 2.25rem; line-height: 1.02; }
@media (min-width: 768px) { .cta-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .cta-heading { font-size: 3.75rem; } }

/* ==========================================================================
   ABOUT / STORY
   ========================================================================== */
.about-section { background: var(--color-surface-white); scroll-margin-top: 96px; }
.about-inner { max-width: 42rem; margin: 0 auto; text-align: center; padding: 5rem 1.5rem; overflow-wrap: break-word; }
@media (min-width: 768px) { .about-inner { padding: 7rem 3.5rem; } }
.about-eyebrow { display: block; font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--color-marigold); margin-bottom: 1.25rem; }
.about-heading { margin-bottom: 2rem; }
.about-paragraph { font-size: 1.125rem; line-height: 1.7; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); margin-bottom: 1.5rem; }
@media (min-width: 768px) { .about-paragraph { font-size: 1.25rem; } }
.about-section .btn-outline-marigold { margin-top: 0.5rem; }

/* ==========================================================================
   COLLECTION TILES
   ========================================================================== */
.collection-section { background: var(--color-background); padding: 4rem 0 5rem; }
@media (min-width: 768px) { .collection-section { padding: 5rem 0; } }
.collection-header { text-align: center; margin-bottom: 2.5rem; }
.collection-eyebrow { display: block; font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--color-marigold); margin-bottom: 0.75rem; }
.collection-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .collection-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .collection-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; } }
.collection-tile, .collection-video-banner {
	position: relative;
	display: block;
	width: 100%;
	aspect-ratio: 3 / 4;
	overflow: hidden;
	border-radius: 1rem;
	text-align: left;
	cursor: pointer;
}
.collection-video-banner { margin-top: 1rem; aspect-ratio: 3 / 4; }
@media (min-width: 640px) { .collection-video-banner { aspect-ratio: 16 / 9; } }
@media (min-width: 1024px) { .collection-video-banner { aspect-ratio: 21 / 7; margin-top: 1.5rem; } }
.collection-tile-img, .collection-video { transition: transform 0.7s var(--transition-smooth); }
.collection-tile:hover .collection-tile-img,
.collection-video-banner:hover .collection-video { transform: scale(1.05); }
.collection-tile-overlay {
	position: absolute; inset: 0;
	background: linear-gradient(to top, color-mix(in srgb, var(--color-foreground) 90%, transparent), color-mix(in srgb, var(--color-foreground) 40%, transparent) 55%, color-mix(in srgb, var(--color-foreground) 10%, transparent));
	transition: background 0.5s;
}
.collection-tile-copy { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem; color: var(--color-background); text-shadow: 0 1px 8px rgba(0,0,0,0.45); }
.collection-tile-tagline { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; margin-bottom: 0.5rem; color: var(--color-marigold); filter: brightness(1.5); }
.tagline-dash { display: inline-block; height: 1px; width: 1.5rem; background: currentColor; }
.collection-tile-title { font-family: var(--font-display); font-size: 1.875rem; letter-spacing: 0.02em; text-transform: uppercase; margin-bottom: 0.5rem; overflow-wrap: break-word; }
@media (min-width: 768px) { .collection-tile-title { font-size: 2.25rem; } }
.collection-tile-cta { display: inline-flex; align-items: center; gap: 0.375rem; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; }

/* ==========================================================================
   MENU SECTION — TIERS
   ========================================================================== */
.menu-section { background: var(--color-background); scroll-margin-top: 96px; }
.menu-panel-white { background: var(--color-surface-white); }
.menu-panel-inner { padding-block: 5rem; }
@media (min-width: 768px) { .menu-panel-inner { padding-block: 7rem; } }
.menu-header { text-align: center; max-width: 48rem; margin: 0 auto 3.5rem; }
@media (min-width: 768px) { .menu-header { margin-bottom: 5rem; } }
.menu-eyebrow { display: block; font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--color-marigold); margin-bottom: 1rem; }
.menu-description { font-size: 1.125rem; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); line-height: 1.7; margin: 1.5rem 0; }
@media (min-width: 768px) { .menu-description { font-size: 1.25rem; } }
.menu-badge { display: inline-block; background: var(--color-marigold); color: var(--color-background); padding: 0.75rem 1.75rem; border-radius: 999px; font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500; box-shadow: var(--shadow-soft); }

.menu-tiers-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 2rem; }
@media (min-width: 768px) { .menu-tiers-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .menu-tiers-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2rem; } }
.menu-tier-card {
	position: relative;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border-radius: 1rem;
	background: var(--color-background);
	box-shadow: var(--shadow-soft);
	transition: all 0.5s;
}
.menu-tier-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-elevated); }
.menu-tier-panel { position: relative; padding: 1.75rem 1.5rem 0; }
.surface-sand { background: var(--color-butter); color: var(--color-foreground); }
.surface-sunset { background: var(--color-marigold); color: var(--color-background); }
.surface-cactus { background: var(--color-nopal); color: var(--color-background); }
.surface-plum { background: var(--color-primary); color: var(--color-primary-foreground); }
.menu-tier-featured-badge {
	position: absolute; top: 1.25rem; right: 0;
	background: var(--color-foreground); color: var(--color-background);
	font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
	padding: 0.4rem 1rem; border-radius: 999px 0 0 999px;
}
.menu-tier-label { display: block; font-size: 12px; letter-spacing: 0.26em; text-transform: uppercase; opacity: 0.75; }
.menu-tier-name { font-family: var(--font-display); font-size: 1.875rem; text-transform: uppercase; line-height: 0.95; letter-spacing: 0.01em; margin-top: 0.5rem; overflow-wrap: break-word; }
@media (min-width: 768px) { .menu-tier-name { font-size: 2.25rem; } }
.menu-tier-tagline { font-size: 1rem; margin-top: 0.5rem; opacity: 0.85; }
.menu-tier-img { width: 100%; height: 14rem; object-fit: contain; object-position: bottom; margin-top: 1rem; transition: transform 0.5s; }
@media (min-width: 640px) { .menu-tier-img { height: 16rem; } }
.menu-tier-card:hover .menu-tier-img { transform: scale(1.06); }
.menu-tier-price-bubble {
	position: absolute; bottom: 0.5rem; left: 1.25rem;
	height: 6rem; width: 6rem; border-radius: 50%;
	background: var(--color-foreground); color: var(--color-background);
	display: flex; flex-direction: column; align-items: center; justify-content: center;
	box-shadow: var(--shadow-elevated);
}
.menu-tier-price { font-family: var(--font-display); font-size: 2.25rem; line-height: 1; display: flex; align-items: flex-start; }
.menu-tier-price-unit { font-family: var(--font-body); font-size: 10px; letter-spacing: 0.05em; margin-top: 0.25rem; margin-left: 0.125rem; }
.menu-tier-price-label { font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; opacity: 0.8; margin-top: 0.25rem; }
.menu-tier-included { flex: 1; background: var(--color-surface-white); padding: 1.5rem; }
.menu-tier-included-label { display: block; font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--color-marigold); margin-bottom: 1rem; }
.menu-tier-included ul { display: flex; flex-direction: column; gap: 0.625rem; }
.menu-tier-included li { display: flex; align-items: flex-start; gap: 0.75rem; }
.menu-tier-included .dot { margin-top: 0.5rem; height: 4px; width: 4px; flex-shrink: 0; border-radius: 50%; background: var(--color-marigold); }
.menu-tier-included li span:last-child { font-size: 15px; line-height: 1.6; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); }

/* ==========================================================================
   MENU — BUILD YOUR MENU (selection gallery)
   ========================================================================== */
.menu-build-wrap { padding-block: 5rem; }
@media (min-width: 768px) { .menu-build-wrap { padding-block: 7rem; } }
.menu-build-header { text-align: center; margin-bottom: 2.5rem; }
@media (min-width: 768px) { .menu-build-header { margin-bottom: 3.5rem; } }

.selection-pills-carousel {
	position: relative;
	margin-bottom: 2rem;
	max-width: 100%;
}
@media (min-width: 768px) {
	.selection-pills-carousel { margin-bottom: 3rem; }
}
.selection-pills-scroll {
	overflow-x: auto;
	overflow-y: hidden;
	max-width: 100%;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	scroll-behavior: smooth;
}
.selection-pills-scroll::-webkit-scrollbar { display: none; }
.selection-pills { display: flex; gap: 0.625rem; min-width: max-content; padding-inline: 0.25rem; }
@media (min-width: 768px) {
	.selection-pills { flex-wrap: wrap; justify-content: center; min-width: 0; padding-inline: 0; }
}
/* Mobile scroll hints — arrows + edge fades */
.selection-pills-arrow,
.selection-pills-fade {
	display: none;
}
@media (max-width: 767px) {
	.selection-pills-carousel.is-scrollable .selection-pills-arrow {
		display: flex;
	}
	.selection-pills-carousel.is-scrollable .selection-pills-fade {
		display: block;
	}
	.selection-pills-carousel {
		margin-inline: 0;
		padding-inline: 0;
		width: 100%;
	}
	.selection-pills-carousel:not(.is-scrollable) .selection-pills-scroll {
		display: flex;
		justify-content: center;
	}
	.selection-pills-carousel:not(.is-scrollable) .selection-pills {
		min-width: 0;
		flex-wrap: wrap;
		justify-content: center;
	}
	.selection-pills-carousel.is-scrollable .selection-pills-scroll {
		padding-inline: 2.5rem;
		scroll-padding-inline: 2.5rem;
	}
	.selection-pills-carousel.is-scrollable .selection-pills {
		padding-inline: 0.5rem;
	}
	.selection-pills-arrow {
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		z-index: 2;
		align-items: center;
		justify-content: center;
		width: 2rem;
		height: 2rem;
		border-radius: 50%;
		border: 1px solid var(--color-border);
		background: color-mix(in srgb, var(--color-background) 92%, transparent);
		color: var(--color-foreground);
		box-shadow: var(--shadow-soft);
		transition: opacity 0.2s, border-color 0.2s, visibility 0.2s;
	}
	.selection-pills-arrow:disabled {
		opacity: 0.35;
		pointer-events: none;
	}
	.selection-pills-arrow-prev { left: 0; }
	.selection-pills-arrow-next { right: 0; }
	.selection-pills-fade {
		position: absolute;
		top: 0;
		bottom: 0;
		width: 2.25rem;
		z-index: 1;
		pointer-events: none;
	}
	.selection-pills-fade-start {
		left: 2.5rem;
		background: linear-gradient(to right, var(--color-background), transparent);
	}
	.selection-pills-fade-end {
		right: 2.5rem;
		background: linear-gradient(to left, var(--color-background), transparent);
	}
	.selection-pills-carousel.at-start .selection-pills-fade-start,
	.selection-pills-carousel.at-start .selection-pills-arrow-prev {
		opacity: 0;
		visibility: hidden;
	}
	.selection-pills-carousel.at-end .selection-pills-fade-end,
	.selection-pills-carousel.at-end .selection-pills-arrow-next {
		opacity: 0;
		visibility: hidden;
	}
}
.selection-pill {
	flex-shrink: 0; padding: 0.75rem 1.5rem; border-radius: 999px;
	border: 1px solid var(--color-border);
	font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
	color: color-mix(in srgb, var(--color-foreground) 60%, transparent);
	transition: all 0.3s;
	cursor: pointer;
}
.selection-pill:hover { border-color: var(--color-marigold); color: var(--color-marigold); }
.selection-pill.is-active { border-color: var(--color-marigold); background: var(--color-marigold); color: var(--color-background); }

.selection-content { display: grid; grid-template-columns: 1fr; gap: 1.5rem; align-items: stretch; }
@media (min-width: 1024px) { .selection-content { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }
.selection-photo { position: relative; overflow: hidden; border-radius: 1rem; min-height: 260px; }
@media (min-width: 640px) { .selection-photo { min-height: 340px; } }
@media (min-width: 1024px) { .selection-photo { min-height: 460px; } }
.selection-photo-overlay { position: absolute; inset: 0; background: linear-gradient(to top, color-mix(in srgb, var(--color-foreground) 85%, transparent), color-mix(in srgb, var(--color-foreground) 25%, transparent), transparent); }
.selection-photo-caption { position: absolute; inset-inline: 0; bottom: 0; padding: 1.5rem; color: var(--color-background); }
@media (min-width: 768px) { .selection-photo-caption { padding: 2rem; } }
.selection-photo-caption h4 { font-family: var(--font-display); font-size: 1.875rem; text-transform: uppercase; letter-spacing: 0.02em; line-height: 1.2; }
@media (min-width: 768px) { .selection-photo-caption h4 { font-size: 2.5rem; } }
@media (min-width: 1024px) { .selection-photo-caption h4 { font-size: 3rem; } }
.selection-photo-caption p { font-size: 1rem; opacity: 0.9; margin-top: 0.375rem; }
@media (min-width: 768px) { .selection-photo-caption p { font-size: 1.125rem; } }
.selection-list-panel { border-radius: 1rem; background: var(--color-surface-white); box-shadow: var(--shadow-soft); padding: 1.5rem; display: flex; flex-direction: column; justify-content: center; min-width: 0; }
@media (min-width: 768px) { .selection-list-panel { padding: 2.25rem; } }
.selection-premium-badge { display: inline-flex; align-items: center; gap: 0.375rem; font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--color-marigold); margin-bottom: 1.25rem; }
#selection-item-list li {
	display: flex; align-items: flex-start; gap: 0.75rem;
	border-bottom: 1px solid color-mix(in srgb, var(--color-border) 60%, transparent);
	padding: 0.875rem 0; cursor: pointer; transition: color 0.3s;
	min-width: 0;
}
#selection-item-list li:last-child { border-bottom: none; }
#selection-item-list li.is-hovered, #selection-item-list li:hover, #selection-item-list li:focus { color: var(--color-marigold); }
#selection-item-list .dot { margin-top: 0.65rem; height: 6px; width: 6px; flex-shrink: 0; border-radius: 50%; background: var(--color-marigold); }
.selection-item-name { font-family: var(--font-display); font-size: 1.25rem; line-height: 1.4; min-width: 0; overflow-wrap: break-word; }
@media (min-width: 768px) { .selection-item-name { font-size: 1.5rem; } }

.menu-addons-banner {
	margin-top: 4rem;
	border-radius: 1.5rem;
	padding: 2rem;
	overflow: hidden;
	position: relative;
	background: linear-gradient(135deg, var(--color-teal), color-mix(in srgb, var(--color-rosa) 100%, transparent) 58%, var(--color-marigold));
}
@media (min-width: 768px) { .menu-addons-banner { margin-top: 6rem; padding: 3rem; } }
@media (min-width: 1024px) { .menu-addons-banner { padding: 4rem; } }
.menu-addons-inner { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 2.5rem; }
@media (min-width: 1024px) { .menu-addons-inner { flex-direction: row; align-items: center; gap: 3.5rem; } }
.menu-addons-copy { max-width: 20rem; }
.menu-addons-eyebrow { display: block; font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: color-mix(in srgb, var(--color-background) 80%, transparent); margin-bottom: 0.75rem; }
.menu-addons-copy h4 { font-family: var(--font-display); font-size: 1.875rem; line-height: 1.2; color: var(--color-background); }
@media (min-width: 768px) { .menu-addons-copy h4 { font-size: 2.25rem; } }
@media (min-width: 1024px) { .menu-addons-copy h4 { font-size: 3rem; } }
.menu-addons-copy p { font-size: 1rem; color: color-mix(in srgb, var(--color-background) 80%, transparent); margin-top: 0.75rem; line-height: 1.6; }
.menu-addons-list { flex: 1; display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .menu-addons-list { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.menu-addon-card { border-radius: 1rem; background: var(--color-background); overflow: hidden; box-shadow: var(--shadow-elevated); transition: transform 0.5s; }
.menu-addon-card:hover { transform: translateY(-6px); }
.menu-addon-img-wrap { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.menu-addon-img-wrap img { transition: transform 0.7s; }
.menu-addon-card:hover .menu-addon-img-wrap img { transform: scale(1.05); }
.menu-addon-body { padding: 1.25rem; }
.menu-addon-price { display: inline-block; background: var(--color-rosa); color: var(--color-background); border-radius: 999px; padding: 0.375rem 0.875rem; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500; margin-bottom: 0.75rem; }
.menu-addon-label { display: block; font-family: var(--font-display); font-size: 1.25rem; line-height: 1.4; }
@media (min-width: 768px) { .menu-addon-label { font-size: 1.5rem; } }

.menu-footer-cta { display: flex; flex-direction: column; gap: 1rem; justify-content: center; text-align: center; margin-top: 3.5rem; }
@media (min-width: 640px) { .menu-footer-cta { flex-direction: row; } }
@media (min-width: 768px) { .menu-footer-cta { margin-top: 5rem; } }

/* ==========================================================================
   ORDER ONLINE SECTION
   ========================================================================== */
.order-section { background: var(--color-surface-white); scroll-margin-top: 96px; padding: 5rem 0; }
@media (min-width: 768px) { .order-section { padding: 7rem 0; } }
.order-header { text-align: center; max-width: 42rem; margin: 0 auto 3rem; }
@media (min-width: 768px) { .order-header { margin-bottom: 4rem; } }
.order-eyebrow { display: block; font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--color-marigold); margin-bottom: 1rem; }
.order-description { font-size: 1.125rem; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); line-height: 1.7; }
@media (min-width: 768px) { .order-description { font-size: 1.25rem; } }
.order-platforms-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .order-platforms-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .order-platforms-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.order-platform-card {
	display: flex; flex-direction: column; overflow: hidden; border-radius: 1rem;
	background: var(--color-background); box-shadow: var(--shadow-soft);
	text-align: left; transition: all 0.5s; height: 100%; width: 100%; min-width: 0;
	cursor: pointer;
}
.order-platform-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-elevated); }
.order-platform-top { padding: 1.75rem 2rem; }
.order-platform-top.surface-sunset {
	background: linear-gradient(to bottom right, var(--color-marigold), var(--color-terracotta), var(--color-rosa));
	color: var(--color-background);
}
.order-platform-top.surface-cactus {
	background: linear-gradient(to bottom right, var(--color-nopal), var(--color-teal), var(--color-primary));
	color: var(--color-background);
}
.order-platform-top.surface-sand {
	background: linear-gradient(to bottom right, var(--color-butter), var(--color-powder), color-mix(in srgb, var(--color-marigold) 70%, transparent));
	color: var(--color-foreground);
}
.order-platform-top.surface-plum {
	background: linear-gradient(to bottom right, var(--color-primary), var(--color-teal), var(--color-nopal));
	color: var(--color-primary-foreground);
}
.order-platform-icon { display: block; margin-bottom: 1.25rem; }
.order-platform-name { font-family: var(--font-display); font-size: 1.875rem; text-transform: uppercase; line-height: 0.95; letter-spacing: 0.01em; overflow-wrap: break-word; }
@media (min-width: 768px) { .order-platform-name { font-size: 2.25rem; } }
.order-platform-desc { font-size: 1rem; margin-top: 0.75rem; opacity: 0.85; line-height: 1.6; }
.order-platform-bottom { flex: 1; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.5rem 1.75rem; }
.order-platform-cta { font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500; color: var(--color-foreground); }
.order-platform-arrow { display: inline-flex; height: 2.75rem; width: 2.75rem; flex-shrink: 0; align-items: center; justify-content: center; border-radius: 50%; border: 2px solid var(--color-marigold); color: var(--color-marigold); transition: all 0.3s; }
.order-platform-card:hover .order-platform-arrow { background: var(--color-marigold); color: var(--color-background); }
.order-footer { text-align: center; margin-top: 3rem; }
@media (min-width: 768px) { .order-footer { margin-top: 4rem; } }
.order-hours { margin-top: 1.5rem; display: inline-flex; align-items: center; gap: 0.5rem; font-size: 13px; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }

/* ==========================================================================
   SHOP / CATERING SECTION + PRODUCT CARDS + CAROUSEL
   ========================================================================== */
.shop-section { background: var(--color-background); scroll-margin-top: 96px; padding: 4rem 0 6rem; }
@media (min-width: 768px) { .shop-section { padding: 4rem 0 6rem; } }
.shop-header { text-align: center; margin-bottom: 3rem; }
.shop-description { max-width: 40rem; margin: 0 auto; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); line-height: 1.7; }

.theme-empty-state { text-align: center; padding-block: 3rem; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }

.theme-product-carousel { position: relative; padding: 0 0.5rem; overflow: hidden; }
@media (min-width: 1024px) { .theme-product-carousel { padding: 0 2rem; } }
.theme-carousel-track-outer { overflow: hidden; max-width: 100%; }
.theme-carousel-track { display: flex; transition: transform 0.7s cubic-bezier(0.25,0.4,0.25,1); }
.theme-carousel-slide { flex-shrink: 0; padding: 0 0.75rem; }
@media (min-width: 1024px) { .theme-carousel-slide { padding: 0 1rem; } }
.theme-carousel-arrow {
	position: absolute; top: 50%; transform: translateY(-50%);
	width: 2.5rem; height: 2.5rem; border-radius: 50%;
	background: var(--color-foreground); color: var(--color-background);
	display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-elevated);
}
.theme-carousel-arrow:hover { opacity: 0.9; }
.theme-carousel-arrow-prev { left: 0.25rem; }
.theme-carousel-arrow-next { right: 0.25rem; }
@media (min-width: 1024px) { .theme-carousel-arrow-prev { left: 0; } .theme-carousel-arrow-next { right: 0; } }
@media (min-width: 1280px) { .theme-carousel-arrow-prev { left: -1.5rem; } .theme-carousel-arrow-next { right: -1.5rem; } }
.theme-carousel-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 2rem; }
.theme-carousel-dot { height: 8px; width: 8px; border-radius: 999px; background: color-mix(in srgb, var(--color-foreground) 25%, transparent); transition: all 0.3s; }
.theme-carousel-dot.is-active { width: 24px; background: var(--color-foreground); }

.theme-product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; align-items: stretch; }
.theme-product-card-wrap { position: relative; height: 100%; cursor: pointer; }
.theme-product-card-wrap > .theme-card-link { position: absolute; inset: 0; z-index: 2; pointer-events: auto; }
.theme-product-card-wrap *:not(.theme-card-link) { pointer-events: none; }
.theme-product-card-wrap .theme-product-card-add,
.theme-product-card-wrap .theme-accordion-trigger { pointer-events: auto; }
.theme-product-card {
	position: relative; display: flex; flex-direction: column; height: 100%;
	overflow: hidden; border-radius: 1rem; background: var(--color-background);
	box-shadow: var(--shadow-soft); transition: box-shadow 0.3s, transform 0.3s;
}
.theme-product-card-wrap:hover .theme-product-card { transform: translateY(-6px); box-shadow: var(--shadow-elevated); }
.theme-product-card-top { position: relative; padding: 1.5rem 1.25rem 0; flex: 1; }
.theme-product-card-category { display: block; font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; opacity: 0.7; }
.theme-product-card-title { font-family: var(--font-display); font-size: 1.5rem; text-transform: uppercase; line-height: 0.95; letter-spacing: 0.01em; margin-top: 0.375rem; }
@media (min-width: 768px) { .theme-product-card-title { font-size: 1.875rem; } }
.theme-product-card-tagline { font-size: 12px; margin-top: 0.375rem; opacity: 0.8; line-height: 1.4; }
.theme-product-card__image-wrapper { position: relative; margin-top: 1rem; overflow: hidden; border-radius: 1rem 1rem 0 0; min-height: 11rem; }
.theme-product-card-img { position: relative; display: block; width: 100%; height: 11rem; object-fit: cover; transition: transform 0.6s var(--transition-smooth); }
@media (min-width: 640px) {
	.theme-product-card__image-wrapper { min-height: 13rem; }
	.theme-product-card-img { height: 13rem; }
}
.theme-product-card-wrap:hover .theme-product-card-img { transform: scale(1.06); }
.theme-product-card-img.is-out-of-stock { opacity: 0.6; }
.theme-product-card-price-bubble {
	position: absolute; bottom: 0.5rem; left: 1rem;
	height: 5rem; width: 5rem; border-radius: 50%;
	background: var(--color-foreground); color: var(--color-background);
	display: flex; flex-direction: column; align-items: center; justify-content: center;
	box-shadow: var(--shadow-elevated);
}
.theme-product-card-price { font-family: var(--font-display); font-size: 1.875rem; line-height: 1; display: flex; align-items: flex-start; }
.theme-product-card-price .amount { font-family: var(--font-display); }
.pp-unit { font-family: var(--font-body); font-size: 9px; letter-spacing: 0.1em; margin-top: 0.25rem; margin-left: 0.125rem; }
.theme-product-card-price-label { font-size: 8px; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.8; margin-top: 0.125rem; }
.theme-product-card-badge {
	position: absolute; top: 1rem; right: 0; background: var(--color-foreground); color: var(--color-background);
	font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; padding: 0.35rem 0.85rem; border-radius: 999px 0 0 999px;
}
.theme-product-card-bottom { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; background: var(--color-surface-white); padding: 1rem 1.25rem; min-width: 0; }
.theme-product-card-view { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); transition: color 0.3s; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.theme-product-card-wrap:hover .theme-product-card-view { color: var(--color-marigold); }
.theme-product-card-add {
	position: relative;
	z-index: 3;
	width: 2.25rem; height: 2.25rem; flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center;
	border-radius: 50%; background: var(--color-foreground); color: var(--color-background); transition: transform 0.2s;
}
.theme-product-card-add:hover { transform: scale(1.08); }

/* ==========================================================================
   FINAL CTA
   ========================================================================== */
.cta-section { position: relative; background: var(--color-butter); overflow: hidden; scroll-margin-top: 96px; }
.cta-bg-img { opacity: 0.7; }
.cta-bg-gradient { position: absolute; inset: 0; background: linear-gradient(to bottom, color-mix(in srgb, var(--color-background) 60%, transparent), color-mix(in srgb, var(--color-background) 40%, transparent), color-mix(in srgb, var(--color-background) 80%, transparent)); }
.cta-inner { position: relative; padding-block: 6rem 8rem; }
.cta-card {
	max-width: 42rem; margin: 0 auto; text-align: center;
	background: color-mix(in srgb, var(--color-surface-white) 95%, transparent);
	backdrop-filter: blur(4px);
	box-shadow: var(--shadow-elevated);
	border-radius: 1.5rem;
	padding: 3rem 2rem;
	border: 1px solid color-mix(in srgb, var(--color-border) 60%, transparent);
}
@media (min-width: 768px) { .cta-card { padding: 4rem 3.5rem; } }
.cta-eyebrow { display: block; font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--color-marigold); margin-bottom: 1rem; }
.cta-heading { margin-bottom: 1.5rem; }
.cta-description { color: color-mix(in srgb, var(--color-foreground) 75%, transparent); line-height: 1.7; margin-bottom: 2.5rem; max-width: 32rem; margin-inline: auto; }
.cta-contact-row { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; margin-bottom: 2.5rem; font-size: 14px; }
@media (min-width: 640px) { .cta-contact-row { flex-direction: row; } }
.cta-contact-row a, .cta-contact-row span { color: color-mix(in srgb, var(--color-foreground) 80%, transparent); transition: color 0.2s; }
.cta-contact-row a:hover { color: var(--color-marigold); }
.cta-divider { display: none; height: 1rem; width: 1px; background: var(--color-border); }
@media (min-width: 640px) { .cta-divider { display: block; } }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--color-surface-deep); color: var(--color-surface-deep-foreground); }
.site-footer-main { padding-block: 3.5rem; }
@media (min-width: 1024px) { .site-footer-main { padding-block: 4.5rem; } }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 3rem; } }
.footer-brand-col { display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; }
@media (min-width: 1024px) { .footer-brand-col { grid-column: span 4; } }
.footer-logo-wrap { position: relative; width: 56px; height: 56px; border-radius: 50%; overflow: hidden; border: 1px solid color-mix(in srgb, var(--color-surface-deep-foreground) 20%, transparent); background: #fff; display: inline-block; }
@media (min-width: 1024px) { .footer-logo-wrap { width: 64px; height: 64px; } }
.footer-logo-img { width: 100%; height: 100% !important; object-fit: cover; }
.footer-brand-text { display: flex; flex-direction: column; line-height: 1; }
.footer-brand-name { font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; letter-spacing: 0.06em; text-transform: uppercase; }
.footer-brand-sub { font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase; color: color-mix(in srgb, var(--color-surface-deep-foreground) 60%, transparent); margin-top: 0.5rem; }
.footer-social { display: flex; align-items: center; gap: 0.75rem; padding-top: 0.25rem; }
.footer-social a { color: color-mix(in srgb, var(--color-surface-deep-foreground) 70%, transparent); transition: color 0.2s; }
.footer-social a:hover { color: var(--color-surface-deep-foreground); }
.footer-nav-col, .footer-contact-col { min-width: 0; }
@media (min-width: 1024px) { .footer-nav-col, .footer-contact-col { grid-column: span 4; } }
.footer-col-heading { font-family: var(--font-body); font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: color-mix(in srgb, var(--color-surface-deep-foreground) 50%, transparent); margin-bottom: 1.25rem; font-weight: 400; }
.footer-nav { display: flex; flex-direction: column; }
.footer-nav .footer-nav-list,
.footer-nav .menu {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.75rem;
	list-style: none;
	margin: 0;
	padding: 0;
}
.footer-nav li { margin: 0; padding: 0; }
.footer-nav a {
	display: block;
	text-align: left;
	font-family: var(--font-body);
	font-size: 12px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: color-mix(in srgb, var(--color-surface-deep-foreground) 75%, transparent);
	transition: color 0.2s;
	width: fit-content;
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
}
.footer-nav a:hover { color: var(--color-surface-deep-foreground); }
.footer-contact-list { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 14px; color: color-mix(in srgb, var(--color-surface-deep-foreground) 75%, transparent); transition: color 0.2s; overflow-wrap: break-word; }
.footer-contact-item:hover { color: var(--color-surface-deep-foreground); }
.footer-contact-item svg { margin-top: 0.15rem; flex-shrink: 0; }
.site-footer-bottom { border-top: 1px solid color-mix(in srgb, var(--color-surface-deep-foreground) 10%, transparent); }
.footer-bottom-inner { padding-block: 1.5rem; display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 0.75rem; }
@media (min-width: 640px) { .footer-bottom-inner { flex-direction: row; } }
.footer-copyright, .footer-credit { font-size: 12px; color: color-mix(in srgb, var(--color-surface-deep-foreground) 60%, transparent); letter-spacing: 0.02em; text-align: center; }
@media (min-width: 640px) { .footer-copyright { text-align: left; } .footer-credit { text-align: right; } }
.footer-credit a { font-weight: 700; color: color-mix(in srgb, var(--color-surface-deep-foreground) 90%, transparent); text-underline-offset: 4px; }
.footer-credit a:hover { text-decoration: underline; color: var(--color-surface-deep-foreground); }

/* ==========================================================================
   CART DRAWER + OVERLAY
   ========================================================================== */
#theme-cart-overlay { position: fixed; inset: 0; background: color-mix(in srgb, var(--color-foreground) 20%, transparent); z-index: 60; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
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: 26rem;
	background: var(--color-background); z-index: 61; 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: 1.5rem; border-bottom: 1px solid var(--color-border); }
.theme-cart-title { font-family: var(--font-display); font-size: 1.125rem; font-weight: 700; }
.theme-cart-close { padding: 0.25rem; opacity: 1; }
.theme-cart-close:hover { opacity: 0.6; }
.theme-cart-empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 1.5rem; text-align: center; gap: 1rem; }
.theme-cart-empty svg { color: color-mix(in srgb, var(--color-foreground) 50%, transparent); }
.theme-cart-empty p { color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }
.theme-cart-items { flex: 1; overflow: auto; padding: 1.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.theme-cart-item { display: flex; gap: 1rem; }
.theme-cart-item-thumb { width: 5rem; height: 6rem; background: var(--color-secondary); overflow: hidden; flex-shrink: 0; border-radius: 0.5rem; }
.theme-cart-item-thumb img { width: 100%; height: 100%; object-fit: cover; }
.theme-cart-item-body { flex: 1; min-width: 0; }
.theme-cart-item-name { font-size: 14px; font-weight: 500; display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; transition: opacity 0.2s; }
.theme-cart-item-name:hover { opacity: 0.7; }
.theme-cart-item-price { font-size: 14px; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); margin-top: 0.125rem; }
.theme-cart-item-options { display: flex; flex-direction: column; gap: 0.35rem; margin-top: 0.35rem; }
.theme-cart-item-option { font-size: 12px; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); }
.theme-cart-item-option-color { display: inline-flex; align-items: center; gap: 0.5rem; }
.theme-cart-color-swatch {
	width: 0.75rem;
	height: 0.75rem;
	border-radius: 999px;
	border: 1px solid var(--color-border);
	flex-shrink: 0;
}
.theme-cart-item-option-text .theme-cart-option-meta {
	color: color-mix(in srgb, var(--color-foreground) 50%, transparent);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 11px;
}
.theme-cart-item-variation { font-size: 12px; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); margin-top: 0.25rem; }
.theme-cart-item-controls { display: flex; align-items: center; gap: 0.75rem; margin-top: 0.75rem; }
.theme-cart-qty-btn { padding: 0.25rem; border-radius: 0.25rem; transition: background 0.2s; }
.theme-cart-qty-btn:hover { background: var(--color-secondary); }
.theme-cart-qty-value { font-size: 14px; width: 1.5rem; text-align: center; }
.theme-cart-remove { margin-left: auto; font-size: 13px; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }
.theme-cart-remove:hover { color: var(--color-foreground); }
.theme-cart-drawer-footer { padding: 1.5rem; border-top: 1px solid var(--color-border); display: flex; flex-direction: column; gap: 1rem; }
.theme-cart-subtotal-row { display: flex; justify-content: space-between; font-size: 14px; }
.theme-cart-subtotal-value { font-weight: 500; }
.theme-cart-checkout-btn { width: 100%; padding: 1rem; }
.theme-cart-empty-btn { width: 100%; padding: 0.75rem; font-size: 13px; }

/* ==========================================================================
   CONTACT MODAL
   ========================================================================== */
#theme-contact-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 70; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
body.contact-modal-open #theme-contact-overlay { opacity: 1; pointer-events: auto; }
#theme-contact-modal {
	position: fixed; left: 50%; top: 50%; z-index: 71; width: calc(100% - 2rem); max-width: 32rem; max-height: 90vh; overflow-y: auto;
	background: var(--color-background); border-radius: 0.75rem; box-shadow: var(--shadow-elevated);
	transform: translate(-50%, -48%) scale(0.96); opacity: 0; pointer-events: none; transition: all 0.2s var(--transition-smooth);
}
body.contact-modal-open #theme-contact-modal { transform: translate(-50%, -50%) scale(1); opacity: 1; pointer-events: auto; }
.theme-contact-modal-inner { padding: 1.75rem; display: flex; flex-direction: column; gap: 1.25rem; }
.theme-modal-close { position: absolute; right: 1rem; top: 1rem; padding: 0.25rem; opacity: 0.7; }
.theme-modal-close:hover { opacity: 1; }
.theme-contact-modal-title { font-family: var(--font-display); font-size: 1.875rem; letter-spacing: 0.04em; text-transform: uppercase; }
.theme-contact-modal-desc { color: color-mix(in srgb, var(--color-foreground) 65%, transparent); margin-top: 0.5rem; font-size: 14px; line-height: 1.6; }
.theme-contact-modal-info { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; font-size: 14px; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); }
.theme-contact-modal-info a { display: inline-flex; align-items: center; gap: 0.5rem; }
.theme-contact-modal-info a:hover { color: var(--color-foreground); }
.theme-contact-form { display: flex; flex-direction: column; gap: 1rem; }
.theme-contact-form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .theme-contact-form-row { grid-template-columns: 1fr 1fr; } }
.theme-form-field { display: flex; flex-direction: column; gap: 0.375rem; }
.theme-form-field label { font-size: 14px; font-weight: 500; }
.theme-form-field input, .theme-form-field textarea {
	width: 100%; padding: 0.6rem 0.75rem; background: var(--color-background); border: 1px solid var(--color-border);
	border-radius: 0.375rem; font-size: 1rem; transition: box-shadow 0.3s;
}
.theme-form-field input::placeholder, .theme-form-field textarea::placeholder { color: color-mix(in srgb, var(--color-foreground) 45%, transparent); }
.theme-form-field input:focus, .theme-form-field textarea:focus { outline: none; box-shadow: 0 0 0 2px color-mix(in srgb, var(--color-accent) 50%, transparent); }
.theme-form-field textarea { resize: none; }
.theme-contact-form-actions { display: flex; justify-content: flex-end; }
.theme-contact-form-error { color: #b91c1c; font-size: 13px; }
.theme-contact-modal-success { text-align: center; padding-block: 2rem; }
.theme-contact-success-icon { width: 3.5rem; height: 3.5rem; background: var(--color-primary); color: var(--color-primary-foreground); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.theme-contact-modal-success h3 { font-family: var(--font-display); font-size: 1.5rem; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 0.5rem; }
.theme-contact-modal-success p { font-size: 14px; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); }

/* ==========================================================================
   PRODUCT DETAIL MODAL (homepage carousel)
   ========================================================================== */
#theme-product-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 72; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
body.product-modal-open #theme-product-overlay { opacity: 1; pointer-events: auto; }
#theme-product-modal {
	position: fixed; left: 50%; top: 50%; z-index: 73; width: calc(100% - 2rem); max-width: 48rem; max-height: 90vh; overflow-y: auto;
	background: var(--color-background); border-radius: 1rem; box-shadow: var(--shadow-elevated);
	transform: translate(-50%, -48%) scale(0.96); opacity: 0; pointer-events: none; transition: all 0.2s var(--transition-smooth);
}
body.product-modal-open #theme-product-modal { transform: translate(-50%, -50%) scale(1); opacity: 1; pointer-events: auto; }
.theme-product-modal-close { z-index: 2; }
.theme-product-modal-content { min-height: 4rem; }
.theme-product-modal-loading { padding: 3rem 1.5rem; text-align: center; font-size: 14px; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); }
.theme-product-modal-grid { display: grid; grid-template-columns: 1fr; }
@media (min-width: 768px) { .theme-product-modal-grid { grid-template-columns: 1fr 1fr; } }
.theme-product-modal-visual {
	display: flex; flex-direction: column; justify-content: space-between;
	padding: 1.5rem; min-height: 18rem;
}
@media (min-width: 768px) { .theme-product-modal-visual { padding: 2rem; min-height: 24rem; } }
.theme-product-modal-category { display: block; font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; opacity: 0.7; }
.theme-product-modal-title { font-family: var(--font-display); font-size: 1.875rem; text-transform: uppercase; line-height: 0.95; letter-spacing: 0.01em; margin-top: 0.5rem; }
@media (min-width: 768px) { .theme-product-modal-title { font-size: 2.25rem; } }
.theme-product-modal-tagline { font-size: 14px; margin-top: 0.5rem; opacity: 0.8; line-height: 1.5; }
.theme-product-modal-image { margin-top: 1.5rem; width: 100%; height: 12rem; object-fit: contain; object-position: bottom; }
@media (min-width: 768px) { .theme-product-modal-image { height: 16rem; } }
.theme-product-modal-body {
	display: flex; flex-direction: column; background: var(--color-surface-white); padding: 1.5rem;
}
@media (min-width: 768px) { .theme-product-modal-body { padding: 2rem; } }
.theme-product-modal-price-row { display: flex; align-items: baseline; gap: 0.5rem; margin-bottom: 1rem; }
.theme-product-modal-price { font-family: var(--font-display); font-size: 2.25rem; line-height: 1; color: var(--color-foreground); }
.theme-product-modal-price-note { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }
.theme-product-modal-description { font-size: 14px; line-height: 1.7; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); margin-bottom: 1.5rem; }
.theme-product-modal-details { display: flex; flex-direction: column; gap: 0.625rem; margin: 0 0 2rem; padding: 0; list-style: none; }
.theme-product-modal-details li { display: flex; align-items: flex-start; gap: 0.625rem; font-size: 14px; line-height: 1.5; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); }
.theme-product-modal-details svg { flex-shrink: 0; margin-top: 0.125rem; color: var(--color-marigold); }
.theme-product-modal-actions { margin-top: auto; }
.theme-product-modal-order {
	display: block; width: 100%; border-radius: 999px; background: var(--color-foreground); color: var(--color-background);
	font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; padding: 1rem 1.5rem; text-align: center;
	transition: opacity 0.2s; cursor: pointer;
}
.theme-product-modal-order:hover { opacity: 0.9; }
.theme-product-modal-order:disabled { opacity: 0.5; cursor: not-allowed; }

/* ==========================================================================
   PAGE / 404 / GENERIC
   ========================================================================== */
.site-main { padding-top: 0; padding-bottom: 4rem; }
body.theme-no-hero .site-main { padding-top: 1rem; }
.page-content-wrap { padding-top: 2rem; padding-bottom: 2rem; }
.page-title { font-size: 2rem; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .page-title { font-size: 2.5rem; } }
.entry-content { overflow-wrap: break-word; }
.theme-404-main { display: flex; align-items: center; justify-content: center; min-height: 60vh; }
.theme-404-inner { text-align: center; }
.theme-404-code { font-size: 4rem; margin-bottom: 1rem; }
.theme-404-message { font-size: 1.25rem; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); margin-bottom: 1.5rem; }

/* ==========================================================================
   SINGLE PRODUCT (ProductDetail.tsx parity)
   ========================================================================== */
body.theme-no-hero .site-main.single-product-main {
	padding-top: 6rem !important;
	padding-bottom: 5rem;
}
@media (min-width: 1024px) {
	body.theme-no-hero .site-main.single-product-main {
		padding-top: 7rem !important;
	}
}
.single-product-main .breadcrumb-nav { padding-block: 1.5rem; margin-bottom: 0; }

.single-product-main .theme-product-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 2.5rem;
	padding-block: 1rem 6rem;
	align-items: start;
	min-width: 0;
}
@media (min-width: 1024px) {
	.single-product-main .theme-product-layout {
		grid-template-columns: repeat(12, minmax(0, 1fr));
		gap: 4rem;
	}
}
@media (min-width: 1024px) {
	.single-product-main .theme-product-gallery { grid-column: span 7; }
	.single-product-main .theme-product-info { grid-column: span 5; padding-left: 1rem; position: sticky; top: 7rem; }
}

.single-product-main .theme-product-gallery-mobile { display: block; }
.single-product-main .theme-product-gallery-desktop { display: none; }
@media (min-width: 1024px) {
	.single-product-main .theme-product-gallery-mobile { display: none; }
	.single-product-main .theme-product-gallery-desktop { display: flex; flex-direction: column; gap: 1rem; }
}

.single-product-main .theme-product-media {
	aspect-ratio: 1 / 1;
	background: var(--color-secondary);
	overflow: hidden;
}
.single-product-main .theme-product-hero-img {
	position: static !important;
	inset: auto !important;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.single-product-main .theme-product-thumbnails {
	display: flex;
	gap: 0.75rem;
	margin-top: 1rem;
	overflow-x: auto;
	padding-bottom: 0.25rem;
}
.single-product-main .theme-product-thumb {
	position: relative;
	width: 5rem;
	height: 5rem;
	flex-shrink: 0;
	overflow: hidden;
	background: var(--color-secondary);
	border: none;
	padding: 0;
	cursor: pointer;
	opacity: 0.6;
	transition: opacity 0.2s;
}
.single-product-main .theme-product-thumb.is-active,
.single-product-main .theme-product-thumb:hover { opacity: 1; }
.single-product-main .theme-product-thumb img {
	position: static !important;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.single-product-main .theme-product-thumb.is-active::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	background: var(--color-foreground);
}

.single-product-main .theme-product-category {
	display: block;
	font-size: 13px;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: color-mix(in srgb, var(--color-foreground) 60%, transparent);
}
.single-product-main .product-title {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: 1.875rem;
	line-height: 1.1;
	margin-top: 0.75rem;
	margin-bottom: 1.25rem;
	text-transform: none;
}
@media (min-width: 768px) {
	.single-product-main .product-title { font-size: 2.25rem; }
}
@media (min-width: 1024px) {
	.single-product-main .product-title { font-size: 2.75rem; }
}
.single-product-main .theme-product-price {
	font-size: 1.25rem;
	margin-bottom: 1.5rem;
	font-family: var(--font-body);
	color: var(--color-foreground);
}
.single-product-main .theme-stock-badge {
	display: inline-block;
	font-size: 12px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	padding: 0.4rem 1rem;
	border-radius: 999px;
	margin-bottom: 1rem;
}
.single-product-main .theme-stock-out {
	background: color-mix(in srgb, #b91c1c 12%, transparent);
	color: #b91c1c;
}
.single-product-main .theme-product-intro {
	color: color-mix(in srgb, var(--color-foreground) 65%, transparent);
	line-height: 1.7;
	margin-bottom: 2rem;
	font-size: 1rem;
}

.single-product-main .theme-attribute-field { margin-bottom: 1.5rem; }
.single-product-main .theme-attribute-label,
.single-product-main .theme-quantity-label {
	font-size: 13px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: color-mix(in srgb, var(--color-foreground) 60%, transparent);
	margin-bottom: 0.75rem;
}
.single-product-main .theme-attribute-chips > select,
.single-product-main .theme-attr-select-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
}
.single-product-main .theme-attribute-chip-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}
.single-product-main .is-color-field .theme-attribute-chip-list {
	gap: 0.75rem;
}
.single-product-main .theme-attribute-chip {
	padding: 0.5rem 1rem;
	font-size: 12px;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	border: 1px solid var(--color-border);
	border-radius: 999px;
	transition: all 0.2s;
	cursor: pointer;
	background: transparent;
	color: var(--color-foreground);
}
.single-product-main .theme-attribute-chip:hover {
	border-color: color-mix(in srgb, var(--color-foreground) 60%, transparent);
}
.single-product-main .theme-attribute-chip.is-selected {
	background: var(--color-foreground);
	color: var(--color-background);
	border-color: var(--color-foreground);
}
.single-product-main .theme-color-swatch-chip {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	font-size: 12px;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	border: 1px solid var(--color-border);
	border-radius: 999px;
	transition: all 0.2s;
	cursor: pointer;
	background: transparent;
	color: var(--color-foreground);
}
.single-product-main .theme-color-swatch-chip:hover {
	border-color: color-mix(in srgb, var(--color-foreground) 60%, transparent);
}
.single-product-main .theme-color-swatch-chip.is-selected {
	border-color: var(--color-primary);
	background: color-mix(in srgb, var(--color-primary) 5%, transparent);
	color: var(--color-foreground);
}
.single-product-main .theme-color-swatch-dot {
	width: 0.75rem;
	height: 0.75rem;
	border-radius: 999px;
	border: 1px solid var(--color-border);
	flex-shrink: 0;
}

.single-product-main .theme-quantity-block { margin-bottom: 1rem; }
.single-product-main .theme-quantity-wrapper {
	display: inline-flex;
	align-items: center;
	border: 1px solid var(--color-border);
}
.single-product-main .theme-qty-minus,
.single-product-main .theme-qty-plus {
	padding: 0.5rem 0.75rem;
	transition: background 0.2s;
	cursor: pointer;
}
.single-product-main .theme-qty-minus:hover,
.single-product-main .theme-qty-plus:hover { background: var(--color-secondary); }
.single-product-main .theme-qty-value {
	padding: 0.5rem 1rem;
	min-width: 2.75rem;
	text-align: center;
	font-size: 14px;
}
.single-product-main .theme-qty-hidden,
.single-product-main .theme-variable-product-form input.qty.theme-qty-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}

.single-product-main .theme-single-atc-btn {
	display: block;
	width: 100%;
	margin-top: 0.25rem;
	padding: 1rem 1.5rem;
	border: none;
	border-radius: 999px;
	background: var(--color-foreground) !important;
	color: var(--color-background) !important;
	font-family: var(--font-body);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	transition: opacity 0.2s;
	cursor: pointer;
}
.single-product-main .theme-single-atc-btn:hover:not(:disabled) { opacity: 0.9; }
.single-product-main .theme-single-atc-btn:disabled,
.single-product-main .theme-single-atc-btn.disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.single-product-main .theme-accordions { margin-top: 2.5rem; border-top: 1px solid var(--color-border); }
.single-product-main .theme-accordion { border-bottom: 1px solid var(--color-border); }
.single-product-main .theme-accordion-trigger {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-block: 1.25rem;
	text-align: left;
	cursor: pointer;
}
.single-product-main .theme-accordion-trigger span {
	font-size: 13px;
	letter-spacing: 0.25em;
	text-transform: uppercase;
}
.single-product-main .theme-accordion-trigger svg { transition: transform 0.3s; }
.single-product-main .theme-accordion.is-open .theme-accordion-trigger svg { transform: rotate(180deg); }
.single-product-main .theme-accordion-panel { display: none; padding-bottom: 1.5rem; }
.single-product-main .theme-accordion.is-open .theme-accordion-panel { display: block; }
.single-product-main .theme-product-description {
	font-size: 15px;
	color: color-mix(in srgb, var(--color-foreground) 65%, transparent);
	line-height: 1.7;
	margin-bottom: 1rem;
	white-space: pre-line;
}
.single-product-main .theme-product-details-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
.single-product-main .theme-product-details-list li {
	display: flex;
	align-items: flex-start;
	font-size: 15px;
	color: color-mix(in srgb, var(--color-foreground) 65%, transparent);
	line-height: 1.6;
}
.single-product-main .theme-product-details-list li::before {
	content: '';
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var(--color-foreground);
	margin-top: 0.55rem;
	margin-right: 0.75rem;
	flex-shrink: 0;
}

.single-product-main .related-products-section {
	padding-block: 5rem;
	border-top: 1px solid var(--color-border);
}
.single-product-main .related-products-header { text-align: center; margin-bottom: 3rem; }
.single-product-main .related-products-eyebrow {
	font-family: var(--font-display);
	font-style: italic;
	font-size: 1rem;
	color: color-mix(in srgb, var(--color-foreground) 60%, transparent);
	margin-bottom: 0.5rem;
}
.single-product-main .theme-related-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.5rem;
}
@media (min-width: 1024px) {
	.single-product-main .theme-related-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 2rem;
	}
}
.single-product-main .theme-related-link {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	color: inherit;
}
.single-product-main .theme-related-image-wrap {
	aspect-ratio: 1 / 1;
	background: var(--color-secondary);
	overflow: hidden;
}
.single-product-main .theme-related-image {
	position: static !important;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.single-product-main .theme-related-category {
	font-size: 11px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: color-mix(in srgb, var(--color-foreground) 60%, transparent);
}
.single-product-main .theme-related-name {
	font-family: var(--font-display);
	font-size: 1.125rem;
	line-height: 1.2;
}
.single-product-main .theme-related-price {
	font-size: 14px;
	color: color-mix(in srgb, var(--color-foreground) 75%, transparent);
}

/* Legacy single-product rules below — scoped overrides where needed */

.breadcrumb-nav { font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }
.breadcrumb-nav a:hover { color: var(--color-foreground); }
.breadcrumb-nav .sep { margin: 0 0.5rem; opacity: 0.5; }
.breadcrumb-nav .current { color: var(--color-foreground); }

.single-product .theme-add-to-cart-area { display: flex; align-items: stretch; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1rem; }
.single_add_to_cart_button.button:not(.theme-single-atc-btn),
.add_to_cart_button.button:not(.theme-product-card-add):not(.theme-single-atc-btn),
a.single_add_to_cart_button:not(.theme-single-atc-btn),
a.add_to_cart_button:not(.theme-product-card-add):not(.theme-single-atc-btn) {
	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: none !important;
	cursor: pointer !important;
	transition: opacity 0.2s ease !important;
}
.single_add_to_cart_button.button:hover,
.add_to_cart_button.button:hover {
	opacity: 0.85 !important;
	background-color: var(--color-primary) !important;
	color: var(--color-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;
}
.ajax_add_to_cart.theme-btn-loading { opacity: 0.6 !important; pointer-events: none !important; cursor: wait !important; }
.single-product .single_add_to_cart_button.loading::after,
.ajax_add_to_cart.loading::after { display: none !important; }

/* Card compact circular add-to-cart button — overrides global rules above */
.theme-product-card .add_to_cart_button.ajax_add_to_cart,
.theme-product-card-add.add_to_cart_button.ajax_add_to_cart {
	min-height: unset !important;
	height: 2.25rem !important;
	width: 2.25rem !important;
	padding: 0 !important;
	border-radius: 50% !important;
	background-color: var(--color-foreground) !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;
}

.theme-accordions { margin-top: 2.5rem; border-top: 1px solid var(--color-border); }
.theme-accordion { border-bottom: 1px solid var(--color-border); }
.theme-accordion-trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; padding-block: 1.25rem; text-align: left; }
.theme-accordion-trigger span { font-size: 13px; letter-spacing: 0.25em; text-transform: uppercase; }
.theme-accordion-trigger svg { transition: transform 0.3s; }
.theme-accordion.is-open .theme-accordion-trigger svg { transform: rotate(180deg); }
.theme-accordion-panel { display: none; padding-bottom: 1.5rem; }
.theme-accordion.is-open .theme-accordion-panel { display: block; }
.theme-product-description, .theme-product-details { font-size: 15px; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); line-height: 1.7; overflow-wrap: break-word; word-break: break-word; }
.theme-product-details-heading { font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; margin: 1.25rem 0 0.75rem; }
.theme-product-details ul { margin-top: 0.5rem; }
.theme-product-details li { position: relative; padding-left: 1rem; margin-bottom: 0.5rem; }
.theme-product-details li::before { content: ''; position: absolute; left: 0; top: 0.55em; width: 4px; height: 4px; border-radius: 50%; background: var(--color-foreground); }

.related-products-section { margin-top: 3rem; padding-top: 3rem; padding-bottom: 5rem; border-top: 1px solid var(--color-border); }
.related-products-header { text-align: center; margin-bottom: 3rem; }
.related-products-eyebrow { font-family: var(--font-display); font-style: italic; font-size: 1rem; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); margin-bottom: 0.5rem; }
.related-products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 1024px) { .related-products-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

/* Variable-product hidden select (Section 11.5.2) */
.theme-attr-select-hidden { display: none !important; }
.single-product .variations.shop_attributes tbody,
.single-product .variations tbody tr,
.single-product .variations tbody td { display: block; width: 100%; }
.single-product .variations tbody td.label { padding-bottom: 0.25rem; }
.single-product .variations tbody td.value { padding-top: 0; }

/* ==========================================================================
   WOOCOMMERCE NOTICES (scoped, Section 14.1)
   ========================================================================== */
.single-product .woocommerce-message, .single-product .woocommerce-info,
#theme-cart-drawer .woocommerce-message { display: none; }
.woocommerce-message, .woocommerce-info, .woocommerce-error {
	font-family: var(--font-body); border-radius: 0.5rem; padding: 1rem 1.25rem; margin-bottom: 1.5rem;
	list-style: none; border: 1px solid var(--color-border); background: var(--color-secondary); color: var(--color-foreground);
}
.woocommerce-error { border-color: #b91c1c; background: color-mix(in srgb, #b91c1c 8%, transparent); color: #b91c1c; }

/* ==========================================================================
   WOOCOMMERCE CHECKOUT BLOCK (Section 13)
   ========================================================================== */
body.woocommerce-checkout .site-main,
body.woocommerce-checkout.theme-checkout-page .site-main { padding-top: 0; padding-bottom: 4rem; }
body.woocommerce-checkout .entry-content,
body.woocommerce-checkout .container-wide.page-content-wrap { max-width: none; }
body.woocommerce-checkout .wp-block-woocommerce-checkout,
body.woocommerce-checkout .wc-block-checkout,
.entry-content .wc-block-checkout {
	display: block;
	max-width: 1280px;
	width: 100%;
	margin-inline: auto;
}

.theme-checkout-header {
	max-width: 1280px;
	margin: 0 auto 2.5rem;
}
.theme-checkout-back-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 14px;
	color: color-mix(in srgb, var(--color-foreground) 65%, transparent);
	margin-bottom: 2rem;
	transition: color 0.2s;
}
.theme-checkout-back-link:hover { color: var(--color-foreground); }
.theme-checkout-title {
	font-family: var(--font-display);
	font-size: clamp(1.875rem, 4vw, 2.25rem);
	font-weight: 700;
	margin-bottom: 0;
}
.theme-checkout-intro {
	margin-top: 0.75rem;
	color: color-mix(in srgb, var(--color-foreground) 65%, transparent);
	font-family: var(--font-body);
	max-width: 42rem;
}

@media (min-width: 768px) {
	body.woocommerce-checkout .wc-block-components-sidebar-layout,
	body.woocommerce-checkout .wc-block-checkout-sidebar-layout,
	body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout.is-large {
		display: grid;
		grid-template-columns: 1fr minmax(360px, 400px);
		gap: 1.5rem;
		align-items: start;
	}
}
body.woocommerce-checkout .wc-block-checkout__main,
body.woocommerce-checkout .wc-block-checkout__sidebar,
body.woocommerce-checkout .wc-block-components-main,
body.woocommerce-checkout .wc-block-components-sidebar {
	min-width: 0;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}
body.woocommerce-checkout .wc-block-components-notice-banner,
body.woocommerce-checkout .wc-block-checkout__notices {
	grid-column: 1 / -1;
	order: 1;
}
body.woocommerce-checkout .wc-block-checkout__main,
body.woocommerce-checkout .wc-block-components-main {
	order: 2;
}
body.woocommerce-checkout .wc-block-checkout__sidebar,
body.woocommerce-checkout .wc-block-components-sidebar {
	order: 3;
	background: transparent;
	border-radius: 0;
	padding: 0;
}
body.woocommerce-checkout .wc-block-components-order-summary,
body.woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-order-summary {
	background-color: var(--color-secondary);
	border-radius: var(--card-radius);
	padding: var(--section-padding);
}
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 {
	font-family: var(--font-body);
	border: 1px solid var(--color-border);
	border-radius: 0.375rem;
	background: var(--color-background);
	color: var(--color-foreground);
	width: 100% !important;
	max-width: none !important;
	padding: revert;
}
body.woocommerce-checkout .wc-block-components-text-input input:focus,
body.woocommerce-checkout .wc-block-components-select select:focus {
	outline: none;
	box-shadow: 0 0 0 2px color-mix(in srgb, var(--color-accent) 50%, transparent);
}
body.woocommerce-checkout .wc-block-components-text-input input::placeholder { color: color-mix(in srgb, var(--color-foreground) 45%, transparent); }
body.woocommerce-checkout .wc-block-components-checkout-place-order-button {
	background-color: var(--color-primary) !important;
	color: var(--color-primary-foreground) !important;
	border-radius: var(--btn-radius) !important;
	font-family: var(--font-body) !important;
	letter-spacing: 0.05em;
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover { opacity: 0.9; }
body.woocommerce-checkout .wc-block-components-notice-banner {
	border-radius: 0.5rem;
	font-family: var(--font-body);
}
body.woocommerce-checkout h2, body.woocommerce-checkout h3 { font-family: var(--font-display); }

/* ==========================================================================
   WOOCOMMERCE CART / ACCOUNT PAGE WIDTH PARITY (Section 13.7)
   ========================================================================== */
body.woocommerce-cart .site-main,
body.woocommerce-account .site-main {
	padding-top: 0;
}
body.woocommerce-cart .entry-content, body.woocommerce-account .entry-content { max-width: none; }

/* ==========================================================================
   THANK YOU PAGE (Section 22.8)
   ========================================================================== */
body.theme-thankyou-page { overflow-x: hidden; }
body.theme-thankyou-page .woocommerce-order { max-width: 1400px; margin: 0 auto; }
body.theme-thankyou-page h2, body.theme-thankyou-page .woocommerce-order-details__title {
	font-family: var(--font-display);
	font-size: 1.75rem;
	padding-block-end: 1rem;
}
body.theme-thankyou-page .woocommerce-order-overview { display: flex; flex-wrap: wrap; gap: 1.5rem; list-style: none; padding: 0; margin: 1.5rem 0; }
body.theme-thankyou-page .woocommerce-order-overview li { font-size: 14px; }
body.theme-thankyou-page .woocommerce-order-details table { width: 100%; table-layout: fixed; border-collapse: collapse; margin-bottom: 2rem; }
body.theme-thankyou-page .woocommerce-order-details th, body.theme-thankyou-page .woocommerce-order-details td { padding: 0.75rem; border-bottom: 1px solid var(--color-border); overflow-wrap: break-word; }
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-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; border: 1px solid var(--color-border); border-radius: 0.5rem; padding: 1rem; font-style: normal;
}
@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; max-width: none; }
}
