/* Header Top - Start */
header { 
	position: fixed;
	top: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: var(--black);
	width: 100%;
	height: var(--header-height);
	margin: 0;
	padding: 0;
	z-index: 1000;
	border-bottom: 1px solid #403e3e;
}
header::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: var(--top-bar-height);
	background: #262626;
}
.header-top {
	height: var(--top-bar-height);
	align-items: center;
	flex-wrap: nowrap!important;
}
.top-bar-adress {
	display: flex;
	align-items: center;
	gap: 11px;
}
.top-bar-adress span {
	margin-top: 1px;
	color: var(--white);
}
.top-bar-menu {
	display: flex;
	justify-content: space-between;
	width: 100%;
	height: 10px;
}
.top-bar-menu .menu {
	font-size: 12px;
	line-height: 12px;
	font-family: var(--font-family-2);
	color: var(--white);
}
#top-bar-menu a:hover {
	color: var(--primary);
}
.top-bar-phone {
	display: flex;
	gap: 5px;
	align-items: center;
	justify-content: center;
	margin-left: auto;
}
.top-bar-phone img {
	filter: brightness(0) invert(1);
}
.top-bar-phone a {
	padding-top: 3px;
	color: var(--white);
}
.top-bar-call-back {
	margin-top: 1px;
}
.top-bar-call-back a {
	color: #a2a2a2;
}
@media (max-width: 1279px) {
	.header-top {
		display: none !important;
	}
	header::before {
		display: none !important;
	}
}
/* Header Top - End */

/* Header Main - Start */
.header-main {
	height: calc(var(--header-height) - var(--top-bar-height));
	align-items: center;
	flex-wrap: nowrap!important;
}
.logo-header {
	display: flex;
	align-items: center;
	padding-right: 15px;
	border-right: 1px solid #EDEDED;
}
.btn-catalog picture {
	transition: all 0.3s ease-in-out;
}
.btn-catalog .close-menu {
	opacity: 0;
	visibility: hidden;
	position: absolute;
	transition: all 0.3s ease-in-out;
}
@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: 6px;
		width: 40px;
		height: 40px;
		background: var(--primary);
		border-radius: 8px;
	}
	.side-menu-call > .menu-line {
		width: 21px;
		background: var(--white);
	}
}
.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) {
	.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;
	}
	.logo-header {
		padding-right: 0;
		border-right: none;
	}
	.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;
	width: 700px;
	margin-left: auto;
	padding-right: 15px;
	border-right: 1px solid #EDEDED;
}
.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: initial;
	right: 8px;
	transition: all 0.5s ease;
	cursor: pointer;
	z-index: 2;
	width: fit-content;
	background: #fff;
	color: #303030;
	font-weight: 500;
	font-family: var(--font-family-2);
	border-radius: 100px;
	padding: 5px 12px 5px 15px;
	height: 29px;
	display: flex;
	align-items: center;
	gap: 8px;
}
.search-wrapper.in-search .search-box .icon  {
	padding: 5px 8px 5px 8px;
}
.search-wrapper .search-box .icon span {
	transform: translate(0px, 1px);
}
.search-wrapper .search-box .icon img:nth-child(3) {
	display: none;
}
.search-wrapper.in-search .search-box .icon img:nth-child(3) {
	display: block;
}
.search-wrapper.in-search .search-box .icon img:nth-child(2) {
	display: none;
}
.search-wrapper.in-search .search-box .icon span {
	display: none;
}
.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: 700px !important;
	height: fit-content;
	min-height: 250px;
	max-height: 50vh;
	padding: 0 15px;
	background: var(--black);
	border-bottom-right-radius: 15px;
	border-bottom-left-radius: 15px;
	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(--black);
	overflow-x: auto;
	overflow-y: hidden;
	z-index: 1;
}
.category-tabs::-webkit-scrollbar {
	height: 6px;
}
.category-tabs a {
	display: flex;
	color:  var(--white);
	min-width: max-content;
	font-size: 16px;
	line-height: 16px;
}
.category-tabs a.active,
.category-tabs a:hover {
	color: var(--white);
}
.view-all-results {
	position: sticky;
	bottom: -1px;
	display: flex;
	padding: 15px 0;
	margin-top: auto;
	background: var(--black);
}
.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;
	flex-grow: 1;
	gap: 10px;
	flex-direction: column;
}
.product-item .product-title-ajax {
	font-family: var(--font-family-1);
	font-size: 16px;
	line-height: 20px;
	font-weight: 500;
	color: var(--white);
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
}
.product-item .price {
	font-family: var(--font-family-2);
	font-weight: 500;
	font-size: 14px;
	line-height: 14px;
}
.product-item .quantity-input {
	display: none;
}
.product-item .add-to-cart-container {
	display: none;
}
.product-item .quantity-wrapper {
	display: flex;
	align-items: center;
	border: 1px solid var(--border);
	border-radius: 5px;
}
.product-item .quantity-wrapper .qty {
	width: 40px;
	height: 32px;
	padding: 5px 5px 3px 5px;
	text-align: center;
}
.product-item .quantity-wrapper .change {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 32px;
	width: 32px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 18px;
	line-height: 18px;
	padding-top: 2px;
}
.product-item .quantity-wrapper .change:hover {
	background: #f8f8f8;
}
.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: 1280px) {
	.search-inline-pc {
		position: relative;
		display: flex;
		width: 100%;
		z-index: 2;
	}
	.search-inline-pc input {
		background: #414141;
		border-radius: 100px;
		padding-left: 25px;
		padding-top: 14px;
		padding-bottom: 14px;
	}

	.search-wrapper.in-search .search-background {
		visibility: visible;
		pointer-events: all;
	}
}
@media (max-width: 1279px) {
	.search-call-mob {
		display: flex;
		margin-left: auto;
		margin-right: -5px;
		cursor: pointer;
		width: 26px;
		min-width: 26px;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		cursor: pointer;
		width: 40px;
		height: 40px;
		background: #383838;
		border-radius: var(--border-radius-100);
	}
	.search-call-mob img {
		width: 16px;
		height: 16px;
		filter: var(--white-filter);
		object-fit: contain;
	}
	.search-wrapper {
		position: fixed;
		display: flex;
		justify-content: center;
		width: 100%;
		z-index: 10;
	}
	.search-background {
		background: #00000000;
		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: 10px;
		border-radius: 10px;
		background: #2d2d2d;
		z-index: 2;
		display: flex;
		justify-content: center;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
	}
	.search-popup-mob input {
		background: #414141;
		border-radius: 100px;
		padding-left: 20px;
	}
	.search-popup-mob.active {
		opacity: 1;
		visibility: visible;
		pointer-events: all;
	}
	.search-wrapper .search-box .icon {
		top: calc(14px + 22px);
		right: calc(14px + 8px);
		padding: 5px 5px 5px 5px;
		height: 29px;
		width: 29px;
		align-items: center;
		justify-content: center;
	}
	#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: 5px 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: 24px;
		width: 24px;
		font-size: 16px;
		line-height: 16px;
		padding-top: 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: 10px;
}
.header-shop-button {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	width: 45px;
	height: 45px;
	background: #383838;
	border-radius: var(--border-radius-100);
}
.header-shop-button img {
	width: 18px;
	height: 18px;
	object-fit: contain;
}
.compare-counter, .cart-counter, .wishlist-counter {
	position: absolute;
	top: -2px;
	right: -2px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 17px;
	height: 17px;
	background: #fff;
	color: #303030;
	border-radius: 50%;
	font-size: 10px;
	font-weight: 600;
}
.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;
}
header .user-account {
	margin-left: 10px;
}
header .target-user-account {
	font-weight: 400;
	font-family: var(--font-family-2);
	cursor: pointer;
}
.account-dropdown {
	top: 100%;
	right: 0;
	left: auto;
	min-width: 150px;
	z-index: 10;
}

@media (max-width: 1279px) {
	.shop-functions-group {
		gap: 5px;
	}
	.compare-label, .cart-label, .wishlist-label {
		display: none;
	}
	.logo-header img {
		width: 64px;
	}
	.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;
	}
	.header-shop-button {
		width: 40px;
		height: 40px;
	}
	.header-shop-button img {
		width: 16px;
		height: 16px;
	}
	.compare-counter, .cart-counter, .wishlist-counter {
		top: -1px;
		right: -1px;
		width: 15px;
		height: 15px;
	}
	header .target-user-account {
		display: none;
	}
}
/* Shop Functions Group - End */
