/* ═══════════════════════════════════════════════════════════
   CATEGORY PAGE — taxonomy landing layout
   Uses theme.css tokens. Shared product-card styles live in
   product-page.css (loaded together for cc_product taxonomy).
   ═══════════════════════════════════════════════════════════ */

.category-page {
	background: var(--cc-page-bg-grey);
	color: var(--black);
}


/* ─── Hero ───────────────────────────────────────────────────── */

.category-page__hero {
	position: relative;
	padding: 96px 0 80px;
	background: radial-gradient(120% 90% at 100% 40%, rgba(70, 104, 124, 0.38), transparent 58%), linear-gradient(158deg, #0b161b 0%, #050F13 56%, #04090c 100%);
	color: var(--white);
	overflow: hidden;
}

.category-page__hero--image::before {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--img-scrim), rgba(12, 26, 31, 0.55);
	z-index: 1;
}

.category-page__hero-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(0.7);
	z-index: 0;
}

.category-page__hero-content {
	position: relative;
	z-index: 2;
	max-width: 800px;
	text-align: center;
	margin: 0 auto;
}

.category-page__hero-title {
	font-family: var(--display);
	font-weight: 700;
	font-size: clamp(36px, 2rem + 2vw, 64px);
	line-height: 1.05;
	letter-spacing: -0.01em;
	text-transform: uppercase;
	color: var(--white);
	margin: 0;
}

.category-page__hero-sub {
	font-family: var(--display);
	font-size: clamp(15px, 0.9rem + 0.4vw, 18px);
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.85);
	margin: 16px auto 0;
	max-width: 60ch;
}


/* ─── Section title helper ───────────────────────────────────── */

.category-page__section-title {
	font-family: var(--display);
	font-size: clamp(28px, 1.4rem + 1.4vw, 40px);
	line-height: 1.1;
	letter-spacing: -0.01em;
	text-transform: uppercase;
	margin: 0 0 32px;
}

.category-page__section-title .thin { font-weight: 300; color: var(--gray-700); }
.category-page__section-title .bold { font-weight: 700; color: var(--black); margin-left: 8px; }


/* ─── Intro block ("What is X") ──────────────────────────────── */

.category-page__intro {
	padding: 3rem 0;
	background: var(--cc-page-bg-grey);
}

.category-page__intro-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
}

.category-page__intro--image-left .category-page__intro-text  { order: 2; }
.category-page__intro--image-left .category-page__intro-media { order: 1; }

@media (max-width: 900px) {
	.category-page__intro-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.category-page__intro--image-left .category-page__intro-text,
	.category-page__intro--image-left .category-page__intro-media {
		order: unset;
	}
}

.category-page__intro h2 {
	font-family: var(--display);
	font-size: clamp(28px, 1.4rem + 1.4vw, 44px);
	line-height: 1.1;
	letter-spacing: -0.01em;
	text-transform: uppercase;
	color: var(--black);
	margin: 0 0 20px;
	font-weight: 700;
}

.category-page__intro-body {
	font-family: var(--display);
	font-size: 16px;
	line-height: 1.6;
	color: var(--gray-700);
}

.category-page__intro-body p { margin: 0 0 12px; }
.category-page__intro-body p:last-child { margin-bottom: 0; }

.category-page__intro-media img {
	width: 100%;
	height: auto;
	border-radius: 16px;
	display: block;
}


/* ─── Card rows ──────────────────────────────────────────────── */

.category-page__cards {
	padding: 72px 0;
}

.category-page__cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 20px;
}

.category-page__card {
	background: var(--white);
	border: 1px solid var(--gray-300);
	border-radius: 12px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: border-color 0.18s var(--ease), transform 0.18s var(--ease), box-shadow 0.18s var(--ease);
}

.category-page__card:hover {
	border-color: var(--black);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(12, 4, 2, 0.08);
}

.category-page__card-img-wrap {
	aspect-ratio: 4 / 3;
	background: var(--img-bg);
	overflow: hidden;
}

.category-page__card-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.category-page__card-title {
	font-family: var(--display);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.3;
	color: var(--black);
	text-transform: uppercase;
	letter-spacing: -0.005em;
	margin: 0;
	padding: 16px 20px 6px;
}

.category-page__card-desc {
	font-family: var(--display);
	font-size: 14px;
	line-height: 22px;
	color: var(--gray-700);
	margin: 0;
	padding: 0 20px 20px;
}


/* ─── Products grid ──────────────────────────────────────────── */

.category-page__products {
	padding: 72px 0;
}

.category-page__products-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

@media (max-width: 1180px) {
	.category-page__products-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
	.category-page__products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
	.category-page__products-grid { grid-template-columns: 1fr; }
}

.category-page__empty {
	font-family: var(--display);
	color: var(--gray-500);
	font-style: italic;
}


/* ─── Accessories mode (subcategory loop) ────────────────────── */

.category-page__accessories {
	padding: 72px 0;
}

.category-page__acc-section + .category-page__acc-section {
	margin-top: 64px;
}

.category-page__acc-title {
	font-family: var(--display);
	font-size: clamp(22px, 1.2rem + 1vw, 32px);
	font-weight: 700;
	text-transform: uppercase;
	margin: 0 0 8px;
	color: var(--black);
}

.category-page__acc-desc {
	font-family: var(--display);
	color: var(--gray-700);
	margin: 0 0 24px;
	font-size: 15px;
	line-height: 1.5;
}


/* ─── Config options table ───────────────────────────────────── */

.category-page__config {
	padding: 72px 0;
	background: var(--white);
}

.category-page__config-table {
	width: 100%;
	border-collapse: collapse;
	background: var(--paper);
	border-radius: 12px;
	overflow: hidden;
	font-family: var(--display);
}

.category-page__config-table thead th {
	background: var(--black);
	color: var(--white);
	text-align: left;
	padding: 14px 20px;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-weight: 600;
}

.category-page__config-table th,
.category-page__config-table td {
	padding: 16px 20px;
	border-bottom: 1px solid var(--gray-300);
	text-align: left;
	font-size: 15px;
	line-height: 22px;
}

.category-page__config-table tbody th {
	width: 30%;
	font-weight: 600;
	color: var(--black);
}

.category-page__config-table tbody td {
	color: var(--gray-700);
}

.category-page__config-table tr:last-child th,
.category-page__config-table tr:last-child td {
	border-bottom: 0;
}


/* ─── Industries ─────────────────────────────────────────────── */

.category-page__industries {
	padding: 4rem 0;
	background: var(--cc-page-bg-grey);
	
}


.category-page__industries .category-page__section-title .thin { color: rgba(255,255,255,0.55); }


.category-page__industries-grid {
	display: grid;
	grid-template-columns: repeat(3 , minmax(0, 1fr));
	gap: 16px;
}

.category-page__industry {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	transition: background 0.18s var(--ease), border-color 0.18s var(--ease);
}

.category-page__industry:hover {
	background: rgba(255, 255, 255, 0.07);
	border-color: rgba(255, 255, 255, 0.16);
}

.category-page__industry h3 {
	font-family: var(--display);
	    font-size: var(--cc-font-size-pp-sm);
	font-weight: 600;
	text-transform: uppercase;
	margin: 0 0 8px;
	letter-spacing: -0.005em;
}

.category-page__industry p {
	font-family: var(--display);
	font-size: 14px;
	line-height: 22px;
	color: var(--gray-700);
	margin: 0;
}


/* ─── FAQ ────────────────────────────────────────────────────── */

.category-page__faq {
	padding: 96px 0;
	background: var(--paper);
}

.category-page__faq .wrap {
	    display: grid;
    grid-auto-columns: 1fr 3fr;
    grid-auto-flow: column;
}

.category-page__faq .category-page__section-title .bold {
		margin-left: 0px;
	}

@media (max-width: 900px) {
	.category-page__faq .wrap {
		display: block;
	}

	.category-page__faq .category-page__section-title .bold {
		margin-left: 8px;
	}
}

.category-page__faq-list {
	max-width: 900px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.category-page__faq-item {
	background: var(--white);
	border: 1px solid var(--gray-300);
	border-radius: 12px;
	overflow: hidden;
}

.category-page__faq-item summary {
	padding: 18px 24px;
	font-family: var(--display);
	font-weight: 600;
	font-size: 16px;
	color: var(--black);
	cursor: pointer;
	user-select: none;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 24px;
}

.category-page__faq-item summary::-webkit-details-marker {
	display: none;
}

.category-page__faq-item summary::after {
	content: "+";
	color: var(--rust);
	font-size: 24px;
	font-weight: 400;
	line-height: 1;
	transition: transform 0.2s var(--ease);
}

.category-page__faq-item[open] summary::after {
	content: "−";
}

.category-page__faq-answer {
	padding: 0 24px 20px;
	font-family: var(--display);
	font-size: 15px;
	line-height: 1.6;
	color: var(--gray-700);
}

.category-page__faq-answer p { margin: 0 0 8px; }
.category-page__faq-answer p:last-child { margin-bottom: 0; }


/* ═══════════════════════════════════════════════════════════════════
   v0.5.5 additions — split hero, sector cards, not-listed, frame accordion
   ═══════════════════════════════════════════════════════════════════ */

/* ─── Hero split layout ──────────────────────────────────────────── */

.category-page__hero--split {
	padding: 96px 0 80px;
	background: radial-gradient(120% 90% at 100% 40%, rgba(70, 104, 124, 0.38), transparent 58%), linear-gradient(158deg, #0b161b 0%, #050F13 56%, #04090c 100%);
	overflow: hidden;
}

.category-page__hero-split-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 420px;
}

.category-page__hero-split-text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 80px var(--page-pad) 80px 0;
}

.category-page__hero--split .category-page__hero-title {
	font-size: clamp(32px, 2.5vw + 1rem, 60px);
	text-align: left;
}

.category-page__hero--split .category-page__hero-sub {
	text-align: left;
	max-width: 50ch;
	margin-left: 0;
}

.category-page__hero-split-media {
	position: relative;
	overflow: hidden;
}

.category-page__hero-split-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Callout card overlaid on right image */
.category-page__hero-callout {
	position: absolute;
	bottom: 24px;
	left: 24px;
	background: var(--white);
	border-radius: 12px;
	padding: 14px 18px;
	box-shadow: 0 4px 24px rgba(0,0,0,0.18);
	min-width: 180px;
}

.category-page__hero-callout-title {
	font-family: var(--display);
	font-size: 16px;
	font-weight: 700;
	color: var(--black);
	line-height: 1.25;
}

.category-page__hero-callout-text {
	font-family: var(--display);
	font-size: 13px;
	color: var(--gray-500);
	margin-top: 4px;
	line-height: 1.4;
}

@media (max-width: 860px) {
	.category-page__hero-split-grid { grid-template-columns: 1fr; }
	.category-page__hero-split-media { min-height: 280px; }
	.category-page__hero-split-text { padding: 56px 0 32px; }
}

/* ─── Custom solutions section wrapper ───────────────────────────── */

.category-page__custom-solutions {
	padding: 72px 0;
	background: var(--cc-page-bg-grey);
}

.category-page__card-section {
	margin-bottom: 56px;
}

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

/* Sub-title (e.g. "Chain options", "Frame & material options") */
.category-page__sub-title {
	font-family: var(--display);
	font-size: clamp(26px, 3vw, 42px);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0;
	color: var(--black);
	margin: 0 0 8px;
}

.category-page__sub-desc {
	font-family: var(--display);
	font-size: 15px;
	line-height: 1.6;
	color: var(--gray-700);
	margin: 0 0 28px;
	max-width: 700px;
}

/* ─── Sector card grid (non-scrolling, for category) ─────────────── */

.category-page__sector-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 16px;
}

/* Override: sector-text hidden by default, revealed on hover */
.category-page__sector-grid .sector-card {
	min-height: 340px;
	flex: none; /* override sectors-grid flex-shrink */
}

.category-page__sector-grid .sector-text {
	opacity: 0;
	transform: translateY(6px);
	transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
	margin-top: 0;
}

.category-page__sector-grid .sector-card:hover .sector-text {
	opacity: 1;
	transform: translateY(0);
}

.category-page__sector-grid .sector-name {
	margin-bottom: 0;
	transition: margin-bottom 0.2s var(--ease);
}

.category-page__sector-grid .sector-card:hover .sector-name {
	margin-bottom: 12px;
}

@media (max-width: 640px) {
	/* Mobile: always show text */
	.category-page__sector-grid .sector-text {
		opacity: 1;
		transform: none;
	}
	.category-page__sector-grid .sector-name {
		margin-bottom: 12px;
	}
}

/* ─── Frame accordion sizing in category context ──────────────────── */

.category-page__frame-accordion {
	/* Inherits adv-accordion layout from theme.css */
	margin-top: 16px;
	height: 460px; /* slightly shorter than homepage */
}

@media (max-width: 760px) {
	.category-page__frame-accordion {
		height: auto;
		flex-direction: column;
	}

	.category-page__sector-grid {
		grid-template-columns: 1fr !important;
	}
}

/* ─── "Open configurator" link in product card ───────────────────── */

.category-page__configurator-link {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-family: var(--display);
	font-size: 12px;
	font-weight: 600;
	color: var(--rust);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-top: auto;
	padding-top: 8px;
}

/* ─── "Not listed here?" card ────────────────────────────────────── */

.category-page__not-listed {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: var(--white);
	border: 1.5px dashed var(--gray-300);
	border-radius: 12px;
	padding: 32px 24px;
	gap: 10px;
	min-height: 200px;
}

.category-page__not-listed-icon {
	width: 44px;
	height: 44px;
	background: var(--rust-tint, #FBE7DF);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--rust);
	margin-bottom: 4px;
}

.category-page__not-listed-title {
	font-family: var(--display);
	font-size: 16px;
	font-weight: 700;
	color: var(--black);
	margin: 0;
}

.category-page__not-listed-text {
	font-family: var(--display);
	font-size: 13px;
	line-height: 1.5;
	color: var(--gray-500);
	margin: 0;
	max-width: 220px;
}

.category-page__not-listed-link {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-family: var(--display);
	font-size: 12px;
	font-weight: 700;
	color: var(--rust);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	text-decoration: none;
	margin-top: 4px;
	transition: color 0.15s var(--ease);
}

.category-page__not-listed-link:hover { color: var(--rust-deep); }


/* ═══════════════════════════════════════════════════════════════════
   Sector card styles — scoped to category page sector grid.
   Duplicated here because theme.css may not always be cascade-available
   on category archive pages.
   ═══════════════════════════════════════════════════════════════════ */

.category-page__sector-grid {
	    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;	
}

.category-page__sector-grid .sector-card {
	position: relative;
	min-height: 340px;
	overflow: hidden;
	background: #0c1a1f;
	color: #fff;
	border-radius: 16px;
	display: flex;
	flex-direction: column;
	padding: 24px;
	isolation: isolate;
	transition: transform 0.3s var(--ease, ease);
	flex: none; /* override any inherited flex shorthand */
}

.category-page__sector-grid .sector-card:hover {
	transform: translateY(-4px);
}

.category-page__sector-grid .sector-card-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transition: transform 0.65s var(--ease, ease);
	z-index: 0;
}

.category-page__sector-grid .sector-card:hover .sector-card-bg {
	transform: scale(1.06);
}

.category-page__sector-grid .sector-card::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: rgba(12, 26, 31, 0.6);
	border-radius: 16px;
}

.category-page__sector-grid .sector-copy {
	margin-top: auto;
	position: relative;
	z-index: 2;
}

.category-page__sector-grid .sector-name {
	font-family: var(--display);
	font-size: 20px;
	font-weight: 600;
	text-transform: uppercase;
	color: #fff;
	margin: 0;
	line-height: 1.2;
	transition: margin-bottom 0.2s var(--ease, ease), transform 0.3s var(--ease, ease);
	transform: translateY(3rem);
}

.category-page__sector-grid .sector-card:hover .sector-name {
	margin-bottom: 10px;
	transform: translateY(0);
	transition: margin-bottom 0.2s var(--ease, ease), transform 0.3s var(--ease, ease);
}

.category-page__sector-grid .sector-text {
	font-family: var(--display);
	font-size: 14px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.8);
	margin: 0;
	opacity: 0;
	transform: translateY(6px);
	transition: opacity 0.25s var(--ease, ease), transform 0.25s var(--ease, ease);
}

.category-page__sector-grid .sector-card:hover .sector-text {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 640px) {
	
	.category-page__sector-grid .sector-name { margin-bottom: 8px; }

	.category-page__industries-grid {
		grid-template-columns: 1fr !important;
	}
}

/* ═══════════════════════════════════════════════════════════════════
   Frame accordion — scoped, self-contained.
   ═══════════════════════════════════════════════════════════════════ */

.category-page__frame-accordion {
	display: flex;
	height: 460px;
	gap: 6px;
	border-radius: 20px;
	overflow: hidden;
	margin-top: 16px;
}

.category-page__frame-accordion .adv-panel {
	position: relative;
	flex: 1;
	min-width: 80px;
	overflow: hidden;
	cursor: pointer;
	transition: flex 0.6s var(--ease-out, cubic-bezier(0.16,1,0.3,1));
	isolation: isolate;
	border-radius: 16px;
	background: #0c1a1f;
}

.category-page__frame-accordion .adv-panel.is-active { flex: 3.5; }

.category-page__frame-accordion .adv-panel-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transition: transform 0.65s var(--ease-out, cubic-bezier(0.16,1,0.3,1));
	z-index: 0;
}

.category-page__frame-accordion .adv-panel.is-active .adv-panel-bg {
	transform: scale(1.04);
}

.category-page__frame-accordion .adv-panel::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(to top,
		rgba(5, 15, 19, 0.94) 0%,
		rgba(5, 15, 19, 0.60) 40%,
		rgba(5, 15, 19, 0.20) 100%);
}

/* Collapsed label */
.category-page__frame-accordion .adv-c {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	padding: 0 12px 28px;
	opacity: 1;
	transition: opacity 0.22s var(--ease, ease);
	pointer-events: none;
	gap: 6px;
}

.category-page__frame-accordion .adv-panel.is-active .adv-c { opacity: 0; }

.category-page__frame-accordion .adv-c-label {
	font-family: var(--display);
	font-size: 22px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.85);
	text-align: center;
	line-height: 1.15;
}

/* Expanded content */
.category-page__frame-accordion .adv-e {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 32px 36px;
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 0.28s var(--ease, ease), transform 0.28s var(--ease, ease);
	pointer-events: none;
}

.category-page__frame-accordion .adv-panel.is-active .adv-e {
	opacity: 1;
	transform: none;
	pointer-events: auto;
	transition: opacity 0.40s var(--ease, ease) 0.22s, transform 0.40s var(--ease, ease) 0.22s;
}

.category-page__frame-accordion .adv-e-title {
	font-family: var(--display);
	font-size: clamp(18px, 2vw, 28px);
	font-weight: 700;
	text-transform: uppercase;
	color: #fff;
	margin: 0 0 12px 0;
	line-height: 1.15;
}

.category-page__frame-accordion .adv-e-text {
	font-family: var(--display);
	font-size: 15px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.72);
	margin: 0;
	max-width: 440px;
}

@media (max-width: 760px) {
	.category-page__frame-accordion {
		flex-direction: column;
		height: auto;
	}
	.category-page__frame-accordion .adv-panel {
		min-height: 160px;
		min-width: auto;
		flex: none;
		border-radius: 12px;
	}
	.category-page__frame-accordion .adv-panel.is-active {
		flex: none;
		min-height: 360px;
	}
	.category-page__frame-accordion .adv-c {
		flex-direction: row;
		padding: 24px;
		gap: 12px;
	}
	.category-page__frame-accordion .adv-e { padding: 24px; }
}

/* ═══════════════════════════════════════════════════════════════════
   Section description (below section title)
   ═══════════════════════════════════════════════════════════════════ */

.category-page__section-desc {
	font-family: var(--display);
	font-size: 15px;
	line-height: 1.6;
	color: var(--gray-700);
	margin: -16px 0 32px;
	max-width: 700px;
}

/* ═══════════════════════════════════════════════════════════════════
   "Why us" dark numbered section
   ═══════════════════════════════════════════════════════════════════ */

.category-page__why-us {
	background: var(--black-deep, #050F13);
	padding: 64px 0 72px;
	color: #fff;
}

.category-page__why-us-title {
	font-family: var(--display);
	font-size: clamp(28px, 2vw + 1rem, 44px);
	font-weight: 600;
	text-transform: uppercase;
	color: #fff;
	margin: 0 0 48px;
	line-height: 1.1;
	letter-spacing: -0.01em;
}

.category-page__why-us-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 0;
}

.category-page__why-item {
	padding: 0 28px 0 0;
}

.category-page__why-item--border {
	padding: 0 28px;
	border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.category-page__why-num {
	display: block;
	font-family: var(--display);
	font-size: 42px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.1);
	line-height: 1;
	margin-bottom: 14px;
}

.category-page__why-item-title {
	font-family: var(--display);
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--rust, #D34E2D);
	margin: 0 0 10px;
}

.category-page__why-item-text {
	font-family: var(--display);
	font-size: 14px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.55);
	margin: 0;
}

@media (max-width: 760px) {
	.category-page__why-us-grid {
		grid-template-columns: 1fr 1fr;
		gap: 32px;
	}
	.category-page__why-item,
	.category-page__why-item--border {
		padding: 0;
		border-left: none;
	}
}

@media (max-width: 480px) {
	.category-page__why-us-grid { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════════════════════════
   Recent projects — image gallery cards
   ═══════════════════════════════════════════════════════════════════ */

.category-page__projects {
	padding: 72px 0;
	background: var(--paper, #F9F9F9);
}

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

@media (max-width: 900px) {
	.category-page__projects-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
	.category-page__projects-grid { grid-template-columns: 1fr; }
}

.category-page__project-card {
	display: flex;
	flex-direction: column;
	gap: 0;
	background: var(--white);
	border: 1px solid var(--gray-300);
	border-radius: 12px;
	overflow: hidden;
}

/* Gallery container */
.category-page__project-gallery {
	position: relative;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	background: var(--img-bg, #fff);
}

.category-page__project-track {
	display: flex;
	height: 100%;
	transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.category-page__project-img {
	flex: 0 0 100%;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Arrows */
.category-page__proj-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid rgba(0, 0, 0, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: var(--black);
	transition: background 0.15s ease, box-shadow 0.15s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
	z-index: 2;
}

.category-page__proj-arrow:hover {
	background: #fff;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.category-page__proj-arrow--prev { left: 10px; }
.category-page__proj-arrow--next { right: 10px; }

/* Dots */
.category-page__proj-dots {
	position: absolute;
	bottom: 10px;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	gap: 5px;
	z-index: 2;
}

.category-page__proj-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.55);
	transition: background 0.2s ease, transform 0.2s ease;
}

.category-page__proj-dot.is-active {
	background: var(--white);
	transform: scale(1.3);
}

/* Info below gallery */
.category-page__project-info {
	padding: 14px 16px 16px;
}

.category-page__project-title {
	font-family: var(--display);
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	color: var(--black);
	margin: 0;
	line-height: 1.3;
}

.category-page__project-desc {
	font-family: var(--display);
	font-size: 13px;
	line-height: 1.5;
	color: var(--gray-700);
	margin: 6px 0 0;
}


/* ═══════════════════════════════════════════════════════════
   PRODUCT CARD — shared between category grid & related
   ═══════════════════════════════════════════════════════════ */

.product-card {
	display: flex;
	flex-direction: column;
	background: var(--white);
	border: 1px solid var(--gray-300);
	border-radius: 12px;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	transition: border-color 0.18s var(--ease), transform 0.18s var(--ease), box-shadow 0.18s var(--ease);
}

.product-card:hover {
	border-color: var(--black);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(12, 4, 2, 0.08);
}

/* ── Image ── */

.product-card__img-wrap {
	position: relative;
	aspect-ratio: 4 / 3;
	background: var(--img-bg, #f5f5f5);
	overflow: hidden;
}

.product-card__img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
	padding: 12px;
}

/* ── Action circles (top-right overlay) ── */

.product-card__actions {
	position: absolute;
	top: 12px;
	right: 12px;
	display: flex;
	gap: 6px;
}

.product-card__circle {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--white);
	border: 1px solid var(--gray-300);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--rust);
	transition: background 0.15s var(--ease), border-color 0.15s var(--ease);
}

.product-card:hover .product-card__circle {
	border-color: var(--rust);
}

.product-card__circle--config {
	background: var(--white);
	color: var(--rust);
}

/* ── Text content ── */

.product-card__sku {
	font-family: var(--display);
	font-size: 12px;
	font-weight: 500;
	color: var(--gray-500);
	letter-spacing: 0.04em;
	padding: 16px 20px 0;
}

.product-card__name {
	font-family: var(--display);
	font-size: 17px;
	font-weight: 700;
	line-height: 1.3;
	color: var(--black);
	text-transform: uppercase;
	letter-spacing: -0.005em;
	margin: 4px 0 0;
	padding: 0 20px;
}

.product-card__excerpt {
	font-family: var(--display);
	font-size: 14px;
	line-height: 1.5;
	color: var(--gray-700);
	margin: 8px 0 0;
	padding: 0 20px;
}

.product-card__price {
	font-family: var(--display);
	font-size: 14px;
	font-weight: 600;
	color: var(--black);
	padding: 8px 20px 0;
}

/* Push configurator link to bottom */
.product-card .category-page__configurator-link {
	padding: 8px 20px 20px;
}