/**
 * Stam Chocolate Theme - Chocolate-inspired elegant design
 * Clean, generous spacing, premium feel
 *
 * @package Stam_Chocolate
 * @since 2.0.0
 */

/* ==========================================================================
   CSS Variables - Refined Palette (Browns + Gold/Red/Pink)
   ========================================================================== */

:root {
	/* Primary Colors */
	--color-deep-chocolate: #2C1810;
	--color-medium-chocolate: #4A3428;
	--color-light-chocolate: #8B7355;
	
	/* Accent Colors */
	--color-gold: #C9A961;
	--color-gold-light: #D4B36B;
	--color-rose-gold: #B76E79;
	--color-deep-red: #8B4049;
	--color-soft-pink: #D4A5A5;
	
	/* Neutrals */
	--color-background: #FDFBF7;
	--color-off-white: #F5F2ED;
	--color-border: #E8E3DB;
	--color-white: #FFFFFF;
	
	/* Text Colors */
	--color-text: #2C1810;
	--color-text-secondary: #4A3428;
	--color-text-muted: #8B7355;
	
	/* Typography */
	--font-display: 'Playfair Display', Georgia, serif;
	--font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--font-accent: 'Cormorant Garamond', Georgia, serif;
	
	/* Font Sizes (Generous, elegant) */
	--text-xs: 0.75rem;     /* 12px */
	--text-sm: 0.875rem;    /* 14px */
	--text-base: 1rem;      /* 16px */
	--text-md: 1.125rem;    /* 18px */
	--text-lg: 1.25rem;     /* 20px */
	--text-xl: 1.5rem;      /* 24px */
	--text-2xl: 1.75rem;    /* 28px */
	--text-3xl: 2.5rem;     /* 40px */
	--text-4xl: 3.5rem;     /* 56px */
	
	/* Spacing System (Generous, elegant) */
	--space-xs: 8px;
	--space-sm: 16px;
	--space-md: 24px;
	--space-lg: 32px;
	--space-xl: 48px;
	--space-2xl: 64px;
	--space-3xl: 96px;
	--space-4xl: 120px;
	
	/* Layout */
	--container-max: 1340px;
	--container-padding: 40px;
	--header-height: 72px;
	
	/* Grid */
	--grid-gap: 48px;
	
	/* Transitions */
	--transition-fast: 0.15s ease;
	--transition-base: 0.3s ease;
	--transition-slow: 0.5s ease;
	
	/* Shadows */
	--shadow-sm: 0 1px 3px rgba(44, 24, 16, 0.04);
	--shadow-md: 0 4px 12px rgba(44, 24, 16, 0.08);
	--shadow-lg: 0 8px 24px rgba(44, 24, 16, 0.12);
	--shadow-xl: 0 16px 48px rgba(44, 24, 16, 0.16);
	
	/* Border Radius */
	--radius-sm: 4px;
	--radius-md: 8px;
	--radius-lg: 12px;
	--radius-full: 9999px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
	:root {
		--container-padding: 20px;
		--header-height: 63px;
		--grid-gap: 24px;
		--text-4xl: 2.5rem;
		--text-3xl: 2rem;
		--space-4xl: 80px;
		--space-3xl: 64px;
	}
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */

*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	font-size: 16px;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-body);
	font-size: var(--text-md);
	line-height: 1.6;
	color: var(--color-text);
	background-color: var(--color-background);
	overflow-x: hidden;
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: -0.01em;
	color: var(--color-text);
	margin-bottom: var(--space-md);
}

h1 {
	font-size: var(--text-4xl);
}

h2 {
	font-size: var(--text-3xl);
}

h3 {
	font-size: var(--text-2xl);
}

h4 {
	font-size: var(--text-xl);
}

h5 {
	font-size: var(--text-lg);
}

h6 {
	font-size: var(--text-md);
}

p {
	margin-bottom: var(--space-md);
}

p:last-child {
	margin-bottom: 0;
}

a {
	color: var(--color-text);
	text-decoration: none;
	transition: color var(--transition-fast);
}

a:hover {
	color: var(--color-gold);
}

strong, b {
	font-weight: 600;
}

/* ==========================================================================
   Layout
   ========================================================================== */

.site {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.site-main {
	flex: 1;
}

.container {
	width: 100%;
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 0 var(--container-padding);
}

.section {
	padding: var(--space-4xl) 0;
}

.section-header {
	text-align: center;
	margin-bottom: var(--space-2xl);
}

.section-header h2 {
	margin-bottom: var(--space-sm);
}

.section-header p {
	color: var(--color-text-muted);
	max-width: 600px;
	margin: 0 auto;
}

/* ==========================================================================
   Header (Sticky, Clean - Elegant Style)
   ========================================================================== */

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--color-white);
	transition: box-shadow var(--transition-base);
}

.site-header.scrolled {
	box-shadow: var(--shadow-md);
}

.header-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: var(--header-height);
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 0 var(--container-padding);
}

/* Site Branding */
.site-branding {
	display: flex;
	align-items: center;
	gap: var(--space-md);
}

.site-branding a {
	display: flex;
	align-items: center;
	gap: var(--space-md);
}

.custom-logo-link img,
.site-branding img {
	height: 55px;
	width: auto;
}

.site-title {
	font-family: var(--font-display);
	font-size: var(--text-xl);
	font-weight: 500;
	margin: 0;
}

.site-title a {
	color: var(--color-text);
}

.site-title a:hover {
	color: var(--color-text);
}

.site-description {
	display: none;
}

/* Heritage Badge */
.heritage-badge {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-left: var(--space-md);
	border-left: 1px solid var(--color-border);
}

.heritage-badge .heritage-text {
	font-family: var(--font-accent);
	font-size: var(--text-lg);
	font-weight: 600;
	color: var(--color-gold);
	line-height: 1;
}

.heritage-badge .heritage-location {
	font-size: var(--text-xs);
	color: var(--color-text-muted);
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

/* Navigation */
.main-navigation {
	flex: 1;
	display: flex;
	justify-content: center;
}

/* Menu toggle - hidden on desktop, visible on mobile */
.menu-toggle {
	display: none;
	background: none;
	border: none;
	padding: var(--space-sm);
	cursor: pointer;
	color: var(--color-text);
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	z-index: 1001;
	order: 2; /* Position after logo on mobile */
}

.menu-toggle-icon {
	display: block;
	width: 24px;
	height: 2px;
	background: currentColor;
	position: relative;
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
	content: '';
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background: currentColor;
}

.menu-toggle-icon::before {
	top: -7px;
}

.menu-toggle-icon::after {
	bottom: -7px;
}

.primary-menu {
	display: flex;
	align-items: center;
	gap: var(--space-xl);
	list-style: none;
	margin: 0;
	padding: 0;
}

.primary-menu li {
	margin: 0;
}

/* Shop menu-item rechts positioneren met extra ruimte */
.primary-menu li:first-child {
	order: 1;
	margin-left: var(--space-2xl);
}

.primary-menu a {
	font-size: var(--text-sm);
	font-weight: 500;
	color: var(--color-text-secondary);
	padding: var(--space-xs) 0;
	display: block;
	position: relative;
}

.primary-menu a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--color-gold);
	transition: width var(--transition-base);
}

.primary-menu a:hover {
	color: var(--color-text);
}

.primary-menu a:hover::after {
	width: 100%;
}

.primary-menu .current-menu-item a::after {
	width: 100%;
}

/* Dropdown Menu */
.primary-menu .menu-item-has-children {
	position: relative;
}

.primary-menu .menu-item-has-children > a::before {
	content: '';
	display: inline-block;
	width: 0;
	height: 0;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 4px solid currentColor;
	margin-left: 6px;
	vertical-align: middle;
	transition: transform var(--transition-fast);
}

.primary-menu .menu-item-has-children:hover > a::before {
	transform: rotate(180deg);
}

.primary-menu .sub-menu {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	min-width: 220px;
	background: var(--color-white);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-lg);
	padding: var(--space-sm) 0;
	opacity: 0;
	visibility: hidden;
	transition: all var(--transition-base);
	z-index: 100;
	list-style: none;
	margin: 0;
}

.primary-menu .menu-item-has-children:hover .sub-menu {
	opacity: 1;
	visibility: visible;
}

.primary-menu .sub-menu li {
	margin: 0;
}

.primary-menu .sub-menu a {
	display: block;
	padding: var(--space-sm) var(--space-md);
	font-size: var(--text-sm);
	color: var(--color-text-secondary);
	white-space: nowrap;
}

.primary-menu .sub-menu a::after {
	display: none;
}

.primary-menu .sub-menu a:hover {
	background: var(--color-off-white);
	color: var(--color-text);
}

/* Shop dropdown specific styling */
.menu-shop-dropdown > a {
	display: flex;
	align-items: center;
}

/* Header Cart */
.header-cart {
	position: relative;
}

.cart-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	color: var(--color-text);
	transition: color var(--transition-fast);
}

.cart-icon:hover {
	color: var(--color-gold);
}

.cart-icon svg {
	width: 24px;
	height: 24px;
}

.cart-count {
	position: absolute;
	top: 4px;
	right: 4px;
	min-width: 20px;
	height: 20px;
	padding: 0 6px;
	background: var(--color-gold);
	color: var(--color-white);
	font-size: var(--text-xs);
	font-weight: 600;
	border-radius: var(--radius-full);
	display: flex;
	align-items: center;
	justify-content: center;
}

/* ==========================================================================
   Shipping Notice Bar
   ========================================================================== */

.shipping-notice {
	background: var(--color-deep-chocolate);
	color: var(--color-white);
	padding: var(--space-sm) var(--container-padding);
	text-align: center;
	font-size: var(--text-sm);
}

.shipping-notice p {
	margin: 0;
}

.shipping-notice strong {
	color: var(--color-gold);
}

/* ==========================================================================
   Hero Section (Smaller, Clean)
   ========================================================================== */

.hero {
	min-height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: linear-gradient(135deg, var(--color-off-white) 0%, var(--color-background) 100%);
	padding: var(--space-3xl) var(--container-padding);
}

.hero-content {
	width: 100%;
	/* max-width verwijderd voor full-width hero achtergrond */
}

.hero-subtitle {
	font-family: var(--font-accent);
	font-size: var(--text-lg);
	color: var(--color-gold);
	margin-bottom: var(--space-sm);
	letter-spacing: 0.05em;
}

.hero h1 {
	margin-bottom: var(--space-md);
}

.hero p {
	color: var(--color-text-secondary);
	font-size: var(--text-md);
	max-width: 600px;
	margin: 0 auto var(--space-lg);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.button,
button,
input[type="submit"],
input[type="button"],
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--space-xs);
	padding: var(--space-sm) var(--space-lg);
	font-family: var(--font-body);
	font-size: var(--text-sm);
	font-weight: 500;
	line-height: 1.5;
	text-align: center;
	text-decoration: none;
	color: var(--color-white);
	background-color: var(--color-deep-chocolate);
	border: 2px solid var(--color-deep-chocolate);
	border-radius: var(--radius-sm);
	cursor: pointer;
	transition: all var(--transition-base);
	min-height: 48px;
}

.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
.btn:hover {
	background-color: var(--color-medium-chocolate);
	border-color: var(--color-medium-chocolate);
	color: var(--color-white);
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

.button:focus,
button:focus {
	outline: 2px solid var(--color-gold);
	outline-offset: 2px;
}

.btn-primary,
.button--primary {
	background-color: var(--color-deep-chocolate);
	border-color: var(--color-deep-chocolate);
	color: var(--color-white);
}

.btn-gold,
.button--gold {
	background-color: var(--color-gold);
	border-color: var(--color-gold);
	color: var(--color-deep-chocolate);
}

.btn-gold:hover,
.button--gold:hover {
	background-color: var(--color-gold-light);
	border-color: var(--color-gold-light);
	color: var(--color-deep-chocolate);
}

.btn-outline,
.button--secondary {
	background-color: transparent;
	border-color: var(--color-deep-chocolate);
	color: var(--color-deep-chocolate);
}

.btn-outline:hover,
.button--secondary:hover {
	background-color: var(--color-deep-chocolate);
	color: var(--color-white);
}

/* Pill Buttons (Fully Rounded) */
.btn-pill {
	border-radius: var(--radius-full);
	padding: var(--space-sm) var(--space-xl);
}

/* ==========================================================================
   Forms
   ========================================================================== */

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
textarea,
select {
	width: 100%;
	padding: var(--space-sm) var(--space-md);
	font-family: var(--font-body);
	font-size: var(--text-base);
	line-height: 1.5;
	color: var(--color-text);
	background-color: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
	min-height: 48px;
}

input:focus,
textarea:focus,
select:focus {
	outline: none;
	border-color: var(--color-gold);
	box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.15);
}

label {
	display: block;
	margin-bottom: var(--space-xs);
	font-size: var(--text-sm);
	font-weight: 500;
	color: var(--color-text);
}

/* ==========================================================================
   Page Content
   ========================================================================== */

.page-header {
	text-align: center;
	padding: var(--space-2xl) 0;
}

.page-title {
	margin-bottom: var(--space-sm);
}

.entry-content {
	max-width: 800px;
	margin: 0 auto;
}

.entry-content > * {
	margin-bottom: var(--space-md);
}

.entry-content > *:last-child {
	margin-bottom: 0;
}

/* ==========================================================================
   Posts
   ========================================================================== */

.posts-container {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: var(--grid-gap);
}

article.post {
	background: var(--color-white);
	border-radius: var(--radius-md);
	overflow: hidden;
	transition: transform var(--transition-base), box-shadow var(--transition-base);
}

article.post:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
}

.post-thumbnail {
	aspect-ratio: 16/10;
	overflow: hidden;
}

.post-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--transition-slow);
}

article.post:hover .post-thumbnail img {
	transform: scale(1.05);
}

article .entry-header {
	padding: var(--space-md);
}

article .entry-title {
	font-size: var(--text-xl);
	margin-bottom: var(--space-sm);
}

article .entry-meta {
	font-size: var(--text-sm);
	color: var(--color-text-muted);
}

article .entry-content {
	padding: 0 var(--space-md);
}

article .entry-footer {
	padding: var(--space-md);
}

.read-more {
	font-size: var(--text-sm);
	font-weight: 500;
	color: var(--color-gold);
}

.read-more:hover {
	color: var(--color-deep-chocolate);
}

/* ==========================================================================
   Footer (Chocolate-inspired Clean)
   ========================================================================== */

.site-footer {
	background: var(--color-deep-chocolate);
	color: var(--color-white);
	margin-top: var(--space-lg);
}

/* Header Logo Styles */
.site-branding .custom-logo-link {
	display: flex;
	align-items: center;
}

.site-branding .custom-logo {
	height: 55px;
	width: auto;
	display: block;
}

.site-title-link {
	text-decoration: none;
}

.site-title {
	font-family: var(--font-display);
	font-size: var(--text-xl);
	font-weight: 500;
	color: var(--color-text);
}

.footer-container {
	max-width: var(--container-max);
	margin: 0 auto;
	padding: var(--space-xl) var(--container-padding) var(--space-lg);
}

/* Heritage Stats Row (Integrated into footer) */
.footer-heritage-stats {
	display: flex;
	justify-content: center;
	gap: var(--space-2xl);
	padding-bottom: var(--space-lg);
	margin-bottom: var(--space-lg);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.heritage-stat {
	text-align: center;
}

.heritage-stat .stat-number {
	font-family: var(--font-display);
	font-size: var(--text-2xl);
	font-weight: 500;
	color: var(--color-gold);
	display: block;
	line-height: 1;
	margin-bottom: 4px;
}

.heritage-stat .stat-label {
	font-size: var(--text-xs);
	color: rgba(255, 255, 255, 0.6);
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

/* Tablet: 5 items in row met kleinere gap */
@media (max-width: 900px) {
	.footer-heritage-stats {
		gap: var(--space-lg);
		flex-wrap: wrap;
		justify-content: space-around;
	}
	
	.heritage-stat {
		flex: 0 0 auto;
		min-width: 80px;
	}
}

/* Mobile: 2x2 + 1 grid layout */
@media (max-width: 600px) {
	.footer-heritage-stats {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: var(--space-md);
		justify-items: center;
	}
	
	.heritage-stat {
		min-width: auto;
	}
	
	.heritage-stat .stat-number {
		font-size: var(--text-lg);
	}
	
	.heritage-stat .stat-label {
		font-size: 10px;
	}
}

/* Extra small mobile */
@media (max-width: 400px) {
	.footer-heritage-stats {
		grid-template-columns: repeat(2, 1fr);
	}
	
	/* Center the 5th item */
	.heritage-stat:nth-child(5) {
		grid-column: 1 / -1;
	}
}

/* Footer Logo */
.footer-logo {
	margin-bottom: var(--space-sm);
}

.footer-logo img {
	height: 50px;
	width: auto;
	filter: brightness(0) invert(1);
	opacity: 0.9;
}

.footer-site-title {
	font-family: var(--font-display);
	font-size: var(--text-xl);
	color: var(--color-white);
}

.footer-widgets {
	display: grid;
	grid-template-columns: 2fr repeat(3, 1fr);
	gap: var(--space-xl);
	margin-bottom: var(--space-lg);
}

@media (max-width: 900px) {
	.footer-widgets {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.footer-widgets {
		grid-template-columns: 1fr;
	}
}

.footer-widget-area {
	color: rgba(255, 255, 255, 0.7);
}

.footer-widget-area h2,
.footer-widget-area .widget-title {
	font-family: var(--font-display);
	font-size: var(--text-lg);
	font-weight: 500;
	color: var(--color-gold);
	margin-bottom: var(--space-md);
}

.footer-widget-area a {
	color: rgba(255, 255, 255, 0.7);
}

.footer-widget-area a:hover {
	color: var(--color-gold);
}

.footer-widget-area ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-widget-area li {
	margin-bottom: var(--space-sm);
}

.footer-navigation {
	margin-bottom: var(--space-xl);
}

.footer-menu {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-lg);
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-menu a {
	color: rgba(255, 255, 255, 0.7);
	font-size: var(--text-sm);
}

.footer-menu a:hover {
	color: var(--color-gold);
}

.footer-brand-info {
	padding-top: var(--space-xl);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	margin-bottom: var(--space-xl);
}

.footer-description,
.footer-heritage,
.footer-callebaut {
	color: rgba(255, 255, 255, 0.6);
	font-size: var(--text-sm);
	line-height: 1.7;
	margin-bottom: var(--space-md);
}

.site-info {
	padding-top: var(--space-xl);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: var(--text-sm);
	color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 600px) {
	.site-info {
		flex-direction: column;
		gap: var(--space-md);
		text-align: center;
	}
}

.site-info a {
	color: rgba(255, 255, 255, 0.7);
}

.site-info a:hover {
	color: var(--color-gold);
}

/* Payment Methods in Footer */
.payment-methods {
	display: flex;
	align-items: center;
	gap: var(--space-md);
	flex-wrap: wrap;
}

.payment-label {
	font-size: var(--text-xs);
	color: rgba(255, 255, 255, 0.5);
}

.payment-method {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: var(--text-xs);
	color: rgba(255, 255, 255, 0.7);
}

.payment-icon-svg {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}

@media (max-width: 600px) {
	.payment-methods {
		justify-content: center;
	}
}

/* ==========================================================================
   Utilities
   ========================================================================== */

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
	word-wrap: normal !important;
}

.skip-link {
	position: absolute;
	left: -9999px;
	z-index: 999999;
}

.skip-link:focus {
	left: 6px;
	top: 7px;
	width: auto;
	height: auto;
	padding: var(--space-sm) var(--space-md);
	background: var(--color-deep-chocolate);
	color: var(--color-white);
	text-decoration: none;
	border-radius: var(--radius-sm);
}

/* Text colors */
.text-gold { color: var(--color-gold); }
.text-muted { color: var(--color-text-muted); }

/* Backgrounds */
.bg-white { background-color: var(--color-white); }
.bg-off-white { background-color: var(--color-off-white); }

/* ==========================================================================
   Responsive - Mobile Navigation
   ========================================================================== */

@media (max-width: 900px) {
	/* Header container layout on mobile */
	.header-container {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	/* Hamburger menu toggle - VISIBLE on mobile */
	.menu-toggle,
	#mobile-menu-toggle {
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		visibility: visible !important;
		opacity: 1 !important;
		width: 44px !important;
		height: 44px !important;
		z-index: 1001 !important;
		background: none !important;
		border: none !important;
		cursor: pointer !important;
		color: var(--color-text) !important;
		padding: 0 !important;
		flex-shrink: 0;
	}

	/* Navigation container - hide on mobile by default */
	.main-navigation {
		position: fixed;
		top: calc(var(--header-height) + 40px);
		left: 0;
		right: 0;
		bottom: 0;
		background: var(--color-white);
		padding: var(--space-md);
		box-shadow: var(--shadow-lg);
		transform: translateX(-100%);
		opacity: 0;
		visibility: hidden;
		transition: all 0.3s ease;
		z-index: 1000;
		overflow-y: auto;
	}

	/* When menu is open, show navigation */
	.main-navigation.is-open {
		transform: translateX(0);
		opacity: 1;
		visibility: visible;
	}

	/* The menu items inside */
	.primary-menu {
		display: flex;
		flex-direction: column;
		gap: 0;
	}

	.primary-menu li {
		width: 100%;
		border-bottom: 1px solid var(--color-border);
	}

	.primary-menu li:last-child {
		border-bottom: none;
	}

	.primary-menu a {
		padding: var(--space-md);
		font-size: var(--text-base);
		display: block;
	}

	.primary-menu a::after {
		display: none;
	}

	.heritage-badge {
		display: none;
	}

	/* Mobile Dropdown */
	.primary-menu .menu-item-has-children > a::before {
		margin-left: auto;
	}

	.primary-menu .sub-menu {
		position: static;
		transform: none;
		min-width: auto;
		box-shadow: none;
		padding: 0;
		border-radius: 0;
		opacity: 1;
		visibility: visible;
		background: var(--color-off-white);
		margin: 0 calc(var(--space-md) * -1);
		padding: 0 var(--space-md);
	}

	.primary-menu .sub-menu a {
		padding: var(--space-sm) var(--space-md);
		font-size: var(--text-sm);
	}
}

@media (max-width: 600px) {
	.header-container {
		padding: 0 var(--space-sm);
	}

	.site-branding img {
		height: 45px;
	}
}
