.site-header{
	background: var(--primary-color);
	color:#fff;
	overflow: visible;
}
.header-top{
	display:flex;
	align-items:center;
	gap: 50px;
}
header .container {
	padding: 15px 80px;
}
.logo img{
	width: 160px;
}

.header-phone{
	display:flex;
	align-items:center;
	gap:8px;
	font-size: 18px;
}
.quote-btn{
	background:#fff;
	color:var(--primary-color);
	padding:10px 20px;
	border-radius:25px;
	font-weight:600;
}
.menu {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	justify-content: center;
}
.menu > li {
	position: relative;
}

.menu > li > a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 15px 20px;
	text-decoration: none;
	color: #fff;
}

.menu li:hover > a {
	background: none;
}

.menu > li > a i {
	transition: transform 0.2s ease-in-out;
	margin-left: 3px;
}

.menu-item:hover > a i {
	transform: rotate(180deg);
}
.angle-down {
	width: 8px;
	height: 8px;
	display: inline-block;
	position: relative;
}
.angle-down::before {
	content: '';
	position: absolute;
	inset: 0;
	border: solid currentColor;
	border-width: 0 2px 2px 0;   
	transform: rotate(45deg) translate(0%, -30%);
	display: block;
}
.mega-menu,
.image-dropdown,
.simple-list {
	opacity: 0;
	transform: translateY(-10px);
	visibility: hidden;
	transition: all 0.2s ease-in-out;
}
.menu-item.mega:hover .mega-menu,
.menu-item.has-image-dropdown:hover .image-dropdown,
.menu-item.simple-dropdown:hover .simple-list {
	opacity: 1;
	transform: translateY(-1);
	visibility: visible;
}
.mega-menu {
	position: absolute;
	left: 0;
	top: 100%;
	width: 750px;
	background: #fff;
	padding: 20px 20px 0 20px;

	box-shadow: 0 2px 8px rgba(0,0,0,0.15);
	z-index: 100;
	border-radius: 5px;
}
li.mega-col ul {
	padding: 0;
}
.mega-col li a {
	display: flex;
	align-items: center;
	padding: 5px 5px;
	color: #000;
	font-size: 14px;
	text-decoration: none;
	background: #f8f8f8;
	margin-bottom: 20px;
	border-radius: 5px;
}
.mega-col li a:hover,
.image-dropdown li a:hover {
	color: var(--primary-color);
	background: #f8f8f8;
}
.mega-col img {
	width: 70px;
	height: 70px;
	margin-right: 10px;
	object-fit: cover;
}
.image-dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	background: #fff;
	padding: 20px 20px 0;
	box-shadow: 0 2px 8px rgba(0,0,0,0.15);
	width: 250px;
	font-size: 14px;
	border-radius: 5px;
    z-index: 99;
}

.image-dropdown li a {
	display: flex;
	align-items: center;
	padding: 5px 10px;
	color: #000;
	text-decoration: none;
	background: #f8f8f8;
	margin-bottom: 20px;
	border-radius: 5px;

}
.image-dropdown img {
	width: 60px;
	height: 60px;
	margin-right: 10px;
	object-fit: cover;
}
.simple-list {
	position: absolute;
	top: 100%;
	left: 0;
	background: #fff;
	padding: 5px 0;
	box-shadow: 0 2px 8px rgba(0,0,0,0.15);
	width: 190px;
	border-radius: 5px;
    z-index: 99;
    list-style: none;
}
.simple-list li a {
	display: block;
	padding: 8px 15px;
	text-decoration: none;
	color: #000;
	font-size: 14px;
}
.simple-list li a:hover {
	color: var(--primary-color);
}
.mega-col li a.view-all,
.image-dropdown li a.view-all {
    margin-top: 20px;
    color: var(--primary-color);
    background: none;
}
.image-dropdown.two-col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 20px;
	width: 480px;
}
.menu-toggle {
	display: none;
	font-size: 24px;
	cursor: pointer;
}
.show-mobile {
	display: none;
}
.show-mobile.logo-wrap {
	display: none;
	justify-content: space-between;
	align-items: center;
	padding: 15px 0;
}
.main-nav .close-menu{
	font-size:24px;
	color:#000;
	cursor:pointer;
}
.mobile-buttons {
	display: none;
}
body.logged-in .user-logged-out,
body:not(.logged-in) .user-logged-in {
    display: none;
}
.user-account-item {
    position: relative;
    list-style-type: none;
    color: #fff;
}
.user-account-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    cursor: pointer;
}
.user-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}
.user-account-dropdown {
    display: none;
    position: absolute;
    left: 0;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    margin: 0;
    padding: 0;
    list-style: none;
    z-index: 100;
    box-sizing: border-box;
    width: 120px;
}
.user-account-item:hover .user-account-dropdown {
    display: block;
}
.user-account-dropdown li {
    padding: 8px 16px;
    color: #333;
    font-size: 14px;
    cursor: pointer;
}
.user-account-dropdown li:hover,
.user-account-dropdown li:hover a{
    background: #FB876B;
    color: #fff;
}
.user-account-item a{
    color: #333;
}
.cart-icon {
    width: 25px;
}
    .cart-wrapper {
      position: relative;
      display: inline-block;
    }
    .cart-icon {
      width: 28px;
      height: 28px;
      cursor: pointer;
      vertical-align: middle;
    }
.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #f28b7d;
    color: white;
    font-size: 11px;
    font-weight: bold;
    width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.cart-badge:empty,
.cart-badge:not(:has(*)) {
    display: none;
}
.cart-badge {
    display: none; 
}
.cart-badge:not(:empty) {
    display: inline-block;
}
.cart-button,
.cart-button:hover,
.cart-button:focus{
    position:relative; 
    background:none; 
    border:none; 
    padding:0; 
    cursor:pointer;
    outline: none;
}
@media (max-width: 600px) {
}  
@media (max-width:1024px){
	header .container {
		padding: 15px 20px;
	}
	.menu-toggle {
		display: block;
	}
	.header-top {
		flex-wrap: wrap;
	}
	.logo-menu-wrapper {
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 100%;
	}
	.main-nav{
		position:fixed;
		top:0;
		left:-200%;
		width:80%;
		height:100%;
		background:#fff;
		overflow-y:auto;
		transition:0.3s;
		z-index:9999;
		padding:20px;
		box-sizing: border-box;
	}
	.main-nav.active{
		left:0;
	}
	.menu{
		flex-direction:column;
	}
	.menu > li{
		border-bottom:1px solid #eee;
		width:100%;
	}
	.menu > li > a{
		justify-content:space-between;
		padding:15px 0;
		color: rgb(85 83 85 / 89%);
	}
	.menu-item:hover .mega-menu,
	.menu-item:hover .image-dropdown,
	.menu-item:hover .simple-list{
		opacity:0;
		visibility:hidden;
		transform:none;
	}
	.mega-menu,
	.image-dropdown,
	.simple-list{
		display:none;
		opacity:1;
		visibility:visible;
		transform:none;
		position:static;
		width:100%;
		box-shadow:none;
		padding:10px 0;
	}
	.mega-menu.active,
	.image-dropdown.active,
	.simple-list.active{
		display:block;
	}
	.menu > li > a i{
		transition:0.3s;
	}
	.menu > li > a i.active{
		transform:rotate(180deg);
	}
	.mega-menu.grid{
		grid-template-columns:1fr;
		width:100%;
	}
	.image-dropdown.two-col{
		grid-template-columns:1fr;
		width:100%;
	}
	.show-mobile.logo-wrap{
		display:flex;
	}
	.menu-item:hover > a i {
		transform: none;
	}
	.header-quote {
		display: none;
	}
	.header-cart.show-mobile {
		display: block;
	}
	.header-cart {
		display: none;
	}
	.searchbar {
		width: 100%;
	}
	.main-nav::after {
		content: "";
		position: fixed;
		top: 0;
		left: 80%;
		width: 20%;
		height: 100%;
		background: rgba(0,0,0,0.5);
		z-index: 999;
		opacity: 0;
		visibility: hidden;
	}
	.main-nav.active:after{
		opacity: 1;
		visibility: visible;
		transition: 0.1s;
		transition-delay: .3s;
	}
	.mobile-buttons {
		display: flex;
		flex-direction: column;
		gap: 10px;
		margin-top: 20px;
	}  
	.btn-primary {
		background: var(--primary-color);
		color: #fff;
		border: none;
		padding: 8px 12px;
		text-align: center;
		border-radius: 5px;
	}
	.btn-secondary {
		background: #fff;
		border: 1px solid var(--primary-color);
		padding: 8px 12px;
		text-align: center;
		color: var(--primary-color);
		border-radius: 5px;
	}
	.header-top {
		justify-content: space-between;
		gap: 20px;
	}
}