/*
Theme Name: Золотая нота
Author: keyaccount.ru
Version: 1.0
*/

:root {
	--font-jost: "Jost*", sans-serif;
	--container-padding: 2.5%;
	--color-body: #293845;
}

html {
	height: 100%;
	margin: 0px;
	overflow-x: hidden;
}

html[load] {scroll-behavior: smooth;}

body {
	font-family: var(--font-jost);
	font-optical-sizing: auto;
	font-size: 18px;
	font-weight: 400;
	color: var(--color-body);
	margin: 0px;
}

.common__container {
	width: 95%;
	max-width: 1573px;
	margin-left: auto;
	margin-right: auto;
}

.header {
	position: relative;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	z-index: 20;
}
.header__container {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 74px;
}
.header__logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 174px;
	height: 39px;
	background: var(--color-body);
	mask: url(assets/images/logo.svg) center center no-repeat;
	mask-size: contain;
	-webkit-mask: url(assets/images/logo.svg) center center no-repeat;
	-webkit-mask-size: contain;
}
.header__panel {
	display: flex;
	gap: 14px;
}
.header__items {
	display: flex;
	gap: 2px;
}
.header__item {
	position: relative;
	display: flex;
	box-sizing: border-box;
	align-items: center;
	justify-content: center;
	height: 44px;
	padding: 0px 22px;
	border-radius: 5px;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 30%;
	color: var(--color-body);
	background: #F8F8F8;
	border: 1px solid transparent;
	text-transform: uppercase;
	text-decoration: none;
	transition: 0.3s;
}
.header__item:hover {
	background: transparent; 
	backdrop-filter: blur(40px);
	border-color: var(--color-body);
}
.header__item-menu {
	padding-left: 17px;
	gap: 12px;
}
.header__item-menu:before {
	content: '';
	width: 22px;
	height: 22px;
	background: var(--color-body);
	mask: url(assets/images/icon-menu.svg) center center no-repeat;
	mask-size: contain; 
}
.header__item-icon {width: 44px;}
.header__item-icon:after {
	content: '';
	flex-shrink: 0;
	width: 17px;
	height: 17px;
	background: var(--color-body);
}
.header__item-search:after {
	mask: url(assets/images/icon-search.svg) center center no-repeat;
	mask-size: contain;
}
.header__item-profile:after {
	mask: url(assets/images/icon-profile.svg) center center no-repeat;
	mask-size: contain;
}
.header__item-cart:after {
	mask: url(assets/images/icon-cart.svg) center center no-repeat;
	mask-size: contain;
}
.header__item-counter {
	position: absolute;
	top: 50%;
	left: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	width: 18px;
	height: 18px;
	font-size: 12px;
	border-radius: 50%;
	background: var(--color-body);
	color: #fff;
	letter-spacing: 0;
	z-index: 5;
	transform: translate(5%, -100%);
}

.header__catalog {
	position: fixed;
	top: 0px;
	left: 0px;
	right: 0px;
	width: 100%;
	height: 100%;
	backdrop-filter: blur(10px);
}
.header__catalog-container {
	background: #fff;
	border-radius: 0px 0px 5px 0px;
}
.header__catalog-inner {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 74px;
	box-sizing: border-box;
	max-width: 1280px;
	width: 95%;
	padding: 122px 0px 64px 0px;
	margin: auto;
}
.header__catalog-categories {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.header__catalog-label {
	display: block;
	font-weight: 500;
	font-size: 12px;
	letter-spacing: 20%;
	color: var(--color-body);
	opacity: 0.4;
	text-transform: uppercase;
	margin-bottom: 18px;
}
.header__catalog-items {
	display: flex;
	flex-flow: column;
	gap: 18px;
}
.header__catalog-item {
	font-size: 16px;
	font-weight: 300;
	color: var(--color-body);
	text-decoration: none;
	transition: 0.3s;
}
