@font-face {
	font-family: "VY Manrope";
	src: url("../fonts/manrope.woff2") format("woff2");
	font-style: normal;
	font-weight: 200 800;
	font-display: swap;
}

@font-face {
	font-family: "VY Literata";
	src: url("../fonts/literata.woff2") format("woff2");
	font-style: normal;
	font-weight: 400 800;
	font-display: swap;
}

:root {
	--vy-forest-950: #102b24;
	--vy-forest-900: #173a30;
	--vy-forest-800: #205141;
	--vy-forest-700: #28664f;
	--vy-forest-100: #dcebe3;
	--vy-forest-50: #eff7f2;
	--vy-gold-700: #987225;
	--vy-gold-600: #b88b2d;
	--vy-gold-500: #d1a541;
	--vy-gold-100: #f1e4bd;
	--vy-ink: #1d2925;
	--vy-muted: #62706b;
	--vy-line: #dbe3de;
	--vy-paper: #fffdf8;
	--vy-white: #fff;
	--vy-danger: #a33a31;
	--vy-radius-sm: 10px;
	--vy-radius-md: 18px;
	--vy-radius-lg: 28px;
	--vy-shadow-sm: 0 8px 30px rgba(16, 43, 36, .08);
	--vy-shadow-md: 0 24px 60px rgba(16, 43, 36, .14);
	--vy-shell: 1180px;
	--vy-focus: 0 0 0 3px rgba(209, 165, 65, .45);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	background: var(--vy-paper);
	color: var(--vy-ink);
	font-family: "VY Manrope", sans-serif;
	font-size: 16px;
	line-height: 1.65;
	overflow-wrap: anywhere;
}

body,
button,
input,
select,
textarea {
	font-family: "VY Manrope", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--vy-forest-950);
	font-family: "VY Literata", serif;
	font-weight: 700;
	letter-spacing: -.025em;
	line-height: 1.2;
}

h1 {
	font-size: clamp(2.15rem, 5vw, 4.8rem);
}

h2 {
	font-size: clamp(1.75rem, 3vw, 3rem);
}

h3 {
	font-size: clamp(1.1rem, 1.6vw, 1.35rem);
}

a {
	color: var(--vy-forest-700);
	text-decoration-color: rgba(40, 102, 79, .35);
	text-underline-offset: 3px;
}

a:hover {
	color: var(--vy-gold-700);
}

button,
a,
input,
select,
textarea {
	transition: border-color .2s ease, box-shadow .2s ease, color .2s ease, background-color .2s ease, transform .2s ease;
}

:focus-visible {
	box-shadow: var(--vy-focus) !important;
	outline: 2px solid transparent !important;
}

img {
	height: auto;
	max-width: 100%;
}

.vy-shell,
.col-full {
	margin-inline: auto;
	max-width: var(--vy-shell);
	padding-inline: 24px;
	width: 100%;
}

.site-header {
	background: rgba(255, 253, 248, .97) !important;
	border: 0;
	box-shadow: 0 1px 0 rgba(16, 43, 36, .1);
	margin: 0;
	padding: 0;
	position: relative;
	z-index: 50;
}

.home .site-header {
	margin-bottom: 0;
}

.vy-topbar {
	background: var(--vy-forest-950);
	color: rgba(255, 255, 255, .88);
	font-size: .79rem;
	letter-spacing: .03em;
}

.vy-topbar__inner {
	align-items: center;
	display: flex;
	justify-content: space-between;
	min-height: 36px;
}

.vy-topbar p {
	margin: 0;
}

.vy-topbar__links {
	display: flex;
	gap: 24px;
}

.vy-topbar a {
	color: inherit;
	text-decoration: none;
}

.vy-header-main {
	align-items: center;
	display: grid;
	gap: 32px;
	grid-template-columns: 132px minmax(280px, 1fr) auto;
	min-height: 118px;
}

.vy-brand {
	display: block;
	justify-self: start;
	line-height: 0;
}

.vy-brand img {
	height: 92px;
	object-fit: contain;
	width: 92px;
}

.vy-search form {
	display: flex;
	margin: 0;
	max-width: 620px;
	position: relative;
	width: 100%;
}

.vy-search input[type="search"] {
	background: var(--vy-white);
	border: 1px solid var(--vy-line);
	border-radius: 999px;
	box-shadow: none;
	font-size: .95rem;
	height: 50px;
	padding: 0 58px 0 20px;
	width: 100%;
}

.vy-search button {
	background: var(--vy-gold-600);
	border: 0;
	border-radius: 999px;
	color: var(--vy-forest-950);
	font-size: 0;
	height: 42px;
	padding: 0;
	position: absolute;
	right: 4px;
	top: 4px;
	width: 42px;
}

.vy-search button::before {
	content: "\2315";
	font-size: 1.65rem;
	font-weight: 700;
	line-height: 1;
}

.vy-cart {
	align-items: center;
	background: var(--vy-forest-50);
	border: 1px solid var(--vy-forest-100);
	border-radius: 999px;
	color: var(--vy-forest-900);
	display: inline-flex;
	font-size: .88rem;
	font-weight: 750;
	gap: 8px;
	min-height: 46px;
	padding: 8px 12px 8px 16px;
	text-decoration: none;
}

.vy-cart:hover {
	background: var(--vy-forest-900);
	color: var(--vy-white);
}

.vy-cart__count {
	align-items: center;
	background: var(--vy-gold-500);
	border-radius: 999px;
	color: var(--vy-forest-950);
	display: inline-flex;
	font-size: .76rem;
	height: 24px;
	justify-content: center;
	min-width: 24px;
	padding: 0 6px;
}

.vy-primary-nav {
	background: var(--vy-forest-900);
}

.vy-primary-nav__list {
	align-items: stretch;
	display: flex;
	gap: 2px;
	justify-content: center;
	list-style: none;
	margin: 0;
	padding: 0;
}

.vy-primary-nav__list > li {
	margin: 0;
	position: relative;
}

.vy-primary-nav__list a {
	align-items: center;
	color: rgba(255, 255, 255, .92);
	display: flex;
	font-size: .82rem;
	font-weight: 750;
	letter-spacing: .055em;
	min-height: 50px;
	padding: 0 19px;
	text-decoration: none;
	text-transform: uppercase;
}

.vy-primary-nav__list a:hover,
.vy-primary-nav__list .current-menu-item > a,
.vy-primary-nav__list .current-product_cat-ancestor > a {
	background: var(--vy-gold-600);
	color: var(--vy-forest-950);
}

.vy-primary-nav__list .sub-menu {
	background: var(--vy-white);
	border: 1px solid var(--vy-line);
	border-radius: var(--vy-radius-sm);
	box-shadow: var(--vy-shadow-md);
	display: none;
	left: 0;
	list-style: none;
	margin: 0;
	min-width: 240px;
	padding: 8px;
	position: absolute;
	top: calc(100% - 1px);
}

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

.vy-primary-nav__list .sub-menu a {
	border-radius: 7px;
	color: var(--vy-ink);
	font-size: .86rem;
	letter-spacing: 0;
	min-height: 42px;
	padding: 8px 12px;
	text-transform: none;
}

.vy-menu-toggle,
.vy-mobile-contact {
	display: none;
}

.storefront-breadcrumb {
	background: var(--vy-forest-50);
	color: var(--vy-muted);
	font-size: .82rem;
	margin: 0;
	padding: 14px 0;
}

.storefront-breadcrumb a {
	color: var(--vy-forest-700);
}

.home .storefront-breadcrumb,
.home .site-content > .col-full {
	display: contents;
}

.home .storefront-breadcrumb + .site-content,
.home .site-content {
	margin-top: 0;
}

.home .site-content {
	padding: 0;
}

.vy-home {
	min-width: 0;
}

.vy-section {
	padding: clamp(64px, 8vw, 108px) 0;
}

.vy-section--tint {
	background:
		radial-gradient(circle at 10% 10%, rgba(209, 165, 65, .11), transparent 28%),
		var(--vy-forest-50);
}

.vy-inline-products {
	margin: 50px 0;
}

.vy-inline-products > h2 {
	margin-bottom: 26px;
}

.vy-contact-hero {
	background:
		radial-gradient(circle at 80% 10%, rgba(209, 165, 65, .18), transparent 28%),
		var(--vy-forest-900);
	color: rgba(255, 255, 255, .82);
	padding: clamp(64px, 10vw, 120px) 0;
}

.vy-contact-hero h1 {
	color: var(--vy-white);
	max-width: 800px;
}

.vy-contact-hero p:last-child {
	font-size: 1.05rem;
	max-width: 680px;
}

.vy-contact-grid {
	display: grid;
	gap: clamp(28px, 6vw, 80px);
	grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
}

.vy-contact-details,
.vy-contact-form {
	background: var(--vy-white);
	border: 1px solid var(--vy-line);
	border-radius: var(--vy-radius-lg);
	box-shadow: var(--vy-shadow-sm);
	padding: clamp(24px, 4vw, 44px);
}

.vy-contact-details dl {
	margin: 28px 0;
}

.vy-contact-details dl div {
	border-bottom: 1px solid var(--vy-line);
	display: grid;
	gap: 12px;
	grid-template-columns: 95px 1fr;
	padding: 14px 0;
}

.vy-contact-details dt {
	font-size: .8rem;
	font-weight: 800;
	text-transform: uppercase;
}

.vy-contact-details dd {
	color: var(--vy-muted);
	margin: 0;
}

.vy-contact-form .wpcf7-form p {
	margin-bottom: 16px;
}

.vy-contact-form .wpcf7-form-control-wrap,
.vy-contact-form input:not([type="submit"]),
.vy-contact-form textarea {
	display: block;
	width: 100%;
}

.vy-section-heading {
	margin-bottom: 38px;
	max-width: 730px;
}

.vy-section-heading--center {
	margin-inline: auto;
	text-align: center;
}

.vy-section-heading--split {
	align-items: end;
	display: flex;
	justify-content: space-between;
	max-width: none;
}

.vy-section-heading h2 {
	margin: 0 0 12px;
}

.vy-section-heading p:last-child {
	color: var(--vy-muted);
	font-size: 1.02rem;
	margin-bottom: 0;
}

.vy-eyebrow {
	color: var(--vy-gold-700) !important;
	font-size: .76rem !important;
	font-weight: 800;
	letter-spacing: .18em;
	margin: 0 0 12px !important;
	text-transform: uppercase;
}

.vy-button,
button.button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.button,
.wc-block-components-button {
	align-items: center;
	background: var(--vy-gold-600);
	border: 1px solid var(--vy-gold-600);
	border-radius: 999px;
	box-shadow: none;
	color: var(--vy-forest-950);
	display: inline-flex;
	font-weight: 800;
	justify-content: center;
	letter-spacing: .015em;
	min-height: 48px;
	padding: 10px 22px;
	text-decoration: none;
}

.vy-button:hover,
button.button:hover,
input[type="submit"]:hover,
.button:hover,
.wc-block-components-button:hover {
	background: var(--vy-forest-900);
	border-color: var(--vy-forest-900);
	color: var(--vy-white);
	transform: translateY(-1px);
}

.vy-button--ghost {
	background: transparent;
	border-color: rgba(255, 255, 255, .72);
	color: var(--vy-white);
}

.vy-button--ghost:hover {
	background: var(--vy-white);
	border-color: var(--vy-white);
	color: var(--vy-forest-950);
}

.vy-button--ghost-dark {
	background: transparent;
	border-color: var(--vy-forest-900);
	color: var(--vy-forest-900);
}

.vy-button--small {
	font-size: .78rem;
	min-height: 38px;
	padding: 7px 14px;
}

.vy-text-link {
	font-size: .9rem;
	font-weight: 800;
	text-decoration: none;
}

.vy-hero {
	background:
		linear-gradient(90deg, rgba(16, 43, 36, .96) 0%, rgba(16, 43, 36, .85) 38%, rgba(16, 43, 36, .14) 75%, rgba(16, 43, 36, .02) 100%),
		var(--vy-hero-image) center / cover no-repeat;
	color: var(--vy-white);
	isolation: isolate;
	min-height: clamp(560px, 63vw, 720px);
	position: relative;
}

.vy-hero::after {
	background: linear-gradient(180deg, transparent 65%, rgba(16, 43, 36, .32));
	content: "";
	inset: 0;
	pointer-events: none;
	position: absolute;
	z-index: -1;
}

.vy-hero__inner {
	align-items: center;
	display: flex;
	min-height: inherit;
}

.vy-hero__content {
	max-width: 670px;
	padding: 72px 0;
}

.vy-hero h1 {
	color: var(--vy-white);
	margin: 0 0 24px;
}

.vy-hero__lead {
	color: rgba(255, 255, 255, .86);
	font-size: clamp(1.02rem, 1.5vw, 1.2rem);
	max-width: 600px;
}

.vy-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 30px 0;
}

.vy-hero__proof {
	display: flex;
	flex-wrap: wrap;
	font-size: .86rem;
	gap: 12px 25px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.vy-hero__proof li::before {
	color: var(--vy-gold-500);
	content: "\2713";
	font-weight: 900;
	margin-right: 8px;
}

.vy-trust-grid {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.vy-trust-card {
	background: var(--vy-white);
	border: 1px solid var(--vy-line);
	border-radius: var(--vy-radius-md);
	box-shadow: var(--vy-shadow-sm);
	padding: 28px 22px;
	text-align: center;
}

.vy-trust-card img {
	height: 64px;
	margin-bottom: 18px;
	object-fit: contain;
	width: 64px;
}

.vy-trust-card h3 {
	font-family: "VY Manrope", sans-serif;
	font-size: .98rem;
	letter-spacing: 0;
	margin: 0 0 9px;
}

.vy-trust-card p {
	color: var(--vy-muted);
	font-size: .86rem;
	margin: 0;
}

.vy-category-grid {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.vy-category-card {
	background: var(--vy-white);
	border: 1px solid var(--vy-line);
	border-radius: var(--vy-radius-md);
	box-shadow: var(--vy-shadow-sm);
	color: var(--vy-ink);
	overflow: hidden;
	text-decoration: none;
}

.vy-category-card:hover {
	box-shadow: var(--vy-shadow-md);
	color: var(--vy-ink);
	transform: translateY(-4px);
}

.vy-category-card img {
	aspect-ratio: 4 / 3;
	display: block;
	object-fit: cover;
	width: 100%;
}

.vy-category-card__body {
	display: flex;
	flex-direction: column;
	gap: 9px;
	padding: 22px;
}

.vy-category-card strong {
	color: var(--vy-forest-950);
	font-family: "VY Literata", serif;
	font-size: 1.15rem;
}

.vy-category-card span span {
	color: var(--vy-muted);
	font-size: .88rem;
	min-height: 58px;
}

.vy-category-card em {
	color: var(--vy-gold-700);
	font-size: .78rem;
	font-style: normal;
	font-weight: 800;
}

.vy-tabs__nav {
	border-bottom: 1px solid var(--vy-line);
	display: flex;
	gap: 8px;
	margin-bottom: 30px;
	overflow-x: auto;
}

.vy-tabs__nav button {
	background: transparent;
	border: 0;
	border-bottom: 3px solid transparent;
	color: var(--vy-muted);
	font-weight: 800;
	margin: 0;
	min-height: 48px;
	padding: 8px 16px;
	white-space: nowrap;
}

.vy-tabs__nav button[aria-selected="true"] {
	border-bottom-color: var(--vy-gold-600);
	color: var(--vy-forest-900);
}

.vy-product-grid {
	display: grid;
	gap: 22px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.vy-product-card {
	background: var(--vy-white);
	border: 1px solid var(--vy-line);
	border-radius: var(--vy-radius-md);
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.vy-product-card__image {
	background: #f6f4ee;
	display: block;
	position: relative;
}

.vy-product-card__image img {
	aspect-ratio: 1 / 1;
	display: block;
	object-fit: cover;
	width: 100%;
}

.vy-product-card__badge,
.onsale {
	background: var(--vy-danger);
	border: 0;
	border-radius: 999px;
	color: var(--vy-white);
	font-size: .7rem;
	font-weight: 800;
	left: 12px;
	line-height: 1;
	margin: 0;
	min-height: auto;
	padding: 8px 10px;
	position: absolute;
	top: 12px;
}

.vy-product-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 18px;
}

.vy-product-card__category {
	font-size: .7rem;
	letter-spacing: .08em;
	margin: 0 0 6px;
	text-transform: uppercase;
}

.vy-product-card__body h3 {
	font-family: "VY Manrope", sans-serif;
	font-size: .95rem;
	font-weight: 750;
	letter-spacing: 0;
	line-height: 1.45;
	margin: 0 0 13px;
}

.vy-product-card__body h3 a {
	color: var(--vy-ink);
	text-decoration: none;
}

.vy-product-card__price {
	color: var(--vy-danger);
	font-size: 1rem;
	font-weight: 850;
	margin: auto 0 15px;
}

.vy-product-card__price del {
	color: var(--vy-muted);
	font-size: .78rem;
	font-weight: 500;
}

.vy-price-prefix {
	color: var(--vy-muted);
	font-size: .75rem;
	font-weight: 650;
}

.vy-story {
	background:
		linear-gradient(90deg, rgba(255, 253, 248, .96) 0%, rgba(255, 253, 248, .88) 40%, rgba(255, 253, 248, .05) 72%),
		var(--vy-story-image) center / cover no-repeat;
	min-height: 580px;
}

.vy-story__inner {
	align-items: center;
	display: flex;
	min-height: inherit;
}

.vy-story__card {
	max-width: 570px;
	padding: 64px 0;
}

.vy-story__card h2 {
	margin-bottom: 20px;
}

.vy-content-grid {
	display: grid;
	gap: 50px;
	grid-template-columns: minmax(0, 1.45fr) minmax(300px, .7fr);
}

.vy-post-grid {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.vy-post-card {
	background: var(--vy-white);
	border: 1px solid var(--vy-line);
	border-radius: var(--vy-radius-md);
	overflow: hidden;
}

.vy-post-card__image {
	display: block;
}

.vy-post-card__image img {
	aspect-ratio: 16 / 10;
	display: block;
	object-fit: cover;
	width: 100%;
}

.vy-post-card > div {
	padding: 18px;
}

.vy-post-card__meta {
	color: var(--vy-gold-700);
	font-size: .72rem;
	font-weight: 800;
	margin: 0 0 7px;
}

.vy-post-card h3 {
	font-family: "VY Manrope", sans-serif;
	font-size: .98rem;
	letter-spacing: 0;
	line-height: 1.45;
	margin: 0;
}

.vy-post-card h3 a {
	color: var(--vy-ink);
	text-decoration: none;
}

.vy-testimonial {
	background: var(--vy-forest-900);
	border-radius: var(--vy-radius-lg);
	color: rgba(255, 255, 255, .86);
	padding: clamp(30px, 4vw, 48px);
}

.vy-testimonial blockquote {
	border: 0;
	font-size: .95rem;
	font-style: normal;
	margin: 0;
	padding: 0;
}

.vy-testimonial blockquote + blockquote {
	border-top: 1px solid rgba(255, 255, 255, .18);
	margin-top: 28px;
	padding-top: 28px;
}

.vy-testimonial footer {
	align-items: center;
	display: flex;
	gap: 12px;
}

.vy-testimonial footer img {
	border: 2px solid var(--vy-gold-500);
	border-radius: 50%;
	height: 48px;
	object-fit: cover;
	width: 48px;
}

.vy-testimonial footer span {
	display: flex;
	flex-direction: column;
}

.vy-testimonial strong {
	color: var(--vy-white);
}

.vy-testimonial small {
	color: rgba(255, 255, 255, .6);
}

.site-content {
	padding: 48px 0 80px;
}

.home .site-content {
	padding: 0;
}

.content-area,
.widget-area {
	margin-bottom: 0;
}

.page-header,
.entry-header {
	margin-bottom: 34px;
}

.page-title,
.entry-title {
	font-size: clamp(2rem, 4vw, 3.6rem);
	margin-bottom: 10px;
}

.woocommerce-products-header {
	background: var(--vy-forest-50);
	border: 1px solid var(--vy-forest-100);
	border-radius: var(--vy-radius-md);
	margin-bottom: 34px;
	padding: clamp(24px, 4vw, 44px);
}

.woocommerce-products-header .page-title {
	margin: 0;
}

.woocommerce-result-count,
.woocommerce-ordering {
	margin-bottom: 24px;
}

select,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
input[type="search"],
textarea,
.select2-container .select2-selection--single {
	background: var(--vy-white);
	border: 1px solid #cfd9d3;
	border-radius: var(--vy-radius-sm);
	box-shadow: none;
	min-height: 48px;
	padding: 10px 13px;
}

textarea {
	min-height: 130px;
}

label {
	color: var(--vy-ink);
	font-size: .86rem;
	font-weight: 700;
}

.woocommerce ul.products,
ul.products {
	display: grid;
	gap: 22px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin: 0;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after,
ul.products::before,
ul.products::after {
	display: none;
}

.woocommerce ul.products li.product,
ul.products li.product {
	background: var(--vy-white);
	border: 1px solid var(--vy-line);
	border-radius: var(--vy-radius-md);
	float: none;
	margin: 0 !important;
	overflow: hidden;
	padding: 0 0 18px;
	position: relative;
	width: auto !important;
}

.woocommerce ul.products li.product img,
ul.products li.product img {
	aspect-ratio: 1 / 1;
	margin: 0 0 16px;
	object-fit: cover;
	width: 100%;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .price,
ul.products li.product .price,
.woocommerce ul.products li.product .button,
ul.products li.product .button {
	margin-left: 16px;
	margin-right: 16px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
ul.products li.product .woocommerce-loop-product__title {
	font-family: "VY Manrope", sans-serif;
	font-size: .94rem;
	letter-spacing: 0;
	line-height: 1.45;
	min-height: 2.9em;
}

.woocommerce ul.products li.product .price,
ul.products li.product .price {
	color: var(--vy-danger);
	font-size: .96rem;
	font-weight: 850;
}

.woocommerce ul.products li.product .button,
ul.products li.product .button {
	font-size: .75rem;
	min-height: 38px;
	padding: 7px 14px;
}

.single-product div.product {
	background: var(--vy-white);
	border: 1px solid var(--vy-line);
	border-radius: var(--vy-radius-lg);
	padding: clamp(20px, 4vw, 44px);
}

.single-product div.product .woocommerce-product-gallery,
.single-product div.product .summary {
	margin-bottom: 36px;
}

.single-product div.product .product_title {
	font-size: clamp(1.8rem, 3vw, 3rem);
}

.single-product div.product p.price,
.single-product div.product span.price {
	color: var(--vy-danger);
	font-size: clamp(1.25rem, 2vw, 1.7rem);
	font-weight: 850;
}

.woocommerce-product-details__short-description {
	color: var(--vy-muted);
}

.variations th,
.variations td {
	background: transparent;
	padding: 8px 0;
}

.variations select {
	min-width: min(100%, 300px);
}

.quantity .qty {
	border-radius: 999px;
	min-height: 48px;
	width: 82px;
}

.woocommerce-tabs ul.tabs {
	border-bottom: 1px solid var(--vy-line);
	margin-bottom: 28px;
	width: 100%;
}

.woocommerce-tabs ul.tabs li {
	border-bottom: 3px solid transparent;
	display: inline-block;
	margin-right: 24px;
}

.woocommerce-tabs ul.tabs li.active {
	border-bottom-color: var(--vy-gold-600);
}

.woocommerce-tabs .panel {
	max-width: 840px;
	width: 100%;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.woocommerce-noreviews,
p.no-comments {
	background: var(--vy-forest-900);
	border: 0;
	border-radius: var(--vy-radius-sm);
	color: var(--vy-white);
}

.woocommerce-error {
	background: var(--vy-danger);
}

.woocommerce-message .button,
.woocommerce-info .button {
	background: var(--vy-white);
	border-color: var(--vy-white);
	color: var(--vy-forest-900);
	min-height: 34px;
	padding: 5px 13px;
}

.cart-collaterals,
#order_review,
.woocommerce-checkout-review-order,
.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce-MyAccount-content {
	background: var(--vy-white);
	border: 1px solid var(--vy-line);
	border-radius: var(--vy-radius-md);
	padding: clamp(20px, 3vw, 32px);
}

table.shop_table,
table.cart,
.woocommerce-checkout-review-order-table {
	border-collapse: separate;
	border-spacing: 0;
}

table.shop_table th,
table.shop_table td,
table.cart th,
table.cart td {
	border-bottom: 1px solid var(--vy-line);
	padding: 14px 10px;
}

#payment .payment_methods > li {
	background: var(--vy-forest-50);
	border-radius: var(--vy-radius-sm);
	margin-bottom: 10px;
	padding: 12px;
}

.site-footer {
	background:
		radial-gradient(circle at 80% 10%, rgba(209, 165, 65, .13), transparent 25%),
		var(--vy-forest-950);
	color: rgba(255, 255, 255, .72);
	padding: 70px 0 22px;
}

.site-footer .col-full {
	max-width: var(--vy-shell);
}

.vy-footer-grid {
	display: grid;
	gap: 42px;
	grid-template-columns: 1.35fr 1fr 1fr 1.1fr;
}

.vy-footer-grid h2 {
	color: var(--vy-gold-500);
	font-family: "VY Manrope", sans-serif;
	font-size: .83rem;
	letter-spacing: .12em;
	margin: 0 0 20px;
	text-transform: uppercase;
}

.vy-footer-brand img {
	filter: brightness(0) invert(1);
	height: 96px;
	margin-bottom: 18px;
	object-fit: contain;
	width: 96px;
}

.vy-footer-grid p,
.vy-footer-grid address {
	font-size: .86rem;
	font-style: normal;
	margin: 0 0 14px;
}

.vy-footer-links {
	list-style: none;
	margin: 0;
	padding: 0;
}

.vy-footer-links li {
	margin: 0 0 10px;
}

.site-footer a,
.vy-footer-links a {
	color: rgba(255, 255, 255, .82);
	text-decoration: none;
}

.site-footer a:hover,
.vy-footer-links a:hover {
	color: var(--vy-gold-500);
}

.vy-footer-bottom {
	align-items: center;
	border-top: 1px solid rgba(255, 255, 255, .12);
	display: flex;
	font-size: .77rem;
	justify-content: space-between;
	margin-top: 50px;
	padding-top: 20px;
}

.vy-footer-bottom p {
	margin: 0;
}

@media (max-width: 1024px) {
	.vy-header-main {
		gap: 20px;
		grid-template-columns: 105px minmax(220px, 1fr) auto;
	}

	.vy-primary-nav__list a {
		font-size: .72rem;
		padding-inline: 12px;
	}

	.vy-trust-grid,
	.vy-category-grid,
	.vy-product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.vy-content-grid {
		grid-template-columns: 1fr;
	}

	.vy-contact-grid {
		grid-template-columns: 1fr;
	}

	.vy-footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	:root {
		--vy-radius-lg: 20px;
	}

	body {
		font-size: 15px;
	}

	.vy-shell,
	.col-full {
		padding-inline: 16px;
	}

	.vy-topbar__inner {
		justify-content: center;
		min-height: 32px;
	}

	.vy-topbar p,
	.vy-topbar__links a:not(:first-child) {
		display: none;
	}

	.vy-header-main {
		gap: 12px;
		grid-template-columns: 44px 1fr auto;
		min-height: 76px;
	}

	.vy-brand {
		justify-self: center;
	}

	.vy-brand img {
		height: 62px;
		width: 62px;
	}

	.vy-search {
		grid-column: 1 / -1;
		grid-row: 2;
		padding-bottom: 12px;
	}

	.vy-search form {
		max-width: none;
	}

	.vy-search input[type="search"] {
		height: 44px;
	}

	.vy-search button {
		height: 36px;
		width: 36px;
	}

	.vy-cart {
		background: transparent;
		border: 0;
		min-height: 44px;
		padding: 0;
	}

	.vy-cart__label {
		display: none;
	}

	.vy-cart__icon {
		font-size: 1.3rem;
	}

	.vy-menu-toggle {
		align-items: center;
		background: transparent;
		border: 0;
		display: inline-flex;
		height: 44px;
		justify-content: center;
		padding: 0;
		width: 44px;
	}

	.vy-menu-toggle__icon,
	.vy-menu-toggle__icon::before,
	.vy-menu-toggle__icon::after {
		background: var(--vy-forest-950);
		content: "";
		display: block;
		height: 2px;
		position: relative;
		width: 24px;
	}

	.vy-menu-toggle__icon::before {
		position: absolute;
		top: -7px;
	}

	.vy-menu-toggle__icon::after {
		position: absolute;
		top: 7px;
	}

	.vy-menu-open .vy-menu-toggle__icon {
		background: transparent;
	}

	.vy-menu-open .vy-menu-toggle__icon::before {
		top: 0;
		transform: rotate(45deg);
	}

	.vy-menu-open .vy-menu-toggle__icon::after {
		top: 0;
		transform: rotate(-45deg);
	}

	.vy-primary-nav {
		background: var(--vy-white);
		border-top: 1px solid var(--vy-line);
		box-shadow: var(--vy-shadow-md);
		display: none;
		left: 0;
		max-height: calc(100vh - 120px);
		overflow-y: auto;
		position: absolute;
		right: 0;
		top: 100%;
	}

	.site-header {
		padding-bottom: 0;
	}

	.site-header + .storefront-breadcrumb,
	.home .site-header + .storefront-breadcrumb {
		display: none;
	}

	.home .site-content,
	.home .site-content > .col-full,
	.home #content {
		margin-top: 0 !important;
		padding-top: 0 !important;
	}

	.vy-menu-open {
		overflow: hidden;
	}

	.vy-menu-open .vy-primary-nav {
		display: block;
	}

	.vy-primary-nav__list {
		align-items: stretch;
		flex-direction: column;
		gap: 0;
		padding: 10px 0;
	}

	.vy-primary-nav__list a {
		border-bottom: 1px solid var(--vy-line);
		color: var(--vy-ink);
		font-size: .9rem;
		letter-spacing: .02em;
		min-height: 50px;
		padding: 10px 4px;
		text-transform: none;
	}

	.vy-primary-nav__list .sub-menu {
		border: 0;
		box-shadow: none;
		display: block;
		min-width: 0;
		padding: 0 0 0 18px;
		position: static;
	}

	.vy-primary-nav__list .sub-menu a {
		font-size: .82rem;
	}

	.vy-mobile-contact {
		display: grid;
		gap: 10px;
		grid-template-columns: 1fr 1fr;
		padding: 12px 0 20px;
	}

	.vy-mobile-contact a {
		background: var(--vy-gold-600);
		border-radius: 999px;
		color: var(--vy-forest-950);
		font-size: .82rem;
		font-weight: 800;
		padding: 10px;
		text-align: center;
		text-decoration: none;
	}

	.vy-section {
		padding: 64px 0;
	}

	.vy-section-heading,
	.vy-section-heading--split {
		align-items: start;
		flex-direction: column;
		margin-bottom: 28px;
	}

	.vy-hero {
		background:
			linear-gradient(180deg, rgba(16, 43, 36, .35), rgba(16, 43, 36, .96) 58%),
			var(--vy-hero-image) 67% center / cover no-repeat;
		min-height: 690px;
	}

	.vy-hero__inner {
		align-items: end;
	}

	.vy-hero__content {
		padding: 230px 0 52px;
	}

	.vy-hero h1 {
		font-size: clamp(2.35rem, 11vw, 3.45rem);
	}

	.vy-hero__actions {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}

	.vy-hero__proof {
		display: grid;
		gap: 8px;
	}

	.vy-trust-grid,
	.vy-category-grid,
	.vy-product-grid,
	.vy-post-grid {
		grid-template-columns: 1fr 1fr;
	}

	.vy-trust-card {
		padding: 22px 14px;
	}

	.vy-trust-card img {
		height: 50px;
		width: 50px;
	}

	.vy-category-card__body {
		padding: 17px;
	}

	.vy-category-card span span {
		display: none;
	}

	.vy-story {
		background:
			linear-gradient(180deg, rgba(255, 253, 248, .05), rgba(255, 253, 248, .98) 52%),
			var(--vy-story-image) 70% top / auto 55% no-repeat,
			var(--vy-paper);
		min-height: 650px;
	}

	.vy-story__inner {
		align-items: end;
	}

	.vy-story__card {
		padding: 300px 0 56px;
	}

	.vy-footer-grid {
		grid-template-columns: 1fr;
	}

	.vy-footer-bottom {
		align-items: start;
		flex-direction: column;
		gap: 8px;
	}

	.site-content {
		padding: 32px 0 60px;
	}

	.storefront-breadcrumb {
		display: none;
	}

	.woocommerce ul.products,
	ul.products {
		gap: 12px;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.woocommerce ul.products li.product .woocommerce-loop-product__title,
	ul.products li.product .woocommerce-loop-product__title {
		font-size: .84rem;
	}

	.single-product div.product {
		border-radius: 16px;
		padding: 16px;
	}

	.single-product div.product .woocommerce-product-gallery,
	.single-product div.product .summary {
		float: none;
		width: 100%;
	}

	.woocommerce-tabs ul.tabs li {
		display: block;
		margin-right: 0;
	}

	.cart-collaterals,
	#order_review,
	.woocommerce-checkout-review-order {
		padding: 16px;
	}

	table.cart thead {
		display: none;
	}

	table.cart tr {
		border-bottom: 1px solid var(--vy-line);
		display: grid;
		grid-template-columns: 72px 1fr;
		padding: 12px 0;
	}

	table.cart td {
		border: 0;
		padding: 6px;
	}

	table.cart td.product-remove {
		grid-column: 1 / -1;
		text-align: right;
	}

	table.cart td.product-thumbnail {
		grid-row: 2 / span 4;
	}

	table.cart td.product-name,
	table.cart td.product-price,
	table.cart td.product-quantity,
	table.cart td.product-subtotal {
		grid-column: 2;
		text-align: left;
	}
}

@media (max-width: 430px) {
	.vy-trust-grid,
	.vy-category-grid,
	.vy-product-grid,
	.vy-post-grid {
		grid-template-columns: 1fr;
	}

	.vy-category-card {
		display: grid;
		grid-template-columns: 112px 1fr;
	}

	.vy-category-card img {
		height: 100%;
		min-height: 136px;
	}

	.vy-product-grid,
	.woocommerce ul.products,
	ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.vy-product-card__body {
		padding: 13px;
	}

	.vy-product-card__category,
	.vy-product-card .vy-button {
		display: none;
	}

	.vy-hero__actions {
		grid-template-columns: 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
	}
}
