.header {
	width: 100%;
	z-index: 50;
	padding: 16px 0;
	position: fixed;
	background-color: #2a2a2a;
}

.header-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 20px;
	max-width: 1440px;
	margin: 0 auto;
	font-size: 0.8rem;
}

.logo-group {
	display: flex;
	align-items: center;
	gap: 20px;
}

.logo-container {
	color: white;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 20px;
}

.logo {
	width: 35px;
	height: 35px;
	object-fit: cover;
}

.logotype {
	width: 220px;
}

.logotype-back {
	width: 220px;
}

.center-nav {
	display: flex;
	gap: 10px; 
}

.center-link {
	font-size: 14px;
	color: white;
	font-weight: 600;
	padding: 8px 10px;
	border-radius: 5px;
	text-decoration: none;
	transition: color 0.3s, background-color 0.3s;
}

.center-link:hover {
	background-color: #3b3b3b;
	color: white;
}

.contact-cart-group {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.contactInfo {
	display: flex;
	flex-direction: column;
	align-items: end;
	gap: 0.4rem;
}

.contactInfo-item i {
	margin-right: 3px;
	font-size: 12px;
}

.contactInfo a,
.contact-text {
	color: white;
	font-weight: 600;
	font-size: 14px;
	text-decoration: none;
}

.contact-text:hover,
.center-link:hover,
.cart-icon:hover {
	color: #d4003f;
}

.cart-icon {
	font-size: 1.5rem;
	color: white;
	transition: color 0.3s;
}

.burger-icon {
	display: none;
	font-size: 2rem;
	color: white;
	cursor: pointer;
}
.mobile-menu {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #1a1a1a;
	z-index: 100;
	flex-direction: column;
	align-items: start;
	color: white;
	padding: 15px 20px;
	transition: 0.3s ease-in-out;
}

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

.mobile-menu-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

.close-icon {
	font-size: 2.35rem;
	margin: -1px 1px 0 0;
	color: white;
	cursor: pointer;
}

.mobile-menu-list {
	list-style-type: none;
	padding: 0;
	margin: 0;
	text-align: start;
	width: 100%;
}

.mobile-menu-item {
	margin: 20px 0;
	display: flex;
}

.mobile-menu-link {
	color: white;
	width: 100%;
	padding: 2.5px 0 2.5px 0;	
	font-weight: 600;
	font-size: 16px;
	text-decoration: none;
	transition: 0.3s ease-in-out;
}

.mobile-menu-link:hover {
	color: #d4003f;
}

.mobile-contact {
	text-align: start;
	width: 100%;
}

.mobile-contact-item {
	display: flex;
	align-items: center;
	margin: 10px 0;
}

.icon-phone,
.icon-mail {
	margin-right: 10px;
	color: white;
}

.mobile-contact-text {
	color: white;
	/* font-weight: 600; */
	text-decoration: none;
	/* font-size: 16px; */
}

.mobile-contact-text:hover {
	color: #d4003f;
}

.contact-cart {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 20px;
	/* padding-right: 35px; */
}

.cart-icon {
	position: relative;
	display: flex;
	align-items: center;
	text-decoration: none;
	color: #000;
	gap: 5px;
}

.cart-total-price {
	font-size: 14px;
	color: white;
	font-weight: bold;
}

body.no-scroll {
	overflow: hidden;
}

@media (max-width: 1200px) {
	.header {
	padding: 18px 0;
	}
	.logo {
	width: 32px;
	height: 32px;
	}
	.logo-container {
	gap: 10px;
	}
	.logotype {
	width: 200px;
	}
	.center-nav {
	display: flex;
	gap: 0; 
	}
	.contactInfo a,
	.contact-text {
	font-size: 12px;
	}
	.logo-group {
	gap: 10px;
	}
	.cart-total-price {
	font-size: 12px;
	}
	.center-link {
	font-size: 12px;
	}
	.contact-cart {
	gap: 10px;
	}
}

@media (max-width: 898px) {
	.header{
		padding: 17.5px 0 
	}	

	.cart-icon {
		gap: 7px;
		padding-right: 10px;
	}

	.cart-icon i {
		order: 2; /* Перемещаем иконку на второе место */
	}

	.cart-icon span {
		order: 1; /* Перемещаем сумму на первое место */
	}

	.contact-cart {
		gap: 10px;
		padding-right: 0px;
	}

	.contact-cart-group {
		display: none;
	}

	.logo {
		width: 32px;
		height: 32px;
	}

	.logotype {
		display: none;
	}

	.center-nav {
		display: none;
	}

	.burger-icon {
		display: block;
	}

	.nav,
	.contactInfo {
		display: none;
	}
}
