:root {
	--vma-accent: #0f766e;
	--vma-secondary: #b45309;
	--vma-ink: #17212b;
	--vma-muted: #687383;
	--vma-surface: #ffffff;
	--vma-bg: #f4f1ea;
	--vma-border: #d7d9d6;
	--vma-header-bg: #ffffff;
	--vma-content-width: 1480px;
	--vma-product-columns: 4;
	--vma-radius: 6px;
	--vma-shadow: 0 12px 30px rgba(23, 33, 43, 0.12);
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--vma-bg);
	color: var(--vma-ink);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.55;
	letter-spacing: 0;
}

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

a {
	color: var(--vma-accent);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

a:hover {
	color: var(--vma-secondary);
}

button,
.button,
input[type="submit"],
.wp-block-button__link,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 10px 16px;
	border: 1px solid var(--vma-accent);
	border-radius: var(--vma-radius);
	background: var(--vma-accent);
	color: #fff;
	font-weight: 700;
	text-decoration: none;
	cursor: pointer;
	transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

button:hover,
.button:hover,
input[type="submit"]:hover,
.wp-block-button__link:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
	background: var(--vma-ink);
	border-color: var(--vma-ink);
	color: #fff;
	transform: translateY(-1px);
}

input,
select,
textarea {
	width: 100%;
	border: 1px solid var(--vma-border);
	border-radius: var(--vma-radius);
	background: #fff;
	color: var(--vma-ink);
	font: inherit;
	padding: 11px 12px;
}

select {
	width: auto;
	min-width: 190px;
}

table {
	width: 100%;
	border-collapse: collapse;
}

th,
td {
	border-bottom: 1px solid var(--vma-border);
	padding: 12px;
	text-align: left;
	vertical-align: top;
}

.screen-reader-text,
.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;
}

.skip-link:focus {
	position: fixed;
	z-index: 10000;
	top: 12px;
	left: 12px;
	background: #fff;
	color: var(--vma-ink);
	padding: 10px 14px;
	border: 2px solid var(--vma-accent);
}

.vma-container {
	width: min(calc(100% - 40px), var(--vma-content-width));
	margin-inline: auto;
}

.vma-site-header {
	position: relative;
	z-index: 100;
	background: var(--vma-header-bg);
	border-bottom: 1px solid var(--vma-border);
}

.vma-sticky-header .vma-site-header {
	position: sticky;
	top: 0;
}

.vma-announcement {
	background: var(--vma-ink);
	color: #fff;
	font-size: 14px;
	padding: 7px 0;
}

.vma-header-main {
	background: var(--vma-header-bg);
}

.vma-header-grid {
	display: grid;
	grid-template-columns: minmax(180px, 280px) minmax(320px, 1fr) auto;
	gap: 22px;
	align-items: center;
	padding: 18px 0;
}

.vma-branding {
	min-width: 0;
}

.vma-branding img {
	display: block;
	max-height: 58px;
	width: auto;
}

.vma-site-title {
	color: var(--vma-ink);
	font-size: 25px;
	font-weight: 800;
	text-decoration: none;
}

.vma-nav-toggle {
	display: none;
	width: 42px;
	height: 42px;
	padding: 8px;
	gap: 4px;
	flex-direction: column;
	background: #fff;
	border-color: var(--vma-border);
}

.vma-nav-toggle span:not(.screen-reader-text) {
	display: block;
	width: 20px;
	height: 2px;
	background: var(--vma-ink);
}

.vma-header-search {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 8px;
}

.vma-search-form {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 8px;
	margin-bottom: 22px;
}

.vma-search-form label {
	margin: 0;
}

.vma-header-search input[type="search"] {
	min-height: 46px;
	border-color: color-mix(in srgb, var(--vma-border) 70%, var(--vma-accent));
}

.vma-live-search-panel {
	position: absolute;
	z-index: 120;
	top: calc(100% + 8px);
	left: 0;
	right: 0;
	display: none;
	max-height: 460px;
	overflow: auto;
	background: #fff;
	border: 1px solid var(--vma-border);
	border-radius: var(--vma-radius);
	box-shadow: var(--vma-shadow);
}

.vma-live-search-panel.is-open {
	display: block;
}

.vma-live-search-panel p {
	margin: 0;
	padding: 14px;
	color: var(--vma-muted);
}

.vma-live-search-panel ul {
	list-style: none;
	margin: 0;
	padding: 6px;
}

.vma-live-search-panel a {
	display: grid;
	grid-template-columns: 54px minmax(0, 1fr) auto;
	gap: 12px;
	align-items: center;
	padding: 8px;
	border-radius: var(--vma-radius);
	color: var(--vma-ink);
	text-decoration: none;
}

.vma-live-search-panel a:hover {
	background: var(--vma-bg);
}

.vma-live-search-panel img,
.vma-result-thumb {
	width: 54px;
	height: 54px;
	object-fit: cover;
	background: var(--vma-bg);
	border: 1px solid var(--vma-border);
}

.vma-live-search-panel b,
.vma-live-search-panel small,
.vma-live-search-panel em,
.vma-live-search-panel strong {
	display: block;
}

.vma-live-search-panel small,
.vma-live-search-panel em {
	color: var(--vma-muted);
	font-size: 12px;
	font-style: normal;
}

.vma-header-actions {
	display: flex;
	align-items: center;
	gap: 10px;
}

.vma-header-actions a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 42px;
	padding: 9px 12px;
	border: 1px solid var(--vma-border);
	border-radius: var(--vma-radius);
	color: var(--vma-ink);
	font-weight: 700;
	text-decoration: none;
	background: #fff;
	white-space: nowrap;
}

@media (min-width: 1025px) {
	.vma-header-actions .vma-cart-link {
		display: none;
	}
}

.vma-cart-link span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 23px;
	height: 23px;
	padding-inline: 6px;
	border-radius: 999px;
	background: var(--vma-secondary);
	color: #fff;
	font-size: 12px;
}

.vma-primary-nav {
	border-top: 1px solid var(--vma-border);
	background: #fff;
}

.vma-mega-nav {
	position: relative;
	z-index: 130;
	border-top: 0;
	background: #1f2121;
	color: #fff;
	box-shadow: 0 10px 24px rgba(23, 33, 43, 0.12);
}

.vma-mega-nav-bar {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	gap: 22px;
	min-height: 62px;
}

.vma-mega-menu {
	display: flex;
	align-items: stretch;
	gap: 3px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.vma-mega-item,
.vma-mega-simple {
	position: static;
	display: flex;
	align-items: stretch;
}

.vma-mega-trigger,
.vma-mega-simple > a {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 0 16px;
	color: rgba(255, 255, 255, 0.72);
	font-weight: 750;
	text-decoration: none;
	white-space: nowrap;
}

.vma-mega-trigger:hover,
.vma-mega-trigger:focus,
.vma-mega-simple > a:hover,
.vma-mega-simple > a:focus,
.vma-mega-item.is-active > .vma-mega-trigger {
	color: #fff;
}

.vma-mega-trigger::after,
.vma-mega-simple > a::after {
	content: "";
	position: absolute;
	right: 16px;
	bottom: 15px;
	left: 16px;
	height: 2px;
	background: var(--vma-secondary);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 160ms ease;
}

.vma-mega-trigger:hover::after,
.vma-mega-trigger:focus::after,
.vma-mega-simple > a:hover::after,
.vma-mega-simple > a:focus::after,
.vma-mega-item.is-active > .vma-mega-trigger::after {
	transform: scaleX(1);
}

.vma-mega-trigger > span {
	width: 7px;
	height: 7px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: rotate(45deg) translateY(-2px);
	transition: transform 160ms ease;
}

.vma-mega-item:hover .vma-mega-trigger > span,
.vma-mega-item:focus-within .vma-mega-trigger > span {
	transform: rotate(225deg) translateY(-1px);
}

.vma-mega-panel {
	position: absolute;
	top: 100%;
	right: 0;
	left: 0;
	display: block;
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
	transform: translateY(-8px);
	background: rgba(250, 250, 248, 0.98);
	border-bottom: 1px solid var(--vma-border);
	box-shadow: 0 28px 52px rgba(23, 33, 43, 0.18);
	backdrop-filter: blur(14px);
	transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.vma-mega-item:hover > .vma-mega-panel,
.vma-mega-item:focus-within > .vma-mega-panel {
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.vma-mega-catalog-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	padding-top: 20px;
	padding-bottom: 28px;
}

.vma-mega-card {
	position: relative;
	overflow: hidden;
	min-height: 190px;
	padding: 18px;
	background:
		linear-gradient(135deg, rgba(15, 118, 110, 0.07), transparent 46%),
		#fff;
	border: 1px solid color-mix(in srgb, var(--vma-border) 72%, #fff);
	border-radius: var(--vma-radius);
	box-shadow: 0 8px 20px rgba(23, 33, 43, 0.06);
}

.vma-mega-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, transparent 0 23px, rgba(23, 33, 43, 0.055) 23px 24px, transparent 24px 48px),
		linear-gradient(0deg, transparent 0 23px, rgba(23, 33, 43, 0.045) 23px 24px, transparent 24px 48px);
	opacity: 0.7;
	pointer-events: none;
}

.vma-mega-card h2 {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 28px;
	margin: 0 0 10px;
	padding: 5px 10px;
	background: var(--vma-ink);
	border-radius: 4px;
	color: #fff;
	font-size: 12px;
	font-weight: 900;
	line-height: 1.1;
	text-align: center;
	text-transform: uppercase;
}

.vma-mega-card ul {
	position: relative;
	display: grid;
	gap: 5px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.vma-mega-card a {
	display: block;
	color: var(--vma-ink);
	font-weight: 650;
	line-height: 1.28;
	text-decoration: none;
}

.vma-mega-card a:hover,
.vma-mega-card a:focus {
	color: var(--vma-accent);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

.vma-mega-panel-tools {
	overflow: hidden;
	padding: 20px 0 24px;
	background:
		linear-gradient(90deg, rgba(15, 118, 110, 0.16), transparent 38%, rgba(180, 83, 9, 0.12)),
		linear-gradient(180deg, #121a24, #0d1420);
	border-bottom: 0;
}

.vma-mega-panel-tools::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, transparent 0 31px, rgba(255, 255, 255, 0.045) 31px 32px, transparent 32px 64px),
		linear-gradient(0deg, transparent 0 31px, rgba(255, 255, 255, 0.035) 31px 32px, transparent 32px 64px);
	opacity: 0.8;
	pointer-events: none;
}

.vma-mega-tools-shell {
	position: relative;
	display: grid;
	grid-template-columns: minmax(230px, 0.34fr) minmax(0, 1fr);
	gap: 16px;
	align-items: stretch;
	padding: 14px;
	background: rgba(255, 255, 255, 0.055);
	border: 1px solid rgba(255, 255, 255, 0.11);
	border-radius: 8px;
	box-shadow: 0 24px 54px rgba(0, 0, 0, 0.28);
	backdrop-filter: blur(18px);
}

.vma-mega-tools-intro {
	position: relative;
	display: grid;
	align-content: end;
	min-height: 252px;
	overflow: hidden;
	padding: 22px;
	background:
		radial-gradient(circle at 84% 18%, rgba(180, 83, 9, 0.35), transparent 28%),
		linear-gradient(160deg, rgba(15, 118, 110, 0.52), rgba(23, 33, 43, 0.82));
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: 6px;
	color: #fff;
}

.vma-mega-tools-intro::before {
	content: "";
	position: absolute;
	inset: -38px;
	background:
		repeating-linear-gradient(48deg, transparent 0 20px, rgba(255, 255, 255, 0.055) 20px 21px),
		radial-gradient(circle at 58% 38%, transparent 0 42px, rgba(255, 255, 255, 0.24) 43px 44px, transparent 45px 92px);
	opacity: 0.86;
}

.vma-mega-tools-intro > * {
	position: relative;
}

.vma-mega-tools-intro span {
	width: fit-content;
	margin-bottom: 10px;
	padding: 5px 8px;
	background: rgba(255, 255, 255, 0.12);
	border-radius: 999px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.vma-mega-tools-intro strong {
	font-size: 32px;
	line-height: 0.98;
}

.vma-mega-tools-intro p {
	max-width: 290px;
	margin: 10px 0 0;
	color: rgba(255, 255, 255, 0.78);
	font-weight: 650;
	line-height: 1.35;
}

.vma-mega-tool-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	padding: 0;
}

.vma-mega-tool {
	position: relative;
	display: grid;
	align-content: space-between;
	min-height: 252px;
	overflow: hidden;
	padding: 24px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 6px;
	color: #fff;
	text-decoration: none;
	isolation: isolate;
	transform: translateY(0);
	transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.vma-mega-tool::before,
.vma-mega-tool::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -2;
	transition: transform 300ms ease, opacity 220ms ease;
}

.vma-mega-tool::after {
	z-index: -1;
	background:
		linear-gradient(180deg, rgba(8, 13, 22, 0.05), rgba(8, 13, 22, 0.76)),
		linear-gradient(90deg, rgba(8, 13, 22, 0.34), transparent 58%);
}

.vma-mega-tool:hover,
.vma-mega-tool:focus {
	transform: translateY(-4px);
	border-color: rgba(255, 255, 255, 0.28);
	box-shadow: 0 20px 38px rgba(0, 0, 0, 0.24);
	color: #fff;
}

.vma-mega-tool:hover::before,
.vma-mega-tool:focus::before {
	transform: scale(1.055);
}

.vma-mega-tool-rayon::before {
	background:
		radial-gradient(circle at 71% 42%, rgba(180, 83, 9, 0.95) 0 7px, transparent 8px),
		radial-gradient(circle at 64% 51%, rgba(15, 118, 110, 0.82) 0 44px, transparent 45px),
		radial-gradient(circle at 78% 34%, rgba(244, 241, 234, 0.68) 0 70px, transparent 72px),
		linear-gradient(120deg, rgba(23, 103, 136, 0.96), rgba(164, 199, 204, 0.84) 48%, rgba(229, 223, 206, 0.92));
}

.vma-mega-tool-iso::before {
	background:
		radial-gradient(circle at 72% 43%, rgba(180, 83, 9, 0.98) 0 7px, transparent 8px),
		radial-gradient(circle at 72% 43%, rgba(180, 83, 9, 0.45) 0 28px, transparent 29px),
		radial-gradient(circle at 72% 43%, rgba(15, 118, 110, 0.45) 0 58px, transparent 59px),
		radial-gradient(circle at 72% 43%, rgba(244, 241, 234, 0.48) 0 92px, transparent 94px),
		linear-gradient(125deg, rgba(20, 95, 145, 0.96), rgba(111, 185, 169, 0.84), rgba(230, 223, 198, 0.9));
}

.vma-mega-tool-custom::before {
	background:
		radial-gradient(circle at 70% 42%, rgba(220, 38, 38, 0.98) 0 8px, transparent 9px),
		linear-gradient(18deg, transparent 0 48%, rgba(180, 83, 9, 0.6) 49% 56%, transparent 57%),
		linear-gradient(160deg, rgba(100, 137, 82, 0.92), rgba(220, 180, 105, 0.86) 48%, rgba(99, 158, 185, 0.9)),
		linear-gradient(90deg, transparent 0 24px, rgba(17, 24, 39, 0.13) 24px 25px, transparent 25px 50px);
}

.vma-mega-tool strong {
	max-width: 360px;
	font-size: clamp(28px, 3vw, 40px);
	line-height: 0.98;
	text-shadow: 0 3px 18px rgba(0, 0, 0, 0.32);
}

.vma-mega-tool span {
	max-width: 330px;
	margin-top: 10px;
	color: rgba(255, 255, 255, 0.9);
	font-size: 16px;
	font-weight: 800;
	line-height: 1.25;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.22);
}

.vma-mega-tool em {
	display: inline-flex;
	align-self: end;
	width: fit-content;
	max-width: 100%;
	min-height: 38px;
	align-items: center;
	padding: 8px 13px;
	background: var(--vma-secondary);
	border-radius: 4px;
	color: #fff;
	font-size: 14px;
	font-style: normal;
	font-weight: 900;
	line-height: 1.2;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.vma-mega-cart {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	margin-left: auto;
	color: #fff;
	font-weight: 850;
	text-decoration: none;
	white-space: nowrap;
}

.vma-mega-cart-total {
	color: #fff;
	font-size: 15px;
}

.vma-mega-cart-icon {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border: 1px solid var(--vma-secondary);
	border-radius: 4px;
	color: var(--vma-secondary);
	font-size: 13px;
}

.vma-mega-cart-icon::before {
	content: "";
	position: absolute;
	top: -7px;
	width: 11px;
	height: 8px;
	border: 1px solid var(--vma-secondary);
	border-bottom: 0;
	border-radius: 8px 8px 0 0;
}

.vma-menu,
.vma-footer-menu {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.vma-menu a {
	display: block;
	padding: 13px 12px;
	color: var(--vma-ink);
	font-weight: 700;
	text-decoration: none;
}

.vma-menu a:hover {
	color: var(--vma-accent);
}

.vma-menu .sub-menu {
	position: absolute;
	display: none;
	min-width: 240px;
	list-style: none;
	margin: 0;
	padding: 8px;
	background: #fff;
	border: 1px solid var(--vma-border);
	box-shadow: var(--vma-shadow);
}

.vma-menu li {
	position: relative;
}

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

.site-content {
	min-height: 55vh;
}

.vma-main {
	padding: 38px 0 56px;
}

.vma-page-header {
	background: #fff;
	border-bottom: 1px solid var(--vma-border);
	padding: 34px 0;
}

.vma-page-header h1,
.vma-page-title h1,
.vma-article-header h1 {
	max-width: 980px;
	margin: 0;
	font-size: 40px;
	line-height: 1.12;
}

.vma-page-description {
	max-width: 880px;
	color: var(--vma-muted);
}

.vma-content-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 34px;
	align-items: start;
}

.vma-post-list {
	display: grid;
	gap: 18px;
}

.vma-post-card,
.vma-article,
.vma-page,
.vma-empty-state,
.vma-sidebar .widget,
.blog-bottom-widget,
.vma-error-page {
	background: var(--vma-surface);
	border: 1px solid var(--vma-border);
	border-radius: var(--vma-radius);
}

.vma-post-card {
	display: grid;
	grid-template-columns: 260px minmax(0, 1fr);
	overflow: hidden;
}

.vma-post-card-image img {
	width: 100%;
	height: 100%;
	min-height: 190px;
	object-fit: cover;
	display: block;
}

.vma-post-card-body,
.vma-article,
.vma-page,
.vma-empty-state,
.blog-bottom-widget,
.vma-error-page {
	padding: 28px;
}

.vma-entry-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	color: var(--vma-muted);
	font-size: 14px;
	margin-bottom: 8px;
}

.vma-post-card h2,
.vma-filter-block h2,
.widget-title {
	margin: 0 0 10px;
	font-size: 20px;
	line-height: 1.25;
}

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

.vma-featured-image {
	margin: 22px 0;
}

.vma-featured-image img {
	width: 100%;
	border-radius: var(--vma-radius);
}

.vma-entry-content > *:first-child {
	margin-top: 0;
}

.vma-entry-content > *:last-child {
	margin-bottom: 0;
}

.vma-sidebar {
	display: grid;
	gap: 18px;
}

.vma-sidebar .widget {
	padding: 20px;
}

.vma-catalog-hero {
	position: relative;
	overflow: hidden;
	background: var(--vma-ink);
	color: #fff;
	border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.vma-catalog-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
	background-size: 34px 34px;
	opacity: 0.8;
}

.vma-catalog-hero-inner {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
	gap: 34px;
	align-items: center;
	min-height: 330px;
	padding: 48px 0;
}

.vma-catalog-hero h1 {
	max-width: 980px;
	margin: 12px 0;
	font-size: 48px;
	line-height: 1.06;
}

.vma-catalog-hero-text {
	max-width: 760px;
	color: rgba(255, 255, 255, 0.86);
	font-size: 18px;
}

.vma-catalog-hero .woocommerce-breadcrumb,
.vma-product-main .woocommerce-breadcrumb,
.vma-page-header .woocommerce-breadcrumb {
	margin: 0 0 10px;
	color: currentColor;
	font-size: 14px;
}

.vma-catalog-hero .woocommerce-breadcrumb a {
	color: rgba(255, 255, 255, 0.82);
}

.vma-catalog-hero-media {
	min-height: 245px;
	background-image: var(--vma-hero-image);
	background-size: cover;
	background-position: center;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: var(--vma-radius);
	box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

.vma-category-tiles {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 12px;
	padding: 22px 0 0;
}

.vma-category-tile {
	display: grid;
	align-content: space-between;
	min-height: 96px;
	padding: 15px;
	background: #fff;
	border: 1px solid var(--vma-border);
	border-radius: var(--vma-radius);
	color: var(--vma-ink);
	text-decoration: none;
}

.vma-category-tile:hover {
	border-color: var(--vma-accent);
	box-shadow: var(--vma-shadow);
}

.vma-category-tile span {
	font-weight: 800;
	line-height: 1.25;
}

.vma-category-tile small {
	color: var(--vma-muted);
}

.vma-shop-main {
	padding: 26px 0 64px;
}

.vma-shop-layout {
	display: grid;
	grid-template-columns: 300px minmax(0, 1fr);
	gap: 24px;
	align-items: start;
}

.vma-shop-sidebar {
	position: sticky;
	top: 150px;
	display: grid;
	gap: 14px;
	max-height: calc(100vh - 170px);
	overflow: auto;
	background: #fff;
	border: 1px solid var(--vma-border);
	border-radius: var(--vma-radius);
	padding: 16px;
}

.vma-filter-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	border-bottom: 1px solid var(--vma-border);
	padding-bottom: 12px;
}

.vma-filter-head h2 {
	margin: 0;
	font-size: 18px;
}

.vma-filter-head button,
.vma-filter-open {
	display: none;
}

.vma-filter-block {
	border-bottom: 1px solid var(--vma-border);
	padding-bottom: 14px;
}

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

.vma-filter-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 3px;
}

.vma-filter-list a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 8px 10px;
	border-radius: var(--vma-radius);
	color: var(--vma-ink);
	text-decoration: none;
}

.vma-filter-list a:hover,
.vma-filter-list a.is-active {
	background: color-mix(in srgb, var(--vma-accent) 12%, #fff);
	color: var(--vma-accent);
}

.vma-filter-list small {
	color: var(--vma-muted);
}

.vma-shop-results {
	min-width: 0;
}

.vma-shop-toolbar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 16px;
	padding: 12px;
	background: #fff;
	border: 1px solid var(--vma-border);
	border-radius: var(--vma-radius);
}

.woocommerce-result-count {
	margin: 0;
	color: var(--vma-muted);
}

.woocommerce-ordering {
	margin: 0;
}

.woocommerce ul.products,
.woocommerce-page ul.products {
	display: grid;
	grid-template-columns: repeat(var(--vma-product-columns), minmax(0, 1fr));
	gap: 18px;
	margin: 0;
	padding: 0;
	list-style: none;
}

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

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product,
.woocommerce ul.products[class*="columns-"] li.product {
	float: none;
	width: auto;
	margin: 0;
}

.vma-product-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	overflow: hidden;
	background: #fff;
	border: 1px solid var(--vma-border);
	border-radius: var(--vma-radius);
	transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.vma-product-card:hover {
	transform: translateY(-2px);
	border-color: color-mix(in srgb, var(--vma-accent) 40%, var(--vma-border));
	box-shadow: var(--vma-shadow);
}

.vma-product-card-media {
	position: relative;
	display: block;
	aspect-ratio: 4 / 3;
	background: #eef0ed;
	overflow: hidden;
}

.vma-product-card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.vma-product-badges {
	position: absolute;
	z-index: 2;
	top: 10px;
	left: 10px;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.vma-product-badges span {
	padding: 4px 7px;
	border-radius: 999px;
	background: var(--vma-ink);
	color: #fff;
	font-size: 12px;
	font-weight: 800;
}

.vma-product-card-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 8px;
	padding: 14px;
}

.vma-product-category,
.vma-product-sku {
	color: var(--vma-muted);
	font-size: 13px;
}

.vma-product-sku {
	display: inline-flex;
	width: fit-content;
	padding: 3px 7px;
	background: var(--vma-bg);
	border-radius: 999px;
}

.woocommerce-loop-product__title {
	margin: 0;
	font-size: 17px;
	line-height: 1.28;
}

.woocommerce-loop-product__title a {
	color: var(--vma-ink);
	text-decoration: none;
}

.vma-product-card-meta {
	margin-top: auto;
}

.woocommerce .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
	color: #167143;
	font-weight: 800;
	font-size: 18px;
}

.vma-product-card-actions .button,
.vma-product-card-actions a.added_to_cart {
	width: 100%;
	margin-top: 4px;
}

.woocommerce nav.woocommerce-pagination {
	margin-top: 26px;
}

.woocommerce nav.woocommerce-pagination ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 7px;
	border: 0;
	margin: 0;
	padding: 0;
}

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

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
	min-width: 40px;
	border: 1px solid var(--vma-border);
	border-radius: var(--vma-radius);
	padding: 9px 11px;
	background: #fff;
	color: var(--vma-ink);
}

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

.vma-product-main {
	padding: 24px 0 64px;
}

.vma-product-detail {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
	gap: 34px;
	align-items: start;
	margin-top: 18px;
}

.vma-product-gallery,
.vma-product-summary,
.vma-product-after-summary {
	min-width: 0;
	background: #fff;
	border: 1px solid var(--vma-border);
	border-radius: var(--vma-radius);
}

.vma-product-gallery {
	padding: 16px;
}

.vma-product-gallery .woocommerce-product-gallery {
	width: 100% !important;
	float: none !important;
}

.vma-product-gallery .woocommerce-product-gallery__image img {
	width: 100%;
	border-radius: var(--vma-radius);
}

.vma-product-summary {
	position: sticky;
	top: 150px;
	padding: 24px;
}

.vma-product-summary .product_title {
	margin: 0 0 12px;
	font-size: 34px;
	line-height: 1.1;
}

.vma-product-summary form.cart {
	display: grid;
	gap: 12px;
	margin-top: 18px;
}

.woocommerce div.product form.cart .variations {
	margin-bottom: 12px;
}

.woocommerce div.product form.cart .variations td,
.woocommerce div.product form.cart .variations th {
	display: block;
	border: 0;
	padding: 4px 0;
}

.quantity {
	display: inline-flex;
	align-items: center;
	width: fit-content;
}

.quantity input.qty {
	max-width: 90px;
	text-align: center;
}

.woocommerce div.product form.cart .button {
	min-height: 48px;
}

.product_meta {
	display: grid;
	gap: 4px;
	margin-top: 18px;
	padding: 14px;
	background: var(--vma-bg);
	border-radius: var(--vma-radius);
	color: var(--vma-muted);
}

.vma-product-after-summary {
	margin-top: 28px;
	padding: 24px;
}

.woocommerce-tabs ul.tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
	margin: 0 0 18px;
	padding: 0;
	border: 0;
}

.woocommerce-tabs ul.tabs::before,
.woocommerce-tabs ul.tabs li::before,
.woocommerce-tabs ul.tabs li::after {
	display: none !important;
}

.woocommerce-tabs ul.tabs li {
	border: 0;
	background: transparent;
	margin: 0;
	padding: 0;
}

.woocommerce-tabs ul.tabs li a {
	display: block;
	padding: 10px 13px;
	border: 1px solid var(--vma-border);
	border-radius: var(--vma-radius);
	background: #fff;
	color: var(--vma-ink);
	text-decoration: none;
}

.woocommerce-tabs ul.tabs li.active a,
.woocommerce-tabs ul.tabs li a:hover {
	background: var(--vma-ink);
	border-color: var(--vma-ink);
	color: #fff;
}

.related.products,
.up-sells.upsells.products {
	margin-top: 30px;
}

.related.products > h2,
.up-sells.upsells.products > h2 {
	font-size: 26px;
}

.vma-sticky-product-bar {
	position: fixed;
	z-index: 140;
	right: 0;
	bottom: 0;
	left: 0;
	display: none;
	background: #fff;
	border-top: 1px solid var(--vma-border);
	box-shadow: 0 -14px 32px rgba(23, 33, 43, 0.13);
}

.vma-sticky-product-bar.is-visible {
	display: block;
}

.vma-sticky-product-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 12px 0;
}

.vma-sticky-product-inner strong,
.vma-sticky-product-inner span {
	display: block;
}

.woocommerce-cart .site-content,
.woocommerce-checkout .site-content,
.woocommerce-account .site-content {
	background: var(--vma-bg);
}

.woocommerce-cart-form,
.cart-collaterals,
.woocommerce-checkout form.checkout,
.woocommerce-MyAccount-navigation,
.woocommerce-MyAccount-content,
.woocommerce-order {
	background: #fff;
	border: 1px solid var(--vma-border);
	border-radius: var(--vma-radius);
	padding: 20px;
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
	border-top-color: var(--vma-accent);
	background: #fff;
	border-radius: var(--vma-radius);
}

.wapf-field-container {
	padding-bottom: 18px;
}

.wapf input[type="checkbox"],
.wapf input[type="radio"] {
	width: auto;
}

.wapf-field-group .wapf-radios {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
}

.wapf-input-label {
	display: block;
	padding: 9px 11px;
	background: var(--vma-bg);
	border: 1px solid var(--vma-border);
	border-radius: var(--vma-radius);
	font-weight: 700;
}

.wapf-checked .wapf-input-label {
	background: color-mix(in srgb, var(--vma-accent) 15%, #fff);
	border-color: var(--vma-accent);
	color: var(--vma-accent);
}

.vma-all-products-list {
	background: #fff;
	border: 1px solid var(--vma-border);
	border-radius: var(--vma-radius);
	padding: 24px;
}

.vma-all-products-list h1 {
	margin-top: 0;
}

.product-search-container {
	margin: 16px 0;
}

.content-list {
	display: grid;
	gap: 2px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.content-list li {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 12px;
	align-items: center;
	padding: 10px 0;
	border-bottom: 1px solid var(--vma-border);
}

.content-list .product-link {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	color: var(--vma-ink);
	text-decoration: none;
}

.content-list .product-sku {
	color: var(--vma-muted);
	font-size: 13px;
}

.vma-cart-debug {
	max-height: 360px;
	overflow: auto;
	background: #fff;
	border: 1px solid var(--vma-border);
	padding: 16px;
}

.vma-front-page {
	background: var(--vma-bg);
}

.vma-front-hero {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	min-height: clamp(590px, 76svh, 760px);
	background: var(--vma-ink);
	color: #fff;
}

.vma-front-map-canvas {
	position: absolute;
	inset: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	opacity: 0.95;
}

.vma-front-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background:
		rgba(23, 33, 43, 0.52);
}

.vma-front-hero-inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.62fr);
	gap: 46px;
	align-items: center;
	min-height: inherit;
	padding: 58px 0 82px;
}

.vma-front-hero-copy {
	max-width: 940px;
}

.vma-front-eyebrow,
.vma-front-kicker,
.vma-front-section-head p {
	margin: 0 0 10px;
	color: var(--vma-secondary);
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0;
	text-transform: uppercase;
}

.vma-front-hero h1 {
	margin: 0;
	font-size: clamp(54px, 8vw, 112px);
	line-height: 0.94;
	letter-spacing: 0;
}

.vma-front-intro {
	max-width: 720px;
	margin-top: 20px;
	color: rgba(255, 255, 255, 0.86);
	font-size: 20px;
}

.vma-front-search {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 10px;
	max-width: 780px;
	margin-top: 28px;
	padding: 8px;
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid rgba(255, 255, 255, 0.32);
	border-radius: var(--vma-radius);
	box-shadow: 0 20px 48px rgba(0, 0, 0, 0.22);
}

.vma-front-search input[type="search"] {
	min-height: 52px;
	border: 0;
	background: transparent;
	font-size: 18px;
}

.vma-front-search .vma-live-search-panel {
	top: calc(100% + 10px);
	color: var(--vma-ink);
}

.vma-front-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	align-items: center;
	margin-top: 22px;
}

.vma-front-link {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	color: #fff;
	font-weight: 800;
	text-decoration: none;
}

.vma-front-link:hover {
	color: var(--vma-secondary);
}

.vma-front-navigator {
	display: grid;
	gap: 14px;
	align-self: end;
	padding: 16px;
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: var(--vma-radius);
	color: var(--vma-ink);
	box-shadow: 0 20px 48px rgba(0, 0, 0, 0.2);
}

.vma-front-stat-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	overflow: hidden;
	border: 1px solid var(--vma-border);
	border-radius: var(--vma-radius);
	background: var(--vma-border);
}

.vma-front-stat-grid div {
	display: grid;
	gap: 2px;
	padding: 14px 10px;
	background: #fff;
	text-align: center;
}

.vma-front-stat-grid strong {
	font-size: 28px;
	line-height: 1;
}

.vma-front-stat-grid span {
	color: var(--vma-muted);
	font-size: 13px;
}

.vma-front-navigator-main {
	display: grid;
	gap: 4px;
	padding: 16px;
	background: var(--vma-ink);
	border-radius: var(--vma-radius);
	color: #fff;
	text-decoration: none;
}

.vma-front-navigator-main:hover {
	background: var(--vma-accent);
	color: #fff;
}

.vma-front-navigator-main span {
	color: rgba(255, 255, 255, 0.72);
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
}

.vma-front-section {
	padding: 62px 0;
}

.vma-front-section + .vma-front-section {
	padding-top: 18px;
}

.vma-front-section-head {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 18px 28px;
	align-items: end;
	margin-bottom: 22px;
}

.vma-front-section-head p {
	grid-column: 1 / -1;
	margin-bottom: -8px;
}

.vma-front-section-head h2 {
	max-width: 820px;
	margin: 0;
	font-size: clamp(30px, 4vw, 52px);
	line-height: 1.04;
	letter-spacing: 0;
}

.vma-front-section-head a {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	font-weight: 800;
	white-space: nowrap;
}

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

.vma-front-category {
	display: grid;
	grid-template-rows: minmax(180px, 1fr) auto;
	overflow: hidden;
	background: #fff;
	border: 1px solid var(--vma-border);
	border-radius: var(--vma-radius);
	color: var(--vma-ink);
	text-decoration: none;
	transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.vma-front-category:hover {
	transform: translateY(-2px);
	border-color: var(--vma-accent);
	box-shadow: var(--vma-shadow);
}

.vma-front-category-media {
	position: relative;
	display: block;
	min-height: 180px;
	overflow: hidden;
	background: #dfe4df;
}

.vma-front-category-media img {
	width: 100%;
	height: 100%;
	min-height: 180px;
	object-fit: cover;
	display: block;
	transition: transform 220ms ease;
}

.vma-front-category:hover img {
	transform: scale(1.035);
}

.vma-front-category-fallback {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, transparent 0 22px, rgba(23, 33, 43, 0.13) 22px 23px, transparent 23px 46px),
		linear-gradient(0deg, transparent 0 22px, rgba(23, 33, 43, 0.12) 22px 23px, transparent 23px 46px),
		#dfe4df;
}

.vma-front-category-fallback::after {
	content: "";
	position: absolute;
	inset: 24px;
	border: 2px solid rgba(15, 118, 110, 0.44);
	border-radius: 50%;
	transform: rotate(-18deg);
}

.vma-front-category-body {
	display: grid;
	gap: 5px;
	padding: 16px;
}

.vma-front-category-body strong {
	font-size: 20px;
	line-height: 1.15;
}

.vma-front-category-body small {
	color: var(--vma-muted);
}

.vma-front-products-section {
	padding-top: 22px;
}

.vma-front-products {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.vma-front-capabilities {
	background: var(--vma-ink);
	color: #fff;
}

.vma-front-capabilities-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
	gap: 42px;
	align-items: start;
}

.vma-front-capabilities h2 {
	margin: 0;
	font-size: clamp(32px, 5vw, 62px);
	line-height: 1.02;
}

.vma-front-capability-list {
	display: grid;
	gap: 10px;
}

.vma-front-capability-list a {
	display: grid;
	gap: 4px;
	padding: 18px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--vma-radius);
	color: #fff;
	text-decoration: none;
}

.vma-front-capability-list a:hover {
	background: rgba(255, 255, 255, 0.14);
	color: #fff;
}

.vma-front-capability-list strong {
	font-size: 20px;
}

.vma-front-capability-list span {
	color: rgba(255, 255, 255, 0.72);
}

.vma-front-page-content .vma-entry-content {
	background: #fff;
	border: 1px solid var(--vma-border);
	border-radius: var(--vma-radius);
	padding: 28px;
}

.vma-site-footer {
	background: var(--vma-ink);
	color: rgba(255, 255, 255, 0.82);
}

.vma-site-footer a {
	color: #fff;
}

.vma-footer-grid {
	display: grid;
	grid-template-columns: 1.35fr repeat(3, minmax(0, 1fr));
	gap: 28px;
	padding: 42px 0;
}

.vma-site-footer .vma-site-title {
	color: #fff;
}

.vma-footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	padding: 16px 0;
	font-size: 14px;
}

.vma-footer-bottom .vma-container {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.vma-footer-menu a {
	display: block;
	padding: 4px 8px 4px 0;
	text-decoration: none;
}

.navigation.pagination {
	margin-top: 24px;
}

.nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.nav-links a,
.nav-links span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	padding: 8px 11px;
	border: 1px solid var(--vma-border);
	border-radius: var(--vma-radius);
	background: #fff;
	text-decoration: none;
}

.nav-links .current {
	background: var(--vma-accent);
	border-color: var(--vma-accent);
	color: #fff;
}

@media (max-width: 1280px) {
	.woocommerce ul.products,
	.woocommerce-page ul.products {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.vma-category-tiles {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.vma-front-category-grid,
	.vma-front-products {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.vma-mega-tools-shell {
		grid-template-columns: 1fr;
	}

	.vma-mega-tools-intro {
		min-height: auto;
	}
}

@media (max-width: 1024px) {
	.vma-header-grid {
		grid-template-columns: auto 1fr auto;
		gap: 12px;
	}

	.vma-nav-toggle {
		display: inline-flex;
		order: 3;
	}

	.vma-header-search {
		grid-column: 1 / -1;
		order: 4;
	}

	.vma-header-actions {
		justify-content: flex-end;
	}

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

	.vma-nav-open .vma-primary-nav {
		display: block;
	}

	.vma-mega-nav {
		box-shadow: 0 18px 34px rgba(23, 33, 43, 0.18);
	}

	.vma-mega-nav-bar {
		display: grid;
		gap: 0;
		min-height: 0;
		width: 100%;
		padding-top: 8px;
		padding-bottom: 10px;
	}

	.vma-mega-menu {
		display: grid;
		gap: 2px;
		width: 100%;
	}

	.vma-mega-item,
	.vma-mega-simple {
		display: grid;
	}

	.vma-mega-trigger,
	.vma-mega-simple > a {
		min-height: 46px;
		padding: 0 8px;
	}

	.vma-mega-trigger::after,
	.vma-mega-simple > a::after {
		right: 8px;
		bottom: 7px;
		left: 8px;
	}

	.vma-mega-panel {
		position: static;
		display: block;
		visibility: visible;
		opacity: 1;
		pointer-events: auto;
		transform: none;
		background: transparent;
		border-bottom: 0;
		box-shadow: none;
		backdrop-filter: none;
		transition: none;
	}

	.vma-mega-catalog-grid {
		width: 100%;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
		padding: 8px 0 14px;
	}

	.vma-mega-card {
		min-height: auto;
		padding: 14px;
	}

	.vma-mega-panel-tools {
		padding: 8px 0 14px;
	}

	.vma-mega-tools-shell {
		width: 100%;
		gap: 10px;
		padding: 10px;
		background: rgba(255, 255, 255, 0.04);
	}

	.vma-mega-tools-intro {
		min-height: 150px;
	}

	.vma-mega-tool-grid {
		width: 100%;
		grid-template-columns: 1fr;
		gap: 8px;
		padding: 0;
	}

	.vma-mega-tool {
		min-height: 190px;
		border-radius: var(--vma-radius);
	}

	.vma-mega-cart {
		justify-content: space-between;
		width: 100%;
		min-height: 48px;
		margin: 6px 0 0;
		padding: 0 8px;
		border-top: 1px solid rgba(255, 255, 255, 0.14);
	}

	.vma-menu {
		display: grid;
		padding: 10px 0;
	}

	.vma-menu .sub-menu {
		position: static;
		display: block;
		border: 0;
		box-shadow: none;
		padding-left: 18px;
	}

	.vma-content-layout,
	.vma-shop-layout,
	.vma-product-detail,
	.vma-catalog-hero-inner,
	.vma-front-hero-inner,
	.vma-front-capabilities-grid,
	.vma-footer-grid {
		grid-template-columns: 1fr;
	}

	.vma-front-hero {
		min-height: auto;
	}

	.vma-front-hero-inner {
		padding: 48px 0 64px;
	}

	.vma-front-navigator {
		align-self: start;
		max-width: 620px;
	}

	.vma-shop-sidebar {
		position: fixed;
		z-index: 160;
		inset: 0 auto 0 0;
		width: min(92vw, 380px);
		max-height: none;
		border-radius: 0;
		transform: translateX(-105%);
		transition: transform 180ms ease;
	}

	.vma-filters-open .vma-shop-sidebar {
		transform: translateX(0);
	}

	.vma-filter-head button,
	.vma-filter-open {
		display: inline-flex;
	}

	.vma-filter-open {
		margin-bottom: 16px;
	}

	.vma-product-summary {
		position: static;
	}
}

@media (max-width: 760px) {
	.vma-container {
		width: min(calc(100% - 28px), var(--vma-content-width));
	}

	.vma-page-header h1,
	.vma-page-title h1,
	.vma-article-header h1,
	.vma-catalog-hero h1 {
		font-size: 32px;
	}

	.vma-catalog-hero-inner {
		min-height: auto;
		padding: 34px 0;
	}

	.vma-catalog-hero-media {
		min-height: 190px;
	}

	.vma-category-tiles {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.vma-front-search,
	.vma-front-section-head {
		grid-template-columns: 1fr;
	}

	.vma-front-search button,
	.vma-front-actions .button,
	.vma-front-link {
		width: 100%;
	}

	.vma-front-actions {
		align-items: stretch;
	}

	.vma-front-link {
		justify-content: center;
	}

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

	.vma-mega-catalog-grid {
		grid-template-columns: 1fr;
	}

	.vma-mega-tool {
		min-height: 170px;
		padding: 20px;
	}

	.vma-mega-tool strong {
		font-size: 28px;
	}

	.vma-mega-tool span {
		font-size: 15px;
	}

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

	.vma-product-card-body {
		padding: 12px;
	}

	.woocommerce-loop-product__title {
		font-size: 15px;
	}

	.vma-shop-toolbar {
		display: grid;
	}

	.woocommerce-ordering select {
		width: 100%;
	}

	.vma-post-card {
		grid-template-columns: 1fr;
	}

	.vma-header-actions a:not(.vma-cart-link) {
		display: none;
	}

	.vma-sticky-product-inner {
		align-items: stretch;
		flex-direction: column;
	}
}

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

	.vma-header-actions {
		grid-column: 1 / -1;
		justify-content: stretch;
	}

	.vma-header-actions .vma-cart-link {
		width: 100%;
		justify-content: center;
	}

	.woocommerce ul.products,
	.woocommerce-page ul.products,
	.vma-category-tiles,
	.vma-front-category-grid,
	.vma-front-products,
	.wapf-field-group .wapf-radios {
		grid-template-columns: 1fr;
	}

	.vma-front-hero h1 {
		font-size: 48px;
	}

	.vma-front-intro {
		font-size: 17px;
	}

	.vma-front-stat-grid {
		grid-template-columns: 1fr;
	}

	.vma-front-section {
		padding: 42px 0;
	}

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