.catalog-content {
	padding-top: 40px;
	position: relative;
}

.catalog-content:after {
	content: "";
	display: block;
}

.catalog-layout {
	display: grid;
	grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
	align-items: start;
	gap: clamp(20px, 4vw, 80px);
	width: 100%;
	max-width: 100%;
}

.filters {
	display: flex;
	flex-direction: column;
	gap: 12px;
	position: sticky;
	top: 96px;
}

.filters__title {
	font-size: var(--text-big);
	font-weight: 600;
	color: #111;
	margin: 0 0 4px 4px;
}

.filter-group {
	background: var(--color-text-primary, 1);
	border-radius: 20px;
	padding: 10px 10px 20px 10px;
	margin-bottom: 5px;
}

.filter-group__head {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #eaeaea;
	border: none;
	border-radius: 20px;
	padding: 10px 20px;
	cursor: pointer;
	font-family: "Montserrat", sans-serif;
	font-size: 15px;
	font-weight: 500;
	color: rgba(33, 33, 33, 1);
	margin-top: 10px;
	transition: background 0.18s ease;
}
.filter-group__head:hover {
	background: #e2e2e2;
}

.filter-group__head svg {
	flex-shrink: 0;
	color: #111;
	transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.filter-group.is-open .filter-group__head svg {
	transform: rotate(180deg);
}

.filter-group__body {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.filter-group.is-open .filter-group__body {
	grid-template-rows: 1fr;
}

.filter-group__body-inner {
	overflow: hidden;
	min-height: 0;
}

.filter-group__scroll {
	position: relative;
	padding: 25px 10px 0px 10px;
}

.filter-group__list {
	list-style: none;
	margin: 0;
	padding: 0 14px 0 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
	max-height: 212px;
	overflow-y: auto;
	scrollbar-width: none;
}
.filter-group__list::-webkit-scrollbar {
	width: 0;
	height: 0;
}

.custom-scrollbar-track {
	position: absolute;
	top: 14px;
	bottom: 14px;
	right: 2px;
	width: 3px;
	border-radius: 3px;
	background: #eaeaea;
	opacity: 0;
	transition: opacity 0.2s ease;
	pointer-events: none;
}
.filter-group__scroll:hover .custom-scrollbar-track,
.filter-group__scroll.is-scrolling .custom-scrollbar-track {
	opacity: 1;
}

.custom-scrollbar-thumb {
	position: absolute;
	left: 0;
	width: 100%;
	border-radius: 3px;
	background: var(--accent);
	cursor: grab;
	pointer-events: auto;
}
.custom-scrollbar-thumb:active {
	cursor: grabbing;
}

.filter-check {
	display: flex;
	align-items: center;
	gap: 20px;
	font-size: var(--text-small);
	color: rgba(45, 45, 45, 1);
	cursor: pointer;
	user-select: none;
	line-height: 1.3;
}

.filter-check:hover {
	color: var(--accent);
}

.filter-check input {
	appearance: none;
	-webkit-appearance: none;
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	border: 1.8px solid rgba(255, 179, 0, 1);
	border-radius: 6px;
	background: #fff;
	cursor: pointer;
	position: relative;
	transition:
		border-color 0.16s ease,
		background 0.16s ease,
		transform 0.1s ease;
}

.filter-check input:hover {
	border-color: var(--accent);
}
.filter-check input:active {
	transform: scale(0.92);
}

.filter-check input:checked {
	background: var(--accent);
	border-color: var(--accent);
}

.filter-check input:checked::after {
	content: "";
	position: absolute;
	left: 6px;
	top: 2px;
	width: 5px;
	height: 10px;
	border: solid rgba(45, 45, 45, 1);
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.btn-reset-filters {
	width: 100%;
	margin: 0px auto;
	margin-top: 20px;
	padding: 16px;
	background: #111;
	border: none;
	border-radius: 100px;
	cursor: pointer;
	transition:
		background 0.2s ease,
		transform 0.1s ease;
	font-weight: 500;
	font-size: var(--text-small);
	line-height: 110%;
	letter-spacing: 0;
	text-align: center;
	color: rgba(255, 255, 255, 1);
}
.btn-reset-filters:hover {
	background: var(--accent);
}
.btn-reset-filters:active {
	transform: scale(0.98);
}
.ptable__buy:hover {
	background: rgba(33, 33, 33, 1);
	color: #fff;
}

.insert-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 16px;
	margin-bottom: 40px;
}

.insert-item {
	display: flex;
	flex-direction: column;
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	text-decoration: none;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
	transition:
		transform 0.18s cubic-bezier(0.4, 0, 0.2, 1),
		box-shadow 0.18s ease;
	justify-content: center;
	align-items: center;
	position: relative;
}

.insert-item__link {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.category__image {
	padding: 30px 0;
}
.insert-item:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

.insert-item:active {
	transform: translateY(-1px) scale(0.98);
}

.insert-item__img {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 26px 14px 16px;
}

.insert-item__img svg {
	width: 64px;
	height: 64px;
	filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.18));
	transition: transform 0.18s ease;
}

.insert-item:hover .insert-item__img svg {
	transform: scale(1.06);
}

.insert-item__name {
	background: #e7e7e7;
	font-weight: 500;
	line-height: 100%;
	letter-spacing: 0;
	color: rgba(33, 33, 33, 1);
	text-align: center;
	padding: 8px 0;
	font-family: "Montserrat", sans-serif;
	transition:
		background 0.18s ease,
		color 0.18s ease;
	width: 100%;
}

.insert-item:hover .insert-item__name {
	background: rgba(255, 179, 0, 1);
}

.insert-item--active .insert-item__name {
	background: var(--accent);
	color: #1c1c1c;
}
.insert-item--active:hover .insert-item__name {
	background: var(--accent-hover);
}

:root {
	--link: #2f6fe4;
	--link-hover: #1e56c4;
}

.subcat-info {
	margin-bottom: 20px;
}

.subcat-info__desc {
	font-weight: 400;
	font-size: var(--text-medium);
	line-height: 150%;
	letter-spacing: 0;
	color: rgba(112, 112, 112, 1);
	margin: 0;
	max-width: 760px;
}

.ptable-wrap {
	width: 100%;
	overflow-x: auto;
	background: #fff;
	border: 1px solid #ececec;
	border-radius: 8px;
}

.ptable {
	width: 100%;
	border-collapse: collapse;
	font-family: inherit;
	border-radius: 10px;
}

.ptable__th {
	background: #f5f5f5;
	text-align: left;
	padding: 10px;
	white-space: nowrap;
	border: 1px solid #ececec;
	font-weight: 500;
	line-height: 150%;
	letter-spacing: 0;
	color: rgba(112, 112, 112, 1);
	font-size: 14px;
}
.ptable__th--center {
	text-align: center;
}
.ptable__th--cart {
	text-align: center;
	color: rgba(33, 33, 33, 0.5);
	max-width: 240px;
}
.ptable__th--cart svg {
	display: inline-block;
	vertical-align: middle;
}

.ptable__row {
	border-bottom: 1px solid #ececec;
}
.ptable__row:last-child {
	border-bottom: none;
}
.ptable__row:hover {
	background: #fafafa;
}

.ptable__td {
	padding: 10px 10px;
	vertical-align: middle;
	border: 1px solid #ececec;

	font-weight: 500;
	font-size: var(--text-medium);
	line-height: 150%;
	letter-spacing: 0;
	color: rgba(33, 33, 33, 1);
}
.ptable__td--center {
	text-align: center;
}

.ptable__td--name {
	min-width: 210px;
}
.ptable__link {
	text-decoration: none;
	font-weight: 500;
	line-height: 150%;
	letter-spacing: 0;
	color: rgb(37, 38, 104);
	border-bottom: 1px solid;
}
.ptable__link:hover {
	color: #0f3d8f;
}
.ptable__article {
	display: block;
	margin-top: 10px;
	font-weight: 500;
	font-size: 14px;
	line-height: 150%;
	letter-spacing: 0;
	color: rgb(0 0 0);
}
.ptable__article i {
	font-style: normal;
	font-weight: 500;
	font-size: 14px;
	line-height: 150%;
	letter-spacing: 0;
	color: rgba(112, 112, 112, 1);
}

.ptable__badges {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}

.badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 24px;
	padding: 5px 10px;
	border-radius: 5px;

	font-weight: 500;
	font-size: 14px;
	line-height: 150%;
	letter-spacing: 0;
	color: rgba(255, 255, 255, 1);
}
.ptable__cart {
	padding: 10px 0;
	display: flex;
	justify-content: space-between;
	gap: 10px;
}

.badge--dark {
	background: rgba(40, 40, 40, 1);
}
.badge--gray {
	background: #b9b9b9;
	color: #1c1c1c;
}
.badge--navy {
	background: rgba(75, 97, 140, 1);
}
.badge--brown {
	background: rgba(143, 92, 85, 1);
}
.badge--orange {
	background: rgba(213, 129, 77, 1);
}
.badge--red {
	background-color: #ea202a;
}

.ptable__price {
	font-weight: 600;
	font-size: 21px;
	line-height: 150%;
	letter-spacing: 0;
	color: rgba(33, 33, 33, 1);
	text-align: center;
	display: flex;
	justify-content: center;
	gap: 5px;
	white-space: nowrap;
	display: flex;
	background: #eaeaea;
	border-radius: 5px;
}

.ptable__td--cart {
	max-width: 240px;
}
.ptable__cartbox {
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	width: 100%;
	gap: 4px;
}

.qty {
	display: flex;
	align-items: center;
	border-radius: 6px;
	overflow: hidden;
	gap: 3px;
}
.qty__btn {
	height: 100%;
	border: none;
	background: rgba(0, 0, 0, 0.1);
	cursor: pointer;
	line-height: 1;
	width: 26px;
	height: 26px;
	border-radius: 5px;
	font-weight: 500;
	font-size: var(--text-small);
	line-height: 150%;
	letter-spacing: 0;
	color: rgba(33, 33, 33, 1);
}
.qty__btn:hover {
	background: #ececec;
}
.qty__input {
	flex: 1 1 auto;
	border: none;
	text-align: center;
	border-radius: 5px;
	-moz-appearance: textfield;
	width: 26px;
	height: 26px;
	background: rgba(244, 244, 244, 1);
	color: rgba(33, 33, 33, 1);
	font-weight: 500;
	font-size: var(--text-small);
	line-height: 150%;
	letter-spacing: 0;
	border: 1px solid rgba(112, 112, 112, 0.1);
}
.qty__input:focus {
	outline: none;
}

.ptable__stock {
	font-weight: 400;
	font-size: 12px;
	line-height: 150%;
	letter-spacing: 0;
	text-align: center;
	display: block;
}
.ptable__stock--in {
	color: rgba(29, 123, 0, 1);
	background: #ffb3001f;
	padding: 2px;
	border-radius: 10px;
}

.ptable__buy {
	border: none;
	background: #ffb300;
	max-width: 170px;
	padding: 10px 20px;
	border-radius: 10px;
	cursor: pointer;
	white-space: nowrap;
	width: 100%;
	font-weight: 500;
	font-size: var(--text-small);
	line-height: 150%;
	letter-spacing: 0;
	color: rgba(33, 33, 33, 1);
}

.pagination {
	display: flex;
	align-items: center;
	gap: 16px;
	margin: 40px 0;
}

.pagination__arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	border: none;
	background: transparent;
	color: rgba(33, 33, 33, 1);
	cursor: pointer;
	padding: 0;
}
.pagination__arrow--next svg {
	transform: rotate(180deg);
}

.pagination__list {
	display: flex;
	align-items: center;
	gap: 13px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.pagination__item {
	min-width: 52px;
	height: 33px;
	padding: 0 6px;
	border: none;
	border-radius: 50px;
	background: rgba(226, 226, 226, 1);
	cursor: pointer;
	font-weight: 500;
	font-size: var(--text-small);
	line-height: 100%;
	letter-spacing: 0;
	text-align: center;
	text-transform: uppercase;
	color: rgba(33, 33, 33, 1);
}
.pagination__item:hover {
	background: rgba(33, 33, 33, 1);
	color: #fff;
}
.pagination__item--active {
	background: rgba(33, 33, 33, 1);
	color: #fff;
}

.pagination__dots {
	color: rgba(33, 33, 33, 0.4);
	font-size: 14px;
	letter-spacing: 1px;
	padding: 0 2px;
}

.scroll-top-btn {
	position: fixed;
	right: 28px;
	bottom: 28px;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: #111;
	color: #fff;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
	opacity: 0;
	transform: translateY(12px);
	pointer-events: none;
	transition:
		opacity 0.25s ease,
		transform 0.25s ease,
		background 0.18s ease;
	z-index: 50;
}
.scroll-top-btn.is-visible {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}
.scroll-top-btn:hover {
	background: #2d2d2d;
}
.filter-toggle {
	display: none;
	align-items: center;
	gap: 10px;
	padding: 14px 24px;
	border: none;
	border-radius: 100px;
	background: #ffb300;
	color: #212121;
	font-size: var(--text-small);
	font-weight: 500;
	cursor: pointer;
	margin-bottom: 20px;
}
.filters__top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.filters__title {
	margin: 0;
}

.filters-close {
	display: none;
	width: 44px;
	height: 67px;
	border: none;
	border-radius: 50%;
	background: transparent;
	cursor: pointer;
	font-size: var(--title-small);
	line-height: 1;
	position: absolute;
	right: 0;
	top: 0;
}

.filters-close:hover {
	background: #e5e5e5;
}

.filter-toggle:hover {
	background: #212121;
	color: #fff;
}

.table-scroll {
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
}

/* Адаптивные стили */

@media (max-width: 1400px) {
	.ptable__th:nth-child(4),
	.ptable__td:nth-child(4) {
		display: none;
	}
}

@media (max-width: 1200px) {
	.ptable__th:nth-child(4),
	.ptable__td:nth-child(4) {
		display: table-cell;
	}
	.filters-close {
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.catalog-layout {
		display: block;
	}

	.filter-toggle {
		display: flex;
	}

	.filters {
		position: fixed;
		top: 0;
		left: -380px;
		width: 340px;
		max-width: 90%;
		height: 100vh;
		background: #fff;
		padding: 20px;
		overflow-y: auto;
		z-index: 1000;
		transition: left 0.3s ease;
		box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
	}

	.filters.active {
		left: 0;
	}

	.filters::before {
		content: "";
		position: fixed;
		inset: 0;
		background: rgba(0, 0, 0, 0.45);
		z-index: -1;
		opacity: 0;
		pointer-events: none;
	}

	.filters.active::before {
		opacity: 1;
		pointer-events: auto;
	}

	.insert-grid {
		grid-template-columns: repeat(4, 1fr);
	}
	.product-table {
		min-width: 820px;
	}
}

@media (max-width: 1100px) {
	.insert-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

@media (max-width: 991px) {
	.ptable__th:nth-child(4),
	.ptable__td:nth-child(4) {
		display: none;
	}
	.ptable__td {
		font-size: 16px;
	}
	.filters {
		position: static;
	}

	.filters__title {
		margin-left: 0;
	}

	.insert-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 14px;
	}

	.page-head__title {
		font-size: 28px;
	}

	.topbar__right .topbar__divider,
	.topbar__item:nth-child(3) {
		display: none;
	}
	.btn-dealers {
		display: none;
	}

	.footer__main {
		flex-wrap: wrap;
		gap: 24px;
	}
	.footer__right {
		flex-wrap: wrap;
		gap: 24px;
	}
}

@media (max-width: 768px) {
	.ptable__th:nth-child(4),
	.ptable__td:nth-child(4) {
		display: flex;
	}
	.insert-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.page-wrap {
		padding: 16px 0 40px;
	}

	.breadcrumbs {
		font-size: 12px;
		gap: 4px;
	}
	.page-head {
		margin-bottom: 18px;
	}
	.page-head__title {
		font-size: var(--title-small);
		margin-bottom: 8px;
	}
	.page-head__desc {
		font-size: 13px;
	}

	.insert-item__img {
		padding: 18px 10px 10px;
	}
	.insert-item__img svg {
		width: 52px;
		height: 52px;
	}
	.insert-item__name {
		font-size: 13px;
		padding: 10px 0;
	}

	.subcat-info__desc {
		font-size: 13px;
	}

	.table-card {
		border-radius: 12px;
		padding: 4px;
	}
	.product-table {
		min-width: 640px;
	}
	.product-table th,
	.product-table td {
		padding: 10px 8px;
		font-size: 13px;
	}
	.product-table__name {
		max-width: 160px;
		font-size: 13px;
	}
	.table-buy-btn {
		padding: 8px 16px;
		font-size: 13px;
	}
	.qty-stepper button {
		width: 24px;
		height: 24px;
	}

	.pagination {
		flex-wrap: wrap;
		gap: 6px;
	}
	.pagination__arrow,
	.pagination__item {
		min-width: 34px;
		height: 34px;
		font-size: 13px;
	}

	.scroll-top-btn {
		right: 14px;
		bottom: 14px;
		width: 44px;
		height: 44px;
	}

	.search {
		flex: 1;
		min-width: 0;
	}
	.search__input {
		font-size: 13px;
	}
	.btn-catalog {
		padding: 8px 12px;
		font-size: 13px;
	}
	.header-actions .action-btn__label {
		display: none;
	}

	.footer__main {
		flex-direction: column;
		gap: 28px;
	}
	.footer__right {
		flex-direction: column;
		gap: 20px;
	}
	.footer__nav-list {
		columns: 2;
	}
}

@media (max-width: 640px) {
	.table-card {
		border-radius: 12px;
	}
	.scroll-top-btn {
		right: 16px;
		bottom: 16px;
		width: 46px;
		height: 46px;
	}
	.ptable__td--center {
		text-align: center;
		width: 100px;
	}
	.ptable__th--cart {
		width: 100px;
	}
}

@media (max-width: 520px) {
	.insert-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}
}

@media (max-width: 480px) {
	.filters {
		gap: 8px;
	}
	.filter-group {
		border-radius: 16px;
	}
	.filter-group__head {
		padding: 14px 14px;
		font-size: 14px;
	}
	.filter-check {
		font-size: 13px;
		gap: 10px;
	}
	.filter-check input {
		width: 18px;
		height: 18px;
	}
	.btn-reset-filters {
		padding: 14px;
		font-size: 14px;
	}

	.insert-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 8px;
	}
	.insert-item__img {
		padding: 14px 8px 8px;
	}
	.insert-item__img svg {
		width: 44px;
		height: 44px;
	}
	.insert-item__name {
		font-size: 12px;
		padding: 8px 0;
	}

	.page-head__title {
		font-size: var(--text-big);
	}

	.product-table {
		min-width: 560px;
	}
	.product-table th,
	.product-table td {
		padding: 8px 6px;
		font-size: 12px;
	}

	.pagination__ellipsis {
		display: none;
	}

	.footer__nav-list {
		columns: 1;
	}
	.footer__callback-form {
		flex-direction: column;
	}
	.footer__social-links {
		flex-wrap: wrap;
	}
}

@media (max-width: 360px) {
	.insert-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 6px;
	}
	.insert-item__img svg {
		width: 38px;
		height: 38px;
	}
	.insert-item__name {
		font-size: 11px;
	}
	.pagination__arrow,
	.pagination__item {
		min-width: 30px;
		height: 30px;
		font-size: 12px;
	}
	.scroll-top-btn {
		width: 40px;
		height: 40px;
	}
}

/* Каталог: панель фильтров и мобильная таблица */
.filters-backdrop {
	display: none;
}

body.filters-open {
	overflow: hidden;
}

@media (max-width: 1200px) {
	.filter-toggle {
		position: fixed;
		left: -40px;
		top: 50%;
		z-index: 1001;
		display: inline-flex;
		min-height: 52px;
		margin: 0;
		padding: 12px 18px 12px 14px;
		border-radius: 0px 0px 20px 20px;
		box-shadow: 0 6px 20px rgb(0 0 0 / 18%);
		transform: translateY(-50%) rotate(-90deg);
		transition:
			transform 0.2s ease,
			opacity 0.2s ease;
	}

	.filter-toggle[aria-expanded="true"] {
		opacity: 0;
		pointer-events: none;
		transform: translate(-100%, -50%);
	}

	.filters {
		position: fixed;
		top: 0;
		left: 0;
		z-index: 1002;
		width: min(390px, calc(100vw - 36px));
		height: 100dvh;
		max-width: none;
		padding: 24px 18px 28px;
		overflow-y: auto;
		background: #fff;
		box-shadow: 8px 0 30px rgb(0 0 0 / 18%);
		transform: translateX(-105%);
		transition: transform 0.28s ease;
	}

	.filters.active {
		left: 0;
		transform: translateX(0);
	}

	.filters::before {
		display: none;
	}

	.filters-close {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 42px;
		height: 42px;
		top: 14px;
		right: 12px;
	}

	.filters__title {
		padding-right: 48px;
		margin-bottom: 8px;
	}

	.filters-backdrop {
		position: fixed;
		inset: 0;
		z-index: 1000;
		display: block;
		border: 0;
		background: rgb(0 0 0 / 42%);
		opacity: 0;
		transition: opacity 0.28s ease;
	}

	.filters-backdrop.is-visible {
		opacity: 1;
	}
}

@media (max-width: 768px) {
	.ptable-wrap {
		overflow: visible;
		border: 0;
		background: transparent;
	}

	.ptable,
	.ptable tbody {
		display: grid;
		min-width: 0 !important;
	}

	.ptable {
		gap: 12px;
	}

	.ptable thead {
		display: none;
	}

	.ptable__row {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		overflow: hidden;
		border: 1px solid #e5e5e5;
		border-radius: 12px;
		background: #fff;
	}

	.ptable__td,
	.ptable__td--name,
	.ptable__td--cart {
		position: static;
		display: flex;
		min-width: 0 !important;
		max-width: none;
		width: auto;
		padding: 12px !important;
		border: 0;
		border-bottom: 1px solid #ededed;
		background: #fff;
		box-shadow: none;
	}

	.ptable__td--name,
	.ptable__td--cart {
		grid-column: 1 / -1;
	}

	.ptable__td--name {
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;
	}

	.ptable__td--name::after,
	.ptable__td--cart::before {
		display: none;
	}

	.ptable__link {
		font-size: 15px !important;
		line-height: 1.35;
	}

	.ptable__article {
		margin-top: 0;
		font-size: 12px;
	}

	.ptable__article i {
		font-size: 12px;
	}

	.ptable__td--center {
		align-items: center;
		justify-content: space-between;
		gap: 8px;
		text-align: right;
		font-size: 14px !important;
	}

	.ptable__td--center::before {
		content: attr(data-label);
		color: var(--color-text-muted);
		font-size: 12px;
		font-weight: 400;
		text-align: left;
	}

	.ptable__badges {
		justify-content: flex-end;
		gap: 4px;
	}

	.badge {
		min-width: 22px;
		padding: 3px 7px;
		font-size: 12px;
	}

	.ptable__td--cart {
		display: grid;
		grid-template-columns: minmax(0, 1fr);
		gap: 10px;
		border-bottom: 0;
		background: #fafafa;
	}

	.ptable__price {
		justify-content: flex-start;
		width: max-content;
		padding: 2px 8px;
		font-size: 18px;
	}

	.ptable__cart {
		display: grid;
		grid-template-columns: minmax(0, 1fr) minmax(104px, auto);
		align-items: center;
		gap: 12px;
		padding: 0;
	}

	.ptable__cartbox {
		flex-direction: row;
		align-items: center;
		gap: 10px;
	}

	.qty {
		gap: 4px;
	}

	.qty__btn,
	.qty__input {
		width: 34px;
		height: 34px;
		font-size: 16px;
	}

	.qty__input {
		flex: 0 0 34px;
	}

	.ptable__stock {
		font-size: 12px;
		text-align: left;
	}

	.ptable__buy {
		min-height: 40px;
		max-width: none;
		padding: 8px 14px !important;
		font-size: 14px !important;
	}
}

@media (max-width: 420px) {
	.filter-toggle {
		min-height: 48px;
		padding: 10px 14px 10px 12px;
		font-size: 14px;
	}

	.ptable__cart {
		grid-template-columns: 1fr;
	}

	.ptable__buy {
		width: 100%;
	}
	.ptable__td,
	.ptable__td--name,
	.ptable__td--cart {
		padding: 6px !important;
	}
	.qty {
		display: inline-block;
	}
}

/* Исправление слоя фильтров и сетки каталога */
@media (max-width: 1200px) {
	.filters:not(.active) {
		visibility: hidden;
		pointer-events: none;
	}

	.filters.active {
		visibility: visible;
		pointer-events: auto;
	}

	.filters-backdrop[hidden] {
		display: none !important;
		pointer-events: none;
	}
}

@media (max-width: 768px) {
	.catalog-content {
		padding-top: 24px;
	}

	.catalog-content .insert-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: 10px;
	}
}
