.home-catalog {
	position: relative;
	width: 100%;
	padding: clamp(1.75rem, 5vw, 3rem) 0 clamp(2rem, 5vw, 3.5rem);
	background-color: #1e2d2c;
	background-image: url(../image/aplications/products-bg.jpg);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	overflow: hidden;
}

.home-catalog::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		rgba(30, 45, 44, 0.92) 0%,
		rgba(33, 48, 47, 0.82) 50%,
		rgba(30, 45, 44, 0.9) 100%
	);
	z-index: 0;
}

.home-catalog .container {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 1140px;
	padding-left: clamp(0.65rem, 3vw, 0.75rem);
	padding-right: clamp(0.65rem, 3vw, 0.75rem);
}

.home-catalog__header {
	text-align: center;
	max-width: 640px;
	margin: 0 auto clamp(1rem, 4vw, 2.25rem);
	padding: 0 0.25rem;
}

.home-catalog__eyebrow {
	display: inline-block;
	font-size: clamp(0.68rem, 2.5vw, 0.8rem);
	font-weight: 500;
	font-family: var(--nd-font, "Segoe UI", system-ui, sans-serif);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #f8b34b;
	margin-bottom: 0.5rem;
}

.home-catalog__title {
	font-size: clamp(1.35rem, 5vw, 2.35rem);
	font-weight: 500;
	font-family: var(--nd-font, "Segoe UI", system-ui, sans-serif);
	color: #fff;
	margin: 0 0 0.5rem;
	line-height: 1.2;
}

.home-catalog__title span {
	color: #f8b34b;
}

.home-catalog__subtitle {
	font-size: clamp(0.85rem, 2.8vw, 1.05rem);
	color: rgba(255, 255, 255, 0.85);
	margin: 0;
	line-height: 1.45;
}

.home-catalog__grid {
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
}

/* Мобильные: компактные горизонтальные карточки */
.home-catalog-card {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
	transition: transform 0.22s ease, box-shadow 0.22s ease;
	min-height: 108px;
	-webkit-tap-highlight-color: transparent;
}

.home-catalog-card:active {
	transform: scale(0.99);
}

.home-catalog-card__media {
	position: relative;
	flex: 0 0 32%;
	width: 32%;
	max-width: 130px;
	min-width: 100px;
	aspect-ratio: auto;
	height: auto;
	align-self: stretch;
	min-height: 108px;
	overflow: hidden;
	background: #21302f;
}

.home-catalog-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.home-catalog-card--vibropres .home-catalog-card__media img {
	object-fit: cover;
}

.home-catalog-card__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, transparent 40%, rgba(33, 48, 47, 0.25) 100%);
	pointer-events: none;
}

.home-catalog-card__badge {
	position: absolute;
	top: 6px;
	left: 6px;
	z-index: 1;
	font-size: 0.58rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	padding: 0.2rem 0.4rem;
	border-radius: 3px;
	background: #f8b34b;
	color: #21302f;
	line-height: 1.1;
	max-width: calc(100% - 12px);
}

.home-catalog-card__body {
	flex: 1;
	min-width: 0;
	padding: 0.65rem 0.75rem 0.7rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 0.25rem;
}

.home-catalog-card__name {
	font-size: clamp(0.88rem, 3.5vw, 1rem);
	font-weight: 500;
	color: #21302f;
	margin: 0;
	line-height: 1.25;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.home-catalog-card__desc {
	font-size: clamp(0.72rem, 2.8vw, 0.8rem);
	color: #5a6b69;
	margin: 0;
	line-height: 1.35;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.home-catalog-card__action {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	font-size: clamp(0.72rem, 2.8vw, 0.8rem);
	font-weight: 500;
	color: #21302f;
	margin-top: 0.15rem;
	white-space: nowrap;
}

.home-catalog-card__action::after {
	content: "→";
	font-size: 0.95rem;
	line-height: 1;
}

.home-catalog-card--accent {
	box-shadow: 0 8px 22px rgba(248, 179, 75, 0.22);
	border-left: 3px solid #f8b34b;
}

/* Планшет: 2 колонки, вертикальные карточки */
@media (min-width: 576px) {
	.home-catalog__grid {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 0.85rem;
	}

	.home-catalog-card {
		flex-direction: column;
		min-height: 0;
		border-left: none;
	}

	.home-catalog-card--accent {
		border-left: none;
		border-bottom: 4px solid #f8b34b;
	}

	.home-catalog-card__media {
		flex: none;
		width: 100%;
		max-width: none;
		min-width: 0;
		min-height: 0;
		aspect-ratio: 16 / 10;
	}

	.home-catalog-card__media::after {
		background: linear-gradient(to top, rgba(33, 48, 47, 0.55) 0%, transparent 55%);
	}

	.home-catalog-card__badge {
		top: 10px;
		left: 10px;
		font-size: 0.65rem;
		padding: 0.28rem 0.55rem;
	}

	.home-catalog-card__body {
		padding: 0.9rem 1rem 1rem;
		gap: 0.35rem;
	}

	.home-catalog-card__name {
		font-size: 1rem;
		-webkit-line-clamp: 3;
	}

	.home-catalog-card__desc {
		font-size: 0.85rem;
		-webkit-line-clamp: 3;
	}

	.home-catalog-card__action {
		font-size: 0.88rem;
		margin-top: 0.25rem;
	}
}

/* Десктоп: 3 колонки */
@media (min-width: 992px) {
	.home-catalog__grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 1.5rem;
	}

	.home-catalog-card {
		box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
		transition: transform 0.28s ease, box-shadow 0.28s ease;
	}

	.home-catalog-card:hover {
		transform: translateY(-8px);
		box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
		color: inherit;
	}

	.home-catalog-card:active {
		transform: translateY(-6px);
	}

	.home-catalog-card__media {
		aspect-ratio: 16 / 11;
	}

	.home-catalog-card:hover .home-catalog-card__media img {
		transform: scale(1.06);
	}

	.home-catalog-card__badge {
		top: 12px;
		left: 12px;
		font-size: 0.72rem;
		padding: 0.35rem 0.65rem;
	}

	.home-catalog-card__body {
		padding: 1.25rem 1.35rem 1.35rem;
		gap: 0.5rem;
	}

	.home-catalog-card__name {
		font-size: 1.2rem;
		display: block;
		overflow: visible;
		-webkit-line-clamp: unset;
	}

	.home-catalog-card__desc {
		font-size: 0.95rem;
		display: block;
		overflow: visible;
		-webkit-line-clamp: unset;
		flex: 1;
	}

	.home-catalog-card__action {
		font-size: 0.95rem;
		margin-top: 0.35rem;
		transition: color 0.2s ease, gap 0.2s ease;
	}

	.home-catalog-card:hover .home-catalog-card__action {
		color: #c8922e;
		gap: 0.55rem;
	}
}

/* Очень узкие экраны */
@media (max-width: 359px) {
	.home-catalog-card__media {
		flex: 0 0 36%;
		width: 36%;
		min-width: 88px;
	}

	.home-catalog-card__body {
		padding: 0.55rem 0.6rem;
	}
}
