.subcategory-page .subcategory-shell {
	width: min(1320px, calc(100% - 64px));
	margin: 56px auto 72px;
}

.subcategory-page .subcategory-intro {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.9fr);
	gap: 24px 48px;
	align-items: end;
	margin-bottom: 32px;
	padding-bottom: 24px;
	border-bottom: 1px solid rgba(17, 17, 17, 0.14);
}

.subcategory-page .subcategory-title {
	margin: 0;
	font-size: clamp(3.4rem, 8vw, 7rem);
	line-height: 0.9;
	font-weight: 900;
	letter-spacing: -0.05em;
	text-transform: uppercase;
	color: #111;
}

.subcategory-page .subcategory-copy {
	margin: 0;
	max-width: 34ch;
	font-size: clamp(0.98rem, 1.7vw, 1.12rem);
	line-height: 1.7;
	color: rgba(17, 17, 17, 0.76);
}

.subcategory-page .subcategory-collage {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	align-items: stretch;
}

.subcategory-page .subcategory-card {
	position: relative;
	display: block;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	text-decoration: none;
	background: #d9d3cb;
	color: #fff;
	isolation: isolate;
}

.subcategory-page .subcategory-card__media,
.subcategory-page .subcategory-card::before,
.subcategory-page .subcategory-card::after,
.subcategory-page .subcategory-card__label {
	position: absolute;
	inset: 0;
}

.subcategory-page .subcategory-card__media {
	overflow: hidden;
	width: 100%;
	height: 100%;
}

.subcategory-page .subcategory-card__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: opacity 0.4s ease, transform 0.6s ease;
}

.subcategory-page .subcategory-card__image--hover {
	opacity: 0;
	transform: scale(1.04);
}

.subcategory-page .subcategory-card::before {
	content: "";
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 38%, rgba(0, 0, 0, 0.6) 100%);
	z-index: 1;
	pointer-events: none;
}

.subcategory-page .subcategory-card::after {
	content: "";
	background: rgba(0, 0, 0, 0.2);
	opacity: 0;
	transition: opacity 0.35s ease;
	z-index: 2;
	pointer-events: none;
}

.subcategory-page .subcategory-card__label {
	inset: auto 0 0 0;
	padding: 18px 20px 20px;
	font-size: clamp(1.15rem, 2vw, 1.65rem);
	font-weight: 700;
	line-height: 1.05;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	z-index: 3;
	text-shadow: 0 3px 12px rgba(0, 0, 0, 0.35);
}

.subcategory-page .subcategory-card:hover::after,
.subcategory-page .subcategory-card:focus-visible::after {
	opacity: 1;
}

.subcategory-page .subcategory-card:hover .subcategory-card__image--hover,
.subcategory-page .subcategory-card:focus-visible .subcategory-card__image--hover {
	opacity: 1;
	transform: scale(1);
}

.subcategory-page .subcategory-card:hover .subcategory-card__image--default,
.subcategory-page .subcategory-card:focus-visible .subcategory-card__image--default {
	opacity: 0;
	transform: scale(1.02);
}

.subcategory-page .subcategory-card:focus-visible {
	outline: 3px solid #111;
	outline-offset: 3px;
}

.subcategory-page .textile-dropdown-section {
	background: #f5f5f5;
	margin-top: 72px;
	margin-bottom: 72px;
	padding-top: 72px;
	padding-bottom: 72px;
}

.subcategory-page .textile-dropdown-inner {
	width: min(100%, 1320px);
	padding: 0 32px;
}

.subcategory-page .textile-dropdown-panel-inner {
	padding-right: 8px;
}

.subcategory-page .textile-dropdown-columns {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28px;
	padding: 0 0 28px;
}

.subcategory-page .textile-dropdown-column {
	min-width: 0;
}

.subcategory-page .textile-dropdown-subtitle {
	margin: 0 0 12px;
	color: #111;
	font-size: 0.92rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.subcategory-page .textile-dropdown-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 10px;
	color: #111;
	font-size: 0.98rem;
	line-height: 1.55;
}

.subcategory-page .textile-dropdown-list li {
	position: relative;
	padding-left: 18px;
}

.subcategory-page .textile-dropdown-list--pros li::before,
.subcategory-page .textile-dropdown-list--cons li::before {
	position: absolute;
	left: 0;
	top: 0;
	font-weight: 700;
	line-height: 1.55;
}

.subcategory-page .textile-dropdown-list--pros li::before {
	content: "+";
	color: #111;
}

.subcategory-page .textile-dropdown-list--cons li::before {
	content: "-";
	color: #111;
}

@media (max-width: 1024px) {
	.subcategory-page .subcategory-shell {
		width: min(100%, calc(100% - 40px));
		margin-top: 44px;
	}

	.subcategory-page .subcategory-collage {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.subcategory-page .subcategory-card {
		grid-column: auto;
	}

	.subcategory-page .textile-dropdown-columns {
		gap: 20px;
	}
}

@media (max-width: 720px) {
	.subcategory-page .subcategory-intro {
		grid-template-columns: 1fr;
		gap: 14px;
		margin-bottom: 24px;
	}

	.subcategory-page .subcategory-title {
		font-size: clamp(2.6rem, 14vw, 4rem);
	}

	.subcategory-page .subcategory-collage {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.subcategory-page .subcategory-card {
		aspect-ratio: 1 / 1;
	}

	.subcategory-page .subcategory-card__label {
		padding: 16px;
	}

	.subcategory-page .textile-dropdown-section {
		margin-top: 48px;
		margin-bottom: 48px;
		padding-top: 48px;
		padding-bottom: 48px;
	}

	.subcategory-page .textile-dropdown-inner {
		padding: 0 16px;
	}

	.subcategory-page .textile-dropdown-columns {
		grid-template-columns: 1fr;
		gap: 18px;
		padding-bottom: 22px;
	}
}