:root {
	--vms-saffron: #e8650a;
	--vms-saffron-light: #f07a25;
	--vms-saffron-dark: #c4520a;
	--vms-beige: #c8a882;
	--vms-beige-light: #ede0ce;
	--vms-beige-pale: #f7f0e6;
	--vms-gold: #b8860b;
	--vms-gold-bright: #d4af37;
	--vms-gold-pale: #f5edd0;
	--vms-warm-white: #fdfaf5;
	--vms-cream: #fff8ee;
	--vms-charcoal: #2c2c2c;
	--vms-charcoal-soft: #4a4a4a;
	--vms-muted: #8a8075;
	--vms-success: #648053;
	--vms-font-serif: "Cormorant Garamond", Georgia, serif;
	--vms-font-sans: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--vms-container: 1280px;
	--vms-wrap: 1180px;
	--vms-section: clamp(64px, 6.3vw, 88px);
	--vms-space-1: 4px;
	--vms-space-2: 8px;
	--vms-space-3: 12px;
	--vms-space-4: 16px;
	--vms-space-5: 24px;
	--vms-space-6: 32px;
	--vms-space-7: 48px;
	--vms-radius: 6px;
	--vms-shadow-card: 0 2px 16px rgba(44, 44, 44, 0.08);
	--vms-shadow-hover: 0 8px 40px rgba(44, 44, 44, 0.16);
	--vms-shadow-warm: 0 4px 24px rgba(184, 134, 11, 0.12);
	--vms-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}

body {
	margin: 0;
	background: var(--vms-warm-white);
	color: var(--vms-charcoal);
	font-family: var(--vms-font-sans);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}

body.vms-drawer-open {
	overflow: hidden;
}

body.vms-drawer-open::before {
	content: "";
	position: fixed;
	z-index: 210;
	inset: 0;
	background: rgba(44, 44, 44, 0.28);
	backdrop-filter: blur(2px);
}

img,
svg {
	display: block;
	max-width: 100%;
}

svg {
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

a {
	color: inherit;
	text-decoration: none;
}

a:hover {
	color: var(--vms-saffron);
}

button,
input,
select,
textarea {
	font: inherit;
}

button {
	cursor: pointer;
}

:focus-visible {
	outline: 2px solid var(--vms-saffron);
	outline-offset: 3px;
}

.screen-reader-text,
.vms-skip-link:not(:focus) {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.vms-skip-link:focus {
	position: fixed;
	z-index: 9999;
	top: 12px;
	left: 12px;
	padding: 12px 16px;
	background: var(--vms-charcoal);
	color: #fff;
	border-radius: var(--vms-radius);
}

.vms-container {
	width: min(100% - 64px, var(--vms-container));
	margin-inline: auto;
}

.vms-wrap {
	width: min(100% - 56px, var(--vms-wrap));
	margin-inline: auto;
}

.vms-main {
	min-height: 50vh;
	overflow-x: clip;
}

@supports not (overflow: clip) {
	.vms-main {
		overflow-x: hidden;
	}
}

.vms-section {
	padding: var(--vms-section) 0;
}

.vms-section--cream {
	background: var(--vms-cream);
}

.vms-section--pale {
	background: var(--vms-beige-pale);
}

.vms-section-head {
	max-width: 720px;
	margin: 0 auto 34px;
	text-align: center;
}

.vms-section-label {
	color: var(--vms-saffron);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.vms-section-title,
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--vms-font-serif);
	letter-spacing: -0.01em;
}

.vms-section-title {
	margin: 12px 0;
	color: var(--vms-charcoal);
	font-size: clamp(32px, 4vw, 52px);
	font-weight: 400;
	line-height: 1.12;
}

.vms-section-sub {
	margin: 0;
	color: var(--vms-muted);
	font-size: 15px;
}

.vms-divider {
	width: 48px;
	height: 2px;
	margin: 14px auto 0;
	background: linear-gradient(90deg, var(--vms-gold), var(--vms-gold-bright));
	border-radius: 99px;
}

.vms-button,
.vms-btn-primary,
.vms-btn-outline,
.button,
button.single_add_to_cart_button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 46px;
	padding: 13px 31px;
	border-radius: 4px;
	font-family: var(--vms-font-sans);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.08em;
	line-height: 1.1;
	text-transform: uppercase;
	transition: color var(--vms-transition), background var(--vms-transition), border-color var(--vms-transition), box-shadow var(--vms-transition), transform var(--vms-transition);
}

.vms-btn-primary,
.button,
button.single_add_to_cart_button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
	border: 1px solid var(--vms-saffron);
	background: var(--vms-saffron);
	color: #fff;
}

.vms-btn-primary:hover,
.button:hover,
button.single_add_to_cart_button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
	background: var(--vms-saffron-dark);
	color: #fff;
	box-shadow: var(--vms-shadow-warm);
	transform: translateY(-1px);
}

.vms-btn-outline {
	border: 1.5px solid currentColor;
	background: transparent;
	color: var(--vms-charcoal);
}

.vms-btn-outline:hover {
	background: var(--vms-charcoal);
	color: #fff;
}

.vms-icon-button {
	display: inline-grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: var(--vms-charcoal);
	transition: background var(--vms-transition), color var(--vms-transition);
}

.vms-icon-button:hover {
	background: rgba(200, 168, 130, 0.16);
	color: var(--vms-saffron);
}

.vms-icon-button svg,
.vms-cart-link svg,
.vms-card-action svg,
.vms-socials svg,
.vms-footer-contact svg {
	width: 19px;
	height: 19px;
}

.vms-site-header {
	position: sticky;
	z-index: 100;
	top: 0;
	font-family: var(--vms-font-sans);
}

.vms-announcement {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 24px;
	padding: 10px 16px;
	max-width: 100%;
	box-sizing: border-box;
	background: var(--vms-charcoal);
	color: #fff;
	font-size: 12px;
	letter-spacing: 0.06em;
	text-align: center;
}

.vms-announcement span[aria-hidden] {
	opacity: 0.35;
}

.vms-header-main {
	border-bottom: 1px solid rgba(200, 168, 130, 0.25);
	background: rgba(253, 250, 245, 0.96);
	box-shadow: 0 2px 20px rgba(44, 44, 44, 0.06);
	backdrop-filter: blur(12px);
}

.vms-header-inner {
	display: grid;
	grid-template-columns: auto minmax(190px, auto) 1fr auto;
	align-items: center;
	gap: 22px;
	width: min(100% - 64px, var(--vms-container));
	height: 76px;
	margin-inline: auto;
}

.vms-menu-toggle {
	display: none;
}

.vms-brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--vms-charcoal);
}

.vms-brand-logo,
.vms-brand > img {
	width: auto;
	max-width: 148px;
	max-height: 48px;
	object-fit: contain;
}

.vms-brand-mark {
	display: grid;
	place-items: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--vms-saffron), var(--vms-gold-bright));
	color: #fff;
	font-family: var(--vms-font-serif);
	font-size: 20px;
	font-weight: 600;
	line-height: 1;
}

.vms-brand-name {
	display: block;
	font-family: var(--vms-font-serif);
	font-size: 21px;
	font-weight: 600;
	line-height: 0.95;
	letter-spacing: -0.01em;
}

.vms-brand-sub {
	display: block;
	margin-top: 3px;
	color: var(--vms-saffron);
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.22em;
	line-height: 1;
	text-transform: uppercase;
}

.vms-primary-nav {
	position: relative;
	display: flex;
	justify-content: center;
}

.vms-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.vms-menu > li {
	position: relative;
}

.vms-menu > li > a {
	display: flex;
	align-items: center;
	min-height: 76px;
	padding: 0 16px;
	border-bottom: 2px solid transparent;
	color: var(--vms-charcoal);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.04em;
}

.vms-menu > li:hover > a,
.vms-menu > li.current-menu-item > a,
.vms-menu > li.current_page_item > a {
	border-bottom-color: var(--vms-saffron);
	color: var(--vms-saffron);
}

.vms-menu .sub-menu {
	position: absolute;
	top: 100%;
	left: 50%;
	min-width: 220px;
	margin: 0;
	padding: 14px 0;
	list-style: none;
	border: 1px solid rgba(200, 168, 130, 0.3);
	border-radius: 8px;
	background: var(--vms-warm-white);
	box-shadow: 0 16px 48px rgba(44, 44, 44, 0.15);
	opacity: 0;
	pointer-events: none;
	transform: translate(-50%, 10px);
	transition: opacity var(--vms-transition), transform var(--vms-transition);
	visibility: hidden;
}

.vms-menu li:hover > .sub-menu,
.vms-menu li:focus-within > .sub-menu {
	opacity: 1;
	pointer-events: auto;
	transform: translate(-50%, 0);
	visibility: visible;
}

.vms-menu .sub-menu a {
	display: block;
	padding: 8px 18px;
	color: var(--vms-charcoal-soft);
	font-size: 13px;
}

.vms-header-actions {
	display: flex;
	align-items: center;
	gap: 4px;
}

.vms-cart-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 42px;
	margin-left: 8px;
	padding: 10px 18px;
	border-radius: 6px;
	background: var(--vms-saffron);
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	white-space: nowrap;
	transition: background var(--vms-transition), transform var(--vms-transition);
}

.vms-cart-link:hover {
	background: var(--vms-saffron-dark);
	color: #fff;
	transform: translateY(-1px);
}

.vms-search-panel {
	position: relative;
	z-index: 90;
	border-bottom: 1px solid var(--vms-beige-light);
	background: var(--vms-cream);
	box-shadow: 0 12px 36px rgba(44, 44, 44, 0.08);
}

.vms-search-form {
	position: relative;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 14px;
	padding: 18px 0;
}

.vms-search-form input {
	width: 100%;
	border: 1px solid var(--vms-beige);
	border-radius: 4px;
	background: var(--vms-warm-white);
	padding: 14px 16px;
	color: var(--vms-charcoal);
	outline-color: var(--vms-saffron);
}

.vms-search-form button,
.vms-newsletter-form button {
	border: 0;
	background: var(--vms-charcoal);
	color: #fff;
	padding: 14px 22px;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.vms-mobile-drawer {
	position: fixed;
	inset: 0 0 0 auto;
	z-index: 220;
	width: min(88vw, 390px);
	padding: 24px;
	background: var(--vms-warm-white);
	box-shadow: -20px 0 60px rgba(44, 44, 44, 0.18);
	overflow-y: auto;
	transform: translateX(0);
}

.vms-mobile-drawer__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 18px;
	border-bottom: 1px solid var(--vms-beige-light);
}

.vms-mobile-menu,
.vms-mobile-menu ul,
.vms-mobile-drawer .vms-menu,
.vms-mobile-drawer .vms-menu ul {
	margin: 0;
	padding: 18px 0 0;
	list-style: none;
}

.vms-mobile-menu a,
.vms-mobile-drawer .vms-menu a {
	display: block;
	padding: 14px 0;
	border-bottom: 1px solid var(--vms-beige-light);
	font-family: var(--vms-font-serif);
	font-size: clamp(23px, 7vw, 26px);
	line-height: 1.12;
}

.vms-hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: clamp(620px, 74vh, 700px);
	overflow: hidden;
	background-image: linear-gradient(90deg, rgba(54, 25, 12, 0.82), rgba(112, 45, 9, 0.38) 58%, rgba(23, 15, 9, 0.12)), var(--vms-hero-image);
	background-position: center;
	background-size: cover;
	color: #fff;
}

.vms-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 75% 40%, transparent 0 16%, rgba(232, 101, 10, 0.12) 46%, transparent 70%);
	pointer-events: none;
}

.vms-hero__inner {
	position: relative;
	z-index: 1;
	width: min(100% - 18%, var(--vms-container));
	margin-inline: auto;
	padding: 76px 0;
}

.vms-hero__inner h1 {
	max-width: 800px;
	margin: 20px 0;
	color: #fff;
	font-size: clamp(44px, 6.1vw, 78px);
	font-weight: 400;
	line-height: 1;
}

.vms-hero__inner p {
	margin: 0 0 34px;
	color: #f8e6c4;
	font-family: var(--vms-font-serif);
	font-size: clamp(21px, 2.2vw, 27px);
	font-style: italic;
}

.vms-hero .vms-section-label {
	color: #f4d890;
}

.vms-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.vms-hero .vms-btn-outline {
	color: #fff;
}

.vms-hero__mark {
	position: absolute;
	z-index: 1;
	top: 17%;
	right: 8%;
	width: 260px;
	color: #f5d98a;
	opacity: 0.28;
}

.vms-scroll-cue {
	position: absolute;
	z-index: 1;
	bottom: 20px;
	left: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 9px;
	color: #fff;
	font-size: 10px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.vms-scroll-cue span {
	width: 1px;
	height: 36px;
	background: linear-gradient(#fff, transparent);
}

.vms-trust-strip {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	padding: 22px 32px;
	border-top: 1px solid var(--vms-beige);
	border-bottom: 1px solid var(--vms-beige);
	background: var(--vms-cream);
}

.vms-trust-item {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 11px;
	border-right: 1px solid var(--vms-beige-light);
	color: var(--vms-charcoal-soft);
	font-size: 12px;
	letter-spacing: 0.02em;
}

.vms-trust-item:last-child {
	border-right: 0;
}

.vms-trust-item svg {
	width: 18px;
	height: 18px;
	color: var(--vms-gold);
}

.vms-collections-grid {
	display: grid;
	grid-template-columns: 1.25fr 1fr 1fr 1.25fr;
	gap: 16px;
}

.vms-collection-card {
	position: relative;
	min-height: 390px;
	overflow: hidden;
	background: #63310e;
}

.vms-collection-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s ease;
}

.vms-collection-card::after {
	content: "";
	position: absolute;
	inset: 30% 0 0;
	background: linear-gradient(transparent, rgba(28, 16, 7, 0.8));
}

.vms-collection-card:hover img {
	transform: scale(1.07);
}

.vms-collection-card__copy {
	position: absolute;
	z-index: 1;
	bottom: 26px;
	left: 26px;
	color: #fff;
}

.vms-collection-card__copy span {
	color: #f6da9b;
	font-size: 11px;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.vms-collection-card__copy h3 {
	margin: 4px 0;
	color: #fff;
	font-size: 31px;
	font-weight: 400;
}

.vms-collection-card__copy em {
	display: block;
	max-width: 28ch;
	margin: 0 0 18px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 13px;
	font-style: normal;
	line-height: 1.65;
}

.vms-product-row {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 245px), 1fr));
	width: 100%;
	max-width: 100%;
	min-width: 0;
	gap: 20px;
	padding: 4px 0 22px;
	overflow: visible;
	contain: inline-size;
}

.vms-section--recent-products {
	padding-bottom: clamp(56px, 6vw, 76px);
}

.vms-product-card {
	display: flex;
	flex-direction: column;
	width: calc(25% - 15px);
	min-width: 265px;
	border: 1px solid rgba(200, 168, 130, 0.18);
	border-radius: 4px;
	background: #fff;
	box-shadow: var(--vms-shadow-card);
	overflow: hidden;
	transition: box-shadow var(--vms-transition), transform var(--vms-transition);
}

.vms-product-card:hover {
	box-shadow: var(--vms-shadow-hover);
	transform: translateY(-4px);
}

.vms-product-row .vms-product-card {
	width: auto;
	min-width: 0;
}

.vms-product-row .vms-product-card__media {
	height: auto;
	aspect-ratio: 4 / 5;
}

.vms-product-card__media {
	position: relative;
	display: block;
	height: 285px;
	overflow: hidden;
	background: var(--vms-beige-pale);
	color: var(--vms-charcoal);
}

.vms-product-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.vms-product-card--missing-image .vms-product-card__media img,
.vms-product-card__media img.woocommerce-placeholder {
	object-fit: contain;
	padding: clamp(32px, 18%, 58px);
	background:
		linear-gradient(135deg, rgba(255, 248, 238, 0.94), rgba(247, 236, 219, 0.78)),
		var(--vms-beige-pale);
	opacity: 0.72;
}

.vms-product-card:hover .vms-product-card__media img {
	transform: scale(1.06);
}

.vms-product-card--missing-image:hover .vms-product-card__media img,
.vms-product-card:hover .vms-product-card__media img.woocommerce-placeholder {
	transform: none;
}

.vms-badge {
	position: absolute;
	z-index: 2;
	top: 12px;
	left: 12px;
	padding: 7px 10px;
	border-radius: 2px;
	background: var(--vms-gold-pale);
	color: var(--vms-gold);
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.vms-badge--new {
	background: var(--vms-saffron);
	color: #fff;
}

.vms-wishlist-visual {
	position: absolute;
	top: 12px;
	right: 12px;
	display: grid;
	place-items: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(253, 250, 245, 0.9);
	color: var(--vms-charcoal);
}

.vms-wishlist-visual svg {
	width: 17px;
	height: 17px;
}

.vms-stock-badge {
	position: absolute;
	z-index: 2;
	right: 12px;
	bottom: 12px;
	padding: 7px 10px;
	border-radius: 2px;
	background: rgba(44, 44, 44, 0.84);
	color: #fff;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

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

.vms-product-card__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	color: var(--vms-gold);
	font-size: 11px;
}

.vms-product-card__meta span:first-child {
	max-width: 60%;
	overflow: hidden;
	color: var(--vms-muted);
	text-overflow: ellipsis;
	white-space: nowrap;
}

.vms-rating {
	flex: 0 0 auto;
	color: var(--vms-gold);
	font-size: 10px;
	letter-spacing: 1px;
	line-height: 1;
	white-space: nowrap;
}

.vms-rating--empty {
	color: var(--vms-muted);
	font-size: 10px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.vms-rating .is-empty {
	color: rgba(184, 134, 11, 0.22);
}

.vms-product-card__title {
	margin: 8px 0 5px;
	font-size: 22px;
	font-weight: 500;
	line-height: 1.08;
}

.vms-product-card__title a {
	display: -webkit-box !important;
	min-height: calc(3em * 1.08);
	max-height: calc(3em * 1.08);
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	line-clamp: 3;
}

.vms-product-card__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: auto;
	padding-top: 18px;
}

.vms-price {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 5px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2;
}

.vms-price del {
	margin: 0;
	color: var(--vms-muted);
	font-size: 12px;
	font-weight: 400;
}

.vms-price ins {
	color: var(--vms-saffron);
	text-decoration: none;
}

.vms-card-action {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 5px;
	min-height: auto;
	padding: 0;
	border: 0;
	background: none;
	color: var(--vms-saffron);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	box-shadow: none;
	white-space: nowrap;
}

.vms-card-action.button,
.woocommerce a.vms-card-action.button {
	min-height: auto;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--vms-saffron);
	box-shadow: none;
}

.vms-product-card--not-purchasable .vms-card-action,
.vms-product-card--not-purchasable .vms-card-action.button,
.woocommerce .vms-product-card--not-purchasable a.vms-card-action.button {
	color: var(--vms-muted);
}

.vms-card-action svg {
	width: 14px;
	height: 14px;
}

.vms-card-action:hover,
.vms-card-action:focus-visible,
.vms-card-action.button:hover,
.woocommerce a.vms-card-action.button:hover {
	background: transparent;
	color: var(--vms-saffron-dark);
	box-shadow: none;
	transform: none;
}

.vms-socials span {
	display: grid;
	place-items: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.62);
}

.vms-shop-hero {
	position: relative;
	overflow: hidden;
	background: var(--vms-charcoal);
	color: #fff;
}

.vms-shop-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: linear-gradient(90deg, rgba(35, 22, 13, 0.9), rgba(67, 36, 17, 0.64), rgba(35, 22, 13, 0.2)), var(--vms-shop-hero-image);
	background-position: center;
	background-size: cover;
	opacity: 0.92;
}

.vms-shop-hero__inner {
	position: relative;
	z-index: 1;
	display: grid;
	min-height: 292px;
	align-items: end;
	padding: clamp(56px, 7vw, 92px) 0 42px;
}

.vms-shop-hero__copy {
	max-width: 760px;
}

.vms-breadcrumb,
.woocommerce .woocommerce-breadcrumb {
	margin: 0 0 22px;
	color: rgba(255, 255, 255, 0.68);
	font-size: 12px;
	letter-spacing: 0.03em;
}

.vms-breadcrumb a,
.woocommerce .woocommerce-breadcrumb a {
	color: #fff;
}

.vms-shop-hero h1 {
	margin: 14px 0 18px;
	color: #fff;
	font-size: clamp(42px, 5.6vw, 68px);
	font-weight: 400;
	line-height: 0.96;
}

.vms-shop-hero p,
.vms-shop-hero__description {
	max-width: 640px;
	color: rgba(255, 255, 255, 0.74);
	font-size: 16px;
	line-height: 1.8;
}

.vms-shop-hero__support {
	display: inline-flex;
	max-width: min(100%, 560px);
	margin-top: 18px;
	padding: 12px 15px;
	border: 1px solid rgba(246, 218, 155, 0.24);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.82);
	font-size: 13px;
	letter-spacing: 0.04em;
}

.vms-shop-shell {
	padding: clamp(52px, 7vw, 84px) 0;
	background: var(--vms-warm-white);
}

.vms-category-editorial {
	margin: 0 0 clamp(30px, 5vw, 58px);
	padding: clamp(28px, 5vw, 46px);
	border: 1px solid rgba(200, 168, 130, 0.26);
	border-radius: 8px;
	background:
		linear-gradient(135deg, rgba(255, 252, 245, 0.94), rgba(247, 238, 219, 0.62)),
		var(--vms-ivory);
}

.vms-category-editorial h2 {
	max-width: 680px;
	margin: 10px 0 28px;
	font-size: clamp(34px, 4.4vw, 56px);
	font-weight: 400;
	line-height: 1.04;
}

.vms-category-editorial__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0 34px;
}

.vms-category-editorial details {
	border-top: 1px solid rgba(115, 82, 46, 0.16);
}

.vms-category-editorial details:nth-last-child(-n + 2) {
	border-bottom: 1px solid rgba(115, 82, 46, 0.16);
}

.vms-category-editorial summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: 64px;
	cursor: pointer;
	color: var(--vms-charcoal);
	font-family: var(--vms-font-serif);
	font-size: clamp(22px, 3vw, 30px);
	line-height: 1.12;
	list-style: none;
}

.vms-category-editorial summary::-webkit-details-marker {
	display: none;
}

.vms-category-editorial summary::after {
	content: "+";
	flex: 0 0 auto;
	color: var(--vms-saffron);
	font-family: var(--vms-font-sans);
	font-size: 17px;
	font-weight: 700;
}

.vms-category-editorial details[open] summary::after {
	content: "-";
}

.vms-category-editorial summary:focus-visible {
	outline: 2px solid var(--vms-saffron);
	outline-offset: 6px;
}

.vms-category-editorial__content {
	padding: 0 0 22px;
	color: var(--vms-muted);
	font-size: 15px;
	line-height: 1.85;
}

.vms-category-editorial__content p:first-child {
	margin-top: 0;
}

.vms-shop-layout {
	display: grid;
	grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
	gap: clamp(24px, 3.4vw, 40px);
	align-items: start;
}

.vms-shop-sidebar {
	position: sticky;
	top: 132px;
	padding: 22px 20px;
	border: 1px solid rgba(200, 168, 130, 0.34);
	background: rgba(255, 248, 238, 0.72);
	box-shadow: 0 14px 34px rgba(44, 44, 44, 0.05);
}

.vms-shop-sidebar__head p {
	margin: 10px 0 24px;
	color: var(--vms-muted);
	font-size: 13px;
	line-height: 1.6;
}

.vms-shop-inline-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 18px;
}

.vms-shop-inline-head h2 {
	margin: 7px 0 0;
	font-size: clamp(28px, 3vw, 40px);
	font-weight: 400;
	line-height: 1.08;
}

.vms-subcategory-strip {
	margin-bottom: clamp(28px, 4vw, 44px);
	padding-bottom: clamp(24px, 4vw, 38px);
	border-bottom: 1px solid var(--vms-beige-light);
}

.vms-subcategory-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
	gap: 14px;
}

.vms-subcategory-card {
	display: grid;
	grid-template-columns: 82px minmax(0, 1fr);
	gap: 14px;
	align-items: center;
	min-width: 0;
	padding: 12px;
	border: 1px solid rgba(200, 168, 130, 0.28);
	border-radius: 8px;
	background: rgba(255, 252, 245, 0.82);
	transition: border-color var(--vms-transition), box-shadow var(--vms-transition), transform var(--vms-transition);
}

.vms-subcategory-card:hover {
	border-color: rgba(232, 101, 10, 0.4);
	box-shadow: var(--vms-shadow-card);
	transform: translateY(-2px);
}

.vms-subcategory-card:focus-visible {
	outline: 2px solid var(--vms-saffron);
	outline-offset: 4px;
}

.vms-subcategory-card img {
	width: 82px;
	height: 82px;
	border-radius: 6px;
	object-fit: cover;
	background: var(--vms-beige);
}

.vms-subcategory-card span {
	display: grid;
	gap: 4px;
	min-width: 0;
}

.vms-subcategory-card strong {
	color: var(--vms-charcoal);
	font-family: var(--vms-font-serif);
	font-size: 22px;
	font-weight: 500;
	line-height: 1.05;
	overflow-wrap: anywhere;
}

.vms-subcategory-card em,
.vms-subcategory-card small {
	color: var(--vms-muted);
	font-size: 12px;
	font-style: normal;
	line-height: 1.5;
}

.vms-filter-stack {
	display: grid;
	gap: 24px;
}

.vms-filter-block {
	padding-bottom: 22px;
	border-bottom: 1px solid var(--vms-beige-light);
}

.vms-filter-block:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.vms-filter-block h3,
.vms-filter-title {
	margin: 0 0 14px;
	color: var(--vms-charcoal);
	font-family: var(--vms-font-sans);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.17em;
	text-transform: uppercase;
}

.vms-filter-search,
.vms-price-filter {
	display: grid;
	gap: 10px;
}

.vms-filter-search input,
.vms-price-filter input,
.woocommerce-ordering select {
	width: 100%;
	min-height: 44px;
	border: 1px solid var(--vms-beige-light);
	border-radius: 4px;
	background: #fff;
	color: var(--vms-charcoal);
	padding: 11px 36px 11px 12px;
	font-size: 13px;
}

.woocommerce-ordering select {
	appearance: none;
	background-image:
		linear-gradient(45deg, transparent 50%, var(--vms-muted) 50%),
		linear-gradient(135deg, var(--vms-muted) 50%, transparent 50%);
	background-position:
		calc(100% - 18px) 50%,
		calc(100% - 13px) 50%;
	background-repeat: no-repeat;
	background-size: 5px 5px, 5px 5px;
}

.vms-filter-search input:focus,
.vms-price-filter input:focus,
.woocommerce-ordering select:focus {
	border-color: var(--vms-saffron);
	box-shadow: 0 0 0 3px rgba(232, 101, 10, 0.1);
	outline: 0;
}

.vms-filter-search button,
.vms-price-filter button {
	border: 1px solid var(--vms-charcoal);
	border-radius: 4px;
	background: var(--vms-charcoal);
	color: #fff;
	padding: 11px 12px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.vms-price-filter {
	grid-template-columns: 1fr 1fr;
}

.vms-price-filter label span {
	display: block;
	margin-bottom: 4px;
	color: var(--vms-muted);
	font-size: 11px;
}

.vms-price-filter button {
	grid-column: 1 / -1;
}

.vms-filter-list,
.vms-filter-chips {
	margin: 0;
	padding: 0;
	list-style: none;
}

.vms-filter-list li + li {
	margin-top: 9px;
}

.vms-filter-list a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	color: var(--vms-charcoal-soft);
	font-size: 13px;
}

.vms-filter-list em {
	color: var(--vms-muted);
	font-style: normal;
}

.vms-filter-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.vms-filter-chips a {
	display: inline-flex;
	padding: 7px 10px;
	border: 1px solid var(--vms-beige-light);
	border-radius: 4px;
	background: #fff;
	color: var(--vms-charcoal-soft);
	font-size: 12px;
	transition: border-color var(--vms-transition), color var(--vms-transition), background var(--vms-transition);
}

.vms-filter-list a:hover,
.vms-filter-chips a:hover {
	border-color: rgba(232, 101, 10, 0.36);
	color: var(--vms-saffron);
}

.vms-filter-block--placeholder p {
	margin: 0;
	color: var(--vms-muted);
	font-size: 12px;
	line-height: 1.6;
}

.vms-clear-filters {
	color: var(--vms-saffron);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.vms-shop-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 24px;
	padding-bottom: 18px;
	border-bottom: 1px solid var(--vms-beige-light);
}

.vms-result-count .woocommerce-result-count {
	margin: 0;
	color: var(--vms-muted);
	font-size: 13px;
}

.woocommerce-ordering {
	margin: 0;
}

.vms-product-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 26px 24px;
}

.vms-product-grid .vms-product-card {
	width: auto;
	min-width: 0;
}

.vms-product-grid .vms-product-card__media {
	height: auto;
	aspect-ratio: 4 / 5;
}

.vms-shop-pagination {
	margin-top: 46px;
}

.woocommerce nav.woocommerce-pagination ul,
.vms-shop-pagination .page-numbers {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin: 0;
	padding: 0;
	border: 0;
	list-style: none;
}

.woocommerce nav.woocommerce-pagination ul li {
	border: 0;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span,
.vms-shop-pagination .page-numbers a,
.vms-shop-pagination .page-numbers span {
	display: grid;
	min-width: 42px;
	height: 42px;
	place-items: center;
	border: 1px solid var(--vms-beige-light);
	background: #fff;
	color: var(--vms-charcoal);
	font-size: 13px;
}

.woocommerce nav.woocommerce-pagination ul li span.current,
.woocommerce nav.woocommerce-pagination ul li a:hover {
	border-color: var(--vms-saffron);
	background: var(--vms-saffron);
	color: #fff;
}

.vms-mobile-filters {
	display: none;
	margin-bottom: 22px;
	border: 1px solid var(--vms-beige-light);
	background: var(--vms-cream);
}

.vms-mobile-filters summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 16px 18px;
	cursor: pointer;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	list-style: none;
	text-transform: uppercase;
}

.vms-mobile-filters summary::-webkit-details-marker {
	display: none;
}

.vms-mobile-filters summary svg {
	width: 18px;
	height: 18px;
	transition: transform var(--vms-transition);
}

.vms-mobile-filters[open] summary svg {
	transform: rotate(180deg);
}

.vms-mobile-filters__content {
	padding: 0 18px 20px;
}

.vms-mobile-sort {
	margin-bottom: 20px;
}

.vms-empty-products {
	padding: clamp(44px, 7vw, 76px);
	border: 1px solid var(--vms-beige-light);
	background: var(--vms-cream);
	text-align: center;
}

.vms-empty-products h2 {
	margin: 12px 0;
	font-size: clamp(34px, 5vw, 54px);
	font-weight: 400;
	line-height: 1.1;
}

.vms-empty-products p {
	max-width: 520px;
	margin: 0 auto 24px;
	color: var(--vms-muted);
}

.vms-single-product-main {
	background: var(--vms-warm-white);
	overflow-x: clip;
}

.vms-single-product {
	padding: 34px 0 clamp(62px, 8vw, 96px);
	max-width: 100%;
	overflow: hidden;
}

.vms-single-breadcrumb,
.woocommerce .vms-single-breadcrumb {
	margin: 0 0 28px;
	color: var(--vms-muted);
	font-size: 12px;
}

.woocommerce .vms-single-breadcrumb a {
	color: var(--vms-charcoal-soft);
}

.vms-single-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
	gap: clamp(36px, 6vw, 76px);
	align-items: start;
	min-width: 0;
}

.vms-single-gallery-wrap {
	min-width: 0;
	max-width: 100%;
}

.vms-single-gallery {
	display: grid;
	gap: 14px;
	min-width: 0;
}

.vms-single-gallery__main {
	position: relative;
	display: block;
	overflow: hidden;
	aspect-ratio: 4 / 5;
	border: 1px solid rgba(200, 168, 130, 0.22);
	border-radius: 4px;
	background: var(--vms-beige-pale);
	cursor: zoom-in;
}

.vms-single-gallery__main:focus-visible,
.vms-gallery-thumb:focus-visible {
	outline: 2px solid var(--vms-saffron);
	outline-offset: 4px;
}

.vms-single-gallery__main img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.65s ease;
}

.vms-single-gallery__main:hover img {
	transform: scale(1.035);
}

.vms-gallery-zoom-label {
	position: absolute;
	right: 14px;
	bottom: 14px;
	padding: 8px 11px;
	border-radius: 3px;
	background: rgba(253, 250, 245, 0.9);
	color: var(--vms-charcoal);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.vms-single-gallery__thumbs {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 10px;
	min-width: 0;
	max-width: 100%;
}

.vms-gallery-thumb {
	cursor: pointer;
	overflow: hidden;
	aspect-ratio: 1;
	padding: 0;
	border: 1px solid rgba(200, 168, 130, 0.34);
	border-radius: 4px;
	background: var(--vms-cream);
	opacity: 0.72;
	transition: border-color var(--vms-transition), opacity var(--vms-transition), transform var(--vms-transition);
}

.vms-gallery-thumb.is-active,
.vms-gallery-thumb:hover {
	border-color: var(--vms-saffron);
	opacity: 1;
	transform: translateY(-1px);
}

.vms-gallery-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.vms-single-summary {
	position: sticky;
	top: 132px;
	padding: clamp(24px, 4vw, 38px);
	border: 1px solid rgba(200, 168, 130, 0.28);
	border-radius: 4px;
	background: rgba(255, 248, 238, 0.76);
	box-shadow: 0 18px 48px rgba(44, 44, 44, 0.08);
	min-width: 0;
	max-width: 100%;
}

.vms-single-kicker,
.vms-single-rating-row,
.vms-single-price-row,
.vms-single-secondary-actions,
.vms-single-share {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.vms-single-kicker {
	justify-content: space-between;
	color: var(--vms-saffron);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.vms-single-kicker strong {
	color: var(--vms-gold);
}

.vms-single-title {
	margin: 14px 0 16px;
	font-size: clamp(40px, 4.8vw, 66px);
	font-weight: 400;
	line-height: 0.98;
	overflow-wrap: anywhere;
}

.vms-single-rating-row {
	margin-bottom: 18px;
	color: var(--vms-muted);
	font-size: 13px;
}

.vms-single-rating-row a {
	text-decoration: underline;
	text-underline-offset: 3px;
}

.vms-single-price-row {
	margin: 0 0 22px;
}

.vms-single-price,
.vms-single-price .amount {
	color: var(--vms-charcoal);
	font-size: clamp(25px, 3vw, 34px);
	font-weight: 700;
	line-height: 1.1;
}

.vms-single-price del .amount {
	color: var(--vms-muted);
	font-size: 18px;
	font-weight: 400;
}

.vms-single-price ins {
	color: var(--vms-saffron);
	text-decoration: none;
}

.vms-stock-badge--inline {
	position: static;
	display: inline-flex;
}

.vms-stock-badge--in-stock {
	background: rgba(79, 121, 76, 0.12);
	color: #355d34;
}

.vms-single-short-description {
	margin: 0 0 24px;
	color: var(--vms-charcoal-soft);
	font-size: 15px;
	line-height: 1.75;
}

.vms-single-short-description p {
	margin: 0 0 12px;
}

.vms-single-meta {
	display: grid;
	gap: 10px;
	margin: 0 0 24px;
	padding: 18px 0;
	border-top: 1px solid var(--vms-beige-light);
	border-bottom: 1px solid var(--vms-beige-light);
	min-width: 0;
}

.vms-product-meta-row {
	display: grid;
	grid-template-columns: 94px minmax(0, 1fr);
	gap: 14px;
	color: var(--vms-charcoal-soft);
	font-size: 13px;
	min-width: 0;
	overflow-wrap: anywhere;
}

.vms-product-meta-row > span {
	color: var(--vms-muted);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.vms-product-meta-row a {
	color: var(--vms-charcoal);
}

.vms-single-purchase form.cart {
	display: grid;
	gap: 14px;
	margin: 0;
	min-width: 0;
	max-width: 100%;
}

.vms-single-purchase form.cart::after,
.vms-single-purchase form.cart::before {
	display: none;
}

.vms-single-purchase .quantity {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	border: 1px solid var(--vms-beige-light);
	border-radius: 4px;
	background: #fff;
}

.vms-single-purchase .quantity input.qty {
	width: 76px;
	min-height: 48px;
	border: 0;
	background: transparent;
	text-align: center;
}

.vms-single-purchase .single_add_to_cart_button {
	width: 100%;
	min-height: 54px;
}

.vms-single-purchase .variations {
	width: 100%;
	max-width: 100%;
	margin: 0 0 10px;
}

.vms-single-purchase .variations th,
.vms-single-purchase .variations td {
	display: block;
	padding: 0 0 8px;
	text-align: left;
}

.vms-single-purchase .variations label {
	color: var(--vms-muted);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.vms-single-purchase .variations select {
	width: 100%;
	border: 1px solid var(--vms-beige-light);
	border-radius: 4px;
	background: #fff;
	padding: 12px;
}

.vms-single-secondary-actions {
	display: grid;
	grid-template-columns: 1fr;
	margin-top: 12px;
	min-width: 0;
}

.vms-single-wishlist {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 46px;
	border: 1px solid var(--vms-beige);
	border-radius: 4px;
	background: #fff;
	color: var(--vms-charcoal);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.vms-single-share {
	margin-top: 22px;
	padding-top: 18px;
	border-top: 1px solid var(--vms-beige-light);
	color: var(--vms-muted);
	font-size: 12px;
	min-width: 0;
}

.vms-single-share span {
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.vms-single-share a {
	color: var(--vms-charcoal);
	overflow-wrap: anywhere;
}

.vms-single-section {
	padding: clamp(62px, 8vw, 96px) 0;
	min-width: 0;
	max-width: 100%;
}

.vms-single-section--trust {
	padding-top: 0;
}

.vms-single-section__head {
	max-width: 680px;
	margin-bottom: 30px;
}

.vms-single-section__head h2,
.vms-single-faq h2 {
	margin: 10px 0 0;
	font-size: clamp(34px, 4vw, 52px);
	font-weight: 400;
	line-height: 1.08;
}

.vms-single-trust-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.vms-single-trust-card {
	min-height: 160px;
	padding: 26px 22px;
	border: 1px solid var(--vms-beige-light);
	border-radius: 4px;
	background: var(--vms-cream);
}

.vms-single-trust-card svg {
	width: 24px;
	height: 24px;
	margin-bottom: 18px;
	color: var(--vms-saffron);
}

.vms-single-trust-card strong {
	display: block;
	margin-bottom: 8px;
	font-family: var(--vms-font-serif);
	font-size: 21px;
	font-weight: 500;
	line-height: 1.1;
}

.vms-single-trust-card span {
	color: var(--vms-muted);
	font-size: 13px;
	line-height: 1.55;
}

.vms-single-info-grid,
.vms-single-faq__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
	gap: clamp(34px, 6vw, 78px);
	align-items: start;
	min-width: 0;
}

.vms-single-details details,
.vms-faq-list details {
	border-top: 1px solid var(--vms-beige-light);
}

.vms-single-details details:last-child,
.vms-faq-list details:last-child {
	border-bottom: 1px solid var(--vms-beige-light);
}

.vms-single-details summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	cursor: pointer;
	padding: 22px 0;
	font-family: var(--vms-font-serif);
	font-size: clamp(24px, 3vw, 34px);
	line-height: 1.15;
	list-style: none;
}

.vms-single-details summary::after {
	content: "+";
	flex: 0 0 auto;
	color: var(--vms-saffron);
	font-family: var(--vms-font-sans);
	font-size: 18px;
	font-weight: 600;
}

.vms-single-details details[open] summary::after {
	content: "-";
}

.vms-single-details summary:focus-visible {
	outline: 2px solid var(--vms-saffron);
	outline-offset: 6px;
}

.vms-single-details summary::-webkit-details-marker {
	display: none;
}

.vms-accordion-content {
	padding: 0 0 24px;
	color: var(--vms-charcoal-soft);
	line-height: 1.8;
}

.vms-accordion-content p:first-child {
	margin-top: 0;
}

.vms-accordion-content ul,
.vms-accordion-content ol {
	padding-left: 20px;
}

.vms-accordion-content li {
	margin-bottom: 8px;
}

.vms-accordion-content h2,
.vms-accordion-content h3,
.vms-accordion-content h4 {
	margin: 22px 0 10px;
	color: var(--vms-charcoal);
	font-family: var(--vms-font-serif);
	font-weight: 500;
}

.vms-accordion-content table {
	width: 100%;
	border-collapse: collapse;
}

.vms-accordion-content th,
.vms-accordion-content td {
	padding: 12px 0;
	border-bottom: 1px solid var(--vms-beige-light);
	text-align: left;
	vertical-align: top;
}

.vms-delivery-card {
	position: sticky;
	top: 132px;
	padding: 30px;
	border-radius: 4px;
	background: var(--vms-charcoal);
	color: #fff;
}

.vms-delivery-card h2 {
	margin: 12px 0 24px;
	color: #fff;
	font-size: clamp(32px, 4vw, 48px);
	font-weight: 400;
	line-height: 1.05;
}

.vms-delivery-card ul {
	display: grid;
	gap: 18px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.vms-delivery-card li {
	display: grid;
	grid-template-columns: 24px 1fr;
	gap: 12px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 13px;
	line-height: 1.6;
}

.vms-delivery-card svg {
	width: 22px;
	height: 22px;
	color: var(--vms-saffron-light);
}

.vms-single-reviews {
	background: var(--vms-beige-pale);
	overflow: hidden;
}

.vms-single-reviews .woocommerce-Reviews,
.vms-single-reviews #reviews {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
	gap: clamp(28px, 5vw, 58px);
	min-width: 0;
}

.vms-single-reviews #comments,
.vms-single-reviews #review_form_wrapper {
	padding: 30px;
	border: 1px solid var(--vms-beige-light);
	border-radius: 4px;
	background: rgba(255, 250, 245, 0.78);
}

.vms-single-reviews .commentlist {
	margin: 0;
	padding: 0;
	list-style: none;
}

.vms-single-reviews .comment {
	margin-bottom: 22px;
}

.vms-single-reviews .comment_container {
	display: grid;
	grid-template-columns: 52px 1fr;
	gap: 16px;
}

.vms-single-reviews .avatar {
	width: 52px;
	height: 52px;
	border-radius: 50%;
}

.vms-single-reviews .star-rating {
	color: var(--vms-gold);
}

.vms-single-reviews textarea,
.vms-single-reviews input[type="text"],
.vms-single-reviews input[type="email"] {
	width: 100%;
	border: 1px solid var(--vms-beige-light);
	border-radius: 4px;
	background: #fff;
	padding: 12px 14px;
}

.vms-single-faq {
	background: var(--vms-charcoal);
	color: #fff;
}

.vms-single-faq h2 {
	color: #fff;
}

.vms-single-faq .vms-faq-list details {
	border-color: rgba(255, 255, 255, 0.16);
}

.vms-sticky-atc {
	position: fixed;
	right: 18px;
	bottom: 18px;
	left: 18px;
	z-index: 180;
	display: none;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 12px;
	border: 1px solid rgba(200, 168, 130, 0.4);
	border-radius: 6px;
	background: rgba(253, 250, 245, 0.96);
	box-shadow: 0 14px 46px rgba(44, 44, 44, 0.18);
	backdrop-filter: blur(12px);
	max-width: calc(100vw - 36px);
}

.vms-sticky-atc strong {
	display: block;
	overflow: hidden;
	color: var(--vms-charcoal);
	font-size: 13px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.vms-sticky-atc span {
	color: var(--vms-saffron);
	font-size: 13px;
	font-weight: 700;
}

.vms-sticky-atc button {
	flex: 0 0 auto;
	border: 0;
	border-radius: 4px;
	background: var(--vms-saffron);
	color: #fff;
	padding: 12px 14px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.vms-commerce {
	padding: clamp(42px, 7vw, 88px) 0 clamp(70px, 9vw, 112px);
	background: var(--vms-warm-white);
}

.vms-commerce__hero {
	width: min(100% - 48px, 980px);
	margin: 0 auto clamp(34px, 5vw, 62px);
	text-align: center;
}

.vms-commerce__hero h1,
.vms-commerce__hero h2 {
	max-width: 780px;
	margin: 10px auto 14px;
	color: var(--vms-charcoal);
	font-family: var(--vms-font-serif);
	font-size: clamp(46px, 6vw, 82px);
	font-weight: 400;
	line-height: 0.98;
}

.vms-commerce__hero p {
	max-width: 680px;
	margin: 0 auto;
	color: var(--vms-muted);
	font-size: 15px;
	line-height: 1.75;
}

.woocommerce-notices-wrapper,
.woocommerce .woocommerce-notices-wrapper {
	width: min(100% - 48px, var(--vms-container));
	margin: 0 auto 22px;
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
	display: grid;
	gap: 10px;
	margin: 0 0 18px;
	padding: 16px 18px;
	border: 1px solid rgba(200, 168, 130, 0.35);
	border-radius: 4px;
	background: rgba(255, 250, 245, 0.92);
	color: var(--vms-charcoal-soft);
	list-style: none;
}

.woocommerce-error {
	border-color: rgba(157, 54, 48, 0.32);
	background: rgba(255, 244, 241, 0.92);
}

.woocommerce-message {
	border-color: rgba(117, 142, 94, 0.36);
	background: rgba(247, 251, 240, 0.9);
}

.vms-cart-layout,
.vms-checkout-layout,
.vms-account-layout {
	width: min(100% - 48px, var(--vms-container));
	margin: 0 auto;
}

.vms-cart-layout {
	display: grid;
	grid-template-columns: minmax(0, 2fr) minmax(340px, 1fr);
	gap: clamp(28px, 4vw, 48px);
	align-items: start;
}

.vms-cart-panel,
.vms-cart-summary,
.vms-checkout-card,
.vms-checkout-summary,
.vms-account-content,
.vms-account-nav,
.vms-address-card,
.vms-account-form,
.vms-account-empty,
.vms-account-welcome {
	border: 1px solid rgba(200, 168, 130, 0.26);
	border-radius: 4px;
	background: rgba(255, 250, 245, 0.8);
	box-shadow: 0 16px 42px rgba(44, 44, 44, 0.06);
}

.woocommerce-cart-form table.shop_table,
.vms-cart-summary table.shop_table,
.vms-checkout-summary table.shop_table,
.vms-account-content table.shop_table {
	width: 100%;
	border: 0;
	border-collapse: collapse;
	margin: 0;
}

.woocommerce-cart-form table.shop_table {
	table-layout: fixed;
}

.woocommerce-cart-form .vms-cart-col-remove {
	width: 52px;
}

.woocommerce-cart-form .vms-cart-col-thumbnail {
	width: 112px;
}

.woocommerce-cart-form .vms-cart-col-price,
.woocommerce-cart-form .vms-cart-col-subtotal {
	width: 104px;
}

.woocommerce-cart-form .vms-cart-col-quantity {
	width: 118px;
}

.woocommerce-cart-form th,
.vms-cart-summary th,
.vms-checkout-summary th,
.vms-account-content th {
	padding: 18px 16px;
	border-bottom: 1px solid var(--vms-beige-light);
	color: var(--vms-muted);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-align: left;
	text-transform: uppercase;
}

.woocommerce-cart-form td,
.vms-cart-summary td,
.vms-checkout-summary td,
.vms-account-content td,
.vms-account-content th[scope="row"] {
	padding: 20px 16px;
	border-bottom: 1px solid var(--vms-beige-light);
	color: var(--vms-charcoal-soft);
	vertical-align: middle;
}

.woocommerce-cart-form .product-thumbnail img {
	width: 88px;
	aspect-ratio: 1;
	border-radius: 4px;
	object-fit: cover;
}

.woocommerce-cart-form .product-name a,
.woocommerce-orders-table a,
.vms-address-card a {
	overflow-wrap: anywhere;
	color: var(--vms-charcoal);
	font-family: var(--vms-font-serif);
	font-size: 20px;
	line-height: 1.2;
}

.woocommerce-cart-form .product-remove .remove {
	display: inline-grid;
	width: 34px;
	height: 34px;
	place-items: center;
	border: 1px solid var(--vms-beige-light);
	border-radius: 50%;
	color: var(--vms-muted);
	font-size: 20px;
}

.woocommerce-cart-form .product-remove .remove:hover {
	border-color: var(--vms-saffron);
	color: var(--vms-saffron);
}

.woocommerce-cart-form .quantity,
.vms-cart-summary .shipping-calculator-form,
.woocommerce-checkout .woocommerce-shipping-fields,
.woocommerce-checkout .woocommerce-additional-fields {
	max-width: 100%;
}

.woocommerce-cart-form input.qty,
.woocommerce-checkout input.input-text,
.woocommerce-checkout textarea,
.woocommerce-checkout select,
.vms-account-form input.input-text,
.vms-account-form textarea,
.vms-account-form select {
	width: 100%;
	min-height: 48px;
	border: 1px solid var(--vms-beige-light);
	border-radius: 4px;
	background: #fff;
	color: var(--vms-charcoal);
	padding: 12px 14px;
}

.woocommerce-cart-form input.qty {
	width: 78px;
	text-align: center;
}

.woocommerce-invalid input.input-text,
.woocommerce-invalid select,
.woocommerce-invalid textarea {
	border-color: #9d3630;
	box-shadow: 0 0 0 3px rgba(157, 54, 48, 0.08);
}

.woocommerce-cart-form .actions {
	padding: 24px 16px;
}

.woocommerce-cart-form .actions,
.woocommerce-cart-form .coupon {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
}

.woocommerce-cart-form .coupon {
	margin-right: auto;
}

.woocommerce-cart-form .coupon input {
	min-width: min(260px, 100%);
}

.woocommerce-cart-form button,
.woocommerce-cart-form .button,
.vms-cart-summary .checkout-button,
.woocommerce-checkout .button,
.vms-account-content .button,
.vms-account-form .button,
.vms-empty-cart .button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	border: 0;
	border-radius: 4px;
	background: var(--vms-charcoal);
	color: #fff;
	padding: 12px 18px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.woocommerce-cart-form button:focus-visible,
.woocommerce-cart-form .button:focus-visible,
.vms-cart-summary .checkout-button:focus-visible,
.woocommerce-checkout .button:focus-visible,
.vms-account-content .button:focus-visible,
.vms-account-form .button:focus-visible,
.vms-empty-cart .button:focus-visible {
	outline: 2px solid var(--vms-saffron);
	outline-offset: 3px;
}

.woocommerce-cart-form button:hover,
.woocommerce-cart-form .button:hover,
.vms-cart-summary .checkout-button:hover,
.woocommerce-checkout .button:hover,
.vms-account-content .button:hover,
.vms-account-form .button:hover,
.vms-empty-cart .button:hover {
	background: var(--vms-saffron);
	color: #fff;
}

.woocommerce-cart-form button[disabled] {
	cursor: not-allowed;
	opacity: 0.48;
}

.vms-continue-shopping,
.vms-summary-link {
	color: var(--vms-muted);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: underline;
	text-underline-offset: 5px;
}

.vms-cart-collaterals {
	display: grid;
	gap: 24px;
	min-width: 0;
}

.woocommerce .vms-cart-collaterals .cart_totals,
.vms-cart-collaterals .cart_totals,
.vms-cart-summary {
	float: none;
	width: 100%;
	max-width: none;
}

.vms-cart-recommendations {
	width: min(100%, var(--vms-container));
	margin: clamp(36px, 6vw, 72px) auto 0;
}

.vms-cart-recommendations .vms-product-row {
	padding-bottom: 10px;
}

.vms-cart-summary,
.vms-checkout-summary {
	position: sticky;
	top: 132px;
	padding: clamp(24px, 3vw, 34px);
}

.vms-summary-kicker,
.vms-checkout-card__head span,
.vms-account-section__head span,
.vms-account-welcome span {
	display: block;
	margin-bottom: 8px;
	color: var(--vms-saffron);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.vms-cart-summary h2,
.vms-checkout-summary h2,
.vms-checkout-card__head h2,
.vms-account-section__head h2,
.vms-account-welcome h2 {
	margin: 0 0 20px;
	color: var(--vms-charcoal);
	font-family: var(--vms-font-serif);
	font-size: clamp(30px, 3vw, 42px);
	font-weight: 400;
	line-height: 1.08;
}

.vms-cart-summary .order-total th,
.vms-cart-summary .order-total td,
.vms-checkout-summary .order-total th,
.vms-checkout-summary .order-total td {
	color: var(--vms-charcoal);
	font-family: var(--vms-font-serif);
	font-size: 26px;
}

.vms-cart-savings {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 18px;
	padding: 12px 14px;
	border: 1px solid rgba(117, 142, 94, 0.28);
	border-radius: 4px;
	background: rgba(247, 251, 240, 0.8);
	color: var(--vms-charcoal);
}

.vms-cart-savings span,
.vms-cart-savings strong {
	font-size: 13px;
}

.wc-proceed-to-checkout {
	margin-top: 22px;
}

.wc-proceed-to-checkout .checkout-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 56px;
	background: var(--vms-saffron);
	color: #fff;
	text-align: center;
	white-space: nowrap;
}

.woocommerce .vms-cart-summary .wc-proceed-to-checkout a.checkout-button,
.woocommerce .vms-cart-summary .wc-proceed-to-checkout a.checkout-button.button,
.woocommerce .vms-cart-summary .wc-proceed-to-checkout a.checkout-button.button.alt,
.vms-cart-summary .wc-proceed-to-checkout a.checkout-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 56px;
	background: var(--vms-saffron);
	color: #fff;
	text-align: center;
	white-space: nowrap;
}

.woocommerce .vms-cart-summary .wc-proceed-to-checkout a.checkout-button:hover,
.woocommerce .vms-cart-summary .wc-proceed-to-checkout a.checkout-button.button:hover,
.woocommerce .vms-cart-summary .wc-proceed-to-checkout a.checkout-button.button.alt:hover,
.vms-cart-summary .wc-proceed-to-checkout a.checkout-button:hover {
	background: var(--vms-saffron-dark);
	color: #fff;
}

.vms-order-trust {
	display: grid;
	gap: 12px;
	margin-top: 24px;
}

.vms-order-trust__item {
	display: grid;
	grid-template-columns: 34px 1fr;
	gap: 12px;
	align-items: start;
	padding: 12px 0;
	border-top: 1px solid var(--vms-beige-light);
}

.vms-order-trust__item svg {
	width: 22px;
	height: 22px;
	color: var(--vms-saffron);
}

.vms-order-trust__item strong,
.vms-order-trust__item small {
	display: block;
}

.vms-order-trust__item strong {
	color: var(--vms-charcoal);
	font-family: var(--vms-font-serif);
	font-size: 18px;
	font-weight: 500;
}

.vms-order-trust__item small {
	color: var(--vms-muted);
	font-size: 12px;
	line-height: 1.5;
}

.vms-empty-cart {
	width: min(100% - 48px, 880px);
	margin: 0 auto;
	text-align: center;
}

.vms-empty-cart__panel {
	padding: clamp(44px, 8vw, 88px) clamp(24px, 5vw, 58px);
	border: 1px solid rgba(200, 168, 130, 0.28);
	border-radius: 4px;
	background: rgba(255, 250, 245, 0.82);
}

.vms-empty-cart__icon {
	display: inline-grid;
	width: 64px;
	height: 64px;
	place-items: center;
	margin-bottom: 18px;
	border: 1px solid var(--vms-beige-light);
	border-radius: 50%;
	color: var(--vms-saffron);
}

.vms-empty-cart h1 {
	margin: 0 0 12px;
	font-family: var(--vms-font-serif);
	font-size: clamp(40px, 6vw, 70px);
	font-weight: 400;
	line-height: 1;
}

.vms-empty-cart p {
	max-width: 520px;
	margin: 0 auto 26px;
	color: var(--vms-muted);
}

.vms-checkout-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(340px, 0.42fr);
	gap: clamp(28px, 5vw, 58px);
	align-items: start;
}

.vms-checkout-details,
.vms-checkout-details #customer_details {
	display: grid;
	gap: 22px;
}

.vms-checkout-details #customer_details {
	grid-template-columns: 1fr;
}

.vms-checkout-card {
	padding: clamp(24px, 4vw, 38px);
}

.woocommerce-checkout .form-row,
.vms-account-form .form-row {
	margin: 0 0 18px;
}

.woocommerce-checkout label,
.vms-account-form label,
.vms-address-form label {
	display: block;
	margin-bottom: 7px;
	color: var(--vms-charcoal);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
}

.woocommerce-checkout .required,
.vms-account-form .required {
	color: #9d3630;
}

.select2-container .select2-selection--single {
	min-height: 48px;
	border: 1px solid var(--vms-beige-light);
	border-radius: 4px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
	line-height: 48px;
	padding-left: 14px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 48px;
}

.vms-secure-note {
	margin: -10px 0 18px;
	color: var(--vms-muted);
	font-size: 13px;
	line-height: 1.6;
}

.woocommerce-checkout-review-order-table .product-name,
.woocommerce-checkout-review-order-table .product-total {
	font-size: 13px;
}

#payment {
	margin-top: 22px;
}

#payment ul.payment_methods {
	margin: 0;
	padding: 0;
	list-style: none;
}

#payment .payment_box {
	margin: 12px 0;
	padding: 14px;
	border: 1px solid var(--vms-beige-light);
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.72);
	color: var(--vms-muted);
	font-size: 13px;
}

#place_order {
	width: 100%;
	min-height: 56px;
	margin-top: 14px;
	background: var(--vms-saffron);
}

.woocommerce-terms-and-conditions-wrapper {
	margin-top: 16px;
	color: var(--vms-muted);
	font-size: 13px;
	line-height: 1.6;
}

.vms-account-layout {
	display: grid;
	grid-template-columns: minmax(230px, 0.26fr) minmax(0, 1fr);
	gap: clamp(24px, 4vw, 46px);
	align-items: start;
}

.vms-account-nav {
	position: sticky;
	top: 132px;
	padding: 12px;
}

.vms-account-nav ul {
	display: grid;
	gap: 4px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.vms-account-nav a {
	display: grid;
	grid-template-columns: 28px 1fr;
	gap: 10px;
	align-items: center;
	padding: 13px 12px;
	border-radius: 4px;
	color: var(--vms-charcoal-soft);
	font-size: 13px;
	font-weight: 700;
}

.vms-account-nav a:hover,
.vms-account-nav .is-active a,
.vms-account-nav a[aria-current="page"] {
	background: var(--vms-beige-pale);
	color: var(--vms-charcoal);
}

.vms-account-nav__icon svg {
	width: 19px;
	height: 19px;
	color: var(--vms-saffron);
}

.vms-account-content {
	padding: clamp(24px, 4vw, 42px);
	min-width: 0;
}

.vms-account-welcome {
	padding: clamp(24px, 4vw, 38px);
	margin-bottom: 22px;
}

.vms-account-welcome p {
	margin: 0;
	color: var(--vms-muted);
}

.vms-account-welcome strong,
.vms-account-content strong,
.vms-account-content a {
	overflow-wrap: anywhere;
	word-break: break-word;
}

.vms-account-actions {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-bottom: 22px;
}

.vms-account-actions a {
	display: grid;
	gap: 10px;
	padding: 22px;
	border: 1px solid var(--vms-beige-light);
	border-radius: 4px;
	background: #fff;
}

.vms-account-actions svg {
	width: 24px;
	height: 24px;
	color: var(--vms-saffron);
}

.vms-account-actions strong {
	color: var(--vms-charcoal);
	font-family: var(--vms-font-serif);
	font-size: 22px;
	font-weight: 500;
}

.vms-account-actions span,
.vms-account-section__head p,
.vms-account-empty p,
.vms-address-card address {
	color: var(--vms-muted);
	font-size: 13px;
	line-height: 1.65;
}

.vms-account-section__head {
	margin-bottom: 22px;
}

.vms-account-empty {
	display: grid;
	place-items: center;
	padding: clamp(34px, 6vw, 58px);
	text-align: center;
}

.vms-account-empty svg {
	width: 36px;
	height: 36px;
	margin-bottom: 12px;
	color: var(--vms-saffron);
}

.vms-account-empty h3 {
	margin: 0 0 8px;
	font-family: var(--vms-font-serif);
	font-size: 30px;
	font-weight: 400;
}

.vms-order-status {
	display: inline-flex;
	padding: 5px 9px;
	border-radius: 999px;
	background: var(--vms-beige-pale);
	color: var(--vms-charcoal);
	font-size: 11px;
	font-weight: 700;
}

.vms-address-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.vms-address-card {
	padding: 24px;
}

.vms-address-card header {
	display: flex;
	align-items: start;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 16px;
}

.vms-address-card h3 {
	margin: 0;
	font-family: var(--vms-font-serif);
	font-size: 28px;
	font-weight: 400;
}

.vms-address-card .edit {
	font-family: var(--vms-font-sans);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.vms-account-form fieldset {
	margin: 26px 0;
	padding: 22px;
	border: 1px solid var(--vms-beige-light);
	border-radius: 4px;
}

.vms-account-form legend {
	padding: 0 8px;
	color: var(--vms-charcoal);
	font-family: var(--vms-font-serif);
	font-size: 24px;
}

.vms-editorial-banner {
	display: grid;
	min-height: 570px;
	place-items: center;
	padding: 60px 20px;
	background-image: linear-gradient(rgba(44, 22, 9, 0.54), rgba(44, 22, 9, 0.7)), var(--vms-editorial-image);
	background-position: center;
	background-size: cover;
	color: #fff;
	text-align: center;
}

.vms-editorial-banner h2 {
	max-width: 780px;
	margin: 15px auto;
	color: #f7d995;
	font-size: clamp(40px, 5vw, 67px);
	font-weight: 400;
	line-height: 1.05;
}

.vms-editorial-banner p {
	max-width: 600px;
	margin: 0 auto 28px;
	color: #f4e3c4;
	font-family: var(--vms-font-serif);
	font-size: 25px;
	font-style: italic;
}

.vms-brand-intro {
	background:
		linear-gradient(135deg, rgba(247, 238, 219, 0.72), rgba(255, 252, 245, 0.94)),
		var(--vms-ivory);
}

.vms-brand-intro__grid,
.vms-authenticity,
.vms-gifting__inner,
.vms-home-newsletter__inner {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	gap: clamp(34px, 6vw, 84px);
	align-items: center;
}

.vms-brand-intro__copy {
	max-width: 680px;
}

.vms-brand-intro__copy p,
.vms-authenticity__copy p,
.vms-gifting__copy p,
.vms-home-newsletter__inner p {
	margin: 0 0 18px;
	color: var(--vms-muted);
	font-size: 16px;
	line-height: 1.9;
}

.vms-authenticity__media,
.vms-gifting__image {
	position: relative;
	overflow: hidden;
	border-radius: 8px;
	background: var(--vms-stone);
	box-shadow: var(--vms-shadow-soft);
}

.vms-authenticity__media::after,
.vms-gifting__image::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(255, 249, 238, 0.05), rgba(72, 39, 20, 0.16));
	pointer-events: none;
}

.vms-authenticity__media img,
.vms-gifting__image img {
	width: 100%;
	height: 100%;
	min-height: 540px;
	object-fit: cover;
}

.vms-authenticity__points {
	display: grid;
	gap: 16px;
	margin-top: 28px;
}

.vms-authenticity__points div {
	display: grid;
	grid-template-columns: minmax(110px, 0.35fr) minmax(0, 1fr);
	gap: 18px;
	padding: 18px 0;
	border-top: 1px solid rgba(115, 82, 46, 0.18);
}

.vms-authenticity__points strong {
	color: var(--vms-charcoal);
	font-family: var(--vms-font-serif);
	font-size: 22px;
	font-weight: 500;
}

.vms-authenticity__points span {
	color: var(--vms-muted);
	line-height: 1.75;
}

.vms-pillar-grid,
.vms-review-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
	gap: 18px;
}

.vms-pillar {
	min-height: 190px;
	padding: 34px 25px;
	border: 1px solid var(--vms-beige-light);
	background: var(--vms-cream);
}

.vms-pillar svg {
	width: 25px;
	height: 25px;
	margin-bottom: 22px;
	color: var(--vms-saffron);
}

.vms-pillar h3 {
	margin: 0 0 8px;
	font-size: 21px;
	font-weight: 500;
}

.vms-pillar p {
	margin: 0;
	color: var(--vms-muted);
	font-size: 13px;
	line-height: 1.6;
}

.vms-review-grid {
	grid-template-columns: repeat(3, 1fr);
}

.vms-review {
	padding: 34px;
	border-top: 2px solid var(--vms-gold);
	background: rgba(255, 248, 238, 0.72);
}

.vms-review__stars {
	color: var(--vms-gold);
	letter-spacing: 3px;
}

.vms-review blockquote {
	margin: 20px 0 27px;
	font-family: var(--vms-font-serif);
	font-size: 24px;
	font-style: italic;
	line-height: 1.3;
}

.vms-review cite {
	color: var(--vms-muted);
	font-size: 12px;
	font-style: normal;
}

.vms-review-empty {
	max-width: 620px;
	margin: 0 auto;
	padding: clamp(34px, 6vw, 58px);
	border: 1px solid rgba(115, 82, 46, 0.16);
	border-radius: 8px;
	background: rgba(255, 252, 245, 0.78);
	text-align: center;
}

.vms-review-empty svg {
	width: 28px;
	height: 28px;
	margin-bottom: 18px;
	color: var(--vms-gold);
}

.vms-review-empty h3 {
	margin: 0 0 12px;
	font-family: var(--vms-font-serif);
	font-size: clamp(26px, 4vw, 38px);
	font-weight: 500;
}

.vms-review-empty p {
	max-width: 460px;
	margin: 0 auto;
	color: var(--vms-muted);
	line-height: 1.8;
}

.vms-gallery {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: 190px 190px;
	gap: 10px;
}

.vms-gallery a,
.vms-gallery figure {
	position: relative;
	overflow: hidden;
	margin: 0;
	background: var(--vms-beige);
}

.vms-gallery a:nth-child(1),
.vms-gallery a:nth-child(4),
.vms-gallery figure:nth-child(1),
.vms-gallery figure:nth-child(4) {
	grid-row: span 2;
}

.vms-gallery img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.vms-gallery a:hover img,
.vms-gallery figure:hover img {
	transform: scale(1.08);
}

.vms-gifting {
	background:
		linear-gradient(90deg, rgba(255, 252, 245, 0.96), rgba(247, 238, 219, 0.78)),
		var(--vms-ivory);
}

.vms-gifting__copy {
	max-width: 620px;
}

.vms-home-newsletter {
	background: var(--vms-stone);
}

.vms-home-newsletter__inner {
	align-items: stretch;
}

.vms-home-newsletter__inner > div,
.vms-home-newsletter__inner form {
	align-self: center;
}

.vms-home-newsletter .vms-section-title {
	margin-bottom: 16px;
}

.vms-faq-panel {
	padding: clamp(72px, 9vw, 112px) 0;
	background: var(--vms-charcoal);
	color: #fff;
}

.vms-faq-panel__inner {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: clamp(36px, 7vw, 96px);
	align-items: start;
}

.vms-faq-panel__copy {
	position: sticky;
	top: 128px;
}

.vms-faq-panel h2 {
	margin: 14px 0 18px;
	color: #fff;
	font-size: clamp(38px, 5vw, 64px);
	font-weight: 400;
	line-height: 1.04;
}

.vms-faq-panel p {
	max-width: 500px;
	color: rgba(255, 255, 255, 0.65);
}

.vms-faq-panel .vms-btn-outline {
	margin-top: 18px;
	color: #fff;
}

.vms-faq-panel .vms-btn-outline:hover {
	border-color: var(--vms-saffron);
	background: var(--vms-saffron);
}

.vms-faq-list {
	border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.vms-faq-list details {
	border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.vms-faq-list summary {
	cursor: pointer;
	padding: 24px 0;
	color: #fff;
	font-family: var(--vms-font-serif);
	font-size: clamp(24px, 3vw, 34px);
	line-height: 1.2;
	list-style: none;
}

.vms-faq-list summary::-webkit-details-marker {
	display: none;
}

.vms-faq-list summary::after {
	content: "+";
	float: right;
	color: var(--vms-saffron-light);
	font-family: var(--vms-font-sans);
	font-size: 20px;
	font-weight: 400;
}

.vms-faq-list details[open] summary::after {
	content: "-";
}

.vms-faq-list p {
	margin: -6px 0 24px;
	color: rgba(255, 255, 255, 0.62);
}

.vms-site-footer {
	background: var(--vms-charcoal);
	color: #fff;
}

.vms-newsletter {
	background: linear-gradient(135deg, var(--vms-saffron) 0%, var(--vms-gold) 100%);
	text-align: center;
}

.vms-newsletter__inner {
	max-width: 620px;
	padding: 60px 0;
}

.vms-newsletter h2 {
	margin: 12px 0 28px;
	color: #fff;
	font-size: clamp(34px, 4vw, 44px);
	font-weight: 400;
	line-height: 1.18;
}

.vms-newsletter .vms-section-label {
	color: rgba(255, 255, 255, 0.8);
}

.vms-newsletter-form {
	display: flex;
	flex-wrap: wrap;
	max-width: 520px;
	margin: 0 auto;
}

.vms-newsletter-form input {
	flex: 1;
	min-width: 0;
	border: 0;
	border-radius: 6px 0 0 6px;
	background: rgba(255, 255, 255, 0.95);
	padding: 15px 18px;
}

.vms-newsletter-form button {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border-radius: 0 6px 6px 0;
	white-space: nowrap;
}

.vms-footer-main {
	padding: 72px 0 34px;
}

.vms-footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr 1.1fr;
	gap: 48px;
}

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

.vms-footer-brand p {
	max-width: 360px;
	color: rgba(255, 255, 255, 0.62);
	font-size: 14px;
	line-height: 1.75;
}

.vms-footer-grid h2 {
	margin: 0 0 20px;
	color: var(--vms-saffron-light);
	font-family: var(--vms-font-sans);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.vms-footer-menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

.vms-footer-menu a,
.vms-footer-contact a,
.vms-footer-contact p {
	color: rgba(255, 255, 255, 0.64);
	font-size: 13.5px;
}

.vms-footer-menu li {
	margin-bottom: 10px;
}

.vms-socials {
	display: flex;
	gap: 12px;
	margin-top: 24px;
}

.vms-socials a {
	display: grid;
	place-items: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	transition: background var(--vms-transition);
}

.vms-socials a:hover {
	background: var(--vms-saffron);
	color: #fff;
}

.vms-footer-contact {
	font-style: normal;
}

.vms-footer-contact p {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin: 0 0 14px;
}

.vms-footer-contact svg {
	flex: 0 0 auto;
	color: var(--vms-saffron-light);
}

.vms-hours {
	margin-top: 20px;
	padding: 14px 16px;
	border-left: 3px solid var(--vms-saffron);
	border-radius: 6px;
	background: rgba(232, 101, 10, 0.15);
}

.vms-hours span {
	display: block;
	color: var(--vms-saffron-light);
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
}

.vms-hours strong {
	color: rgba(255, 255, 255, 0.72);
	font-size: 13px;
}

.vms-footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-top: 56px;
	padding-top: 28px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.42);
	font-size: 12.5px;
}

.vms-footer-payments {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
}

.vms-footer-payments span {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 6px 10px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 999px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 11px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.vms-page-hero {
	padding: 76px 0 68px;
	border-bottom: 1px solid var(--vms-beige-light);
	background: var(--vms-beige-pale);
	text-align: center;
}

.vms-page-hero--about {
	padding: 54px 0 48px;
}

.vms-content {
	padding: 72px 0;
}

.vms-content article {
	max-width: 820px;
	margin: 0 auto;
}

.vms-page-article {
	padding: clamp(28px, 5vw, 52px);
	border: 1px solid rgba(115, 82, 46, 0.14);
	border-radius: 8px;
	background:
		linear-gradient(135deg, rgba(255, 248, 238, 0.92), rgba(253, 250, 245, 0.98)),
		var(--vms-warm-white);
	box-shadow: 0 22px 60px rgba(96, 59, 22, 0.08);
}

.vms-content--policy .vms-page-article {
	max-width: 920px;
	font-size: 16px;
	line-height: 1.78;
}

.vms-content--policy .vms-page-article h2,
.vms-content--policy .vms-page-article h3 {
	margin-top: 1.7em;
}

.vms-content h1 {
	font-size: clamp(40px, 6vw, 70px);
	font-weight: 400;
	line-height: 1.08;
}

.vms-page-support {
	max-width: 1040px;
	margin: 34px auto 0;
}

.vms-contact-cards {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}

.vms-page-support-card {
	display: grid;
	gap: 10px;
	min-width: 0;
	padding: 20px;
	border: 1px solid rgba(115, 82, 46, 0.14);
	border-radius: 8px;
	background: rgba(255, 248, 238, 0.74);
	color: var(--vms-charcoal-soft);
}

.vms-page-support-card svg {
	width: 22px;
	height: 22px;
	stroke: var(--vms-saffron-dark);
}

.vms-page-support-card strong {
	color: var(--vms-charcoal);
	font-family: var(--vms-font-serif);
	font-size: 22px;
	font-weight: 500;
}

.vms-page-support-card span,
.vms-page-support-card a {
	overflow-wrap: anywhere;
	color: inherit;
	font-size: 14px;
	line-height: 1.58;
}

.vms-404 {
	display: grid;
	min-height: 70vh;
	place-items: center;
	background: radial-gradient(circle at 50% 35%, var(--vms-gold-pale), var(--vms-warm-white) 50%);
	text-align: center;
}

.vms-404__number {
	font-family: var(--vms-font-serif);
	font-size: clamp(120px, 20vw, 200px);
	font-weight: 300;
	line-height: 0.85;
	background: linear-gradient(135deg, var(--vms-saffron), var(--vms-gold-bright));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.vms-404__links {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 13px;
	margin-top: 42px;
	text-align: left;
}

.vms-404__links a {
	padding: 18px;
	border: 1px solid var(--vms-beige-light);
	border-radius: 5px;
	background: rgba(255, 248, 238, 0.6);
}

.vms-404__links svg {
	width: 28px;
	height: 28px;
	margin-bottom: 14px;
	color: var(--vms-saffron);
}

@keyframes vms-fade-up {
	from {
		opacity: 0;
		transform: translateY(24px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.vms-fade-up {
	animation: vms-fade-up 0.7s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@media (max-width: 1080px) {
	.vms-header-inner {
		grid-template-columns: auto 1fr auto;
	}

	.vms-menu-toggle {
		display: inline-grid;
	}

	.vms-primary-nav {
		display: none;
	}

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

	.vms-hide-small {
		display: none;
	}

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

	.vms-contact-cards {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.vms-shop-layout {
		grid-template-columns: 1fr;
	}

	.vms-category-editorial__grid {
		grid-template-columns: 1fr;
	}

	.vms-category-editorial details:nth-last-child(-n + 2) {
		border-bottom: 0;
	}

	.vms-category-editorial details:last-child {
		border-bottom: 1px solid rgba(115, 82, 46, 0.16);
	}

	.vms-shop-sidebar {
		display: none;
	}

	.vms-mobile-filters {
		display: block;
	}

	.vms-desktop-sort {
		display: none;
	}

	.vms-single-layout,
	.vms-single-info-grid,
	.vms-single-faq__grid {
		grid-template-columns: 1fr;
	}

	.vms-brand-intro__grid,
	.vms-authenticity,
	.vms-gifting__inner,
	.vms-home-newsletter__inner {
		grid-template-columns: 1fr;
	}

	.vms-single-summary,
	.vms-delivery-card {
		position: static;
	}

	.vms-single-trust-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.vms-single-reviews .woocommerce-Reviews,
	.vms-single-reviews #reviews {
		grid-template-columns: 1fr;
	}

	.vms-cart-layout,
	.vms-checkout-layout,
	.vms-account-layout {
		grid-template-columns: 1fr;
	}

	.vms-cart-summary,
	.vms-checkout-summary,
	.vms-account-nav {
		position: static;
	}

	.vms-account-nav ul {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 800px) {
	.vms-container,
	.vms-wrap,
	.vms-header-inner {
		width: min(100% - 40px, var(--vms-container));
	}

	.vms-announcement {
		gap: 12px;
		justify-content: flex-start;
		white-space: normal;
		width: 100%;
		max-width: 100vw;
	}

	.vms-announcement span {
		flex: 1 1 auto;
	}

	.vms-hero {
		min-height: 580px;
	}

	.vms-hero__inner {
		padding: 64px 0;
	}

	.vms-hero__mark {
		display: none;
	}

	.vms-trust-strip {
		grid-template-columns: repeat(2, 1fr);
		gap: 18px;
		padding: 18px 20px;
	}

	.vms-trust-item {
		justify-content: flex-start;
		border-right: 0;
	}

	.vms-collections-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.vms-collection-card {
		min-height: 280px;
	}

	.vms-collection-card:first-child,
	.vms-collection-card:last-child {
		min-height: 330px;
	}

	.vms-pillar-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.vms-review-grid {
		grid-template-columns: 1fr;
	}

	.vms-shop-hero__inner {
		min-height: 330px;
		padding-top: 58px;
		padding-bottom: 42px;
	}

	.vms-shop-hero__support {
		border-radius: 8px;
	}

	.vms-product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 16px;
	}

	.vms-single-product {
		padding-top: 24px;
	}

	.vms-single-layout {
		gap: 28px;
	}

	.vms-single-gallery__thumbs {
		grid-template-columns: repeat(5, minmax(0, 1fr));
		overflow-x: auto;
	}

	.vms-sticky-atc {
		display: flex;
	}

	.vms-commerce__hero,
	.vms-cart-layout,
	.vms-checkout-layout,
	.vms-account-layout,
	.woocommerce-notices-wrapper,
	.woocommerce .woocommerce-notices-wrapper {
		width: min(100% - 40px, var(--vms-container));
	}

	.woocommerce-cart-form table.shop_table thead,
	.vms-account-content table.shop_table thead {
		display: none;
	}

	.woocommerce-cart-form table.shop_table tr,
	.vms-account-content table.shop_table tr {
		display: grid;
		gap: 10px;
		padding: 18px;
		border-bottom: 1px solid var(--vms-beige-light);
	}

	.woocommerce-cart-form table.shop_table td,
	.vms-account-content table.shop_table td,
	.vms-account-content table.shop_table th[scope="row"] {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 18px;
		padding: 0;
		border: 0;
		text-align: right;
	}

	.woocommerce-cart-form table.shop_table td::before,
	.vms-account-content table.shop_table td::before,
	.vms-account-content table.shop_table th[scope="row"]::before {
		content: attr(data-title);
		color: var(--vms-muted);
		font-size: 10px;
		font-weight: 700;
		letter-spacing: 0.12em;
		text-align: left;
		text-transform: uppercase;
	}

	.woocommerce-cart-form .product-thumbnail,
	.woocommerce-cart-form .product-name {
		justify-content: flex-start;
		text-align: left;
	}

	.woocommerce-cart-form .product-thumbnail::before,
	.woocommerce-cart-form .product-name::before,
	.woocommerce-cart-form .product-remove::before,
	.vms-account-content .woocommerce-orders-table__cell-order-actions::before {
		display: none;
	}

	.woocommerce-cart-form .actions,
	.woocommerce-cart-form .coupon {
		display: grid;
		align-items: stretch;
		width: 100%;
	}

	.woocommerce-cart-form .coupon input,
	.woocommerce-cart-form .actions button,
	.vms-continue-shopping {
		width: 100%;
	}

	.vms-account-actions,
	.vms-address-grid {
		grid-template-columns: 1fr;
	}

	.single-product .vms-site-footer {
		padding-bottom: 82px;
	}

	.vms-gallery {
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: repeat(3, 160px);
	}

	.vms-gallery a:nth-child(1),
	.vms-gallery a:nth-child(4),
	.vms-gallery figure:nth-child(1),
	.vms-gallery figure:nth-child(4) {
		grid-row: span 1;
	}

	.vms-faq-panel__inner {
		grid-template-columns: 1fr;
	}

	.vms-faq-panel__copy {
		position: static;
	}

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

	.vms-footer-brand,
	.vms-footer-contact {
		grid-column: 1 / -1;
	}

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

	.vms-404__links {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 560px) {
	.vms-container,
	.vms-wrap,
	.vms-header-inner {
		width: min(100% - 32px, var(--vms-container));
	}

	.vms-header-inner {
		gap: 10px;
		height: 70px;
	}

	.vms-brand-mark {
		width: 34px;
		height: 34px;
	}

	.vms-brand-logo {
		max-width: 126px;
		max-height: 42px;
	}

	.vms-brand-name {
		font-size: 19px;
	}

	.vms-header-actions {
		gap: 0;
	}

	.vms-cart-link {
		margin-left: 0;
		padding: 9px 12px;
	}

	.vms-hero {
		min-height: 520px;
	}

	.vms-hero__inner {
		width: min(100% - 40px, var(--vms-container));
		padding: 56px 0 64px;
	}

	.vms-hero__inner h1 {
		font-size: 44px;
	}

	.vms-hero__actions .vms-btn-primary,
	.vms-hero__actions .vms-btn-outline {
		width: 100%;
	}

	.vms-hero__actions .vms-btn-primary svg,
	.vms-hero__actions .vms-btn-outline svg {
		flex: 0 0 auto;
		width: 42px;
		height: 42px;
	}

	.vms-scroll-cue {
		bottom: 14px;
		gap: 6px;
	}

	.vms-scroll-cue span {
		height: 28px;
	}

	.vms-trust-strip {
		padding: 18px 14px;
	}

	.vms-trust-item {
		font-size: 10px;
	}

	.vms-collections-grid {
		gap: 8px;
	}

	.vms-collection-card {
		min-height: 230px;
	}

	.vms-collection-card__copy {
		bottom: 16px;
		left: 14px;
	}

	.vms-collection-card__copy h3 {
		font-size: 23px;
	}

	.vms-collection-card__copy em {
		display: none;
	}

	.vms-authenticity__media img,
	.vms-gifting__image img {
		min-height: 320px;
	}

	.vms-authenticity__points div {
		grid-template-columns: 1fr;
		gap: 6px;
	}

	.vms-pillar-grid,
	.vms-footer-grid {
		grid-template-columns: 1fr;
	}

	.vms-page-article {
		padding: 24px 18px;
	}

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

	.vms-gallery {
		grid-template-rows: repeat(3, 130px);
		gap: 6px;
	}

	.vms-shop-toolbar {
		align-items: flex-start;
		flex-direction: column;
	}

	.vms-category-editorial {
		padding: 24px 18px;
	}

	.vms-category-editorial summary {
		min-height: 58px;
	}

	.vms-subcategory-card {
		grid-template-columns: 70px minmax(0, 1fr);
	}

	.vms-subcategory-card img {
		width: 70px;
		height: 70px;
	}

	.vms-product-grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.vms-product-card__media {
		height: auto;
		aspect-ratio: 4 / 5;
	}

	.vms-single-summary {
		padding: 24px 18px;
	}

	.vms-single-title {
		font-size: 38px;
	}

	.vms-product-meta-row {
		grid-template-columns: 1fr;
		gap: 4px;
	}

	.vms-single-secondary-actions {
		grid-template-columns: 1fr;
	}

	.vms-single-trust-grid {
		grid-template-columns: 1fr;
	}

	.vms-commerce__hero h1,
	.vms-commerce__hero h2 {
		font-size: 42px;
	}

	.vms-cart-summary,
	.vms-checkout-card,
	.vms-checkout-summary,
	.vms-account-content,
	.vms-account-form,
	.vms-address-card,
	.vms-account-welcome {
		padding: 22px;
	}

	.vms-account-nav ul {
		grid-template-columns: 1fr;
	}

	.vms-checkout-card__head h2,
	.vms-cart-summary h2,
	.vms-checkout-summary h2,
	.vms-account-section__head h2,
	.vms-account-welcome h2 {
		font-size: 30px;
	}

	.vms-order-trust__item {
		grid-template-columns: 28px 1fr;
	}

	.vms-single-reviews #comments,
	.vms-single-reviews #review_form_wrapper {
		padding: 24px 18px;
	}

	.vms-single-reviews .comment_container {
		grid-template-columns: 1fr;
	}

	.vms-newsletter-form {
		display: grid;
		gap: 10px;
	}

	.vms-newsletter-form input,
	.vms-newsletter-form button {
		width: 100%;
		border-radius: 6px;
	}
}

@media (max-width: 360px) {
	.vms-container,
	.vms-wrap,
	.vms-header-inner {
		width: min(100% - 24px, var(--vms-container));
	}

	.vms-header-inner {
		grid-template-columns: 38px minmax(0, 1fr) auto;
		gap: 6px;
	}

	.vms-icon-button {
		width: 38px;
		height: 38px;
	}

	.vms-brand-logo {
		max-width: 104px;
		max-height: 38px;
	}

	.vms-cart-link {
		min-height: 38px;
		padding: 8px 10px;
	}

	.vms-hero__inner h1 {
		font-size: 42px;
	}

	.vms-product-card__bottom {
		align-items: flex-start;
		flex-direction: column;
	}

	.vms-card-action {
		justify-content: flex-start;
	}

	.vms-single-gallery__main {
		aspect-ratio: 1 / 1.18;
	}

	.vms-gallery-zoom-label {
		display: none;
	}

	.vms-sticky-atc {
		right: 10px;
		bottom: 10px;
		left: 10px;
		padding: 10px;
	}

	.vms-sticky-atc strong {
		max-width: 150px;
	}

	.vms-sticky-atc button {
		padding: 11px 12px;
	}
}

/* Secondary-page density system: compact task and reading pages without changing the homepage rhythm. */
.vms-page-hero {
	padding: 64px 0 58px;
}

.vms-page-hero--about,
.vms-page-hero--contact,
.vms-page-hero--faq,
.vms-page-hero--policy,
.vms-page-hero--default {
	padding: 60px 0 54px;
}

.vms-page-hero .vms-section-label,
.vms-commerce__hero .vms-section-label,
.vms-shop-hero .vms-section-label {
	margin-bottom: 10px;
}

.vms-page-hero .vms-section-title {
	margin-top: 0;
}

.vms-content {
	padding: 50px 0 66px;
}

.vms-content--about,
.vms-content--contact,
.vms-content--faq {
	padding-top: 48px;
}

.vms-content--policy {
	padding: 44px 0 72px;
}

.vms-content--about article,
.vms-content--contact article,
.vms-content--faq article {
	max-width: 780px;
}

.vms-page-article {
	padding: clamp(26px, 3.5vw, 42px);
}

.vms-page-support {
	margin-top: 24px;
}

.vms-contact-cards {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.vms-page-support-card {
	padding: 18px;
}

.vms-shop-hero__inner {
	min-height: 214px;
	padding: 44px 0 32px;
}

.vms-shop-hero h1 {
	font-size: clamp(42px, 5vw, 64px);
}

.vms-shop-hero p,
.vms-shop-hero__description {
	font-size: 14.5px;
	line-height: 1.64;
}

.vms-shop-hero__support {
	margin-top: 16px;
}

.vms-shop-shell {
	padding: clamp(36px, 5vw, 58px) 0;
}

.vms-category-editorial {
	margin-bottom: 28px;
	padding: clamp(24px, 3.2vw, 34px);
}

.vms-subcategory-strip {
	margin-bottom: 28px;
}

.vms-shop-toolbar {
	margin-bottom: 22px;
}

.vms-commerce {
	padding: clamp(34px, 5vw, 60px) 0 clamp(56px, 7vw, 84px);
}

.vms-checkout-page {
	padding-top: 0;
}

.vms-commerce__hero {
	margin-bottom: clamp(24px, 3.8vw, 42px);
}

.vms-commerce__hero h1,
.vms-commerce__hero h2 {
	margin: 8px auto 12px;
	font-size: clamp(38px, 4.6vw, 64px);
	line-height: 1.02;
}

.vms-commerce__hero p {
	font-size: 14.5px;
	line-height: 1.65;
}

.vms-cart-layout,
.vms-checkout-layout,
.vms-account-layout,
.vms-account-guest-shell {
	width: min(100% - 48px, var(--vms-container));
	margin: 0 auto;
}

.vms-cart-layout {
	gap: clamp(24px, 3.4vw, 40px);
}

.vms-checkout-layout {
	gap: clamp(24px, 4vw, 46px);
}

.vms-cart-summary,
.vms-checkout-summary {
	top: 118px;
}

.vms-account-page--guest .vms-commerce__hero {
	max-width: 720px;
}

.vms-account-guest-shell {
	max-width: 1180px;
}

.vms-account-content--guest,
.vms-account-content--guest .woocommerce {
	float: none;
	width: 100%;
	max-width: none;
}

.vms-account-content--guest {
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
}

.vms-account-content--guest #customer_login,
.vms-account-content--guest .u-columns,
.vms-account-content--guest .woocommerce .col2-set {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(22px, 3vw, 34px);
	align-items: start;
	width: 100%;
	margin: 0;
}

.vms-account-content--guest .woocommerce .col2-set::before,
.vms-account-content--guest .woocommerce .col2-set::after {
	display: none;
	content: none;
}

.vms-account-content--guest .u-column1,
.vms-account-content--guest .u-column2,
.vms-account-content--guest .col-1,
.vms-account-content--guest .col-2,
.vms-account-content--guest .woocommerce .col2-set .col-1,
.vms-account-content--guest .woocommerce .col2-set .col-2,
.vms-account-content--guest form.login,
.vms-account-content--guest form.register {
	float: none;
	width: auto;
	max-width: none;
	min-width: 0;
	box-sizing: border-box;
}

.vms-account-content--guest .u-column1,
.vms-account-content--guest .u-column2 {
	padding: clamp(26px, 3.4vw, 38px);
	border: 1px solid rgba(200, 168, 130, 0.26);
	border-radius: 4px;
	background: rgba(255, 250, 245, 0.86);
	box-shadow: 0 16px 42px rgba(44, 44, 44, 0.06);
}

.vms-account-content--guest h2 {
	margin: 0 0 20px;
	color: var(--vms-charcoal);
	font-family: var(--vms-font-serif);
	font-size: clamp(30px, 3vw, 42px);
	font-weight: 400;
	line-height: 1.08;
}

.vms-account-content--guest form {
	width: 100%;
	margin: 0;
}

.vms-account-content--guest form.login,
.vms-account-content--guest form.register,
.vms-account-content--guest .woocommerce form.login,
.vms-account-content--guest .woocommerce form.register {
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
	border: 0;
}

.vms-account-content--guest label {
	display: block;
	margin-bottom: 7px;
	color: var(--vms-charcoal);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
}

.vms-account-content--guest input.input-text,
.vms-account-content--guest input[type="text"],
.vms-account-content--guest input[type="email"],
.vms-account-content--guest input[type="password"] {
	width: 100%;
	min-height: 48px;
	border: 1px solid var(--vms-beige-light);
	border-radius: 4px;
	background: #fff;
	color: var(--vms-charcoal);
	padding: 12px 14px;
}

.vms-account-content--guest .woocommerce-form-row,
.vms-account-content--guest .form-row {
	margin-bottom: 18px;
}

.vms-account-content--guest .woocommerce-form-login__rememberme {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-right: 14px;
}

.vms-account-content--guest .woocommerce-LostPassword {
	margin: 14px 0 0;
	font-size: 13px;
}

.vms-account-content--guest .woocommerce-privacy-policy-text {
	color: var(--vms-muted);
	font-size: 13px;
	line-height: 1.62;
}

.vms-account-page--member .vms-commerce__hero {
	max-width: 780px;
}

.vms-404 {
	min-height: auto;
	padding: 58px 0 72px;
}

.vms-404__number {
	font-size: clamp(92px, 14vw, 150px);
}

.vms-404__links {
	margin-top: 30px;
}

.vms-footer-main {
	padding: 54px 0 30px;
}

.vms-footer-grid {
	gap: clamp(24px, 4vw, 48px);
}

.vms-footer-bottom {
	margin-top: 38px;
	padding-top: 22px;
}

@media (max-width: 800px) {
	.vms-page-hero,
	.vms-page-hero--about,
	.vms-page-hero--contact,
	.vms-page-hero--faq,
	.vms-page-hero--policy,
	.vms-page-hero--default {
		padding: 42px 0 36px;
	}

	.vms-content,
	.vms-content--about,
	.vms-content--contact,
	.vms-content--faq,
	.vms-content--policy {
		padding: 30px 0 48px;
	}

	.vms-page-article {
		padding: 24px 18px;
	}

	.vms-shop-hero__inner {
		min-height: auto;
		padding: 34px 0 28px;
	}

	.vms-shop-hero h1 {
		font-size: 38px;
	}

	.vms-shop-shell {
		padding: 30px 0 46px;
	}

	.vms-commerce {
		padding: 30px 0 52px;
	}

	.vms-commerce__hero {
		width: min(100% - 32px, 720px);
		margin-bottom: 24px;
	}

	.vms-commerce__hero h1,
	.vms-commerce__hero h2 {
		font-size: 38px;
	}

	.vms-cart-layout,
	.vms-checkout-layout,
	.vms-account-layout,
	.vms-account-guest-shell {
		width: min(100% - 32px, var(--vms-container));
	}

	.vms-account-content--guest #customer_login,
	.vms-account-content--guest .u-columns,
	.vms-account-content--guest .woocommerce .col2-set {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.vms-account-content--guest .u-column1,
	.vms-account-content--guest .u-column2 {
		padding: 24px 18px;
	}

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

	.vms-404 {
		padding: 42px 0 56px;
	}

	.vms-404__links {
		grid-template-columns: 1fr;
	}

	.vms-footer-main {
		padding: 44px 0 26px;
	}
}

@media (max-width: 430px) {
	.vms-page-hero,
	.vms-page-hero--about,
	.vms-page-hero--contact,
	.vms-page-hero--faq,
	.vms-page-hero--policy,
	.vms-page-hero--default {
		padding: 34px 0 30px;
	}

	.vms-content,
	.vms-content--about,
	.vms-content--contact,
	.vms-content--faq,
	.vms-content--policy {
		padding: 24px 0 42px;
	}

	.vms-shop-hero__inner {
		padding: 28px 0 24px;
	}

	.vms-commerce {
		padding: 26px 0 46px;
	}

	.vms-commerce__hero h1,
	.vms-commerce__hero h2,
	.vms-shop-hero h1 {
		font-size: 34px;
	}

	.vms-commerce__hero p,
	.vms-shop-hero p,
	.vms-shop-hero__description {
		font-size: 14px;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
	}
}
