/*
 * Chernev Clima Mega Menu
 * All selectors are namespaced to avoid theme and plugin collisions.
 */

:root {
	/* Primitive tokens: extracted from the public Chernev Clima identity. */
	--ccmm-color-red-600: #dc2b1b;
	--ccmm-color-red-700: #b92216;
	--ccmm-color-black: #222222;
	--ccmm-color-gray-700: #444444;
	--ccmm-color-gray-600: #555555;
	--ccmm-color-gray-300: #cfcfcf;
	--ccmm-color-gray-200: #e1e1e1;
	--ccmm-color-gray-100: #f4f4f2;
	--ccmm-color-paper: #fbfbf8;
	--ccmm-color-white: #ffffff;
	--ccmm-space-1: 4px;
	--ccmm-space-2: 8px;
	--ccmm-space-3: 12px;
	--ccmm-space-4: 16px;
	--ccmm-space-5: 20px;
	--ccmm-space-6: 24px;
	--ccmm-space-8: 32px;
	--ccmm-duration-fast: 150ms;

	/* Semantic tokens. */
	--ccmm-action: var(--ccmm-color-red-600);
	--ccmm-action-hover: var(--ccmm-color-red-700);
	--ccmm-text: var(--ccmm-color-black);
	--ccmm-text-muted: var(--ccmm-color-gray-600);
	--ccmm-border: var(--ccmm-color-gray-200);
	--ccmm-surface: var(--ccmm-color-white);
	--ccmm-surface-muted: var(--ccmm-color-paper);

	/* Component tokens. */
	--ccmm-rail-width: 320px;
	--ccmm-tab-min-height: 78px;
	--ccmm-panel-padding: var(--ccmm-space-8);
	--ccmm-focus-ring: var(--ccmm-color-black);

	/* Backwards-compatible aliases used by the isolated component rules. */
	--ccmm-red: var(--ccmm-action);
	--ccmm-red-dark: var(--ccmm-action-hover);
	--ccmm-ink: var(--ccmm-text);
	--ccmm-muted: var(--ccmm-text-muted);
	--ccmm-line: var(--ccmm-border);
	--ccmm-soft: var(--ccmm-surface-muted);
	--ccmm-white: var(--ccmm-surface);
	--ccmm-focus: var(--ccmm-focus-ring);
	--ccmm-top: 0px;
	--ccmm-radius: 0;
	--ccmm-ease: var(--ccmm-duration-fast) ease-out;
}

.ccmm-sr-only {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

.ccmm-backdrop[hidden],
.ccmm-desktop[hidden],
.ccmm-panel[hidden],
.ccmm-mobile-menu[hidden],
.ccmm-mobile-group__panel[hidden] {
	display: none !important;
}

.ccmm-backdrop {
	position: fixed;
	z-index: 99970;
	inset: var(--ccmm-top) 0 0;
	background: rgb(17 24 39 / 48%);
	opacity: 0;
	transition: opacity var(--ccmm-ease);
}

.ccmm-catalog-item {
	display: flex !important;
	align-items: center !important;
	margin-right: 16px !important;
}

.ccmm-catalog-item > .ccmm-catalog-launcher {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 9px !important;
	min-width: 132px;
	min-height: 44px !important;
	padding: 0 16px !important;
	color: var(--ccmm-white) !important;
	font-size: 13px !important;
	font-weight: 700 !important;
	letter-spacing: 0.035em !important;
	line-height: 1 !important;
	text-decoration: none !important;
	background: var(--ccmm-red) !important;
	border: 1px solid var(--ccmm-red) !important;
	border-radius: 3px !important;
	box-shadow: none !important;
	cursor: pointer;
	transition:
		background-color var(--ccmm-ease),
		border-color var(--ccmm-ease),
		box-shadow var(--ccmm-ease) !important;
}

.ccmm-catalog-item > .ccmm-catalog-launcher::before,
.ccmm-catalog-item > .ccmm-catalog-launcher::after {
	display: none !important;
	content: none !important;
}

.ccmm-catalog-item > .ccmm-catalog-launcher:hover,
.ccmm-catalog-item > .ccmm-catalog-launcher[aria-expanded="true"] {
	color: var(--ccmm-white) !important;
	background: var(--ccmm-red-dark) !important;
	border-color: var(--ccmm-red-dark) !important;
	box-shadow: 0 7px 18px rgb(220 43 27 / 24%) !important;
}

.ccmm-catalog-launcher__icon {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-linejoin: round;
	stroke-width: 1.7;
}

.ccmm-catalog-launcher__label {
	display: inline-block;
}

.ccmm-desktop {
	position: fixed;
	z-index: 99980;
	top: var(--ccmm-top);
	left: 0;
	width: 100%;
	padding: 0 24px 24px;
	color: var(--ccmm-ink);
	font-family: inherit;
	opacity: 0;
	transform: translateY(-8px);
	transition:
		opacity var(--ccmm-ease),
		transform var(--ccmm-ease);
}

.ccmm-is-open .ccmm-backdrop,
.ccmm-is-open .ccmm-desktop {
	opacity: 1;
}

.ccmm-is-open .ccmm-desktop {
	transform: translateY(0);
}

.ccmm-desktop__surface {
	width: min(1320px, 100%);
	max-height: calc(100vh - var(--ccmm-top) - 24px);
	margin: 0 auto;
	overflow-x: hidden;
	overflow-y: auto;
	background: var(--ccmm-white);
	border: 1px solid rgb(17 24 39 / 8%);
	border-top: 3px solid var(--ccmm-red);
	border-radius: 0 0 var(--ccmm-radius) var(--ccmm-radius);
	box-shadow: 0 20px 54px rgb(34 34 34 / 18%);
	overscroll-behavior: contain;
}

.ccmm-desktop__header {
	display: grid;
	grid-template-columns: minmax(220px, 1fr) minmax(300px, 420px) auto 44px;
	align-items: center;
	gap: 20px;
	min-height: 88px;
	padding: 18px 24px;
	border-bottom: 1px solid var(--ccmm-line);
}

.ccmm-eyebrow {
	margin: 0 0 3px;
	color: var(--ccmm-red);
	font-size: 11px;
	font-weight: 750;
	letter-spacing: 0.12em;
	line-height: 1.3;
	text-transform: uppercase;
}

.ccmm-desktop__title {
	margin: 0;
	color: var(--ccmm-ink);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.35;
}

.ccmm-search {
	position: relative;
	display: flex;
	align-items: center;
	min-width: 0;
}

.ccmm-search > svg {
	position: absolute;
	left: 15px;
	width: 20px;
	height: 20px;
	fill: none;
	stroke: var(--ccmm-muted);
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
	pointer-events: none;
}

.ccmm-search input[type="search"] {
	width: 100%;
	height: 46px;
	margin: 0;
	padding: 0 16px 0 45px;
	color: var(--ccmm-ink);
	font: inherit;
	font-size: 14px;
	background: var(--ccmm-soft);
	border: 1px solid transparent;
	border-radius: 6px;
	box-shadow: none;
	appearance: none;
	transition:
		background-color var(--ccmm-ease),
		border-color var(--ccmm-ease);
}

.ccmm-search input[type="search"]::placeholder {
	color: #7a838c;
	opacity: 1;
}

.ccmm-search input[type="search"]:hover {
	background: #f5f5f5;
	border-color: #dedede;
}

.ccmm-search input[type="search"]:focus-visible {
	background: var(--ccmm-white);
	border-color: var(--ccmm-focus);
	outline: 3px solid rgb(17 24 39 / 18%);
	outline-offset: 1px;
}

.ccmm-all-products,
.ccmm-promo a,
.ccmm-mobile-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 44px;
	text-decoration: none !important;
}

.ccmm-all-products {
	padding: 0 16px;
	color: var(--ccmm-red) !important;
	font-size: 14px;
	font-weight: 700;
	border: 1px solid #efc8ca;
	border-radius: 6px;
	white-space: nowrap;
	transition:
		background-color var(--ccmm-ease),
		border-color var(--ccmm-ease),
		color var(--ccmm-ease);
}

.ccmm-all-products:hover {
	color: var(--ccmm-white) !important;
	background: var(--ccmm-red);
	border-color: var(--ccmm-red);
}

.ccmm-all-products svg,
.ccmm-promo a svg,
.ccmm-link-column a svg,
.ccmm-mobile-cta > svg {
	width: 16px;
	height: 16px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
}

.ccmm-close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	color: var(--ccmm-ink);
	background: transparent;
	border: 1px solid transparent;
	border-radius: 50%;
	box-shadow: none;
	cursor: pointer;
	transition:
		background-color var(--ccmm-ease),
		color var(--ccmm-ease);
}

.ccmm-close:hover {
	color: var(--ccmm-red);
	background: var(--ccmm-soft);
}

.ccmm-close svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-width: 1.8;
}

.ccmm-desktop__body {
	display: grid;
	grid-template-columns: 290px minmax(0, 1fr);
	min-height: 430px;
}

.ccmm-tabs {
	padding: 12px;
	background: var(--ccmm-soft);
	border-right: 1px solid var(--ccmm-line);
}

.ccmm-tab {
	position: relative;
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr) 18px;
	align-items: center;
	gap: 12px;
	width: 100%;
	min-height: 66px;
	margin: 0;
	padding: 9px 11px;
	color: var(--ccmm-ink);
	text-align: left;
	background: transparent;
	border: 0;
	border-radius: 7px;
	box-shadow: none;
	cursor: pointer;
	transition:
		background-color var(--ccmm-ease),
		color var(--ccmm-ease);
}

.ccmm-tab::before {
	position: absolute;
	top: 11px;
	bottom: 11px;
	left: 0;
	width: 3px;
	background: var(--ccmm-red);
	border-radius: 0 3px 3px 0;
	opacity: 0;
	content: "";
	transform: scaleY(0.45);
	transition:
		opacity var(--ccmm-ease),
		transform var(--ccmm-ease);
}

.ccmm-tab:hover {
	background: #eceeef;
}

.ccmm-tab[aria-selected="true"] {
	color: var(--ccmm-red);
	background: var(--ccmm-white);
	box-shadow: 0 3px 14px rgb(17 24 39 / 7%);
}

.ccmm-tab[aria-selected="true"]::before {
	opacity: 1;
	transform: scaleY(1);
}

.ccmm-tab__icon,
.ccmm-panel__icon,
.ccmm-mobile-group__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--ccmm-red);
	background: #fbeaec;
	border-radius: 7px;
}

.ccmm-tab__icon {
	width: 42px;
	height: 42px;
}

.ccmm-tab__icon svg,
.ccmm-panel__icon svg,
.ccmm-mobile-group__icon svg,
.ccmm-promo__mark svg,
.ccmm-mobile-cta > span:first-child svg {
	width: 23px;
	height: 23px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.6;
}

.ccmm-tab__copy {
	display: block;
	min-width: 0;
}

.ccmm-tab__copy strong {
	display: block;
	overflow: hidden;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ccmm-tab__copy small {
	display: block;
	margin-top: 2px;
	overflow: hidden;
	color: var(--ccmm-muted);
	font-size: 11px;
	font-weight: 450;
	line-height: 1.35;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ccmm-tab__arrow {
	width: 17px;
	height: 17px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
	opacity: 0.5;
	transform: translateX(-3px);
	transition:
		opacity var(--ccmm-ease),
		transform var(--ccmm-ease);
}

.ccmm-tab[aria-selected="true"] .ccmm-tab__arrow {
	opacity: 1;
	transform: translateX(0);
}

.ccmm-panels {
	min-width: 0;
	background: var(--ccmm-white);
}

.ccmm-panel {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 250px;
	gap: 28px;
	height: 100%;
	padding: 30px;
	animation: ccmm-panel-in 180ms ease-out both;
}

@keyframes ccmm-panel-in {
	from {
		opacity: 0;
		transform: translateX(7px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.ccmm-panel__main {
	min-width: 0;
}

.ccmm-panel__heading {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 28px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--ccmm-line);
}

.ccmm-panel__icon {
	flex: 0 0 auto;
	width: 50px;
	height: 50px;
}

.ccmm-panel__heading h2 {
	margin: 0;
	color: var(--ccmm-ink);
	font-size: 21px;
	font-weight: 750;
	line-height: 1.25;
}

.ccmm-panel__heading p {
	margin: 4px 0 0;
	color: var(--ccmm-muted);
	font-size: 13px;
	line-height: 1.45;
}

.ccmm-link-columns {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px 42px;
}

.ccmm-link-column h3 {
	margin: 0 0 9px;
	color: var(--ccmm-muted);
	font-size: 11px;
	font-weight: 750;
	letter-spacing: 0.1em;
	line-height: 1.4;
	text-transform: uppercase;
}

.ccmm-link-column ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.ccmm-link-column li {
	margin: 0;
	padding: 0;
	border-bottom: 1px solid #eff0f1;
}

.ccmm-link-column a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	min-height: 43px;
	padding: 8px 4px 8px 0;
	color: #333333 !important;
	font-size: 14px;
	font-weight: 550;
	line-height: 1.35;
	text-decoration: none !important;
	transition:
		color var(--ccmm-ease),
		padding-left var(--ccmm-ease);
}

.ccmm-link-column a svg {
	flex: 0 0 auto;
	opacity: 0;
	transform: translateX(-5px);
	transition:
		opacity var(--ccmm-ease),
		transform var(--ccmm-ease);
}

.ccmm-link-column a:hover {
	padding-left: 4px;
	color: var(--ccmm-red) !important;
}

.ccmm-link-column a:hover svg,
.ccmm-link-column a:focus-visible svg {
	opacity: 1;
	transform: translateX(0);
}

.ccmm-promo {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	align-self: stretch;
	min-height: 270px;
	overflow: hidden;
	padding: 26px 24px;
	color: var(--ccmm-white);
	background:
		linear-gradient(145deg, rgb(255 255 255 / 5%) 0 42%, transparent 42%),
		#232323;
	border-radius: 8px;
}

.ccmm-promo::after {
	position: absolute;
	right: -60px;
	bottom: -80px;
	width: 180px;
	height: 180px;
	background: var(--ccmm-red);
	border-radius: 50%;
	opacity: 0.16;
	content: "";
}

.ccmm-promo__mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin-bottom: 28px;
	color: var(--ccmm-white);
	background: var(--ccmm-red);
	border-radius: 8px;
}

.ccmm-promo__eyebrow {
	margin: 0 0 8px;
	color: #f5a9ac;
	font-size: 10px;
	font-weight: 750;
	letter-spacing: 0.1em;
	line-height: 1.4;
	text-transform: uppercase;
}

.ccmm-promo h3 {
	margin: 0;
	color: var(--ccmm-white);
	font-size: 19px;
	font-weight: 750;
	line-height: 1.35;
}

.ccmm-promo > p:not(.ccmm-promo__eyebrow) {
	margin: 11px 0 14px;
	color: #cfd3d6;
	font-size: 13px;
	line-height: 1.55;
}

.ccmm-promo__trust {
	position: relative;
	z-index: 1;
	margin: 0 0 20px;
	padding: 0;
	color: #f2f2f2;
	font-size: 11px;
	line-height: 1.45;
	list-style: none;
}

.ccmm-promo__trust li {
	position: relative;
	margin: 0;
	padding: 3px 0 3px 15px;
}

.ccmm-promo__trust li::before {
	position: absolute;
	top: 8px;
	left: 0;
	width: 6px;
	height: 6px;
	background: var(--ccmm-red);
	border-radius: 50%;
	content: "";
}

.ccmm-promo__trust strong {
	color: var(--ccmm-white);
}

.ccmm-promo a {
	position: relative;
	z-index: 1;
	margin-top: auto;
	padding: 0 16px;
	color: var(--ccmm-white) !important;
	font-size: 13px;
	font-weight: 700;
	background: var(--ccmm-red);
	border-radius: 5px;
	transition: background-color var(--ccmm-ease);
}

.ccmm-promo a:hover {
	background: var(--ccmm-red-dark);
}

.ccmm-desktop :where(a, button, input):focus-visible,
.ccmm-mobile-menu :where(a, button):focus-visible,
.ccmm-mobile-toggle:focus-visible {
	outline: 3px solid rgb(17 24 39 / 65%) !important;
	outline-offset: 2px !important;
}

/* Mobile integration: product link remains a normal catalog link; the adjacent
 * 48px button exclusively controls the accordion. */
.ccmm-mobile-host {
	position: relative;
}

.ccmm-mobile-host > a {
	padding-right: 58px !important;
}

.ccmm-mobile-toggle {
	position: absolute;
	z-index: 2;
	top: 0;
	right: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin: 0;
	padding: 0;
	color: currentColor;
	background: transparent;
	border: 0;
	border-left: 1px solid rgb(0 0 0 / 8%);
	border-radius: 0;
	box-shadow: none;
	cursor: pointer;
}

.ccmm-mobile-toggle svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
	transition: transform var(--ccmm-ease);
}

.ccmm-mobile-toggle[aria-expanded="true"] svg {
	transform: rotate(180deg);
}

.ccmm-mobile-menu {
	clear: both;
	color: var(--ccmm-ink);
	font-family: inherit;
	background: var(--ccmm-white);
	border-top: 2px solid var(--ccmm-red);
}

.ccmm-mobile-menu__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	min-height: 48px;
	padding: 7px 16px;
	background: var(--ccmm-soft);
	border-bottom: 1px solid var(--ccmm-line);
}

.ccmm-mobile-menu__top > span {
	color: var(--ccmm-muted);
	font-size: 11px;
	font-weight: 750;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.ccmm-mobile-menu__top > a {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 5px 0;
	color: var(--ccmm-red) !important;
	font-size: 12px;
	font-weight: 700;
	text-decoration: none !important;
}

.ccmm-mobile-group,
.ccmm-mobile-group h3 {
	margin: 0;
	padding: 0;
}

.ccmm-mobile-group {
	border-bottom: 1px solid var(--ccmm-line);
}

.ccmm-mobile-group h3 > button {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	width: 100%;
	min-height: 64px;
	margin: 0;
	padding: 8px 14px;
	color: var(--ccmm-ink);
	text-align: left;
	background: var(--ccmm-white);
	border: 0;
	border-radius: 0;
	box-shadow: none;
	cursor: pointer;
}

.ccmm-mobile-group h3 > button:hover,
.ccmm-mobile-group h3 > button[aria-expanded="true"] {
	color: var(--ccmm-red);
	background: #fffafb;
}

.ccmm-mobile-group__label {
	display: flex;
	align-items: center;
	gap: 11px;
	min-width: 0;
}

.ccmm-mobile-group__icon {
	flex: 0 0 auto;
	width: 40px;
	height: 40px;
}

.ccmm-mobile-group__label strong,
.ccmm-mobile-group__label small {
	display: block;
}

.ccmm-mobile-group__label strong {
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
}

.ccmm-mobile-group__label small {
	margin-top: 2px;
	color: var(--ccmm-muted);
	font-size: 11px;
	font-weight: 450;
	line-height: 1.35;
}

.ccmm-mobile-group__chevron {
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
	transition: transform var(--ccmm-ease);
}

.ccmm-mobile-group h3 > button[aria-expanded="true"] .ccmm-mobile-group__chevron {
	transform: rotate(180deg);
}

.ccmm-mobile-group__panel {
	padding: 2px 16px 14px 65px;
	background: #fffafb;
}

.ccmm-mobile-column + .ccmm-mobile-column {
	margin-top: 14px;
}

.ccmm-mobile-column > p {
	margin: 0 0 3px;
	color: var(--ccmm-muted);
	font-size: 10px;
	font-weight: 750;
	letter-spacing: 0.08em;
	line-height: 1.4;
	text-transform: uppercase;
}

.ccmm-mobile-column ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.ccmm-mobile-column li {
	margin: 0;
	padding: 0;
}

.ccmm-mobile-column a {
	display: flex;
	align-items: center;
	min-height: 42px;
	padding: 7px 0;
	color: #30373e !important;
	font-size: 13px;
	font-weight: 550;
	line-height: 1.4;
	text-decoration: none !important;
	border-bottom: 1px solid #f1e7e8;
}

.ccmm-mobile-column a:hover {
	color: var(--ccmm-red) !important;
}

.ccmm-mobile-cta {
	justify-content: flex-start;
	min-height: 78px;
	margin: 14px;
	padding: 12px;
	color: var(--ccmm-white) !important;
	background: var(--ccmm-ink);
	border-radius: 7px;
}

.ccmm-mobile-cta > span:first-child {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 42px;
	height: 42px;
	color: var(--ccmm-white);
	background: var(--ccmm-red);
	border-radius: 6px;
}

.ccmm-mobile-cta > span:nth-child(2) {
	min-width: 0;
}

.ccmm-mobile-cta strong,
.ccmm-mobile-cta small {
	display: block;
}

.ccmm-mobile-cta strong {
	font-size: 13px;
	line-height: 1.4;
}

.ccmm-mobile-cta small {
	margin-top: 2px;
	color: #cfd3d6;
	font-size: 11px;
	line-height: 1.35;
}

.ccmm-mobile-cta > svg {
	margin-left: auto;
}

/*
 * Industrial index direction
 * --------------------------
 * Square geometry, visible structure and technical numbering replace generic
 * soft cards. These rules intentionally live after the base compatibility
 * layer so the component remains resilient to XStore styles.
 */

.ccmm-backdrop {
	background: rgb(20 20 20 / 42%);
}

.ccmm-catalog-item > .ccmm-catalog-launcher,
.ccmm-catalog-item > .ccmm-catalog-launcher:hover,
.ccmm-catalog-item > .ccmm-catalog-launcher[aria-expanded="true"] {
	border-radius: 0 !important;
	box-shadow: none !important;
}

.ccmm-desktop {
	transform: translateY(-4px);
}

.ccmm-desktop__surface {
	background: var(--ccmm-surface);
	border-color: var(--ccmm-border);
	border-top-width: 4px;
	border-radius: 0;
	box-shadow: 0 18px 38px rgb(34 34 34 / 16%);
}

.ccmm-desktop__header {
	min-height: 82px;
	padding: var(--ccmm-space-4) var(--ccmm-space-6);
}

.ccmm-eyebrow {
	margin-bottom: var(--ccmm-space-1);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
}

.ccmm-desktop__title {
	max-width: 36ch;
	font-size: 17px;
	font-weight: 600;
	line-height: 1.4;
}

.ccmm-search input[type="search"] {
	height: 48px;
	font-size: 15px;
	background: var(--ccmm-surface);
	border-color: var(--ccmm-border);
	border-radius: 0;
}

.ccmm-search input[type="search"]:hover {
	background: var(--ccmm-surface);
	border-color: var(--ccmm-color-gray-300);
}

.ccmm-all-products {
	height: 48px;
	padding-inline: 18px;
	color: var(--ccmm-text) !important;
	border-color: var(--ccmm-color-gray-300);
	border-radius: 0;
}

.ccmm-all-products:hover {
	color: var(--ccmm-white) !important;
	background: var(--ccmm-action);
	border-color: var(--ccmm-action);
}

.ccmm-close {
	border: 1px solid transparent;
	border-radius: 0;
}

.ccmm-close:hover {
	color: var(--ccmm-action);
	background: var(--ccmm-color-gray-100);
	border-color: var(--ccmm-border);
}

.ccmm-desktop__body {
	grid-template-columns: var(--ccmm-rail-width) minmax(0, 1fr);
	min-height: 466px;
}

.ccmm-tabs-shell {
	min-width: 0;
	background: var(--ccmm-surface-muted);
	border-right: 1px solid var(--ccmm-border);
}

.ccmm-tabs-shell__heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 48px;
	padding: 0 var(--ccmm-space-4);
	color: var(--ccmm-color-gray-700);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	border-bottom: 1px solid var(--ccmm-border);
}

.ccmm-tabs-shell__heading > span:last-child {
	color: var(--ccmm-action);
	font-variant-numeric: tabular-nums;
}

.ccmm-tabs {
	padding: 0;
	background: transparent;
	border: 0;
}

.ccmm-tab {
	grid-template-columns: 24px 34px minmax(0, 1fr) 18px;
	gap: var(--ccmm-space-3);
	min-height: var(--ccmm-tab-min-height);
	padding: var(--ccmm-space-3) var(--ccmm-space-4);
	color: var(--ccmm-text);
	background: transparent;
	border: 0;
	border-bottom: 1px solid var(--ccmm-border);
	border-radius: 0;
}

.ccmm-tab::before {
	top: 0;
	bottom: 0;
	width: 4px;
	border-radius: 0;
	transform: scaleY(0);
	transform-origin: center;
}

.ccmm-tab:hover {
	color: var(--ccmm-text);
	background: var(--ccmm-color-white);
}

.ccmm-tab[aria-selected="true"] {
	color: var(--ccmm-text);
	background: var(--ccmm-color-white);
	box-shadow: none;
}

.ccmm-tab__number {
	align-self: start;
	padding-top: 5px;
	color: #777777;
	font-size: 10px;
	font-weight: 600;
	font-variant-numeric: tabular-nums;
	letter-spacing: 0.08em;
	line-height: 1;
}

.ccmm-tab[aria-selected="true"] .ccmm-tab__number {
	color: var(--ccmm-action);
}

.ccmm-tab__icon,
.ccmm-panel__icon,
.ccmm-mobile-group__icon {
	color: var(--ccmm-color-gray-700);
	background: transparent;
	border: 1px solid var(--ccmm-color-gray-300);
	border-radius: 0;
}

.ccmm-tab[aria-selected="true"] .ccmm-tab__icon,
.ccmm-tab:hover .ccmm-tab__icon {
	color: var(--ccmm-action);
	border-color: var(--ccmm-action);
}

.ccmm-tab__icon {
	width: 34px;
	height: 34px;
}

.ccmm-tab__icon svg {
	width: 19px;
	height: 19px;
	stroke-width: 1.7;
}

.ccmm-tab__copy strong {
	overflow: visible;
	font-size: 14px;
	font-weight: 650;
	line-height: 1.35;
	text-overflow: clip;
	white-space: normal;
}

.ccmm-tab__copy small {
	display: -webkit-box;
	margin-top: 4px;
	overflow: hidden;
	color: var(--ccmm-text-muted);
	font-size: 12px;
	font-weight: 400;
	line-height: 1.4;
	text-overflow: clip;
	white-space: normal;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.ccmm-tab__arrow {
	width: 16px;
	height: 16px;
	color: var(--ccmm-color-gray-700);
	opacity: 0.7;
}

.ccmm-tab[aria-selected="true"] .ccmm-tab__arrow {
	color: var(--ccmm-action);
}

.ccmm-panel {
	grid-template-columns: minmax(0, 1fr) 276px;
	gap: var(--ccmm-space-8);
	padding: var(--ccmm-panel-padding);
	animation-name: ccmm-panel-fade;
	animation-duration: var(--ccmm-duration-fast);
}

@keyframes ccmm-panel-fade {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.ccmm-panel__heading {
	align-items: flex-start;
	gap: var(--ccmm-space-4);
	margin-bottom: var(--ccmm-space-6);
	padding-bottom: var(--ccmm-space-5);
}

.ccmm-panel__icon {
	width: 46px;
	height: 46px;
	color: var(--ccmm-action);
	border-color: var(--ccmm-action);
}

.ccmm-panel__heading .ccmm-panel__index {
	margin: 0 0 5px;
	color: var(--ccmm-action);
	font-size: 10px;
	font-weight: 700;
	font-variant-numeric: tabular-nums;
	letter-spacing: 0.13em;
	line-height: 1.35;
	text-transform: uppercase;
}

.ccmm-panel__heading h2 {
	font-size: 23px;
	font-weight: 650;
	line-height: 1.25;
}

.ccmm-panel__heading p:not(.ccmm-panel__index) {
	margin-top: 5px;
	color: var(--ccmm-text-muted);
	font-size: 14px;
	line-height: 1.5;
}

.ccmm-link-columns {
	gap: var(--ccmm-space-6) 42px;
}

.ccmm-link-column h3 {
	margin-bottom: var(--ccmm-space-2);
	color: var(--ccmm-color-gray-700);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
}

.ccmm-link-column li {
	border-color: var(--ccmm-border);
}

.ccmm-link-column a {
	min-height: 48px;
	padding: 10px 4px 10px 0;
	color: var(--ccmm-text) !important;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.45;
}

.ccmm-link-column a:hover {
	padding-left: 0;
	color: var(--ccmm-action) !important;
}

.ccmm-promo {
	min-height: 100%;
	padding: 0;
	color: var(--ccmm-text);
	background: var(--ccmm-surface-muted);
	border: 1px solid var(--ccmm-color-gray-300);
	border-top: 4px solid var(--ccmm-action);
	border-radius: 0;
}

.ccmm-promo::after {
	display: none;
	content: none;
}

.ccmm-promo__mark {
	width: 44px;
	height: 44px;
	margin: var(--ccmm-space-5) var(--ccmm-space-5) var(--ccmm-space-6);
	color: var(--ccmm-action);
	background: transparent;
	border: 1px solid var(--ccmm-action);
	border-radius: 0;
}

.ccmm-promo__eyebrow,
.ccmm-promo h3,
.ccmm-promo > p:not(.ccmm-promo__eyebrow),
.ccmm-promo__trust {
	margin-right: var(--ccmm-space-5);
	margin-left: var(--ccmm-space-5);
}

.ccmm-promo__eyebrow {
	margin-bottom: var(--ccmm-space-2);
	color: var(--ccmm-action);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.13em;
}

.ccmm-promo h3 {
	color: var(--ccmm-text);
	font-size: 20px;
	font-weight: 650;
	line-height: 1.35;
}

.ccmm-promo > p:not(.ccmm-promo__eyebrow) {
	margin-top: var(--ccmm-space-3);
	margin-bottom: var(--ccmm-space-4);
	color: var(--ccmm-text-muted);
	font-size: 14px;
	line-height: 1.55;
}

.ccmm-promo__trust {
	margin-bottom: var(--ccmm-space-5);
	color: var(--ccmm-text);
	font-size: 12px;
	line-height: 1.45;
	border-top: 1px solid var(--ccmm-border);
}

.ccmm-promo__trust li {
	padding: 9px 0 9px 17px;
	border-bottom: 1px solid var(--ccmm-border);
}

.ccmm-promo__trust li::before {
	top: 16px;
	width: 7px;
	height: 2px;
	background: var(--ccmm-action);
	border-radius: 0;
}

.ccmm-promo__trust strong {
	color: var(--ccmm-text);
}

.ccmm-promo a {
	width: calc(100% - 40px);
	min-height: 48px;
	margin: auto var(--ccmm-space-5) var(--ccmm-space-5);
	padding: 0 var(--ccmm-space-4);
	color: var(--ccmm-white) !important;
	font-size: 14px;
	font-weight: 650;
	background: var(--ccmm-action);
	border: 1px solid var(--ccmm-action);
	border-radius: 0;
}

.ccmm-promo a:hover {
	background: var(--ccmm-action-hover);
	border-color: var(--ccmm-action-hover);
}

.ccmm-mobile-menu__top {
	min-height: 52px;
	background: var(--ccmm-surface-muted);
}

.ccmm-mobile-menu__top > span,
.ccmm-mobile-menu__top > a {
	font-size: 13px;
}

.ccmm-mobile-group h3 > button {
	min-height: 78px;
	padding: 10px 16px;
}

.ccmm-mobile-group h3 > button:hover,
.ccmm-mobile-group h3 > button[aria-expanded="true"] {
	color: var(--ccmm-text);
	background: var(--ccmm-surface-muted);
}

.ccmm-mobile-group__icon {
	width: 44px;
	height: 44px;
	color: var(--ccmm-action);
	border-color: var(--ccmm-color-gray-300);
}

.ccmm-mobile-group__label strong {
	font-size: 16px;
	font-weight: 650;
	line-height: 1.4;
}

.ccmm-mobile-group__label small {
	margin-top: 3px;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.4;
}

.ccmm-mobile-group__panel {
	padding: 8px 18px 18px 72px;
	background: var(--ccmm-surface-muted);
}

.ccmm-mobile-column > p {
	font-size: 12px;
}

.ccmm-mobile-column a {
	min-height: 46px;
	color: var(--ccmm-text) !important;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.5;
	border-color: var(--ccmm-border);
}

.ccmm-mobile-cta {
	min-height: 86px;
	margin: 0;
	padding: 16px;
	color: var(--ccmm-text) !important;
	background: var(--ccmm-surface-muted);
	border: 0;
	border-left: 4px solid var(--ccmm-action);
	border-radius: 0;
}

.ccmm-mobile-cta > span:first-child {
	width: 44px;
	height: 44px;
	color: var(--ccmm-action);
	background: transparent;
	border: 1px solid var(--ccmm-action);
	border-radius: 0;
}

.ccmm-mobile-cta strong {
	font-size: 15px;
	font-weight: 650;
}

.ccmm-mobile-cta small {
	color: var(--ccmm-text-muted);
	font-size: 13px;
	line-height: 1.45;
}

.ccmm-mobile-cta > svg {
	color: var(--ccmm-action);
}

@media (max-width: 1199px) and (min-width: 992px) {
	.ccmm-panel {
		grid-template-columns: minmax(0, 1fr);
		gap: 20px;
		padding: 24px;
	}

	.ccmm-promo {
		min-height: 0;
	}
}

@media (max-width: 1100px) {
	.ccmm-desktop__body {
		grid-template-columns: 280px minmax(0, 1fr);
	}

	.ccmm-tab {
		grid-template-columns: 20px 32px minmax(0, 1fr) 16px;
		gap: 10px;
		padding-inline: 12px;
	}

	.ccmm-tab__copy strong {
		font-size: 13px;
	}
}

@media (max-width: 991px) {
	.ccmm-backdrop,
	.ccmm-desktop {
		display: none !important;
	}
}

@media (min-width: 992px) {
	.ccmm-mobile-toggle,
	.ccmm-mobile-menu {
		display: none !important;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ccmm-backdrop,
	.ccmm-desktop,
	.ccmm-tab::before,
	.ccmm-tab__arrow,
	.ccmm-link-column a,
	.ccmm-link-column a svg,
	.ccmm-mobile-toggle svg,
	.ccmm-mobile-group__chevron {
		transition-duration: 0.01ms !important;
	}

	.ccmm-panel {
		animation: none !important;
	}
}
