.site-header {
    position: fixed !important;
    width: 100%;
	z-index: 999;
	backdrop-filter: blur(10px);
	background: #11111399;
}


.header-menu {
	width: 32px;
	height: 24px;
	position: relative;
	cursor: pointer;
	background: none;
	border: none;
	padding: 0;
}

.header-left {
    display: flex;
    gap: 30px;
}

.menu-margin {
	margin-top: 35px;
}


.menu-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.45);
	opacity: 0;
	visibility: hidden;
	transition: 0.3s ease;
	z-index: 999;
}

.menu-overlay.active {
	opacity: 1;
	visibility: visible;
}

.burger-menu {
	position: fixed;
	top: 0;
	left: 0;
	transform: translateX(-110%);
	width: 36%;
	min-width: 280px;
	max-width: 420px;
	height: 100%;
	background: #fff;
	padding: 100px 30px 30px;
	transition: transform 0.4s ease;
	z-index: 1001;
	overflow-y: auto;
	font-family: var(--titles);
}

.burger-menu.active {
	transform: translateX(0);
}

.menu-close {
	position: absolute;
	top: 48px;
	right: 25px;
	width: 24px;
	height: 24px;
	cursor: pointer;
	opacity: 0.7;
	transition: 0.25s;
}

.menu-close:hover {
	opacity: 1;
}

.menu-close span {
	position: absolute;
	width: 100%;
	height: 2px;
	background: #000;
	top: 50%;
	left: 0;
}

.menu-close span:nth-child(1) {
	transform: rotate(45deg);
}
.menu-close span:nth-child(2) {
	transform: rotate(-45deg);
}

.menu-link {
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-decoration: none;
	color: rgba(0,0,0,0.7);
	font-size: 20px;
	margin-bottom: 18px;
	transition: 0.25s;
}

.menu-link:hover,
.menu-item.active > .menu-link {
	color: rgba(0,0,0,1);
}

.menu-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 1.2rem;
	height: 1.2rem;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	opacity: 0.7;
	transition: opacity 0.25s ease;
}

.menu-link:hover .menu-toggle,
.menu-item.active .menu-toggle {
	opacity: 1;
}

.menu-toggle__chevron {
	width: 0.72rem;
	height: 0.72rem;
	border-right: 1.5px solid #000;
	border-bottom: 1.5px solid #000;
	transform: rotate(45deg);
	transition: transform 0.24s ease;
}

.menu-item.active .menu-toggle__chevron {
	transform: rotate(225deg);
}

.menu-item .submenu {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease;
	padding-left: 10px;
}

.menu-item .submenu a {
	display: block;
	font-size: 17px;
	margin: 8px 0;
	text-decoration: none;
	color: rgba(0,0,0,0.6);
}

.menu-item.active .submenu {
	max-height: 300px;
}

.menu-text {
	text-decoration: none;
	color: inherit;
}

.site-header__link {
    position: relative;
}

.site-header__actions {
    display: flex;
    gap: 30px;
}

.header-buttons {
    display: flex;
    gap: 15px;
}

.header-logo {
	height: 35px !important;
}

.header-cart {
    position: absolute;
    z-index: 999;
    background-color: var(--background);
    border-radius: 50%;
    top: -10px;
    right: -10px;
    border: 2px solid var(--text);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 1.5rem;
	height: 1.5rem;
}

.site-header__link > img {
    width: 40px !important;
}

.site-header__search input {
    outline: none;
    border: none;
    border-bottom: 1px solid var(--text);
    padding: 10px; 
    background: none;
    color: var(--text);
}



@media (max-width: 1100px) {
	.burger-menu {
		width: 80%;
	}
}

@media (max-width: 960px) {
	.site-header__inner {
		display: grid;
		grid-template-columns: auto 1fr auto;
		align-items: center;
		gap: 12px;
		padding: 12px 0;
	}

	.header-left {
		gap: 0;
	}

	.site-navigation,
	.site-header__search {
		display: none !important;
	}

	.site-header__actions {
		flex-direction: row;
		align-items: center;
		justify-content: flex-end;
		gap: 0;
	}

	.header-buttons {
		align-items: center;
		gap: 10px;
	}

	.header-logo {
		display: block;
		height: 35px !important;
		margin: 0 auto;
	}

	.site-header__link > img {
		width: 32px !important;
	}

	.header-cart {
		top: -8px;
		right: -8px;
		font-size: 12px;
		min-width: 18px;
		height: 18px;
		padding: 0 4px;
		border-width: 1px;
	}
}

@media (max-width: 600px) {
	.site-header__inner {
		grid-template-columns: 40px 1fr auto;
		gap: 10px;
	}

	.site-header__actions {
		justify-content: flex-end;
	}

	.header-buttons {
		gap: 8px;
	}

	.header-logo {
		height: 40px !important;
	}

	.site-header__link > img {
		width: 40px !important;
	}

	.burger-menu {
		width: 90%;
		padding: 96px 20px 20px;
	}

	.menu-link {
		font-size: 18px;
	}

	.menu-close {
		top: 70px;
		right: 20px;
		width: 20px;
		height: 20px;
	}

	.menu-close span {
		height: 1.5px;
	}

	.header-cart {
		top: -6px;
		right: -6px;
		width: 16px;
		height: 16px;
		font-size: 10px;
		line-height: 1;
	}
}
