:root {
	--cpx-cyan: #16afe5;
	--cpx-cyan-dark: #0788bd;
	--cpx-ink: #15232d;
	--cpx-muted: #5f6d77;
	--cpx-line: #e2e8ec;
	--cpx-soft: #f4f8fa;
	--cpx-white: #ffffff;
	--cpx-radius: 18px;
	--cpx-shadow: 0 14px 38px rgba(18, 47, 65, 0.09);
}

.cpx-archive,
.cpx-related-grid,
.cpx-related-empty {
	color: var(--cpx-ink);
	font-family: inherit;
}

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

.cpx-archive-hero {
	position: relative;
	overflow: hidden;
	padding: 46px 0 54px;
	background:
		radial-gradient(circle at 12% 12%, rgba(22, 175, 229, 0.18), transparent 34%),
		linear-gradient(135deg, #f7fbfd 0%, #eef8fc 100%);
	border-bottom: 1px solid rgba(22, 175, 229, 0.14);
}

.cpx-breadcrumbs {
	display: flex;
	align-items: center;
	gap: 9px;
	margin-bottom: 32px;
	font-size: 14px;
	color: var(--cpx-muted);
}

.cpx-breadcrumbs a,
.cpx-text-link {
	color: var(--cpx-cyan-dark);
	text-decoration: none;
}

.cpx-breadcrumbs a:hover,
.cpx-text-link:hover,
.cpx-breadcrumbs a:focus-visible,
.cpx-text-link:focus-visible {
	text-decoration: underline;
}

.cpx-archive-hero__content {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 52px;
	align-items: end;
}

.cpx-eyebrow {
	margin: 0 0 10px;
	color: var(--cpx-cyan-dark);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.cpx-archive h1 {
	margin: 0;
	max-width: 900px;
	font-size: clamp(34px, 5vw, 60px);
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -0.025em;
	color: var(--cpx-ink);
}

.cpx-term-description {
	max-width: 820px;
	margin: 18px 0 0;
	font-size: 18px;
	line-height: 1.85;
	color: var(--cpx-muted);
}

.cpx-term-description > *:first-child {
	margin-top: 0;
}

.cpx-term-description > *:last-child {
	margin-bottom: 0;
}

.cpx-result-count {
	min-width: 132px;
	padding: 20px 22px;
	background: rgba(255, 255, 255, 0.88);
	border: 1px solid rgba(22, 175, 229, 0.22);
	border-radius: 16px;
	box-shadow: 0 10px 30px rgba(22, 175, 229, 0.08);
	text-align: center;
}

.cpx-result-count strong,
.cpx-result-count span {
	display: block;
}

.cpx-result-count strong {
	font-size: 32px;
	line-height: 1;
	color: var(--cpx-cyan-dark);
}

.cpx-result-count span {
	margin-top: 7px;
	font-size: 13px;
	color: var(--cpx-muted);
}

.cpx-category-nav,
.cpx-products-section,
.cpx-help-cta {
	padding: 64px 0;
}

.cpx-category-nav {
	padding-bottom: 22px;
}

.cpx-products-section {
	padding-top: 42px;
}

.cpx-section-heading {
	margin-bottom: 26px;
}

.cpx-section-heading--inline {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
}

.cpx-section-heading h2,
.cpx-help-cta h2,
.cpx-no-products h2 {
	margin: 0;
	font-size: clamp(25px, 3vw, 36px);
	line-height: 1.3;
	color: var(--cpx-ink);
}

.cpx-text-link {
	flex: 0 0 auto;
	font-weight: 700;
}

.cpx-category-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.cpx-category-pills a {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	min-height: 44px;
	padding: 9px 14px;
	border: 1px solid var(--cpx-line);
	border-radius: 999px;
	background: var(--cpx-white);
	color: var(--cpx-ink);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
	text-decoration: none;
	transition: border-color 160ms ease, box-shadow 160ms ease, color 160ms ease, transform 160ms ease;
}

.cpx-category-pills a span {
	display: inline-grid;
	place-items: center;
	min-width: 24px;
	height: 24px;
	padding-inline: 5px;
	border-radius: 999px;
	background: var(--cpx-soft);
	color: var(--cpx-muted);
	font-size: 12px;
}

.cpx-category-pills a:hover,
.cpx-category-pills a:focus-visible,
.cpx-category-pills a.is-current {
	border-color: var(--cpx-cyan);
	color: var(--cpx-cyan-dark);
	box-shadow: 0 8px 22px rgba(22, 175, 229, 0.12);
	transform: translateY(-1px);
}

.cpx-category-pills a.is-current span {
	background: var(--cpx-cyan);
	color: var(--cpx-white);
}

.cpx-product-grid,
.cpx-related-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.cpx-related-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	width: min(1180px, calc(100% - 40px));
	margin: 0 auto;
}

.cpx-product-card {
	position: relative;
	display: flex;
	min-width: 0;
	flex-direction: column;
	overflow: hidden;
	background: var(--cpx-white);
	border: 1px solid var(--cpx-line);
	border-radius: var(--cpx-radius);
	box-shadow: 0 8px 26px rgba(18, 47, 65, 0.055);
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.cpx-product-card:hover,
.cpx-product-card:focus-within {
	border-color: rgba(22, 175, 229, 0.55);
	box-shadow: var(--cpx-shadow);
	transform: translateY(-4px);
}

.cpx-product-card__media {
	display: grid;
	place-items: center;
	aspect-ratio: 4 / 3;
	min-height: 0;
	overflow: hidden;
	padding: 18px;
	background: linear-gradient(145deg, #fbfdfe, #f1f7f9);
	border-bottom: 1px solid var(--cpx-line);
}

.cpx-product-card__media picture {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.cpx-product-card .cpx-product-card__media .cpx-product-card__image,
.cpx-product-card .cpx-product-card__media picture img {
	display: block;
	width: auto !important;
	height: auto !important;
	max-width: 78% !important;
	max-height: 78% !important;
	margin: auto !important;
	object-fit: contain !important;
	object-position: center !important;
	transform: none !important;
}

.cpx-product-card__placeholder {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	color: #a9bec9;
}

.cpx-product-card__placeholder svg {
	width: 42%;
	max-width: 110px;
	fill: currentColor;
}

.cpx-product-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: flex-start;
	padding: 22px;
}

.cpx-product-card__brand {
	margin-bottom: 8px;
	color: var(--cpx-cyan-dark);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.cpx-product-card__title {
	margin: 0;
	font-size: 20px;
	font-weight: 800;
	line-height: 1.48;
}

.cpx-product-card__title a {
	color: var(--cpx-ink);
	text-decoration: none;
}

.cpx-product-card__title a::after {
	position: absolute;
	inset: 0;
	content: "";
}

.cpx-product-card__terms {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin-top: 14px;
}

.cpx-product-card__terms span {
	padding: 5px 9px;
	border-radius: 999px;
	background: var(--cpx-soft);
	color: var(--cpx-muted);
	font-size: 12px;
	line-height: 1.35;
}

.cpx-product-card__link {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	margin-top: auto;
	padding-top: 20px;
	color: var(--cpx-cyan-dark);
	font-size: 14px;
	font-weight: 800;
	text-decoration: none;
}

.cpx-product-card__link:hover,
.cpx-product-card__link:focus-visible {
	text-decoration: underline;
}

.cpx-product-card--compact .cpx-product-card__media {
	padding: 18px;
}

.cpx-product-card--compact .cpx-product-card__body {
	padding: 18px;
}

.cpx-product-card--compact .cpx-product-card__title {
	font-size: 17px;
	line-height: 1.45;
}

.cpx-product-card--compact .cpx-product-card__link {
	font-size: 13px;
}

.cpx-pagination {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin-top: 42px;
}

.cpx-pagination .page-numbers {
	display: inline-grid;
	place-items: center;
	min-width: 42px;
	height: 42px;
	padding-inline: 12px;
	border: 1px solid var(--cpx-line);
	border-radius: 10px;
	background: var(--cpx-white);
	color: var(--cpx-ink);
	font-weight: 700;
	text-decoration: none;
}

.cpx-pagination .page-numbers.current,
.cpx-pagination a.page-numbers:hover,
.cpx-pagination a.page-numbers:focus-visible {
	border-color: var(--cpx-cyan);
	background: var(--cpx-cyan);
	color: var(--cpx-white);
}

.cpx-help-cta {
	padding-top: 26px;
	padding-bottom: 78px;
}

.cpx-help-cta__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 34px;
	align-items: center;
	padding: 36px;
	border-radius: 22px;
	background: linear-gradient(130deg, #102c3d 0%, #17485f 100%);
	box-shadow: 0 20px 50px rgba(16, 44, 61, 0.16);
	color: var(--cpx-white);
}

.cpx-help-cta h2 {
	color: var(--cpx-white);
}

.cpx-help-cta p:not(.cpx-eyebrow) {
	max-width: 760px;
	margin: 12px 0 0;
	color: #dceaf0;
	font-size: 16px;
	line-height: 1.75;
}

.cpx-help-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: flex-end;
}

.cpx-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 11px 18px;
	border: 1px solid var(--cpx-cyan);
	border-radius: 11px;
	background: var(--cpx-cyan);
	color: #062838;
	font-weight: 800;
	line-height: 1.3;
	text-align: center;
	text-decoration: none;
	transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.cpx-button:hover,
.cpx-button:focus-visible {
	background: #43c3ed;
	color: #061f2b;
	transform: translateY(-1px);
}

.cpx-button--secondary {
	border-color: rgba(255, 255, 255, 0.48);
	background: transparent;
	color: var(--cpx-white);
}

.cpx-related-empty .cpx-button--secondary {
	border-color: var(--cpx-cyan);
	color: var(--cpx-cyan-dark);
}

.cpx-related-empty {
	width: min(760px, calc(100% - 40px));
	margin: 0 auto;
	padding: 28px;
	border: 1px solid var(--cpx-line);
	border-radius: var(--cpx-radius);
	background: var(--cpx-soft);
	text-align: center;
}

.cpx-related-empty p {
	margin: 0 0 16px;
}

.cpx-no-products {
	padding: 46px 28px;
	border: 1px dashed #b9cbd4;
	border-radius: var(--cpx-radius);
	background: var(--cpx-soft);
	text-align: center;
}

.cpx-no-products p {
	margin: 12px 0 0;
	color: var(--cpx-muted);
}

.cpx-related-section {
	padding-block: 48px !important;
}

@media (max-width: 1024px) {
	.cpx-product-grid,
	.cpx-related-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.cpx-help-cta__inner {
		grid-template-columns: 1fr;
	}

	.cpx-help-cta__actions {
		justify-content: flex-start;
	}
}

@media (max-width: 767px) {
	.cpx-container,
	.cpx-related-grid {
		width: min(100% - 20px, 1180px);
	}

	.cpx-archive-hero {
		padding: 30px 0 38px;
	}

	.cpx-breadcrumbs {
		margin-bottom: 24px;
		overflow-x: auto;
		white-space: nowrap;
	}

	.cpx-archive-hero__content,
	.cpx-section-heading--inline {
		display: block;
	}

	.cpx-result-count {
		display: inline-flex;
		align-items: center;
		gap: 8px;
		min-width: 0;
		margin-top: 24px;
		padding: 12px 15px;
	}

	.cpx-result-count strong {
		font-size: 24px;
	}

	.cpx-result-count span {
		margin-top: 0;
	}

	.cpx-term-description {
		font-size: 16px;
	}

	.cpx-category-nav,
	.cpx-products-section,
	.cpx-help-cta {
		padding-block: 42px;
	}

	.cpx-category-nav {
		padding-bottom: 14px;
	}

	.cpx-products-section {
		padding-top: 34px;
	}

	.cpx-text-link {
		display: inline-block;
		margin-top: 12px;
	}

	.cpx-product-grid,
	.cpx-related-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.cpx-product-card {
		border-radius: 14px;
	}

	.cpx-product-card__media,
	.cpx-product-card--compact .cpx-product-card__media {
		padding: 10px;
	}

	.cpx-product-card .cpx-product-card__media .cpx-product-card__image,
	.cpx-product-card .cpx-product-card__media picture img {
		max-width: 76% !important;
		max-height: 76% !important;
	}

	.cpx-product-card__body,
	.cpx-product-card--compact .cpx-product-card__body {
		padding: 13px;
	}

	.cpx-product-card__brand {
		margin-bottom: 6px;
		font-size: 10px;
	}

	.cpx-product-card__title,
	.cpx-product-card--compact .cpx-product-card__title {
		font-size: 14px;
		line-height: 1.45;
	}

	.cpx-product-card__terms {
		gap: 5px;
		margin-top: 10px;
	}

	.cpx-product-card__terms span {
		padding: 4px 7px;
		font-size: 10px;
	}

	.cpx-product-card__link,
	.cpx-product-card--compact .cpx-product-card__link {
		padding-top: 14px;
		font-size: 11px;
	}

	.cpx-help-cta__inner {
		padding: 26px 22px;
	}

	.cpx-help-cta__actions,
	.cpx-help-cta__actions .cpx-button {
		width: 100%;
	}

	.cpx-related-section {
		padding-block: 38px !important;
	}

	body.cpx-related-visible .cpx-floating-whatsapp,
	body.cpx-related-visible .ht-ctc-chat,
	body.cpx-related-visible .joinchat,
	body.cpx-related-visible #qlwapp {
		opacity: 0 !important;
		visibility: hidden !important;
		pointer-events: none !important;
	}
}

@media (max-width: 390px) {
	.cpx-container,
	.cpx-related-grid {
		width: min(100% - 14px, 1180px);
	}

	.cpx-product-grid,
	.cpx-related-grid {
		gap: 8px;
	}

	.cpx-product-card__body,
	.cpx-product-card--compact .cpx-product-card__body {
		padding: 10px;
	}

	.cpx-product-card__title,
	.cpx-product-card--compact .cpx-product-card__title {
		font-size: 13px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.cpx-product-card,
	.cpx-product-card__image,
	.cpx-category-pills a,
	.cpx-button {
		transition: none;
	}
}
