/* =========================================================================
   Catalogue, product page, cart, checkout, account
   ========================================================================= */

.vm-main { display: block; min-height: 40vh; }
.vm-main--home { padding: 0; }

.vm-page { padding-block: clamp(28px, 4vw, 56px) clamp(48px, 7vw, 90px); }
.vm-page--narrow { max-width: 820px; }
.vm-page__head { margin-bottom: 32px; }
.vm-page__title {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: clamp(28px, 5vw, 46px);
	line-height: 1.08;
}
.vm-page__date { display: block; margin-top: 10px; font-size: 13px; color: var(--muted); }
.vm-page__hero { border-radius: var(--r-lg); overflow: hidden; margin-bottom: 32px; }

.vm-postgrid { display: grid; gap: 28px; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
.vm-postcard__media { display: block; border-radius: var(--r-md); overflow: hidden; margin-bottom: 14px; background: var(--sand); }
.vm-postcard__body time { font-size: 12px; color: var(--muted-2); }
.vm-postcard__body h2 { font-size: 19px; margin: 6px 0 8px; }
.vm-postcard__body p { color: var(--muted); font-size: 14.5px; }

/* ---------- archive header ---------- */

.vm-archive-head {
	background: var(--paper);
	border-bottom: 1px solid var(--line);
	padding-block: clamp(22px, 3vw, 34px) clamp(24px, 3.4vw, 38px);
}
.vm-archive-head__title {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: clamp(28px, 5vw, 48px);
	line-height: 1.05;
}
.vm-archive-head__desc { color: var(--muted); font-size: 15px; margin-top: 10px; max-width: 62ch; }
.vm-archive-head__count { font-size: 13px; color: var(--muted-2); margin-top: 12px; }

/* ---------- shop layout ---------- */

.vm-shop {
	display: grid;
	gap: clamp(24px, 3vw, 44px);
	padding-block: clamp(24px, 3.4vw, 44px) clamp(56px, 8vw, 100px);
}
@media (min-width: 1024px) { .vm-shop { grid-template-columns: 252px 1fr; } }

.vm-shop__main { min-width: 0; }

/* ---------- filters ---------- */

.vm-filters {
	position: fixed;
	top: 0; bottom: 0; left: 0;
	z-index: 100;
	width: min(360px, 92vw);
	background: var(--paper);
	display: flex;
	flex-direction: column;
	transform: translateX(-101%);
	transition: transform var(--t);
	box-shadow: var(--sh-3);
}
.vm-filters.is-open { transform: none; }

.vm-filters__head {
	display: flex; align-items: center; justify-content: space-between;
	padding: 18px 20px;
	border-bottom: 1px solid var(--line);
}
.vm-filters__head h2 { font-size: 17px; }
.vm-filters__body { flex: 1; overflow-y: auto; padding: 20px; }
.vm-filters__foot { padding: 16px 20px calc(16px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); }

@media (min-width: 1024px) {
	.vm-filters {
		position: sticky;
		top: calc(var(--header-h) + 20px);
		align-self: start;
		max-height: calc(100vh - var(--header-h) - 40px);
		width: auto;
		transform: none;
		box-shadow: none;
		background: transparent;
		border-radius: 0;
	}
	.vm-filters__head, .vm-filters__foot { display: none; }
	.vm-filters__body { padding: 0; }
}

.vm-fgroup { padding-bottom: 22px; margin-bottom: 22px; border-bottom: 1px solid var(--line); }
.vm-fgroup:last-of-type { border-bottom: 0; }
.vm-fgroup__title {
	font-size: 11px;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--muted-2);
	font-weight: 600;
	margin-bottom: 12px;
}
.vm-fgroup__list { display: grid; gap: 2px; }
.vm-fgroup__list li.is-hidden { display: none; }
.vm-fgroup__more {
	margin-top: 10px;
	font-size: 13px;
	font-weight: 600;
	color: var(--gold);
	border-bottom: 1px solid currentColor;
}

.vm-check {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 7px 8px;
	margin-inline: -8px;
	border-radius: var(--r-sm);
	font-size: 14.5px;
	color: var(--ink-2);
	transition: background var(--t-fast);
}
.vm-check:hover { background: var(--sand); }
.vm-check__box {
	flex: none;
	width: 19px; height: 19px;
	border: 1.5px solid var(--line-2);
	border-radius: 5px;
	display: grid;
	place-items: center;
	color: transparent;
	transition: all var(--t-fast);
}
.vm-check.is-on .vm-check__box { background: var(--ink); border-color: var(--ink); color: #fff; }
.vm-check__label { flex: 1; }
.vm-check__count { font-size: 12px; color: var(--muted-2); }
.vm-check.is-on { color: var(--ink); font-weight: 500; }

.vm-switch { display: flex; align-items: center; gap: 11px; padding: 4px 0; }
.vm-switch__track {
	width: 40px; height: 23px;
	border-radius: var(--r-pill);
	background: var(--sand-2);
	position: relative;
	transition: background var(--t-fast);
	flex: none;
}
.vm-switch__knob {
	position: absolute;
	top: 3px; left: 3px;
	width: 17px; height: 17px;
	border-radius: 50%;
	background: #fff;
	box-shadow: var(--sh-1);
	transition: transform var(--t);
}
.vm-switch.is-on .vm-switch__track { background: var(--sale); }
.vm-switch.is-on .vm-switch__knob { transform: translateX(17px); }
.vm-switch__label { font-size: 14.5px; font-weight: 500; }

.vm-pricefilter__inputs { display: flex; align-items: flex-end; gap: 8px; margin-bottom: 12px; }
.vm-pricefilter__inputs label { flex: 1; display: grid; gap: 4px; }
.vm-pricefilter__inputs label span { font-size: 11.5px; color: var(--muted-2); }
.vm-pricefilter__inputs input { padding: 10px 12px; font-size: 14px; }
.vm-pricefilter__dash { padding-bottom: 12px; color: var(--muted-2); }

.vm-filters__reset {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13.5px;
	color: var(--sale);
	margin-bottom: 22px;
}

.vm-filters__promise {
	display: grid;
	gap: 9px;
	padding: 16px;
	border-radius: var(--r-md);
	background: var(--sand);
}
.vm-filters__promise p { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--ink-2); }
.vm-filters__promise .vm-icon { color: var(--gold); }

/* ---------- toolbar ---------- */

.vm-toolbar {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 22px;
	padding-bottom: 18px;
	border-bottom: 1px solid var(--line);
}
.vm-toolbar__filter { position: relative; }
@media (min-width: 1024px) { .vm-toolbar__filter { display: none; } }
.vm-toolbar__dot {
	width: 7px; height: 7px;
	border-radius: 50%;
	background: var(--sale);
}
.vm-toolbar__sort { margin-left: auto; }
.vm-toolbar__sort form { margin: 0; }
.vm-toolbar__sort select {
	padding: 10px 38px 10px 14px;
	font-size: 13.5px;
	border-radius: var(--r-pill);
	background-color: var(--paper);
	width: auto;
	min-width: 190px;
}
.vm-toolbar .vm-chips { flex: 1 1 100%; order: 3; }
@media (min-width: 1024px) { .vm-toolbar .vm-chips { order: 0; flex: 1 1 auto; } }

.vm-loadmore { margin-top: 44px; text-align: center; }
.vm-loadmore .vm-btn { min-width: 220px; }

/* ---------- product page ---------- */

.vm-pdp__top { padding-top: 20px; }

.vm-pdp__grid {
	display: grid;
	gap: clamp(28px, 4vw, 60px);
	padding-block: 8px clamp(44px, 6vw, 76px);
}
@media (min-width: 900px) { .vm-pdp__grid { grid-template-columns: 1.08fr .92fr; } }

.vm-gallery { display: grid; gap: 12px; }
@media (min-width: 900px) {
	.vm-pdp__gallery { position: sticky; top: calc(var(--header-h) + 20px); align-self: start; }
}

.vm-gallery__stage {
	position: relative;
	border-radius: var(--r-lg);
	overflow: hidden;
	background: var(--sand);
	aspect-ratio: 1;
}
.vm-gallery__badge { position: absolute; top: 16px; left: 16px; z-index: 2; height: 30px; font-size: 13px; }
.vm-gallery__slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity var(--t);
	pointer-events: none;
}
.vm-gallery__slide.is-active { opacity: 1; pointer-events: auto; }
.vm-gallery__img { width: 100%; height: 100%; object-fit: cover; }
@media (hover: hover) and (min-width: 900px) {
	.vm-gallery__stage { cursor: zoom-in; }
	.vm-gallery__img { transition: transform .35s var(--ease); }
	.vm-gallery__stage.is-zoomed .vm-gallery__img { transform: scale(1.9); }
}

.vm-gallery__thumbs { display: flex; gap: 10px; flex-wrap: wrap; }
.vm-gallery__thumb {
	width: 74px; height: 74px;
	border-radius: var(--r-sm);
	overflow: hidden;
	border: 2px solid transparent;
	background: var(--sand);
	transition: border-color var(--t-fast);
}
.vm-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.vm-gallery__thumb.is-active { border-color: var(--ink); }

.vm-pdp__brand {
	display: inline-block;
	font-size: 11.5px;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--gold);
	font-weight: 700;
	margin-bottom: 10px;
}
.vm-pdp__brand:hover { text-decoration: underline; text-underline-offset: 4px; }

.vm-pdp__title {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: clamp(26px, 3.6vw, 40px);
	line-height: 1.1;
	letter-spacing: -.02em;
}
.vm-pdp__sku { font-size: 12.5px; color: var(--muted-2); margin-top: 10px; }
.vm-pdp__sku span { color: var(--muted); }

.vm-pdp__pricebox {
	margin: 22px 0;
	padding: 18px 20px;
	border-radius: var(--r-md);
	background: var(--paper);
	border: 1px solid var(--line);
}
.vm-pdp__pricerow { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.vm-pdp__price { font-size: clamp(26px, 3.6vw, 34px); font-weight: 700; letter-spacing: -.02em; }
.vm-pdp__pricerow .vm-price-old { font-size: 17px; }
.vm-pdp__save {
	display: flex;
	align-items: flex-start;
	gap: 7px;
	margin-top: 8px;
	font-size: 13.5px;
	color: var(--green);
	font-weight: 500;
}
.vm-pdp__save .vm-icon { color: var(--gold); margin-top: 2px; }

.vm-pdp__short { color: var(--muted); font-size: 15.5px; line-height: 1.7; }
.vm-pdp__short p + p { margin-top: .8em; }

.vm-pdp__stock {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 18px 0;
	font-size: 13.5px;
	font-weight: 500;
	color: var(--green);
}
.vm-pdp__stock.is-out { color: var(--muted); }
.vm-dot {
	width: 8px; height: 8px;
	border-radius: 50%;
	background: currentColor;
	box-shadow: 0 0 0 4px rgba(44, 107, 79, .14);
}
.vm-pdp__stock.is-out .vm-dot { box-shadow: 0 0 0 4px rgba(123, 114, 106, .14); }

.vm-atc { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-bottom: 26px; }
.vm-atc .single_add_to_cart_button { flex: 1 1 200px; }
.woocommerce div.product form.cart .quantity { float: none; margin: 0; }

.vm-pdp__trust {
	display: grid;
	gap: 14px;
	padding: 20px;
	border-radius: var(--r-md);
	background: var(--sand);
	margin-bottom: 26px;
}
.vm-pdp__trust li { display: flex; gap: 12px; align-items: flex-start; }
.vm-pdp__trust .vm-icon { color: var(--gold); margin-top: 2px; }
.vm-pdp__trust strong { display: block; font-size: 14px; font-weight: 600; }
.vm-pdp__trust em { display: block; font-style: normal; font-size: 13px; color: var(--muted); line-height: 1.5; }

.woocommerce div.product .stock,
.woocommerce div.product p.stock { display: none; }

/* assurance band */

.vm-assure { background: var(--paper); border-block: 1px solid var(--line); padding-block: clamp(36px, 5vw, 62px); }
.vm-assure__inner { display: grid; gap: 30px; align-items: center; }
@media (min-width: 860px) { .vm-assure__inner { grid-template-columns: 1fr 1fr; gap: 56px; } }
.vm-assure__title { font-family: var(--font-display); font-weight: 400; font-size: clamp(24px, 3.4vw, 34px); line-height: 1.12; margin-bottom: 12px; }
.vm-assure__copy p { color: var(--muted); font-size: 15.5px; line-height: 1.7; }
.vm-assure__list { display: grid; gap: 12px; }
@media (min-width: 520px) { .vm-assure__list { grid-template-columns: repeat(2, 1fr); } }
.vm-assure__list li {
	display: flex;
	align-items: center;
	gap: 11px;
	padding: 15px 16px;
	border-radius: var(--r-md);
	background: var(--canvas);
	border: 1px solid var(--line);
	font-size: 14px;
	font-weight: 500;
}
.vm-assure__list .vm-icon { color: var(--gold); flex: none; }

/* sticky add-to-cart */

.vm-stickybar {
	position: fixed;
	left: 0; right: 0; bottom: 0;
	z-index: 88;
	background: rgba(255, 255, 255, .93);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-top: 1px solid var(--line);
	transform: translateY(105%);
	transition: transform var(--t);
	padding-bottom: env(safe-area-inset-bottom);
}
.vm-stickybar.is-on { transform: none; }
.vm-stickybar__inner { display: flex; align-items: center; gap: 14px; padding-block: 11px; }
.vm-stickybar__media { width: 48px; flex: none; border-radius: var(--r-xs); overflow: hidden; background: var(--sand); }
.vm-stickybar__media img { aspect-ratio: 1; object-fit: cover; }
.vm-stickybar__info { min-width: 0; flex: 1; }
.vm-stickybar__title { font-size: 13.5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.vm-stickybar__price { display: flex; gap: 8px; align-items: baseline; font-size: 15px; font-weight: 700; }
.vm-stickybar__price del { font-size: 12.5px; color: var(--muted-2); text-decoration: line-through; font-weight: 400; }
.vm-stickybar__cta { flex: none; }
@media (max-width: 560px) {
	.vm-stickybar__media { display: none; }
	.vm-stickybar__cta { padding-inline: 20px; }
}

.vm-related { background: var(--canvas); }

/* ---------- cart page ---------- */

.vm-cartpage { padding-block: clamp(28px, 4vw, 48px) clamp(56px, 8vw, 100px); }
.vm-cartpage__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
	margin-bottom: 28px;
}
.vm-cartpage__head h1 { font-family: var(--font-display); font-weight: 400; font-size: clamp(28px, 4.6vw, 42px); }

.vm-cartpage__grid { display: grid; gap: clamp(24px, 3vw, 44px); }
@media (min-width: 900px) { .vm-cartpage__grid { grid-template-columns: 1fr 360px; align-items: start; } }

.vm-cartitems { display: grid; gap: 18px; }
.vm-cartitem {
	display: grid;
	grid-template-columns: 96px 1fr auto;
	gap: 16px;
	padding: 16px;
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--r-md);
}
.vm-cartitem__media { border-radius: var(--r-sm); overflow: hidden; background: var(--sand); }
.vm-cartitem__media img { aspect-ratio: 1; object-fit: cover; }
.vm-cartitem__brand { font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.vm-cartitem__title { display: block; font-size: 15px; font-weight: 500; line-height: 1.35; margin: 3px 0 4px; }
.vm-cartitem__unit { font-size: 12.5px; color: var(--muted); }
.vm-cartitem__controls { display: flex; align-items: center; gap: 16px; margin-top: 12px; flex-wrap: wrap; }
.vm-cartitem__remove { display: inline-flex; align-items: center; gap: 5px; font-size: 13px; color: var(--muted); }
.vm-cartitem__remove:hover { color: var(--sale); }
.vm-cartitem__total { font-size: 16px; font-weight: 700; white-space: nowrap; }
@media (max-width: 560px) {
	.vm-cartitem { grid-template-columns: 76px 1fr; }
	.vm-cartitem__total { grid-column: 2; }
}

.vm-cartpage__actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	align-items: center;
	margin-top: 22px;
}
.vm-coupon { display: flex; gap: 8px; flex: 1 1 280px; }
.vm-coupon input { flex: 1; }

.vm-summary {
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	padding: 24px;
	position: sticky;
	top: calc(var(--header-h) + 20px);
}
.vm-summary__title { font-size: 18px; margin-bottom: 18px; }
.vm-summary__trust { display: grid; gap: 9px; margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); }
.vm-summary__trust li { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--muted); }
.vm-summary__trust .vm-icon { color: var(--gold); }

.vm-totals__row {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	padding: 9px 0;
	font-size: 14.5px;
	color: var(--muted);
}
.vm-totals__row strong { color: var(--ink); font-weight: 600; }
.vm-totals__row--discount strong { color: var(--green); }
.vm-totals__row--grand {
	border-top: 1px solid var(--line);
	margin-top: 8px;
	padding-top: 16px;
	font-size: 16px;
	color: var(--ink);
}
.vm-totals__row--grand strong { font-size: 22px; }
.vm-totals .woocommerce-shipping-totals { display: block; padding: 9px 0; font-size: 14.5px; }
.vm-totals .woocommerce-shipping-totals th { display: block; color: var(--muted); font-weight: 400; text-align: left; padding-bottom: 6px; }
.vm-totals ul#shipping_method { display: grid; gap: 8px; }
.vm-totals ul#shipping_method li { display: flex; align-items: center; gap: 9px; font-size: 14px; }
.vm-totals ul#shipping_method label { display: flex; gap: 8px; align-items: baseline; cursor: pointer; }
.vm-totals .woocommerce-shipping-destination { font-size: 12.5px; color: var(--muted-2); margin-top: 8px; }
.wc-proceed-to-checkout { margin-top: 20px; }
.vm-totals__note { font-size: 12.5px; color: var(--muted); text-align: center; margin-top: 10px; }

/* ---------- checkout ---------- */

.vm-checkout { padding-block: clamp(28px, 4vw, 48px) clamp(56px, 8vw, 100px); }
.vm-checkout__head { margin-bottom: 30px; }
.vm-checkout__head h1 { font-family: var(--font-display); font-weight: 400; font-size: clamp(26px, 4.2vw, 40px); }

.vm-steps-mini { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; font-size: 13px; color: var(--muted-2); }
.vm-steps-mini li { display: flex; align-items: center; gap: 8px; }
.vm-steps-mini li + li::before { content: ""; width: 18px; height: 1px; background: var(--line-2); }
.vm-steps-mini .is-done { color: var(--green); }
.vm-steps-mini .is-current { color: var(--ink); font-weight: 600; }

.vm-checkout__grid { display: grid; gap: clamp(24px, 3vw, 44px); }
@media (min-width: 960px) { .vm-checkout__grid { grid-template-columns: 1fr 400px; align-items: start; } }

.vm-panelbox {
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	padding: clamp(20px, 3vw, 30px);
	margin-bottom: 20px;
}
.vm-panelbox__title { display: flex; align-items: center; gap: 12px; font-size: 18px; margin-bottom: 22px; }
.vm-panelbox__title span {
	width: 27px; height: 27px;
	display: grid; place-items: center;
	border-radius: 50%;
	background: var(--ink);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
}

.woocommerce form .form-row-first, .woocommerce form .form-row-last { width: 100%; float: none; }
@media (min-width: 560px) {
	.woocommerce-billing-fields__field-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
	.woocommerce-billing-fields__field-wrapper .form-row-wide { grid-column: 1 / -1; }
	/* Phone and email are short enough to share a row. */
	.woocommerce-billing-fields__field-wrapper #billing_phone_field,
	.woocommerce-billing-fields__field-wrapper #billing_email_field { grid-column: auto; }
}
.woocommerce form .form-row.vm-field-hidden { display: none !important; }

.woocommerce-billing-fields h3, .woocommerce-additional-fields h3 { font-size: 15px; margin: 8px 0 16px; }
.woocommerce-additional-fields { margin-top: 8px; }

.vm-summary--checkout { padding: 0; overflow: hidden; }
.vm-summary--checkout .vm-summary__title { padding: 22px 24px 0; margin-bottom: 16px; }
.vm-review { display: grid; gap: 14px; padding: 0 24px 18px; max-height: 340px; overflow-y: auto; }
.vm-review__item { display: grid; grid-template-columns: 56px 1fr auto; gap: 12px; align-items: center; }
.vm-review__media { position: relative; border-radius: var(--r-xs); overflow: hidden; background: var(--sand); }
.vm-review__media img { aspect-ratio: 1; object-fit: cover; }
.vm-review__media em {
	position: absolute;
	top: -6px; right: -6px;
	min-width: 20px; height: 20px;
	display: grid; place-items: center;
	border-radius: 50%;
	background: var(--ink);
	color: #fff;
	font-size: 11px;
	font-style: normal;
	font-weight: 700;
	border: 2px solid var(--paper);
}
.vm-review__name { font-size: 13.5px; line-height: 1.35; display: block; }
.vm-review__price { font-size: 14px; font-weight: 600; white-space: nowrap; }

.vm-totals--checkout { padding: 18px 24px; border-top: 1px solid var(--line); background: var(--canvas); }

.vm-payment { padding: 20px 24px 24px; border-top: 1px solid var(--line); }
.vm-payment__title { font-size: 15px; margin-bottom: 14px; }
.vm-payment__methods { display: grid; gap: 10px; margin-bottom: 18px; }
.vm-payment__methods li {
	border: 1px solid var(--line-2);
	border-radius: var(--r-md);
	padding: 14px 16px;
	transition: border-color var(--t-fast), background var(--t-fast);
}
.vm-payment__methods li input[type="radio"] { margin-right: 9px; accent-color: var(--ink); }
.vm-payment__methods li label { font-size: 14.5px; font-weight: 500; cursor: pointer; }
.vm-payment__methods li:has(input:checked) { border-color: var(--ink); background: var(--sand); }
.vm-payment__methods .payment_box { font-size: 13px; color: var(--muted); margin-top: 10px; line-height: 1.6; }
.vm-payment__methods .payment_box p { margin: 0; }
.vm-payment__note {
	display: flex;
	gap: 8px;
	align-items: flex-start;
	font-size: 12.5px;
	color: var(--muted);
	margin-top: 14px;
	line-height: 1.55;
}
.vm-payment__note .vm-icon { color: var(--green); flex: none; margin-top: 1px; }

.woocommerce-terms-and-conditions-wrapper { font-size: 13px; color: var(--muted); margin-bottom: 14px; }

/* ---------- notices ---------- */

.woocommerce-message, .woocommerce-info, .woocommerce-error, .woocommerce-notices-wrapper > ul {
	list-style: none;
	margin: 0 auto 20px;
	max-width: var(--wrap);
	padding: 14px 18px;
	border-radius: var(--r-md);
	font-size: 14.5px;
	border: 1px solid var(--line);
	background: var(--paper);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
}
.woocommerce-message { border-color: #cfe6da; background: #f1f8f4; }
.woocommerce-error { border-color: #f0cfcd; background: var(--sale-wash); color: #7d1a17; flex-direction: column; align-items: flex-start; }
.woocommerce-error li { list-style: none; }
.woocommerce-message .button, .woocommerce-info .button {
	margin-left: auto;
	display: inline-flex;
	align-items: center;
	padding: 9px 16px;
	border-radius: var(--r-pill);
	background: var(--ink);
	color: #fff;
	font-size: 13.5px;
	font-weight: 600;
}
.woocommerce-notices-wrapper { padding-inline: var(--gut); padding-top: 20px; }

/* ---------- thank you ---------- */

.vm-thanks { padding-block: clamp(40px, 6vw, 80px) clamp(56px, 8vw, 100px); }
.vm-thanks__card {
	max-width: 660px;
	margin-inline: auto;
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--r-xl);
	padding: clamp(28px, 5vw, 52px);
	text-align: center;
}
.vm-thanks__tick {
	display: grid; place-items: center;
	width: 72px; height: 72px;
	margin: 0 auto 22px;
	border-radius: 50%;
	background: #eef6f1;
	color: var(--green);
}
.vm-thanks__card h1 { font-family: var(--font-display); font-weight: 400; font-size: clamp(24px, 4vw, 34px); line-height: 1.15; }
.vm-thanks__lead { color: var(--muted); margin-top: 12px; }
.vm-thanks__meta {
	display: grid;
	gap: 1px;
	background: var(--line);
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	overflow: hidden;
	margin: 28px 0;
	text-align: left;
}
@media (min-width: 560px) { .vm-thanks__meta { grid-template-columns: repeat(2, 1fr); } }
.vm-thanks__meta li { background: var(--paper); padding: 14px 16px; }
.vm-thanks__meta span { display: block; font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-2); }
.vm-thanks__meta strong { font-size: 15px; }
.vm-thanks__next { text-align: left; margin-bottom: 28px; }
.vm-thanks__next h2 { font-size: 16px; margin-bottom: 12px; }
.vm-thanks__next ol { list-style: decimal; padding-left: 1.2em; color: var(--muted); font-size: 14.5px; display: grid; gap: 7px; }

/* ---------- account ---------- */

.woocommerce-account .woocommerce { max-width: var(--wrap); margin-inline: auto; padding: clamp(28px, 4vw, 56px) var(--gut) clamp(56px, 8vw, 96px); }
.woocommerce-account .woocommerce-MyAccount-navigation ul { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.woocommerce-account .woocommerce-MyAccount-navigation li a {
	display: inline-flex;
	padding: 9px 16px;
	border-radius: var(--r-pill);
	background: var(--sand);
	font-size: 14px;
}
.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a { background: var(--ink); color: #fff; }
.woocommerce-account .woocommerce > h2 {
	text-align: center;
	font-family: var(--font-display);
	font-weight: 400;
	font-size: clamp(24px, 4vw, 34px);
	margin-bottom: 22px;
}
.woocommerce-account .u-columns { display: grid; gap: 20px; }
.woocommerce-account .woocommerce-form-login,
.woocommerce-account .woocommerce-form-register {
	max-width: 460px;
	margin-inline: auto;
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	padding: 28px;
}
.woocommerce-account .woocommerce-form-login .button,
.woocommerce-account .woocommerce-form-register .button,
.woocommerce .button:not(.vm-btn) {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 13px 24px;
	border-radius: var(--r-pill);
	background: var(--ink);
	color: #fff;
	font-size: 14.5px;
	font-weight: 600;
	border: 0;
	cursor: pointer;
}
.woocommerce table.shop_table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.woocommerce table.shop_table th, .woocommerce table.shop_table td { padding: 12px; border-bottom: 1px solid var(--line); text-align: left; }

/* Order details printed under the thank-you card and in the account area. */
.woocommerce-order-details,
.woocommerce-customer-details,
.woocommerce-order-downloads {
	max-width: 660px;
	margin: 32px auto 0;
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	padding: clamp(20px, 3vw, 30px);
}
.woocommerce-order-details h2,
.woocommerce-customer-details h2 { font-size: 17px; margin-bottom: 16px; }
.woocommerce-order-details table.shop_table { border: 0; }
.woocommerce-order-details table.shop_table tfoot th { font-weight: 500; color: var(--muted); }
.woocommerce-order-details table.shop_table tfoot td { font-weight: 600; }
.woocommerce-order-details table.shop_table tr:last-child th,
.woocommerce-order-details table.shop_table tr:last-child td { border-bottom: 0; }
.woocommerce-customer-details address {
	font-style: normal;
	line-height: 1.7;
	color: var(--ink-2);
	border: 0;
	padding: 0;
}
.woocommerce-order-overview,
.woocommerce-thankyou-order-details { display: none; }
.woocommerce-thankyou-order-received { display: none; }
