/* Public catalog — tower crane rental */

.bashcran-catalog {
	max-width: 1220px;
	margin: 0 auto;
	padding: 28px 18px 56px;
	font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	color: #111;
	box-sizing: border-box;
	background: #fff;
	border-radius: 0;
}

.bashcran-catalog *,
.bashcran-catalog *::before,
.bashcran-catalog *::after {
	box-sizing: border-box;
}

.bashcran-catalog-hero {
	margin-bottom: 8px;
}

.bashcran-catalog-hero-inner {
	margin-bottom: 20px;
}

.bashcran-catalog-kicker {
	margin: 0 0 6px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: #e31e24;
}

.bashcran-catalog-heading {
	margin: 0 0 8px;
	font-size: clamp(22px, 4vw, 32px);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	line-height: 1.15;
}

.bashcran-catalog-sub {
	margin: 0;
	max-width: 52ch;
	font-size: 15px;
	line-height: 1.5;
	color: #444;
}

.bashcran-catalog-top-filters {
	margin: 0;
}

.bashcran-catalog-search-row {
	margin: 0 0 14px;
}

.bashcran-catalog-search-label {
	display: block;
	margin: 0;
}

.bashcran-catalog-search-label-text {
	display: block;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #444;
	margin-bottom: 8px;
}

.bashcran-catalog-search-input {
	width: 100%;
	max-width: 520px;
	padding: 12px 16px;
	border: 1px solid #ddd;
	border-radius: 10px;
	font-size: 15px;
	font-family: inherit;
	background: #fff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.bashcran-catalog-search-input:focus {
	outline: none;
	border-color: #e31e24;
	box-shadow: 0 0 0 3px rgba(227, 30, 36, 0.15);
}

.bashcran-catalog-search-input::placeholder {
	color: rgba(17, 17, 17, 0.38);
	opacity: 1;
}

.bashcran-catalog-filters-row {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	gap: 16px;
	background: linear-gradient(135deg, #e31e24 0%, #c41820 100%);
	padding: 18px 20px;
	border-radius: 12px;
	box-shadow: 0 12px 40px rgba(227, 30, 36, 0.28);
}

.bashcran-catalog-filter-item {
	display: flex;
	flex-direction: column;
	gap: 6px;
	color: #fff;
	font-size: 13px;
	font-weight: 600;
}

.bashcran-catalog-filter-item select.bashcran-catalog-filter-select {
	min-width: 200px;
	padding: 11px 36px 11px 14px;
	border: 0;
	border-radius: 8px;
	font-size: 14px;
	font-family: inherit;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	background-color: #fff;
	color: #111;
	cursor: pointer;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
}

.bashcran-catalog-filter-item select.bashcran-catalog-filter-select:focus {
	outline: 2px solid #fff;
	outline-offset: 2px;
}

.bashcran-catalog-filters-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
	margin-left: auto;
	flex: 1 1 160px;
}

.bashcran-catalog-filter-reset {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 11px 20px;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #c41820 !important;
	background: #fff;
	border-radius: 8px;
	text-decoration: none !important;
	box-shadow: 0 3px 14px rgba(0, 0, 0, 0.18);
	transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.bashcran-catalog-filter-reset:hover {
	filter: brightness(1.03);
	transform: translateY(-1px);
	box-shadow: 0 5px 18px rgba(0, 0, 0, 0.22);
}

.bashcran-catalog-filter-reset:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 3px;
}

.bashcran-catalog-live {
	position: relative;
	transition: opacity 0.22s ease;
}

.bashcran-catalog-live.is-loading {
	opacity: 0.55;
	pointer-events: none;
}

.bashcran-catalog-live.is-loading::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, transparent, #fff, rgba(255, 255, 255, 0.6), transparent);
	background-size: 200% 100%;
	animation: bashcran-catalog-loadbar 1s ease-in-out infinite;
	z-index: 2;
	border-radius: 2px;
	pointer-events: none;
}

@keyframes bashcran-catalog-loadbar {
	0% {
		background-position: 100% 0;
	}
	100% {
		background-position: -100% 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.bashcran-catalog-live.is-loading::before {
		animation: none;
		background: rgba(255, 255, 255, 0.75);
	}
}

.bashcran-catalog-chips {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 10px;
	margin: 0 0 20px;
	padding: 12px 14px;
	background: #f7f7f7;
	border: 1px solid #e8e8e8;
	border-radius: 6px;
}

.bashcran-catalog-chips-label {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #666;
	margin-right: 4px;
}

.bashcran-catalog-chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 10px;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 600;
	color: #222;
	text-decoration: none !important;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.bashcran-catalog-chip:hover {
	border-color: #e31e24;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.bashcran-catalog-chip span[aria-hidden] {
	opacity: 0.55;
	font-size: 16px;
	line-height: 1;
}

.bashcran-catalog-body {
	display: grid;
	grid-template-columns: 240px 1fr;
	gap: 32px;
	align-items: start;
}

.bashcran-catalog-sidebar-inner {
	position: sticky;
	top: 16px;
	padding: 18px 16px 20px;
	background: #fff;
	border: 1px solid #eaeaea;
	border-radius: 12px;
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.04);
}

.bashcran-catalog-sidebar-hint {
	margin: 0 0 14px;
	font-size: 12px;
	line-height: 1.4;
	color: #666;
}

.bashcran-catalog-sidebar-title {
	margin: 0 0 12px;
	padding-top: 12px;
	border-top: 2px solid #111;
	font-size: 14px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.bashcran-catalog-brand-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.bashcran-catalog-brand-list li {
	margin-bottom: 10px;
}

.bashcran-catalog-brand-item {
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	font-size: 14px;
	margin: 0;
}

.bashcran-catalog-brand-item input {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.bashcran-catalog-brand-check {
	width: 18px;
	height: 18px;
	border: 2px solid #bbb;
	border-radius: 4px;
	flex-shrink: 0;
	background: #fff;
	position: relative;
	transition: border-color 0.15s ease, background 0.15s ease;
}

.bashcran-catalog-brand-item input:focus-visible + .bashcran-catalog-brand-check {
	outline: 2px solid #e31e24;
	outline-offset: 2px;
}

.bashcran-catalog-brand-item input:checked + .bashcran-catalog-brand-check {
	background: #e31e24;
	border-color: #e31e24;
}

.bashcran-catalog-brand-item input:checked + .bashcran-catalog-brand-check::after {
	content: '';
	position: absolute;
	left: 4px;
	top: 1px;
	width: 5px;
	height: 9px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.bashcran-catalog-main {
	min-width: 0;
}

.bashcran-catalog-results {
	margin-bottom: 16px;
}

.bashcran-catalog-results-count {
	font-size: 14px;
	font-weight: 600;
	color: #333;
}

.bashcran-catalog-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 28px;
}

.bashcran-catalog-card {
	position: relative;
	background: linear-gradient(170deg, #fff 0%, #fff 66%, #fafafa 100%);
	border: 1px solid rgba(18, 18, 20, 0.08);
	border-radius: 16px;
	padding: 0 0 20px;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	transform-style: preserve-3d;
	will-change: transform;
	transition: border-color 0.3s ease, box-shadow 0.35s ease, transform 0.35s ease;
	box-shadow: 0 18px 42px rgba(18, 18, 22, 0.08), 0 1px 0 rgba(255, 255, 255, 0.9) inset;
	--card-tilt-x: 0deg;
	--card-tilt-y: 0deg;
	--card-lift: 0px;
	transform: perspective(1200px) rotateX(var(--card-tilt-x)) rotateY(var(--card-tilt-y)) translateY(var(--card-lift));
}

.bashcran-catalog-card:hover {
	border-color: rgba(227, 30, 36, 0.3);
	box-shadow: 0 28px 52px rgba(18, 18, 22, 0.16), 0 10px 22px rgba(227, 30, 36, 0.2);
	--card-lift: -6px;
}

.bashcran-catalog-card.is-tilting {
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.08s linear;
}

.bashcran-catalog-card-badge {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 2;
	left: auto;
	width: auto;
	min-width: 0;
	display: inline-flex;
	flex: 0 0 auto;
	padding: 4px 10px;
	background: linear-gradient(180deg, rgba(17, 17, 17, 0.9) 0%, rgba(17, 17, 17, 0.82) 100%);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	border-radius: 6px;
	max-width: calc(100% - 24px);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	transform: translateZ(22px);
	pointer-events: none;
}

.bashcran-catalog-card.has-brand .bashcran-catalog-card-title {
	padding-right: 118px;
}

.bashcran-catalog-card-title {
	margin: 16px 18px 12px;
	font-size: 16px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	line-height: 1.25;
}

.bashcran-catalog-card-title a {
	color: inherit;
	text-decoration: none;
	transition: color 0.15s ease;
}

.bashcran-catalog-card-title a:hover {
	color: #e31e24;
}

.bashcran-catalog-card-media {
	display: block;
	margin: 0 18px;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #fafafa;
	border-radius: 10px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
	transform: translateZ(18px);
}

.bashcran-catalog-card-media:hover .bashcran-catalog-card-img-el,
.bashcran-catalog-card-media:focus-visible .bashcran-catalog-card-img-el {
	transform: scale(1.03);
}

.bashcran-catalog-card-img {
	margin: 0 18px;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #fafafa;
}

.bashcran-catalog-card-img-el {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.bashcran-catalog-card-img-placeholder {
	min-height: 180px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(145deg, #eee 0%, #e4e4e4 100%);
	color: #888;
	font-size: 13px;
	font-weight: 600;
}

.bashcran-catalog-specs {
	margin: 16px 18px 0;
	padding: 0;
	transform: translateZ(10px);
}

.bashcran-catalog-spec-row {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 12px;
	padding: 12px 0;
	border-top: 1px solid #e0e0e0;
	margin: 0;
}

.bashcran-catalog-spec-row:first-of-type {
	border-top: 0;
}

.bashcran-catalog-spec-row dt {
	margin: 0;
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: #444;
	font-weight: 500;
}

.bashcran-catalog-spec-row dd {
	margin: 0;
	font-size: 14px;
	font-weight: 700;
	text-align: right;
}

.bashcran-catalog-ico {
	width: 22px;
	height: 22px;
	flex-shrink: 0;
	background: center / contain no-repeat;
	opacity: 0.55;
}

.bashcran-catalog-ico--length {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='M4 12h16M8 8l-4 4 4 4M16 8l4 4-4 4'/%3E%3C/svg%3E");
}

.bashcran-catalog-ico--weight {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='M6 20h12M8 20V10l2-6h4l2 6v10'/%3E%3C/svg%3E");
}

.bashcran-catalog-ico--tip {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='M12 3l2 5 5 2-5 2-2 5-2-5-5-2 5-2 2-5z'/%3E%3C/svg%3E");
}

.bashcran-catalog-card-actions {
	margin: 18px 18px 0;
	padding-top: 4px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	transform: translateZ(12px);
}

.bashcran-catalog-link-secondary {
	font-size: 13px;
	font-weight: 700;
	color: #333 !important;
	text-decoration: underline !important;
	text-underline-offset: 3px;
}

.bashcran-catalog-link-secondary:hover {
	color: #e31e24 !important;
}

.bashcran-catalog-cta {
	margin: 0;
	margin-left: auto;
	flex: 1 1 200px;
	max-width: 100%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 13px 18px;
	background: linear-gradient(180deg, #e31e24 0%, #c41820 100%);
	color: #fff !important;
	text-decoration: none !important;
	font-weight: 800;
	text-transform: uppercase;
	font-size: 12px;
	letter-spacing: 0.07em;
	position: relative;
	border-radius: 10px;
	box-shadow: 0 6px 18px rgba(227, 30, 36, 0.38);
	transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.15s ease;
}

.bashcran-catalog-cta:hover {
	filter: brightness(1.04);
	transform: translateY(-2px);
	box-shadow: 0 10px 26px rgba(227, 30, 36, 0.45);
}

.bashcran-catalog-cta:focus-visible {
	outline: 2px solid #e31e24;
	outline-offset: 3px;
}

.bashcran-catalog-cta-ico {
	display: inline-block;
	width: 14px;
	height: 14px;
	border: 2px solid #fff;
	position: relative;
	flex-shrink: 0;
}

.bashcran-catalog-cta-ico::after {
	content: '';
	position: absolute;
	right: 1px;
	bottom: 1px;
	width: 6px;
	height: 6px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(-45deg);
	transform-origin: 100% 100%;
}

.bashcran-catalog-empty {
	grid-column: 1 / -1;
	padding: 52px 28px;
	text-align: center;
	color: #555;
	background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
	border: 1px solid #e8e8e8;
	border-radius: 16px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 10px 36px rgba(0, 0, 0, 0.06);
	position: relative;
}

.bashcran-catalog-empty::before {
	content: '';
	display: block;
	width: 56px;
	height: 56px;
	margin: 0 auto 16px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c41820' stroke-width='1.5'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M21 21l-4.3-4.3'/%3E%3C/svg%3E") center / 32px 32px no-repeat;
	background-color: rgba(227, 30, 36, 0.08);
	border-radius: 50%;
}

.bashcran-catalog-empty-title {
	margin: 0 0 10px;
	font-size: 18px;
	font-weight: 800;
	color: #222;
}

.bashcran-catalog-empty-text {
	margin: 0 auto 20px;
	max-width: 36ch;
	line-height: 1.5;
}

.bashcran-catalog-empty-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 13px 26px;
	background: linear-gradient(180deg, #e31e24 0%, #c41820 100%);
	color: #fff !important;
	text-decoration: none !important;
	font-weight: 800;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	border-radius: 10px;
	box-shadow: 0 6px 20px rgba(227, 30, 36, 0.35);
}

.bashcran-catalog-empty-btn:hover {
	filter: brightness(1.06);
}

.bashcran-catalog-pagination {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 6px;
	margin-top: 36px;
	padding: 20px 16px;
	border-top: 1px solid #ebebeb;
	background: linear-gradient(180deg, rgba(250, 250, 250, 0.9) 0%, transparent 100%);
	border-radius: 0 0 12px 12px;
}

.bashcran-catalog-page-dir {
	display: inline-block;
	font-weight: 800;
	opacity: 0.85;
}

.bashcran-catalog-page--ellipsis {
	border: none;
	background: transparent;
	color: #999;
	min-width: 28px;
	pointer-events: none;
	font-weight: 700;
}

.bashcran-catalog-page {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 12px;
	border: 1px solid #ddd;
	border-radius: 10px;
	background: #fff;
	font-size: 14px;
	font-weight: 600;
	color: #222;
	text-decoration: none !important;
	transition: border-color 0.15s ease, background 0.15s ease, transform 0.12s ease;
}

.bashcran-catalog-page:hover {
	border-color: #e31e24;
	color: #e31e24;
}

.bashcran-catalog-page.is-current {
	background: linear-gradient(180deg, #e31e24 0%, #c41820 100%);
	border-color: #c41820;
	color: #fff;
	pointer-events: none;
	box-shadow: 0 4px 14px rgba(227, 30, 36, 0.35);
}

.bashcran-catalog-page--prev,
.bashcran-catalog-page--next {
	font-weight: 700;
	padding: 0 16px;
}

@media (hover: none), (pointer: coarse) {
	.bashcran-catalog-card {
		will-change: auto;
		transform-style: flat;
		--card-tilt-x: 0deg !important;
		--card-tilt-y: 0deg !important;
	}

	.bashcran-catalog-card.is-tilting {
		transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
	}

	.bashcran-catalog-card:hover {
		transform: translateY(-2px);
	}

	.bashcran-catalog-card-media:hover .bashcran-catalog-card-img-el,
	.bashcran-catalog-card-media:focus-visible .bashcran-catalog-card-img-el,
	.bashcran-catalog-cta:hover,
	.bashcran-catalog-page:hover,
	.bashcran-catalog-filter-reset:hover {
		transform: none;
		filter: none;
	}
}

@media (max-width: 900px) {
	.bashcran-catalog-body {
		grid-template-columns: 1fr;
	}
	.bashcran-catalog-grid {
		grid-template-columns: 1fr;
	}

	.bashcran-catalog-sidebar-inner {
		position: static;
	}

	.bashcran-catalog-filters-row {
		flex-direction: column;
		align-items: stretch;
	}

	.bashcran-catalog-filters-actions {
		margin-left: 0;
		width: auto;
		justify-content: flex-start;
	}

	.bashcran-catalog-filter-reset {
		width: auto;
	}

	.bashcran-catalog-filter-item select.bashcran-catalog-filter-select {
		min-width: 0;
		width: 100%;
	}

	.bashcran-catalog-search-input {
		max-width: none;
		width: 100%;
	}

	.bashcran-catalog-card-actions {
		flex-direction: row;
		align-items: center;
	}

	.bashcran-catalog-cta {
		min-width: 160px;
		margin-left: auto;
		width: auto;
	}

	.bashcran-catalog {
		padding: 20px 14px 34px;
	}

	.bashcran-catalog-heading {
		font-size: clamp(20px, 5vw, 28px);
	}

	.bashcran-catalog-sub {
		font-size: 14px;
		line-height: 1.45;
	}

	.bashcran-catalog-kicker,
	.bashcran-catalog-search-label-text,
	.bashcran-catalog-chips-label {
		letter-spacing: 0.06em;
	}

	.bashcran-catalog-filter-item select.bashcran-catalog-filter-select,
	.bashcran-catalog-search-input,
	.bashcran-catalog-filter-reset,
	.bashcran-catalog-page,
	.bashcran-catalog-cta,
	.bashcran-catalog-chip {
		min-height: 44px;
	}

	.bashcran-catalog-sidebar-inner {
		max-height: 44vh;
		overflow: auto;
	}

	.bashcran-catalog-brand-list li {
		margin-bottom: 8px;
	}
}

@media (max-width: 768px) {
	.bashcran-catalog-filters-row {
		padding: 14px;
		gap: 12px;
	}

	.bashcran-catalog-filter-item {
		font-size: 12px;
	}

	.bashcran-catalog-filter-item select.bashcran-catalog-filter-select {
		padding: 10px 34px 10px 12px;
		font-size: 15px;
	}

	.bashcran-catalog-search-input {
		font-size: 16px;
	}

	.bashcran-catalog-results-count {
		font-size: 13px;
	}

	.bashcran-catalog-grid {
		gap: 18px;
	}

	.bashcran-catalog-card {
		border-radius: 14px;
		padding-bottom: 14px;
	}

	.bashcran-catalog-card-title {
		margin: 14px 14px 10px;
		font-size: 15px;
	}

	.bashcran-catalog-card.has-brand .bashcran-catalog-card-title {
		padding-right: 98px;
	}

	.bashcran-catalog-card-badge {
		top: 10px;
		right: 10px;
		font-size: 10px;
		padding: 3px 8px;
		max-width: calc(100% - 20px);
	}

	.bashcran-catalog-card-media,
	.bashcran-catalog-specs,
	.bashcran-catalog-card-actions {
		margin-left: 14px;
		margin-right: 14px;
	}

	.bashcran-catalog-spec-row {
		padding: 10px 0;
	}

	.bashcran-catalog-spec-row dt,
	.bashcran-catalog-spec-row dd {
		font-size: 13px;
	}

	.bashcran-catalog-link-secondary {
		font-size: 14px;
		min-height: 36px;
		display: inline-flex;
		align-items: center;
	}

	.bashcran-catalog-cta {
		font-size: 11px;
		letter-spacing: 0.04em;
		padding: 10px 14px;
		min-height: 40px;
	}

	.bashcran-catalog-chip {
		padding: 8px 12px;
		font-size: 13px;
	}
}

@media (max-width: 480px) {
	.bashcran-catalog {
		padding: 16px 12px 28px;
	}

	.bashcran-catalog-kicker,
	.bashcran-catalog-search-label-text {
		font-size: 11px;
	}

	.bashcran-catalog-sub {
		max-width: none;
	}

	.bashcran-catalog-search-row {
		margin-bottom: 10px;
	}

	.bashcran-catalog-filters-row {
		padding: 12px;
	}

	.bashcran-catalog-filter-reset {
		min-height: 40px;
		padding: 10px 14px;
	}

	.bashcran-catalog-chip {
		border-radius: 12px;
	}

	.bashcran-catalog-pagination {
		margin-top: 24px;
		padding: 12px 8px;
		gap: 4px;
	}

	.bashcran-catalog-card-actions {
		flex-wrap: nowrap;
		gap: 8px;
	}

	.bashcran-catalog-link-secondary {
		min-height: 32px;
		font-size: 13px;
	}

	.bashcran-catalog-cta {
		flex: 0 0 auto;
		min-width: 148px;
		padding: 10px 12px;
		font-size: 10.5px;
	}

	.bashcran-catalog-page {
		min-width: 38px;
		height: 38px;
		padding: 0 10px;
		font-size: 13px;
	}

	.bashcran-catalog-pagination .bashcran-catalog-page:not(.bashcran-catalog-page--prev):not(.bashcran-catalog-page--next):not(.is-current),
	.bashcran-catalog-pagination .bashcran-catalog-page--ellipsis {
		display: none;
	}
}

@media (max-width: 360px) {
	.bashcran-catalog {
		padding: 14px 10px 22px;
	}

	.bashcran-catalog-card-title {
		font-size: 14px;
	}

	.bashcran-catalog-spec-row dt {
		font-size: 12px;
	}

	.bashcran-catalog-spec-row dd {
		font-size: 13px;
	}

	.bashcran-catalog-card.has-brand .bashcran-catalog-card-title {
		padding-right: 84px;
	}
}

/* Уведомление после отправки заявки с каталога */
.bashcran-catalog-flash {
	margin: 0 0 18px;
	padding: 14px 18px;
	border-radius: 12px;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.45;
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

.bashcran-catalog-flash--ok {
	background: linear-gradient(135deg, #e8f8ef 0%, #dff5ea 100%);
	color: #14532d;
	border: 1px solid rgba(20, 83, 45, 0.18);
}

.bashcran-catalog-flash--err {
	background: linear-gradient(135deg, #fff0f0 0%, #ffe4e4 100%);
	color: #7f1d1d;
	border: 1px solid rgba(196, 24, 32, 0.25);
}

/* Модальное окно заявки */
.bashcran-catalog-lead-modal {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 100000;
	align-items: center;
	justify-content: center;
	padding: 20px;
	font-family: inherit;
}

.bashcran-catalog-lead-modal.is-open {
	display: flex;
}

.bashcran-catalog-lead-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(15, 15, 18, 0.55);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	cursor: pointer;
}

.bashcran-catalog-lead-modal__dialog {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 440px;
	max-height: min(92vh, 720px);
	overflow: auto;
	background: #fff;
	border-radius: 18px;
	box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(0, 0, 0, 0.05);
	animation: bashcran-catalog-modal-in 0.28s ease-out;
}

@keyframes bashcran-catalog-modal-in {
	from {
		opacity: 0;
		transform: translateY(14px) scale(0.98);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.bashcran-catalog-lead-modal__close {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 40px;
	height: 40px;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 10px;
	background: rgba(0, 0, 0, 0.06);
	color: #333;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.15s ease, color 0.15s ease;
}

.bashcran-catalog-lead-modal__close:hover {
	background: rgba(227, 30, 36, 0.12);
	color: #c41820;
}

.bashcran-catalog-lead-modal__close:focus-visible {
	outline: 2px solid #e31e24;
	outline-offset: 2px;
}

.bashcran-catalog-lead-modal__head {
	padding: 28px 28px 12px;
	padding-right: 52px;
	border-bottom: 1px solid #eee;
	background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
	border-radius: 18px 18px 0 0;
}

.bashcran-catalog-lead-modal__kicker {
	margin: 0 0 6px;
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: #e31e24;
}

.bashcran-catalog-lead-modal__title {
	margin: 0 0 8px;
	font-size: 22px;
	font-weight: 800;
	line-height: 1.2;
	color: #111;
}

.bashcran-catalog-lead-modal__crane {
	margin: 0;
	font-size: 15px;
	font-weight: 700;
	color: #444;
	line-height: 1.35;
}

.bashcran-catalog-lead-modal__form {
	padding: 22px 28px 28px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.bashcran-catalog-lead-modal__form label {
	font-size: 13px;
	font-weight: 700;
	color: #333;
}

.bashcran-catalog-lead-modal__form input,
.bashcran-catalog-lead-modal__form textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid #ddd;
	border-radius: 10px;
	font-size: 15px;
	font-family: inherit;
	background: #fff;
	box-sizing: border-box;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.bashcran-catalog-lead-modal__form input:focus,
.bashcran-catalog-lead-modal__form textarea:focus {
	outline: none;
	border-color: #e31e24;
	box-shadow: 0 0 0 3px rgba(227, 30, 36, 0.18);
}

.bashcran-catalog-lead-modal__form input::placeholder,
.bashcran-catalog-lead-modal__form textarea::placeholder {
	color: rgba(17, 17, 17, 0.42);
	opacity: 1;
}

.bashcran-catalog-lead-modal__form input:focus::placeholder,
.bashcran-catalog-lead-modal__form textarea:focus::placeholder {
	color: rgba(17, 17, 17, 0.28);
}

.bashcran-catalog-lead-modal__form textarea {
	min-height: 100px;
	resize: vertical;
}

.bashcran-catalog-lead-modal__submit {
	margin-top: 6px;
	padding: 14px 20px;
	border: 0;
	border-radius: 11px;
	background: linear-gradient(135deg, #e31e24 0%, #c41820 100%);
	color: #fff !important;
	font-size: 14px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	cursor: pointer;
	box-shadow: 0 6px 22px rgba(227, 30, 36, 0.35);
	transition: filter 0.15s ease, transform 0.15s ease;
}

.bashcran-catalog-lead-modal__submit:hover {
	filter: brightness(1.04);
	transform: translateY(-1px);
}

.bashcran-catalog-lead-modal__submit:focus-visible {
	outline: 2px solid #111;
	outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
	.bashcran-catalog-lead-modal__dialog {
		animation: none;
	}
}

.bashcran-catalog-page-wrap {
	background: #fff;
}

.bashcran-catalog-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, rgba(255, 255, 255, 0.6) 20%, rgba(255, 255, 255, 0) 42%);
	pointer-events: none;
	z-index: 0;
}

.bashcran-catalog-card > *:not(.bashcran-catalog-card-badge) {
	position: relative;
	z-index: 1;
}
