/* =========================================================================
   After Midnight Fry — theme.css
   Theme by The Free Website Guys.
   ========================================================================= */

:root {
	--color-background: #fbf7f0;
	--color-foreground: #1f1b18;
	--color-primary: #c8933a;
	--color-button-text: #1f1b18;
	--color-secondary: #f5ebd7;
	--color-accent: #b23a2a;
	--color-border: #e4ddd3;
	--color-dark: #1f1b18;
	--color-dark-alt: #3a2a20;
	--color-caramel-deep: #9a6a1e;
	--color-muted-fg: #6b5a4e;
	--color-cream: #ffffff;
	--color-dark-body: #ddd3c6;

	--font-display: 'Fredoka', 'Inter', system-ui, sans-serif;
	--font-body: 'Inter', system-ui, sans-serif;

	--radius: 0.5rem;
	--radius-md: 0.375rem;
	--radius-sm: 0.25rem;

	--shadow-soft: 0 4px 14px rgba(31, 27, 24, 0.08), 0 1px 3px rgba(31, 27, 24, 0.05);
	--shadow-elevated: 0 18px 40px rgba(31, 27, 24, 0.16);

	--header-height: 112px;
	--logo-height: 80px;

	--btn-radius: 999px;
	--btn-height: 48px;
	--btn-padding: 0.8rem 2rem;
	--btn-font-size: 12px;
	--btn-font-weight: 600;
	--btn-letter-spacing: 0.15em;
	--btn-text-transform: uppercase;
	--btn-icon-padding: 0.6rem;
}

/* -------------------------------------------------------------------------
   Reset & base
   ---------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { max-width: 100%; overflow-x: clip; }
body {
	margin: 0;
	background-color: var(--color-background);
	color: var(--color-foreground);
	font-family: var(--font-body);
	font-size: 16px;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
img:not(.cover-img):not(.hero-bg-img):not(.theme-product-card__img):not(.product-card-img) {
	max-width: 100%;
	height: auto;
}
.cover-img, .hero-bg-img, .theme-product-card__img, .product-card-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; }
ul { margin: 0; padding: 0; list-style: none; }
p { margin: 0; }

h1, h2, h3, h4, h5, h6 {
	font-weight: 600;
	font-size: inherit;
	font-family: var(--font-display);
	letter-spacing: -0.02em;
	color: var(--color-foreground);
	margin: 0;
}

.section-heading {
	font-family: var(--font-display);
	font-weight: 600;
	color: var(--color-foreground);
	letter-spacing: -0.02em;
	line-height: 1.05;
}

.container-wide {
	width: 100%;
	max-width: 80rem;
	margin-inline: auto;
	padding-inline: 1.5rem;
}
@media (min-width: 1024px) { .container-wide { padding-inline: 2rem; } }

.cs-label {
	font-family: var(--font-body);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	font-size: 12px;
	line-height: 1.2;
}
.cs-flourish-line { display: inline-flex; align-items: center; gap: 12px; }
.cs-flourish-line::before { content: ''; width: 32px; height: 1px; background-color: currentColor; opacity: 0.9; }
.eyebrow-ember { color: var(--color-accent); font-weight: 600; }
.eyebrow-caramel-deep { color: var(--color-caramel-deep); }
.made-band__eyebrow { color: var(--color-cream); font-weight: 700; }

.gold-divider { width: 4rem; height: 2px; background-color: var(--color-primary); margin: 2rem auto; }

.theme-icon { display: inline-block; vertical-align: middle; width: 1.25rem; height: 1.25rem; flex-shrink: 0; }
.theme-icon svg { width: 100%; height: 100%; display: block; }
.icon-xs { width: 14px; height: 14px; }
.icon-sm { width: 16px; height: 16px; }
.icon-md { width: 20px; height: 20px; }
.icon-lg { width: 28px; height: 28px; }

/* -------------------------------------------------------------------------
   Buttons
   ---------------------------------------------------------------------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	border-radius: var(--btn-radius);
	min-height: var(--btn-height);
	padding: var(--btn-padding);
	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);
	white-space: nowrap;
	transition: transform 300ms cubic-bezier(0.25,0.4,0.25,1), box-shadow 300ms cubic-bezier(0.25,0.4,0.25,1), background-color 200ms ease, color 200ms ease, opacity 200ms ease;
	border: 1px solid transparent;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(18,18,18,0.12); }
.btn-caramel { background-color: var(--color-primary); color: var(--color-button-text); }
.btn-caramel:hover { background-color: var(--color-cream); color: var(--color-button-text); }
.btn-espresso { background-color: var(--color-dark); color: var(--color-cream); }
.btn-espresso:hover { background-color: var(--color-primary); color: var(--color-dark); }
.btn-outline-cream { background: transparent; border-color: rgba(255,255,255,0.6); color: var(--color-cream); }
.btn-outline-cream:hover { background-color: var(--color-cream); color: var(--color-dark); }
.btn-outline-espresso { background: transparent; border-color: rgba(35,29,26,0.4); color: var(--color-dark); }
.btn-outline-espresso:hover { background-color: var(--color-dark); color: var(--color-cream); }
.btn-outline { background: transparent; border-color: var(--color-border); color: var(--color-foreground); }
.btn-full { width: 100%; }
.btn-sm { min-height: 40px; font-size: 11px; }
.btn-pill { border-radius: 999px; }
.btn-hero-primary, .btn-hero-outline, .single-product .single_add_to_cart_button { text-transform: uppercase; }

/* -------------------------------------------------------------------------
   Announcement bar
   ---------------------------------------------------------------------- */
.theme-announcement-bar { position: relative; background-color: var(--color-dark); border-bottom: 1px solid color-mix(in srgb, var(--color-primary) 25%, transparent); }
.theme-announcement-inner { padding-block: 0.5rem; text-align: center; }
.theme-announcement-text { color: var(--color-cream); font-family: var(--font-body); font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em; font-size: 12px; margin: 0; }
.theme-announcement-dismiss { position: absolute; right: 0.75rem; top: 50%; transform: translateY(-50%); color: rgba(255,255,255,0.7); padding: 0.25rem; transition: color 200ms ease, transform 200ms ease; }
.theme-announcement-dismiss:hover { color: var(--color-primary); transform: translateY(-50%) scale(1.1); }
.theme-announcement-bar.is-hidden { display: none; }

/* -------------------------------------------------------------------------
   Header
   ---------------------------------------------------------------------- */
.site-header {
	position: sticky;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	width: 100%;
	background-color: var(--color-dark);
	border-bottom: 1px solid color-mix(in srgb, var(--color-primary) 15%, transparent);
}
.site-nav { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 96px; }
@media (min-width: 768px) { .site-nav { height: 112px; } }
.site-branding { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; padding: 0.5rem 0; }
.site-logo-img { height: var(--logo-height) !important; width: auto !important; display: block; transition: transform 300ms ease; }
.site-branding:hover .site-logo-img { transform: scale(1.05); }
.site-logo-text { font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; color: var(--color-cream); line-height: var(--logo-height); display: block; }
.site-nav-links { display: none; }
@media (min-width: 1024px) { .site-nav-links { display: flex; align-items: center; gap: 1.75rem; margin-left: auto; } }
.theme-nav-list { display: flex; align-items: center; gap: 1.75rem; margin: 0; padding: 0; list-style: none; }
.theme-nav-list a, .theme-nav-list button { background: none; border: none; color: rgba(251,247,240,0.85); font-family: var(--font-body); font-size: 14px; font-weight: 500; transition: color 200ms ease; cursor: pointer; }
.theme-nav-list a:hover, .theme-nav-list button:hover { color: var(--color-primary); }
.site-nav-actions { display: flex; align-items: center; gap: 0.75rem; }
.theme-cart-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 999px;
	border: 1px solid color-mix(in srgb, var(--color-primary) 60%, transparent);
	color: var(--color-cream);
	transition: background-color 200ms ease, color 200ms ease, transform 300ms cubic-bezier(0.25,0.4,0.25,1);
}
.theme-cart-btn:hover { background-color: var(--color-primary); color: var(--color-dark); transform: translateY(-3px); }
.theme-cart-count {
	position: absolute; top: -4px; right: -4px; min-width: 18px; height: 18px; padding: 0 4px;
	border-radius: 999px; background-color: var(--color-primary); color: var(--color-dark);
	font-size: 11px; font-weight: 600; display: flex; align-items: center; justify-content: center;
}
.theme-cart-count:empty { display: none; }
.theme-mobile-toggle { display: inline-flex; padding: 0.5rem; color: var(--color-cream); }
@media (min-width: 1024px) { .theme-mobile-toggle { display: none; } }
.theme-mobile-toggle.is-open .icon-menu { display: none; }
.theme-mobile-toggle.is-open .icon-close { display: block !important; }

.site-mobile-menu { display: none; border-top: 1px solid rgba(251,247,240,0.15); padding-block: 1rem; }
.site-mobile-menu.is-open { display: block; animation: fadeIn 0.3s ease forwards; }
.site-mobile-menu .theme-nav-list,
.site-mobile-menu .theme-nav-list .sub-menu {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0.25rem;
	margin: 0;
	padding: 0;
	list-style: none;
}
.theme-nav-list--mobile { display: flex; flex-direction: column; gap: 0.25rem; width: 100%; }
.theme-nav-list--mobile > li { width: 100%; }
.theme-nav-list--mobile a,
.theme-nav-list--mobile button,
.site-mobile-menu .theme-nav-list a,
.site-mobile-menu .theme-nav-list button {
	display: block;
	width: 100%;
	text-align: left;
	padding: 0.75rem 0.5rem;
	border-radius: var(--radius-md);
	color: var(--color-cream);
	font-family: var(--font-body);
	font-size: 15px;
	font-weight: 500;
	background: none;
	border: none;
	transition: background-color 200ms ease, color 200ms ease;
}
.theme-nav-list--mobile a:hover,
.theme-nav-list--mobile button:hover,
.site-mobile-menu .theme-nav-list a:hover,
.site-mobile-menu .theme-nav-list button:hover {
	background-color: rgba(251,247,240,0.1);
	color: var(--color-cream);
}

body.theme-no-hero .site-header { background-color: var(--color-dark); }

/* -------------------------------------------------------------------------
   Hero
   ---------------------------------------------------------------------- */
.hero-section { position: relative; min-height: calc(100vh - 6rem); display: flex; align-items: center; justify-content: center; overflow: hidden; background-color: var(--color-dark); }
@media (min-width: 768px) { .hero-section { min-height: calc(100vh - 7rem); } }
.hero-bg { position: absolute; inset: 0; overflow: hidden; background-color: var(--color-dark); z-index: 0; }
.hero-bg-gradient { position: absolute; inset: 0; z-index: 2; pointer-events: none; background: linear-gradient(to bottom, rgba(31,27,24,0.62) 0%, rgba(31,27,24,0.48) 45%, rgba(31,27,24,0.90) 100%); }
.hero-content { position: relative; z-index: 10; padding-block: 3rem; }
.hero-content__text { max-width: 56rem; }
.hero-eyebrow { color: var(--color-cream); opacity: 1; font-weight: 700; }
.hero-title { font-size: 2.25rem; line-height: 1.05; margin-top: 1.5rem; color: var(--color-cream); font-weight: 600; letter-spacing: -0.03em; }
@media (min-width: 640px) { .hero-title { font-size: 3rem; } }
@media (min-width: 768px) { .hero-title { font-size: 3.75rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 4.5rem; } }
.hero-subtitle { color: #ddd3c6; font-size: 1rem; margin-top: 2rem; max-width: 42rem; font-weight: 300; line-height: 1.7; }
@media (min-width: 768px) { .hero-subtitle { font-size: 1.125rem; } }
@media (min-width: 1024px) { .hero-subtitle { font-size: 1.25rem; } }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.5rem; }
.hero-stamp { display: none; position: absolute; right: 1.5rem; bottom: 2.5rem; z-index: 20; }
@media (min-width: 768px) { .hero-stamp { display: flex; } }
@media (min-width: 1024px) { .hero-stamp { right: 3.5rem; bottom: 4rem; } }
.hero-stamp__inner {
	width: 8rem; height: 8rem; border-radius: 999px; display: flex; align-items: center; justify-content: center;
	background: radial-gradient(circle at 40% 35%, #FBF7F0 0%, #F5EBD7 70%);
	box-shadow: 0 10px 30px rgba(31,27,24,0.35), inset 0 0 0 2px #B23A2A, inset 0 0 0 4px #FBF7F0, inset 0 0 0 6px #B23A2A;
	text-align: center;
	animation: stampFloat 4.5s ease-in-out infinite;
	flex-direction: column;
}
@media (min-width: 768px) { .hero-stamp__inner { width: 9rem; height: 9rem; } }
.hero-stamp__l1 { font-family: var(--font-display); font-weight: 600; color: var(--color-accent); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; }
.hero-stamp__l2 { font-family: var(--font-display); font-weight: 700; font-style: italic; color: var(--color-dark); font-size: 26px; margin-top: 0.25rem; display: block; }
.hero-stamp__rule { display: block; margin: 0.25rem auto; width: 2rem; height: 2px; background-color: var(--color-accent); }
.hero-stamp__l3 { font-family: var(--font-display); font-weight: 600; color: var(--color-accent); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; }
@media (max-width: 767px) {
	.hero-stamp { display: flex; position: relative; right: auto; bottom: auto; margin: 2.5rem auto 0; justify-content: center; }
}

/* -------------------------------------------------------------------------
   Sections shared
   ---------------------------------------------------------------------- */
.why-section,
.shop-section,
.featured-section,
.fresh-section,
.faq-section,
.contact-section { background-color: var(--color-secondary); padding: 5rem 0; }
.how-section { background-color: var(--color-cream); padding: 5rem 0; }
@media (min-width: 1024px) {
	.why-section,
	.shop-section,
	.featured-section,
	.fresh-section,
	.faq-section,
	.contact-section,
	.how-section { padding: 7rem 0; }
}
.featured-section { padding: 3.5rem 0; }
@media (min-width: 1024px) { .featured-section { padding: 5rem 0; } }

.theme-section-decor { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.theme-section-decor__icon {
	position: absolute;
	display: block;
	color: color-mix(in srgb, var(--color-dark) 6%, transparent);
}
.theme-section-decor__icon.decor-tone--caramel { color: color-mix(in srgb, var(--color-primary) 12%, transparent); }
.theme-section-decor__icon .theme-icon { width: 100%; height: 100%; display: block; }
.theme-section-decor__icon svg { width: 100%; height: 100%; stroke-width: 1.5; }

/* Why We Exist */
.decor--why-1 { top: 1.5rem; left: 1rem; width: 10rem; height: 10rem; }
@media (min-width: 768px) { .decor--why-1 { width: 14rem; height: 14rem; } }
.decor--why-2 { top: 2.5rem; right: 1.5rem; width: 6rem; height: 6rem; }
@media (min-width: 768px) { .decor--why-2 { width: 8rem; height: 8rem; } }
.decor--why-3 { bottom: 1.5rem; right: 2rem; width: 9rem; height: 9rem; }
@media (min-width: 768px) { .decor--why-3 { width: 13rem; height: 13rem; } }

/* Fresh Never Frozen */
.decor--fresh-1 { top: 2rem; left: 1.5rem; width: 7rem; height: 7rem; }
@media (min-width: 768px) { .decor--fresh-1 { width: 9rem; height: 9rem; } }
.decor--fresh-2 { top: 1.5rem; right: 2.5rem; width: 8rem; height: 8rem; }
@media (min-width: 768px) { .decor--fresh-2 { width: 11rem; height: 11rem; } }
.decor--fresh-3 { bottom: 2rem; left: 2rem; width: 10rem; height: 10rem; }
@media (min-width: 768px) { .decor--fresh-3 { width: 14rem; height: 14rem; } }

/* How It Works */
.decor--how-1 { top: 2rem; left: 2rem; width: 7rem; height: 7rem; }
@media (min-width: 768px) { .decor--how-1 { width: 9rem; height: 9rem; } }
.decor--how-2 { top: 2.5rem; right: 1.5rem; width: 8rem; height: 8rem; }
@media (min-width: 768px) { .decor--how-2 { width: 11rem; height: 11rem; } }
.decor--how-3 { bottom: 1.5rem; left: 1.5rem; width: 9rem; height: 9rem; }
@media (min-width: 768px) { .decor--how-3 { width: 13rem; height: 13rem; } }
.decor--how-4 { bottom: 2.5rem; right: 2.5rem; width: 6rem; height: 6rem; }
@media (min-width: 768px) { .decor--how-4 { width: 8rem; height: 8rem; } }

/* Shop */
.decor--shop-1 { top: 2rem; left: 1.5rem; width: 9rem; height: 9rem; }
@media (min-width: 768px) { .decor--shop-1 { width: 13rem; height: 13rem; } }
.decor--shop-2 { top: 2.5rem; right: 2rem; width: 8rem; height: 8rem; }
@media (min-width: 768px) { .decor--shop-2 { width: 11rem; height: 11rem; } }
.decor--shop-3 { bottom: 2rem; right: 1.5rem; width: 9rem; height: 9rem; }
@media (min-width: 768px) { .decor--shop-3 { width: 13rem; height: 13rem; } }
.decor--shop-4 { bottom: 2.5rem; left: 2.5rem; width: 6rem; height: 6rem; }
@media (min-width: 768px) { .decor--shop-4 { width: 8rem; height: 8rem; } }

/* FAQ */
.decor--faq-1 { top: 2rem; left: 1rem; width: 9rem; height: 9rem; }
@media (min-width: 768px) { .decor--faq-1 { width: 13rem; height: 13rem; } }
.decor--faq-2 { top: 3rem; right: 1.5rem; width: 6rem; height: 6rem; }
@media (min-width: 768px) { .decor--faq-2 { width: 8rem; height: 8rem; } }
.decor--faq-3 { top: 50%; left: 2rem; width: 7rem; height: 7rem; }
@media (min-width: 768px) { .decor--faq-3 { width: 10rem; height: 10rem; } }
.decor--faq-4 { top: 50%; right: 2.5rem; width: 6rem; height: 6rem; }
@media (min-width: 768px) { .decor--faq-4 { width: 8rem; height: 8rem; } }
.decor--faq-5 { bottom: 2rem; left: 2.5rem; width: 8rem; height: 8rem; }
@media (min-width: 768px) { .decor--faq-5 { width: 12rem; height: 12rem; } }
.decor--faq-6 { bottom: 2.5rem; right: 1.5rem; width: 9rem; height: 9rem; }
@media (min-width: 768px) { .decor--faq-6 { width: 13rem; height: 13rem; } }

/* Per-section heading scales (Section 2.2.5) */
.why-heading, .fresh-heading, .serve-heading, .faq-heading { font-size: 1.875rem; line-height: 1.05; margin-top: 1.25rem; }
@media (min-width: 768px) { .why-heading, .fresh-heading, .serve-heading, .faq-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .why-heading, .fresh-heading, .serve-heading, .faq-heading { font-size: 3.75rem; } }
.how-heading, .shop-heading, .menu-band-heading, .contact-title { font-size: 1.875rem; line-height: 1.05; margin-top: 1.25rem; }
@media (min-width: 768px) { .how-heading, .shop-heading, .menu-band-heading, .contact-title { font-size: 3rem; } }
@media (min-width: 1024px) { .how-heading, .shop-heading, .menu-band-heading, .contact-title { font-size: 3.75rem; } }

/* -------------------------------------------------------------------------
   Featured strip
   ---------------------------------------------------------------------- */
.featured-header { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
@media (min-width: 768px) { .featured-header { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.featured-title { font-size: 1.5rem; margin-top: 0.75rem; }
@media (min-width: 768px) { .featured-title { font-size: 1.875rem; } }
@media (min-width: 1024px) { .featured-title { font-size: 2.25rem; } }
.featured-see-all { font-family: var(--font-body); font-size: 13px; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 600; color: var(--color-accent); transition: color 200ms ease; align-self: flex-start; }
.featured-see-all:hover { color: var(--color-caramel-deep); }

/* -------------------------------------------------------------------------
   Product grid & cards
   ---------------------------------------------------------------------- */
.theme-product-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; align-items: stretch; }
@media (min-width: 768px) { .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)); } }
.theme-product-grid--3col { grid-template-columns: 1fr; }
@media (min-width: 768px) { .theme-product-grid--3col { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.theme-product-card-wrap { display: flex; height: 100%; }
.theme-product-card {
	display: flex; flex-direction: column; height: 100%; width: 100%;
	background-color: var(--color-cream); border: 1px solid var(--color-border); border-radius: var(--radius-sm);
	overflow: hidden; box-shadow: var(--shadow-soft);
	transition: transform 300ms cubic-bezier(0.25,0.4,0.25,1), box-shadow 300ms cubic-bezier(0.25,0.4,0.25,1);
}
.theme-product-card:hover { transform: translateY(-5px); box-shadow: 0 24px 48px rgba(18,18,18,0.12), 0 12px 24px rgba(18,18,18,0.08); }
.theme-product-card__image-wrapper { position: relative; aspect-ratio: 4/3; width: 100%; overflow: hidden; background-color: var(--color-secondary); }
.theme-product-card__img { transition: transform 500ms ease; }
.theme-product-card:hover .theme-product-card__img { transform: scale(1.05); }
.theme-stock-badge { position: absolute; bottom: 0.75rem; right: 0.75rem; z-index: 3; background-color: var(--color-accent); color: #fff; font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.25rem 0.6rem; border-radius: 999px; }
.theme-product-card__body { display: flex; flex-direction: column; flex: 1; padding: 1.5rem; gap: 0.5rem; }
.theme-product-card__category { font-family: var(--font-body); font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-accent); }
.theme-product-card__title { font-family: var(--font-display); font-size: 1.25rem; line-height: 1.3; font-weight: 600; color: var(--color-foreground); }
.theme-product-card__desc { font-size: 14px; color: var(--color-muted-fg); margin-top: 0.25rem; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.theme-product-card__footer { display: flex; align-items: center; justify-content: space-between; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--color-border); gap: 0.75rem; }
.theme-product-card__price { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--color-accent); }
.theme-product-card__price del { opacity: 0.5; font-size: 0.85em; margin-right: 0.35rem; }
.theme-product-card__cta { display: inline-flex; align-items: center; gap: 0.25rem; font-family: var(--font-body); font-size: 12px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--color-accent); transition: color 200ms ease; }
.theme-product-card:hover .theme-product-card__cta { color: var(--color-foreground); }
.shop-empty { text-align: center; padding: 3rem 0; color: var(--color-muted-fg); }

/* -------------------------------------------------------------------------
   Why We Exist / Fresh Never Frozen (image + text grids)
   ---------------------------------------------------------------------- */
.why-grid, .fresh-grid { position: relative; z-index: 10; display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; }
@media (min-width: 1024px) { .why-grid, .fresh-grid { grid-template-columns: repeat(12, 1fr); gap: 4rem; } }
.why-image-col, .fresh-image-col { grid-column: span 12; }
@media (min-width: 1024px) { .why-image-col { grid-column: span 6; } }
.section-image-frame {
	position: relative;
	border-radius: var(--radius-md);
	overflow: hidden;
	box-shadow: var(--shadow-soft);
	border: 1px solid var(--color-border);
	min-height: 420px;
}
.section-image-frame .cover-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	min-height: 420px;
	object-fit: cover;
	object-position: center;
}
.why-text-col { grid-column: span 12; }
@media (min-width: 1024px) { .why-text-col { grid-column: span 6; } }
.why-copy, .fresh-copy { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 1.5rem; color: color-mix(in srgb, var(--color-foreground) 85%, transparent); font-size: 1rem; line-height: 1.7; }
@media (min-width: 768px) { .why-copy, .fresh-copy { font-size: 1.125rem; } }

.fresh-text-col { grid-column: span 12; order: 2; }
@media (min-width: 1024px) { .fresh-text-col { grid-column: span 7; order: 1; } }
.fresh-image-col { order: 1; }
@media (min-width: 1024px) { .fresh-image-col { grid-column: span 5; order: 2; } }
.fresh-text-col .btn { margin-top: 2rem; }

/* -------------------------------------------------------------------------
   Band sections (menu preview, made-for-you, cta strip, who we serve, contact)
   ---------------------------------------------------------------------- */
.menu-band { position: relative; overflow: hidden; min-height: 60vh; display: flex; align-items: center; background-color: var(--color-secondary); }
.menu-band__bg { position: absolute; inset: 0; }
.menu-band__gradient { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(251,247,240,0.94) 0%, rgba(245,235,215,0.82) 55%, rgba(245,235,215,0.35) 100%); }
.menu-band__container { position: relative; z-index: 10; padding-block: 5rem; width: 100%; }
@media (min-width: 1024px) { .menu-band__container { padding-block: 6rem; } }
.menu-band__content { max-width: 42rem; }
.menu-band__body { margin-top: 1.5rem; font-size: 1rem; max-width: 36rem; color: color-mix(in srgb, var(--color-foreground) 85%, transparent); }
@media (min-width: 768px) { .menu-band__body { font-size: 1.125rem; } }
.menu-band__content .btn { margin-top: 2rem; }

.made-band { position: relative; overflow: hidden; min-height: 440px; display: flex; align-items: center; justify-content: center; }
.made-band__bg { position: absolute; inset: 0; }
.made-band__gradient { position: absolute; inset: 0; background: linear-gradient(rgba(31,27,24,0.82), rgba(31,27,24,0.86)); }
.made-band__content { position: relative; z-index: 10; padding-block: 5rem; text-align: center; max-width: 56rem; margin: 0 auto; }
@media (min-width: 1024px) { .made-band__content { padding-block: 6rem; } }
.made-band__title { font-style: italic; color: var(--color-cream); font-size: 1.875rem; margin-top: 1.5rem; line-height: 1.1; }
@media (min-width: 768px) { .made-band__title { font-size: 3rem; } }
@media (min-width: 1024px) { .made-band__title { font-size: 3.75rem; } }
.made-band__body { color: #ddd3c6; font-size: 1rem; max-width: 42rem; margin: 0 auto; }
@media (min-width: 768px) { .made-band__body { font-size: 1.125rem; } }

.cta-strip { position: relative; overflow: hidden; padding: 4rem 0; border-top: 1px solid color-mix(in srgb, var(--color-primary) 40%, transparent); border-bottom: 1px solid color-mix(in srgb, var(--color-primary) 40%, transparent); }
@media (min-width: 1024px) { .cta-strip { padding: 5rem 0; } }
.cta-strip__bg { position: absolute; inset: 0; }
.cta-strip__gradient { position: absolute; inset: 0; background: linear-gradient(rgba(31,27,24,0.72), rgba(31,27,24,0.78)); }
.cta-strip__content { position: relative; z-index: 10; display: grid; grid-template-columns: 1fr; align-items: center; gap: 2rem; }
@media (min-width: 768px) { .cta-strip__content { grid-template-columns: repeat(3, 1fr); } }
.cta-strip__text { grid-column: span 1; }
@media (min-width: 768px) { .cta-strip__text { grid-column: span 2; } }
.cta-strip__title { font-style: italic; color: var(--color-cream); font-size: 1.875rem; margin-top: 1rem; line-height: 1.25; }
@media (min-width: 768px) { .cta-strip__title { font-size: 2.25rem; } }
.cta-strip__body { color: #ddd3c6; font-size: 1rem; margin-top: 1rem; max-width: 36rem; }
.cta-strip__action { display: flex; }
@media (min-width: 768px) { .cta-strip__action { justify-content: flex-end; } }

.serve-section { position: relative; overflow: hidden; padding: 5rem 0; }
@media (min-width: 1024px) { .serve-section { padding: 7rem 0; } }
.serve-section__bg { position: absolute; inset: 0; }
.serve-section__gradient { position: absolute; inset: 0; background: linear-gradient(rgba(31,27,24,0.78), rgba(31,27,24,0.82)); }
.serve-header { position: relative; z-index: 10; text-align: center; max-width: 48rem; margin: 0 auto 3.5rem; }
.serve-header .section-heading,
.serve-header .cs-label,
.made-band__title,
.made-band__eyebrow,
.cta-strip__title,
.cta-strip .cs-label,
.hero-title,
.hero-eyebrow { color: var(--color-cream); }
.serve-body { color: rgba(251,247,240,0.85); margin-top: 1.5rem; max-width: 42rem; margin-left: auto; margin-right: auto; font-size: 1rem; }
@media (min-width: 768px) { .serve-body { font-size: 1.125rem; } }
.serve-grid { position: relative; z-index: 10; display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .serve-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .serve-grid { grid-template-columns: repeat(3, 1fr); } }
.serve-card {
	display: flex; flex-direction: column; height: 100%; background-color: var(--color-secondary);
	border: 1px solid color-mix(in srgb, var(--color-primary) 30%, transparent); border-radius: var(--radius-md);
	padding: 1.5rem 1.75rem; box-shadow: var(--shadow-soft);
	transition: transform 300ms cubic-bezier(0.25,0.4,0.25,1), box-shadow 300ms cubic-bezier(0.25,0.4,0.25,1);
}
.serve-card:hover { transform: translateY(-5px); box-shadow: 0 24px 48px rgba(18,18,18,0.12), 0 12px 24px rgba(18,18,18,0.08); }
.serve-card__icon { width: 3.5rem; height: 3.5rem; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; background-color: var(--color-accent); color: var(--color-cream); box-shadow: 0 6px 18px rgba(178,58,42,0.35); transition: transform 300ms ease; }
.serve-card:hover .serve-card__icon { transform: scale(1.1) rotate(6deg); }
.serve-card__icon svg { width: 1.75rem; height: 1.75rem; }
.serve-card__title { font-size: 1.25rem; line-height: 1.3; margin-bottom: 0.5rem; }
.serve-card__body { font-size: 15px; line-height: 1.6; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); }

/* -------------------------------------------------------------------------
   How It Works
   ---------------------------------------------------------------------- */
.how-header { text-align: center; margin-bottom: 3.5rem; max-width: 48rem; margin-left: auto; margin-right: auto; }
.how-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .how-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .how-grid { grid-template-columns: repeat(4, 1fr); } }
.how-card {
	position: relative; display: flex; flex-direction: column; height: 100%;
	background-color: var(--color-cream); border: 1px solid var(--color-border); border-radius: var(--radius-md);
	padding: 2rem 2.25rem; box-shadow: var(--shadow-soft);
	transition: transform 300ms ease-out, box-shadow 300ms ease-out;
}
.how-card:hover { transform: rotate(1.5deg); box-shadow: 0 24px 48px rgba(18,18,18,0.12), 0 12px 24px rgba(18,18,18,0.08); }
.how-card__number { position: absolute; top: 1.5rem; right: 1.5rem; font-family: var(--font-display); font-size: 2.25rem; font-weight: 600; color: color-mix(in srgb, var(--color-primary) 40%, transparent); transition: color 300ms ease; }
.how-card:hover .how-card__number { color: color-mix(in srgb, var(--color-accent) 80%, transparent); }
.how-card__icon { width: 3.5rem; height: 3.5rem; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; background-color: var(--color-primary); color: var(--color-cream); box-shadow: 0 6px 18px rgba(200,147,58,0.35); transition: transform 300ms cubic-bezier(0.34,1.56,0.64,1); }
.how-card:hover .how-card__icon { transform: scale(1.1); }
.how-card__icon svg { width: 1.75rem; height: 1.75rem; }
.how-card__title { font-size: 1.25rem; line-height: 1.3; margin-bottom: 0.75rem; }
@media (min-width: 768px) { .how-card__title { font-size: 1.5rem; } }
.how-card__body { font-size: 15px; line-height: 1.6; color: var(--color-muted-fg); flex: 1; }
.how-cta { display: flex; justify-content: center; margin-top: 3rem; }

/* -------------------------------------------------------------------------
   Shop filter pills
   ---------------------------------------------------------------------- */
.shop-header { text-align: center; max-width: 48rem; margin: 0 auto 3.5rem; }
.shop-body { margin-top: 1.5rem; font-size: 1rem; color: var(--color-muted-fg); }
@media (min-width: 768px) { .shop-body { font-size: 1.125rem; } }
.shop-filter-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; margin-bottom: 3rem; }
.theme-cat-filter {
	font-family: var(--font-body); font-weight: 500; font-size: 14px; padding: 0.6rem 1.25rem; border-radius: 999px;
	border: 1px solid var(--color-border); color: var(--color-foreground); background-color: var(--color-cream);
	transition: all 300ms ease-out;
}
.theme-cat-filter:hover { border-color: var(--color-accent); color: var(--color-accent); background-color: color-mix(in srgb, var(--color-accent) 5%, transparent); }
.theme-cat-filter.is-active { background-color: var(--color-accent); color: var(--color-cream); border-color: var(--color-accent); }
.theme-product-card-wrap.is-filtered-out { display: none; }

/* -------------------------------------------------------------------------
   FAQ
   ---------------------------------------------------------------------- */
.faq-container { max-width: 48rem; position: relative; z-index: 10; }
.faq-header { text-align: center; margin-bottom: 3rem; }
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { background-color: var(--color-cream); border: 1px solid var(--color-border); border-radius: var(--radius-md); box-shadow: var(--shadow-soft); overflow: hidden; }
.faq-item__question { width: 100%; display: flex; align-items: center; justify-content: space-between; text-align: left; padding: 1.25rem 1.5rem; gap: 1rem; }
.faq-item__question span { font-family: var(--font-display); font-size: 1.125rem; font-weight: 600; transition: color 200ms ease; }
@media (min-width: 768px) { .faq-item__question span { font-size: 1.25rem; } }
.faq-item__question:hover span { color: var(--color-accent); }
.faq-item__question .theme-icon { color: var(--color-caramel-deep); flex-shrink: 0; transition: transform 300ms ease, color 300ms ease; }
.faq-item__question:hover .theme-icon { color: var(--color-accent); }
.faq-item.is-open .faq-item__question .theme-icon { transform: rotate(180deg); }
.faq-item__answer-wrap { display: grid; grid-template-rows: 0fr; opacity: 0; transition: grid-template-rows 300ms ease-out, opacity 300ms ease-out; }
.faq-item.is-open .faq-item__answer-wrap { grid-template-rows: 1fr; opacity: 1; }
.faq-item__answer-inner { overflow: hidden; }
.faq-item__answer { padding: 0 1.5rem 1.25rem; font-size: 15px; line-height: 1.6; color: var(--color-muted-fg); }

/* -------------------------------------------------------------------------
   Contact
   ---------------------------------------------------------------------- */
.contact-section { position: relative; overflow: hidden; padding: 5rem 0; }
@media (min-width: 1024px) { .contact-section { padding: 7rem 0; } }
.contact-section__bg { position: absolute; inset: 0; z-index: 0; }
.contact-section__gradient { position: absolute; inset: 0; background: linear-gradient(rgba(249,246,241,0.86), rgba(244,234,215,0.86)); }
.contact-grid { position: relative; z-index: 10; display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: stretch; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: repeat(2, 1fr); gap: 4rem; } }
.contact-text-col { display: flex; flex-direction: column; justify-content: center; }
.contact-body { margin-top: 1.5rem; font-size: 1rem; color: color-mix(in srgb, var(--color-foreground) 85%, transparent); max-width: 32rem; }
@media (min-width: 768px) { .contact-body { font-size: 1.125rem; } }
.contact-buttons { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }
.contact-tiles-col { display: grid; grid-template-columns: 1fr; gap: 1rem; align-self: stretch; }
@media (min-width: 640px) { .contact-tiles-col { grid-template-columns: repeat(2, 1fr); } }
.contact-tile {
	display: flex; flex-direction: column; height: 100%; background-color: var(--color-cream);
	border: 1px solid color-mix(in srgb, var(--color-primary) 30%, transparent); border-radius: var(--radius-md);
	padding: 1.5rem; box-shadow: var(--shadow-soft);
	transition: transform 300ms cubic-bezier(0.25,0.4,0.25,1), box-shadow 300ms cubic-bezier(0.25,0.4,0.25,1);
}
.contact-tile:hover { transform: translateY(-5px); box-shadow: 0 24px 48px rgba(18,18,18,0.12), 0 12px 24px rgba(18,18,18,0.08); }
.contact-tile__label { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--color-accent); font-weight: 600; letter-spacing: 0.18em; font-size: 12px; text-transform: uppercase; font-family: var(--font-body); }
.contact-tile__value { font-family: var(--font-body); font-size: 15px; word-break: break-word; margin-top: 0.75rem; }

/* -------------------------------------------------------------------------
   Footer
   ---------------------------------------------------------------------- */
.site-footer { background-color: var(--color-dark); border-top: 1px solid color-mix(in srgb, var(--color-primary) 15%, transparent); }
.site-footer-inner { padding-block: 4rem 5rem; display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .site-footer-inner { grid-template-columns: repeat(12, 1fr); gap: 4rem; padding-block: 5rem 6rem; } }
.footer-col--brand { grid-column: span 12; }
@media (min-width: 768px) { .footer-col--brand { grid-column: span 5; } }
.footer-col--nav { grid-column: span 12; }
@media (min-width: 768px) { .footer-col--nav { grid-column: span 3; } }
.footer-col--contact { grid-column: span 12; }
@media (min-width: 768px) { .footer-col--contact { grid-column: span 4; } }
.footer-heading { color: var(--color-primary); margin-bottom: 1.25rem; font-size: 12px; text-transform: uppercase; letter-spacing: 0.18em; font-weight: 600; font-family: var(--font-body); }
.footer-nav-list,
.footer-nav-list ul { display: flex; flex-direction: column; gap: 0.75rem; margin: 0; padding: 0; list-style: none; }
.footer-nav-list a { font-size: 14px; color: rgba(251,247,240,0.75); transition: color 200ms ease; }
.footer-nav-list a:hover { color: var(--color-primary); }
.footer-logo-img { height: 88px !important; }
@media (min-width: 768px) { .footer-logo-img { height: 96px !important; } }
.footer-body-text { margin-top: 1.5rem; max-width: 28rem; font-size: 15px; color: #ddd3c6; line-height: 1.7; }
.footer-contact-list { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact-link { display: inline-flex; align-items: flex-start; gap: 0.5rem; font-size: 14px; color: rgba(251,247,240,0.8); transition: color 200ms ease; }
.footer-contact-link:hover { color: var(--color-primary); }
.site-footer-bottom { padding-block: 2rem; border-top: 1px solid rgba(251,247,240,0.1); display: grid; grid-template-columns: 1fr; gap: 0.75rem; align-items: center; }
@media (min-width: 768px) { .site-footer-bottom { grid-template-columns: repeat(3, 1fr); } }
.footer-copyright, .footer-credit { font-size: 14px; color: #ddd3c6; margin: 0; }
.footer-credit { text-align: left; }
@media (min-width: 768px) { .footer-credit { text-align: center; } }
.footer-credit a { color: var(--color-primary); transition: color 200ms ease; text-underline-offset: 2px; }
.footer-credit a:hover { color: var(--color-cream); text-decoration: underline; }
.footer-back-to-top { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 14px; color: #ddd3c6; transition: color 200ms ease; justify-self: start; }
@media (min-width: 768px) { .footer-back-to-top { justify-self: end; } }
.footer-back-to-top:hover { color: var(--color-primary); }

.theme-back-to-top {
	position: fixed; bottom: 2rem; right: 2rem; z-index: 50; width: 2.5rem; height: 2.5rem; border-radius: 999px;
	background-color: var(--color-primary); color: #fff; display: flex; align-items: center; justify-content: center;
	box-shadow: var(--shadow-soft); transition: transform 200ms ease, opacity 200ms ease; opacity: 0; pointer-events: none;
}
@media (min-width: 768px) { .theme-back-to-top { width: 3rem; height: 3rem; } }
.theme-back-to-top.is-visible { opacity: 1; pointer-events: auto; }
.theme-back-to-top:hover { transform: scale(1.1); }

/* -------------------------------------------------------------------------
   Animations (ported verbatim from source utility layer)
   ---------------------------------------------------------------------- */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes stampFloat { 0% { transform: rotate(-13deg) translateY(0); } 50% { transform: rotate(-11deg) translateY(-6px); } 100% { transform: rotate(-13deg) translateY(0); } }
@keyframes kenburnsA { 0% { transform: scale(1) translate3d(0,0,0); } 50% { transform: scale(1.08) translate3d(-2%,-1.5%,0); } 100% { transform: scale(1) translate3d(0,0,0); } }
@keyframes kenburnsB { 0% { transform: scale(1.04) translate3d(1.5%,0,0); } 50% { transform: scale(1.08) translate3d(-1.5%,1.5%,0); } 100% { transform: scale(1.04) translate3d(1.5%,0,0); } }
@keyframes kenburnsD { 0% { transform: scale(1) translate3d(-1%,0,0); } 50% { transform: scale(1.08) translate3d(1%,-1.5%,0); } 100% { transform: scale(1) translate3d(-1%,0,0); } }

.kenburns-a { animation: kenburnsA 22s ease-in-out infinite; transform-origin: center; will-change: transform; }
.kenburns-b { animation: kenburnsB 25s ease-in-out infinite; transform-origin: center; will-change: transform; }
.kenburns-d { animation: kenburnsD 23s ease-in-out infinite; transform-origin: center; will-change: transform; }

.animate-fade-in { animation: fadeIn 0.6s cubic-bezier(0.4,0,0.2,1) forwards; }
.animate-slide-up { animation: slideUp 0.6s cubic-bezier(0.4,0,0.2,1) forwards; }

/* Scroll reveal — initial hidden state, fallback for Customizer preview. */
.reveal-item {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 700ms cubic-bezier(0.22,1,0.36,1), transform 700ms cubic-bezier(0.22,1,0.36,1);
	transition-delay: var(--cs-fade-delay, 0ms);
}
.reveal-item.is-visible { opacity: 1; transform: translateY(0); }
body.is-customizer .reveal-item,
body.is-customizer .theme-product-card-wrap { opacity: 1 !important; transform: none !important; }

@media (prefers-reduced-motion: reduce) {
	.reveal-item { opacity: 1 !important; transform: none !important; transition: none !important; }
	.kenburns-a, .kenburns-b, .kenburns-d, .hero-stamp__inner { animation: none !important; transform: none !important; }
	.btn:hover, .theme-product-card:hover, .how-card:hover, .serve-card:hover, .contact-tile:hover { transform: none !important; }
}

/* -------------------------------------------------------------------------
   WooCommerce — single product page
   ---------------------------------------------------------------------- */
.single-product .site-main, .single-product main.single-product { padding-top: 2.5rem; padding-bottom: 6rem; }
@media (min-width: 1024px) { .single-product main.single-product { padding-top: 3.5rem; } }
.single-product .container-wide { position: relative; }

.product-breadcrumb { padding-block: 1.5rem; font-size: 12px; text-transform: uppercase; letter-spacing: 0.15em; color: var(--color-muted-fg); }
.product-breadcrumb a { transition: color 200ms ease; }
.product-breadcrumb a:hover { color: var(--color-foreground); }
.product-breadcrumb .sep { margin: 0 0.5rem; opacity: 0.5; }
.product-breadcrumb .current { color: var(--color-foreground); }

.theme-product-layout { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: start; padding-bottom: 4rem; min-width: 0; }
@media (min-width: 1024px) { .theme-product-layout { grid-template-columns: 7fr 5fr; gap: 4rem; } }
.theme-product-gallery, .theme-product-info { min-width: 0; max-width: 100%; }
.theme-product-main-image-wrap { position: relative; aspect-ratio: 4/3; background-color: var(--color-secondary); overflow: hidden; border-radius: var(--radius-md); box-shadow: var(--shadow-soft); }
.theme-product-thumbnails { display: flex; gap: 0.75rem; margin-top: 1rem; flex-wrap: wrap; max-width: 100%; }
.theme-thumb-btn { position: relative; width: 4.5rem; height: 4.5rem; border-radius: var(--radius-sm); overflow: hidden; border: 2px solid transparent; flex-shrink: 0; }
.theme-thumb-btn.is-active { border-color: var(--color-primary); }
.theme-product-info { padding-left: 0; }
@media (min-width: 1024px) { .theme-product-info { padding-left: 1rem; position: sticky; top: 7rem; } }
.product-category-label { font-family: var(--font-body); font-size: 12px; text-transform: uppercase; letter-spacing: 0.15em; color: var(--color-caramel-deep); }
.product-category-label a { color: inherit; }
.product-title { font-family: var(--font-display); font-weight: 600; font-size: 1.875rem; line-height: 1.05; margin-top: 0.75rem; margin-bottom: 1.25rem; color: var(--color-foreground); }
@media (min-width: 768px) { .product-title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .product-title { font-size: 3rem; } }
.product-price { font-family: var(--font-display); font-size: 1.875rem; font-weight: 600; color: var(--color-accent); margin-bottom: 1.5rem; }
.product-description { color: var(--color-muted-fg); line-height: 1.7; margin-bottom: 2rem; font-size: 1rem; overflow-wrap: break-word; word-break: break-word; }
.product-prose > :first-child { margin-top: 0; }
.product-prose > :last-child { margin-bottom: 0; }
.product-prose p { margin: 0 0 1rem; }
.product-prose ul,
.product-prose ol { margin: 0 0 1rem; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.product-prose ul li,
.product-prose ol li { display: flex; align-items: flex-start; gap: 0.75rem; color: var(--color-muted-fg); font-size: 15px; line-height: 1.6; }
.product-prose ul li::before { content: ''; width: 6px; height: 6px; border-radius: 999px; background-color: var(--color-primary); margin-top: 0.55rem; flex-shrink: 0; }
.product-prose ol { counter-reset: product-prose-ol; }
.product-prose ol li { counter-increment: product-prose-ol; }
.product-prose ol li::before { content: counter( product-prose-ol ) '.'; min-width: 1.25rem; color: var(--color-caramel-deep); font-weight: 600; flex-shrink: 0; }
.product-prose strong { font-weight: 600; color: var(--color-foreground); }
.product-prose a { color: var(--color-accent); text-decoration: underline; text-underline-offset: 2px; }
.theme-stock-indicator--out { color: var(--color-accent); font-weight: 600; margin-bottom: 1rem; }

.theme-quantity-wrapper { display: inline-flex; align-items: center; border: 1px solid var(--color-border); border-radius: var(--radius-md); background-color: var(--color-cream); }
.theme-qty-minus, .theme-qty-plus { padding: 0.6rem 0.9rem; transition: background-color 200ms ease; }
.theme-qty-minus:hover, .theme-qty-plus:hover { background-color: var(--color-secondary); }
.theme-qty-input { width: 3rem; text-align: center; border: none; background: transparent; font-family: var(--font-body); font-size: 14px; -moz-appearance: textfield; }
.theme-qty-input::-webkit-outer-spin-button, .theme-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.theme-quantity-row { margin-bottom: 1.5rem; }
.theme-quantity-label { display: block; color: var(--color-muted-fg); margin-bottom: 0.75rem; font-size: 12px; }
.theme-product-actions { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.5rem; }
@media (min-width: 640px) { .theme-product-actions { flex-direction: row; } }
.theme-product-actions .btn-product-add { flex: 1; min-width: 0; }
.theme-product-actions .btn-product-contact { flex: 1; min-width: 0; }
.btn-product-add {
	border-radius: var(--radius-md) !important;
	min-height: 52px !important;
	padding: 1rem 1.5rem !important;
	font-size: 13px !important;
	letter-spacing: 0.15em !important;
	text-transform: uppercase !important;
}
.btn-product-add:hover { transform: translateY(-3px); }
.btn-product-contact {
	border-radius: var(--radius-md);
	min-height: 52px;
	padding: 1rem 1.5rem;
	font-size: 13px;
	letter-spacing: 0.15em;
}

.theme-variation-attrs,
.variations.theme-variation-attrs { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 1.5rem; border: 0; }
.variations.theme-variation-attrs tbody,
.variations.theme-variation-attrs tr,
.variations.theme-variation-attrs td { display: block; width: 100%; }
.theme-variation-attr__label { display: block; color: var(--color-muted-fg); margin-bottom: 0.75rem; font-size: 12px; }
.theme-attr-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.theme-attr-pill {
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 500;
	padding: 0.5rem 1rem;
	border-radius: 999px;
	border: 1px solid var(--color-border);
	background-color: var(--color-cream);
	color: var(--color-foreground);
	transition: all 200ms ease;
}
.theme-attr-pill:hover { border-color: var(--color-accent); color: var(--color-accent); }
.theme-attr-pill.is-selected { background-color: var(--color-accent); color: var(--color-cream); border-color: var(--color-accent); }
.theme-attr-select-hidden-wrap {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
}

.theme-add-to-cart-area, .theme-product-info form.cart .theme-add-to-cart-area { display: flex; flex-direction: column; align-items: stretch; gap: 0.75rem; margin-bottom: 1.5rem; }

.product-details-accordion { margin-top: 2.5rem; border-top: 1px solid var(--color-border); }
.product-details-toggle { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 0; text-align: left; }
.product-details-toggle svg { transition: transform 300ms ease; }
.product-details-toggle[aria-expanded="false"] svg { transform: rotate(180deg); }
.product-details-content { padding-bottom: 1.5rem; font-size: 15px; line-height: 1.7; color: var(--color-muted-fg); overflow-wrap: break-word; word-break: break-word; }
.product-details-content.product-prose ul li,
.product-details-content.product-prose ol li { font-size: 15px; }
.product-details-content.is-collapsed { display: none; }

.related-products-section { padding: 5rem 0 0; border-top: 1px solid var(--color-border); margin-top: 2rem; }
.related-products-header { text-align: center; margin-bottom: 3rem; }
.related-products-header h2 { font-size: 1.875rem; margin-top: 0.75rem; }
@media (min-width: 768px) { .related-products-header h2 { font-size: 2.25rem; } }

/* WooCommerce add-to-cart button style override */
.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-dark) !important;
	color: var(--color-cream) !important;
	border: none !important;
	border-radius: var(--radius-md) !important;
	min-height: 52px !important;
	padding: 1rem 1.5rem !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	font-family: var(--font-body) !important;
	font-size: 13px !important;
	font-weight: 600 !important;
	letter-spacing: 0.15em !important;
	text-transform: uppercase !important;
	cursor: pointer !important;
	transition: background-color 200ms ease, color 200ms ease, transform 300ms ease, opacity 200ms ease !important;
}
.single_add_to_cart_button.button:hover,
.add_to_cart_button.button:hover {
	background-color: var(--color-primary) !important;
	color: var(--color-dark) !important;
	opacity: 1 !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;
	background-color: var(--color-dark) !important;
	color: var(--color-cream) !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; }

.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; }

/* Variable product variations table */
.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; font-weight: 600; }
.single-product .variations tbody td.value { padding-top: 0; margin-bottom: 1rem; }
.theme-attr-select-hidden { display: none !important; }

.single-product .theme-product-layout, .single-product .theme-product-gallery, .single-product .theme-product-info { min-width: 0; max-width: 100%; }
.single-product .theme-product-thumbnails { flex-wrap: wrap; max-width: 100%; }
.single-product .theme-add-to-cart-area { display: flex; align-items: stretch; flex-wrap: wrap; gap: 0.75rem; }
.single-product .woocommerce-product-details__short-description,
.single-product .woocommerce-variation-description,
.single-product .posted_in { overflow-wrap: break-word; word-break: break-word; }

.single-product .woocommerce-message,
.single-product .woocommerce-info { display: none; }
#theme-cart-drawer .woocommerce-message { display: none; }

/* -------------------------------------------------------------------------
   Shop archive
   ---------------------------------------------------------------------- */
.shop-archive { padding: 3rem 0 5rem; }
.shop-archive__header { text-align: center; margin-bottom: 3rem; }
.shop-archive__header .shop-heading { margin-top: 0.75rem; }

/* -------------------------------------------------------------------------
   Side Cart Drawer
   ---------------------------------------------------------------------- */
#theme-cart-overlay { position: fixed; inset: 0; background-color: color-mix(in srgb, var(--color-foreground) 40%, transparent); z-index: 199; opacity: 0; pointer-events: none; transition: opacity 300ms 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: 28rem;
	background-color: var(--color-background); z-index: 200; box-shadow: var(--shadow-elevated);
	display: flex; flex-direction: column; transform: translateX(100%); transition: transform 350ms cubic-bezier(0.22,1,0.36,1);
}
body.cart-open #theme-cart-drawer { transform: translateX(0); }
#theme-cart-drawer.is-updating { opacity: 0.6; pointer-events: none; }
.theme-cart-drawer__header { display: flex; align-items: center; justify-content: space-between; padding: 1.5rem; border-bottom: 1px solid var(--color-border); }
.theme-cart-drawer__title { font-family: var(--font-display); font-size: 1.125rem; font-weight: 600; }
.theme-cart-drawer__close { padding: 0.25rem; transition: opacity 200ms ease; }
.theme-cart-drawer__close:hover { opacity: 0.6; }
.theme-cart-drawer__empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 1.5rem; text-align: center; }
.theme-cart-drawer__empty-icon { width: 3rem; height: 3rem; color: var(--color-muted-fg); margin-bottom: 1rem; }
.theme-cart-drawer__empty p { color: var(--color-muted-fg); margin-bottom: 1.5rem; }
.theme-cart-drawer__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__image {
	width: 5rem;
	height: 6rem;
	background-color: var(--color-secondary);
	overflow: hidden;
	flex-shrink: 0;
	border-radius: var(--radius-md);
	position: relative;
	display: flex;
	align-items: stretch;
}
.theme-cart-item__image img {
	width: 100%;
	height: 100% !important;
	max-height: 100%;
	object-fit: contain;
	object-position: center;
	display: block;
}
.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 200ms ease; }
.theme-cart-item__name:hover { opacity: 0.7; }
.theme-cart-item__price { font-size: 14px; color: var(--color-accent); font-weight: 600; margin-top: 0.125rem; }
.theme-cart-item__variation { font-size: 12px; color: var(--color-muted-fg); 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: var(--radius-sm); transition: background-color 200ms ease; }
.theme-cart-qty-btn:hover { background-color: var(--color-secondary); }
.theme-cart-item__qty { font-size: 14px; width: 1.5rem; text-align: center; }
.theme-cart-item__remove { margin-left: auto; font-size: 14px; color: var(--color-muted-fg); transition: color 200ms ease; }
.theme-cart-item__remove:hover { color: var(--color-foreground); }
.theme-cart-drawer__footer { padding: 1.5rem; border-top: 1px solid var(--color-border); display: flex; flex-direction: column; gap: 1rem; }
.theme-cart-drawer__subtotal { display: flex; justify-content: space-between; align-items: baseline; }
.theme-cart-drawer__subtotal span:first-child { font-weight: 500; }
.theme-cart-drawer__subtotal-value { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--color-accent); }

/* -------------------------------------------------------------------------
   Contact modal
   ---------------------------------------------------------------------- */
#theme-contact-modal-overlay { position: fixed; inset: 0; background-color: rgba(0,0,0,0.5); z-index: 299; opacity: 0; pointer-events: none; transition: opacity 200ms ease; }
body.modal-open #theme-contact-modal-overlay { opacity: 1; pointer-events: auto; }
#theme-contact-modal {
	position: fixed; top: 50%; left: 50%; transform: translate(-50%, -48%) scale(0.96); z-index: 300; width: 90%; max-width: 32rem;
	max-height: 90vh; overflow-y: auto; opacity: 0; pointer-events: none; transition: opacity 200ms ease, transform 200ms ease;
}
body.modal-open #theme-contact-modal { opacity: 1; pointer-events: auto; transform: translate(-50%, -50%) scale(1); }
.theme-modal-panel { background-color: var(--color-cream); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 2rem; position: relative; box-shadow: var(--shadow-elevated); }
.theme-modal-close { position: absolute; top: 1rem; right: 1rem; padding: 0.35rem; border-radius: var(--radius-sm); transition: background-color 200ms ease; }
.theme-modal-close:hover { background-color: var(--color-secondary); }
.theme-modal-title { font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; }
.theme-modal-description { color: var(--color-muted-fg); font-size: 15px; margin-top: 0.5rem; }
.theme-modal-quicklinks { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1rem; font-size: 14px; color: var(--color-muted-fg); }
.theme-modal-quicklinks a { display: inline-flex; align-items: center; gap: 0.4rem; transition: color 200ms ease; }
.theme-modal-quicklinks a:hover { color: var(--color-caramel-deep); }
.theme-modal-form { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.theme-form-row--2col { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .theme-form-row--2col { grid-template-columns: 1fr 1fr; } }
.theme-form-field label { font-size: 14px; font-weight: 500; margin-bottom: 0.4rem; display: block; }
.theme-form-field input, .theme-form-field textarea {
	width: 100%; padding: 0.65rem 0.85rem; background-color: var(--color-secondary); border: 1px solid var(--color-border);
	font-size: 16px; border-radius: var(--radius-md); font-family: var(--font-body); color: var(--color-foreground);
}
.theme-form-field textarea { resize: none; }
.theme-form-field input:focus, .theme-form-field textarea:focus { outline: none; box-shadow: 0 0 0 2px color-mix(in srgb, var(--color-primary) 50%, transparent); }
.theme-modal-form-actions { display: flex; justify-content: flex-end; }
.theme-modal-success { text-align: center; padding: 2rem 0; }
.theme-modal-success-icon { width: 3.5rem; height: 3.5rem; background-color: var(--color-primary); border-radius: 999px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; color: var(--color-dark); }
.theme-modal-success h3 { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 0.5rem; }
.theme-modal-success p { color: var(--color-muted-fg); font-size: 14px; }

/* -------------------------------------------------------------------------
   404
   ---------------------------------------------------------------------- */
.theme-404 { padding: 6rem 0; }
.theme-404__inner { text-align: center; }
.theme-404__code { font-size: 4rem; margin-bottom: 1rem; }
.theme-404__title { font-size: 1.5rem; color: var(--color-muted-fg); margin-bottom: 1rem; }
.theme-404__body { color: var(--color-muted-fg); margin-bottom: 1.5rem; }

/* -------------------------------------------------------------------------
   Thank-you page
   ---------------------------------------------------------------------- */
body.theme-thankyou-page { overflow-x: hidden; background-color: var(--color-secondary); }
body.theme-thankyou-page .site-main { padding-top: 4rem; padding-bottom: 4rem; }
.theme-thankyou { max-width: 42rem; margin: 0 auto; text-align: center; padding: 3rem 0; }
.theme-thankyou__icon { width: 4rem; height: 4rem; margin: 0 auto 1.5rem; border-radius: 999px; background-color: var(--color-primary); color: var(--color-dark); display: flex; align-items: center; justify-content: center; }
.theme-thankyou__title { font-size: 1.875rem; margin-bottom: 0.75rem; }
@media (min-width: 768px) { .theme-thankyou__title { font-size: 2.25rem; } }
.theme-thankyou__body { color: var(--color-muted-fg); margin-bottom: 2rem; }
body.theme-thankyou-page .woocommerce-order,
body.theme-thankyou-page .woocommerce-order-overview,
body.theme-thankyou-page .woocommerce-customer-details,
body.theme-thankyou-page .woocommerce-order-details { text-align: left; margin-top: 2rem; }
body.theme-thankyou-page .woocommerce-order-overview { list-style: none; display: flex; flex-wrap: wrap; gap: 1rem; padding: 0; }
body.theme-thankyou-page .woocommerce-order-overview li { background-color: var(--color-cream); border-radius: var(--radius-md); padding: 0.75rem 1.25rem; }
body.theme-thankyou-page .woocommerce-order-details table { width: 100%; table-layout: fixed; border-collapse: collapse; margin-top: 1rem; }
body.theme-thankyou-page .woocommerce-order-details table th,
body.theme-thankyou-page .woocommerce-order-details table td { padding: 0.6rem; border-bottom: 1px solid var(--color-border); }
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 h2, body.theme-thankyou-page .woocommerce-order-details__title { margin-top: 2rem; padding: 0 0 1rem; }
body.theme-thankyou-page .woocommerce-customer-details { display: flex; flex-direction: column; gap: 1.5rem; }
@media (min-width: 768px) { body.theme-thankyou-page .woocommerce-customer-details { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; } }
body.theme-thankyou-page .woocommerce-customer-details address { min-width: 0; overflow-wrap: break-word; }

/* -------------------------------------------------------------------------
   Checkout — WooCommerce Blocks
   ---------------------------------------------------------------------- */
body.woocommerce-checkout .site-main { padding-top: 2.5rem; padding-bottom: 6rem; background-color: var(--color-cream); }
body.woocommerce-checkout .page-title {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 1.875rem;
	line-height: 1.05;
	letter-spacing: -0.02em;
	color: var(--color-foreground);
	margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
	body.woocommerce-checkout .page-title { font-size: 3rem; }
}
body.woocommerce-checkout .entry-content { max-width: 100%; }

body.woocommerce-checkout .wp-block-woocommerce-checkout,
body.woocommerce-checkout .wc-block-checkout {
	width: 100%;
}

@media (min-width: 768px) {
	body.woocommerce-checkout .entry-content > .woocommerce,
	body.woocommerce-checkout .entry-content > .wp-block-woocommerce-checkout {
		display: block;
		width: 100%;
	}

	body.woocommerce-checkout .wc-block-checkout {
		display: grid !important;
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
		grid-template-rows: auto !important;
		gap: 2.5rem !important;
		align-items: start !important;
		width: 100% !important;
	}

	body.woocommerce-checkout .wc-block-components-sidebar-layout,
	body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout.is-large {
		display: contents !important;
	}

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

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

	body.woocommerce-checkout .wc-block-checkout__main .wc-block-components-main,
	body.woocommerce-checkout .wc-block-checkout__sidebar .wc-block-components-sidebar {
		width: 100% !important;
		max-width: none !important;
		display: block !important;
	}

	body.woocommerce-checkout .wc-block-checkout__main .wc-block-components-form {
		display: block !important;
	}
}
body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-components-select select { width: 100% !important; max-width: none !important; padding: revert; }
body.woocommerce-checkout .wc-block-components-notice-banner { grid-column: 1 / -1; }
body.woocommerce-checkout .wc-block-checkout__sidebar {
	background-color: var(--color-secondary);
	border-radius: var(--radius-md);
	padding: 2rem;
}
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; text-transform: uppercase !important; letter-spacing: 0.1em !important; font-weight: 600 !important;
}

/* -------------------------------------------------------------------------
   Media control JS support class (Customizer controls)
   ---------------------------------------------------------------------- */
.theme-nav-list a[data-anchor-link] { cursor: pointer; }
