.mbe-header-c1bc650a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 9999;
	background-color: transparent;
	transition: background-color 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
	padding: 20px 0;
	font-family: 'Montserrat', sans-serif;
}

.mbe-header-c1bc650a.is-sticky-c1bc650a {
	position: fixed;
	background-color: rgba(255, 255, 255, 0.95);
	padding: 10px 0;
	box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.mbe-header-container-c1bc650a {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.mbe-logo-c1bc650a img {
	max-height: 60px;
	width: auto;
	transition: max-height 0.3s ease;
}

.mbe-header-c1bc650a.is-sticky-c1bc650a .mbe-logo-c1bc650a img {
	max-height: 45px;
}

.mbe-main-nav-c1bc650a {
	display: flex;
	align-items: center;
}

.mbe-menu-c1bc650a {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 30px;
}

.mbe-menu-c1bc650a li {
	position: relative;
}

.mbe-menu-c1bc650a a {
	color: #ffffff;
	text-decoration: none;
	font-weight: 500;
	font-size: 16px;
	transition: color 0.3s ease;
}

.mbe-header-c1bc650a.is-sticky-c1bc650a .mbe-menu-c1bc650a a {
	color: #333333;
}

.mbe-menu-c1bc650a a:hover {
	color: #00B4D8; /* Turquesa */
}

/* Featured Button "Tienda" */
.mbe-menu-c1bc650a li.btn-tienda a {
	background-color: #F4A261; /* Naranja cálido */
	color: #ffffff !important;
	padding: 10px 25px;
	border-radius: 30px;
	font-weight: 600;
	transition: background-color 0.3s ease, transform 0.2s ease;
	display: inline-block;
}

.mbe-menu-c1bc650a li.btn-tienda a:hover {
	background-color: #00B4D8; /* Turquesa hover */
	transform: translateY(-2px);
}

/* Mobile Toggle (Hamburger) */
.mbe-mobile-toggle-c1bc650a {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 10px;
}

.mbe-hamburger-box-c1bc650a {
	width: 30px;
	height: 24px;
	display: inline-block;
	position: relative;
}

.mbe-hamburger-inner-c1bc650a, 
.mbe-hamburger-inner-c1bc650a::before, 
.mbe-hamburger-inner-c1bc650a::after {
	width: 100%;
	height: 3px;
	background-color: #ffffff;
	position: absolute;
	transition: transform 0.15s ease, background-color 0.3s ease;
}

.mbe-header-c1bc650a.is-sticky-c1bc650a .mbe-hamburger-inner-c1bc650a,
.mbe-header-c1bc650a.is-sticky-c1bc650a .mbe-hamburger-inner-c1bc650a::before,
.mbe-header-c1bc650a.is-sticky-c1bc650a .mbe-hamburger-inner-c1bc650a::after {
	background-color: #333333;
}

.mbe-hamburger-inner-c1bc650a { top: 50%; transform: translateY(-50%); }
.mbe-hamburger-inner-c1bc650a::before { content: ''; top: -10px; left: 0; }
.mbe-hamburger-inner-c1bc650a::after { content: ''; bottom: -10px; left: 0; }

/* Mobile Menu Styles */
@media (max-width: 991px) {
	.mbe-header-container-c1bc650a {
		justify-content: center;
	}
	
	.mbe-logo-c1bc650a {
		flex-grow: 1;
		text-align: center;
	}
	
	.mbe-nav-wrapper-c1bc650a {
		position: absolute;
		right: 20px;
	}
	
	.mbe-mobile-toggle-c1bc650a {
		display: block;
		z-index: 10000;
		position: relative;
	}
	
	.mbe-main-nav-c1bc650a {
		position: fixed;
		top: 0;
		right: -100%;
		width: 300px;
		height: 100vh;
		background-color: rgba(255,255,255,0.98);
		box-shadow: -5px 0 15px rgba(0,0,0,0.1);
		transition: right 0.4s ease;
		display: flex;
		flex-direction: column;
		justify-content: center;
		padding: 40px;
	}
	
	.mbe-main-nav-c1bc650a.is-open-c1bc650a {
		right: 0;
	}
	
	.mbe-menu-c1bc650a {
		flex-direction: column;
		gap: 20px;
		align-items: flex-end;
		width: 100%;
	}
	
	.mbe-menu-c1bc650a a {
		color: #333333;
		font-size: 18px;
	}
	
	.mbe-menu-c1bc650a li.btn-tienda {
		margin-top: 20px;
		width: 100%;
		text-align: right;
	}
}
