/**
 * Solace Header Kit
 *
 * Everything is scoped to .shk. Colours, spacing and type are custom
 * properties, so Elementor controls and theme CSS can both reach them.
 */

/* ==================================================  Tokens */

.shk {
	--shk-ink: #15171b;
	--shk-body: #5b6068;
	--shk-soft: #8a8f97;
	--shk-line: #e6e5e1;
	--shk-line-soft: #f0efec;
	--shk-surface: #ffffff;
	--shk-well: #f6f5f3;
	--shk-accent: #1c4c4a;
	--shk-accent-ink: #ffffff;
	--shk-badge: #a3352b;

	--shk-ann-bg: #1c4c4a;
	--shk-ann-ink: #f3f6f4;
	--shk-top-bg: #f6f5f3;
	--shk-top-ink: #5b6068;
	--shk-head-bg: #ffffff;
	--shk-head-ink: #15171b;

	--shk-fs: 15px;
	--shk-nav-fs: 14.5px;
	--shk-nav-gap: 4px;
	--shk-radius: 10px;
	--shk-width: 1240px;
	--shk-h: 78px;
	--shk-logo-w: 150px;
	--shk-logo-w-m: 116px;

	font-family: var(--shk-font, inherit);
	color: var(--shk-ink);
}

.shk *,
.shk *::before,
.shk *::after {
	box-sizing: border-box;
}

.shk-container {
	width: 100%;
	max-width: var(--shk-width);
	margin-inline: auto;
	padding-inline: 20px;
}

.shk-sr {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
}

.shk :focus-visible {
	outline: 2px solid var(--shk-accent);
	outline-offset: 2px;
	border-radius: 4px;
}

.shk-icon {
	flex: 0 0 auto;
	display: block;
}

/* Buttons shared by the drawers and the mega menu */

.shk-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 44px;
	padding: 11px 18px;
	font-family: inherit;
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	border-radius: var(--shk-radius);
	border: 1px solid transparent;
	cursor: pointer;
	transition: box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.shk-btn--solid {
	color: var(--shk-accent-ink);
	background: var(--shk-accent);
	border-color: var(--shk-accent);
}

.shk-btn--solid:hover {
	box-shadow: inset 0 0 0 100px rgba(0, 0, 0, 0.12);
}

.shk-btn--ghost {
	color: var(--shk-ink);
	background: transparent;
	border-color: var(--shk-line);
}

.shk-btn--ghost:hover {
	border-color: var(--shk-ink);
}

/* ==================================================  1. Announcement bar */

.shk-ann {
	position: relative;
	display: flex;
	align-items: center;
	background: var(--shk-ann-bg);
	color: var(--shk-ann-ink);
	font-size: var(--shk-ann-fs, 0.8125rem);
	font-weight: var(--shk-ann-weight, 500);
	letter-spacing: 0.005em;
	overflow: hidden;
}

.shk-ann__viewport {
	flex: 1 1 auto;
	overflow: hidden;
	padding-block: var(--shk-ann-pad, 9px);
}

.shk-ann__track {
	display: flex;
	width: max-content;
	animation: shk-marquee var(--shk-ann-speed, 34s) linear infinite;
}

.shk-ann--reverse .shk-ann__track,
[dir="rtl"] .shk-ann__track {
	animation-direction: reverse;
}

[dir="rtl"] .shk-ann--reverse .shk-ann__track {
	animation-direction: normal;
}

.shk-ann--pause:hover .shk-ann__track,
.shk-ann--pause:focus-within .shk-ann__track {
	animation-play-state: paused;
}

.shk-ann__group {
	display: flex;
	align-items: center;
	flex: 0 0 auto;
}

.shk-ann__item,
.shk-ann__sep {
	padding-inline: 14px;
	white-space: nowrap;
}

.shk-ann__sep {
	opacity: 0.55;
	padding-inline: 0;
}

.shk-ann__link {
	display: flex;
	align-items: center;
	color: inherit;
	text-decoration: none;
}

.shk-ann__link:hover {
	text-decoration: underline;
	text-underline-offset: 3px;
}

.shk-ann__close {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	margin-inline-end: 6px;
	padding: 0;
	color: inherit;
	background: transparent;
	border: 0;
	opacity: 0.7;
	cursor: pointer;
}

.shk-ann__close:hover {
	opacity: 1;
}

@keyframes shk-marquee {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}

@media (prefers-reduced-motion: reduce) {
	.shk-ann__track {
		animation: none;
	}

	.shk-ann__viewport {
		overflow-x: auto;
		scrollbar-width: none;
	}
}

/* ==================================================  2. Utility bar */

.shk-topbar {
	background: var(--shk-top-bg);
	color: var(--shk-top-ink);
	font-size: var(--shk-top-fs, 0.8125rem);
	border-bottom: 1px solid var(--shk-line-soft);
}

.shk-topbar--divided .shk-topbar__inner {
	gap: 0;
}

.shk-topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	min-height: 40px;
}

.shk-topbar__msg {
	margin: 0;
	flex: 1 1 auto;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.shk-topbar__contacts {
	display: flex;
	align-items: center;
	flex: 0 0 auto;
}

.shk-topbar__link {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 9px 14px;
	color: inherit;
	text-decoration: none;
	white-space: nowrap;
	transition: color 0.18s ease;
}

.shk-topbar__link:hover {
	color: var(--shk-ink);
}

.shk-topbar--divided .shk-topbar__link + .shk-topbar__link {
	border-inline-start: 1px solid var(--shk-line);
}

.shk-socials {
	display: flex;
	align-items: center;
	gap: 2px;
	flex: 0 0 auto;
}

.shk-social {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	color: inherit;
	text-decoration: none;
	border-radius: 8px;
	transition: color 0.18s ease, background-color 0.18s ease;
}

.shk-social:hover {
	color: var(--shk-accent);
	background: rgba(0, 0, 0, 0.04);
}

/* ==================================================  3. Header shell */

.shk-header-wrap {
	position: relative;
	z-index: 200;
	background: var(--shk-head-bg);
}

.shk-header--sticky {
	position: sticky;
	top: 0;
}

.shk-header {
	background: var(--shk-head-bg);
	color: var(--shk-head-ink);
	border-bottom: 1px solid var(--shk-line-soft);
	transition: box-shadow 0.2s ease;
}

.shk-header-wrap.is-stuck .shk-header {
	box-shadow: 0 6px 24px rgba(16, 18, 22, 0.08);
}

.shk-header__inner {
	display: flex;
	align-items: center;
	gap: 18px;
	min-height: var(--shk-h);
	position: relative;
}

.shk-logo {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	color: inherit;
	text-decoration: none;
	line-height: 1;
}

.shk-logo img {
	display: block;
	width: var(--shk-logo-w);
	height: auto;
	max-height: calc(var(--shk-h) - 22px);
	object-fit: contain;
}

.shk-logo__text {
	font-size: 1.25rem;
	font-weight: 650;
	letter-spacing: -0.02em;
}

.shk-header__actions {
	display: flex;
	align-items: center;
	gap: 2px;
	margin-inline-start: auto;
	flex: 0 0 auto;
}

.shk-action {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	height: 42px;
	padding-inline: 10px;
	color: inherit;
	background: transparent;
	border: 0;
	border-radius: 10px;
	text-decoration: none;
	font-family: inherit;
	font-size: 0.8125rem;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.18s ease, color 0.18s ease;
}

.shk-action:hover {
	color: var(--shk-accent);
	background: var(--shk-well);
}

.shk-action__icon {
	position: relative;
	display: inline-flex;
}

.shk-cart-count {
	position: absolute;
	top: -7px;
	inset-inline-end: -9px;
	min-width: 18px;
	height: 18px;
	padding: 0 5px;
	background: var(--shk-badge);
	color: #fff;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 700;
	line-height: 18px;
	text-align: center;
}

.shk-cart-count.is-empty {
	display: none;
}

.shk-burger {
	display: none;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	margin-inline-start: -8px;
	padding: 0;
	color: inherit;
	background: transparent;
	border: 0;
	border-radius: 10px;
	cursor: pointer;
}

.shk-burger:hover {
	background: var(--shk-well);
}

/* Stacked layout: search in row one, navigation in row two */

.shk-header--stacked .shk-header__search {
	flex: 1 1 auto;
	max-width: 560px;
	margin-inline: 12px;
}

.shk-header__row2 {
	border-top: 1px solid var(--shk-line-soft);
}

.shk-header__row2 > .shk-container {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 52px;
}

.shk-header--classic .shk-header__search {
	width: clamp(180px, 22vw, 280px);
	margin-inline-end: 6px;
}

/* ==================================================  4. Navigation */

.shk-nav {
	flex: 1 1 auto;
	min-width: 0;
}

.shk-nav__list {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: var(--shk-nav-gap);
	margin: 0;
	padding: 0;
	list-style: none;
}

.shk-nav__item {
	position: relative;
	flex: 0 0 auto;
	list-style: none;
	margin: 0;
}

.shk-nav__link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 12px;
	color: inherit;
	background: transparent;
	border: 0;
	border-radius: 9px;
	font-family: inherit;
	font-size: var(--shk-nav-fs);
	font-weight: var(--shk-nav-weight, 550);
	line-height: 1.2;
	letter-spacing: -0.005em;
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;
	transition: color 0.18s ease, background-color 0.18s ease;
}

.shk-nav__link:hover,
.shk-nav__item--top:focus-within > .shk-nav__link {
	color: var(--shk-accent);
	background: var(--shk-well);
}

.shk-nav__item.is-current > .shk-nav__link {
	color: var(--shk-accent);
}

.shk-nav__link .shk-icon--chevron {
	opacity: 0.55;
	transition: transform 0.2s ease;
}

.shk-nav__item--top:hover > .shk-nav__link .shk-icon--chevron,
.shk-nav__item--top:focus-within > .shk-nav__link .shk-icon--chevron {
	transform: rotate(180deg);
}

.shk-nav__toggle {
	display: none;
}

.shk-mega-btn .shk-icon--grid {
	opacity: 0.8;
}

/* Dropdowns */

.shk-nav__sub {
	position: absolute;
	top: 100%;
	inset-inline-start: 0;
	z-index: 30;
	min-width: 228px;
	margin: 0;
	padding: 8px;
	list-style: none;
	background: var(--shk-surface);
	border: 1px solid var(--shk-line);
	border-radius: 12px;
	box-shadow: 0 18px 40px rgba(16, 18, 22, 0.12);
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s;
}

.shk-nav__sub .shk-nav__item {
	width: 100%;
}

.shk-nav__sub .shk-nav__link {
	width: 100%;
	padding: 9px 10px;
	white-space: normal;
}

.shk-nav__sub .shk-nav__sub {
	top: -9px;
	inset-inline-start: 100%;
}

.shk-nav__item--has-children:hover > .shk-nav__sub,
.shk-nav__item--has-children:focus-within > .shk-nav__sub,
.shk-nav__item--has-children.is-open > .shk-nav__sub {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

/* The overflow menu keeps long navigation on one line */

.shk-nav__item--more[hidden] {
	display: none;
}

.shk-nav__item--more > .shk-nav__sub {
	inset-inline-start: auto;
	inset-inline-end: 0;
}

/* ==================================================  5. Mega menu */

.shk-nav__item--mega {
	position: static;
}

.shk-mega {
	position: absolute;
	top: 100%;
	inset-inline: 0;
	z-index: 40;
	background: var(--shk-surface);
	border: 1px solid var(--shk-line);
	border-radius: 14px;
	box-shadow: 0 22px 50px rgba(16, 18, 22, 0.14);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}

.shk-header--stacked .shk-mega {
	inset-inline: 0;
}

.shk-nav__item--mega:hover > .shk-mega,
.shk-nav__item--mega:focus-within > .shk-mega,
.shk-nav__item--mega.is-open > .shk-mega {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.shk-mega__inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 22px;
	padding-block: 26px;
}

.shk-mega--promo .shk-mega__inner {
	grid-template-columns: minmax(0, 1fr) 260px;
}

.shk-mega__cols {
	display: grid;
	grid-template-columns: repeat(var(--shk-mega-cols, 4), minmax(0, 1fr));
	gap: 24px 28px;
}

.shk-mega__head {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
	color: var(--shk-ink);
	font-size: 0.9375rem;
	font-weight: 650;
	letter-spacing: -0.01em;
	text-decoration: none;
}

.shk-mega__head:hover .shk-mega__name {
	text-decoration: underline;
	text-underline-offset: 3px;
}

.shk-mega__thumb {
	flex: 0 0 auto;
	width: 34px;
	height: 34px;
	border-radius: 9px;
	overflow: hidden;
	background: var(--shk-well);
}

.shk-mega__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.shk-mega__count {
	font-size: 0.6875rem;
	font-weight: 600;
	color: var(--shk-soft);
}

.shk-mega__list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 2px;
}

.shk-mega__list a {
	display: block;
	padding: 5px 0;
	color: var(--shk-body);
	font-size: 0.8125rem;
	line-height: 1.5;
	text-decoration: none;
	transition: color 0.16s ease;
}

.shk-mega__list a:hover {
	color: var(--shk-accent);
}

.shk-mega__more {
	font-weight: 600;
	color: var(--shk-accent) !important;
}

.shk-mega__promo {
	padding: 18px;
	background: var(--shk-well);
	border-radius: 12px;
}

.shk-mega__promo-media {
	display: block;
	margin-bottom: 14px;
	border-radius: 9px;
	overflow: hidden;
}

.shk-mega__promo-media img {
	display: block;
	width: 100%;
	height: auto;
}

.shk-mega__promo-title {
	margin: 0 0 6px;
	font-size: 1rem;
	font-weight: 650;
	letter-spacing: -0.015em;
}

.shk-mega__promo-text {
	margin: 0 0 14px;
	font-size: 0.8125rem;
	line-height: 1.6;
	color: var(--shk-body);
}

.shk-mega__foot {
	grid-column: 1 / -1;
	padding-top: 18px;
	border-top: 1px solid var(--shk-line-soft);
}

.shk-mega__all {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--shk-accent);
	font-size: 0.875rem;
	font-weight: 650;
	text-decoration: none;
}

.shk-mega__all:hover span {
	text-decoration: underline;
	text-underline-offset: 3px;
}

/* ==================================================  6. Search */

.shk-search {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
}

.shk-search__icon {
	position: absolute;
	inset-inline-start: 13px;
	display: flex;
	color: var(--shk-soft);
	pointer-events: none;
}

.shk-search__input {
	width: 100%;
	height: var(--shk-search-h, 42px);
	margin: 0;
	padding-inline: 40px 34px;
	font-family: inherit;
	font-size: 0.875rem;
	color: var(--shk-ink);
	background: var(--shk-search-bg, var(--shk-well));
	border: 1px solid var(--shk-search-border, transparent);
	border-radius: var(--shk-search-radius, 999px);
	outline-offset: 2px;
	transition: border-color 0.18s ease, background-color 0.18s ease;
	-webkit-appearance: none;
	appearance: none;
}

.shk-search__input::-webkit-search-cancel-button {
	display: none;
}

.shk-search__input::placeholder {
	color: var(--shk-soft);
}

.shk-search__input:focus {
	background: var(--shk-surface);
	border-color: var(--shk-line);
}

.shk-search__submit {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	border: 0;
}

.shk-search__clear {
	position: absolute;
	inset-inline-end: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	padding: 0;
	color: var(--shk-soft);
	background: transparent;
	border: 0;
	border-radius: 50%;
	cursor: pointer;
}

.shk-search__clear:hover {
	color: var(--shk-ink);
	background: rgba(0, 0, 0, 0.06);
}

.shk-search__results {
	position: absolute;
	top: calc(100% + 8px);
	inset-inline: 0;
	z-index: 60;
	max-height: min(70vh, 460px);
	overflow-y: auto;
	padding: 6px;
	background: var(--shk-surface);
	border: 1px solid var(--shk-line);
	border-radius: 12px;
	box-shadow: 0 18px 40px rgba(16, 18, 22, 0.14);
}

.shk-search__results[hidden] {
	display: none;
}

.shk-results__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.shk-results__item a {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 8px;
	color: inherit;
	text-decoration: none;
	border-radius: 9px;
}

.shk-results__item a:hover,
.shk-results__item.is-active a {
	background: var(--shk-well);
}

.shk-results__media {
	flex: 0 0 auto;
	width: 46px;
	height: 46px;
	border-radius: 8px;
	overflow: hidden;
	background: var(--shk-well);
}

.shk-results__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.shk-results__text {
	display: grid;
	gap: 2px;
	min-width: 0;
}

.shk-results__name {
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1.35;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}

.shk-results__price {
	font-size: 0.8125rem;
	color: var(--shk-body);
}

.shk-results__price del {
	opacity: 0.6;
	margin-inline-end: 4px;
}

.shk-results__price ins {
	background: none;
	text-decoration: none;
}

.shk-results__all {
	display: block;
	margin-top: 4px;
	padding: 11px;
	color: var(--shk-accent);
	font-size: 0.8125rem;
	font-weight: 650;
	text-align: center;
	text-decoration: none;
	border-top: 1px solid var(--shk-line-soft);
}

.shk-results__empty,
.shk-results__loading {
	margin: 0;
	padding: 18px 12px;
	font-size: 0.875rem;
	color: var(--shk-body);
	text-align: center;
}

/* The full width search sheet used on small screens */

.shk-searchsheet {
	border-top: 1px solid var(--shk-line-soft);
	background: var(--shk-head-bg);
	padding-block: 12px;
}

.shk-searchsheet[hidden] {
	display: none;
}

.shk-action--search {
	display: none;
}

/* ==================================================  7. Drawers */

.shk-drawer {
	position: fixed;
	inset: 0;
	z-index: 900;
}

.shk-drawer[hidden] {
	display: none;
}

.shk-drawer__overlay {
	position: absolute;
	inset: 0;
	background: rgba(14, 16, 19, 0.45);
	opacity: 0;
	transition: opacity 0.26s ease;
}

.shk-drawer__panel {
	position: absolute;
	top: 0;
	bottom: 0;
	display: flex;
	flex-direction: column;
	width: min(var(--shk-drawer-w, 400px), 92vw);
	background: var(--shk-surface);
	box-shadow: 0 0 60px rgba(14, 16, 19, 0.2);
	transition: transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.shk-drawer--end .shk-drawer__panel {
	inset-inline-end: 0;
	transform: translateX(100%);
}

.shk-drawer--start .shk-drawer__panel {
	inset-inline-start: 0;
	transform: translateX(-100%);
}

[dir="rtl"] .shk-drawer--end .shk-drawer__panel {
	transform: translateX(-100%);
}

[dir="rtl"] .shk-drawer--start .shk-drawer__panel {
	transform: translateX(100%);
}

.shk-drawer.is-open .shk-drawer__overlay {
	opacity: 1;
}

.shk-drawer.is-open .shk-drawer__panel {
	transform: translateX(0);
}

.shk-drawer__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 16px 18px;
	border-bottom: 1px solid var(--shk-line-soft);
}

.shk-drawer__title {
	font-size: 0.9375rem;
	font-weight: 650;
	letter-spacing: -0.01em;
}

.shk-drawer__close {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	margin-inline-end: -6px;
	padding: 0;
	color: inherit;
	background: transparent;
	border: 0;
	border-radius: 9px;
	cursor: pointer;
}

.shk-drawer__close:hover {
	background: var(--shk-well);
}

.shk-drawer__body {
	flex: 1 1 auto;
	overflow-y: auto;
	padding: 16px 18px 28px;
	overscroll-behavior: contain;
}

.shk-drawer__search {
	margin-bottom: 16px;
}

.shk-drawer__label {
	margin: 22px 0 8px;
	font-size: 0.75rem;
	font-weight: 650;
	color: var(--shk-soft);
}

.shk-drawer__help {
	margin-top: 8px;
	padding-top: 18px;
	border-top: 1px solid var(--shk-line-soft);
}

.shk-drawer__contact {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 9px 0;
	color: var(--shk-ink);
	font-size: 0.875rem;
	text-decoration: none;
}

.shk-drawer__contact:hover {
	color: var(--shk-accent);
}

.shk-drawer__help .shk-socials {
	margin-top: 10px;
	margin-inline-start: -7px;
}

/* Mobile accordion menu */

.shk-mnav,
.shk-mnav__sub {
	margin: 0;
	padding: 0;
	list-style: none;
}

.shk-mnav__sub[hidden] {
	display: none;
}

.shk-mnav__item {
	border-bottom: 1px solid var(--shk-line-soft);
}

.shk-mnav__sub .shk-mnav__item:last-child {
	border-bottom: 0;
}

.shk-mnav__row {
	display: flex;
	align-items: center;
	gap: 8px;
}

.shk-mnav__link {
	flex: 1 1 auto;
	padding: 13px 0;
	color: var(--shk-ink);
	font-size: 0.9375rem;
	font-weight: 550;
	line-height: 1.35;
	text-decoration: none;
}

.shk-mnav__link:hover {
	color: var(--shk-accent);
}

.shk-mnav__toggle {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	padding: 0;
	color: var(--shk-body);
	background: transparent;
	border: 0;
	border-radius: 9px;
	cursor: pointer;
	transition: transform 0.2s ease, background-color 0.18s ease;
}

.shk-mnav__toggle:hover {
	background: var(--shk-well);
}

.shk-mnav__toggle[aria-expanded="true"] {
	transform: rotate(180deg);
}

.shk-mnav__sub {
	padding-inline-start: 14px;
	margin-bottom: 8px;
	border-inline-start: 2px solid var(--shk-line-soft);
}

.shk-mnav__sub .shk-mnav__link {
	padding: 10px 0;
	font-size: 0.875rem;
	font-weight: 450;
	color: var(--shk-body);
}

/* ==================================================  8. Side cart */

.shk-cart-body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	min-height: 0;
}

.shk-cart__items {
	flex: 1 1 auto;
	margin: 0;
	padding: 6px 18px;
	list-style: none;
	overflow-y: auto;
	overscroll-behavior: contain;
}

.shk-cart__item {
	position: relative;
	display: flex;
	gap: 14px;
	padding: 16px 0;
	border-bottom: 1px solid var(--shk-line-soft);
}

.shk-cart__thumb {
	flex: 0 0 auto;
	width: 74px;
	height: 84px;
	border-radius: 9px;
	overflow: hidden;
	background: var(--shk-well);
	display: block;
}

.shk-cart__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.shk-cart__info {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	gap: 6px;
	min-width: 0;
	padding-inline-end: 22px;
}

.shk-cart__name {
	color: var(--shk-ink);
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1.4;
	text-decoration: none;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.shk-cart__meta {
	font-size: 0.75rem;
	color: var(--shk-soft);
}

.shk-cart__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-top: auto;
}

.shk-cart__price {
	font-size: 0.875rem;
	font-weight: 650;
}

.shk-qty {
	display: inline-flex;
	align-items: center;
	border: 1px solid var(--shk-line);
	border-radius: 999px;
	overflow: hidden;
}

.shk-qty__btn {
	width: 30px;
	height: 30px;
	padding: 0;
	color: var(--shk-body);
	background: transparent;
	border: 0;
	font-size: 15px;
	line-height: 1;
	cursor: pointer;
}

.shk-qty__btn:hover {
	color: var(--shk-ink);
	background: var(--shk-well);
}

.shk-qty__input {
	width: 34px;
	height: 30px;
	padding: 0;
	font-family: inherit;
	font-size: 0.8125rem;
	font-weight: 600;
	text-align: center;
	color: var(--shk-ink);
	background: transparent;
	border: 0;
	-moz-appearance: textfield;
}

.shk-cart__remove {
	position: absolute;
	top: 14px;
	inset-inline-end: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	padding: 0;
	color: var(--shk-soft);
	background: transparent;
	border: 0;
	border-radius: 50%;
	cursor: pointer;
}

.shk-cart__remove:hover {
	color: var(--shk-badge);
	background: var(--shk-well);
}

.shk-cart__foot {
	flex: 0 0 auto;
	padding: 18px;
	border-top: 1px solid var(--shk-line);
	background: var(--shk-surface);
}

.shk-cart__sum {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	font-size: 0.9375rem;
}

.shk-cart__sum strong {
	font-size: 1.125rem;
	font-weight: 650;
	letter-spacing: -0.02em;
}

.shk-cart__note {
	margin: 6px 0 14px;
	font-size: 0.75rem;
	color: var(--shk-soft);
}

.shk-cart__actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.shk-cart__empty {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 14px;
	padding: 60px 24px;
	text-align: center;
}

.shk-cart__empty-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	color: var(--shk-soft);
	background: var(--shk-well);
	border-radius: 50%;
}

.shk-cart__empty p {
	margin: 0;
	color: var(--shk-body);
}

.shk-cart__loading {
	opacity: 0.5;
	pointer-events: none;
}

html.shk-locked,
html.shk-locked body {
	overflow: hidden;
}

/* ==================================================  9. Responsive */

/* Below the chosen breakpoint the navigation becomes a drawer. The three
   blocks are the same rules at the three breakpoints on offer. */

@media (max-width: 767px) {
	.shk--bp-768 .shk-nav,
	.shk--bp-768 .shk-header__row2 {
		display: none;
	}

	.shk--bp-768 .shk-burger {
		display: flex;
	}

	.shk--bp-768 .shk-header__search {
		display: none;
	}

	.shk--bp-768 .shk-action--search {
		display: inline-flex;
	}
}

@media (max-width: 1023px) {
	.shk--bp-1024 .shk-nav,
	.shk--bp-1024 .shk-header__row2 {
		display: none;
	}

	.shk--bp-1024 .shk-burger {
		display: flex;
	}

	.shk--bp-1024 .shk-header__search {
		display: none;
	}

	.shk--bp-1024 .shk-action--search {
		display: inline-flex;
	}
}

@media (max-width: 1199px) {
	.shk--bp-1200 .shk-nav,
	.shk--bp-1200 .shk-header__row2 {
		display: none;
	}

	.shk--bp-1200 .shk-burger {
		display: flex;
	}

	.shk--bp-1200 .shk-header__search {
		display: none;
	}

	.shk--bp-1200 .shk-action--search {
		display: inline-flex;
	}
}

/* The search icon also replaces the bar when the header is set to icon mode */

.shk-header--search-icon .shk-header__search {
	display: none;
}

.shk-header--search-icon .shk-action--search {
	display: inline-flex;
}

.shk-header--stacked.shk-header--search-icon .shk-header__search {
	display: block;
}

@media (max-width: 1023px) {
	.shk-mega__cols {
		--shk-mega-cols: 3;
	}

	.shk-mega--promo .shk-mega__inner {
		grid-template-columns: minmax(0, 1fr);
	}
}

@media (max-width: 860px) {
	.shk-container {
		padding-inline: 16px;
	}

	.shk-header__inner {
		gap: 10px;
	}

	.shk-header__actions {
		gap: 0;
	}

	.shk-action {
		padding-inline: 8px;
	}

	.shk-action__label {
		display: none;
	}

	.shk-logo img {
		width: var(--shk-logo-w-m);
	}

	.shk-logo__text {
		font-size: 1.0625rem;
	}

	.shk-cart__actions {
		grid-template-columns: 1fr;
	}

	.shk-topbar__inner {
		justify-content: center;
		min-height: 38px;
	}

	.shk-topbar--mob-contacts .shk-topbar__msg,
	.shk-topbar--mob-contacts .shk-socials,
	.shk-topbar--mob-icons .shk-topbar__msg {
		display: none;
	}

	.shk-topbar--mob-icons .shk-topbar__link span {
		display: none;
	}

	.shk-topbar--mob-hide {
		display: none;
	}

	.shk-topbar--mob-full .shk-topbar__inner {
		flex-wrap: wrap;
		justify-content: center;
		gap: 2px 10px;
		padding-block: 6px;
	}

	.shk-topbar--mob-full .shk-topbar__msg {
		flex: 1 1 100%;
		text-align: center;
		white-space: normal;
	}

	.shk-topbar__link {
		padding: 8px 10px;
	}

	.shk-ann__item,
	.shk-ann__sep {
		padding-inline: 11px;
	}
}

@media (max-width: 480px) {
	.shk-cart__thumb {
		width: 62px;
		height: 72px;
	}

	.shk-drawer__body {
		padding-inline: 16px;
	}

	.shk-cart__items {
		padding-inline: 16px;
	}
}

/* Elementor's editor needs a little help, its canvas clips fixed elements */

.elementor-editor-active .shk-drawer {
	z-index: 9999;
}
