/* =========================================
	Root Variables
========================================= */

:root {
	--vi-primary-color: #11412b;
	--vi-primary-color-hover: #268a5d;
	--vi-secondary-color: #CBF379;
	--vi-beige-color: #edeae1;
	--vi-white-color: #fff;
	--vi-black-color: 0, 0, 0;
}

/* =========================================
	Header
========================================= */

.vi-header-wrap {
	position: relative;
	width: 100%;
}

.vi-header-wrap[data-reserve="1"] {
	padding-top: var(--vi-header-height, 4.5rem);
}

.vi-header-wrap[data-reserve="1"] .vi-header {
	min-height: 4.5rem;
}

.vi-header {
	position: relative;
	left: 0;
	width: 100%;
	z-index: 1000;
	background-color: transparent;
	color: var(--vi-white-color);
	transition: background-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
	padding: 0.9rem 22px;
}

.vi-header--floating {
	position: fixed;
	top: 0;
}

.vi-header--scrolled {
	background-color: var(--vi-primary-color);
	color: var(--vi-white-color);
	box-shadow: 0 0.375rem 1.5rem rgba(var(--vi-black-color), 0.18);
}

.vi-header__inner {
	display: grid;
	align-items: center;
	grid-template-columns: auto 1fr auto;
	width: 100%;
	max-width: 83.125rem;
	margin: 0 auto;
	box-sizing: border-box;
	min-width: 0;
}

.vi-header__left,
.vi-header__nav,
.vi-header__actions {
	min-width: 0;
}

.vi-header__left {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.vi-header__logo {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	color: inherit;
}

.vi-header__logo-text {
	font-weight: 700;
	font-size: 1.25rem;
	letter-spacing: 0.02em;
}

.vi-header .vi-header__logo-img {
	display: block;
	height: 60px;
	width: auto;
	transition: all 0.2s linear;
}

.vi-header .vi-header__logo-img--scrolled {
	display: none;
}

.vi-header--has-scrolled-logo.vi-header--scrolled .vi-header__inner .vi-header__logo-img {
	display: none;
}

.vi-header--has-scrolled-logo.vi-header--scrolled .vi-header__inner .vi-header__logo-img--scrolled {
	display: block;
	height: 40px;
}

.vi-header__nav {
	display: none;
	align-items: center;
	justify-content: center;
	flex: 1;
}

.vi-header__menu {
	display: flex;
	gap: 1.25rem;
	list-style: none;
	margin: 0;
	padding: 0;
	align-items: center;
}

.vi-header__menu>li {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	margin: 0;
	padding: 0;
	position: relative;
}

.vi-header__menu>li.menu-item-has-children::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	height: 0.6rem;
}

.vi-header__menu-item-inner {
	display: flex;
	align-items: center;
	gap: 0.35rem;
	width: 100%;
}

.vi-header__menu a {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	font-weight: 400;
	line-height: 1.2;
	color: var(--vi-white-color);
	font-size: 1rem;
	transition: color 0.2s ease, opacity 0.2s ease;
}

.vi-header__menu a:hover {
	color: var(--vi-primary-color-hover);
}

.vi-header__menu .sub-menu {
	position: absolute;
	top: calc(100% + 0.6rem);
	left: 0;
	min-width: 13.75rem;
	background: var(--vi-white-color);
	color: var(--vi-primary-color);
	border-radius: 1rem;
	padding: 0.6rem 0.8rem;
	list-style: none;
	margin: 0;
	box-shadow: 0 1rem 2.5rem rgba(var(--vi-black-color), 0.12);
	opacity: 0;
	visibility: hidden;
	transform: translateY(0.6rem);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
	pointer-events: none;
	z-index: 20;
}

.vi-header__menu .sub-menu li {
	display: block;
	margin: 0;
}

.vi-header__menu .sub-menu a {
	display: block;
	color: var(--vi-primary-color);
	padding: 0.45rem 0.6rem;
	width: 100%;
	border-radius: 0.625rem;
	transition: all 0.3s linear;
}

.vi-header__menu .sub-menu a:hover,
.vi-header__menu .sub-menu a:focus {
	background: rgba(var(--vi-black-color), 0.05);
	color: var(--vi-primary-color);
}

.vi-header__menu>li:hover>.sub-menu,
.vi-header__menu>li:focus-within>.sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}

@media (min-width: 1025px) {
	.vi-header__menu .sub-menu li {
		position: relative;
	}

	.vi-header__menu .sub-menu .sub-menu {
		top: -10px;
		left: calc(100% + 0.6rem);
		transform: translateX(0.6rem);
	}

	.vi-header__menu .sub-menu .sub-menu::before {
		content: '';
		position: absolute;
		top: 0;
		left: -0.6rem;
		width: 0.6rem;
		height: 100%;
		background: transparent;
	}

	.vi-header__menu .sub-menu li:hover>.sub-menu,
	.vi-header__menu .sub-menu li:focus-within>.sub-menu {
		opacity: 1;
		visibility: visible;
		transform: translateX(0);
		pointer-events: auto;
	}
}

.vi-header button {
	outline: none !important;
}

.vi-header .vi-header__submenu-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border: 0 !important;
	padding: 0;
	background: transparent !important;
	box-shadow: none !important;
	color: inherit;
	cursor: pointer;
	position: relative;
}

.vi-header .vi-header__submenu-toggle::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0.75rem;
	height: 0.75rem;
	background-color: var(--vi-primary-color);
	transform: translate(-50%, -50%) rotate(0deg);
	transition: all 0.3s linear;
	-webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20512.011%20512.011%22%3E%3Cpath%20fill%3D%22black%22%20d%3D%22M505.755%20123.592c-8.341-8.341-21.824-8.341-30.165%200L256.005%20343.176%2036.421%20123.592c-8.341-8.341-21.824-8.341-30.165%200s-8.341%2021.824%200%2030.165l234.667%20234.667a21.275%2021.275%200%200%200%2015.083%206.251%2021.275%2021.275%200%200%200%2015.083-6.251l234.667-234.667c8.34-8.341%208.34-21.824-0.001-30.165z%22%2F%3E%3C%2Fsvg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20512.011%20512.011%22%3E%3Cpath%20fill%3D%22black%22%20d%3D%22M505.755%20123.592c-8.341-8.341-21.824-8.341-30.165%200L256.005%20343.176%2036.421%20123.592c-8.341-8.341-21.824-8.341-30.165%200s-8.341%2021.824%200%2030.165l234.667%20234.667a21.275%2021.275%200%200%200%2015.083%206.251%2021.275%2021.275%200%200%200%2015.083-6.251l234.667-234.667c8.34-8.341%208.34-21.824-0.001-30.165z%22%2F%3E%3C%2Fsvg%3E") center / contain no-repeat;
}

.vi-header .vi-header__menu-item--open>.vi-header__menu-item-inner .vi-header__submenu-toggle::before {
	transform: translate(-50%, -50%) rotate(180deg);
}

.vi-header__menu-placeholder {
	font-size: 0.9rem;
	opacity: 0.7;
}

.vi-header__actions {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	justify-self: end;
}

.vi-header__buttons {
	display: none;
	align-items: center;
	gap: 0.75rem;
	flex-wrap: wrap;
}

.vi-header__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	border-radius: 999px;
	padding: 0.5rem 1.1rem;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.05em;
	border: 2px solid transparent;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
	white-space: nowrap;
}

.vi-header__btn--primary {
	background: var(--vi-primary-color);
	color: var(--vi-white-color);
	border-color: var(--vi-primary-color);
}

.vi-header__btn--primary:hover {
	transform: translateY(-1px);
	box-shadow: none;
	background: var(--vi-white-color);
	color: var(--vi-primary-color);
	border-color: var(--vi-white-color);
}

.vi-header__btn--secondary {
	background: transparent;
	color: var(--vi-primary-color);
	border-color: var(--vi-primary-color);
}

.vi-header__btn--secondary:hover {
	transform: translateY(-1px);
	box-shadow: none;
	background: var(--vi-white-color);
	color: var(--vi-primary-color);
	border-color: var(--vi-white-color);
}

.vi-header--floating.vi-header--scrolled .vi-header__btn--primary {
	border-color: var(--vi-white-color);
	background-color: var(--vi-white-color);
	color: var(--vi-primary-color);
}

.vi-header--floating.vi-header--scrolled .vi-header__btn--primary:hover {
	background-color: transparent;
	color: var(--vi-white-color);
}

.vi-header--floating.vi-header--scrolled .vi-header__btn--secondary {
	color: var(--vi-white-color);
	border-color: var(--vi-white-color);
}

.vi-header--floating.vi-header--scrolled .vi-header__btn--secondary:hover {
	color: var(--vi-primary-color);
}

.vi-header__btn--third {
	background: var(--vi-secondary-color);
	color: var(--vi-primary-color);
	border-color: var(--vi-secondary-color);
}

.vi-header__btn--third:hover {
	transform: translateY(-1px);
	box-shadow: none;
	background: var(--vi-white-color);
	color: var(--vi-primary-color);
	border-color: var(--vi-white-color);
}

.vi-header__btn--four {
	background: transparent;
	color: var(--vi-white-color);
	border-color: var(--vi-white-color);
}

.vi-header__btn--four:hover {
	transform: translateY(-1px);
	box-shadow: none;
	background: var(--vi-white-color);
	color: var(--vi-primary-color);
	border-color: var(--vi-white-color);
}

.vi-header__btn--five {
	background: var(--vi-white-color);
	color: var(--vi-primary-color);
	border-color: var(--vi-white-color);
}

.vi-header__btn--five:hover {
	transform: translateY(-1px);
	box-shadow: none;
	background: var(--vi-secondary-color);
	color: var(--vi-primary-color);
	border-color: var(--vi-secondary-color);
}

.vi-header__lang {
	display: none;
	position: relative;
}

.vi-header__lang-toggle {
	display: inline-flex !important;
	align-items: center;
	gap: 0.4rem;
	border: 0 !important;
	background: transparent !important;
	padding: 0 !important;
	color: inherit;
	cursor: pointer;
	font-weight: 600;
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	line-height: 1;
	box-shadow: none !important;
}

.vi-header .vi-header__lang-toggle {
	background: transparent !important;
	border: 0 !important;
	border-radius: 0;
	box-shadow: none !important;
	appearance: none;
}

.vi-header .vi-header__lang-toggle:hover,
.vi-header .vi-header__lang-toggle:focus,
.vi-header .vi-header__lang-toggle:focus-visible {
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
}

.vi-header__lang-label {
	font-size: 0.75rem;
	line-height: 1;
}

.vi-header__lang-flag img {
	display: block;
}

.vi-header__lang-flag {
	width: 16px;
	height: auto;
}

.vi-header__lang-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 0.625rem;
	height: 0.625rem;
	margin-left: 0.125rem;
}

.vi-header__lang-arrow svg {
	display: block;
	width: 100%;
	height: 100%;
	fill: var(--vi-primary-color);
}

.vi-header__lang-list {
	position: absolute;
	right: 0;
	top: calc(100% + 0.6rem);
	background: var(--vi-white-color);
	color: var(--vi-primary-color);
	border: 1px solid rgba(var(--vi-black-color), 0.1);
	border-radius: 0.75rem;
	padding: 0.4rem;
	list-style: none;
	margin: 0;
	min-width: 8.75rem;
	box-shadow: 0 0.875rem 1.875rem rgba(var(--vi-black-color), 0.12);
	opacity: 0;
	visibility: hidden;
	transform: translateY(0.4rem);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
	z-index: 30;
}

.vi-header__lang--no-label .vi-header__lang-list {
	min-width: auto;
	padding: 0.35rem;
}

.vi-header__lang--open .vi-header__lang-list {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.vi-header__lang-item {
	margin: 0;
}

.vi-header__lang-link {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	text-decoration: none;
	color: var(--vi-primary-color);
	padding: 0.4rem 0.5rem;
	border-radius: 0.5rem;
	font-weight: 600;
	font-size: 0.85rem;
	text-transform: uppercase;
}

.vi-header__lang--no-label .vi-header__lang-link {
	gap: 0;
	padding: 0.35rem;
	justify-content: flex-start;
}

.vi-header__lang-link:hover {
	background: rgba(var(--vi-black-color), 0.05);
}

.vi-header__lang-item.is-active .vi-header__lang-link {
	opacity: 0.7;
}

.vi-header .vi-header__burger {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 2.5rem;
	border: 0 !important;
	background: transparent !important;
	padding: 0 !important;
	cursor: pointer;
	color: inherit;
}

.vi-header__burger-bar {
	display: block;
	width: 100%;
	height: 0.125rem;
	margin: 0.2rem 0;
	background: var(--vi-primary-color);
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.vi-header--scrolled .vi-header__burger-bar {
	background: var(--vi-white-color);
}

.vi-header__overlay {
	display: block;
	position: fixed;
	inset: 0;
	background: rgba(var(--vi-black-color), 0.5);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.25s ease, visibility 0.25s ease;
	z-index: 998;
}

.vi-header--menu-open .vi-header__overlay {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.vi-header__mobile {
	display: flex;
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
	width: 86vw;
	max-width: 26.25rem;
	background: var(--vi-beige-color);
	color: var(--vi-primary-color);
	transform: translateX(-100%);
	transition: transform 0.3s ease;
	flex-direction: column;
	z-index: 999;
}

.vi-header--menu-open .vi-header__mobile {
	transform: translateX(0);
}

.vi-header__mobile-inner {
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow-y: auto;
}

.vi-header__mobile-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 16px 20px;
	background: var(--vi-secondary-color);
	border-bottom: 1px solid rgba(var(--vi-black-color), 0.08);
}

.vi-header__mobile-nav {
	margin: 20px 0 0 0;
}

.vi-header__mobile-brand {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	min-width: 0;
}

.vi-header__mobile-logo {
	display: inline-flex;
	align-items: center;
	color: var(--vi-primary-color);
}

.vi-header__mobile-logo .vi-header__logo-img {
	max-height: 2.25rem;
}

.vi-header .vi-header__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	padding: 0;
	cursor: pointer;
	color: inherit;
	position: relative;
	right: -13px;
}

.vi-header__close svg {
	display: block;
	width: 16px;
	height: 16px;
	fill: var(--vi-primary-color);
	transition: all .2s linear;
}

.vi-header__close:hover svg,
.vi-header__close:focus svg {
	fill: var(--vi-primary-color-hover);
}

.vi-header__mobile-top .vi-header__lang {
	display: inline-flex;
}

.vi-header__mobile-top .vi-header__lang-list {
	right: auto;
	left: 0;
}

.vi-header__mobile-actions {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	padding: 20px;
}

.vi-header__mobile-actions .vi-header__buttons {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.vi-header__mobile-actions .vi-header__btn {
	width: 100%;
}

.vi-header__mobile-nav .vi-header__menu {
	flex-direction: column;
	align-items: flex-start;
	gap: 0;
	width: 100%;
}

.vi-header__mobile-nav .vi-header__menu>li {
	display: block;
	width: 100%;
}

.vi-header__menu .vi-header__mobile-nav .vi-header__menu-item-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}

.vi-header__mobile .vi-header__submenu-toggle {
	margin-right: 10px;
}

.vi-header__mobile-nav .vi-header__menu a {
	width: 100%;
	color: var(--vi-primary-color);
	padding: 10px 20px;
}

.vi-header__mobile-nav .vi-header__menu a:hover {
	color: var(--vi-primary-color-hover);
}

.vi-header__mobile .vi-header__menu li:hover>.vi-header__menu-item-inner>a {
	color: var(--vi-primary-color-hover);
}

.vi-header__mobile .vi-header__menu li:hover>.vi-header__menu-item-inner>.vi-header__submenu-toggle::before {
	background-color: var(--vi-primary-color-hover);
}

.vi-header__mobile-nav .sub-menu {
	position: static;
	opacity: 1;
	box-shadow: none;
	background: transparent;
	border-radius: 0;
	padding: 0;
	margin: 0;
	display: block;
	min-width: 0;
	height: 0;
	overflow: hidden;
	pointer-events: none;
	visibility: hidden;
	transform: none;
	transition: height 0.3s ease;
	will-change: height;
}

.vi-header__mobile-nav .vi-header__menu-item--open>.sub-menu {
	pointer-events: auto;
	visibility: visible;
}

.vi-header__mobile-nav .sub-menu a {
	font-size: 0.95rem;
	padding-left: 30px;
}

.vi-header__mobile-nav .sub-menu .sub-menu a {
	padding-left: 40px;
}

.vi-header__mobile-nav .sub-menu a:hover,
.vi-header__mobile-nav .sub-menu a:focus {
	background: transparent;
}

html.vi-lock,
body.vi-lock {
	overflow: hidden;
}

@media (min-width: 1025px) {
	.vi-header__nav {
		display: flex;
	}

	.vi-header__buttons,
	.vi-header__lang {
		display: inline-flex;
	}

	.vi-header .vi-header__burger,
	.vi-header .vi-header__overlay,
	.vi-header .vi-header__mobile {
		display: none;
	}

	.vi-header__inner {
		gap: 1rem;
	}

	.vi-header .vi-header__submenu-toggle {
		width: 12px;
		height: 12px;
	}

	.vi-header .vi-header__submenu-toggle::before {
		background-color: var(--vi-white-color);
	}

	.vi-header .vi-header__menu>li:hover>.vi-header__menu-item-inner>.vi-header__submenu-toggle::before,
	.vi-header .vi-header__menu>li:focus-within>.vi-header__menu-item-inner>.vi-header__submenu-toggle::before {
		background-color: #268a5d;
	}

	.vi-header__nav .vi-header__menu a:hover {
		color: var(--vi-primary-color-hover);
	}

	.vi-header__nav .vi-header__menu li:hover>.vi-header__menu-item-inner>a {
		color: var(--vi-primary-color-hover);
		background: rgba(var(--vi-black-color), 0.05);
	}

	.vi-header__nav .vi-header__menu li:hover>.vi-header__menu-item-inner>.vi-header__submenu-toggle::before {
		background-color: var(--vi-primary-color-hover);
	}

	.vi-header__menu .sub-menu .vi-header__submenu-toggle {
		display: none;
	}
}

.vi-header--no-menu .vi-header__inner {
	grid-template-columns: auto 1fr;
}

.vi-header--no-menu .vi-header__actions {
	justify-self: end;
}

@media (min-width: 1300px) {
	.vi-header__btn {
		padding: 0.6rem 1.4rem;
		font-size: 0.85rem;
	}

	.vi-header__menu {
		gap: 1.75rem;
	}
}

@media (min-width: 1600px) {
	.vi-header__menu {
		gap: 2rem;
	}
}
/* =========================================
	Header
========================================= */

:root {
  --vi-accent-color: #2F8BCC;
}

#header a {
  transition: all 0.2s linear;
}

.vi-site-header {
  position: relative;
  background: #fff;
  color: #222;
  width: 100%;
}

.vi-site-header__bar {
  width: 100%;
}

.vi-site-header__bar {
  align-items: center;
  display: grid;
  gap: 1rem;
  grid-template-columns: auto minmax(0, 1fr) auto;
  padding: 1rem 0;
}

.vi-site-header__left {
  align-items: center;
  display: inline-flex;
  gap: 0.75rem;
}

.vi-site-header__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.vi-site-header__logo-img {
  display: block;
  height: auto;
  max-height: 56px;
  max-width: 160px;
  width: auto;
}

.vi-site-header__logo-mobile {
  display: none;
}

.vi-site-header__logo-img--mobile {
  display: none;
}

.vi-site-header__burger {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: none;
  padding: 0;
}

.vi-site-header__burger-bar {
  background: #222;
  border-radius: 2px;
  display: block;
  height: 2px;
  margin: 4px 0;
  width: 22px;
}

.vi-site-header__search {
  max-width: 560px;
  width: 100%;
  justify-self: center;
}

.vi-site-header__search .dgwt-wcas-search-wrapp,
.vi-site-header__search .dgwt-wcas-search-form {
  width: 100%;
}

.vi-site-header__actions {
  align-items: center;
  display: inline-flex;
  gap: 0.75rem;
}

.vi-site-header__icon-link,
.vi-site-header__icon-btn {
  align-items: center;
  background: transparent;
  border: 0;
  color: #111;
  cursor: pointer;
  display: inline-flex;
  height: 36px;
  justify-content: center;
  padding: 0;
  transition: all 0.2s linear;
  width: 36px;
}

.vi-site-header__icon-link svg,
.vi-site-header__icon-btn svg {
  fill: currentColor;
  height: 24px;
  width: 24px;
}

.vi-site-header__cart {
  position: relative;
}

.vi-site-header__cart-count {
  align-items: center;
  background: #ff4d4f;
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 11px;
  height: 18px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: -4px;
  top: -4px;
  min-width: 18px;
  padding: 0 4px;
}

.vi-site-header__cart-dropdown {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  opacity: 0;
  min-width: 320px;
  padding: 0.9rem 1.4rem 1rem;
  position: absolute;
  right: 0;
  top: 100%;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  visibility: hidden;
  z-index: 20;
}

.vi-site-header__cart:hover .vi-site-header__cart-dropdown,
.vi-site-header__cart:focus-within .vi-site-header__cart-dropdown {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.vi-site-header__cart-dropdown::before {
  border-bottom: 8px solid #fff;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  content: '';
  position: absolute;
  right: 18px;
  top: -8px;
}

.vi-site-header__cart-dropdown .woocommerce-mini-cart__empty-message {
  color: #555;
  font-size: 14px;
  margin: 0;
  text-align: center;
}

.vi-site-header__cart-dropdown .total-count {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #eee;
}

.vi-site-header__cart-dropdown .total-count a {
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  margin-left: auto;
  color: inherit;
  transition: all 0.2s linear;
}

.vi-site-header__cart-dropdown .total-count a:hover,
.vi-site-header__cart-dropdown .total-count a:focus {
  color: var(--vi-accent-color) !important;
}

.vi-site-header__cart-dropdown .cart_list {
  margin: 0.75rem 0 0;
  max-height: 260px;
  overflow-y: auto;
  padding: 0;
}

.vi-site-header__nav {
  border-top: 1px solid #e7e7e7;
  margin-top: 0.5rem;
}

.vi-site-header__menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0.75rem 0;
}

.vi-site-header__menu li {
  position: relative;
}

.vi-site-header__menu a {
  color: #1a1a1a;
  text-decoration: none;
  transition: all 0.2s linear;
}

.vi-site-header__menu a:hover,
.vi-site-header__menu a:focus,
.vi-site-header__icon-link:hover,
.vi-site-header__icon-link:focus,
.vi-site-header__icon-btn:hover,
.vi-site-header__icon-btn:focus {
  color: var(--vi-accent-color);
}

.vi-site-header__search-overlay {
  align-items: center;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  inset: 0;
  justify-content: center;
  padding: 2rem 1rem;
  position: fixed;
  z-index: 10060;
}

.vi-site-header__search-overlay.is-open {
  display: flex;
}

.vi-site-header__search-dialog {
  background: #fff;
  border-radius: 12px;
  max-width: 680px;
  padding: 2.5rem 1.5rem 2rem;
  position: relative;
  width: 100%;
}

.vi-site-header__search-close {
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  position: absolute;
  right: 16px;
  top: 12px;
}

html.vi-search-open,
body.vi-search-open {
  overflow: hidden;
}

@media (max-width: 1024px) {
  .vi-site-header__bar {
    grid-template-columns: auto 1fr auto;
  }

  .vi-site-header__search {
    display: none;
  }

  .vi-site-header__search-toggle {
    display: inline-flex;
  }

  .vi-site-header__burger {
    display: inline-flex;
  }

  .vi-site-header__logo-img {
    max-height: 40px;
    max-width: 120px;
  }

  .vi-site-header__logo-mobile {
    display: inline-flex;
  }

  .vi-site-header__logo-img--desktop {
    display: none;
  }

  .vi-site-header__logo-img--mobile {
    display: inline-flex;
  }

  .vi-site-header__nav {
    display: none;
  }
}

@media (min-width: 1025px) {
  .vi-site-header__search-toggle {
    display: none;
  }
}
