input {
	font-family: unset !important;
}
 .header-desktop-components .promo-banner {
	 background-color: #800200;
	 color: white;
	 text-align: center;
	 padding: 8px 0;
	 font-size: 14px;
	 font-weight: 500;
}
 .header-desktop-components .promo-banner a {
	 color: white;
	 text-decoration: underline;
}
 .header-desktop-components .header {
	 background-color: white;
	 box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	 padding: 0 20px;
}
 .header-desktop-components .header-content {
	 margin: 0 auto;
	 display: flex;
	 align-items: center;
	 justify-content: space-between;
	 height: 70px;
}
 .header-desktop-components .logo {
	 display: flex;
	 align-items: center;
	 gap: 30px;
}
 .header-desktop-components .logo-icon {
	 width: 70px;
	 height: 70px;
	 border-radius: 4px;
	 display: flex;
	 align-items: center;
	 justify-content: center;
	 color: white;
	 font-weight: bold;
	 font-size: 18px;
}
 .header-desktop-components .logo-text {
	 font-size: 16px;
	 font-weight: 600;
	 color: #333;
}
 .header-desktop-components .nav-menu {
	 display: flex;
	 align-items: center;
	 gap: 30px;
	 list-style: none;
}
 .header-desktop-components .nav-item {
	 position: relative;
}
 .header-desktop-components .nav-link {
	 text-decoration: none;
	 color: #333;
	 font-weight: 500;
	 font-size: 15px;
	 padding: 8px 0;
	 transition: color 0.3s ease;
	 display: flex;
	 align-items: center;
	 gap: 4px;
}
 .header-desktop-components .nav-link:hover {
	 color: #bf0208;
}
 .header-desktop-components .nav-link.active {
	 color: #bf0208;
}
 .header-desktop-components .dropdown-arrow {
	 width: 0;
	 height: 0;
	 border-left: 4px solid transparent;
	 border-right: 4px solid transparent;
	 border-top: 4px solid currentColor;
}
 .header-desktop-components .header-actions {
	 display: flex;
	 align-items: center;
	 gap: 15px;
}
 .header-desktop-components .search-icon {
	 width: 20px;
	 height: 20px;
	 cursor: pointer;
	 color: #543ee8;
}
 .header-desktop-components .login-btn {
	 background-color: white;
	 border: 2px solid #333;
	 color: #333;
	 padding: 8px 16px;
	 border-radius: 20px;
	 font-size: 14px;
	 font-weight: 500;
	 cursor: pointer;
	 transition: all 0.3s ease;
}
 .header-desktop-components .login-btn:hover {
	 background-color: #333;
	 color: white;
}
 .header-desktop-components .mobile-menu-btn {
	 display: none;
	 background: none;
	 border: none;
	 cursor: pointer;
	 padding: 8px;
	 border-radius: 4px;
}
 .header-desktop-components .mobile-menu-btn:hover {
	 background-color: #f5f5f5;
}
 .header-desktop-components .hamburger {
	 width: 24px;
	 height: 18px;
	 position: relative;
}
 .header-desktop-components .hamburger span {
	 display: block;
	 height: 2px;
	 width: 100%;
	 background-color: #333;
	 margin-bottom: 4px;
	 transition: all 0.3s ease;
}
 .header-desktop-components .hamburger span:last-child {
	 margin-bottom: 0;
}
 .header-desktop-components .mobile-menu-overlay {
	 display: none;
	 position: fixed;
	 top: 0;
	 left: 0;
	 width: 100%;
	 height: 100vh;
	 background-color: rgba(0, 0, 0, 0.5);
	 z-index: 998;
}
 .header-desktop-components .mobile-menu {
	 display: none;
	 position: fixed;
	 top: 0;
	 right: -300px;
	 width: 280px;
	 height: 100vh;
	 background-color: white;
	 z-index: 999;
	 padding: 20px;
	 overflow-y: auto;
	 transition: right 0.3s ease;
	 box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}
 .header-desktop-components .mobile-menu.active {
	 right: 0;
	 display: block;
}
 .header-desktop-components .mobile-menu-header {
	 display: flex;
	 justify-content: space-between;
	 align-items: center;
	 margin-bottom: 30px;
	 padding-bottom: 20px;
	 border-bottom: 1px solid #eee;
}
 .header-desktop-components .close-btn {
	 background: none;
	 border: none;
	 font-size: 24px;
	 cursor: pointer;
	 padding: 8px;
	 border-radius: 4px;
}
 .header-desktop-components .close-btn:hover {
	 background-color: #f5f5f5;
}
 .header-desktop-components .mobile-nav-menu {
	 list-style: none;
	 padding: 0;
	 margin: 0;
}
 .header-desktop-components .mobile-nav-item {
	 margin-bottom: 8px;
}
 .header-desktop-components .mobile-nav-link {
	 text-decoration: none;
	 color: #333;
	 font-weight: 500;
	 font-size: 16px;
	 padding: 12px 16px;
	 display: block;
	 border-radius: 8px;
	 transition: all 0.3s ease;
	 display: flex;
	 align-items: center;
	 gap: 0px 10px;
}
 .header-desktop-components .mobile-nav-link:hover, .header-desktop-components .mobile-nav-link.active {
	 background-color: #543ee8;
	 color: white;
}
 .header-desktop-components .mobile-actions {
	 margin-top: 30px;
	 padding-top: 20px;
	 border-top: 1px solid #eee;
}
 .header-desktop-components .mobile-login-btn {
	 width: 100%;
	 background-color: white;
	 border: 2px solid #333;
	 color: #333;
	 padding: 12px 16px;
	 border-radius: 8px;
	 font-size: 16px;
	 font-weight: 500;
	 cursor: pointer;
	 transition: all 0.3s ease;
}
 .header-desktop-components .mobile-login-btn:hover {
	 background-color: #333;
	 color: white;
}
 @media (max-width: 1024px) {
	 .header-desktop-components .nav-menu {
		 gap: 20px;
	}
	 .header-desktop-components .nav-link {
		 font-size: 13px;
	}
}
 @media (max-width: 900px) {
	 .header-desktop-components .nav-menu {
		 display: none;
	}
	 .header-desktop-components .mobile-menu-btn {
		 display: block;
	}

	 .header-desktop-components .header-content {
		 padding: 0 15px;
	}
	 .header-desktop-components .header-actions {
		 gap: 10px;
	}
}
 @media (max-width: 480px) {
	 .header-desktop-components .promo-banner {
		 font-size: 12px;
		 padding: 6px 10px;
	}
	 .header-desktop-components .header-content {
		 height: 60px;
		 padding: 0 10px;
	}
	 .header-desktop-components .logo-text {
		 font-size: 14px;
	}
	 .header-desktop-components .logo-icon {
		 width: 67px;
		 height: 40px;
		 font-size: 16px;
	}
	 .header-desktop-components .search-icon {
		 width: 18px;
		 height: 18px;
	}
	 .header-desktop-components .login-btn {
		 padding: 6px 12px;
		 font-size: 13px;
	}
}
 

.popup-search {
	position: relative;
	z-index: 999999;
}
.popup-search .search-overlay.active {
	opacity: 1;
	visibility: visible;
}
.popup-search .search-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 45%;
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(4px);
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}
.popup-search .search-popup.active {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}
.popup-search .search-popup {
	position: fixed;
	top: 14%;
	left: 50%;
	transform: translateX(-50%) translateY(-20px);
	width: 90%;
	max-width: 100%;
	background: white;
	border-radius: 12px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
	z-index: 1001;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.popup-search .close-btn {
	position: absolute;
	top: -9px;
	right: 0px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease;
	z-index: 999999;
}
.popup-search .close-icon {
	width: 30px;
	height: 30px;
	color: #646060;
}
.popup-search .popup-search-container {
	position: relative;
	padding: 40px 20px;
}
.popup-search .popup-search-input {
	width: 100%;
	padding: 15px 50px 15px 20px;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	font-size: 16px;
	background: #f9fafb;
	outline: none;
	transition: all 0.2s ease;
}
.popup-search .popup-search-icon {
	position: absolute;
	right: 35px;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	color: #9ca3af;
	padding: unset;
	background: none;
}
ul.nav-sub-menuc2 {
    position: absolute;
    width: 226px;
    background: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    z-index: 9;
    display: none;
}

ul.nav-sub-menuc2 li a {
    padding: 6px 20px;
    display: block;
}

.header-desktop-components .nav-item:hover .nav-sub-menuc2{
    display:block;
}



.mobile-nav-menu {
	list-style: none;
	padding: 0;
	margin: 0;
  }
  
  
  
  .mobile-nav-link {
	display: block;
	padding: 12px 16px;
	text-decoration: none;
	color: #333;
  }
  
  .mobile-nav-link.active {
	background: #f2f2f2;
	font-weight: bold;
  }
  
  .has-submenu .submenu {
	display: none;
	list-style: none;
	padding-left: 20px;
	background: #fafafa;
  }
  
  .has-submenu.open .submenu {
	display: block;
  }
  
  .submenu li a {
	display: block;
	padding: 10px 16px;
	color: #555;
  }
  

  @media(max-width:990px){
	.header-desktop-components .header {
		padding: 0 0px;
	}
  }