.modern-header-container-d8d4de5a {
	position: sticky;
	top: 0;
	z-index: 9999;
	width: 100%;
	padding: 15px 0;
	border-bottom: 1px solid rgba(72, 57, 42, 0.08);
	transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
	box-sizing: border-box;
}

body.admin-bar .modern-header-container-d8d4de5a {
	top: var(--wp-admin--admin-bar--height, 32px);
}
@media screen and (max-width: 782px) {
	body.admin-bar .modern-header-container-d8d4de5a {
		top: 46px;
	}
}

.modern-header-content-d8d4de5a {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	box-sizing: border-box;
}

.modern-header-logo-d8d4de5a {
	flex-shrink: 1;
	min-width: 0;
}

.modern-header-logo-d8d4de5a a {
	display: flex;
	align-items: center;
	text-decoration: none;
	min-width: 0;
}

.brand-logo-img-d8d4de5a {
	max-height: 45px;
	width: auto;
	object-fit: contain;
	transition: transform 0.3s ease;
}

@media screen and (max-width: 480px) {
	.brand-logo-img-d8d4de5a {
		max-height: 35px;
	}
}

.brand-logo-img-d8d4de5a:hover {
	transform: scale(1.05);
}

.brand-logo-text-d8d4de5a {
	font-family: 'DM Sans', sans-serif;
	font-size: 22px;
	font-weight: 700;
	letter-spacing: 1px;
	color: #48392a;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

@media screen and (max-width: 480px) {
	.brand-logo-text-d8d4de5a {
		font-size: 18px;
	}
}

.modern-header-right-desktop-d8d4de5a {
	display: flex;
	align-items: center;
	gap: 30px;
}

.modern-header-nav-d8d4de5a {
	display: flex;
	align-items: center;
	gap: 24px;
}

.nav-item-link-d8d4de5a {
	font-family: 'DM Sans', sans-serif;
	font-size: 16px;
	font-weight: 500;
	text-decoration: none;
	position: relative;
	transition: color 0.3s ease;
}

.nav-item-link-d8d4de5a:not(.nav-item-btn-d8d4de5a)::after {
	content: '';
	position: absolute;
	width: 100%;
	transform: scaleX(0);
	height: 2px;
	bottom: -4px;
	left: 0;
	background-color: currentColor;
	transform-origin: bottom right;
	transition: transform 0.25s ease-out;
}

.nav-item-link-d8d4de5a:not(.nav-item-btn-d8d4de5a):hover::after {
	transform: scaleX(1);
	transform-origin: bottom left;
}

/* CTA Highlight Button */
.nav-item-btn-d8d4de5a {
	padding: 10px 22px;
	border-radius: 50px;
	font-weight: 600;
	box-shadow: 0 4px 15px rgba(155, 107, 47, 0.2);
	transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.nav-item-btn-d8d4de5a:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(155, 107, 47, 0.35);
}

/* Desktop Expandable Search */
.desktop-search-wrapper-d8d4de5a {
	position: relative;
	display: flex;
	align-items: center;
}

.search-trigger-btn-d8d4de5a {
	background: none;
	border: none;
	padding: 5px;
	cursor: pointer;
	color: #48392a;
	transition: color 0.3s ease, transform 0.2s ease;
	display: flex;
	align-items: center;
}

.search-trigger-btn-d8d4de5a:hover {
	transform: scale(1.1);
}

.desktop-search-box-d8d4de5a {
	position: absolute;
	right: 100%;
	top: 50%;
	transform: translateY(-50%) scaleX(0);
	transform-origin: right center;
	width: 260px;
	opacity: 0;
	pointer-events: none;
	transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
	margin-right: 12px;
}

.desktop-search-box-d8d4de5a.is-open-d8d4de5a {
	transform: translateY(-50%) scaleX(1);
	opacity: 1;
	pointer-events: auto;
}

.search-form-d8d4de5a {
	position: relative;
	width: 100%;
	display: flex;
	align-items: center;
}

.search-box-input-d8d4de5a {
	width: 100%;
	height: 40px;
	padding: 10px 45px 10px 18px;
	border-radius: 30px;
	border: 1px solid rgba(72, 57, 42, 0.15);
	font-family: 'DM Sans', sans-serif;
	font-size: 14px;
	outline: none;
	background-color: #ffffff;
	transition: all 0.3s ease;
	box-sizing: border-box;
}

.search-box-input-d8d4de5a:focus {
	border-color: #9b6b2f;
	box-shadow: 0 4px 12px rgba(155, 107, 47, 0.1);
}

.search-submit-btn-d8d4de5a {
	position: absolute;
	right: 5px;
	top: 5px;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: none;
	background-color: #9b6b2f;
	color: #ffffff;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.3s ease, transform 0.2s ease;
}

.search-submit-btn-d8d4de5a:hover {
	transform: scale(1.05);
}

/* Mobile Controls Wrapper */
.modern-header-mobile-controls-d8d4de5a {
	display: none;
	align-items: center;
	gap: 15px;
	flex-shrink: 0;
}

/* Mobile Search Dropdown */
.mobile-search-dropdown-d8d4de5a {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	padding: 12px 20px;
	background-color: #ffffff;
	border-bottom: 1px solid rgba(72, 57, 42, 0.08);
	box-shadow: 0 10px 20px rgba(0,0,0,0.05);
	box-sizing: border-box;
	transform: translateY(-10px);
	opacity: 0;
	pointer-events: none;
	transition: all 0.3s ease;
	z-index: 9998;
}

.mobile-search-dropdown-d8d4de5a.is-open-d8d4de5a {
	transform: translateY(0);
	opacity: 1;
	pointer-events: auto;
}

/* Hamburger Icon styling */
.modern-header-mobile-toggle-d8d4de5a {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 24px;
	height: 16px;
	cursor: pointer;
	z-index: 10001;
}

.modern-header-mobile-toggle-d8d4de5a span {
	display: block;
	height: 2px;
	width: 100%;
	background-color: #48392a;
	border-radius: 2px;
	transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Mobile Nav Drawer Styles - fixed overflow bug using translate */
.mobile-menu-drawer-d8d4de5a {
	position: fixed;
	top: 0;
	right: 0;
	width: 280px;
	max-width: 85vw;
	height: 100vh;
	background-color: #ffffff;
	box-shadow: -5px 0 25px rgba(0, 0, 0, 0.08);
	z-index: 100002;
	transform: translateX(105%);
	transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
	display: flex;
	flex-direction: column;
	padding: 80px 24px 40px;
	box-sizing: border-box;
}

.mobile-menu-drawer-d8d4de5a.is-active-d8d4de5a {
	transform: translateX(0);
}

.mobile-drawer-close-d8d4de5a {
	position: absolute;
	top: 25px;
	right: 24px;
	font-size: 36px;
	cursor: pointer;
	color: #48392a;
	line-height: 1;
	transition: color 0.3s ease;
}

.mobile-drawer-close-d8d4de5a:hover {
	color: #9b6b2f;
}

.mobile-drawer-content-d8d4de5a {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.mobile-nav-item-d8d4de5a {
	font-family: 'DM Sans', sans-serif;
	font-size: 18px;
	font-weight: 500;
	text-decoration: none;
	padding: 8px 0;
	border-bottom: 1px solid rgba(72, 57, 42, 0.05);
	transition: all 0.3s ease;
}

.mobile-nav-btn-d8d4de5a {
	background-color: #9b6b2f;
	color: #ffffff !important;
	padding: 12px 24px;
	border-radius: 50px;
	text-align: center;
	font-weight: 600;
	box-shadow: 0 4px 15px rgba(155, 107, 47, 0.2);
	margin-top: 10px;
	border-bottom: none;
}

.mobile-drawer-overlay-d8d4de5a {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(13, 20, 26, 0.4);
	backdrop-filter: blur(4px);
	z-index: 100001;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.4s ease;
}

.mobile-drawer-overlay-d8d4de5a.is-active-d8d4de5a {
	opacity: 1;
	pointer-events: auto;
}

/* Responsive adjustments */
@media screen and (max-width: 991px) {
	.modern-header-nav-d8d4de5a {
		display: none;
	}
	.desktop-search-wrapper-d8d4de5a {
		display: none;
	}
	.modern-header-mobile-controls-d8d4de5a {
		display: flex;
	}
}
