.product-catalog {
	position: relative;
	overflow: hidden;
	background: linear-gradient(180deg, #fff 0%, #f2f8f6 100%);
}

.product-catalog::before {
	content: "";
	position: absolute;
	top: 110px;
	left: -210px;
	width: 460px;
	height: 460px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(11, 116, 104, 0.09), transparent 68%);
	pointer-events: none;
}

.product-catalog__head,
.product-catalog__grid,
.product-catalog__footnote {
	position: relative;
	z-index: 1;
}

.product-catalog__grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 12px;
}

.product-catalog__card {
	min-width: 0;
}

.product-catalog__card-button {
	display: grid;
	width: 100%;
	height: 100%;
	padding: 0;
	overflow: hidden;
	border: 1px solid #dfe7eb;
	border-radius: 17px;
	background: #fff;
	color: var(--ink);
	text-align: left;
	cursor: pointer;
	box-shadow: 0 16px 44px rgba(24, 40, 68, 0.07);
	transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.product-catalog__card-button:hover,
.product-catalog__card-button:focus-visible {
	transform: translateY(-5px);
	border-color: #9bcfc6;
	outline: none;
	box-shadow: 0 25px 60px rgba(24, 40, 68, 0.13);
}

.product-catalog__image {
	position: relative;
	display: grid;
	place-items: center;
	height: clamp(218px, 17vw, 252px);
	margin: 0;
	padding: 8px;
	overflow: hidden;
	background: radial-gradient(circle at 50% 35%, #fff 0%, #f1f7f5 78%);
}

.product-catalog__image img {
	display: block;
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	object-position: center;
	transition: transform 0.28s ease;
}

.product-catalog__card-button:hover .product-catalog__image img {
	transform: scale(1.025);
}

.product-catalog__badge {
	position: absolute;
	top: 13px;
	left: 13px;
	max-width: calc(100% - 26px);
	padding: 7px 10px;
	overflow: hidden;
	border-radius: 999px;
	background: rgba(19, 35, 59, 0.9);
	color: #fff;
	font-size: 0.62rem;
	font-weight: 850;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.product-catalog__category-label {
	margin: 13px 12px 5px;
	color: var(--green);
	font-size: 0.58rem;
	font-weight: 900;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.product-catalog__card-button > strong {
	margin: 0 12px;
	color: var(--ink);
	font-size: 0.9rem;
	line-height: 1.3;
}

.product-catalog__description {
	display: -webkit-box;
	min-height: 36px;
	margin: 7px 12px 0;
	overflow: hidden;
	color: #66758a;
	font-size: 0.68rem;
	line-height: 1.55;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.product-catalog__inspect {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	margin-top: auto;
	padding: 13px 12px;
	color: #32465c;
	font-size: 0.66rem;
	font-weight: 850;
}

.product-catalog__inspect span {
	color: var(--green);
}

.product-catalog__footnote {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-top: 30px;
	padding: 18px 20px;
	border: 1px solid #dce6e8;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.86);
}

.product-catalog__footnote > span {
	color: #43556b;
	font-size: 0.86rem;
	font-weight: 760;
}

.product-catalog__modal {
	width: min(1320px, calc(100% - 28px));
	max-width: 1320px;
	max-height: calc(100dvh - 28px);
	padding: 0;
	overflow: auto;
	border: 0;
	border-radius: 28px;
	background: #fff;
	box-shadow: 0 34px 110px rgba(7, 24, 40, 0.34);
}

.product-catalog__modal::backdrop {
	background: rgba(7, 24, 40, 0.62);
	backdrop-filter: blur(5px);
}

.product-catalog__modal-shell {
	position: relative;
	min-height: 480px;
}

.product-catalog__modal-close {
	position: sticky;
	top: 16px;
	z-index: 5;
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	margin: 16px 16px -62px auto;
	border: 1px solid #dfe5ea;
	border-radius: 15px;
	background: rgba(255, 255, 255, 0.96);
	color: #24364c;
	font-size: 1.55rem;
	cursor: pointer;
	box-shadow: 0 8px 24px rgba(19, 35, 59, 0.12);
}

.product-catalog__modal-category {
	display: grid;
	grid-template-columns: minmax(210px, 270px) minmax(0, 1fr);
	gap: 32px;
	align-items: start;
	padding: 38px 72px 38px 38px;
	background: linear-gradient(135deg, #eef8f5 0%, #fff 72%);
}

.product-catalog__modal-cover {
	display: grid;
	place-items: center;
	min-height: 360px;
	margin: 0;
	padding: 12px;
	border: 1px solid rgba(11, 116, 104, 0.12);
	border-radius: 22px;
	background: #fff;
}

.product-catalog__modal-cover img {
	display: block;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 420px;
	object-fit: contain;
	object-position: center;
}

.product-catalog__modal-intro > span:not(.product-catalog__modal-badge) {
	color: var(--green);
	font-size: 0.72rem;
	font-weight: 900;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.product-catalog__modal-badge {
	display: inline-flex;
	margin: 0 0 14px;
	padding: 7px 10px;
	border-radius: 999px;
	background: #e5f7f2;
	color: var(--green-dark);
	font-size: 0.68rem;
	font-weight: 850;
}

.product-catalog__modal-intro h3 {
	margin: 12px 0 12px;
	padding-right: 30px;
	font-size: clamp(1.8rem, 3.3vw, 3.15rem);
	line-height: 1.02;
	letter-spacing: -0.045em;
}

.product-catalog__modal-intro p {
	max-width: 780px;
	margin: 0;
	color: #627286;
	font-size: 0.98rem;
	line-height: 1.75;
}

.product-catalog__modal-products {
	margin-top: 24px;
}

.product-catalog__table-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 12px;
}

.product-catalog__table-heading h4 {
	margin: 0;
	color: var(--ink);
	font-size: clamp(1.08rem, 1.8vw, 1.45rem);
}

.product-catalog__table-heading span {
	color: #65758a;
	font-size: 0.76rem;
	font-weight: 780;
	white-space: nowrap;
}

.product-catalog__table {
	overflow: hidden;
	border: 1px solid #dfe7eb;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.92);
}

.product-catalog__table-row {
	display: grid;
	grid-template-columns: 138px minmax(0, 1fr) 138px minmax(0, 1fr);
	gap: 12px;
	align-items: center;
	min-height: 184px;
	padding: 10px 14px;
	border-bottom: 1px solid #e6ecef;
}

.product-catalog__table-row:last-child {
	border-bottom: 0;
}

.product-catalog__table-image {
	display: grid;
	place-items: center;
	width: 128px;
	height: 166px;
	padding: 5px;
	overflow: hidden;
	border: 1px solid #e3eaed;
	border-radius: 11px;
	background: #fff;
}

.product-catalog__table-image img {
	display: block;
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	object-position: center;
}

.product-catalog__table-row > strong {
	min-width: 0;
	color: var(--ink);
	font-size: 0.94rem;
	line-height: 1.35;
	overflow-wrap: anywhere;
}

.product-catalog__modal-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 24px 42px;
	border-top: 1px solid #e4eaee;
	background: #f8fafb;
}

.product-catalog__modal-footer p {
	margin: 0;
	color: #43556b;
	font-size: 0.88rem;
	font-weight: 740;
}

.product-catalog__modal-actions {
	display: flex;
	flex: 0 0 auto;
	flex-wrap: wrap;
	gap: 10px;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

@media (max-width: 1180px) {
	.product-catalog__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 16px;
	}

	.product-catalog__image {
		height: clamp(230px, 24vw, 285px);
	}

	.product-catalog__modal-category {
		grid-template-columns: minmax(200px, 240px) minmax(0, 1fr);
		gap: 26px;
	}

	.product-catalog__table-row {
		grid-template-columns: 116px minmax(0, 1fr) 116px minmax(0, 1fr);
	}

	.product-catalog__table-image {
		width: 108px;
		height: 140px;
	}
}

@media (max-width: 900px) {
	.product-catalog__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 760px) {
	.product-catalog__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.product-catalog__card-button {
		border-radius: 17px;
	}

	.product-catalog__image {
		height: clamp(220px, 58vw, 310px);
		padding: 7px;
	}

	.product-catalog__category-label {
		margin: 13px 12px 5px;
		font-size: 0.57rem;
	}

	.product-catalog__card-button > strong {
		margin-inline: 12px;
		font-size: 0.91rem;
	}

	.product-catalog__description {
		min-height: 38px;
		margin: 7px 12px 0;
		font-size: 0.69rem;
	}

	.product-catalog__inspect {
		padding: 13px 12px;
		font-size: 0.65rem;
	}

	.product-catalog__badge {
		top: 8px;
		left: 8px;
		max-width: calc(100% - 16px);
		font-size: 0.54rem;
	}

	.product-catalog__footnote {
		align-items: stretch;
		flex-direction: column;
	}

	.product-catalog__footnote .button {
		width: 100%;
	}

	.product-catalog__modal {
		width: calc(100% - 14px);
		max-height: calc(100dvh - 14px);
		border-radius: 20px;
	}

	.product-catalog__modal-close {
		top: 10px;
		width: 44px;
		height: 44px;
		margin: 10px 10px -54px auto;
	}

	.product-catalog__modal-category {
		grid-template-columns: 1fr;
		gap: 20px;
		padding: 60px 18px 24px;
	}

	.product-catalog__modal-cover {
		min-height: 260px;
		padding: 8px;
	}

	.product-catalog__modal-cover img {
		max-height: 310px;
	}

	.product-catalog__modal-intro h3 {
		padding-right: 0;
		font-size: clamp(1.8rem, 9vw, 2.8rem);
	}

	.product-catalog__modal-products {
		margin-top: 20px;
	}

	.product-catalog__table-heading {
		align-items: flex-start;
		flex-direction: column;
		gap: 6px;
	}

	.product-catalog__table-row {
		grid-template-columns: 94px minmax(0, 1fr);
		gap: 10px 12px;
		min-height: 0;
		padding: 10px;
	}

	.product-catalog__table-image {
		width: 88px;
		height: 116px;
	}

	.product-catalog__table-row > strong {
		font-size: 0.9rem;
	}

	.product-catalog__modal-footer {
		align-items: stretch;
		flex-direction: column;
		padding: 20px 16px;
	}

	.product-catalog__modal-actions {
		display: grid;
		width: 100%;
	}

	.product-catalog__modal-actions .button {
		width: 100%;
	}
}

@media (max-width: 420px) {
	.product-catalog__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
	}

	.product-catalog__image {
		height: clamp(190px, 58vw, 250px);
	}

	.product-catalog__card-button > strong {
		font-size: 0.86rem;
	}
}

@media (max-width: 340px) {
	.product-catalog__grid {
		grid-template-columns: 1fr;
	}
}
