/* Header*/

.keune-header {
	position: fixed;
	top: 0;
    right: 0;
    left: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
	background-color: var(--color-bg-section);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 25px;
	height: 48px;
	width: 100%;
	gap: 1rem;
	border-bottom: 1px solid #e5e5e5;
	z-index: 1000;
}

.keune-menu {
	display: flex;
	gap: 1rem;
	align-items: center;
	flex: 1;
}

.keune-menu--right {
	justify-content: flex-end;
}

.keune-header .keune-menu-item,
.keune-header .keune-menu-item:hover,
.keune-header .keune-menu-item:focus {
	background: none !important;
	border: none !important;
	border-radius: 0 !important;
	color: var(--color-primary) !important;
	font-size: 11px !important;
	font-weight: 400 !important;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
	display: inline-flex !important;
	align-items: center;
	font-family: inherit;
	padding: 0 !important;
	width: auto !important;
}

.keune-arrow {
	margin-left: 6px;
	width: 8px;
	height: 4px;
}

.keune-logo {
	display: flex;
	justify-content: center;
	align-items: center;
}

.keune-logo-link {
	font-size: 38px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	color: #1c1d1f;
	text-decoration: none;
	line-height: 1;
	font-family: var(--font-base);
}

@media (max-width: 1024px) {
	.keune-header {
		height: 58px;
		padding: 0 16px;
		gap: 0;
		justify-content: flex-start;
	}

	.keune-menu--left {
		flex: 0 auto;
		gap: 24px;
	}

	.keune-menu--left .keune-menu-item--products span,
	.keune-menu--left .keune-menu-item--products svg {
		display: none;
	}

	.keune-menu--left .keune-menu-item--products::before {
		content: '';
		width: 18px;
		height: 12px;
		display: inline-block;
		background: linear-gradient(to bottom, #000 0px, #000 2px, transparent 2px, transparent 5px, #000 5px, #000 7px, transparent 7px, transparent 10px, #000 10px, #000 12px);
	}

	.keune-menu--left .keune-menu-item--search span {
		display: none;
	}

	.keune-menu--left .keune-menu-item--search::before {
		content: '';
		width: 16px;
		height: 16px;
		display: inline-block;
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E");
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center;
	}

	.keune-logo {
		margin-left: auto;
		order: 2;
	}

	.keune-logo-link {
		font-size: 26px;
		letter-spacing: 0.04em;
	}

	.keune-menu--right {
		display: none;
	}
}