header { 
	position: fixed;
	top: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: var(--light-gray);
	width: 100%;
	height: var(--header-height);
	margin: 0;
	padding: 0;
	z-index: 1000;
	border-bottom: 1px solid #e2f5ee;
}

/* Header Main - Start */
.header-main {
	height: calc(var(--header-height) - var(--top-bar-height));
	align-items: center;
	flex-wrap: nowrap!important;
}
.header-main > div {
	display: flex;
	flex-direction: row;
	align-items: center;
}
.logo-header {
	display: flex;
	align-items: center;
}
nav.main-menu-wrapper {
	margin: 0 auto;
}
ul#main-menu-menu {
	display: flex;
	gap: 28px;
	font-family: var(--font-family-1);
	font-size: 18px;
	line-height: 20px;
	text-transform: uppercase;
}
ul#main-menu-menu > li {
	position: relative;
	padding: 20px 0;
}
ul#main-menu-menu > li:hover > a {
	color: var(--primary);
}
ul#main-menu-menu li.menu-item-has-children {
	position: relative;
}
ul.sub-menu {
	display: flex;
	flex-direction: column;
	position: absolute;
	top: calc(100% + 0px);
	left: -20px;
	list-style: none;
	min-width: max-content;
	background: var(--light-gray);
	padding: 10px 0;
	border-radius: 10px;
	box-shadow: 0 0 10px #ebe3e3;
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
	transition: all 0.3s ease;
}
li.menu-item-has-children.menu-open ul.sub-menu {
	visibility: visible;
	opacity: 1;
	pointer-events: all;
}
ul.sub-menu li {
	display: flex;
}
ul.sub-menu li a {
	display: flex;
	flex-grow: 1;
	background: var(--light-gray);
	padding: 10px 20px;
}
ul.sub-menu li a:hover {
	background: var(--primary);
	color: var(--white);
}
@media (max-width: 1279px) {
	.side-menu-call {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 6px;
		width: 44px;
		height: 44px;
		cursor: pointer;
		background: var(--primary);
		border-radius: 5px;
	}
	.side-menu-call > .menu-line {
		display: flex;
		width: 20px;
		height: 2px;
		background: var(--white);
		border-radius: 10px;
	}
}
@media (max-width: 667px) {
	.side-menu-call {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 7px;
		width: 30px;
		height: 30px;
		background: transparent;
		border-radius: 0px;
	}
	.side-menu-call > .menu-line {
		width: 33px;
		background: var(--black);
	}
}
.btn-circle.user-account {
	border: 1px solid var(--border);
	margin-left: 14px;
}

/* Lanuage Switcher - Start */
.language-wrapper {
	position: relative;
}
.language-wrapper .language-box {
	position: absolute;
	left: 0;
	right: 0;
	bottom: calc(-84px - 8px);
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	transition: all 0.5s ease;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}
.language-wrapper.active .language-box {
	opacity: 1;
	visibility: visible;
	pointer-events: all;
}
.language-wrapper .language-box a {
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: #fff;
	width: 38px;
	height: 38px;
	padding: 9px;
	border: 1px solid var(--border);
	border-radius: 100%;
	transition: all 0.5s ease;
}
.language-wrapper .language-box a:hover,
.language-wrapper .language-box a.gt-current-lang {
	background: var(--border);
}
/* Lanuage Switcher - End */

@media (max-width: 1279px) {
	.header-main {
		height: 50px;
	}
	.btn-sale {
		display: none !important;
	}
	.btn-catalog {
		order: -1;
		height: 30px !important;
		width: 30px !important;
		padding: 5px 5px !important;
	}
	.btn-catalog span {
		display: none !important;
	}
}
@media (max-width: 768px) {
	.logo-header {
		margin-right: auto;
	}
	.btn-catalog {
		padding: 6px 5px 5px 5px !important;
	}
	.user-account,
	.chating,
	.change-lang {
		display: none !important;
	}
	ul#shop-bar-menu > .menu-item:not(.woofc-menu-item) > a > span {
		visibility: hidden;
		font-size: 0;
		line-height: 0;
	}
	ul#shop-bar-menu > .menu-item > a > span:before,
	ul#shop-bar-menu > .menu-item > a > span:after {
		visibility: visible;
	}
	.woofc-menu-item-inner-subtotal::before {
		display: none;
	}
	.woosc-menu-item .woosc-menu-item-inner:after,
	.woosw-menu-item .woosw-menu-item-inner:after,
	.woofc-menu-item .woofc-menu-item-inner:after {
		width: 13px;
		height: 13px;
		line-height: 13px;
		right: -9px !important;
		top: -4px !important;
	}
}
/* Header Main - End */

/* Search - Start */
.search-wrapper {
	display: flex;
	flex-grow: 1;
}
.search-background {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	z-index: 1;
}
.search-wrapper.in-search .search-background {
	visibility: visible;
	pointer-events: all;
}
.search-wrapper .search-box .icon {
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	/* Left - Right */
	left: initial;
	right: 14px;
	/* Left - Right */
	width: 17px;
	height: 17px;
	background: url(/wp-content/themes/shop/img/icons/search.svg) no-repeat center center;
	background-size: contain;
	/* filter: url(#primary-color); */
	transition: all 0.5s ease;
	cursor: pointer;
	z-index: 2;
}
.search-wrapper.in-search .search-box .icon {
	background: url(/wp-content/themes/shop/img/icons/close.svg) no-repeat center center;
	background-size: contain;
}
.search-wrapper .search-box .input {
	font-family: var(--font-family-1);
	font-size: 14px;
	line-height: 14px;
	font-weight: 400;
	background: #f9f9f9;
	color: #676767;
	padding: 14px 14px 14px 14px;
	transform: translateY(0px);
}
.search-inline-pc {
	display: none;
}
.search-popup-mob {
	display: none;
}
.search-call-mob {
	display: none;
}
/* Search Result - Start */
#search-results {
	position: fixed;
	top: var(--header-height);
	display: flex;
	flex-direction: column;
	width: 628px;
	height: fit-content;
	min-height: 250px;
	max-height: 50vh;
	padding: 0 15px;
	background: var(--light-gray);
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
	box-shadow: 0px 2px 5px rgb(0 0 0 / 10%);
	overflow-y: auto;
	overflow-x: hidden;
	z-index: 2;
}
.no-result {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 250px;
}
.category-tabs {
	position: sticky;
	top: 0;
	list-style: none;
	display: flex;
	align-items: center;
	gap: 15px;
	width: 100%;
	min-height: calc(30px + 16px);
	padding: 15px 0;
	margin: 0 0 15px 0;
	background: var(--light-gray);
	overflow-x: auto;
	overflow-y: hidden;
	z-index: 1;
}
.category-tabs::-webkit-scrollbar {
	height: 6px;
}
.category-tabs a {
	display: flex;
	color: #c7c7c7;
	min-width: max-content;
	font-size: 16px;
	line-height: 16px;
}
.category-tabs a.active,
.category-tabs a:hover {
	color: var(--primary);
}
.view-all-results {
	position: sticky;
	bottom: -1px;
	display: flex;
	padding: 15px 0;
	margin-top: auto;
	background: var(--light-gray);
}
.tab-content {
	display: flex;
}
.tab-pane {
	display: none;
	flex-direction: column;
	gap: 15px;
	width: 100%;
}
.tab-pane.active {
	display: flex;
}
.product-item {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	width: 100%;
}
.product-item > a.product-link {
	display: flex;
	width: 50px;
}
.product-item > a.product-link > img {
	width: 50px;
	height: 50px;
	min-width: 50px;
	object-fit: cover;
	border-radius: 5px;
}
.product-item > .product-content {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	flex-grow: 1;
	gap: 15px;
}
.product-item .product-title-ajax {
	font-family: var(--font-family-1);
	font-size: 16px;
	line-height: 20px;
	font-weight: 500;
	color: var(--black);
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
}
.product-item .price {
	margin-left: auto;
	margin-right: 10px;
	font-family: var(--font-family-2);
	font-weight: 500;
	font-size: 16px;
	line-height: 16px;
}
.product-item .quantity-wrapper {
	display: flex;
	align-items: center;
	border: 1px solid #234B5A;
	border-radius: 60px;
}
.product-item .quantity-wrapper .qty {
	width: 25px;
	height: 40px;
	padding: 5px 5px 5px 5px;
	text-align: center;
	border: none;
}
.product-item .quantity-wrapper .change {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	width: 35px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 18px;
	line-height: 18px;
	padding-top: 0px;
}
.product-item .add-to-cart-container .add_to_cart_button,
.added_to_cart {
	display: none;
}
.product-item .add-to-cart-container .btn.search-to-cart {
	height: 32px !important;
	width: 32px !important;
	padding: 0;
}
.product-item .add-to-cart-container .btn.search-to-cart span {
	display: none;
}

/* Search Result - Start */
@media (min-width: 9999px) {
	.search-inline-pc {
		position: relative;
		display: flex;
		width: 100%;
		z-index: 2;
	}
	.search-wrapper.in-search .search-background {
		visibility: visible;
		pointer-events: all;
	}
}
@media (max-width: 9998px) {
	.search-call-mob {
		display: flex;
		margin-left: auto;
		cursor: pointer;
		width: 26px;
		min-width: 26px;
	}
	.search-wrapper {
		position: fixed;
		display: flex;
		justify-content: center;
		width: 100%;
		z-index: 10;
	}
	.search-background {
        background: #00000033;
		backdrop-filter: blur(2px);
	}
	.search-background.active {
		opacity: 1;
		visibility: visible;
		pointer-events: all;
	}
	.search-popup-mob {
		position: fixed;
		top: calc(var(--header-height) / 2);
		left: 0;
		right: 0;
		margin: 0 auto;
		width: 60%;
		max-width: 800px;
		padding: 15px;
		border: 1px solid #f3f3f3;
		border-radius: 15px;
		background: var(--light-gray);
		z-index: 2;
		display: flex;
		justify-content: center;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
	}
	.search-popup-mob.active {
		opacity: 1;
		visibility: visible;
		pointer-events: all;
	}
	.search-wrapper .search-box .icon {
		top: calc(25px + 10px);
		right: calc(25px + 10px);
	}
	#search-results {
		top: calc(var(--header-height) / 2 + 61px);
		left: 0;
		right: 0;
		margin: 0 auto;
	}
}
@media (max-width: 768px) {
	.search-background {
		background: rgb(0 0 0 / 5%);
		backdrop-filter: blur(0px);
	}
	.search-popup-mob {
		top: var(--header-height);
		width: 100%;
		border-radius: 0px;
	}
	#search-results {
		top: calc(var(--header-height) + 61px);
		width: 100%!important;
		max-height: 70vh;
	}
	.product-item {
		align-items: flex-start;
	}
	.product-item > .product-content {
		gap: 8px 10px;
	}
	.product-item .product-title-ajax {
		width: calc(100% - 50px - 10px);
		padding-right: calc(32px + 10px);    
		font-size: 14px;
		line-height: 18px;
	}
	.product-item .price {
		margin-left: 0;
		margin-right: 60%;
		font-size: 14px;
		line-height: 14px;
	}
	.product-item .quantity-wrapper .change {
		height: 30px;
		width: 30px;
		font-size: 16px;
		line-height: 16px;
		padding-bottom: 2px;
	}
	.product-item .quantity-wrapper .qty {
		width: 24px;
		height: 24px;
	}
	.add-to-cart-container {
		position: absolute;
		top: 0;
		right: 0;
	}
}
/* Search - End */

/* Shop Functions Group - Start */
.shop-functions-group {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-left: 16px;
}
.header-shop-button {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	width: auto;
	height: auto;
}
.header-shop-button img {
	width: 24px;
	height: 24px;
	object-fit: contain;
}
.compare-counter, .cart-counter, .wishlist-counter {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	font-size: 18px;
	line-height: 18px;
	font-weight: 500;
}
.compare-label, .cart-label, .wishlist-label {
	font-size: 12px;
	margin-top: 4px;
	color: var(--black);
}
.compare-counter:empty, .cart-counter:empty, .wishlist-counter:empty {
	display: none;
}
.user-account {
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
.account-dropdown {
	top: 100%;
	right: 0;
	left: auto;
	min-width: 150px;
	z-index: 10;
}

@media (max-width: 1279px) {
	.shop-functions-group {
		gap: 10px;
	}
	.compare-label, .cart-label, .wishlist-label {
		display: none;
	}
	.logo-header {
		margin: 0 auto 0 16px;
	}
	.logo-header img {
		width: 98px;
		object-fit: contain;	
	}
	.btn-catalog {
		order: -1;
		height: 38px;
		width: 38px;
		min-width: auto;
		padding: 0 !important;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.btn-catalog span {
		display: none;
	}
}
/* Shop Functions Group - End */
