.header{
	display: grid;
	width:100%;
	/* height:120px; */
	background:#232F3E;
	padding: 16px 0 16px 0;
}
.header__section{
	position: relative;
	display: grid;
	grid-template-columns: 1fr 240px;
	gap: 20px;
	align-items: center;
	width:100%;
}
.header__section-container{display: flex;flex-direction: column;gap: 16px;}
.header__content{
	width: fit-content;
	display: flex;
	gap: 20px;
	width: 100%;
}
.header__content-logo{display: flex;gap: 18px;align-items: center;}

.header__logo{
	display: grid;
}
.sitelogo{
	display: grid;
	position: relative;
}
.sitelogo a{
	display: grid;
	position: relative;
	z-index: 5;
	display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
	text-decoration: none;
}
.logo-text{
	font-family: 'Roboto', sans-serif;
    font-size: 1.5em;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
}
.diamond-crystal{
	width: 28px;
    height: 28px;
    position: relative;
    transform: rotate(45deg);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.2));
    flex-shrink: 0
}
.diamond-crystal::before{
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 28px;
    height: 14px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    clip-path: polygon(0 100%, 50% 0%, 100% 100%);
}
.diamond-crystal::after{
	content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 14px;
    background: linear-gradient(45deg, #2980b9, #1f4e79);
    clip-path: polygon(0 0%, 50% 100%, 100% 0%);
}
/*.sitelogo a img{
	display:grid;
}*/

.header__search{
	display: grid;
	width: 100%;
}
.header__search form{
	width:100%;
	position: relative;
}
.header__search form input.header__search-form-input{
	width:100%;
	padding: 13px 10px 13px 60px;
	border-radius: 45px;
	background: #ffffff;
	color: #99A0A7;
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.header__search form .header__search-form-submit{
	position: absolute;
	left: 16px;
	top: 12px;
	background:transparent;
	border:none;
	padding:0;
	margin:0;
	background-image: url(../images/icons/search-header.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	width: 30px;
	height: 30px;
}
.header__phone{
	display:flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	gap:5px;
}
.header__phone svg{
	display: grid;
	width:20px;
	height:20px;
}
.header__phone .header__phone-label{
	color: #E3E6E8;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	opacity: 0.7;
	white-space: nowrap;
}
.header__phone a{
	text-decoration: none;
	color: #FFF;
	font-size: 14px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	white-space: nowrap;
}

.header__cart{
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap:5px;
	width:100%;
	padding:20px;
	border-radius: 5px;
	background: #37424F;
	box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.07);
}
.header__cart-icon{
	display: grid;
	width: 42px;
	height: 37px;
	position: relative;
}
.header__cart-icon svg{
	display: grid;
}
.header__cart-icon .header__cart-count{
	position: absolute;
	top: -10px;
	right: -10px;
	background: #28A744;
	color: #ffffff;
	font-size: 12px;
	width:20px;
	height:20px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.header__cart-count-number{
	color: #ffffff;
	text-align: center;
	font-size: 11px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}
.header__cart-content{
	display: flex;
	flex-direction: column;
	margin-left: 12px;
}
.header__cart-label{
	color: #FFF;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 16px;
	opacity:0.5;
}
.header__cart-price{
	color: #FFF;
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: 21px;
}
.header__cart a{
	text-decoration: none;
	margin-left: 10px;
}

/* Top bar */
.top__bar .container{
	display:flex;
	justify-content: space-between;
	align-items: center;
}
.top__bar-nav{
	display:flex;
	justify-content: space-between;
}
#top-bar-menu{
	display:flex;
	list-style: none;
	margin:0;
	padding:0;
}
#top-bar-menu li{
	display:flex;
}
#top-bar-menu li a{
	text-decoration: underline;
	color:#000000;
}
.top_bar-right{
	display:flex;
	gap:10px;
}
.top_bar-right ul{
	display:flex;
	gap:10px;
	margin:0;
	padding:0;
	list-style: none;
}
.top_bar-right ul li{
	display:flex;
}
.top_bar-right ul li a{
	text-decoration: underline;
	color:#000000;
}