/* Varmers site shell: custom header and footer */
:root {
	--vs-pink: #e4137b;
	--vs-pink-dark: #b50f60;
	--vs-green: #87c98b;
	--vs-green-dark: #173f2c;
	--vs-green-deep: #102d21;
	--vs-green-soft: #edf7ef;
	--vs-cream: #f7f6f1;
	--vs-ink: #14231c;
	--vs-muted: #5d6e66;
	--vs-line: #dfe8e3;
	--vs-white: #ffffff;
	--vs-shell: 1220px;
	--vs-shadow: 0 18px 54px rgba(13, 48, 31, 0.13);
}

body.varmers-site-shell {
	--vs-admin-offset: 0px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}

body.admin-bar.varmers-site-shell {
	--vs-admin-offset: 32px;
}

body.varmers-site-shell.vs-menu-open {
	overflow: hidden;
}

body.varmers-site-shell > .top-bar,
body.varmers-site-shell #masthead,
body.varmers-site-shell .site-header,
body.varmers-site-shell #site-navigation,
body.varmers-site-shell .main-navigation,
body.varmers-site-shell #site-footer,
body.varmers-site-shell #site-info,
body.varmers-site-shell .site-info,
body.varmers-site-shell .footer-widgets,
body.varmers-site-shell .site-footer {
	display: none !important;
}

body.varmers-site-shell--enclosed .vs-site-header,
body.varmers-site-shell--enclosed .vs-site-footer {
	display: none !important;
}

.vs-shell {
	width: min(var(--vs-shell), calc(100% - 40px));
	margin: 0 auto;
}

.vs-site-header,
.vs-site-header *,
.vs-site-footer,
.vs-site-footer * {
	box-sizing: border-box;
}

.vs-site-header a,
.vs-site-footer a {
	text-decoration: none;
}

.vs-site-header {
	position: sticky;
	top: var(--vs-admin-offset);
	z-index: 9990;
	width: 100%;
	font-family: inherit;
}

.vs-announcement {
	max-height: 38px;
	overflow: hidden;
	background: var(--vs-green-deep);
	color: #dcece3;
	transition: max-height 0.25s ease, opacity 0.25s ease;
}

.vs-announcement__inner {
	display: flex;
	min-height: 38px;
	align-items: center;
	justify-content: center;
	gap: 16px;
	font-size: 12px;
	line-height: 1.3;
}

.vs-announcement a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #ffffff;
	font-weight: 700;
}

.vs-announcement svg,
.vs-mobile-drawer__meta svg {
	width: 16px;
	height: 16px;
}

.vs-site-header.is-scrolled .vs-announcement {
	max-height: 0;
	opacity: 0;
}

.vs-header-main {
	border-bottom: 1px solid rgba(218, 230, 223, 0.92);
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 8px 28px rgba(13, 48, 31, 0.04);
	backdrop-filter: blur(16px);
}

.vs-header-main__inner {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	min-height: 76px;
	align-items: center;
	gap: 28px;
}

.vs-brand {
	display: inline-flex;
	min-width: 134px;
	align-items: center;
	gap: 10px;
	color: var(--vs-green-deep);
}

.vs-brand img {
	display: block;
	width: auto;
	max-width: 164px;
	height: 46px;
	object-fit: contain;
}

.vs-brand__mark {
	display: inline-flex;
	width: 42px;
	height: 42px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--vs-pink);
	color: #fff;
	font-size: 19px;
	font-weight: 800;
}

.vs-brand__word {
	font-size: 21px;
	font-weight: 800;
	letter-spacing: -0.035em;
}

.vs-desktop-nav {
	justify-self: center;
}

.vs-desktop-nav__list {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 3px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.vs-desktop-nav__item {
	position: relative;
}

.vs-desktop-nav__topline {
	display: flex;
	min-height: 46px;
	align-items: center;
	border-radius: 999px;
	transition: background 0.18s ease;
}

.vs-desktop-nav__topline:hover,
.vs-desktop-nav__item.is-open .vs-desktop-nav__topline,
.vs-desktop-nav__item:focus-within .vs-desktop-nav__topline {
	background: var(--vs-green-soft);
}

.vs-desktop-nav__topline > a {
	display: inline-flex;
	min-height: 46px;
	align-items: center;
	padding: 0 11px;
	color: var(--vs-ink);
	font-size: 13px;
	font-weight: 600;
	white-space: nowrap;
}

.vs-desktop-nav__item.has-children .vs-desktop-nav__topline > a {
	padding-right: 4px;
}

.vs-submenu-toggle {
	display: inline-flex;
	width: 30px;
	height: 38px;
	align-items: center;
	justify-content: center;
	margin: 0 4px 0 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: #60736a;
	cursor: pointer;
}

.vs-submenu-toggle svg {
	width: 17px;
	height: 17px;
	transition: transform 0.18s ease;
}

.vs-submenu-toggle[aria-expanded="true"] svg {
	transform: rotate(180deg);
}

.vs-dropdown {
	position: absolute;
	top:100%;
    padding-top:8px;
	left: 50%;
	z-index: 20;
	width: 310px;

	visibility: hidden;
	opacity: 0;
	transform: translate(-50%, -7px);
	pointer-events: none;
	transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.vs-desktop-nav__item:hover .vs-dropdown,
.vs-desktop-nav__item:focus-within .vs-dropdown,
.vs-desktop-nav__item.is-open .vs-dropdown {
	visibility: visible;
	opacity: 1;
	transform: translate(-50%, 0);
	pointer-events: auto;
}

.vs-dropdown__panel {
	display: grid;
	gap: 4px;
	padding: 10px;
	border: 1px solid var(--vs-line);
	border-radius: 20px;
	background: #fff;
	box-shadow: var(--vs-shadow);
}

.vs-dropdown__link {
	display: grid;
	gap: 3px;
	padding: 12px 13px;
	border-radius: 13px;
	color: var(--vs-ink);
	transition: background 0.17s ease, transform 0.17s ease;
}

.vs-dropdown__link:hover,
.vs-dropdown__link:focus {
	background: var(--vs-green-soft);
	color: var(--vs-ink);
	transform: translateX(2px);
}

.vs-dropdown__link strong {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: -0.015em;
}

.vs-dropdown__link span {
	color: var(--vs-muted);
	font-size: 11px;
	line-height: 1.4;
}

.vs-header-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 4px;
}

.vs-header-action {
	position: relative;
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	gap: 6px;
	padding: 0 8px;
	border-radius: 999px;
	color: var(--vs-green-deep);
	font-size: 12px;
	font-weight: 600;
	white-space: nowrap;
	transition: background 0.17s ease;
}

.vs-header-action:hover {
	background: var(--vs-green-soft);
	color: var(--vs-green-deep);
}

.vs-header-action svg {
	width: 19px;
	height: 19px;
}

.vs-cart-count {
	position: absolute;
	top: 0;
	right: 1px;
	display: inline-flex;
	min-width: 18px;
	height: 18px;
	align-items: center;
	justify-content: center;
	padding: 0 5px;
	border: 2px solid #fff;
	border-radius: 999px;
	background: var(--vs-pink);
	color: #fff;
	font-size: 9px;
	font-style: normal;
	font-weight: 800;
	line-height: 1;
}

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

.vs-button {
	display: inline-flex;
	min-height: 48px;
	align-items: center;
	justify-content: center;
	padding: 12px 18px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-family: inherit;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.vs-button:hover {
	transform: translateY(-2px);
}

.vs-button--header,
.vs-button--primary {
	background: var(--vs-pink);
	color: #fff;
	box-shadow: 0 10px 24px rgba(228, 19, 123, 0.2);
}

.vs-button--header:hover,
.vs-button--primary:hover {
	background: var(--vs-pink-dark);
	color: #fff;
}

.vs-button--secondary {
	border-color: #cadbd1;
	background: #fff;
	color: var(--vs-green-deep);
}

.vs-button--secondary:hover {
	border-color: var(--vs-green-dark);
	color: var(--vs-green-deep);
}

.vs-button--light {
	background: #fff;
	color: var(--vs-green-deep);
	box-shadow: 0 12px 26px rgba(0, 0, 0, 0.13);
}

.vs-button--ghost {
	border-color: rgba(255, 255, 255, 0.38);
	background: transparent;
	color: #fff;
}

.vs-icon-button {
	display: inline-flex;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 1px solid var(--vs-line);
	border-radius: 50%;
	background: #fff;
	color: var(--vs-green-deep);
	cursor: pointer;
}

.vs-icon-button svg {
	width: 22px;
	height: 22px;
}

.vs-mobile-menu-button {
	display: none;
}

.vs-mobile-drawer {
	position: fixed;
	inset: 0;
	z-index: 100;
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s ease, visibility 0.25s ease;
}

.vs-mobile-drawer.is-open {
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
}

.vs-mobile-drawer__overlay {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	padding: 0;
	border: 0;
	background: rgba(7, 27, 19, 0.62);
	backdrop-filter: blur(4px);
}

.vs-mobile-drawer__panel {
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	width: min(92vw, 420px);
	height: 100%;
	flex-direction: column;
	overflow-y: auto;
	padding: 18px 18px 24px;
	background: #fff;
	box-shadow: -20px 0 70px rgba(4, 24, 15, 0.24);
	transform: translateX(100%);
	transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.vs-mobile-drawer__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding-bottom: 15px;
	border-bottom: 1px solid var(--vs-line);
}

.vs-mobile-drawer__head .vs-brand img {
	height: 42px;
}

.vs-mobile-nav {
	padding: 18px 0;
}

.vs-mobile-nav ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.vs-mobile-nav > ul > li {
	border-bottom: 1px solid #e9efeb;
}

.vs-mobile-nav__row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
}

.vs-mobile-nav__row > a {
	display: flex;
	min-height: 56px;
	align-items: center;
	color: var(--vs-ink);
	font-size: 17px;
	font-weight: 700;
	letter-spacing: -0.02em;
}

.vs-mobile-accordion {
	display: inline-flex;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: var(--vs-green-soft);
	color: var(--vs-green-deep);
	cursor: pointer;
}

.vs-mobile-accordion svg {
	width: 18px;
	height: 18px;
	transition: transform 0.18s ease;
}

.vs-mobile-accordion[aria-expanded="true"] svg {
	transform: rotate(180deg);
}

.vs-mobile-submenu {
	display: grid;
	gap: 3px;
	padding: 0 0 13px 13px !important;
}

.vs-mobile-submenu[hidden] {
	display: none;
}

.vs-mobile-submenu a {
	display: flex;
	min-height: 45px;
	align-items: center;
	padding: 9px 12px;
	border-radius: 11px;
	color: #52665c;
	font-size: 14px;
	font-weight: 600;
}

.vs-mobile-submenu a:hover,
.vs-mobile-submenu a:focus {
	background: var(--vs-green-soft);
	color: var(--vs-green-deep);
}

.vs-mobile-drawer__actions {
	display: grid;
	gap: 10px;
	margin-top: auto;
	padding-top: 20px;
}

.vs-mobile-drawer__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-top: 18px;
	padding-top: 18px;
	border-top: 1px solid var(--vs-line);
	color: var(--vs-muted);
	font-size: 11px;
}

.vs-mobile-drawer__meta a {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	color: var(--vs-green-dark);
	font-weight: 700;
}

/* Footer */
.vs-site-footer {
	position: relative;
	z-index: 2;
	width: 100%;
	padding: 0 0 24px;
	background: var(--vs-green-deep);
	color: #bfd4c8;
	font-family: inherit;
}

.vs-footer-cta-wrap {
	padding-top: 74px;
}

.vs-footer-cta {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 50px;
	padding: 38px 42px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 28px;
	background: linear-gradient(135deg, rgba(228, 19, 123, 0.18), rgba(135, 201, 139, 0.08));
}

.vs-eyebrow {
	display: block;
	margin-bottom: 10px;
	color: #f38bbd;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.vs-footer-cta h2 {
	margin: 0;
	color: #fff;
	font-size: clamp(30px, 4vw, 48px);
	font-weight: 800;
	letter-spacing: -0.045em;
	line-height: 1.02;
}

.vs-footer-cta p {
	max-width: 720px;
	margin: 12px 0 0;
	color: #c8dacf;
	font-size: 14px;
	line-height: 1.65;
}

.vs-footer-cta__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 10px;
}

.vs-footer-main {
	display: grid;
	grid-template-columns: minmax(250px, 0.9fr) minmax(0, 1.5fr);
	gap: 80px;
	padding-top: 74px;
	padding-bottom: 54px;
}

.vs-brand--footer {
	color: #fff;
}



.vs-footer-brand > p {
	max-width: 360px;
	margin: 22px 0 0;
	color: #afc5b8;
	font-size: 13px;
	line-height: 1.65;
}

.vs-footer-location {
	display: grid;
	gap: 6px;
	margin-top: 25px;
}

.vs-footer-location strong {
	color: #fff;
	font-size: 13px;
}

.vs-footer-location a {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	width: max-content;
	color: #91d18b;
	font-size: 12px;
	font-weight: 700;
}

.vs-footer-location svg {
	width: 16px;
	height: 16px;
}

.vs-footer-groups {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 36px;
}

.vs-footer-group h3 {
	margin: 0 0 17px;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: -0.015em;
}

.vs-footer-group ul {
	display: grid;
	gap: 11px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.vs-footer-group a {
	color: #afc5b8;
	font-size: 12px;
	line-height: 1.45;
	transition: color 0.17s ease, transform 0.17s ease;
}

.vs-footer-group a:hover,
.vs-footer-group a:focus {
	color: #fff;
	transform: translateX(2px);
}

.vs-footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.vs-footer-bottom p {
	margin: 0;
	color: #829b8e;
	font-size: 11px;
}

.vs-footer-bottom nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 18px;
}

.vs-footer-bottom a {
	color: #9fb6aa;
	font-size: 11px;
}

.vs-footer-bottom a:hover {
	color: #fff;
}

.vs-footer-intro{
	margin:22px 0 28px;
	color:#b8ccc0;
	font-size:13px;
	line-height:1.7;
}

.vs-footer-business{
	display:grid;
	gap:18px;
}

.vs-footer-business__section h4{
	margin:0 0 6px;
	color:#91d18b;
	font-size:11px;
	font-weight:700;
	letter-spacing:.08em;
	text-transform:uppercase;
}

.vs-footer-business__section p{
	margin:0;
	color:#d8e4dd;
	font-size:13px;
	line-height:1.65;
}

.vs-footer-business__section a{
	color:#ffffff;
	font-weight:600;
}

.vs-footer-business__section a:hover{
	color:#91d18b;
}

.vs-footer-contact-link{
	display:inline-flex;
	align-items:center;
	gap:8px;
	margin-top:24px;
	color:#91d18b;
	font-weight:700;
}

.vs-footer-contact-link svg{
	width:15px;
	height:15px;
}

@media (max-width: 1160px) {
	.vs-header-main__inner {
		gap: 17px;
	}

	.vs-desktop-nav__topline > a {
		padding-right: 8px;
		padding-left: 8px;
		font-size: 12px;
	}

	.vs-header-action span {
		display: none;
	}

	.vs-header-action {
		width: 42px;
		justify-content: center;
		padding: 0;
	}
}

@media (max-width: 980px) {
	.vs-announcement {
		display: none;
	}

	.vs-header-main__inner {
		grid-template-columns: auto 1fr auto;
		min-height: 66px;
	}

	.vs-desktop-nav,
	.vs-button--header,
	.vs-header-action--account {
		display: none;
	}

	.vs-header-actions {
		grid-column: 3;
	}

	.vs-mobile-menu-button {
		display: inline-flex;
	}

	.vs-header-action--cart {
		display: inline-flex;
	}

	.vs-footer-cta {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.vs-footer-cta__actions {
		justify-content: flex-start;
	}

	.vs-footer-main {
		grid-template-columns: 1fr;
		gap: 46px;
	}
}

@media (max-width: 680px) {
	body.admin-bar.varmers-site-shell {
		--vs-admin-offset: 46px;
	}

	.vs-shell {
		width: min(var(--vs-shell), calc(100% - 24px));
	}

	.vs-header-main__inner {
		min-height: 62px;
		gap: 12px;
	}

	.vs-brand {
		min-width: 0;
	}

	.vs-brand img {
		max-width: 142px;
		height: 40px;
	}

	.vs-header-actions {
		gap: 1px;
	}

	.vs-header-action,
	.vs-icon-button {
		width: 42px;
		height: 42px;
		min-height: 42px;
	}

	.vs-cart-count {
		top: -2px;
		right: -1px;
	}

	.vs-mobile-drawer__panel {
		width: min(94vw, 420px);
		padding: 14px 14px 22px;
	}

	.vs-mobile-drawer__meta {
		align-items: flex-start;
		flex-direction: column;
	}

	.vs-footer-cta-wrap {
		padding-top: 54px;
	}

	.vs-footer-cta {
		padding: 28px 23px;
		border-radius: 22px;
	}

	.vs-footer-cta__actions {
		align-items: stretch;
		flex-direction: column;
	}

	.vs-footer-main {
		padding-top: 56px;
		padding-bottom: 42px;
	}

	.vs-footer-groups {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 34px 22px;
	}

	.vs-footer-group:last-child {
		grid-column: 1 / -1;
	}

	.vs-footer-bottom {
		align-items: flex-start;
		flex-direction: column;
	}

	.vs-footer-bottom nav {
		justify-content: flex-start;
		gap: 13px 18px;
	}
}

@media (max-width: 420px) {
	.vs-footer-groups {
		grid-template-columns: 1fr;
	}

	.vs-footer-group:last-child {
		grid-column: auto;
	}
}

@media (prefers-reduced-motion: reduce) {
	.vs-site-header *,
	.vs-site-header *::before,
	.vs-site-header *::after,
	.vs-site-footer *,
	.vs-site-footer *::before,
	.vs-site-footer *::after {
		transition: none !important;
		animation: none !important;
		scroll-behavior: auto !important;
	}
}
