/*
 * Prime Coil — product catalogue front-end.
 *
 * Palette and rhythm are lifted from the printed brochure so the site and the PDF
 * read as one system: navy for structure, red used sparingly as an index marker,
 * and a mono face for the small technical labels engineers scan for.
 *
 * Every value is a custom property. Elementor's global colours can override the
 * whole sheet by redefining these on :root.
 */

.pcc-section,
.pcc-quickspecs,
.pcc-gallery,
.pcc-datasheet,
.pcc-closing,
.pcc-term-copy {
	--pcc-navy: #01225f;
	--pcc-red: #fe4b45;
	--pcc-ink: #3a4049;
	--pcc-surface: #f4f6f8;
	--pcc-line: #e4e7ec;
	--pcc-radius: 10px;
	--pcc-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
	--pcc-cols: 2;
}

.pcc-section {
	margin: 0 0 48px;
}

.pcc-section:last-child {
	margin-bottom: 0;
}

.pcc-section__title {
	margin: 0 0 20px;
	color: var(--pcc-navy);
	font-weight: 800;
	letter-spacing: -0.015em;
}

.pcc-section__intro {
	margin: -10px 0 22px;
	max-width: 68ch;
	color: var(--pcc-ink);
}

.pcc-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
	color: var(--pcc-red);
	font-family: var(--pcc-mono);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
}

/* Chips ------------------------------------------------------------------- */

.pcc-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.pcc-chips__item {
	padding: 8px 18px;
	background: var(--pcc-surface);
	border: 1px solid var(--pcc-line);
	border-radius: 999px;
	color: var(--pcc-navy);
	font-size: 0.875rem;
	font-weight: 700;
}

.pcc-chips__item a {
	color: inherit;
	text-decoration: none;
}

.pcc-chips__item:hover {
	border-color: var(--pcc-red);
}

/* Tick lists -------------------------------------------------------------- */

.pcc-ticks {
	display: grid;
	grid-template-columns: repeat(var(--pcc-cols), minmax(0, 1fr));
	gap: 10px 28px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.pcc-ticks--tight {
	--pcc-cols: 1;
	gap: 6px;
}

.pcc-ticks__item {
	position: relative;
	padding-left: 26px;
	color: var(--pcc-ink);
	line-height: 1.55;
}

.pcc-ticks__item::before {
	content: "";
	position: absolute;
	top: 0.6em;
	left: 0;
	width: 12px;
	height: 2px;
	background: var(--pcc-red);
}

/* Cards ------------------------------------------------------------------- */

.pcc-grid {
	display: grid;
	grid-template-columns: repeat(var(--pcc-cols), minmax(0, 1fr));
	gap: 20px;
}

.pcc-card {
	padding: 20px 22px;
	background: var(--pcc-surface);
	border: 1px solid var(--pcc-line);
	border-radius: var(--pcc-radius);
}

.pcc-card__title {
	margin: 0 0 6px;
	color: var(--pcc-navy);
	font-size: 1.0625rem;
	font-weight: 800;
}

.pcc-card__text {
	margin: 0;
	color: var(--pcc-ink);
	font-size: 0.9375rem;
	line-height: 1.6;
}

/* Specification table ----------------------------------------------------- */

.pcc-specs {
	width: 100%;
	border-collapse: collapse;
	border: 1px solid var(--pcc-line);
	border-radius: var(--pcc-radius);
	overflow: hidden;
}

.pcc-specs th,
.pcc-specs td {
	padding: 12px 18px;
	border-bottom: 1px solid var(--pcc-line);
	text-align: left;
	vertical-align: top;
	font-size: 0.9375rem;
}

.pcc-specs tr:last-child th,
.pcc-specs tr:last-child td {
	border-bottom: 0;
}

.pcc-specs th {
	width: 38%;
	background: var(--pcc-surface);
	color: var(--pcc-navy);
	font-weight: 700;
}

.pcc-specs td {
	color: var(--pcc-ink);
}

/* Headline specs strip ---------------------------------------------------- */

.pcc-quickspecs {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 1px;
	margin: 0 0 32px;
	background: var(--pcc-line);
	border: 1px solid var(--pcc-line);
	border-radius: var(--pcc-radius);
	overflow: hidden;
}

.pcc-quickspecs__item {
	padding: 16px 18px;
	background: #fff;
}

.pcc-quickspecs__label {
	margin: 0 0 4px;
	color: var(--pcc-red);
	font-family: var(--pcc-mono);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.pcc-quickspecs__value {
	margin: 0;
	color: var(--pcc-navy);
	font-size: 0.9375rem;
	font-weight: 700;
	line-height: 1.4;
}

/* Variants ---------------------------------------------------------------- */

.pcc-variants {
	display: grid;
	gap: 18px;
}

.pcc-variant {
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: 22px;
	padding: 22px;
	background: #fff;
	border: 1px solid var(--pcc-line);
	border-left: 3px solid var(--pcc-navy);
	border-radius: var(--pcc-radius);
	scroll-margin-top: 100px;
}

.pcc-variant:target {
	border-left-color: var(--pcc-red);
	background: var(--pcc-surface);
}

.pcc-variant:not(:has(.pcc-variant__media)) {
	grid-template-columns: 1fr;
}

.pcc-variant__media img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 6px;
}

.pcc-variant__title {
	margin: 0 0 8px;
	color: var(--pcc-navy);
	font-size: 1.125rem;
	font-weight: 800;
}

.pcc-variant__text {
	margin: 0 0 12px;
	color: var(--pcc-ink);
	line-height: 1.6;
}

/* FAQs -------------------------------------------------------------------- */

.pcc-faqs {
	border-top: 1px solid var(--pcc-line);
}

.pcc-faq {
	border-bottom: 1px solid var(--pcc-line);
}

.pcc-faq__q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 16px 0;
	cursor: pointer;
	list-style: none;
}

.pcc-faq__q::-webkit-details-marker {
	display: none;
}

.pcc-faq__q::after {
	content: "+";
	flex: none;
	color: var(--pcc-red);
	font-size: 1.375rem;
	line-height: 1;
}

.pcc-faq[open] .pcc-faq__q::after {
	content: "\2212";
}

.pcc-faq__qtext {
	margin: 0;
	color: var(--pcc-navy);
	font-size: 1rem;
	font-weight: 700;
}

.pcc-faq__a {
	padding: 0 0 18px;
	max-width: 72ch;
	color: var(--pcc-ink);
	line-height: 1.65;
}

.pcc-faq__a p {
	margin: 0 0 12px;
}

.pcc-faq__a p:last-child {
	margin-bottom: 0;
}

/* Listings ---------------------------------------------------------------- */

.pcc-product-card,
.pcc-cat-card {
	border: 1px solid var(--pcc-line);
	border-radius: var(--pcc-radius);
	overflow: hidden;
	transition: border-color 0.18s ease, transform 0.18s ease;
}

.pcc-product-card:hover,
.pcc-cat-card:hover {
	border-color: var(--pcc-navy);
	transform: translateY(-2px);
}

.pcc-product-card a,
.pcc-cat-card a {
	display: block;
	height: 100%;
	color: inherit;
	text-decoration: none;
}

.pcc-product-card__media img,
.pcc-cat-card__media img {
	display: block;
	width: 100%;
	height: 260px;
	object-fit: cover;
}

.pcc-product-card__body,
.pcc-cat-card__body {
	padding: 20px 22px 22px;
}

.pcc-product-card__title{
	margin: 0 0 4px;
	color: var(--pcc-navy);
	font-size: 1.0625rem;
	font-weight: 800;
	line-height: 1.3;
}

.pcc-product-card__subtitle {
	margin: 0 0 10px;
	color: var(--pcc-red);
	font-family: var(--pcc-mono);
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.pcc-product-card__text,
.pcc-cat-card__text {
	margin: 0 0 12px;
	color: var(--pcc-ink);
	font-size: 0.9375rem;
	line-height: 1.6;
}

.pcc-product-card__meta,
.pcc-cat-card__count {
	display: block;
	margin: 0 0 14px;
	color: var(--pcc-ink);
	font-family: var(--pcc-mono);
	font-size: 12px;
}

.pcc-product-card__cta {
	display: inline-block;
	color: var(--pcc-navy);
	font-size: 0.875rem;
	font-weight: 700;
	border-bottom: 2px solid var(--pcc-red);
	padding-bottom: 2px;
}

/* Gallery, datasheet, copy ------------------------------------------------ */

.pcc-gallery {
	display: grid;
	grid-template-columns: repeat(var(--pcc-cols), minmax(0, 1fr));
	gap: 14px;
	margin: 0 0 32px;
}

.pcc-gallery__item {
	margin: 0;
}

.pcc-gallery__item img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 6px;
}

.pcc-gallery__item figcaption {
	margin-top: 6px;
	color: var(--pcc-ink);
	font-size: 0.8125rem;
}

.pcc-datasheet {
	display: inline-flex;
	align-items: baseline;
	gap: 10px;
	padding: 12px 22px;
	background: var(--pcc-navy);
	border-radius: 6px;
	color: #fff;
	font-weight: 700;
	text-decoration: none;
}

.pcc-datasheet:hover {
	background: var(--pcc-red);
	color: #fff;
}

.pcc-datasheet__size {
	font-family: var(--pcc-mono);
	font-size: 11px;
	opacity: 0.75;
}

.pcc-closing,
.pcc-term-copy {
	max-width: 72ch;
	color: var(--pcc-ink);
	line-height: 1.7;
}

.pcc-term-copy--outro {
	margin-top: 48px;
}

.pcc-notice {
	padding: 12px 16px;
	background: #fff4e5;
	border-left: 3px solid #d97706;
	color: #7c4a03;
}

/* Responsive -------------------------------------------------------------- */

@media (max-width: 1024px) {
	.pcc-grid,
	.pcc-gallery {
		--pcc-cols: 2;
	}

	.pcc-variant {
		grid-template-columns: 180px 1fr;
	}
}

@media (max-width: 767px) {
	.pcc-grid,
	.pcc-gallery,
	.pcc-ticks {
		--pcc-cols: 1;
	}

	.pcc-variant {
		grid-template-columns: 1fr;
	}

	.pcc-specs th {
		width: 45%;
	}

	.pcc-section {
		margin-bottom: 36px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.pcc-product-card,
	.pcc-cat-card {
		transition: none;
	}

	.pcc-product-card:hover,
	.pcc-cat-card:hover {
		transform: none;
	}
}

/* Keyboard focus is never removed, only restyled. */
.pcc-product-card a:focus-visible,
.pcc-cat-card a:focus-visible,
.pcc-faq__q:focus-visible,
.pcc-datasheet:focus-visible,
.pcc-chips__item a:focus-visible {
	outline: 2px solid var(--pcc-red);
	outline-offset: 3px;
}

/*
 * Rich-text fields (feature descriptions, variant descriptions, FAQ answers,
 * closing paragraph, enquiry intro) now render editor markup, so their wrappers are
 * <div> rather than <p> — a <p> cannot legally contain the paragraphs TinyMCE emits.
 * These rules restore the spacing the single-paragraph version had.
 */

.pcc-card__text > :first-child,
.pcc-variant__text > :first-child,
.pcc-section__intro > :first-child {
	margin-top: 0;
}

.pcc-card__text > :last-child,
.pcc-variant__text > :last-child,
.pcc-section__intro > :last-child {
	margin-bottom: 0;
}

.pcc-card__text p,
.pcc-variant__text p {
	margin: 0 0 10px;
}

.pcc-card__text ul,
.pcc-card__text ol,
.pcc-variant__text ul,
.pcc-variant__text ol,
.pcc-faq__a ul,
.pcc-faq__a ol,
.pcc-closing ul,
.pcc-closing ol {
	margin: 0 0 12px;
	padding-left: 1.25em;
}

.pcc-card__text li,
.pcc-variant__text li,
.pcc-faq__a li,
.pcc-closing li {
	margin-bottom: 4px;
}

.pcc-card__text a,
.pcc-variant__text a,
.pcc-faq__a a,
.pcc-closing a,
.pcc-term-copy a {
	color: var(--pcc-navy);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.pcc-card__text a:hover,
.pcc-variant__text a:hover,
.pcc-faq__a a:hover,
.pcc-closing a:hover,
.pcc-term-copy a:hover {
	color: var(--pcc-red);
}

/* =========================================================================
 * Products filter shortcode — [pcc_products_filter]
 * ========================================================================= */

.pcc-filter {
	--pcc-navy: #01225f;
	--pcc-red: #fe4b45;
	--pcc-ink: #3a4049;
	--pcc-muted: #6b7280;
	--pcc-line: #e4e7ec;
	--pcc-surface: #f4f6f8;
	--pcc-radius: 10px;
	--pcc-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
	--pcc-cols: 3;
	margin: 0 0 48px;
}

/* Filter bar --------------------------------------------------------------- */

.pcc-filter__bar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 0 0 24px;
	margin-bottom: 32px;
	border-bottom: 1px solid var(--pcc-line);
}

.pcc-filter__tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.pcc-filter__tab {
    background: transparent !important;
    color: var(--pcc-navy) !important;
    font-size: 0.9375rem;
    font-weight: 700;
	border-color: var(--pcc-navy) !important;
}

.pcc-filter__tab:hover {
	border-color: var(--pcc-navy);
}

.pcc-filter__tab.is-active {
	background: var(--pcc-navy) !important;
	border-color: var(--pcc-navy) !important;
	color: #fff !important;
}

.pcc-filter__tab:focus-visible {
	outline: 2px solid var(--pcc-red);
	outline-offset: 2px;
}

.pcc-filter__meta {
	display: flex;
	align-items: center;
	gap: 20px;
}

.pcc-filter__search {
	position: relative;
}

.pcc-filter__search-input {
	min-width: 240px;
	padding: 10px 18px !important;
	background: var(--pcc-surface) !important;
	border: 1px solid var(--pcc-line) !important;
	transition: border-color 0.15s ease, background 0.15s ease;
}

.pcc-filter__search-input:focus {
	background: #fff !important;
	border-color: var(--pcc-navy) !important;
	outline: none;
}

.pcc-filter__count {
	color: var(--pcc-muted);
	font-family: var(--pcc-mono);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	white-space: nowrap;
}

.pcc-filter__count strong {
	color: var(--pcc-red);
	font-weight: 700;
}

/* Grid --------------------------------------------------------------------- */

/* =========================================================================
 * Products filter grid — column control
 *
 * Uses data-cols attribute instead of inline style so media queries can
 * override at breakpoints. Inline styles have specificity 1000 and beat
 * any media query rule; a data attribute selector is normal specificity.
 * ========================================================================= */

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

/* Column presets driven by the data-cols attribute */
.pcc-filter__grid[data-cols="1"] { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.pcc-filter__grid[data-cols="2"] { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.pcc-filter__grid[data-cols="3"] { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.pcc-filter__grid[data-cols="4"] { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.pcc-filter__grid[data-cols="5"] { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.pcc-filter__grid[data-cols="6"] { grid-template-columns: repeat(6, minmax(0, 1fr)); }

/* Breakpoints override the data-cols values above.
   Because these come later in the file (and have equal specificity),
   they win when the viewport matches. */
@media (max-width: 1024px) {
	.pcc-filter__grid,
	.pcc-filter__grid[data-cols] {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 16px;
	}
}

@media (max-width: 767px) {
	.pcc-filter__grid,
	.pcc-filter__grid[data-cols] {
		grid-template-columns: repeat(1, minmax(0, 1fr));
		gap: 16px;
	}
}
/* Cards -------------------------------------------------------------------- */

.pcc-fcard {
	background: #fff;
	border: 1px solid var(--pcc-line);
	border-radius: var(--pcc-radius);
	overflow: hidden;
	transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.pcc-fcard[data-hidden] {
	display: none;
}

.pcc-fcard:hover {
	border-color: var(--pcc-navy);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px -12px rgba(1, 34, 95, 0.25);
}

.pcc-fcard__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	color: inherit;
	text-decoration: none;
}

/* Media area with eyebrow badge sitting on top */
.pcc-fcard__media {
	position: relative;
	aspect-ratio: 4 / 3;
	background: #fff);
	overflow: hidden;
}

.pcc-fcard__img {
    display: block;
    width: 100%;
    height: 100% !important;
    object-fit: contain;
}

.pcc-fcard__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	padding: 20px;
	color: var(--pcc-navy);
	font-family: var(--pcc-mono);
	font-size: 14px;
	font-weight: 600;
	text-align: center;
	opacity: 0.55;
}

.pcc-fcard__eyebrow {
	position: absolute;
	top: 16px;
	left: 16px;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	padding: 6px 12px;
	background: var(--pcc-navy);
	border-radius: 4px;
	color: #fff;
	font-family: var(--pcc-mono);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	line-height: 1;
}

/* Body --------------------------------------------------------------------- */

.pcc-fcard__body {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 24px 24px 22px;
	flex: 1 1 auto;
}

.pcc-fcard__title {
	margin: 0;
	color: var(--pcc-navy);
	font-size: 1.125rem;
	font-weight: 800;
	line-height: 1.3;
}

.pcc-fcard__text {
	margin: 0;
	color: var(--pcc-ink);
	font-size: 0.9375rem;
	line-height: 1.55;
}

.pcc-fcard__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.pcc-fcard__chip {
	padding: 5px 12px;
	background: var(--pcc-surface);
	border: 1px solid var(--pcc-line);
	border-radius: 999px;
	color: var(--pcc-navy);
	font-size: 0.75rem;
	font-weight: 600;
	line-height: 1.2;
}

.pcc-fcard__cta {
	margin-top: auto;
	padding-top: 4px;
	color: var(--pcc-red);
	font-size: 0.9375rem;
	font-weight: 700;
	line-height: 1;
}

.pcc-fcard__link:focus-visible {
	outline: 2px solid var(--pcc-red);
	outline-offset: 2px;
}

/* Empty state -------------------------------------------------------------- */

.pcc-filter__empty {
	margin: 24px 0 0;
	padding: 40px 24px;
	background: var(--pcc-surface);
	border-radius: var(--pcc-radius);
	color: var(--pcc-muted);
	text-align: center;
	font-size: 0.9375rem;
}

.pcc-filter__empty[hidden] {
	display: none;
}

/* Responsive --------------------------------------------------------------- */

@media (max-width: 767px) {
	.pcc-filter__bar {
		flex-direction: column;
		align-items: stretch;
	}

	.pcc-filter__tabs {
		overflow-x: auto;
		flex-wrap: nowrap;
		margin: 0 -20px;
		padding: 4px 20px;
		/* Hide scrollbar while keeping scroll behaviour. */
		-ms-overflow-style: none;
		scrollbar-width: none;
	}

	.pcc-filter__tabs::-webkit-scrollbar {
		display: none;
	}

	.pcc-filter__tab {
		flex: 0 0 auto;
	}

	.pcc-filter__meta {
		justify-content: space-between;
	}

	.pcc-filter__search-input {
		width: 100%;
		min-width: 0;
	}

}

/* =========================================================================
 * Category page shortcode — [pcc_category_page]
 *
 * Self-contained: works dropped into a full-width Elementor container. The hero
 * bleeds edge-to-edge; content sections cap at ~1180px and centre. Palette pulls
 * from the same navy/red variables as the rest of the catalogue.
 * ========================================================================= */

.pcc-cat {
	--pcc-navy: #01225f;
	--pcc-navy-dark: #011745;
	--pcc-red: #fe4b45;
	--pcc-red-hover: #e73d38;
	--pcc-ink: #3a4049;
	--pcc-muted: #6b7280;
	--pcc-line: #e4e7ec;
	--pcc-surface: #f7f8fa;
	--pcc-radius: 12px;
	--pcc-radius-lg: 16px;
	--pcc-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
	--pcc-max: 1180px;
	--pcc-gutter: clamp(16px, 4vw, 40px);
	color: var(--pcc-ink);
	font-size: 16px;
	line-height: 1.55;
}

.pcc-cat__section {
	max-width: var(--content-width);
	margin: 0 auto;
	padding: clamp(48px, 8vw, 96px) var(--pcc-gutter);
	padding-left: 0;
    padding-right: 0;
}
.pcc-cat__h3 {
	margin: 0;
	color: var(--pcc-navy);
	font-size: clamp(1.375rem, 2.4vw, 1.75rem);
	font-weight: 700;
	letter-spacing: -0.015em;
	line-height: 1.2;
}

.pcc-cat__kicker {
	display: inline-block;
	margin-bottom: 8px;
	color: var(--pcc-red);
	font-family: var(--pcc-mono);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.24em;
	text-transform: uppercase;
}



/* Buttons -----------------------------------------------------------------
 * One button system used across every section.
 * ---------------------------------------------------------------------- */

.pcc-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 18px 22px;
	border: 1px solid transparent;
	border-radius: 8px;
	font-size: 0.9375rem;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;
	transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.pcc-btn--red {
	background: var(--pcc-red);
	color: #fff !important;
}

.pcc-btn--red:hover {
	background: var(--pcc-red-hover);
	color: #fff;
	transform: translateY(-1px);
}

.pcc-btn--outline {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.35);
	color: #fff !important;
}

.pcc-btn--outline:hover {
	background: rgba(255, 255, 255, 0.08) !important;
	border-color: #fff;
	color: #fff;
}

.pcc-btn--outline-light {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff !important;
}
.pcc-btn--outline-light:hover {
	background: #fff;
	color: var(--pcc-navy) !important;
}

.pcc-btn--ghost {
	background: transparent;
	border-color: var(--pcc-line);
	color: var(--pcc-navy);
}

.pcc-btn--ghost:hover {
	background: var(--pcc-surface);
	border-color: var(--pcc-navy);
}

.pcc-btn:focus-visible {
	outline: 2px solid var(--pcc-red);
	outline-offset: 3px;
}

/* Hero -------------------------------------------------------------------- */

.pcc-cat__hero {
	background: var(--pcc-navy);
	color: #fff;
	padding: 0;
}

.pcc-cat__hero-inner {
	max-width: var(--content-width);
	margin: 0 auto;
	padding: clamp(28px, 4vw, 40px) var(--pcc-gutter) clamp(48px, 6vw, 72px);
	padding-left: 0;
    padding-right: 0;
}

.pcc-cat__crumbs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin-bottom: clamp(28px, 4vw, 48px);
	font-family: var(--pcc-mono);
	font-size: 12px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.7);
}

.pcc-cat__crumbs a {
	color: var(--pcc-red) !important;
}

.pcc-cat__crumb-sep {
	color: rgba(255, 255, 255, 0.35);
}

.pcc-cat__hero-grid {
	display: grid;
	grid-template-columns: 1.15fr 1fr;
	gap: clamp(32px, 5vw, 64px);
	align-items: center;
}

.pcc-cat__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--pcc-red);
	font-family: var(--pcc-mono);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.pcc-cat__dot {
	opacity: 0.5;
}

.pcc-cat__title {
    color: #fff !important;
    font-weight: 700;
}

.pcc-cat__title-accent {
	color: var(--pcc-red);
}

.pcc-cat__lead {
	margin: 0 0 32px;
	color: rgba(255, 255, 255, 0.85);
	font-size: clamp(1rem, 1.3vw, 1.0625rem);
	line-height: 1.6;
}

.pcc-cat__hero-ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.pcc-cat__hero-media {
	position: relative;
	aspect-ratio: 4 / 3;
	border-radius: var(--pcc-radius-lg);
	overflow: hidden;
	background: rgba(255, 255, 255, 0.05);
}

.pcc-cat__hero-img {
	display: block;
	width: 100%;
	height: 100% !important;
	object-fit: cover;
}

.pcc-cat__hero-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	color: rgba(255, 255, 255, 0.35);
	font-family: var(--pcc-mono);
	font-size: 13px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

/* About ------------------------------------------------------------------- */

.pcc-cat__about-grid {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: clamp(24px, 5vw, 64px);
	align-items: start;
}

.pcc-cat__about-right {
	color: var(--pcc-ink);
	font-size: 1rem;
	line-height: 1.65;
}

.pcc-cat__about-right p {
	margin: 0 0 16px;
}

.pcc-cat__about-right p:last-child {
	margin-bottom: 0;
}

.pcc-cat__about-detail {
	margin-top: clamp(24px, 4vw, 48px);
	padding-top: clamp(24px, 4vw, 48px);
	border-top: 1px solid var(--pcc-line);
	color: var(--pcc-ink);
	line-height: 1.7;
}

.pcc-cat__about-detail p {
	margin: 0 0 16px;
}

section.pcc-cat__section.pcc-cat__apps {
    padding: 0;
}

.pcc-cat__about-detail h2 {
	font-size: 1.375rem;
}

.pcc-cat__about-detail h3 {
	font-size: 1.125rem;
}

.pcc-cat__about-detail ul {
	margin: 0 0 16px;
	padding-left: 1.25em;
}

.pcc-cat__about-detail li {
	margin-bottom: 6px;
}

.pcc-cat__about-detail strong {
	color: var(--pcc-navy);
}

/* homepage append css */

/* =========================================================================
 * View all button — [pcc_products_filter show_view_all="yes"]
 * Append to your front.css
 * ========================================================================= */

.pcc-filter__footer {
	margin-top: 32px;
	text-align: center;
}

.pcc-filter__view-all {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 32px;
	background: var(--pcc-navy, #01225f);
	border: 1px solid var(--pcc-navy, #01225f);
	border-radius: 999px;
	color: #fff !important;
	font-size: 0.9375rem;
	font-weight: 700;
	text-decoration: none;
	line-height: 1;
	transition: background 0.15s ease, transform 0.15s ease;
}

.pcc-filter__view-all:hover {
	background: transparent;
	color: var(--pcc-navy, #01225f) !important;
	transform: translateY(-1px);
}

.pcc-filter__view-all span {
	transition: transform 0.15s ease;
}

.pcc-filter__view-all:hover span {
	transform: translateX(3px);
}

.pcc-filter__footer {
    margin-top: 20px;
}

a.pcc-filter__view-all {
    background-color: #fe4b45;
    color: #fff;
    padding: 13px 20px;
    display: inline-block;
    border-radius: 10px;
	border: 1px solid #fe4b45;
}

@media (prefers-reduced-motion: reduce) {
	.pcc-filter__view-all,
	.pcc-filter__view-all span {
		transition: none;
	}

	.pcc-filter__view-all:hover {
		transform: none;
	}

	.pcc-filter__view-all:hover span {
		transform: none;
	}
}

/* Products list ----------------------------------------------------------- */

.pcc-cat__products {
	padding-top: clamp(24px, 4vw, 48px);
}

.pcc-cat__products-head {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: clamp(20px, 3vw, 32px);
}

.pcc-cat__count {
	color: var(--pcc-muted);
	font-family: var(--pcc-mono);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	white-space: nowrap;
}

.pcc-cat__count strong {
	color: var(--pcc-red);
	font-weight: 700;
}

.pcc-cat__product-list {
	display: grid;
	gap: 16px;
}

/* One row --------------------------------- */

.pcc-cat__row {
	display: grid;
	grid-template-columns: 160px 1fr auto;
	gap: 24px;
	align-items: center;
	padding: 20px;
	background: #fff;
	border: 1px solid var(--pcc-line);
	border-radius: var(--pcc-radius);
	transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.pcc-cat__row:hover {
	border-color: var(--pcc-navy);
	box-shadow: 0 6px 20px -10px rgba(1, 34, 95, 0.2);
}

.pcc-cat__row-media {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1;
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	text-decoration: none;
}

.pcc-cat__row-media img {
    display: block;
    width: 100%;
    height: 100% !important;
    object-fit: contain;
}

.pcc-cat__row-placeholder {
	padding: 16px;
	color: var(--pcc-navy);
	font-family: var(--pcc-mono);
	font-size: 12px;
	font-weight: 600;
	text-align: center;
	line-height: 1.3;
	opacity: 0.5;
}

.pcc-cat__row-body {
	min-width: 0;
}

.pcc-cat__row-badge {
	display: inline-flex;
	align-items: center;
	padding: 5px 10px;
	margin-bottom: 8px;
	background: var(--pcc-navy);
	border-radius: 4px;
	color: #fff;
	font-family: var(--pcc-mono);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	line-height: 1;
}

.pcc-cat__row-title {
	margin: 0 0 6px;
	font-size: 1.125rem;
	font-weight: 800;
	line-height: 1.3;
}

.pcc-cat__row-title a {
	color: var(--pcc-navy);
	text-decoration: none;
}

.pcc-cat__row-title a:hover {
	color: var(--pcc-red);
}

.pcc-cat__row-text {
	margin: 0 0 14px;
	color: var(--pcc-ink);
	font-size: 0.9375rem;
	line-height: 1.55;
}

/* Micro-specs strip ------------------------ */

.pcc-cat__row-specs {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 32px;
	margin: 0;
}

.pcc-cat__row-spec {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.pcc-cat__row-spec dt {
	color: var(--pcc-muted);
	font-family: var(--pcc-mono);
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.pcc-cat__row-spec dd {
	margin: 0;
	color: var(--pcc-ink);
	font-size: 0.9375rem;
	font-weight: 600;
}

/* Actions column --------------------------- */

.pcc-cat__row-actions {
	display: flex;
	flex-direction: column;
	gap: 8px;
	min-width: 160px;
}

.pcc-cat__row-actions .pcc-btn {
	width: 100%;
}

/* Applications ------------------------------------------------------------ */

.pcc-cat__apps-inner {
	padding: clamp(18px, 5vw, 48px);
	background: var(--pcc-surface);
	border-radius: var(--pcc-radius-lg);
}

.pcc-cat__apps-head {
	margin-bottom: 24px;
}

.pcc-cat__apps-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.pcc-cat__app-chip {
	padding: 10px 20px;
	background: #fff;
	border: 1px solid var(--pcc-line);
	border-radius: 999px;
	color: var(--pcc-navy);
	font-size: 0.9375rem;
	font-weight: 600;
	line-height: 1;
}

@media (max-width: 767px) {
	.pcc-cat__app-chip {
    padding: 10px 20px;
    font-size: 0.7rem;
}
.pcc-cat__row-title {
    font-size: 1.5rem;
}
}

/* FAQs -------------------------------------------------------------------- */

.pcc-cat__faqs-head {
	text-align: center;
	margin-bottom: clamp(28px, 4vw, 40px);
}

.pcc-cat__faq-list {
	max-width: 980px;
	margin: 0 auto;
	display: grid;
	gap: 10px;
}

.pcc-cat__faq {
	background: var(--pcc-surface);
	border: 1px solid var(--pcc-line);
	border-radius: var(--pcc-radius);
	overflow: hidden;
}

.pcc-cat__faq[open] {
	background: #fff;
	border-color: var(--pcc-navy);
}

.pcc-cat__faq-q {
	position: relative;
	padding: 18px 56px 18px 22px;
	cursor: pointer;
	color: var(--pcc-navy);
	font-size: 1rem;
	list-style: none;
	line-height: 1.4;
	text-align: left;
}

.pcc-cat__faq-q::-webkit-details-marker {
	display: none;
}

.pcc-cat__faq-q::after {
	content: "+";
	position: absolute;
	top: 50%;
	right: 22px;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	transform: translateY(-50%);
	color: var(--pcc-red);
	font-size: 1.5rem;
	line-height: 1;
	font-weight: 400;
}

.pcc-cat__faq[open] .pcc-cat__faq-q::after {
	content: "−";
}

.pcc-cat__faq-a {
	padding: 0 22px 20px;
	color: var(--pcc-ink);
	text-align: left;
	font-size: 0.9375rem;
	line-height: 1.65;
}

.pcc-cat__faq-a p {
	margin: 0 0 10px;
}

.pcc-cat__faq-a p:last-child {
	margin-bottom: 0;
}

/* CTA --------------------------------------------------------------------- */

.pcc-cat__cta-inner {
    padding: clamp(28px, 4vw, 40px) var(--pcc-gutter);
    text-align: center;
    background: var(--pcc-navy);
    color: #fff;
    border-radius: 20px;
}

section.pcc-cat__section.pcc-cat__faqs{
	padding-bottom: 0;
}

.pcc-cat__cta-kicker {
	display: inline-block;
	color: var(--pcc-red);
	font-family: var(--pcc-mono);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.pcc-cat__cta-title {
    margin: 0 0 16px;
    color: #fff !important;
    font-weight: 700;
}

@media (max-width: 767px) {
	.pcc-cat__cta-title {
    font-weight: 600;
    font-size: 1.4rem;
}
}

.pcc-cat__cta-text {
	max-width: 52ch;
	margin: 0 auto 32px;
	color: rgba(255, 255, 255, 0.8);
	font-size: 1rem;
	line-height: 1.6;
}

.pcc-cat__cta-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
}

/* Responsive -------------------------------------------------------------- */

@media (max-width: 900px) {
	.pcc-cat__hero-grid,
	.pcc-cat__about-grid {
		grid-template-columns: 1fr;
	}

	.pcc-cat__hero-media {
		aspect-ratio: 16 / 10;
		order: -1;
		margin-bottom: 24px;
	}

	.pcc-cat__row {
		grid-template-columns: 120px 1fr;
		grid-template-areas:
			"media body"
			"actions actions";
		row-gap: 16px;
	}

	.pcc-cat__row-media {
		grid-area: media;
	}

	.pcc-cat__row-body {
		grid-area: body;
	}

	.pcc-cat__row-actions {
		grid-area: actions;
		flex-direction: row;
		width: 100%;
	}

	.pcc-cat__row-actions .pcc-btn {
		flex: 1;
	}
}

@media (max-width: 600px) {
	.pcc-cat__row {
		grid-template-columns: 1fr;
		grid-template-areas:
			"media"
			"body"
			"actions";
	}

	.pcc-cat__row-media {
		aspect-ratio: auto;
	}

	.pcc-cat__row-specs {
		gap: 12px 24px;
	}

	.pcc-cat__hero-ctas,
	.pcc-cat__cta-actions {
		flex-direction: column;
		align-items: stretch;
	}

	.pcc-cat__hero-ctas .pcc-btn,
	.pcc-cat__cta-actions .pcc-btn {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.pcc-cat__row,
	.pcc-btn {
		transition: none;
	}

	.pcc-btn--red:hover,
	.pcc-cat__row:hover {
		transform: none;
	}
}
