/* Sparkton professional WooCommerce header. All rules are widget-scoped. */
.ssh-widget,
.ssh-widget * {
	box-sizing: border-box;
}

.ssh-widget {
	--ssh-green: #4a9414;
	--ssh-text: #171a1f;
	--ssh-border: #e7e9ec;
	--ssh-surface: #ffffff;
	position: relative;
	width: 100%;
	background: var(--ssh-surface);
	color: var(--ssh-text);
	isolation: isolate;
}

.ssh-sticky-yes .ssh-widget {
	position: sticky;
	top: 0;
}

.ssh-container {
	width: 100%;
	max-width: 1360px;
	margin-inline: auto;
}

.ssh-widget a,
.ssh-widget button,
.ssh-widget input,
.ssh-widget select {
	font: inherit;
}

.ssh-widget a,
.ssh-widget a:hover,
.ssh-widget a:focus {
	text-decoration: none;
}

.ssh-widget button {
	appearance: none;
	border: 0;
	margin: 0;
	padding: 0;
	background: transparent;
	box-shadow: none;
	cursor: pointer;
}

.ssh-topbar {
	background: var(--ssh-green);
	color: #fff;
	font-size: 12px;
	line-height: 1.35;
}

.ssh-topbar .ssh-container {
	display: flex;
	padding: 6px 18px;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.ssh-top-items {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	min-width: 0;
}

.ssh-top-right {
	justify-content: flex-end;
}

.ssh-top-item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: inherit;
	white-space: nowrap;
	transition: color .2s ease;
}

.ssh-top-item svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}


.ssh-top-items .ssh-top-item + .ssh-top-item::before {
	width: 1px;
	height: 12px;
	margin-right: 2px;
	background: currentColor;
	content: "";
	opacity: .4;
}

.ssh-mainbar {
	background: #fff;
	border-bottom: 1px solid var(--ssh-border);
}

.ssh-mainbar .ssh-container {
	display: grid;
	padding: 18px;
	grid-template-columns: minmax(140px, auto) minmax(280px, 1fr) auto;
	align-items: center;
	gap: 36px;
}

.ssh-logo {
	display: inline-flex;
	max-width: 190px;
	align-items: center;
	min-width: 0;
	line-height: 1;
}

.ssh-logo img {
	display: block;
	width: 190px;
	height: auto;
	max-width: 100%;
	object-fit: contain;
}

.ssh-logo-text {
	display: inline-block;
	font-size: 32px;
	font-weight: 800;
	line-height: 1;
	white-space: nowrap;
}

.ssh-search-area {
	position: relative;
	width: 100%;
	justify-self: center;
}

.ssh-search-form {
	position: relative;
	min-height: 48px;
	display: flex;
	align-items: stretch;
	width: 100%;	overflow: hidden;
	border: 1px solid #dfe3e8;
	background: #fff;
	transition: border-color .2s ease, box-shadow .2s ease;
}

.ssh-search-form:focus-within {
	border-color: var(--ssh-green);
	box-shadow: 0 0 0 3px rgba(74, 148, 20, .12);
}

.ssh-search-category {
	width: auto;
	max-width: 170px;
	min-width: 130px;
	padding: 0 32px 0 14px;
	border: 0;
	border-right: 1px solid var(--ssh-border);
	border-radius: 0;
	background-color: transparent;
	outline: 0;
	cursor: pointer;
}

.ssh-search-input {
	min-width: 0;
	width: 100%;
	margin: 0;
	padding: 0 18px;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	outline: 0;
}

.ssh-search-input::-webkit-search-cancel-button {
	cursor: pointer;
}

.ssh-search-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	flex: 0 0 auto;
	min-width: 112px;
	padding: 0 22px;
	border-radius: 0 !important;
	background: var(--ssh-green);
	color: #fff;
	font-weight: 650;
	line-height: 1;
	transition: background-color .2s ease, transform .2s ease;
}

.ssh-search-button:hover {
	background: #37770b;
}

.ssh-search-button:active {
	transform: scale(.98);
}

.ssh-search-button svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.ssh-search-results {
	position: absolute;
	z-index: 80;
	top: calc(100% + 6px);
	left: 0;
	right: 0;
	max-height: min(520px, 70vh);
	overflow: auto;
	border: 1px solid var(--ssh-border);
	background: #fff;
	box-shadow: 0 18px 45px rgba(19, 31, 45, .14);
}

.ssh-search-results[hidden] {
	display: none !important;
}

.ssh-search-result,
.ssh-search-state {
	display: flex;
	align-items: center;
	gap: 13px;
	padding: 12px 14px;
	border-bottom: 1px solid #eef0f2;
	color: var(--ssh-text);
}

.ssh-search-result:last-child,
.ssh-search-state:last-child {
	border-bottom: 0;
}

.ssh-search-result:hover,
.ssh-search-result:focus {
	background: #f6f9f3;
	color: var(--ssh-green);
}

.ssh-search-result-image {
	width: 56px;
	height: 56px;
	flex: 0 0 56px;
	border-radius: 7px;
	object-fit: cover;
	background: #f5f6f7;
}

.ssh-search-result-copy {
	display: flex;
	flex: 1 1 auto;
	min-width: 0;
	flex-direction: column;
	gap: 4px;
}

.ssh-search-result-title {
	overflow: hidden;
	font-weight: 650;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ssh-search-result-price {
	color: var(--ssh-green);
	font-size: .9em;
	font-weight: 650;
}

.ssh-actions {
	display: flex;
	gap: 18px;
	align-items: center;
	justify-content: flex-end;
	min-width: max-content;
}

.ssh-action {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--ssh-text);
	line-height: 1.2;
	white-space: nowrap;
	transition: color .2s ease;
}

.ssh-action-icon {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	line-height: 1;
}

.ssh-action-icon i,
.ssh-action-icon svg {
	display: block;
	color: currentColor;
	fill: currentColor;
}

.ssh-action-copy {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.ssh-action-text {
	font-weight: 550;
}

.ssh-cart-total {
	font-size: .82em;
	font-weight: 650;
	color: var(--ssh-green);
}

.ssh-action-count {
	position: absolute;
	top: -9px;
	right: -10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 18px;
	height: 18px;
	padding: 0 4px;
	border: 2px solid #fff;
	border-radius: 999px;
	background: var(--ssh-green);
	color: #fff;
	font-size: 10px;
	font-weight: 750;
	line-height: 1;
}

.ssh-mobile-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	color: var(--ssh-text);
	font-size: 22px;
}

.ssh-mobile-toggle svg,
.ssh-drawer-close svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.ssh-bottombar {
	position: relative;
	background: #fff;
	border-top: 0 solid var(--ssh-border);
	border-bottom: 1px solid var(--ssh-border);
}

.ssh-bottombar .ssh-container {
	display: flex;
	min-height: 54px;
	align-items: stretch;
}

.ssh-categories {
	position: relative;
	flex: 0 0 320px;
	border-right: 1px solid var(--ssh-border);
}

.ssh-category-trigger {
	--ssh-category-icon-size: 18px;
	--ssh-category-icon-gap: 16px;
	--ssh-category-icon-x: 0px;
	--ssh-category-icon-y: 0px;
	--ssh-category-chevron-x: 0px;
	--ssh-category-chevron-y: -2px;
	--ssh-category-chevron-inset: 10px;
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	gap: 0;
	width: 100%;
	height: 100%;
	min-width: 0;
	padding: 0 26px;
	color: var(--ssh-text);
	font-weight: 650;
	text-align: left;
	white-space: nowrap;
}

.ssh-category-menu-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: var(--ssh-category-icon-size);
	height: var(--ssh-category-icon-size);
	line-height: 1;
	transform: translate(var(--ssh-category-icon-x), var(--ssh-category-icon-y));
}

.ssh-category-menu-icon i,
.ssh-category-menu-icon svg {
	display: block;
	width: var(--ssh-category-icon-size);
	height: var(--ssh-category-icon-size);
	font-size: var(--ssh-category-icon-size);
	color: currentColor;
	fill: currentColor;
}

.ssh-category-icon-before .ssh-category-menu-icon {
	order: 1;
	margin-right: var(--ssh-category-icon-gap);
}

.ssh-category-icon-before .ssh-category-label {
	order: 2;
}

.ssh-category-icon-after .ssh-category-label {
	order: 1;
	flex: 0 1 auto;
}

.ssh-category-icon-after .ssh-category-menu-icon {
	order: 2;
	margin-left: var(--ssh-category-icon-gap);
}

.ssh-category-label {
	flex: 1 1 auto;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
}

.ssh-category-chevron,
.ssh-category-arrow {
	width: 8px;
	height: 8px;
	border-right: 1.8px solid currentColor;
	border-bottom: 1.8px solid currentColor;
}

.ssh-category-chevron {
	order: 3;
	flex: 0 0 auto;
	margin-left: auto;
	margin-right: var(--ssh-category-chevron-inset);
	transform: translate(var(--ssh-category-chevron-x), var(--ssh-category-chevron-y)) rotate(45deg);
	transition: transform .2s ease;
}

.ssh-categories.is-open .ssh-category-chevron {
	transform: translate(var(--ssh-category-chevron-x), var(--ssh-category-chevron-y)) rotate(225deg);
}

.ssh-category-dropdown {
	position: absolute;
	z-index: 70;
	top: 100%;
	left: 0;
	width: min(360px, 90vw);
	max-height: min(600px, 72vh);
	overflow: auto;
	border: 1px solid var(--ssh-border);
	background: #fff;
	box-shadow: 0 16px 42px rgba(20, 31, 45, .14);
}

.ssh-category-dropdown[hidden] {
	display: none !important;
}

.ssh-category-list,
.ssh-category-children,
.ssh-primary-menu,
.ssh-primary-menu .sub-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.ssh-category-item {
	position: relative;
}

.ssh-category-link {
	display: flex;
	align-items: center;
	gap: 11px;
	min-height: 47px;
	padding: 7px 15px 7px calc(15px + (var(--ssh-depth, 0) * 16px));
	border-bottom: 1px solid #eef0f2;
	color: var(--ssh-text);
	transition: color .2s ease, background-color .2s ease;
}

.ssh-category-item:last-child > .ssh-category-link {
	border-bottom-color: transparent;
}

.ssh-category-thumb {
	display: block;
	flex: 0 0 auto;
	border-radius: 6px;
	object-fit: cover;
	background: #f3f4f6;
}

.ssh-category-name {
	flex: 1 1 auto;
	min-width: 0;
}

.ssh-category-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 24px;
	height: 22px;
	padding: 0 6px;
	border-radius: 999px;
	background: #f0f2f4;
	color: #667085;
	font-size: 11px;
}

.ssh-category-arrow {
	transform: rotate(-45deg);
}

.ssh-category-children {
	background: rgba(0, 0, 0, .014);
}

.ssh-navigation {
	position: relative;
	display: flex;
	align-items: stretch;
	flex: 1 1 auto;
	min-width: 0;
}

.ssh-primary-menu {
	display: flex;
	gap: 38px;
	align-items: stretch;
	padding-inline: 46px;
}

.ssh-primary-menu > li {
	position: relative;
	display: flex;
	align-items: stretch;
}

.ssh-primary-menu a {
	position: relative;
	display: inline-flex;
	align-items: center;
	color: var(--ssh-text);
	font-weight: 600;
	white-space: nowrap;
	transition: color .2s ease, background-color .2s ease;
}

.ssh-primary-menu > .current-menu-item > a,
.ssh-primary-menu > .current-menu-parent > a,
.ssh-primary-menu > .current-menu-ancestor > a,
.ssh-primary-menu > .current_page_item > a,
.ssh-primary-menu > .current_page_parent > a,
.ssh-primary-menu > .current_page_ancestor > a,
.ssh-primary-menu > .ssh-current-menu-item > a,
.ssh-primary-menu > .ssh-current-menu-ancestor > a {
	color: var(--ssh-green);
}

.ssh-primary-menu > li > a::after {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 3px;
	background: currentColor;
	content: "";
	transform: scaleX(0);
	transform-origin: center;
	transition: transform .22s ease;
}

.ssh-primary-menu > li > a:hover::after,
.ssh-primary-menu > .current-menu-item > a::after,
.ssh-primary-menu > .current-menu-parent > a::after,
.ssh-primary-menu > .current-menu-ancestor > a::after,
.ssh-primary-menu > .current_page_item > a::after,
.ssh-primary-menu > .current_page_parent > a::after,
.ssh-primary-menu > .current_page_ancestor > a::after,
.ssh-primary-menu > .ssh-current-menu-item > a::after,
.ssh-primary-menu > .ssh-current-menu-ancestor > a::after {
	transform: scaleX(1);
}

.ssh-primary-menu .sub-menu {
	position: absolute;
	z-index: 72;
	top: 100%;
	left: -18px;
	display: none;
	min-width: 220px;
	padding: 8px;
	border: 1px solid var(--ssh-border);
	background: #fff;
	box-shadow: 0 16px 42px rgba(20, 31, 45, .14);
}

.ssh-primary-menu .sub-menu .sub-menu {
	top: -9px;
	left: calc(100% + 8px);
}

.ssh-primary-menu li:hover > .sub-menu,
.ssh-primary-menu li:focus-within > .sub-menu {
	display: block;
}

.ssh-primary-menu .sub-menu a {
	display: flex;
	width: 100%;
	padding: 10px 12px;
	border-radius: 6px;
}

.ssh-menu-notice,
.ssh-category-empty {
	padding: 14px 16px;
	color: #667085;
	font-size: 13px;
}

.ssh-mobile-layer {
	position: fixed;
	z-index: 100000;
	inset: 0;
	visibility: hidden;
	pointer-events: none;
}

.ssh-mobile-layer.is-open {
	visibility: visible;
	pointer-events: auto;
}

.ssh-mobile-overlay {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .45);
	opacity: 0;
	transition: opacity .28s ease;
}

.ssh-mobile-layer.is-open .ssh-mobile-overlay {
	opacity: 1;
}

.ssh-mobile-drawer {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: min(88%, 420px);
	overflow-y: auto;
	background: #fff;
	box-shadow: 20px 0 50px rgba(0, 0, 0, .18);
	transform: translateX(-102%);
	transition: transform .3s cubic-bezier(.22, .61, .36, 1);
}

.ssh-mobile-layer.is-open .ssh-mobile-drawer {
	transform: translateX(0);
}

.ssh-drawer-header {
	position: sticky;
	z-index: 3;
	top: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 18px 20px;
	border-bottom: 1px solid var(--ssh-border);
	background: inherit;
}

.ssh-drawer-brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
	max-width: calc(100% - 54px);
}

.ssh-drawer-logo {
	display: block;
	width: 150px;
	height: auto;
	max-width: 100%;
	max-height: 52px;
	object-fit: contain;
	object-position: left center;
}

.ssh-drawer-title {
	display: block;
	min-width: 0;
	overflow: hidden;
	font-size: 20px;
	font-weight: 750;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ssh-drawer-close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	font-size: 22px;
}

.ssh-mobile-tabs {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	border-bottom: 1px solid var(--ssh-border);
	background: #fff;
}

.ssh-mobile-tab {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
	min-height: 52px;
	padding: 10px 12px;
	color: #4b5563;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	transition: color .2s ease, background-color .2s ease;
}

.ssh-mobile-tab::after {
	position: absolute;
	left: 18px;
	right: 18px;
	bottom: 0;
	height: 3px;
	border-radius: 999px 999px 0 0;
	background: transparent;
	content: "";
	transform: scaleX(0);
	transition: transform .2s ease, background-color .2s ease;
}

.ssh-mobile-tab:hover,
.ssh-mobile-tab:focus-visible,
.ssh-mobile-tab.is-active {
	color: var(--ssh-green);
}

.ssh-mobile-tab.is-active::after {
	background: currentColor;
	transform: scaleX(1);
}

.ssh-mobile-tab-panel {
	padding: 16px 18px;
}

.ssh-mobile-tab-panel[hidden] {
	display: none !important;
}

.ssh-mobile-categories-panel .ssh-category-list {
	margin: 0;
}

.ssh-mobile-section {
	padding: 16px 18px;
	border-bottom: 1px solid var(--ssh-border);
}

.ssh-mobile-section-title {
	margin-bottom: 10px;
	font-size: 13px;
	font-weight: 750;
	letter-spacing: .06em;
	text-transform: uppercase;
}

.ssh-mobile-drawer .ssh-category-list {
	border: 1px solid var(--ssh-border);
	border-radius: 8px;
	overflow: hidden;
}

.ssh-mobile-navigation .ssh-navigation,
.ssh-mobile-navigation .ssh-primary-menu,
.ssh-mobile-navigation .ssh-primary-menu > li {
	display: block;
	width: 100%;
}

.ssh-mobile-navigation .ssh-primary-menu {
	padding: 0;
}

.ssh-mobile-navigation .ssh-primary-menu a {
	display: flex;
	width: 100%;
	min-height: 46px;
	padding: 10px 6px;
	border-bottom: 1px solid #eef0f2;
}

.ssh-mobile-navigation .ssh-primary-menu > li > a::after {
	display: none;
}

.ssh-mobile-navigation .ssh-primary-menu .sub-menu {
	position: static;
	display: block;
	min-width: 0;
	padding: 0 0 0 14px;
	border: 0;
	box-shadow: none;
}

body.ssh-menu-open {
	overflow: hidden;
}

@media (max-width: 1200px) {
	.ssh-mainbar .ssh-container {
		gap: 22px;
	}

	.ssh-actions {
		gap: 13px !important;
	}

	.ssh-custom-action .ssh-action-text,
	.ssh-wishlist-action .ssh-action-text,
	.ssh-cart-action .ssh-action-text,
	.ssh-cart-total {
		display: none;
	}

	.ssh-primary-menu {
		padding-inline: 28px;
		gap: 26px !important;
	}
}

@media (max-width: 1024px) {
	.ssh-widget {
		position: relative;
	}

	.ssh-sticky-yes .ssh-widget {
		position: sticky;
	}

	.ssh-topbar {
		display: none;
	}

	.ssh-mobile-topbar-yes .ssh-topbar {
		display: block;
	}

	.ssh-topbar .ssh-container {
		justify-content: center;
	}

	.ssh-top-right {
		display: none;
	}

	.ssh-mainbar .ssh-container {
		grid-template-columns: minmax(100px, 1fr) auto;
		gap: 14px;
	}

	.ssh-search-area {
		grid-column: 1 / -1;
		grid-row: 2;
		max-width: none !important;
	}

	.ssh-actions {
		grid-column: 2;
	}

	.ssh-account-action .ssh-action-copy,
	.ssh-custom-action,
	.ssh-wishlist-action .ssh-action-copy,
	.ssh-cart-action .ssh-action-copy {
		display: none;
	}

	.ssh-mobile-toggle {
		display: inline-flex;
	}

	.ssh-bottombar {
		display: none;
	}
}

@media (max-width: 767px) {
	.ssh-mainbar .ssh-container {
		padding: 12px 14px !important;
	}

	.ssh-logo {
		max-width: 145px !important;
	}

	.ssh-logo img {
		width: min(145px, 100%) !important;
	}

	.ssh-logo-text {
		font-size: 25px;
	}

	.ssh-actions {
		gap: 10px !important;
	}

	.ssh-action-icon {
		font-size: 20px !important;
	}

	.ssh-action-icon svg {
		width: 20px !important;
		height: 20px !important;
	}


	.ssh-search-form {
		min-height: 44px !important;
	}

	.ssh-search-category {
		display: none;
	}

	.ssh-search-input {
		padding-inline: 13px;
	}

	.ssh-search-button {
		min-width: 46px;
		padding: 0 14px;
	}

	.ssh-search-button span {
		display: none;
	}

	.ssh-search-result-image {
		width: 48px;
		height: 48px;
		flex-basis: 48px;
	}

	.ssh-top-left {
		justify-content: center;
		gap: 10px !important;
	}

	.ssh-top-left .ssh-top-item:nth-child(n+2) {
		display: none;
	}
}

@media (min-width: 1025px) {
	.ssh-mobile-layer {
		display: none !important;
	}
}
