.cvl-catalog,
.cvl-catalog * {
	box-sizing: border-box;
}

.cvl-catalog {
	--cvl-ink: #07090a;
	--cvl-paper: #f4f1e9;
	--cvl-muted: #9a9b9c;
	--cvl-line: rgba(255, 255, 255, 0.22);
	--cvl-gold: #d7b23f;
	position: relative !important;
	width: 100vw !important;
	max-width: 100vw !important;
	margin-right: calc(50% - 50vw) !important;
	margin-left: calc(50% - 50vw) !important;
	padding: 0;
	overflow: clip;
	color: var(--cvl-paper);
	background: var(--cvl-ink);
	font-family: inherit;
	line-height: 1.5;
	text-align: left;
}

/*
 * Block themes frequently constrain Shortcode blocks to the global content
 * width. Keep the catalogue full bleed even when those theme rules load after
 * the plugin stylesheet.
 */
.wp-block-shortcode:has(> .cvl-catalog),
.entry-content:has(> .wp-block-shortcode > .cvl-catalog) {
	width: 100% !important;
	max-width: none !important;
	margin-right: 0 !important;
	margin-left: 0 !important;
	padding-right: 0 !important;
	padding-left: 0 !important;
}

/* Landing pages that contain this shortcode keep their semantic WordPress
 * title in the editor, while the visual title and theme content gutters are
 * removed on the front end. Other pages are unaffected. */
.cvl-catalog-page .wp-block-post-title,
.cvl-catalog-page .entry-title,
.cvl-catalog-page .page-title,
.cvl-catalog-page .entry-header {
	display: none !important;
}

.cvl-catalog-page main,
.cvl-catalog-page .wp-block-post-content,
.cvl-catalog-page .entry-content,
.cvl-catalog-page .wp-block-shortcode {
	margin-block-start: 0 !important;
	margin-block-end: 0 !important;
	padding-top: 0 !important;
	padding-right: 0 !important;
	padding-bottom: 0 !important;
	padding-left: 0 !important;
}

.cvl-catalog a {
	color: inherit;
	text-decoration: none;
}

.cvl-catalog button,
.cvl-catalog input,
.cvl-catalog select {
	font: inherit;
}

.cvl-catalog :where(a, button, select, input):focus-visible {
	outline: 2px solid var(--cvl-paper);
	outline-offset: 4px;
}

.cvl-hero {
	position: relative;
	display: grid;
	min-height: max(var(--cvl-hero-height-desktop, 640px), min(45vw, 920px));
	isolation: isolate;
	overflow: hidden;
	background-color: #111315;
}

.cvl-hero--fallback {
	background-image:
		linear-gradient(180deg, rgba(4, 5, 6, 0.12), rgba(4, 5, 6, 0.8)),
		var(--cvl-texture-desktop);
	background-position: center;
	background-repeat: no-repeat, repeat-y;
	background-size: cover, max(100vw, 2560px) auto;
}

.cvl-hero-picture,
.cvl-hero-image,
.cvl-hero-shade {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.cvl-hero-picture {
	z-index: -2;
	display: block;
}

.cvl-hero-image {
	display: block;
	max-width: none !important;
	object-fit: cover;
	object-position: center 38%;
	border: 0;
	border-radius: 0 !important;
}

.cvl-hero-shade {
	z-index: -1;
	background:
		linear-gradient(180deg, rgba(5, 6, 7, 0.03) 0%, rgba(5, 6, 7, 0.05) 48%, rgba(5, 6, 7, 0.5) 100%),
		linear-gradient(90deg, rgba(5, 6, 7, 0.09), transparent 40%, rgba(5, 6, 7, 0.09));
}

.cvl-hero-copy {
	align-self: end;
	width: min(100% - 40px, 1500px);
	margin: 0 auto clamp(56px, 8vh, 104px);
	text-align: center;
	text-shadow: 0 2px 24px rgba(0, 0, 0, 0.52);
}

.cvl-hero-title {
	margin: 0;
	color: #fff;
	font-size: clamp(42px, 5.2vw, 82px);
	font-weight: 300;
	line-height: 1;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.cvl-hero-subtitle {
	max-width: 980px;
	margin: clamp(22px, 3vw, 38px) auto 0;
	color: rgba(255, 255, 255, 0.94);
	font-size: clamp(16px, 1.55vw, 25px);
	font-weight: 400;
	letter-spacing: 0.02em;
}

.cvl-catalog-body {
	position: relative;
	min-height: 60vh;
	isolation: isolate;
	background: var(--cvl-ink);
}

/* A single viewport-sized texture stays in place while products move over it.
 * The sticky layer avoids repeat seams and works more reliably on mobile than
 * background-attachment: fixed. */
.cvl-catalog-body::before {
	position: sticky;
	top: 0;
	z-index: 0;
	display: block;
	width: 100%;
	height: 100vh;
	margin-bottom: -100vh;
	background-image:
		linear-gradient(180deg, rgba(4, 6, 8, 0.18), rgba(4, 6, 8, 0.3)),
		var(--cvl-texture-desktop);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	pointer-events: none;
}

.cvl-catalog-body > * {
	position: relative;
	z-index: 1;
}

.cvl-toolbar {
	position: relative;
	z-index: 5;
	display: grid;
	grid-template-columns: minmax(180px, 1fr) auto;
	align-items: center;
	min-height: 84px;
	padding: 0 clamp(28px, 6vw, 128px);
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
}

.cvl-product-count {
	display: inline-flex;
	align-items: center;
	justify-self: start;
	gap: 14px;
	margin: 0;
	color: rgba(244, 241, 233, 0.8);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.cvl-product-count::before {
	width: 28px;
	height: 1px;
	background: rgba(180, 138, 85, 0.82);
	content: "";
}

.cvl-product-count:only-child {
	grid-column: 1 / -1;
}

.cvl-controls {
	display: flex;
	align-items: center;
	justify-self: end;
	gap: 8px;
	min-height: 84px;
}

.cvl-controls:first-child {
	grid-column: 1 / -1;
}

.cvl-sort-menu,
.cvl-filter-toggle {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-width: 176px;
	margin: 0;
	padding: 0 20px;
	border: 0 !important;
	border-radius: 0;
	color: rgba(244, 241, 233, 0.82);
	background: transparent;
	box-shadow: none !important;
	font-size: 13px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	transition: color 160ms ease, background-color 160ms ease;
}

.cvl-sort-menu:hover,
.cvl-filter-toggle:hover {
	color: #fff;
	background: rgba(255, 255, 255, 0.035);
}

.cvl-js .cvl-native-sort {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	margin: -1px !important;
	padding: 0 !important;
	overflow: hidden !important;
	clip: rect(0 0 0 0) !important;
	clip-path: inset(50%) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

.cvl-catalog:not(.cvl-js) .cvl-sort-trigger,
.cvl-catalog:not(.cvl-js) .cvl-sort-options {
	display: none !important;
}

.cvl-catalog:not(.cvl-js) .cvl-native-sort {
	max-width: 180px;
	border: 0;
	color: var(--cvl-paper);
	background: transparent;
}

.cvl-sort-trigger {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	width: 100%;
	height: 100%;
	min-height: 84px;
	padding: 0;
	border: 0;
	border-radius: 0;
	color: var(--cvl-paper);
	background: transparent;
	box-shadow: none;
	cursor: pointer;
}

.cvl-sort-caption {
	color: rgba(244, 241, 233, 0.54);
}

.cvl-sort-current {
	color: #fff;
	font-weight: 400;
}

.cvl-sort-chevron {
	display: inline-block;
	font-size: 18px;
	line-height: 1;
	transition: transform 180ms ease;
}

.cvl-sort-trigger[aria-expanded="true"] .cvl-sort-chevron {
	transform: rotate(180deg);
}

.cvl-sort-options {
	position: absolute;
	top: calc(100% - 1px);
	right: 0;
	z-index: 20;
	display: grid;
	width: max-content;
	min-width: 245px;
	padding: 9px;
	border: 0;
	color: #fff;
	background: rgba(8, 10, 11, 0.9);
	-webkit-backdrop-filter: blur(20px) saturate(108%);
	backdrop-filter: blur(20px) saturate(108%);
	box-shadow: 0 22px 52px rgba(0, 0, 0, 0.38);
}

.cvl-sort-options[hidden] {
	display: none !important;
}

.cvl-sort-options button {
	width: 100%;
	padding: 12px 14px;
	border: 0;
	border-radius: 0;
	color: rgba(255, 255, 255, 0.82);
	background: transparent;
	box-shadow: none;
	font-size: 14px;
	line-height: 1.35;
	text-align: left;
	cursor: pointer;
}

.cvl-sort-options button:hover,
.cvl-sort-options button:focus-visible,
.cvl-sort-options button[aria-checked="true"] {
	color: #fff;
	background: rgba(180, 138, 85, 0.14);
	box-shadow: inset 2px 0 0 rgba(180, 138, 85, 0.86);
}

.cvl-filter-toggle {
	cursor: pointer;
}

.cvl-filter-toggle:only-child {
	grid-column: 1 / -1;
}

.cvl-filter-toggle span {
	font-size: 20px;
	font-weight: 300;
	transition: transform 180ms ease;
}

.cvl-filter-toggle[aria-expanded="true"] span {
	transform: rotate(45deg);
}

.cvl-filter-panel {
	position: absolute;
	top: 100%;
	right: 0;
	left: 0;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 28px;
	align-items: end;
	padding: 30px clamp(24px, 5vw, 100px);
	border: 0;
	background: rgba(7, 9, 10, 0.58);
	-webkit-backdrop-filter: blur(20px) saturate(106%);
	backdrop-filter: blur(20px) saturate(106%);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.08),
		0 24px 50px rgba(0, 0, 0, 0.26);
}

.cvl-filter-panel[hidden] {
	display: none !important;
}

.cvl-filter-fields {
	display: grid;
	grid-template-columns: repeat(2, minmax(190px, 1fr)) auto;
	gap: 24px;
	align-items: end;
}

.cvl-filter-field {
	display: grid;
	gap: 8px;
	min-width: 0;
}

.cvl-filter-label {
	font-size: 12px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.cvl-filter-select {
	position: relative;
	min-width: 0;
}

.cvl-catalog:not(.cvl-js) .cvl-filter-select-trigger,
.cvl-catalog:not(.cvl-js) .cvl-filter-select-options {
	display: none !important;
}

.cvl-js .cvl-filter-native {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	margin: -1px !important;
	padding: 0 !important;
	overflow: hidden !important;
	clip: rect(0 0 0 0) !important;
	clip-path: inset(50%) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

.cvl-filter-native,
.cvl-filter-select-trigger {
	width: 100%;
	min-height: 44px;
	padding: 8px 36px 8px 12px;
	border: 1px solid var(--cvl-line);
	border-radius: 0;
	color: var(--cvl-paper);
	background: rgba(8, 10, 11, 0.32);
}

.cvl-filter-select-trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 8px 13px;
	box-shadow: none;
	font-size: 13px;
	letter-spacing: 0.025em;
	text-align: left;
	cursor: pointer;
	transition: border-color 160ms ease, background-color 160ms ease;
}

.cvl-filter-select-trigger:hover,
.cvl-filter-select-trigger[aria-expanded="true"] {
	border-color: rgba(180, 138, 85, 0.78);
	background: rgba(8, 10, 11, 0.48);
}

.cvl-filter-chevron {
	display: inline-block;
	color: rgba(244, 241, 233, 0.72);
	font-size: 17px;
	line-height: 1;
	transition: transform 160ms ease;
}

.cvl-filter-select-trigger[aria-expanded="true"] .cvl-filter-chevron {
	transform: rotate(180deg);
}

.cvl-filter-select-options {
	position: absolute;
	top: calc(100% + 7px);
	right: 0;
	left: 0;
	z-index: 30;
	display: grid;
	max-height: 280px;
	padding: 8px;
	overflow-y: auto;
	border: 0;
	background: rgba(8, 10, 11, 0.92);
	-webkit-backdrop-filter: blur(20px) saturate(108%);
	backdrop-filter: blur(20px) saturate(108%);
	box-shadow: 0 20px 46px rgba(0, 0, 0, 0.38);
}

.cvl-filter-select-options[hidden] {
	display: none !important;
}

.cvl-filter-select-options button {
	width: 100%;
	padding: 11px 13px;
	border: 0;
	border-radius: 0;
	color: rgba(255, 255, 255, 0.78);
	background: transparent;
	box-shadow: none;
	font-size: 13px;
	line-height: 1.35;
	text-align: left;
	cursor: pointer;
}

.cvl-filter-select-options button:hover,
.cvl-filter-select-options button:focus-visible,
.cvl-filter-select-options button[aria-selected="true"] {
	color: #fff;
	background: rgba(180, 138, 85, 0.14);
	box-shadow: inset 2px 0 0 rgba(180, 138, 85, 0.86);
}

.cvl-sale-check {
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 44px;
	font-size: 13px;
	letter-spacing: 0.05em;
}

.cvl-sale-check input {
	width: 18px;
	height: 18px;
	margin: 0;
	accent-color: var(--cvl-gold);
}

.cvl-filter-actions {
	display: flex;
	align-items: center;
	gap: 18px;
}

.cvl-apply-filter {
	min-height: 44px;
	padding: 10px 24px;
	border: 1px solid rgba(180, 138, 85, 0.76);
	border-radius: 0;
	color: #fff;
	background: rgba(180, 138, 85, 0.13);
	cursor: pointer;
	transition: border-color 160ms ease, background-color 160ms ease;
}

.cvl-apply-filter:hover,
.cvl-apply-filter:focus-visible {
	border-color: rgba(211, 173, 116, 0.96);
	background: rgba(180, 138, 85, 0.24);
}

.cvl-filter-actions a,
.cvl-reset-link {
	border-bottom: 1px solid currentColor;
	font-size: 13px;
	letter-spacing: 0.06em;
}

.cvl-product-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	column-gap: clamp(44px, 6%, 120px);
	row-gap: var(--cvl-product-gap-desktop, 86px);
	width: min(100%, 1900px);
	margin: 0 auto;
	padding: clamp(80px, 9vw, 160px) clamp(28px, 6%, 110px);
}

.cvl-product-card {
	display: grid;
	grid-template-columns: minmax(160px, 43%) minmax(150px, 1fr);
	gap: clamp(22px, 5%, 44px);
	align-items: center;
	min-width: 0;
	min-height: var(--cvl-product-height-desktop, 370px);
	margin: 0;
	color: var(--cvl-paper);
	background: transparent;
	transform: translateY(0);
	transition:
		transform 340ms cubic-bezier(0.22, 1, 0.36, 1),
		opacity 320ms ease,
		filter 320ms ease;
}

.cvl-product-card:nth-child(3n) {
	grid-column: 1 / -1;
	justify-self: center;
	width: min(72%, 940px);
}

.cvl-product-media {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: var(--cvl-product-height-desktop, 370px);
	min-width: 0;
	overflow: visible;
	background: transparent !important;
	transition: filter 340ms ease;
}

.cvl-product-image,
.cvl-product-media img {
	display: block;
	width: auto !important;
	height: auto !important;
	max-width: var(--cvl-product-scale-desktop, 92%) !important;
	max-height: var(--cvl-product-scale-desktop, 92%) !important;
	margin: 0 auto;
	object-fit: contain !important;
	object-position: center;
	border: 0;
	border-radius: 0 !important;
	box-shadow: none;
}

.cvl-product-card--portrait .cvl-product-image,
.cvl-product-card--portrait .cvl-product-media img {
	max-width: var(--cvl-portrait-scale, 84%) !important;
	max-height: var(--cvl-portrait-scale, 84%) !important;
}

@media (hover: hover) and (pointer: fine) {
	.cvl-product-card:hover,
	.cvl-product-card:focus-within {
		z-index: 2;
		transform: translateY(-6px);
	}

	.cvl-product-card:hover .cvl-product-media,
	.cvl-product-card:focus-within .cvl-product-media {
		filter: drop-shadow(0 16px 18px rgba(0, 0, 0, 0.22));
	}

	.cvl-product-grid:has(.cvl-product-card:is(:hover, :focus-within))
		.cvl-product-card:not(:hover):not(:focus-within) {
		opacity: 0.34;
		filter: brightness(0.72) saturate(0.68);
	}
}

@media (hover: none), (pointer: coarse) {
	.cvl-product-card {
		transition-duration: 120ms, 120ms, 120ms;
		transition-delay: 0s !important;
		will-change: transform, opacity, filter;
	}

	.cvl-product-card.cvl-touch-focus {
		z-index: 2;
		opacity: 1;
		filter: brightness(1.035) saturate(1.02);
		transform: translateY(-4px) scale(1.006);
	}

	.cvl-product-card.cvl-touch-focus .cvl-product-media {
		filter: drop-shadow(0 12px 16px rgba(0, 0, 0, 0.22));
	}

	.cvl-product-grid.cvl-has-touch-focus .cvl-product-card:not(.cvl-touch-focus) {
		opacity: 0.31;
		filter: brightness(0.68) saturate(0.66);
	}
}

.cvl-product-copy {
	min-width: 0;
	padding: 12px 0;
}

.cvl-product-title {
	margin: 0;
	color: #f7f5ef;
	font-size: clamp(17px, 1.35vw, 25px);
	font-weight: 400;
	line-height: 1.55;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	overflow-wrap: normal !important;
	word-break: normal !important;
	hyphens: none !important;
}

.cvl-product-title a {
	background-image: linear-gradient(currentColor, currentColor);
	background-position: 0 100%;
	background-repeat: no-repeat;
	background-size: 0 1px;
	transition: background-size 200ms ease;
	overflow-wrap: normal !important;
	word-break: normal !important;
	hyphens: none !important;
}

.cvl-product-title a:hover {
	background-size: 100% 1px;
}

.cvl-rating {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 9px;
	margin-top: clamp(24px, 3vw, 42px);
	color: var(--cvl-gold);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.cvl-stars {
	--cvl-rating: 0%;
	position: relative;
	display: inline-block;
	color: rgba(215, 178, 63, 0.25);
	font-size: 17px;
	line-height: 1;
	letter-spacing: 0.02em;
}

.cvl-stars::before {
	position: absolute;
	top: 0;
	left: 0;
	width: var(--cvl-rating);
	overflow: hidden;
	color: var(--cvl-gold);
	content: "★★★★★";
	white-space: nowrap;
}

.cvl-product-price {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 14px;
	margin-top: clamp(24px, 3vw, 44px);
	color: #fff;
	font-size: clamp(22px, 1.7vw, 31px);
	font-weight: 400;
	line-height: 1.2;
	overflow-wrap: normal !important;
	word-break: normal !important;
}

.cvl-product-price .price,
.cvl-product-price ins,
.cvl-product-price del {
	color: inherit;
}

.cvl-product-price ins {
	order: -1;
	background: transparent;
	font-weight: inherit;
	text-decoration: none;
}

.cvl-product-price del {
	color: #74777a;
	font-size: 0.7em;
	opacity: 1;
}

.cvl-product-description {
	display: -webkit-box;
	max-width: 520px;
	margin: clamp(24px, 3vw, 42px) 0 0;
	overflow: hidden;
	color: var(--cvl-muted);
	font-size: clamp(14px, 1vw, 17px);
	line-height: 1.65;
	letter-spacing: 0.035em;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	overflow-wrap: normal !important;
	word-break: normal !important;
	hyphens: none !important;
}

.cvl-product-category {
	display: inline-block;
	margin-top: 18px;
	color: #777a7c !important;
	font-size: 12px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.cvl-product-category::before {
	display: inline-block;
	width: 20px;
	margin-right: 8px;
	border-top: 1px solid currentColor;
	content: "";
	vertical-align: middle;
}

.cvl-empty {
	grid-column: 1 / -1;
	padding: 100px 20px;
	text-align: center;
}

.cvl-empty h2 {
	margin: 0 0 14px;
	color: var(--cvl-paper);
	font-size: 28px;
	font-weight: 400;
}

.cvl-empty p {
	margin: 0 0 24px;
	color: var(--cvl-muted);
}

.cvl-pagination {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: clamp(18px, 2.5vw, 44px);
	padding: 0 24px clamp(76px, 8vw, 140px);
}

.cvl-pagination .page-numbers {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 28px;
	min-height: 42px;
	padding: 4px;
	color: #c7c8c8;
	font-size: 16px;
}

.cvl-pagination .page-numbers.current {
	color: #fff;
	font-weight: 600;
}

.cvl-pagination .page-numbers.current::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 2px;
	background: #fff;
	content: "";
}

.cvl-catalog-notice {
	padding: 18px;
	border: 1px solid #dba617;
	background: #fff8df;
	color: #392b06;
}

.cvl-catalog .screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	border: 0;
	white-space: nowrap;
}

@media (max-width: 1100px) {
	.cvl-product-grid {
		column-gap: 44px;
		padding-right: 40px;
		padding-left: 40px;
	}

	.cvl-product-card {
		grid-template-columns: minmax(140px, 44%) minmax(0, 1fr);
		gap: 24px;
	}

	.cvl-product-card:nth-child(3n) {
		width: min(82%, 820px);
	}

	.cvl-filter-panel {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767px) {
	.cvl-catalog {
		overflow-x: clip;
		overflow-y: visible;
	}

	.cvl-hero {
		min-height: var(--cvl-hero-height-mobile, 520px);
	}

	.cvl-hero--fallback {
		background-image:
			linear-gradient(180deg, rgba(4, 5, 6, 0.12), rgba(4, 5, 6, 0.82)),
			var(--cvl-texture-mobile);
		background-size: cover, max(100vw, 720px) auto;
	}

	.cvl-hero-image {
		object-position: center;
	}

	.cvl-hero-copy {
		width: min(100% - 32px, 620px);
		margin-bottom: 48px;
	}

	.cvl-hero-title {
		font-size: clamp(34px, 10vw, 52px);
		letter-spacing: 0.06em;
	}

	.cvl-hero-subtitle {
		margin-top: 18px;
		font-size: 15px;
		line-height: 1.55;
	}

	.cvl-catalog-body::before {
		background-image:
			linear-gradient(180deg, rgba(4, 6, 8, 0.12), rgba(4, 6, 8, 0.26)),
			var(--cvl-texture-mobile);
		background-position: center;
		background-size: cover;
	}

	.cvl-toolbar {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 8px;
		min-height: 70px;
		padding: 9px 15px;
	}

	.cvl-product-count {
		flex: 1 1 auto;
		gap: 8px;
		width: auto;
		padding: 0;
		border: 0;
		font-size: 10px;
		letter-spacing: 0.09em;
		text-align: left;
		white-space: nowrap;
	}

	.cvl-product-count::before {
		width: 14px;
	}

	.cvl-controls {
		display: flex;
		flex: 0 1 auto;
		gap: 3px;
		width: auto;
		min-height: 52px;
	}

	.cvl-sort-menu,
	.cvl-filter-toggle {
		min-width: 0;
		min-height: 52px;
		padding: 8px 10px;
		border: 0 !important;
		font-size: 10px;
		letter-spacing: 0.07em;
	}

	.cvl-sort-menu {
		width: min(136px, 39vw);
	}

	.cvl-sort-menu:only-child,
	.cvl-filter-toggle:only-child {
		width: auto;
		border: 0 !important;
	}

	.cvl-sort-trigger {
		min-height: 52px;
		gap: 8px;
		font-size: 10px;
	}

	.cvl-sort-caption {
		display: none;
	}

	.cvl-sort-current {
		max-width: 96px;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.cvl-sort-options {
		right: 0;
		left: 0;
		width: auto;
		min-width: 210px;
	}

	.cvl-filter-panel {
		position: absolute;
		padding: 24px 20px 28px;
	}

	.cvl-filter-fields {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.cvl-filter-actions {
		justify-content: space-between;
	}

	.cvl-product-grid {
		grid-template-columns: minmax(0, 1fr);
		gap: var(--cvl-product-gap-mobile, 62px);
		width: 100%;
		padding: 58px clamp(16px, 5vw, 28px) 84px;
	}

	.cvl-product-card,
	.cvl-product-card:nth-child(3n) {
		grid-column: auto;
		grid-template-columns: minmax(0, 42%) minmax(0, 1fr);
		gap: clamp(14px, 4vw, 24px);
		align-items: center;
		justify-self: stretch;
		width: 100%;
		min-height: 0;
	}

	.cvl-product-media {
		height: var(--cvl-product-height-mobile, 230px);
	}

	.cvl-product-image,
	.cvl-product-media img {
		max-width: var(--cvl-product-scale-mobile, 94%) !important;
		max-height: var(--cvl-product-scale-mobile, 94%) !important;
	}

	.cvl-product-card--portrait .cvl-product-image,
	.cvl-product-card--portrait .cvl-product-media img {
		max-width: var(--cvl-portrait-scale, 84%) !important;
		max-height: var(--cvl-portrait-scale, 84%) !important;
	}

	.cvl-product-copy {
		padding: 0;
	}

	.cvl-product-title {
		font-size: clamp(13px, 3.7vw, 17px);
		line-height: 1.55;
		letter-spacing: 0.075em;
	}

	.cvl-rating {
		gap: 6px;
		margin-top: 17px;
		font-size: 11px;
	}

	.cvl-stars {
		font-size: 13px;
	}

	.cvl-product-price {
		gap: 8px;
		margin-top: 17px;
		font-size: clamp(17px, 5vw, 22px);
	}

	.cvl-product-description {
		margin-top: 17px;
		font-size: clamp(11px, 3.1vw, 14px);
		line-height: 1.55;
		-webkit-line-clamp: 4;
	}

	.cvl-product-category {
		margin-top: 13px;
		font-size: 9px;
	}

	.cvl-product-category::before {
		width: 12px;
		margin-right: 5px;
	}

	.cvl-pagination {
		gap: 18px;
		padding-bottom: 76px;
	}
}

@media (max-width: 380px) {
	.cvl-product-grid {
		padding-right: 13px;
		padding-left: 13px;
	}

	.cvl-product-card,
	.cvl-product-card:nth-child(3n) {
		grid-template-columns: minmax(0, 40%) minmax(0, 1fr);
		gap: 12px;
	}

	.cvl-product-description {
		-webkit-line-clamp: 3;
	}
}

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