:host {
	all: initial !important;
	display: block !important;
	font-family: Roboto, Arial, Helvetica, sans-serif !important;
	font-size: 14px !important;
	font-style: normal !important;
	font-weight: 400 !important;
	line-height: normal !important;
	text-transform: none !important;
	text-shadow: none !important;
	-webkit-text-size-adjust: 100% !important;
	-webkit-tap-highlight-color: transparent !important;
	direction: ltr !important;
}

.vmscm-theme-shell,
.vmscm-theme-shell:hover,
.vmscm-theme-shell:focus,
.vmscm-theme-shell:focus-within,
.vmscm-theme-shell:active {
	background: transparent !important;
	box-shadow: none !important;
	filter: none !important;
	-webkit-tap-highlight-color: transparent !important;
}

vm-category-menu.vmscm-host {
	all: initial !important;
	display: var(--vmscm-display, block) !important;
	position: relative !important;
	width: var(--vmscm-host-width, var(--vmscm-width, 270px)) !important;
	max-width: 100% !important;
	min-width: 0 !important;
	height: auto !important;
	min-height: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	font-size: 16px !important;
	line-height: normal !important;
	text-align: left !important;
	vertical-align: top !important;
	z-index: 999999 !important;
}

vm-category-menu.vmscm-host[data-vmscm-layout="mobile"] {
	--vmscm-display: none !important;
}

.vmscm,
.vmscm *,
.vmscm *::before,
.vmscm *::after {
	box-sizing: border-box;
	font-family: Roboto, Arial, Helvetica, sans-serif !important;
}

.vmscm {
	all: initial;
	box-sizing: border-box;
	--vmscm-color: #0067ed;
	--vmscm-width: 270px;
	--vmscm-border: #e8ebf0;
	--vmscm-text: #15171a;
	--vmscm-muted: #707784;
	--vmscm-surface: #fff;
	--vmscm-soft: color-mix(in srgb, var(--vmscm-color) 9%, white);
	--vmscm-radius: 14px;
	position: relative;
	width: var(--vmscm-width);
	max-width: 100%;
	color: var(--vmscm-text);
	display: block;
	font-family: Roboto, Arial, Helvetica, sans-serif !important;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.35;
	text-align: left;
	text-transform: none;
	text-shadow: none;
	direction: ltr;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	z-index: 999;
}

.vmscm button,
.vmscm a {
	font-family: Roboto, Arial, Helvetica, sans-serif !important;
	font-size: inherit;
	font-style: normal !important;
	line-height: inherit;
	text-transform: none !important;
	text-shadow: none !important;
	-webkit-tap-highlight-color: transparent !important;
}

.vmscm button {
	-webkit-appearance: none;
	appearance: none;
	text-transform: none;
}

.vmscm button:focus-visible,
.vmscm a:focus-visible {
	outline: 3px solid color-mix(in srgb, var(--vmscm-color) 35%, white);
	outline-offset: -3px;
}

.vmscm-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	flex: 0 0 auto;
}

.vmscm-icon svg {
	display: block;
	width: 100%;
	height: 100%;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.vmscm-trigger,
.vmscm-mobile-trigger {
	width: 100%;
	height: 52px;
	margin: 0;
	padding: 0 15px;
	border: 1px solid var(--vmscm-color);
	border-radius: 6px;
	background: var(--vmscm-color);
	color: #fff;
	display: flex;
	align-items: center;
	gap: 11px;
	cursor: pointer;
	font-weight: 700 !important;
	letter-spacing: .015em;
	text-align: left;
	transition: filter .18s ease, box-shadow .18s ease;
}

.vmscm-trigger:hover,
.vmscm-mobile-trigger:hover {
	background: var(--vmscm-color);
	color: #fff;
	filter: brightness(.96);
	box-shadow: 0 9px 24px rgba(0, 103, 237, .2);
}

.vmscm-trigger > .vmscm-icon-menu,
.vmscm-mobile-trigger > .vmscm-icon-menu {
	width: 20px;
	height: 20px;
	padding: 0;
	border-radius: 0;
	background: transparent;
	color: #fff;
}

/* The menu glyph is a filled path, unlike the stroked chevrons. */
.vmscm-trigger > .vmscm-icon-menu svg,
.vmscm-mobile-trigger > .vmscm-icon-menu svg {
	fill: currentColor !important;
	stroke: none !important;
	stroke-width: 0 !important;
}

.vmscm-trigger-label,
.vmscm-mobile-trigger span:not(.vmscm-icon) {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.vmscm-trigger .vmscm-icon-chevron-down {
	margin-left: auto;
	color: #fff;
	transition: transform .2s ease;
}

.vmscm.is-open .vmscm-trigger .vmscm-icon-chevron-down {
	transform: rotate(180deg);
}

.vmscm-dropdown {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	width: var(--vmscm-width);
	min-width: 220px;
	padding: 8px;
	visibility: hidden;
	opacity: 0;
	transform: translateY(-6px);
	pointer-events: none;
	background: var(--vmscm-surface);
	border: 1px solid var(--vmscm-border);
	border-radius: 16px;
	box-shadow: 0 18px 44px rgba(20, 30, 48, .13);
	transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.vmscm.is-open .vmscm-dropdown {
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.vmscm-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.vmscm-item {
	position: relative;
	margin: 3px 0;
	padding: 0;
	border: 0;
	border-radius: 10px;
}

.vmscm-item:last-child {
	border-bottom: 0;
}

.vmscm-item-row {
	display: flex;
	align-items: stretch;
	min-height: 50px;
	border-radius: inherit;
	overflow: hidden;
}

.vmscm-link {
	min-width: 0;
	flex: 1 1 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 7px 8px;
	color: var(--vmscm-text);
	text-decoration: none !important;
	font-weight: 600 !important;
	border-radius: inherit;
	transition: color .16s ease, background-color .16s ease;
}

.vmscm-link-main {
	min-width: 0;
	display: flex;
	align-items: center;
	gap: 10px;
}

.vmscm-name {
	overflow-wrap: anywhere;
}

.vmscm-thumb {
	display: inline-flex;
	width: 34px;
	height: 34px;
	flex: 0 0 34px;
	overflow: hidden;
	border: 1px solid var(--vmscm-border);
	border-radius: 9px;
	background: #f4f6f9;
}

.vmscm-thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.vmscm-thumb.is-fallback {
	align-items: center;
	justify-content: center;
	border-color: color-mix(in srgb, var(--vmscm-color) 16%, var(--vmscm-border));
	background: var(--vmscm-soft);
	color: var(--vmscm-color);
	font-size: 13px;
	font-weight: 800;
}

.vmscm-link small {
	color: var(--vmscm-muted);
	font-size: 11px;
	font-weight: 600;
}

.vmscm-item:hover > .vmscm-item-row .vmscm-link,
.vmscm-item:focus-within > .vmscm-item-row .vmscm-link {
	color: var(--vmscm-color);
	background: var(--vmscm-soft);
}

.vmscm-item:hover > .vmscm-item-row,
.vmscm-item:focus-within > .vmscm-item-row {
	background: var(--vmscm-soft);
}

.vmscm-submenu-toggle {
	width: 38px;
	min-width: 38px;
	padding: 0 10px 0 4px;
	border: 0;
	background: transparent;
	color: #9aa0aa;
	cursor: pointer;
}

.vmscm-submenu-toggle:hover {
	color: var(--vmscm-color);
}

.vmscm-submenu-toggle .vmscm-icon {
	width: 17px;
	height: 17px;
}

.vmscm-submenu {
	position: absolute;
	top: -1px;
	left: calc(100% + 1px);
	width: var(--vmscm-width);
	min-width: 235px;
	padding: 8px;
	visibility: hidden;
	opacity: 0;
	transform: translateX(-5px);
	pointer-events: none;
	background: var(--vmscm-surface);
	border: 1px solid var(--vmscm-border);
	border-radius: 16px;
	box-shadow: 0 14px 34px rgba(20, 30, 48, .12);
	transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}

.vmscm-item:hover > .vmscm-submenu,
.vmscm-item:focus-within > .vmscm-submenu,
.vmscm-item.is-submenu-open > .vmscm-submenu {
	visibility: visible;
	opacity: 1;
	transform: translateX(0);
	pointer-events: auto;
}

.vmscm-custom-item .vmscm-link::after {
	content: "";
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--vmscm-color);
	opacity: .7;
}

.vmscm-footer {
	min-height: 48px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: 7px;
	padding: 12px 13px;
	border: 0;
	border-radius: 10px;
	background: var(--vmscm-soft);
	color: var(--vmscm-color);
	font-weight: 700 !important;
	text-decoration: none !important;
	transition: background-color .16s ease;
}

.vmscm-footer:hover {
	background: color-mix(in srgb, var(--vmscm-color) 14%, white);
	color: var(--vmscm-color);
}

.vmscm-footer .vmscm-icon {
	width: 18px;
	height: 18px;
	transition: transform .16s ease;
}

.vmscm-footer:hover .vmscm-icon {
	transform: translateX(3px);
}

.vmscm-mobile-trigger,
.vmscm-mobile-shell {
	display: none;
}

html.vmscm-lock,
html.vmscm-lock body {
	overflow: hidden !important;
}

@media (max-width: 900px) {
	vm-category-menu.vmscm-host {
		--vmscm-host-width: 40px !important;
	}

	vm-category-menu.vmscm-host[data-vmscm-layout="desktop"] {
		--vmscm-display: none !important;
	}

	vm-category-menu.vmscm-host[data-vmscm-layout="mobile"] {
		--vmscm-display: block !important;
	}

	.vmscm {
		width: 100%;
		max-width: none;
		z-index: 100000;
	}

	.vmscm-desktop {
		display: none;
	}

	.vmscm-mobile-trigger {
		display: flex;
		justify-content: center;
		width: 40px;
		min-width: 40px;
		max-width: 40px;
		height: 42px;
		border: 0;
		border-radius: 0;
		background: transparent;
		color: #111;
		padding: 0;
		-webkit-tap-highlight-color: transparent !important;
		touch-action: manipulation;
	}

	.vmscm-mobile-trigger,
	.vmscm-mobile-trigger:hover,
	.vmscm-mobile-trigger:focus,
	.vmscm-mobile-trigger:focus-visible,
	.vmscm-mobile-trigger:active {
		border: 0 !important;
		outline: 0 !important;
		background: transparent !important;
		color: #111 !important;
		filter: none !important;
		box-shadow: none !important;
		transform: none !important;
		opacity: 1 !important;
	}

	.vmscm-mobile-trigger .vmscm-icon:not(.vmscm-icon-menu) {
		width: 19px;
		height: 19px;
	}

	.vmscm-mobile-trigger > .vmscm-icon-menu {
		width: 26px;
		height: 26px;
		color: #111 !important;
		background: transparent !important;
		box-shadow: none !important;
	}

	.vmscm-mobile-trigger > .vmscm-icon-menu svg {
		fill: currentColor !important;
		stroke: none !important;
		stroke-width: 0 !important;
	}

	.vmscm-mobile-shell {
		display: block;
		position: fixed;
		inset: 0;
		visibility: hidden;
		pointer-events: none;
		z-index: 100000;
	}

	.vmscm.is-mobile-open .vmscm-mobile-shell {
		visibility: visible;
		pointer-events: auto;
	}

	.vmscm-overlay {
		position: absolute;
		inset: 0;
		width: 100%;
		height: 100%;
		padding: 0;
		border: 0;
		background: rgba(13, 20, 33, .52);
		opacity: 0;
		cursor: default;
		backdrop-filter: blur(2px);
		transition: opacity .24s ease;
	}

	.vmscm.is-mobile-open .vmscm-overlay {
		opacity: 1;
	}

	.vmscm-drawer {
		position: absolute;
		top: 0;
		left: 0;
		width: min(88vw, 420px);
		height: 100%;
		background: var(--vmscm-surface);
		box-shadow: 16px 0 40px rgba(13, 20, 33, .2);
		transform: translateX(-102%);
		transition: transform .26s cubic-bezier(.22, .7, .15, 1);
		overflow: hidden;
		display: flex;
		flex-direction: column;
	}

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

	.vmscm-drawer-head {
		min-height: 59px;
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 12px;
		padding: 0 12px 0 17px;
		border-bottom: 1px solid var(--vmscm-border);
	}

	.vmscm-drawer-head strong {
		font-size: 16px;
		font-weight: 600 !important;
	}

	.vmscm-close {
		width: 38px;
		height: 38px;
		margin-left: auto;
		padding: 8px;
		border: 0;
		border-radius: 8px;
		background: var(--vmscm-soft);
		color: var(--vmscm-color);
		cursor: pointer;
	}

	.vmscm-mobile-unified {
		flex: 1 1 auto;
		min-height: 0;
		overflow-y: auto;
		overscroll-behavior: contain;
		-webkit-overflow-scrolling: touch;
		padding: 0 10px calc(72px + env(safe-area-inset-bottom, 0px));
	}

	.vmscm-mobile-section {
		margin: 0;
		padding: 0;
	}

	.vmscm-section-heading {
		margin: 0;
		padding: 15px 4px 9px;
		color: var(--vmscm-muted);
		font-size: 12px;
		font-weight: 700 !important;
		line-height: 1.25;
		letter-spacing: .055em;
		text-transform: uppercase !important;
	}

	.vmscm-mobile-categories-section {
		margin-top: 3px;
	}

	.vmscm-mobile-categories-section > .vmscm-footer {
		position: relative;
		margin: 10px 0 0;
		box-shadow: 0 8px 20px rgba(20, 30, 48, .1);
	}

	.vmscm-mobile-list .vmscm-item-row {
		min-height: 49px;
	}

	.vmscm-mobile-list .vmscm-link {
		padding: 7px 8px;
	}

	.vmscm-mobile-list .vmscm-submenu-toggle {
		width: 48px;
		min-width: 48px;
		padding: 0 15px;
	}

	.vmscm-mobile-list .vmscm-submenu-toggle .vmscm-icon {
		transition: transform .2s ease;
	}

	.vmscm-mobile-list .vmscm-item.is-submenu-open > .vmscm-item-row .vmscm-submenu-toggle .vmscm-icon {
		transform: rotate(180deg);
	}

	.vmscm-mobile-list .vmscm-submenu {
		position: static;
		width: auto;
		min-width: 0;
		max-height: 0;
		visibility: hidden;
		opacity: 1;
		transform: none;
		pointer-events: none;
		border: 0;
		border-radius: 0;
		box-shadow: none;
		overflow: hidden;
		background: #f8f9fb;
		transition: max-height .24s ease, visibility .24s ease;
	}

	.vmscm-mobile-list .vmscm-item:hover > .vmscm-submenu,
	.vmscm-mobile-list .vmscm-item:focus-within > .vmscm-submenu {
		max-height: 0;
		visibility: hidden;
		pointer-events: none;
	}

	.vmscm-mobile-list .vmscm-item.is-submenu-open > .vmscm-submenu {
		max-height: 1200px;
		visibility: visible;
		pointer-events: auto;
	}

	.vmscm-mobile-list .vmscm-submenu .vmscm-link {
		padding-left: 27px;
		font-size: 13px;
	}

	.vmscm-mobile-list .vmscm-submenu .vmscm-submenu .vmscm-link {
		padding-left: 39px;
	}

	.vmscm-wordpress-menu,
	.vmscm-wordpress-menu > div {
		width: 100%;
	}

	.vmscm-menu-list,
	.vmscm-wordpress-menu ul {
		list-style: none;
		margin: 0;
		padding: 0;
	}

	.vmscm-wordpress-menu > .vmscm-menu-list,
	.vmscm-wordpress-menu > div > ul {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 8px;
	}

	.vmscm-menu-list li,
	.vmscm-wordpress-menu li {
		min-width: 0;
		margin: 0;
		border: 0;
	}

	.vmscm-wordpress-menu .menu-item-has-children,
	.vmscm-wordpress-menu .page_item_has_children {
		grid-column: 1 / -1;
	}

	.vmscm-menu-list a,
	.vmscm-wordpress-menu a {
		position: relative;
		min-width: 0;
		min-height: 58px;
		display: flex;
		align-items: center;
		gap: 9px;
		padding: 9px 10px;
		border: 1px solid var(--vmscm-border);
		border-radius: 11px;
		background: color-mix(in srgb, var(--vmscm-color) 5%, white);
		color: var(--vmscm-text);
		font-weight: 600 !important;
		text-decoration: none;
		overflow: hidden;
		text-overflow: ellipsis;
		transition: color .16s ease, border-color .16s ease, background-color .16s ease;
	}

	.vmscm-menu-icon {
		width: 24px;
		height: 24px;
		flex: 0 0 auto;
		display: block;
		background: #0067ed;
		-webkit-mask-image: var(--vmscm-menu-icon);
		mask-image: var(--vmscm-menu-icon);
		-webkit-mask-position: center;
		mask-position: center;
		-webkit-mask-repeat: no-repeat;
		mask-repeat: no-repeat;
		-webkit-mask-size: contain;
		mask-size: contain;
	}

	.vmscm-menu-icon-inline {
		display: flex;
		align-items: center;
		justify-content: center;
		background: transparent;
		color: #0067ed;
		-webkit-mask: none;
		mask: none;
	}

	.vmscm-menu-icon-inline svg {
		display: block;
		width: 100%;
		height: 100%;
		max-width: 100%;
		max-height: 100%;
	}

	.vmscm-menu-icon-inline svg:not([fill="none"]),
	.vmscm-menu-icon-inline svg [fill]:not([fill="none"]) {
		fill: currentColor !important;
	}

	.vmscm-menu-icon-inline svg [stroke]:not([stroke="none"]) {
		stroke: currentColor !important;
	}

	.vmscm-menu-label {
		min-width: 0;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.vmscm-menu-list a:hover,
	.vmscm-wordpress-menu a:hover,
	.vmscm-menu-list a:focus-visible,
	.vmscm-wordpress-menu a:focus-visible {
		border-color: color-mix(in srgb, var(--vmscm-color) 34%, var(--vmscm-border));
		background: var(--vmscm-soft);
		color: var(--vmscm-color);
	}

	.vmscm-wordpress-menu .sub-menu a,
	.vmscm-wordpress-menu .children a {
		min-height: 42px;
		margin-top: 6px;
		padding: 8px 10px;
		background: #f8f9fb;
		font-size: 13px;
	}

}

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

/* Wallet widget shortcode: [vm_wallet_widget]. */
.vmscm-wallet-widget,
.vmscm-wallet-widget *,
.vmscm-wallet-widget *::before,
.vmscm-wallet-widget *::after {
	box-sizing: border-box;
}

.vmscm-wallet-widget {
	display: inline-block;
	position: relative;
	vertical-align: middle;
	font-family: Roboto, Arial, Helvetica, sans-serif;
	line-height: normal;
}

.vmscm-wallet-widget > summary {
	list-style: none;
}

.vmscm-wallet-widget > summary::-webkit-details-marker {
	display: none;
}

.vmscm-wallet-trigger {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 44px;
	padding: 7px 13px;
	border: 2px solid #0067ed;
	border-radius: 999px;
	background: #fff;
	color: #0a2e6f;
	box-shadow: 0 5px 16px rgba(0, 103, 237, .14);
	cursor: pointer;
	white-space: nowrap;
	transition: transform .16s ease, box-shadow .16s ease, background-color .16s ease;
	-webkit-tap-highlight-color: transparent;
}

.vmscm-wallet-trigger:hover {
	transform: translateY(-1px);
	box-shadow: 0 8px 20px rgba(0, 103, 237, .2);
}

.vmscm-wallet-trigger:focus-visible {
	outline: 3px solid rgba(0, 103, 237, .24);
	outline-offset: 2px;
}

.vmscm-wallet-trigger-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	flex: 0 0 26px;
	color: #0067ed;
}

.vmscm-wallet-trigger-icon img,
.vmscm-wallet-trigger-icon svg {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.vmscm-wallet-trigger-icon svg,
.vmscm-wallet-action-icon svg,
.vmscm-wallet-chevron {
	fill: none;
	stroke: currentColor;
	stroke-width: 1.9;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.vmscm-wallet-trigger-balance {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 13px;
	font-weight: 500;
}

.vmscm-wallet-trigger-balance strong {
	color: #0067ed;
	font-weight: 600;
}

.vmscm-wallet-trigger-balance strong,
.vmscm-wallet-trigger-balance strong [data-vmscm-wallet-amount] {
	font-size: 13px !important;
	font-weight: 600 !important;
	line-height: 1.2 !important;
	letter-spacing: inherit !important;
	opacity: 1 !important;
}

.vmscm-wallet-menu {
	position: fixed;
	z-index: 2147483000;
	top: var(--vmscm-wallet-menu-top, 72px);
	left: var(--vmscm-wallet-menu-left, 12px);
	width: var(--vmscm-wallet-menu-width, 292px);
	max-width: calc(100vw - 24px);
	overflow: hidden;
	border: 1px solid #dfe8f5;
	border-radius: 17px;
	background: #fff;
	box-shadow: 0 18px 42px rgba(8, 31, 71, .2);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(-8px) scale(.975);
	transform-origin: top right;
	transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}

.vmscm-wallet-widget[open] .vmscm-wallet-menu {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0) scale(1);
}

.vmscm-wallet-menu-head {
	display: grid;
	gap: 6px;
	padding: 18px 19px;
	background: linear-gradient(135deg, #0067ed, #2583ff);
	color: #fff;
}

.vmscm-wallet-menu-head span {
	font-size: 13px;
	font-weight: 500;
	opacity: .82;
}

.vmscm-wallet-menu-head strong {
	font-size: 24px;
	font-weight: 600;
	line-height: 1.1;
}

.vmscm-wallet-menu-head strong,
.vmscm-wallet-menu-head strong [data-vmscm-wallet-amount] {
	font-size: 24px !important;
	font-weight: 600 !important;
	line-height: 1.1 !important;
	letter-spacing: inherit !important;
	color: inherit !important;
	opacity: 1 !important;
}

.vmscm-wallet-actions {
	display: grid;
}

.vmscm-wallet-actions a {
	display: grid;
	grid-template-columns: 40px minmax(0, 1fr) 18px;
	align-items: center;
	gap: 12px;
	min-height: 64px;
	padding: 12px 15px;
	border: 0;
	border-top: 1px solid #edf1f7;
	background: #fff;
	color: #0a2e6f;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.25;
	text-decoration: none;
	transition: background-color .14s ease, color .14s ease;
}

.vmscm-wallet-actions a:hover,
.vmscm-wallet-actions a:focus-visible {
	background: #f3f7ff;
	color: #0067ed;
}

.vmscm-wallet-actions a:focus-visible {
	outline: 2px solid #0067ed;
	outline-offset: -3px;
}

.vmscm-wallet-action-icon {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	padding: 10px;
	border-radius: 12px;
	background: #edf5ff;
	color: #0067ed;
}

.vmscm-wallet-action-icon svg,
.vmscm-wallet-chevron {
	display: block;
	width: 100%;
	height: 100%;
}

.vmscm-wallet-chevron {
	width: 18px;
	height: 18px;
	color: #8a9ab2;
}

@media (max-width: 480px) {
	.vmscm-wallet-trigger {
		width: 46px;
		height: 46px;
		min-width: 46px;
		min-height: 46px;
		padding: 9px;
		border-radius: 50%;
	}

	.vmscm-wallet-trigger-balance {
		display: none;
	}

	.vmscm-wallet-trigger-icon {
		width: 25px;
		height: 25px;
		flex-basis: 25px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.vmscm-wallet-trigger,
	.vmscm-wallet-menu,
	.vmscm-wallet-actions a {
		transition-duration: .01ms;
	}
}


/* v1.6.4 — mobile header spacing only.
   Keep the original circular wallet trigger/icon unchanged; only make
   Woodmart's header host slightly more compact on narrow screens. */
@media (max-width: 480px) {
	.wd-header-text:has(.vmscm-wallet-widget),
	.wd-header-html:has(.vmscm-wallet-widget) {
		flex: 0 0 auto !important;
		min-width: 0 !important;
		padding-inline-start: 10px !important;
		padding-inline-end: 4px !important;
		margin-inline-end: 0 !important;
	}
}
