.te-ch-category-menu {
	position: relative;
	z-index: 20;
	width: 100%;
	font-family: inherit;
}

.te-ch-category-menu,
.te-ch-category-menu * {
	box-sizing: border-box;
}

.te-ch-category-menu a {
	color: black;
	text-decoration: none;
}

.te-ch-category-menu__toggle {
	display: none;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	width: 100%;
	min-height: 48px;
	padding: 0 16px;
	border: 0;
	background: #ffffff;
	color: #000000;
	font-family: inherit;
	font-size: 13px;
	font-weight: 600;
	line-height: 1;
	text-transform: uppercase;
	cursor: pointer;
}

.te-ch-category-menu__toggle-lines,
.te-ch-category-menu__toggle-lines::before,
.te-ch-category-menu__toggle-lines::after {
	display: block;
	width: 20px;
	height: 2px;
	background: currentColor;
	content: "";
}

.te-ch-category-menu__toggle-lines {
	position: relative;
}

.te-ch-category-menu__toggle-lines::before,
.te-ch-category-menu__toggle-lines::after {
	position: absolute;
	left: 0;
}

.te-ch-category-menu__toggle-lines::before {
	top: -6px;
}

.te-ch-category-menu__toggle-lines::after {
	top: 6px;
}

.te-ch-category-menu__toggle:hover,
.te-ch-category-menu__toggle:focus,
.te-ch-category-menu.is-mobile-open .te-ch-category-menu__toggle {
	color: #ff4f16;
}

.te-ch-category-menu__top-list {
	display: flex;
	align-items: stretch;
	gap: 0;
	min-height: 56px;
	margin: 0;
	padding: 0;
	border-top: 1px solid #eeeeee;
	border-bottom: 1px solid #eeeeee;
	background: #ffffff;
	list-style: none;
}

.te-ch-category-menu__mobile-panel {
	display: none;
}

.te-ch-category-menu__item {
	position: static;
	display: flex;
	align-items: stretch;
	margin: 0;
}

.te-ch-category-menu__top-link {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	min-height: 56px;
	padding: 0 14px;
	border: 0;
	background: transparent;
	font-size: 13px;
	font-weight: 500;
	font-family: inherit;
	line-height: 1.2;
	text-transform: uppercase;
	white-space: nowrap;
	cursor: pointer;
}

.te-ch-category-menu__top-link:hover,
.te-ch-category-menu__top-link:focus,
.te-ch-category-menu__item.is-active > .te-ch-category-menu__top-link {
	color: #ff4f16;
}

.te-ch-category-menu__chevron {
	width: 8px;
	height: 8px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: translateY(-2px) rotate(45deg);
}

.te-ch-category-menu__panel {
	position: fixed;
	top: var(--te-ch-category-menu-panel-top, 0px);
	left: 50vw;
	display: block;
	visibility: hidden;
	width: min(calc(100vw - 32px), var(--wp--style--global--wide-size, 1340px));
	max-width: calc(100vw - 32px);
	height: auto;
	max-height: var(--te-ch-category-menu-panel-max-height, min(640px, calc(100vh - var(--te-ch-category-menu-panel-top, 0px) - 32px)));
	overflow-y: auto;
	scrollbar-color: #ff5a1f #f2f2f2;
	scrollbar-width: thin;
	margin-left: 0;
	opacity: 0;
	pointer-events: none;
	transform: translateX(-50%) translateY(-10px);
	background: #ffffff;
	border-top: 1px solid #f0f0f0;
	box-shadow: 0 22px 58px rgba(0, 0, 0, 0.16);
	color: #171717;
	z-index: 999;
	transition:
		opacity 180ms ease,
		transform 180ms ease,
		visibility 0s linear 220ms;
}

.te-ch-category-menu__panel::-webkit-scrollbar {
	width: 10px;
}

.te-ch-category-menu__panel::-webkit-scrollbar-track {
	background: #f2f2f2;
}

.te-ch-category-menu__panel::-webkit-scrollbar-thumb {
	background: #ff5a1f;
	border-radius: 999px;
}

.te-ch-category-menu__panel::-webkit-scrollbar-thumb:hover {
	background: #e94710;
}

.te-ch-category-menu__view {
	display: none;
}

.te-ch-category-menu__view.is-active {
	display: block;
}

.te-ch-category-menu__item:hover > .te-ch-category-menu__panel,
.te-ch-category-menu__item:focus-within > .te-ch-category-menu__panel {
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
	transform: translateX(-50%) translateY(0);
	transition-delay: 0s;
}

.te-ch-category-menu.is-scroll-hidden .te-ch-category-menu__panel {
	visibility: hidden !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

.te-ch-category-menu__panel-head {
	display: grid;
	grid-template-columns: minmax(220px, 1fr) minmax(240px, 340px);
	gap: 24px;
	align-items: center;
	padding: 20px clamp(20px, 4vw, 48px);
	background: #f9f9f9;
}

.te-ch-category-menu__heading {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 8px 16px;
	align-items: center;
	align-self: center;
}

.te-ch-category-menu__heading .te-ch-category-menu__title {
	grid-column: 1 / -1;
}

.te-ch-category-menu__back {
	display: inline-grid;
	place-items: center;
	width: 36px;
	height: 24px;
	padding: 0;
	border: 1px solid #d8d8d8;
	border-radius: 4px;
	background: #ffffff;
	color: #000000;
	font-size: 20px;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
}

.te-ch-category-menu__back:hover,
.te-ch-category-menu__back:focus {
	border-color: #ff4f16;
	color: #ff4f16;
}

.te-ch-category-menu__parent-title {
	color: #8a8a8a;
	font-size: 13px;
	line-height: 1.2;
}

.te-ch-category-menu__title {
	display: inline-flex;
	width: fit-content;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.15;
}

.te-ch-category-menu__title:hover,
.te-ch-category-menu__title:focus {
	color: #ff4f16;
}

.te-ch-category-menu__quick-links {
	display: grid;
	justify-self: end;
	gap: 12px;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.25;
	text-align: left;
}

.te-ch-category-menu__quick-links a {
	display: inline-flex;
	gap: 4px;
	align-items: baseline;
	width: fit-content;
}

.te-ch-category-menu__quick-links strong {
	font-weight: 700;
}

.te-ch-category-menu__quick-links a::before {
	content: "\00bb";
	margin-right: 10px;
	color: currentColor;
}

.te-ch-category-menu__quick-links a:nth-child(n+2) {
	color: #f21919;
}

.te-ch-category-menu__panel-body {
	padding: 40px clamp(24px, 5vw, 76px) 50px;
}

.te-ch-category-menu__panel--combined {
	overflow: hidden;
}

.te-ch-category-menu__combined {
	display: grid;
	grid-template-columns: 300px minmax(0, 1fr);
	max-height: inherit;
}

.te-ch-category-menu__combined-tabs {
	display: grid;
	align-content: start;
	max-height: inherit;
	overflow-y: auto;
	background: #f7f7f7;
	border-right: 1px solid #ececec;
}

.te-ch-category-menu__combined-tab {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 12px;
	align-items: center;
	width: 100%;
	min-height: 47px;
	padding: 6px 16px;
	border: 0;
	border-bottom: 1px solid #e5e5e5;
	background: #ffffff;
	color: #111111;
	cursor: pointer;
	font: inherit;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.2;
	text-align: left;
}

.te-ch-category-menu__combined-tab span:first-child {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.te-ch-category-menu__combined-tab span:last-child {
	color: #ff5a1f;
	font-size: 18px;
	line-height: 1;
}

.te-ch-category-menu__combined-tab:hover,
.te-ch-category-menu__combined-tab:focus,
.te-ch-category-menu__combined-tab.is-active {
	background: #3a342d;
	color: #ffffff;
}

.te-ch-category-menu__combined-content {
	min-width: 0;
	max-height: inherit;
	overflow-y: auto;
	background: #ffffff;
}

.te-ch-category-menu__combined-content .te-ch-category-menu__panel-head {
	padding-left: 48px;
}

.te-ch-category-menu__combined-content .te-ch-category-menu__panel-body {
	padding-left: 48px;
}

.te-ch-category-menu__subcategories {
	display: grid;
	grid-template-columns: repeat(var(--te-ch-category-menu-columns, 4), minmax(0, 1fr));
	column-gap: clamp(22px, 4vw, 54px);
	row-gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.te-ch-category-menu__subcategory {
	display: grid;
	grid-template-columns: 14px minmax(0, 1fr);
	gap: 12px;
	align-items: start;
	margin: 0;
	break-inside: avoid;
}

.te-ch-category-menu__subcategory-link {
	display: block;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.45;
}

.te-ch-category-menu__plus {
	display: inline-grid;
	place-items: center;
	width: 11px;
	height: 11px;
	margin-top: 6px;
	padding: 0;
	border: 0;
	border-radius: 2px;
	background: #ff5a1f;
	color: #ffffff;
	font-size: 11px;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
}

.te-ch-category-menu__plus-placeholder {
	display: block;
	width: 11px;
	height: 11px;
	margin-top: 6px;
}

.te-ch-category-menu__plus:hover,
.te-ch-category-menu__plus:focus {
	background: #171717;
}

.te-ch-category-menu__subcategory:not(.has-children) {
	grid-template-columns: 14px minmax(0, 1fr);
	padding-left: 0;
}

.te-ch-category-menu__subcategory-link:hover,
.te-ch-category-menu__subcategory-link:focus {
	color: #ff4f16;
}

.te-ch-category-menu__empty {
	margin: 0;
	color: #666666;
	font-size: 15px;
}

.te-ch-category-menu__products {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0;
	margin-top: 28px;
}

.te-ch-category-menu__product {
	display: grid;
	grid-template-columns: 50px minmax(0, 1fr);
	gap: 20px;
	align-items: start;
	min-height: 112px;
	padding: 14px 16px;
	border-right: 1px solid #eeeeee;
}

.te-ch-category-menu__product:last-child {
	border-right: 0;
}

.te-ch-category-menu__product img {
	width: 50px;
	height: 50px;
	object-fit: contain;
}

.te-ch-category-menu__product-content {
	display: grid;
	gap: 12px;
}

.te-ch-category-menu__product-title {
	font-size: 12px;
	font-weight: 500;
	line-height: 1.2;
}

.te-ch-category-menu__product-price {
	color: #000000;
	font-size: 16px;
	font-weight: 800;
	line-height: 1.1;
}

@media (max-width: 1010px) {
	.te-ch-category-menu {
		z-index: 50;
		width: auto;
		flex: 0 0 auto;
	}

	.te-ch-category-menu__toggle {
		display: inline-grid;
		width: 48px;
		justify-content: center;
		padding: 0;
	}

	.te-ch-category-menu__top-list {
		position: fixed;
		top: var(--te-ch-category-menu-mobile-top, 0px);
		left: 0;
		right: 0;
		display: none;
		width: auto;
		min-height: 0;
		max-height: calc(100vh - var(--te-ch-category-menu-mobile-top, 0px));
		overflow-y: auto;
		overflow-x: hidden;
		flex-direction: column;
		border-top: 0;
		border-bottom: 1px solid #e3e3e3;
		background: #ffffff;
		box-shadow: 0 18px 44px rgba(0, 0, 0, 0.1);
		z-index: 60;
	}

	.te-ch-category-menu.is-mobile-open .te-ch-category-menu__top-list {
		display: flex;
	}

	.te-ch-category-menu__item {
		display: block;
		margin: 0;
		padding: 0;
		border-bottom: 1px solid #e3e3e3;
	}

	.te-ch-category-menu__item:last-child {
		border-bottom: 0;
	}

	.te-ch-category-menu__top-link {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 12px;
		width: 100%;
		min-height: 50px;
		padding: 0 14px;
		color: #050505;
		font-size: 14px;
		font-weight: 500;
		line-height: 1.25;
		white-space: normal;
	}

	.te-ch-category-menu__top-link > span:first-child {
		min-width: 0;
		overflow-wrap: break-word;
	}

	.te-ch-category-menu__top-link:hover,
	.te-ch-category-menu__top-link:focus,
	.te-ch-category-menu__item.is-active > .te-ch-category-menu__top-link {
		color: #fe6614;
	}

	.te-ch-category-menu__chevron {
		display: inline-grid;
		flex: 0 0 28px;
		width: 28px;
		height: 28px;
		place-items: center;
		border: 0;
		color: inherit;
		transform: none;
	}

	.te-ch-category-menu__chevron::before {
		content: "+";
		color: #050505;
		font-size: 17px;
		font-weight: 600;
		line-height: 1;
	}

	.te-ch-category-menu__top-link:hover .te-ch-category-menu__chevron::before,
	.te-ch-category-menu__top-link:focus .te-ch-category-menu__chevron::before,
	.te-ch-category-menu__item.is-active > .te-ch-category-menu__top-link .te-ch-category-menu__chevron::before {
		color: #fe6614;
	}

	.te-ch-category-menu__item.is-mobile-submenu-open > .te-ch-category-menu__top-link .te-ch-category-menu__chevron::before {
		content: "-";
		color: #fe6614;
		font-size: 18px;
	}

	.te-ch-category-menu__panel {
		display: none !important;
	}

	.te-ch-category-menu__item.is-mobile-submenu-open > .te-ch-category-menu__mobile-panel {
		display: block !important;
	}

	.te-ch-category-menu__mobile-panel {
		border-top: 1px solid #e3e3e3;
	}

	.te-ch-category-menu__mobile-children {
		display: none;
		margin: 0;
		padding: 8px 0 12px;
		list-style: none;
	}

	.te-ch-category-menu__mobile-panel > .te-ch-category-menu__mobile-children,
	.te-ch-category-menu__mobile-item.is-open > .te-ch-category-menu__mobile-children {
		display: block;
	}

	.te-ch-category-menu__mobile-item {
		margin: 0;
		padding: 0;
	}

	.te-ch-category-menu__mobile-row {
		display: flex;
		min-height: 38px;
		align-items: flex-start;
		gap: 8px;
		padding: 6px 0;
	}

	.te-ch-category-menu__mobile-link {
		flex: 1;
		min-width: 0;
		color: #050505;
		font-size: 14px;
		font-weight: 400;
		line-height: 1.25;
		text-decoration: none;
		overflow-wrap: break-word;
	}

	.te-ch-category-menu__mobile-link:hover,
	.te-ch-category-menu__mobile-link:focus {
		color: #fe6614;
	}

	.te-ch-category-menu__mobile-chevron {
		display: inline-grid;
		flex: 0 0 14px;
		width: 14px;
		place-items: center;
		color: #fe6614;
		font-size: 22px;
		font-weight: 600;
		line-height: 1;
		padding-top: 2px;
	}

	.te-ch-category-menu__mobile-accordion {
		display: inline-grid;
		flex: 0 0 28px;
		width: 28px;
		height: 28px;
		margin: 0;
		padding: 0;
		place-items: center;
		border: 0;
		border-radius: 0;
		background: transparent;
		color: #050505;
		font-family: inherit;
		font-size: 17px;
		font-weight: 600;
		line-height: 1;
		cursor: pointer;
		box-shadow: none;
		align-self: flex-start;
	}

	.te-ch-category-menu__mobile-accordion:hover,
	.te-ch-category-menu__mobile-accordion:focus,
	.te-ch-category-menu__mobile-item.is-open > .te-ch-category-menu__mobile-row .te-ch-category-menu__mobile-accordion {
		color: #fe6614;
		background: transparent;
	}

	.te-ch-category-menu__mobile-children--depth-1 {
		padding-inline: 14px;
	}

	.te-ch-category-menu__mobile-children--depth-2 {
		padding-left: 18px;
	}

	.te-ch-category-menu__mobile-children--depth-3 {
		padding-left: 28px;
	}

	.te-ch-category-menu__mobile-children--depth-4,
	.te-ch-category-menu__mobile-children--depth-5 {
		padding-left: 38px;
	}
}

@media (max-width: 960px) {
	.te-ch-category-menu__top-list {
		-webkit-overflow-scrolling: touch;
	}

	.te-ch-category-menu__panel {
		overflow-y: auto;
	}

	.te-ch-category-menu__panel-head {
		grid-template-columns: 1fr;
		padding: 26px 20px;
	}

	.te-ch-category-menu__panel-body {
		padding: 28px 20px;
	}

	.te-ch-category-menu__subcategories {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		column-gap: 18px;
	}

	.te-ch-category-menu__products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.te-ch-category-menu__combined {
		grid-template-columns: 240px minmax(0, 1fr);
	}

	.te-ch-category-menu__combined-tab {
		padding: 0 16px;
		font-size: 15px;
	}
}

@media (max-width: 640px) {
	.te-ch-category-menu__top-link {
		min-height: 50px;
		padding: 0 12px;
		font-size: 13px;
	}

	.te-ch-category-menu__panel {
		position: fixed;
		top: auto;
		left: 0;
		right: 0;
		width: 100%;
		height: 70vh;
		max-height: 70vh;
		margin-left: 0;
		transform: translateY(-10px);
	}

	.te-ch-category-menu__item:hover > .te-ch-category-menu__panel,
	.te-ch-category-menu__item:focus-within > .te-ch-category-menu__panel {
		transform: translateY(0);
	}

	.te-ch-category-menu__subcategories {
		grid-template-columns: 1fr;
	}

	.te-ch-category-menu__subcategory-link {
		font-size: 12px;
	}

	.te-ch-category-menu__products {
		grid-template-columns: 1fr;
	}

	.te-ch-category-menu__product {
		border-right: 0;
		border-bottom: 1px solid #eeeeee;
	}

	.te-ch-category-menu__combined {
		grid-template-columns: 1fr;
	}

	.te-ch-category-menu__combined-tabs {
		border-right: 0;
	}

	.te-ch-category-menu__combined-content .te-ch-category-menu__panel-head,
	.te-ch-category-menu__combined-content .te-ch-category-menu__panel-body {
		padding-left: 20px;
	}
}
.wc-block-mini-cart__amount{
	font-size:13px !important;
	font-weight: 600 !important;
}
.wc-block-mini-cart__badge{
	font-size:12px !important;
}
