/*!
Theme Name: La Bocca Juice
Theme URI: https://laboccajuice.com
Author: Saad
Description: Custom theme for La Bocca Juice — Ottawa's futuristic juice, crêpe, waffle & dessert shop.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: labocca
*/

/* ==========================================================================
   CUSTOM FONTS (@font-face for non-Google fonts)
   Drop milkshake.woff2 and genty.woff2 into the /fonts/ folder to activate.
   ========================================================================== */
@font-face {
	font-family: 'Milkshake';
	src: url('fonts/milkshake.woff2') format('woff2');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Genty';
	src: url('fonts/genty.woff2') format('woff2');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

/* ==========================================================================
   CSS CUSTOM PROPERTIES
   ========================================================================== */
:root {
	/* Brand colors */
	--banana-yellow:   #FFD54F;
	--mango-orange:    #FFB74D;
	--strawberry-pink: #FF6F91;
	--mint-green:      #8DE1C2;
	--choc-brown:      #5D4037;
	--cream-bg:        #FFF8EE;
	--soft-white:      #FFFFFF;
	--light-pink:      #FFD6E0;
	--light-yellow:    #FFF4C4;
	--light-mint:      #DDF7EE;
	--light-orange:    #FFE4C2;
	--soft-brown:      #8D6E63;
	--cta-orange:      #FF8A00;

	/* Typography */
	--font-title:      'Grandstander', cursive;
	--font-body:       'Poppins', sans-serif;
	--font-milkshake:  'Milkshake', cursive;
	--font-genty:      'Genty', cursive;

	/* Layout */
	--header-h:        80px;
	--max-w:           1200px;
	--transition:      0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: var(--font-body);
	background-color: var(--cream-bg);
	color: var(--choc-brown);
	line-height: 1.65;
	overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; }
address { font-style: normal; }

/* ==========================================================================
   TYPOGRAPHY UTILITIES
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-title);
	line-height: 1.15;
}

.section-heading {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 900;
	color: var(--choc-brown);
	text-align: center;
	margin-bottom: 56px;
}

/* ==========================================================================
   LAYOUT HELPERS
   ========================================================================== */
.container {
	width: 100%;
	max-width: var(--max-w);
	margin: 0 auto;
	padding: 0 24px;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 34px;
	border-radius: 50px;
	font-family: var(--font-title);
	font-weight: 700;
	font-size: 1rem;
	letter-spacing: 0.3px;
	cursor: pointer;
	border: 2px solid transparent;
	transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
	white-space: nowrap;
}

.btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.btn-primary {
	background: var(--cta-orange);
	color: #fff;
}
.btn-primary:hover { background: #e67e00; }

.btn-outline {
	background: transparent;
	color: #fff;
	border-color: #fff;
}
.btn-outline:hover {
	background: #fff;
	color: var(--choc-brown);
}

.btn-secondary {
	background: var(--mint-green);
	color: var(--choc-brown);
}
.btn-secondary:hover { background: #6dd4b0; }

.btn-dark {
	background: var(--choc-brown);
	color: #fff;
}
.btn-dark:hover { background: #3e2723; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	height: var(--header-h);
	background: transparent;
	transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
	background: rgba(255, 248, 238, 0.97);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	box-shadow: 0 2px 20px rgba(93, 64, 55, 0.12);
}
.site-header.scrolled .primary-nav a         { color: var(--choc-brown); }
.site-header.scrolled .primary-nav a::after  { background: var(--cta-orange); }
.site-header.scrolled .hamburger span        { background: var(--choc-brown); }

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: var(--header-h);
}

.header-logo img {
	height: 54px;
	width: auto;
	transition: opacity var(--transition);
}
.header-logo:hover img { opacity: 0.85; }

/* Nav */
.primary-nav ul {
	display: flex;
	align-items: center;
	gap: 36px;
}

.primary-nav a {
	font-family: var(--font-title);
	font-weight: 700;
	font-size: 1.08rem;
	color: #fff;
	letter-spacing: 0.3px;
	position: relative;
	transition: color var(--transition);
}

.primary-nav a::after {
	content: '';
	position: absolute;
	bottom: -3px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--banana-yellow);
	transition: width var(--transition);
}
.primary-nav a:hover::after,
.primary-nav .current-menu-item a::after { width: 100%; }

/* Hamburger */
.hamburger {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 26px;
	height: 18px;
	background: none;
	border: none;
	padding: 0;
}

.hamburger span {
	display: block;
	width: 100%;
	height: 2px;
	background: #fff;
	transition: transform 0.3s ease, opacity 0.3s ease;
	border-radius: 2px;
}

.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 768px) {
	.hamburger { display: flex; }

	.primary-nav {
		display: none;
		position: fixed;
		top: var(--header-h);
		left: 0;
		right: 0;
		background: rgba(255, 248, 238, 0.99);
		border-bottom: 2px solid var(--light-orange);
		box-shadow: 0 8px 24px rgba(93, 64, 55, 0.1);
		padding: 24px;
		z-index: 999;
	}
	.primary-nav.open { display: block; }
	.primary-nav ul   { flex-direction: column; gap: 16px; align-items: flex-start; }
	.primary-nav a    { color: var(--choc-brown); }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
	position: relative;
	height: 100vh;
	min-height: 600px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.hero-video-wrap {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.hero-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
}

/* Two-column hero: logo left, text right */
.hero-inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 60px;
	max-width: 1200px;
	padding: 0 60px;
	width: 100%;
}

.hero-col-logo {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
}

.hero-logo-main {
	height: clamp(240px, 42vh, 460px);
	width: auto;
	filter: drop-shadow(0 8px 40px rgba(0, 0, 0, 0.55));
	pointer-events: none;
}

.hero-col-text {
	flex: 1;
	text-align: left;
	max-width: 540px;
}

.hero-headline {
	font-family: var(--font-title);
	font-size: clamp(2.4rem, 5.5vw, 5rem);
	font-weight: 900;
	color: #fff;
	line-height: 1.05;
	text-shadow: 0 3px 24px rgba(0, 0, 0, 0.35);
	margin-bottom: 18px;
}

.hero-tagline {
	font-size: clamp(1rem, 1.8vw, 1.2rem);
	color: rgba(255, 255, 255, 0.92);
	margin-bottom: 40px;
	font-weight: 400;
	line-height: 1.65;
}

.hero-ctas {
	display: flex;
	gap: 14px;
	justify-content: flex-start;
	flex-wrap: wrap;
}

/* Scroll hint arrow */
.hero-scroll-hint {
	position: absolute;
	bottom: 32px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
	animation: bounce 2s infinite;
	color: rgba(255,255,255,0.7);
}
@keyframes bounce {
	0%, 100% { transform: translateX(-50%) translateY(0); }
	50%       { transform: translateX(-50%) translateY(8px); }
}

/* ==========================================================================
   DELIVERY MODAL
   ========================================================================== */
.modal {
	position: fixed;
	inset: 0;
	z-index: 2000;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.modal.active {
	pointer-events: all;
	opacity: 1;
}

.modal-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(4px);
}

.modal-card {
	position: relative;
	z-index: 1;
	background: var(--soft-white);
	border-radius: 24px;
	padding: 48px 40px;
	max-width: 480px;
	width: 90%;
	text-align: center;
	transform: scale(0.9) translateY(20px);
	transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
	box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}

.modal.active .modal-card {
	transform: scale(1) translateY(0);
}

.modal-close {
	position: absolute;
	top: 16px;
	right: 20px;
	background: none;
	border: none;
	font-size: 1.8rem;
	color: var(--soft-brown);
	line-height: 1;
	padding: 4px;
	transition: color var(--transition), transform var(--transition);
}
.modal-close:hover { color: var(--choc-brown); transform: rotate(90deg); }

.modal-card h2 {
	font-family: var(--font-title);
	font-size: 1.8rem;
	color: var(--choc-brown);
	margin-bottom: 8px;
}

.modal-card > p {
	color: var(--soft-brown);
	margin-bottom: 28px;
	font-size: 0.95rem;
}

.delivery-options {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.delivery-link {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 16px 24px;
	border-radius: 14px;
	font-family: var(--font-title);
	font-weight: 700;
	font-size: 1rem;
	transition: transform var(--transition), box-shadow var(--transition);
}
.delivery-link:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }

.delivery-link.ubereats  { background: #000; color: #fff; }
.delivery-link.doordash  { background: #FF3008; color: #fff; }
.delivery-link.phone-link { background: var(--light-mint); color: var(--choc-brown); }

body.modal-open { overflow: hidden; }

/* ==========================================================================
   SECTION TAG  (small pill badge used in sections)
   ========================================================================== */
.section-tag {
	display: inline-block;
	font-family: var(--font-title);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 1.8px;
	text-transform: uppercase;
	padding: 5px 14px;
	border-radius: 20px;
	margin-bottom: 18px;
}

/* ==========================================================================
   CROFFLE SECTION — mirrors fruit section layout exactly
   banana→lotus | fruit-center→croffle-text | product→combined | right→oreo
   Top gradient bridges hero (dark chocolate) → white.
   ========================================================================== */
.croffle-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 110px;
	background: linear-gradient(to bottom, #5D4037 0%, rgba(255, 255, 255, 0) 100%);
	z-index: 5;
	pointer-events: none;
}

.croffle-section {
	min-height: 100vh;
	background:
		linear-gradient(to top, rgba(255, 111, 145, 0.40) 0%, rgba(255, 111, 145, 0.15) 12%, transparent 28%),
		radial-gradient(ellipse 65% 55% at 3% 12%,  rgba(255, 111, 145, 0.12) 0%, transparent 100%),
		radial-gradient(ellipse 65% 55% at 97% 88%, rgba(255, 213, 79,  0.13) 0%, transparent 100%),
		var(--soft-white);
	border-top: 5px solid var(--strawberry-pink);
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
}

/* Dot/sprinkle pattern — faint multi-color scatter */
.croffle-section::after {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		radial-gradient(circle, rgba(255, 111, 145, 0.13) 1.5px, transparent 1.5px),
		radial-gradient(circle, rgba(255, 213, 79,  0.11) 1px,   transparent 1px),
		radial-gradient(circle, rgba(141, 225, 194, 0.09) 2px,   transparent 2px);
	background-size:     28px 28px, 17px 17px, 43px 43px;
	background-position: 0 0,       10px 10px, 20px 5px;
	z-index: 0;
	pointer-events: none;
}

/* Mirrors .fruit-inner exactly */
.croffle-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	padding: 80px 32px;
	gap: 28px;
	position: relative;
	z-index: 1;
}

/* Mirrors .fruit-left-wrap */
.croffle-left-wrap { flex: 0 0 auto; }

/* Mirrors .fruit-right-stack */
.croffle-right-wrap { flex: 0 0 auto; }

/* Mirrors .banana-img */
.croffle-lotus {
	width: clamp(170px, 20vw, 300px);
	height: auto;
	object-fit: contain;
	filter: drop-shadow(0 24px 48px rgba(93, 64, 55, 0.22));
}

/* Mirrors .kiwi-img / .strawberry-img (single item, slightly wider) */
.croffle-oreo {
	width: clamp(150px, 18vw, 270px);
	height: auto;
	object-fit: contain;
	filter: drop-shadow(0 20px 40px rgba(93, 64, 55, 0.2));
}

/* Mirrors .fruit-center */
.croffle-text {
	flex: 1;
	text-align: center;
	padding: 0 12px;
	min-width: 200px;
}

.croffle-heading {
	font-family: var(--font-milkshake);
	font-size: clamp(2.8rem, 5vw, 5rem);
	color: var(--strawberry-pink);
	line-height: 1.1;
	margin-bottom: 18px;
}

.croffle-subtext {
	font-size: 1.05rem;
	color: var(--soft-brown);
	margin-bottom: 32px;
	line-height: 1.75;
	max-width: 380px;
	margin-left: auto;
	margin-right: auto;
}

/* Mirrors .fruit-product-wrap */
.croffle-image-wrap {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Mirrors .fruit-product-img — same treatment, pink theme instead of mint */
.croffle-combined-img {
	width: clamp(220px, 24vw, 340px);
	height: auto;
	object-fit: cover;
	border-radius: 24px;
	box-shadow:
		0 24px 56px rgba(255, 111, 145, 0.3),
		0 8px 24px rgba(93, 64, 55, 0.15);
	border: 3px solid rgba(255, 111, 145, 0.4);
}

/* Tablet: wrap to 2 rows — mirrors fruit tablet behaviour */
@media (max-width: 900px) {
	.croffle-inner {
		flex-wrap: wrap;
		justify-content: center;
		padding: 60px 24px;
		gap: 28px 20px;
	}
	.croffle-text       { order: 1; flex: 0 0 100%; max-width: 520px; }
	.croffle-image-wrap { order: 2; flex: 0 0 auto; }
	.croffle-left-wrap  { order: 3; flex: 0 0 auto; }
	.croffle-right-wrap { order: 3; flex: 0 0 auto; }
	.croffle-combined-img { max-width: min(300px, 60vw); }
}

/* ==========================================================================
   MARQUEE STRIP — between croffle and fruit sections
   Pure CSS infinite scroll. Two DOM sets, animation = translateX(-50%).
   ========================================================================== */
.marquee-strip {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(to bottom, rgba(255, 111, 145, 0.16) 0%, rgba(255, 111, 145, 0.06) 12%, transparent 28%),
		linear-gradient(to top,    rgba(141, 225, 194, 0.16) 0%, rgba(141, 225, 194, 0.06) 12%, transparent 28%),
		linear-gradient(135deg,
			rgba(255, 111, 145, 0.02) 0%,
			rgba(255, 248, 238, 0.5)  40%,
			rgba(255, 248, 238, 0.5)  60%,
			rgba(141, 225, 194, 0.02) 100%
		);
	border-top:    2px solid var(--light-pink);
	border-bottom: 2px solid var(--light-mint);
	padding: 78px 0;
	/* Fade items in/out at the edges */
	-webkit-mask-image: linear-gradient(to right, transparent 0%, #000 7%, #000 93%, transparent 100%);
	mask-image:         linear-gradient(to right, transparent 0%, #000 7%, #000 93%, transparent 100%);
}

/* Mixed pink + green star/sprinkle pattern across the marquee background */
.marquee-strip::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		radial-gradient(circle, rgba(255, 111, 145, 0.06) 1.5px, transparent 1.5px),
		radial-gradient(circle, rgba(100, 190, 160, 0.05) 1px,   transparent 1px),
		radial-gradient(circle, rgba(255, 213, 79,  0.04) 2px,   transparent 2px),
		radial-gradient(circle, rgba(141, 225, 194, 0.04) 1px,   transparent 1px);
	background-size:     28px 28px, 17px 17px, 43px 43px, 33px 33px;
	background-position: 0 0,       10px 10px, 20px 5px,  7px 18px;
	z-index: 0;
	pointer-events: none;
}

.marquee-track {
	display: flex;
	width: max-content;
	will-change: transform;
	animation: marquee-scroll 32s linear infinite;
	position: relative;
	z-index: 1;
}

.marquee-set {
	display: flex;
	align-items: center;
	gap: 44px;
	padding: 0 26px;
}

.marquee-img {
	height: clamp(82px, 10vw, 115px);
	width: auto;
	object-fit: contain;
	flex-shrink: 0;
	filter: drop-shadow(0 4px 10px rgba(93, 64, 55, 0.14));
}

.marquee-word {
	font-family: var(--font-genty);
	font-size: clamp(1.6rem, 2.8vw, 2.4rem);
	font-weight: normal;
	white-space: nowrap;
	flex-shrink: 0;
	line-height: 1;
}

@keyframes marquee-scroll {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}

/* Pause for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
	.marquee-track { animation-play-state: paused; }
}

/* ==========================================================================
   FRUIT SECTION
   Cream background, mint accent border, 4-col flex:
   banana | text | product-shot | kiwi+strawberry
   ========================================================================== */
.fruit-section {
	min-height: 100vh;
	background:
		linear-gradient(to bottom, rgba(141, 225, 194, 0.40) 0%, rgba(141, 225, 194, 0.15) 12%, transparent 28%),
		linear-gradient(to top,    rgba(141, 225, 194, 0.40) 0%, rgba(141, 225, 194, 0.15) 12%, transparent 28%),
		radial-gradient(ellipse 65% 55% at 3% 12%,  rgba(141, 225, 194, 0.12) 0%, transparent 100%),
		radial-gradient(ellipse 65% 55% at 97% 88%, rgba(141, 225, 194, 0.13) 0%, transparent 100%),
		var(--soft-white);
	border-top: 5px solid var(--mint-green);
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
}

/* Mint green dot pattern — same pseudo-element (::after) and same structure as .croffle-section::after.
   Green opacity is ~2.5× the pink values to compensate for lower perceptual contrast on white. */
.fruit-section::after {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		radial-gradient(circle, rgba(100, 190, 160, 0.35) 1.5px, transparent 1.5px),
		radial-gradient(circle, rgba(141, 225, 194, 0.28) 1px,   transparent 1px),
		radial-gradient(circle, rgba(80,  175, 145, 0.25) 2px,   transparent 2px);
	background-size:     28px 28px, 17px 17px, 43px 43px;
	background-position: 0 0,       10px 10px, 20px 5px;
	z-index: 0;
	pointer-events: none;
}

.fruit-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	padding: 80px 32px;
	gap: 28px;
	position: relative;
	z-index: 1;
}

.fruit-left-wrap {
	flex: 0 0 auto;
	position: relative;
}

/* Soft banana-yellow glow behind the banana */
.fruit-left-wrap::before {
	content: '';
	position: absolute;
	inset: -35% -45%;
	background: radial-gradient(ellipse at center, rgba(255, 213, 79, 0.22) 0%, transparent 65%);
	z-index: -1;
	pointer-events: none;
}

/* Text column */
.fruit-center {
	flex: 1;
	text-align: center;
	padding: 0 12px;
	min-width: 200px;
}

.fruit-heading {
	font-family: var(--font-genty);
	font-size: clamp(2.2rem, 4vw, 3.8rem);
	color: var(--choc-brown);
	line-height: 1.2;
	margin-bottom: 18px;
}

.fruit-subtext {
	font-size: 1.05rem;
	color: var(--soft-brown);
	margin-bottom: 32px;
	line-height: 1.75;
}

.banana-img {
	width: clamp(170px, 20vw, 300px);
	height: auto;
	object-fit: contain;
	filter: drop-shadow(0 24px 32px rgba(93, 64, 55, 0.18)) drop-shadow(0 8px 12px rgba(200, 150, 20, 0.15));
}

/* Feature product shot — full opacity, prominent */
.fruit-product-wrap {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

/* Soft mint glow behind the product card */
.fruit-product-wrap::before {
	content: '';
	position: absolute;
	inset: -30% -35%;
	background: radial-gradient(ellipse at center, rgba(141, 225, 194, 0.28) 0%, transparent 65%);
	z-index: 0;
	pointer-events: none;
}

.fruit-product-img {
	width: clamp(220px, 24vw, 340px);
	height: auto;
	object-fit: cover;
	border-radius: 24px;
	box-shadow:
		0 24px 56px rgba(141, 225, 194, 0.4),
		0 8px 24px rgba(93, 64, 55, 0.15);
	border: 3px solid rgba(141, 225, 194, 0.55);
	position: relative;
	z-index: 1;
}

.fruit-right-stack {
	flex: 0 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	position: relative;
}

/* Dual glow: kiwi-mint top, strawberry-pink bottom */
.fruit-right-stack::before {
	content: '';
	position: absolute;
	inset: -20% -45%;
	background:
		radial-gradient(ellipse at 50% 28%, rgba(141, 225, 194, 0.2)  0%, transparent 55%),
		radial-gradient(ellipse at 50% 72%, rgba(255, 111, 145, 0.18) 0%, transparent 55%);
	z-index: -1;
	pointer-events: none;
}

.kiwi-img {
	width: clamp(130px, 15vw, 230px);
	height: auto;
	object-fit: contain;
	filter: drop-shadow(0 20px 28px rgba(93, 64, 55, 0.16)) drop-shadow(0 6px 10px rgba(50, 130, 60, 0.13));
}

.strawberry-img {
	width: clamp(130px, 15vw, 230px);
	height: auto;
	object-fit: contain;
	filter: drop-shadow(0 16px 24px rgba(93, 64, 55, 0.16)) drop-shadow(0 6px 10px rgba(200, 50, 70, 0.13));
}

/* Tablet: wrap to 2 rows — text + product on top, fruits decorative below */
@media (max-width: 900px) {
	.fruit-inner {
		flex-wrap: wrap;
		justify-content: center;
		padding: 60px 24px;
		gap: 28px 20px;
	}
	.fruit-center      { order: 1; flex: 0 0 100%; max-width: 520px; }
	.fruit-product-wrap { order: 2; flex: 0 0 auto; }
	.fruit-left-wrap   { order: 3; flex: 0 0 auto; }
	.fruit-right-stack { order: 3; flex: 0 0 auto; flex-direction: row; justify-content: center; gap: 16px; }
	.fruit-product-img { max-width: min(300px, 60vw); }
}

/* ==========================================================================
   LOCATION SECTION — Google Maps style in fruit palette
   Pure white base, bold saturated color on each card/icon (map pin language)
   ========================================================================== */
.location-section {
	padding: 100px 0;
	background: #ffffff;
	border-top: 5px solid #E63946;
	position: relative;
	overflow: hidden;
}

/* No pattern — clean white like a map canvas */
.location-section::before { content: none; }

.location-section .container { position: relative; z-index: 1; }

.location-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 32px;
	align-items: start;
}

/* Store photo — pink frame (Instagram/social pin) */
.location-photo img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	border-radius: 16px;
	border: 3px solid #FF6F91;
	box-shadow: 0 8px 28px rgba(255, 111, 145, 0.22);
}

/* Map iframe — green navigation frame */
.location-map iframe {
	width: 100%;
	height: 400px;
	border: 3px solid #3FB97E;
	border-radius: 16px;
	box-shadow: 0 8px 28px rgba(63, 185, 126, 0.22);
	display: block;
}

.map-btn-wrap {
	margin-top: 14px;
	text-align: center;
}

/* "Open in Google Maps" */
.map-btn-wrap .btn-secondary {
	background: #3FB97E;
	color: #fff;
	border-color: #3FB97E;
	font-size: 0.88rem;
	padding: 11px 22px;
}
.map-btn-wrap .btn-secondary:hover {
	background: #34a06c;
	border-color: #34a06c;
}

/* Info card — red top bar like a Google Maps destination pin */
.location-info {
	background: #fff;
	border-radius: 16px;
	padding: 0;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.09), 0 1px 4px rgba(0, 0, 0, 0.05);
	border: 1px solid rgba(0, 0, 0, 0.07);
	overflow: hidden;
}

/* Colored pin-stripe header bar */
.location-info::before {
	content: '';
	display: block;
	height: 6px;
	background: linear-gradient(to right, #E63946 0%, #FF6F91 35%, #FFD54F 65%, #3FB97E 100%);
}

.location-info-body {
	padding: 28px 32px 32px;
}

.location-info h3 {
	font-size: 1.6rem;
	color: #111;
	margin-bottom: 20px;
}

.location-info address p {
	margin-bottom: 8px;
	font-size: 0.95rem;
	color: #333;
}

.location-info address a { color: #E63946; font-weight: 600; }
.location-info address a:hover { text-decoration: underline; }

/* Hours divider — yellow dashed like a map route line */
.hours-block {
	margin-top: 24px;
	padding-top: 24px;
	border-top: 2px dashed rgba(255, 213, 79, 0.70);
}

.hours-block h4 {
	font-size: 1rem;
	font-family: var(--font-title);
	margin-bottom: 14px;
	color: #C8960A;
}

.hours-block p {
	font-size: 0.9rem;
	color: #444;
	margin-bottom: 5px;
}

/* Summer → green label, Winter → pink label */
.hours-block p:not(.hours-season-divider) strong { color: #3FB97E; }
.hours-block .hours-season-divider {
	margin-top: 18px;
}
.hours-block .hours-season-divider strong { color: #FF6F91; }

.location-cta-wrap {
	margin-top: 28px;
}

/* "Get Directions" — red map destination CTA */
.btn-get-directions {
	display: block;
	width: 100%;
	text-align: center;
	font-size: 1.05rem;
	padding: 16px 28px;
	background: #E63946;
	color: #fff;
	border-color: #E63946;
	letter-spacing: 0.02em;
}
.btn-get-directions:hover {
	background: #C1121F;
	border-color: #C1121F;
	transform: translateY(-2px);
}

.map-note {
	font-size: 0.8rem;
	color: var(--soft-brown);
	margin-top: 12px;
	text-align: center;
}
.map-note a { color: var(--cta-orange); font-weight: 600; }

@media (max-width: 900px) {
	.location-grid { grid-template-columns: 1fr; }
	.location-photo img,
	.location-map iframe { height: 280px; }
}

/* ==========================================================================
   SOCIAL SECTION — yellow vibe
   ========================================================================== */
.social-section {
	padding: 100px 0;
	background: #FFFBEA;
	border-top: 4px solid #FFD54F;
}

.social-section .section-heading { color: #1A1000; }

.social-cards {
	display: flex;
	gap: 24px;
	justify-content: center;
	flex-wrap: wrap;
}

.social-card {
	display: flex;
	align-items: center;
	gap: 16px;
	background: #fff;
	border-radius: 20px;
	padding: 24px 36px;
	min-width: 220px;
	font-family: var(--font-title);
	font-weight: 700;
	font-size: 1.1rem;
	color: #1A1000;
	border: 2px solid rgba(255, 213, 79, 0.65);
	transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
	box-shadow: 0 6px 24px rgba(200, 150, 0, 0.10);
}

.social-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 16px 40px rgba(200, 150, 0, 0.22);
	border-color: #C8960A;
}

.social-card svg {
	width: 32px;
	height: 32px;
	flex-shrink: 0;
}

.social-card.instagram svg { color: #E1306C; }
.social-card.facebook  svg { color: #1877F2; }
.social-card.threads   svg { color: #000; }

/* ==========================================================================
   FAQ SECTION — yellow vibe
   ========================================================================== */
.faq-section {
	padding: 100px 0;
	background: #FFFBEA;
	border-top: 4px solid #FFD54F;
}

.faq-section .section-heading { color: #1A1000; }

.faq-list {
	max-width: 780px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.faq-item {
	border-radius: 16px;
	overflow: hidden;
	background: #fff;
	border: 1.5px solid rgba(255, 213, 79, 0.55);
	box-shadow: 0 4px 16px rgba(200, 150, 0, 0.08);
}

.faq-question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 28px;
	background: none;
	border: none;
	font-family: var(--font-title);
	font-weight: 700;
	font-size: 1rem;
	color: #1A1000;
	text-align: left;
	gap: 16px;
	transition: color var(--transition);
}
.faq-question:hover { color: #C8960A; }

.faq-question .faq-icon {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: #FFD54F;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 1.1rem;
	font-weight: 700;
	color: #1A1000;
	transition: transform 0.3s ease, background 0.3s ease;
}

.faq-item.open .faq-question .faq-icon {
	transform: rotate(45deg);
	background: #C8960A;
	color: #fff;
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
	max-height: 400px;
	padding: 0 28px 20px;
}

.faq-answer p {
	font-size: 0.95rem;
	color: #333;
	line-height: 1.75;
}

/* ==========================================================================
   FOOTER — white background, red accents
   ========================================================================== */
.site-footer {
	background: #fff;
	border-top: 4px solid #E63946;
	color: #333;
}

.footer-inner {
	display: grid;
	grid-template-columns: 1.2fr 1fr 1.4fr 1fr;
	gap: 40px;
	padding: 72px 24px 48px;
	max-width: var(--max-w);
	margin: 0 auto;
}

.footer-logo img {
	height: 56px;
	width: auto;
	margin-bottom: 14px;
	filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.10));
}

.footer-logo p {
	font-size: 0.88rem;
	color: #555;
	line-height: 1.6;
	max-width: 200px;
}

.footer-col h3 {
	font-family: var(--font-title);
	font-size: 1rem;
	font-weight: 700;
	color: #E63946;
	margin-bottom: 20px;
	letter-spacing: 0.3px;
}

.footer-col ul li { margin-bottom: 10px; }
.footer-col a {
	font-size: 0.9rem;
	color: #444;
	transition: color var(--transition);
}
.footer-col a:hover { color: #E63946; }

.footer-col address p {
	font-size: 0.88rem;
	color: #555;
	margin-bottom: 8px;
	line-height: 1.6;
}
.footer-col address a { color: #E63946; font-weight: 600; }
.footer-col address a:hover { text-decoration: underline; }

.footer-socials {
	display: flex;
	gap: 14px;
	margin-top: 8px;
}

.footer-social-icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(230, 57, 70, 0.10);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background var(--transition), transform var(--transition), color var(--transition);
	color: #E63946;
}
.footer-social-icon:hover {
	background: #E63946;
	color: #fff;
	transform: translateY(-3px);
}
.footer-social-icon svg { width: 18px; height: 18px; }

.footer-bottom {
	border-top: 2px solid #9B0000;
	padding: 20px 24px;
	text-align: center;
	background: #C1121F;
}
.footer-bottom p {
	font-size: 0.82rem;
	color: #fff;
}

@media (max-width: 900px) {
	.footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
	.footer-inner { grid-template-columns: 1fr; gap: 32px; padding-top: 48px; }
}

/* ==========================================================================
   SCROLL-REVEAL UTILITY
   ========================================================================== */
.reveal-up {
	opacity: 0;
	transform: translateY(50px);
}

/* ==========================================================================
   RESPONSIVE — TABLET (≤900px)
   ========================================================================== */
@media (max-width: 900px) {
	.hero-inner { gap: 36px; padding: 0 36px; }
	.hero-logo-main { height: clamp(180px, 32vh, 320px); }
}

/* ==========================================================================
   RESPONSIVE — MOBILE (≤768px)
   ========================================================================== */
@media (max-width: 768px) {

	/* ── Hero: stack logo top, text bottom ── */
	.hero-inner {
		flex-direction: column;
		gap: 18px;
		padding: 0 24px;
		padding-top: 60px;
		text-align: center;
	}
	.hero-col-text { text-align: center; max-width: 100%; }
	.hero-logo-main { height: clamp(100px, 28vw, 160px); }
	.hero-ctas { justify-content: center; flex-direction: row; flex-wrap: wrap; }
	.hero-headline { font-size: clamp(2rem, 8vw, 3.2rem); }
	.hero-tagline { font-size: 0.95rem; margin-bottom: 28px; }

	/* ── Croffle: text → product shot → decorative pieces row (mirrors fruit) ── */
	.croffle-inner {
		flex-wrap: wrap;
		justify-content: center;
		padding: 80px 24px 60px;
		gap: 24px 12px;
	}
	.croffle-text       { order: 1; flex: 0 0 100%; padding: 0; }
	.croffle-image-wrap { order: 2; flex: 0 0 auto; }
	.croffle-left-wrap  { order: 3; flex: 0 0 auto; }
	.croffle-right-wrap { order: 3; flex: 0 0 auto; }
	.croffle-combined-img { max-width: min(260px, 76vw); }
	.croffle-lotus  { width: clamp(110px, 35vw, 170px); }
	.croffle-oreo   { width: clamp(90px, 27vw, 130px); }
	.croffle-heading { font-size: clamp(1.8rem, 7vw, 2.8rem); }
	.croffle-subtext { font-size: 0.88rem; }

	/* ── Fruit: text → product shot → decorative fruits row ── */
	.fruit-inner {
		flex-wrap: wrap;
		justify-content: center;
		padding: 80px 24px 60px;
		gap: 24px 12px;
	}
	.fruit-center       { order: 1; flex: 0 0 100%; padding: 0; }
	.fruit-product-wrap { order: 2; flex: 0 0 auto; }
	.fruit-left-wrap    { order: 3; flex: 0 0 auto; }
	.fruit-right-stack  { order: 3; flex: 0 0 auto; flex-direction: row; gap: 10px; }
	.fruit-product-img  { max-width: min(260px, 76vw); }
	.banana-img { width: clamp(110px, 35vw, 170px); }
	.kiwi-img, .strawberry-img { width: clamp(90px, 27vw, 130px); }
	.fruit-heading { font-size: clamp(2rem, 7vw, 2.8rem); }

	/* ── Social ── */
	.social-card { min-width: 100%; justify-content: center; }

	/* ── Location ── */
	.location-grid { grid-template-columns: 1fr; }
	.location-photo img,
	.location-map iframe { height: 240px; }

	/* ── FAQ ── */
	.faq-list { padding: 0 4px; }

	/* ── Section heading ── */
	.section-heading { font-size: clamp(1.6rem, 6vw, 2.4rem); }
}

/* ==========================================================================
   LINKS PAGE
   Standalone linktree-style page (page-links.php)
   ========================================================================== */
.links-page-body {
	background: var(--cream-bg);
	min-height: 100vh;
	font-family: var(--font-body);
	margin: 0;
}

.links-page {
	max-width: 500px;
	margin: 0 auto;
	padding: 60px 24px 100px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
}

.links-header {
	text-align: center;
}

.links-logo {
	width: 110px;
	height: auto;
	margin: 0 auto 16px;
	display: block;
}

.links-name {
	font-family: var(--font-title);
	font-size: 1.7rem;
	font-weight: 900;
	color: var(--choc-brown);
	margin-bottom: 6px;
}

.links-tagline {
	font-size: 0.92rem;
	color: var(--soft-brown);
	margin-bottom: 4px;
}

.links-address {
	font-size: 0.82rem;
	color: var(--soft-brown);
	margin-top: 6px;
}

.links-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: 100%;
}

.link-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	width: 100%;
	padding: 18px 28px;
	border-radius: 16px;
	font-family: var(--font-title);
	font-weight: 700;
	font-size: 1.05rem;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
	letter-spacing: 0.2px;
}

.link-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
}

.link-btn:active { transform: translateY(0); opacity: 0.9; }

.link-btn svg { width: 22px; height: 22px; flex-shrink: 0; }

/* Platform-specific colors */
.link-btn.ubereats   { background: #000;     color: #fff; }
.link-btn.doordash   { background: #FF3008;  color: #fff; }
.link-btn.call       { background: var(--mint-green); color: var(--choc-brown); }
.link-btn.menu-link  { background: var(--cta-orange); color: #fff; }
.link-btn.maps       { background: #4285F4;  color: #fff; }
.link-btn.instagram  { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; }
.link-btn.facebook   { background: #1877F2;  color: #fff; }
.link-btn.threads    { background: #1a1a1a;  color: #fff; }

.links-footer-note {
	font-size: 0.78rem;
	color: var(--soft-brown);
	text-align: center;
	opacity: 0.7;
}

/* ==========================================================================
   MENU PAGE (scoped under .menu-page — does not affect homepage)
   ========================================================================== */
.menu-page {
	--menu-bg: #ffffff;
	--menu-text: #111111;
	--menu-muted: #666666;
	--menu-green: #1B5E3B;
	--menu-pink: #FF6F91;
	--menu-tile-bg: #f5f5f5;
	--menu-border: #e8e8e8;
	--menu-radius: 12px;
	--menu-radius-sm: 8px;
	--menu-radius-lg: 16px;

	padding-top: var(--header-h);
	min-height: 100vh;
	background: var(--menu-bg);
	color: var(--menu-text);
}

.menu-page .site-header {
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	box-shadow: 0 1px 0 var(--menu-border);
}
.menu-page .primary-nav a { color: var(--menu-text); }
.menu-page .site-header.scrolled .primary-nav a::after { background: var(--menu-green); }

.menu-page-header {
	padding: 40px 0 28px;
	text-align: center;
	border-bottom: 3px solid var(--menu-green);
	background: var(--menu-bg);
}

.menu-page-title {
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 900;
	color: var(--menu-text);
	margin-bottom: 8px;
}

.menu-page-subtitle {
	color: var(--menu-muted);
	font-size: 1rem;
	max-width: 520px;
	margin: 0 auto;
}

.menu-categories-view {
	padding: 36px 0 120px;
	background: var(--menu-bg);
}

.menu-category-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.menu-category-tile {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: flex-start;
	width: 100%;
	border: 2px solid var(--menu-green);
	border-radius: var(--menu-radius);
	background: var(--menu-green);
	font-family: var(--font-body);
	font-size: clamp(0.9rem, 2vw, 1.05rem);
	font-weight: 600;
	color: #fff;
	cursor: pointer;
	transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
	box-shadow: none;
	padding: 0;
	overflow: hidden;
	text-align: center;
}

.menu-category-tile:hover {
	border-color: var(--menu-pink);
	background: #14452d;
	box-shadow: 0 4px 16px rgba(27, 94, 59, 0.2);
	transform: none;
}

.menu-category-tile-media {
	width: 100%;
	height: clamp(120px, 22vw, 168px);
	overflow: hidden;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 8px 10px;
}

.menu-category-tile-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	display: block;
}

.menu-category-tile-label {
	line-height: 1.25;
	padding: 12px 10px;
	color: #fff;
}

.menu-items-view {
	padding: 0 0 120px;
	background: var(--menu-bg);
}

.menu-items-view-inner {
	padding-top: 20px;
}

/* Sticky horizontal category switcher */
.menu-category-strip-outer {
	position: sticky;
	top: var(--header-h);
	z-index: 100;
	background: var(--menu-bg);
	border-bottom: 1px solid var(--menu-border);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.menu-category-strip-wrap {
	max-width: var(--max-w);
	margin: 0 auto;
	padding: 0 24px;
}

.menu-category-strip {
	display: flex;
	gap: 10px;
	padding: 14px 0;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x proximity;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.menu-category-strip.is-looped {
	scroll-snap-type: none;
}

@media (min-width: 769px) {
	.menu-category-strip {
		justify-content: center;
		overflow-x: auto;
		flex-wrap: nowrap;
		scroll-snap-type: none;
	}

	.menu-category-strip-wrap {
		mask-image: none;
		-webkit-mask-image: none;
	}
}

.menu-category-strip::-webkit-scrollbar {
	display: none;
}

.menu-cat-chip {
	flex: 0 0 auto;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0;
	width: 112px;
	min-width: 0;
	max-width: none;
	padding: 0;
	border: 2px solid var(--menu-green);
	border-radius: var(--menu-radius);
	background: var(--menu-green);
	cursor: pointer;
	overflow: hidden;
	scroll-snap-align: center;
	transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.menu-cat-chip:hover {
	background: #14452d;
	border-color: #14452d;
}

.menu-cat-chip.active {
	border-color: var(--menu-pink);
	background: #14452d;
	box-shadow: 0 4px 14px rgba(27, 94, 59, 0.35);
}

.menu-cat-chip-media {
	flex-shrink: 0;
	width: 100%;
	height: 68px;
	border-radius: 0;
	overflow: hidden;
	background: #fff;
	border: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 6px 8px;
}

.menu-cat-chip-img,
.menu-category-tile-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	display: block;
}

.menu-cat-chip-img {
	padding: 0;
}

/* Sweet + Savoury crepe photos — tighter crop (single hero shot) */
.menu-category-tile[data-tile-id="sweet-crepe"] .menu-category-tile-media,
.menu-category-tile[data-tile-id="savoury-crepe"] .menu-category-tile-media,
.menu-cat-chip[data-tile-id="sweet-crepe"] .menu-cat-chip-media,
.menu-cat-chip[data-tile-id="savoury-crepe"] .menu-cat-chip-media {
	padding: 0;
}

.menu-category-tile[data-tile-id="sweet-crepe"] .menu-category-tile-img,
.menu-category-tile[data-tile-id="savoury-crepe"] .menu-category-tile-img,
.menu-cat-chip[data-tile-id="sweet-crepe"] .menu-cat-chip-img,
.menu-cat-chip[data-tile-id="savoury-crepe"] .menu-cat-chip-img {
	object-fit: cover;
}

.menu-cat-chip-img--empty {
	display: block;
	width: 100%;
	height: 100%;
	background: #f5f5f5;
}

.menu-cat-chip-label {
	font-family: var(--font-body);
	font-size: 0.72rem;
	font-weight: 600;
	color: #fff;
	text-align: center;
	line-height: 1.25;
	padding: 8px 6px;
	width: 100%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	display: block;
}

.menu-cat-chip.active .menu-cat-chip-label {
	color: #fff;
	font-weight: 700;
}

.menu-back-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: none;
	border: none;
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 0.95rem;
	color: var(--menu-text);
	margin-bottom: 20px;
	padding: 8px 0;
	transition: color var(--transition);
}
.menu-back-btn:hover { color: var(--menu-green); }

.menu-category-title {
	font-size: clamp(1.5rem, 4vw, 2rem);
	font-weight: 700;
	margin-bottom: 24px;
	color: var(--menu-text);
	font-family: var(--font-body);
}

.menu-subheading {
	font-family: var(--font-body);
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--menu-muted);
	text-transform: uppercase;
	letter-spacing: 1px;
	margin: 24px 0 12px;
	padding-bottom: 8px;
	border-bottom: 1px solid var(--menu-border);
}
.menu-subheading:first-child { margin-top: 0; }

.menu-items-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.menu-item-card {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	gap: 16px;
	background: var(--menu-bg);
	border-radius: var(--menu-radius);
	padding: 16px;
	cursor: pointer;
	border: 1px solid var(--menu-border);
	transition: border-color var(--transition);
}

.menu-item-card:hover {
	border-color: var(--menu-green);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
	transform: none;
}

.menu-item-card-text {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.menu-item-name {
	font-family: var(--font-body);
	font-size: 1rem;
	font-weight: 700;
	color: var(--menu-text);
	margin-bottom: 4px;
}

.menu-item-price {
	font-weight: 600;
	color: var(--menu-green);
	font-size: 0.92rem;
	margin-bottom: 6px;
}

.menu-item-desc {
	font-size: 0.85rem;
	color: var(--menu-muted);
	line-height: 1.45;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.menu-item-card-media {
	position: relative;
	flex-shrink: 0;
	width: 96px;
	height: 96px;
	background: var(--menu-tile-bg);
	border: 1px solid var(--menu-border);
}

.menu-item-card-img,
.menu-img-placeholder {
	width: 96px;
	height: 96px;
	border-radius: var(--menu-radius);
	object-fit: contain;
	padding: 6px;
}

.menu-img-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--menu-tile-bg);
	border: 1px solid var(--menu-border);
}

.menu-placeholder-logo {
	width: 40px;
	height: auto;
	opacity: 0.25;
	object-fit: contain;
}

.menu-quick-add {
	position: absolute;
	right: -8px;
	bottom: -8px;
	width: 32px;
	height: 32px;
	border-radius: var(--menu-radius-sm);
	border: none;
	background: var(--menu-text);
	color: #fff;
	font-size: 1.25rem;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
	transition: background var(--transition);
}

.menu-quick-add:hover {
	background: var(--menu-green);
	transform: none;
}

.menu-quick-add.bump {
	animation: menuBump 0.3s ease;
}

@keyframes menuBump {
	0%, 100% { transform: scale(1); }
	50%      { transform: scale(1.15); }
}

/* Cart FAB */
.menu-cart-fab {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 900;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 14px 20px;
	border: none;
	border-radius: 999px;
	background: var(--menu-text);
	color: #fff;
	font-family: var(--font-body);
	font-weight: 600;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
	transition: background var(--transition);
}

.menu-cart-fab:hover { background: var(--menu-green); transform: none; }

.menu-cart-fab-count {
	background: var(--menu-green);
	min-width: 24px;
	height: 24px;
	border-radius: 999px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.8rem;
}

.menu-cart-fab:not(.has-items) .menu-cart-fab-count {
	opacity: 0.5;
}

/* Modals */
.menu-modal {
	align-items: center;
	justify-content: center;
}

.menu-cart-drawer {
	justify-content: flex-end;
}

.menu-modal,
.menu-cart-drawer {
	position: fixed;
	inset: 0;
	z-index: 2100;
	display: flex;
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.menu-modal.active,
.menu-cart-drawer.active {
	pointer-events: all;
	opacity: 1;
}

.menu-modal[hidden],
.menu-cart-drawer[hidden] {
	display: none;
}

.menu-modal-overlay,
.menu-cart-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(4px);
}

.menu-modal-card {
	position: relative;
	z-index: 1;
	background: var(--menu-bg);
	border-radius: var(--menu-radius-lg);
	max-width: 400px;
	width: 92%;
	margin: auto;
	max-height: 90vh;
	overflow-y: auto;
	padding: 28px 24px 32px;
	transform: translateY(12px);
	transition: transform 0.3s ease;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
	border: 1px solid var(--menu-border);
}

.menu-modal.active .menu-modal-card {
	transform: translateY(0);
}

.menu-page .menu-modal-close {
	color: var(--menu-muted);
}
.menu-page .menu-modal-close:hover {
	color: var(--menu-text);
}

.menu-item-modal-image-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	background: var(--menu-tile-bg);
	border: 1px solid var(--menu-border);
	border-radius: var(--menu-radius);
	padding: 20px;
	min-height: 140px;
}

.menu-item-modal-img {
	width: auto;
	max-width: 160px;
	max-height: 140px;
	height: auto;
	object-fit: contain;
	border-radius: var(--menu-radius);
}

.menu-item-modal-name {
	font-family: var(--font-body);
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--menu-text);
	margin-bottom: 6px;
}

.menu-item-modal-price {
	font-weight: 600;
	color: var(--menu-green);
	margin-bottom: 12px;
	font-size: 1rem;
}

.menu-item-modal-desc {
	font-size: 0.9rem;
	color: var(--menu-muted);
	line-height: 1.65;
	margin-bottom: 20px;
}

.menu-qty-stepper {
	display: inline-flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 20px;
}

.menu-qty-btn {
	width: 36px;
	height: 36px;
	border-radius: var(--menu-radius-sm);
	border: 1px solid var(--menu-text);
	background: transparent;
	font-size: 1.15rem;
	color: var(--menu-text);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background var(--transition), color var(--transition);
}

.menu-qty-btn:hover {
	background: var(--menu-text);
	color: #fff;
}

.menu-qty-value {
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 1rem;
	min-width: 24px;
	text-align: center;
	color: var(--menu-text);
}

.menu-item-add-btn {
	width: 100%;
	background: var(--menu-text) !important;
	color: #fff !important;
	border-radius: var(--menu-radius) !important;
	border: none !important;
	font-family: var(--font-body) !important;
	font-weight: 600 !important;
}
.menu-item-add-btn:hover {
	background: #333 !important;
	transform: none;
	box-shadow: none;
}

.menu-cart-checkout-btn {
	width: 100%;
	background: var(--menu-green) !important;
	color: #fff !important;
	border-radius: var(--menu-radius) !important;
	border: none !important;
	font-family: var(--font-body) !important;
	font-weight: 600 !important;
}
.menu-cart-checkout-btn:hover {
	background: #14452d !important;
	transform: none;
	box-shadow: none;
}

/* Cart drawer */
.menu-cart-drawer.active {
	justify-content: flex-end;
}

.menu-cart-panel {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 420px;
	height: 100%;
	background: var(--menu-bg);
	display: flex;
	flex-direction: column;
	transform: translateX(100%);
	transition: transform 0.35s ease;
	box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
	border-left: 1px solid var(--menu-border);
}

.menu-cart-drawer.active .menu-cart-panel {
	transform: translateX(0);
}

.menu-cart-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 24px 24px 16px;
	border-bottom: 1px solid var(--menu-border);
}

.menu-cart-header h2 {
	font-family: var(--font-body);
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--menu-text);
}

.menu-cart-body {
	flex: 1;
	overflow-y: auto;
	padding: 16px 24px;
}

.menu-cart-empty {
	color: var(--menu-muted);
	text-align: center;
	padding: 40px 16px;
	font-size: 0.95rem;
}

.menu-cart-line {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 14px 0;
	border-bottom: 1px solid var(--menu-border);
}

.menu-cart-line-thumb {
	flex-shrink: 0;
	width: 64px;
	height: 64px;
	border-radius: var(--menu-radius);
	overflow: hidden;
	background: var(--menu-tile-bg);
	border: 1px solid var(--menu-border);
	display: flex;
	align-items: center;
	justify-content: center;
}

.menu-cart-thumb-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 4px;
}

.menu-cart-line-info {
	flex: 1;
	min-width: 0;
}

.menu-cart-line-name {
	font-family: var(--font-body);
	font-weight: 700;
	font-size: 0.92rem;
	color: var(--menu-text);
	margin-bottom: 2px;
}

.menu-cart-line-price {
	font-size: 0.85rem;
	color: var(--menu-green);
	font-weight: 600;
	margin-bottom: 8px;
}

.menu-cart-qty {
	margin-bottom: 0;
	gap: 10px;
}

.menu-cart-qty .menu-qty-btn {
	width: 30px;
	height: 30px;
	font-size: 1rem;
}

.menu-cart-remove {
	background: none;
	border: none;
	color: var(--menu-muted);
	padding: 8px;
	transition: color var(--transition);
	flex-shrink: 0;
}
.menu-cart-remove:hover { color: var(--menu-pink); }

.menu-cart-footer {
	padding: 20px 24px 28px;
	border-top: 1px solid var(--menu-border);
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.menu-cart-subtotal {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 1rem;
	color: var(--menu-text);
}

.menu-cart-pickup-note {
	font-size: 0.82rem;
	color: var(--menu-muted);
	text-align: center;
}

.menu-cart-more-btn {
	background: transparent;
	color: var(--menu-text);
	border: 1px solid var(--menu-text);
	border-radius: var(--menu-radius);
	font-family: var(--font-body);
	font-weight: 600;
}
.menu-cart-more-btn:hover {
	background: var(--menu-text);
	color: #fff;
	transform: none;
	box-shadow: none;
}

.menu-cart-checkout-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.menu-cart-error {
	color: var(--menu-pink);
	font-size: 0.85rem;
	text-align: center;
}

/* Order confirmed (menu template family) */
.order-confirmed-page {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 60px 24px 80px;
	background: var(--menu-bg, #fff);
}

.order-confirmed-inner {
	text-align: center;
	max-width: 520px;
	background: var(--menu-bg, #fff);
	border-radius: var(--menu-radius);
	padding: 48px 32px;
	box-shadow: none;
	border: 1px solid var(--menu-border, #e8e8e8);
	border-top: 3px solid var(--menu-green, #1B5E3B);
}

.order-confirmed-icon {
	width: 72px;
	height: 72px;
	border-radius: var(--menu-radius);
	background: var(--menu-tile-bg, #f5f5f5);
	color: var(--menu-green, #1B5E3B);
	font-size: 2rem;
	font-weight: 900;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	border: 1px solid var(--menu-border, #e8e8e8);
}

.order-confirmed-title {
	font-size: clamp(1.75rem, 4vw, 2.25rem);
	font-weight: 700;
	margin-bottom: 12px;
	color: var(--menu-text, #111);
	font-family: var(--font-body);
}

.order-confirmed-text {
	color: var(--menu-muted, #666);
	margin-bottom: 12px;
	line-height: 1.6;
}

.order-confirmed-text a {
	color: var(--menu-green, #1B5E3B);
	font-weight: 600;
}

.order-confirmed-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
	margin-top: 28px;
}

.order-confirmed-page .btn-primary {
	background: var(--menu-text, #111) !important;
	border-radius: var(--menu-radius) !important;
}
.order-confirmed-page .btn-secondary {
	background: var(--menu-green, #1B5E3B) !important;
	color: #fff !important;
	border-radius: var(--menu-radius) !important;
}

@media (max-width: 900px) {
	.menu-category-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 768px) {
	.menu-category-strip-outer {
		margin-left: calc(-50vw + 50%);
		margin-right: calc(-50vw + 50%);
		width: 100vw;
	}

	.menu-category-strip-wrap {
		max-width: none;
		padding: 0 12px;
		mask-image: linear-gradient(to right, transparent 0, #000 16px, #000 calc(100% - 16px), transparent 100%);
		-webkit-mask-image: linear-gradient(to right, transparent 0, #000 16px, #000 calc(100% - 16px), transparent 100%);
	}

	.menu-category-strip {
		gap: 8px;
		padding: 12px 4px;
		scroll-padding-inline: 12px;
		justify-content: flex-start;
	}

	.menu-cat-chip {
		width: 100px;
	}

	.menu-cat-chip-media {
		height: 56px;
		padding: 5px 6px;
	}

	.menu-cat-chip-label {
		font-size: 0.68rem;
		padding: 7px 4px;
	}

	.menu-category-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}

	.menu-category-tile {
		font-size: 0.9rem;
	}

	.menu-item-card {
		padding: 14px;
	}

	.menu-item-card-media {
		width: 80px;
		height: 80px;
	}

	.menu-item-card-img,
	.menu-img-placeholder {
		width: 80px;
		height: 80px;
	}

	.menu-cart-fab {
		right: 16px;
		bottom: 16px;
		padding: 12px 16px;
	}

	.menu-cart-fab-total {
		display: none;
	}

	.menu-item-modal-img {
		max-width: 140px;
		max-height: 120px;
	}
}

/* ==========================================================================
   ABOUT + FRANCHISE SECTIONS (v1)
   ========================================================================== */
.about-section { padding: clamp(60px, 9vw, 100px) 0; background: var(--soft-white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 60px); align-items: center; }
.about-photo img { width: 100%; border-radius: 24px; box-shadow: 0 18px 44px rgba(0,0,0,0.14); }
.about-heading { text-align: left; margin-bottom: 18px; }
.about-copy p { margin-bottom: 14px; color: var(--soft-brown); font-size: 1.06rem; }

.franchise-section { padding: clamp(60px, 9vw, 100px) 0; background: var(--cream-bg); }
.franchise-card { max-width: 720px; margin: 0 auto; text-align: center; background: var(--light-orange); border-radius: 28px; padding: clamp(36px, 5vw, 60px); }
.franchise-heading { margin-bottom: 14px; }
.franchise-card p { color: var(--soft-brown); margin-bottom: 26px; font-size: 1.08rem; }

@media (max-width: 800px) {
	.about-grid { grid-template-columns: 1fr; }
	.about-photo { order: -1; }
}

/* Anchor nav offset (v1) — clear the sticky header */
#about-section, #franchise-section, #location-section, #faq-section { scroll-margin-top: 96px; }

/* FAQ page (v1) */
.faq-page { background: var(--cream-bg); }
.faq-group-heading { font-family: var(--font-title); font-weight: 900; font-size: clamp(1.4rem, 2.6vw, 1.9rem); color: var(--choc-brown); text-align: center; margin: 46px 0 20px; }
.faq-group-heading:first-of-type { margin-top: 20px; }
