/* Стили для логотипа в header */
.header-logo {
	display: none;
}

/* Стили для простого бургер-меню */
.simple-burger {
	display: none;
	flex-direction: column;
	justify-content: space-around;
	width: 30px;
	height: 25px;
	cursor: pointer;
	position: relative;
	z-index: 9999999;
	padding: 0;
}

.burger-line {
	width: 100%;
	height: 3px;
	background-color: #222145;
	transition: all 0.3s ease;
	border-radius: 2px;
}

.mobile-inner {
	z-index: 9999998 !important;
}

/* Показываем бургер только на мобильных */
@media screen and (max-width: 1250px) {
	.header-logo {
		display: block;
		flex-grow: 1;
	}
	
	.simple-burger {
		display: flex;
		flex-shrink: 0;
	}
	
	.indexnav {
		display: none !important;
	}
	
	.header {
		justify-content: space-between !important;
		gap: 20px !important;
	}
}

/* Анимация для открытого состояния - крестик */
.simple-burger.is-open .burger-line:nth-child(1) {
	transform: translateY(11px) rotate(45deg);
	background-color: #9E2114;
}

.simple-burger.is-open .burger-line:nth-child(2) {
	opacity: 0;
}

.simple-burger.is-open .burger-line:nth-child(3) {
	transform: translateY(-11px) rotate(-45deg);
	background-color: #9E2114;
}

