.aurora-free-header,
.aurora-free-header * {
	box-sizing: border-box;
}

.aurora-free-header {
	position: relative;
	display: block;
	width: 100%;
	background: #fff9f4;
	z-index: 20;
}

/*
 * Header Footer Builder for Elementor hides every <header> element while
 * suppressing the theme header. Its global selector also catches Elementor
 * containers used inside the selected custom header template. This targeted
 * compatibility rule restores only the template that contains this widget.
 */
body.turbo-hide-theme-header #tahefobu-header > .elementor > header.elementor-element {
	display: flex !important;
	width: 100%;
	margin: 0 !important;
	padding: 0 !important;
}

body.turbo-hide-theme-header #tahefobu-header .aurora-free-header {
	display: block !important;
}

.aurora-header-desktop {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 150px minmax(0, 1fr);
	align-items: center;
	width: 100%;
	max-width: 930px;
	min-height: 190px;
	margin: 0 auto;
	padding: 0 14px;
}

.aurora-menu-column {
	min-width: 0;
	padding: 0;
}

.aurora-menu-list {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 42px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.aurora-header-menu .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 210px;
	list-style: none;
	margin: 0;
	padding: 10px 0;
	background: #fff9f4;
	box-shadow: 0 12px 30px rgba(79, 42, 66, 0.1);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
	z-index: 30;
}

.aurora-header-menu li {
	position: relative;
	margin: 0;
	padding: 0;
}

.aurora-header-menu li:hover > .sub-menu,
.aurora-header-menu li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.aurora-header-menu a {
	display: block;
	padding: 10px 0;
	color: #7e6973;
	font-family: Montserrat, Arial, sans-serif;
	font-size: 11px;
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: 2.2px;
	text-decoration: none;
	text-transform: uppercase;
	transition: color 160ms ease, background-color 160ms ease;
}

.aurora-header-menu a:hover,
.aurora-header-menu a:focus,
.aurora-header-menu .current-menu-item > a {
	color: #653454;
}

.aurora-header-menu .sub-menu a {
	padding: 10px 18px;
	letter-spacing: 1.2px;
	white-space: nowrap;
}

.aurora-header-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	text-decoration: none;
}

.aurora-header-logo img {
	display: block;
	width: 132px;
	max-width: 100%;
	height: auto;
}

.aurora-header-socials {
	position: absolute;
	top: 18px;
	right: 8px;
	display: flex;
	align-items: center;
	gap: 11px;
	padding: 0;
}

.aurora-header-socials a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
	padding: 0;
	color: #7e6973;
	font-size: 13px;
	line-height: 1;
	text-decoration: none;
	transition: color 160ms ease;
}

.aurora-header-socials a:hover,
.aurora-header-socials a:focus {
	color: #653454;
}

.aurora-icon {
	display: block;
	width: 1em;
	height: 1em;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
	overflow: visible;
}

.aurora-header-mobile {
	display: none;
}

.aurora-menu-placeholder {
	padding: 12px;
	border: 1px dashed #d8c9d1;
	color: #7e6973;
	font-family: Arial, sans-serif;
	font-size: 12px;
	text-align: center;
}

@media (max-width: 1024px) {
	.aurora-header-desktop {
		display: none;
	}

	.aurora-header-mobile {
		position: relative;
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		min-height: 104px;
		margin: 0;
		padding: 0 20px;
	}

	.aurora-header-mobile .aurora-header-logo {
		justify-content: flex-start;
	}

	.aurora-header-mobile .aurora-header-logo img {
		width: 88px;
	}

	.aurora-menu-toggle {
		display: inline-flex !important;
		align-items: center;
		justify-content: center;
		width: 44px;
		height: 44px;
		margin: 0;
		padding: 0;
		border: 0;
		border-radius: 0;
		background: transparent;
		color: #653454;
		font-size: 25px;
		line-height: 1;
		cursor: pointer;
	}

	.aurora-menu-toggle .aurora-toggle-open,
	.aurora-menu-toggle .aurora-toggle-close {
		align-items: center;
		justify-content: center;
		width: 26px;
		height: 26px;
	}

	.aurora-menu-toggle .aurora-toggle-open {
		display: inline-flex;
	}

	.aurora-menu-toggle .aurora-icon {
		width: 26px;
		height: 26px;
	}

	.aurora-toggle-close {
		display: none;
	}

	.aurora-header-mobile.is-open .aurora-toggle-open {
		display: none;
	}

	.aurora-header-mobile.is-open .aurora-toggle-close {
		display: inline-flex;
	}

	.aurora-mobile-panel {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		width: 100%;
		max-height: calc(100vh - 104px);
		margin: 0;
		padding: 12px 20px 20px;
		overflow-y: auto;
		background: #fff9f4;
		box-shadow: 0 18px 34px rgba(79, 42, 66, 0.12);
		opacity: 0;
		visibility: hidden;
		transform: translateY(-8px);
		transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
		pointer-events: none;
		z-index: 1000;
	}

	.aurora-header-mobile.is-open .aurora-mobile-panel {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
		pointer-events: auto;
	}

	.aurora-mobile-menu .aurora-menu-list,
	.aurora-mobile-menu .sub-menu {
		position: static;
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		width: 100%;
		min-width: 0;
		margin: 0;
		padding: 0;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
	}

	.aurora-mobile-menu li {
		width: 100%;
		border-bottom: 1px solid rgba(126, 105, 115, 0.18);
		text-align: center;
	}

	.aurora-mobile-menu li:last-child {
		border-bottom: 0;
	}

	.aurora-mobile-menu a,
	.aurora-mobile-menu .sub-menu a {
		width: 100%;
		padding: 14px 12px;
		font-size: 13px;
		letter-spacing: 1.4px;
		white-space: normal;
	}
}

@media (max-width: 767px) {
	.aurora-header-mobile {
		min-height: 86px;
		padding: 0 14px;
	}

	.aurora-header-mobile .aurora-header-logo img {
		width: 76px;
	}

	.aurora-menu-toggle {
		width: 40px;
		height: 40px;
		font-size: 23px;
	}

	.aurora-mobile-panel {
		max-height: calc(100vh - 86px);
		padding: 8px 14px 16px;
	}
}
