:root {
	--kw-blue: #063e72;
	--kw-blue-dark: #032f59;
	--kw-orange: #ff681d;
	--kw-text: #18243a;
	--kw-border: #e7edf4;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: Arial, Helvetica, sans-serif;
	color: var(--kw-text);
}

.container {
	width: min(1180px, calc(100% - 40px));
	margin: 0 auto;
}


/* =========================
   HEADER
========================= */

.site-header {
	position: relative;
	z-index: 1000;
	background: #fff;
	border-bottom: 1px solid var(--kw-border);
}

.header-inner {
	height: 76px;

	display: flex;
	align-items: center;
	justify-content: space-between;

	gap: 35px;
}


/* Logo */

.site-logo {
	flex-shrink: 0;
}

.site-logo a {
	display: flex;
	align-items: center;
	text-decoration: none;
}

.site-logo img {
	width: auto;
	max-width: 190px;
	max-height: 48px;
	display: block;
}

.logo-text {
	font-size: 24px;
	font-weight: 800;
	letter-spacing: -1px;
}

.logo-kho {
	color: var(--kw-blue);
}

.logo-com {
	color: var(--kw-orange);
}


/* Navigation */

.main-navigation {
	flex: 1;
}

.main-menu {
	padding: 0;
	margin: 0;

	display: flex;
	align-items: center;
	justify-content: center;

	gap: 32px;

	list-style: none;
}

.main-menu li {
	position: relative;
}

.main-menu a {
	position: relative;

	display: block;

	color: #334155;

	font-size: 15px;
	font-weight: 600;

	text-decoration: none;

	padding: 27px 0;

	transition: .2s;
}

.main-menu a:hover {
	color: var(--kw-orange);
}

.main-menu a:after {
	content: "";

	position: absolute;

	left: 50%;
	bottom: 18px;

	width: 0;
	height: 2px;

	background: var(--kw-orange);

	transform: translateX(-50%);

	transition: .25s;
}

.main-menu a:hover:after,
.main-menu .current-menu-item > a:after {
	width: 22px;
}


/* Actions */

.header-actions {
	display: flex;
	align-items: center;
	gap: 13px;

	flex-shrink: 0;
}

.header-search-btn,
.header-cart,
.mobile-menu-toggle {
	border: 0;
	background: transparent;
	padding: 7px;
	color: var(--kw-blue);
	cursor: pointer;
}

.header-search-btn {
	display: flex;
	align-items: center;
	justify-content: center;
}


/* Cart */

.header-cart {
	position: relative;

	display: flex;
	align-items: center;

	text-decoration: none;
}

.cart-count {
	position: absolute;

	top: 0;
	right: -1px;

	width: 16px;
	height: 16px;

	display: flex;
	align-items: center;
	justify-content: center;

	background: var(--kw-orange);
	color: #fff;

	font-size: 9px;
	font-weight: 700;

	border-radius: 50%;
}


/* Login */

.header-login {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	height: 40px;

	padding: 0 20px;

	background: var(--kw-blue);

	color: #fff;

	font-size: 14px;
	font-weight: 600;

	text-decoration: none;

	border-radius: 8px;

	box-shadow: 0 5px 15px rgba(6, 62, 114, .15);

	transition: .2s;
}

.header-login:hover {
	background: var(--kw-orange);
	color: #fff;
}


/* Mobile menu toggle */

.mobile-menu-toggle {
	width: 42px;
	height: 42px;

	display: none;

	flex-direction: column;
	align-items: center;
	justify-content: center;

	gap: 5px;
}

.mobile-menu-toggle span {
	width: 23px;
	height: 2px;

	background: var(--kw-blue);

	border-radius: 3px;
}


/* Mobile nav */

.mobile-navigation {
	display: none;

	background: #fff;

	border-top: 1px solid var(--kw-border);

	box-shadow: 0 8px 20px rgba(0,0,0,.05);
}

.mobile-navigation.active {
	display: block;
}

.mobile-menu {
	list-style: none;

	padding: 15px 0;
	margin: 0;
}

.mobile-menu li {
	border-bottom: 1px solid #edf1f5;
}

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

.mobile-menu a {
	display: block;

	padding: 14px 0;

	color: #253449;

	font-weight: 600;

	text-decoration: none;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 950px) {

	.main-navigation {
		display: none;
	}

	.header-inner {
		height: 68px;
	}

	.header-login {
		display: none;
	}

	.mobile-menu-toggle {
		display: flex;
	}

}


@media (max-width: 600px) {

	.container {
		width: min(100% - 30px, 1180px);
	}

	.site-logo img {
		max-width: 155px;
	}

	.logo-text {
		font-size: 20px;
	}

	.header-search-btn {
		display: none;
	}

}