.vmbpc {
	--vmbpc-accent: #6b2f5f;
	--vmbpc-accent-dark: #4d2046;
	--vmbpc-text: #1c2430;
	--vmbpc-muted: #667085;
	--vmbpc-border: #e5e7eb;
	--vmbpc-surface: #ffffff;
	--vmbpc-soft: #f7f5f7;
	--vmbpc-success: #176b48;
	--vmbpc-danger: #a72525;
	--vmbpc-radius: 18px;
	--vmbpc-shadow: 0 12px 35px rgba(29, 24, 30, .08);
	color: var(--vmbpc-text);
	font-family: inherit;
	line-height: 1.55;
	box-sizing: border-box;
}
.vmbpc *, .vmbpc *::before, .vmbpc *::after { box-sizing: inherit; }
.vmbpc img { max-width: 100%; height: auto; }
.vmbpc a { color: inherit; }
.vmbpc button, .vmbpc input, .vmbpc select, .vmbpc textarea { font: inherit; }
.vmbpc button, .vmbpc select { min-height: 44px; }
.vmbpc :focus-visible { outline: 3px solid color-mix(in srgb, var(--vmbpc-accent) 50%, white); outline-offset: 3px; }
.vmbpc [hidden] { display: none !important; }
.vmbpc-catalog,
.vmbpc-product-page,
.vmbpc-term-page {
	width: min(100% - 32px, 1280px);
	margin-inline: auto;
}
.vmbpc-catalog { padding-block: clamp(28px, 5vw, 72px); }
.vmbpc-catalog-header { max-width: 760px; margin-bottom: 28px; }
.vmbpc-catalog-header h2,
.vmbpc-term-hero h1,
.vmbpc-product-summary h1 {
	margin: 0;
	color: var(--vmbpc-text);
	font-size: clamp(2rem, 5vw, 4rem);
	line-height: 1.05;
	letter-spacing: -.035em;
}
.vmbpc-catalog-header h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
.vmbpc-catalog-header p,
.vmbpc-product-lead {
	margin: 14px 0 0;
	color: var(--vmbpc-muted);
	font-size: clamp(1rem, 2vw, 1.2rem);
	max-width: 68ch;
}
.vmbpc-search {
	position: relative;
	display: flex;
	align-items: center;
	max-width: 850px;
	margin-bottom: 22px;
}
.vmbpc-search svg {
	position: absolute;
	left: 18px;
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	color: var(--vmbpc-muted);
	pointer-events: none;
}
.vmbpc-search input {
	width: 100%;
	min-height: 58px;
	padding: 13px 52px;
	border: 1px solid var(--vmbpc-border);
	border-radius: 999px;
	background: var(--vmbpc-surface);
	color: var(--vmbpc-text);
	box-shadow: 0 4px 18px rgba(30, 24, 31, .04);
}
.vmbpc-search input::placeholder { color: #8b929e; }
.vmbpc-search-clear {
	position: absolute;
	right: 8px;
	width: 42px;
	height: 42px;
	min-height: 42px;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: var(--vmbpc-muted);
	font-size: 24px;
	cursor: pointer;
}
.vmbpc-category-tiles {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: minmax(180px, 1fr);
	gap: 10px;
	overflow-x: auto;
	padding: 2px 2px 12px;
	scroll-snap-type: x proximity;
}
.vmbpc-category-tile {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 12px 15px;
	border: 1px solid var(--vmbpc-border);
	border-radius: 14px;
	background: var(--vmbpc-surface);
	color: var(--vmbpc-text);
	text-align: left;
	cursor: pointer;
	scroll-snap-align: start;
	transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.vmbpc-category-tile:hover { transform: translateY(-1px); border-color: var(--vmbpc-accent); }
.vmbpc-category-tile.is-active { color: #fff; border-color: var(--vmbpc-accent); background: var(--vmbpc-accent); }
.vmbpc-category-tile small { opacity: .72; }
.vmbpc-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin: 18px 0;
}
.vmbpc-filter-toggle,
.vmbpc-sort select,
.vmbpc-filter-grid select {
	border: 1px solid var(--vmbpc-border);
	border-radius: 12px;
	background: var(--vmbpc-surface);
	color: var(--vmbpc-text);
}
.vmbpc-filter-toggle {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	cursor: pointer;
}
.vmbpc-filter-toggle svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 2; }
.vmbpc-filter-count {
	display: inline-grid;
	place-items: center;
	min-width: 24px;
	height: 24px;
	border-radius: 999px;
	background: var(--vmbpc-accent);
	color: #fff;
	font-size: 12px;
}
.vmbpc-sort { display: flex; align-items: center; gap: 9px; }
.vmbpc-sort label { color: var(--vmbpc-muted); font-size: .9rem; }
.vmbpc-sort select { padding: 8px 36px 8px 12px; }
.vmbpc-filter-panel {
	position: fixed;
	inset: auto 0 0;
	z-index: 100001;
	max-height: min(88vh, 760px);
	overflow: auto;
	padding: 20px;
	border-radius: 22px 22px 0 0;
	background: var(--vmbpc-surface);
	box-shadow: 0 -14px 60px rgba(0,0,0,.22);
	transform: translateY(105%);
	visibility: hidden;
	transition: transform .25s ease, visibility .25s ease;
}
.vmbpc-filter-panel.is-open { transform: translateY(0); visibility: visible; }
.vmbpc-filter-backdrop {
	position: fixed;
	inset: 0;
	z-index: 100000;
	background: rgba(14, 17, 22, .54);
	backdrop-filter: blur(2px);
}
.vmbpc-filter-panel-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 20px;
}
.vmbpc-filter-panel-header h3 { margin: 0; font-size: 1.35rem; }
.vmbpc-filter-panel-header button {
	width: 44px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: var(--vmbpc-soft);
	font-size: 26px;
	cursor: pointer;
}
.vmbpc-filter-grid { display: grid; gap: 16px; }
.vmbpc-filter-grid label > span { display: block; margin-bottom: 6px; font-weight: 650; }
.vmbpc-filter-grid select {
	width: 100%;
	padding: 9px 36px 9px 12px;
}
.vmbpc-check { display: flex !important; align-items: center; gap: 10px; min-height: 44px; }
.vmbpc-check input { width: 20px; height: 20px; accent-color: var(--vmbpc-accent); }
.vmbpc-check span { margin: 0 !important; }
.vmbpc-filter-panel-actions {
	position: sticky;
	bottom: -20px;
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
	margin: 22px -20px -20px;
	padding: 14px 20px max(14px, env(safe-area-inset-bottom));
	border-top: 1px solid var(--vmbpc-border);
	background: var(--vmbpc-surface);
}
.vmbpc-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 10px 17px;
	border: 1px solid var(--vmbpc-accent);
	border-radius: 999px;
	background: var(--vmbpc-accent);
	color: #fff !important;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none !important;
	cursor: pointer;
	transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.vmbpc-button:hover { background: var(--vmbpc-accent-dark); border-color: var(--vmbpc-accent-dark); transform: translateY(-1px); }
.vmbpc-button--ghost { background: transparent; color: var(--vmbpc-accent) !important; }
.vmbpc-button--large { min-height: 52px; padding-inline: 24px; }
.vmbpc-active-filters { display: flex; flex-wrap: wrap; gap: 8px; min-height: 4px; margin: 8px 0 16px; }
.vmbpc-chip {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	min-height: 36px !important;
	padding: 6px 10px;
	border: 1px solid color-mix(in srgb, var(--vmbpc-accent) 25%, white);
	border-radius: 999px;
	background: color-mix(in srgb, var(--vmbpc-accent) 8%, white);
	color: var(--vmbpc-accent-dark);
	font-size: .9rem;
	cursor: pointer;
}
.vmbpc-chip span:last-child { font-size: 18px; line-height: 1; }
.vmbpc-results-head { display: flex; align-items: center; gap: 12px; min-height: 32px; margin-bottom: 14px; }
.vmbpc-results-count { margin: 0; color: var(--vmbpc-muted); font-weight: 650; }
.vmbpc-loader {
	width: 20px;
	height: 20px;
	border: 2px solid var(--vmbpc-border);
	border-top-color: var(--vmbpc-accent);
	border-radius: 50%;
	animation: vmbpc-spin .7s linear infinite;
}
@keyframes vmbpc-spin { to { transform: rotate(360deg); } }
.vmbpc-products-grid {
	display: grid;
	grid-template-columns: repeat(var(--vmbpc-columns-mobile, 1), minmax(0, 1fr));
	gap: clamp(16px, 2vw, 26px);
	align-items: stretch;
}
.vmbpc-product-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	height: 100%;
	overflow: hidden;
	border: 1px solid var(--vmbpc-border);
	border-radius: var(--vmbpc-radius);
	background: var(--vmbpc-surface);
	box-shadow: 0 6px 24px rgba(34, 27, 35, .05);
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.vmbpc-product-card:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--vmbpc-accent) 30%, var(--vmbpc-border)); box-shadow: var(--vmbpc-shadow); }
.vmbpc-product-card__image {
	position: relative;
	display: grid;
	place-items: center;
	aspect-ratio: var(--vmbpc-image-ratio, 4 / 3);
	padding: 18px;
	overflow: hidden;
	background: linear-gradient(145deg, #fff, var(--vmbpc-soft));
	text-decoration: none;
}
.vmbpc-product-card__image img { width: 100%; height: 100%; object-fit: contain; object-position: center; }
.vmbpc-product-card__placeholder {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	min-height: 220px;
	color: var(--vmbpc-muted);
	background: repeating-linear-gradient(135deg,#fafafa,#fafafa 12px,#f5f5f5 12px,#f5f5f5 24px);
	text-align: center;
}
.vmbpc-card-flags { position: absolute; top: 12px; left: 12px; display: flex; flex-wrap: wrap; gap: 6px; }
.vmbpc-card-flags span { padding: 5px 9px; border-radius: 999px; background: var(--vmbpc-accent); color: #fff; font-size: .75rem; font-weight: 750; }
.vmbpc-product-card__body { display: flex; flex: 1; flex-direction: column; padding: 18px; }
.vmbpc-product-card__brand {
	display: flex;
	align-items: center;
	width: fit-content;
	min-height: 34px;
	margin-bottom: 8px;
	color: var(--vmbpc-accent);
	font-size: .86rem;
	font-weight: 800;
	text-decoration: none;
}
.vmbpc-product-card__brand img { width: auto; max-width: 115px; height: 34px; object-fit: contain; object-position: left center; }
.vmbpc-product-card__eyebrow,
.vmbpc-kicker { margin: 0 0 5px; color: var(--vmbpc-accent); font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.vmbpc-product-card h3 { margin: 0; font-size: clamp(1.08rem, 2vw, 1.3rem); line-height: 1.25; }
.vmbpc-product-card h3 a { text-decoration: none; }
.vmbpc-product-card h3 a:hover { color: var(--vmbpc-accent); }
.vmbpc-product-card__description {
	display: -webkit-box;
	margin: 10px 0 14px;
	overflow: hidden;
	color: var(--vmbpc-muted);
	font-size: .94rem;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: var(--vmbpc-description-lines, 3);
}
.vmbpc-badges { display: flex; flex-wrap: wrap; gap: 6px; margin: 4px 0 16px; }
.vmbpc-badges span,
.vmbpc-badges a {
	display: inline-flex;
	align-items: center;
	min-height: 26px;
	padding: 3px 8px;
	border-radius: 999px;
	background: var(--vmbpc-soft);
	color: #4d5360;
	font-size: .75rem;
	font-weight: 650;
	text-decoration: none;
}
.vmbpc-badges .vmbpc-badge-age { background: #fff0f0; color: #8c1e1e; }
.vmbpc-product-card__footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; padding-top: 10px; }
.vmbpc-pack { color: var(--vmbpc-muted); font-size: .86rem; font-weight: 700; }
.vmbpc-product-card__footer .vmbpc-button { padding: 9px 13px; font-size: .88rem; }

.vmbpc-hide-badges .vmbpc-product-card .vmbpc-badges { display: none; }
.vmbpc-hide-brand-logo .vmbpc-product-card__brand img { display: none; }
.vmbpc-hide-brand-logo .vmbpc-product-card__brand .screen-reader-text {
	position: static !important;
	width: auto !important;
	height: auto !important;
	margin: 0 !important;
	overflow: visible !important;
	clip: auto !important;
	clip-path: none !important;
	white-space: normal !important;
}

@media (min-width: 768px) {
	.vmbpc-layout-list .vmbpc-products-grid { grid-template-columns: 1fr; }
	.vmbpc-layout-list .vmbpc-product-card {
		display: grid;
		grid-template-columns: minmax(220px, 32%) 1fr;
	}
	.vmbpc-layout-list .vmbpc-product-card__image {
		height: 100%;
		min-height: 260px;
		aspect-ratio: auto;
	}
	.vmbpc-layout-list .vmbpc-product-card__body { min-width: 0; }
}

.vmbpc-empty { grid-column: 1 / -1; padding: 48px 20px; border: 1px dashed var(--vmbpc-border); border-radius: var(--vmbpc-radius); background: var(--vmbpc-soft); text-align: center; }
.vmbpc-empty h3 { margin: 0 0 8px; }
.vmbpc-empty p { margin: 0; color: var(--vmbpc-muted); }
.vmbpc-error { margin-top: 16px; padding: 12px 14px; border-radius: 10px; background: #fff0f0; color: var(--vmbpc-danger); }
.vmbpc-pagination { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 7px; margin-top: 30px; }
.vmbpc-page-button {
	display: grid;
	place-items: center;
	min-width: 44px;
	height: 44px;
	padding: 0 10px;
	border: 1px solid var(--vmbpc-border);
	border-radius: 10px;
	background: var(--vmbpc-surface);
	color: var(--vmbpc-text);
	cursor: pointer;
}
.vmbpc-page-button.is-current { border-color: var(--vmbpc-accent); background: var(--vmbpc-accent); color: #fff; }
.vmbpc-page-button:disabled { opacity: .45; cursor: not-allowed; }

/* Brand and category grids */
.vmbpc-brand-grid,
.vmbpc-category-grid {
	display: grid;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	gap: 16px;
}
.vmbpc-brand-card,
.vmbpc-category-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 190px;
	padding: 22px;
	border: 1px solid var(--vmbpc-border);
	border-radius: var(--vmbpc-radius);
	background: var(--vmbpc-surface);
	text-align: center;
	text-decoration: none;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.vmbpc-brand-card:hover,
.vmbpc-category-card:hover { transform: translateY(-3px); border-color: var(--vmbpc-accent); box-shadow: var(--vmbpc-shadow); }
.vmbpc-brand-card__logo { display: grid; place-items: center; width: 100%; height: 100px; margin-bottom: 14px; }
.vmbpc-brand-card__logo img { width: 100%; height: 100%; object-fit: contain; }
.vmbpc-brand-card > span:last-child,
.vmbpc-category-card > span:last-child { margin-top: 5px; color: var(--vmbpc-muted); font-size: .88rem; }
.vmbpc-category-card { position: relative; align-items: flex-start; min-height: 150px; text-align: left; }
.vmbpc-category-card__icon { position: absolute; right: 18px; top: 16px; color: var(--vmbpc-accent); font-size: 1.35rem; }

/* Product and taxonomy pages */
.vmbpc-product-page,
.vmbpc-term-page { padding-block: clamp(24px, 5vw, 70px); }
.vmbpc-breadcrumbs { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 24px; color: var(--vmbpc-muted); font-size: .88rem; }
.vmbpc-breadcrumbs a { text-decoration: none; }
.vmbpc-breadcrumbs a:hover { color: var(--vmbpc-accent); }
.vmbpc-product-hero {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(28px, 5vw, 70px);
	align-items: center;
	margin-bottom: clamp(48px, 8vw, 100px);
}
.vmbpc-product-gallery__main {
	display: grid;
	place-items: center;
	aspect-ratio: 1 / 1;
	padding: clamp(18px, 4vw, 42px);
	border-radius: 26px;
	background: linear-gradient(145deg, #fff, var(--vmbpc-soft));
}
.vmbpc-product-gallery__main img { width: 100%; height: 100%; object-fit: contain; }
.vmbpc-product-gallery__thumbs { display: flex; gap: 10px; overflow-x: auto; margin-top: 12px; padding: 2px; }
.vmbpc-product-gallery__thumbs button {
	flex: 0 0 76px;
	width: 76px;
	height: 76px;
	padding: 6px;
	border: 1px solid var(--vmbpc-border);
	border-radius: 11px;
	background: #fff;
	cursor: pointer;
}
.vmbpc-product-gallery__thumbs img { width: 100%; height: 100%; object-fit: contain; }
.vmbpc-product-brand { display: block; width: fit-content; margin-bottom: 18px; text-decoration: none; }
.vmbpc-product-brand img { width: auto; max-width: 180px; height: 70px; object-fit: contain; object-position: left center; }
.vmbpc-product-taxonomy { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 12px; color: var(--vmbpc-accent); font-size: .9rem; font-weight: 750; }
.vmbpc-product-taxonomy a { text-decoration: none; }
.vmbpc-badges--large { margin-block: 18px; }
.vmbpc-badges--large a { min-height: 32px; padding: 5px 10px; font-size: .85rem; }
.vmbpc-product-pack { margin: 18px 0; }
.vmbpc-age-notice { display: flex; align-items: center; gap: 12px; margin: 20px 0; padding: 12px 14px; border: 1px solid #ffd2d2; border-radius: 12px; background: #fff5f5; color: #721b1b; }
.vmbpc-age-notice strong { display: grid; place-items: center; flex: 0 0 40px; height: 40px; border-radius: 50%; background: #a72525; color: #fff; }
.vmbpc-product-content { max-width: 980px; margin-inline: auto; }
.vmbpc-content-section { margin-block: clamp(34px, 6vw, 70px); }
.vmbpc-content-section h2,
.vmbpc-related h2,
.vmbpc-brand-feature h2,
.vmbpc-inquiry h2 { margin: 0 0 16px; font-size: clamp(1.55rem, 3vw, 2.35rem); line-height: 1.15; }
.vmbpc-prose { color: #343b46; }
.vmbpc-prose > :first-child { margin-top: 0; }
.vmbpc-prose > :last-child { margin-bottom: 0; }
.vmbpc-prose ul, .vmbpc-prose ol { padding-left: 1.25rem; }
.vmbpc-accordion { margin-bottom: 12px; border: 1px solid var(--vmbpc-border); border-radius: 14px; background: var(--vmbpc-surface); }
.vmbpc-accordion summary { position: relative; min-height: 54px; padding: 15px 52px 15px 17px; font-weight: 750; cursor: pointer; list-style: none; }
.vmbpc-accordion summary::-webkit-details-marker { display: none; }
.vmbpc-accordion summary::after { content: "+"; position: absolute; right: 18px; top: 50%; transform: translateY(-50%); color: var(--vmbpc-accent); font-size: 24px; }
.vmbpc-accordion[open] summary::after { content: "−"; }
.vmbpc-accordion__content { padding: 0 17px 18px; }
.vmbpc-data-list { margin: 0; }
.vmbpc-data-list > div { display: grid; grid-template-columns: minmax(130px, 1fr) 1.5fr; gap: 18px; padding: 10px 0; border-top: 1px solid var(--vmbpc-border); }
.vmbpc-data-list dt { color: var(--vmbpc-muted); }
.vmbpc-data-list dd { margin: 0; font-weight: 650; overflow-wrap: anywhere; }
.vmbpc-downloads { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.vmbpc-downloads a { display: flex; align-items: center; min-height: 48px; padding: 10px 14px; border: 1px solid var(--vmbpc-border); border-radius: 10px; text-decoration: none; }
.vmbpc-downloads a::before { content: "↓"; margin-right: 10px; color: var(--vmbpc-accent); font-weight: 800; }
.vmbpc-brand-feature {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	align-items: center;
	margin-block: clamp(44px, 8vw, 90px);
	padding: clamp(24px, 5vw, 48px);
	border-radius: 24px;
	background: var(--vmbpc-soft);
}
.vmbpc-brand-feature img { width: 100%; max-height: 130px; object-fit: contain; }
.vmbpc-brand-feature p { color: var(--vmbpc-muted); }
.vmbpc-brand-feature a { color: var(--vmbpc-accent); font-weight: 750; }
.vmbpc-related { margin-block: clamp(44px, 8vw, 90px); }
.vmbpc-inquiry {
	margin-top: clamp(50px, 8vw, 100px);
	padding: clamp(22px, 5vw, 50px);
	border-radius: 26px;
	background: var(--vmbpc-soft);
}
.vmbpc-inquiry__intro { max-width: 680px; margin-bottom: 24px; }
.vmbpc-inquiry__intro p:last-child { color: var(--vmbpc-muted); }
.vmbpc-form-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.vmbpc-form-grid label > span { display: block; margin-bottom: 6px; font-weight: 650; }
.vmbpc-form-grid input,
.vmbpc-form-grid textarea {
	width: 100%;
	min-height: 48px;
	padding: 11px 12px;
	border: 1px solid var(--vmbpc-border);
	border-radius: 10px;
	background: #fff;
	color: var(--vmbpc-text);
}
.vmbpc-form-grid textarea { min-height: 130px; resize: vertical; }
.vmbpc-form-grid input[readonly] { background: #f2f2f2; color: var(--vmbpc-muted); }
.vmbpc-consent { display: flex; align-items: flex-start; gap: 10px; margin: 18px 0; font-size: .9rem; }
.vmbpc-consent input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--vmbpc-accent); }
.vmbpc-consent a { color: var(--vmbpc-accent); }
.vmbpc-honeypot { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.vmbpc-form-message { margin-bottom: 18px; padding: 12px 14px; border-radius: 10px; }
.vmbpc-form-message--success { background: #eaf8f0; color: var(--vmbpc-success); }
.vmbpc-form-message--error { background: #fff0f0; color: var(--vmbpc-danger); }
.vmbpc-term-hero {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(26px, 5vw, 60px);
	align-items: center;
	margin-bottom: clamp(40px, 7vw, 80px);
	padding: clamp(24px, 5vw, 58px);
	border-radius: 28px;
	background: var(--vmbpc-soft);
}
.vmbpc-term-hero--simple { min-height: 260px; }
.vmbpc-term-hero__logo { display: grid; place-items: center; height: 180px; padding: 20px; border-radius: 18px; background: #fff; }
.vmbpc-term-hero__logo img { width: 100%; height: 100%; object-fit: contain; }
.vmbpc-term-company { margin: 10px 0 0; color: var(--vmbpc-muted); font-size: 1.05rem; }
.vmbpc-term-meta { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 18px; color: var(--vmbpc-muted); font-size: .9rem; }
.vmbpc-term-meta a { color: var(--vmbpc-accent); font-weight: 700; }

/* Responsive */
@media (min-width: 520px) {
	.vmbpc-products-grid { grid-template-columns: repeat(var(--vmbpc-columns-tablet, 2), minmax(0, 1fr)); }
	.vmbpc-brand-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.vmbpc-category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.vmbpc-filter-panel-actions { grid-template-columns: 1fr 1fr; }
	.vmbpc-form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.vmbpc-form-grid__wide { grid-column: 1 / -1; }
}
@media (min-width: 768px) {
	.vmbpc-filter-toggle { display: none; }
	.vmbpc-filter-panel {
		position: static;
		max-height: none;
		overflow: visible;
		padding: 18px;
		border: 1px solid var(--vmbpc-border);
		border-radius: 16px;
		box-shadow: none;
		transform: none;
		visibility: visible;
	}
	.vmbpc-filter-panel[aria-hidden="true"] { visibility: visible; }
	.vmbpc-filter-panel-header,
	.vmbpc-filter-panel-actions,
	.vmbpc-filter-backdrop { display: none !important; }
	.vmbpc-filter-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); align-items: end; }
	.vmbpc-check { padding-bottom: 1px; }
	.vmbpc-brand-grid { grid-template-columns: repeat(var(--vmbpc-brand-columns, 4), minmax(0, 1fr)); }
	.vmbpc-category-grid { grid-template-columns: repeat(var(--vmbpc-category-columns, 4), minmax(0, 1fr)); }
	.vmbpc-product-hero { grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); }
	.vmbpc-brand-feature { grid-template-columns: minmax(180px, .35fr) 1fr; }
	.vmbpc-term-hero { grid-template-columns: minmax(220px, .35fr) 1fr; }
	.vmbpc-term-hero--simple { grid-template-columns: 1fr; }
}
@media (min-width: 1024px) {
	.vmbpc-products-grid { grid-template-columns: repeat(var(--vmbpc-columns, 4), minmax(0, 1fr)); }
}
@media (max-width: 519px) {
	.vmbpc-catalog,
	.vmbpc-product-page,
	.vmbpc-term-page { width: min(100% - 22px, 1280px); }
	.vmbpc-sort label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
	.vmbpc-product-card__footer { align-items: stretch; flex-direction: column; }
	.vmbpc-product-card__footer .vmbpc-button { width: 100%; }
	.vmbpc-data-list > div { grid-template-columns: 1fr; gap: 2px; }
	.vmbpc-product-gallery__main { aspect-ratio: 4 / 3; }
}
@media (prefers-reduced-motion: reduce) {
	.vmbpc *, .vmbpc *::before, .vmbpc *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
