/* === Sticky header ============================================= */
:root {
	--sm-blue: #0a6cb4;
	--sm-blue-dark: #07568f;
	--sm-accent: #ff6b00;
	--sm-text: #1c2530;
	--sm-bg: #ffffff;
	--sm-bg-soft: #f5f8fb;
}

.sm-sticky-header {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 9998;
	background: var(--sm-bg);
	box-shadow: 0 2px 12px rgba(20, 40, 70, .08);
	transform: translateY(-100%);
	transition: transform .35s ease;
	border-bottom: 1px solid rgba(20, 40, 70, .06);
	pointer-events: none;
}
.sm-sticky-header.is-visible {
	transform: translateY(0);
	pointer-events: auto;
}
.sm-sticky-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 10px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}
.sm-sticky-logo {
	text-decoration: none;
	color: var(--sm-text);
	font-size: 20px;
	font-weight: 700;
}
.sm-logo-text { color: var(--sm-text); }
.sm-logo-accent { color: var(--sm-blue); }

.sm-sticky-actions {
	display: flex;
	align-items: center;
	gap: 10px;
}
.sm-sticky-phone {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--sm-text);
	font-weight: 700;
	font-size: 17px;
	text-decoration: none;
	padding: 6px 4px;
}
.sm-sticky-phone:hover { color: var(--sm-blue); }
.sm-sticky-phone svg { color: var(--sm-blue); }

.sm-sticky-icon {
	display: inline-flex;
	width: 34px; height: 34px;
	border-radius: 50%;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: #fff;
	transition: transform .15s ease;
}
.sm-sticky-icon:hover { transform: scale(1.08); }
.sm-ic-tg { background: #2aa7e0; }
.sm-ic-wa { background: #25d366; }

.sm-sticky-cta {
	background: var(--sm-accent);
	color: #fff !important;
	font-weight: 700;
	text-decoration: none;
	padding: 10px 18px;
	border-radius: 6px;
	font-size: 14px;
	transition: background .15s ease;
	white-space: nowrap;
}
.sm-sticky-cta:hover { background: #e25e00; }

@media (max-width: 768px) {
	.sm-sticky-header { display: none; } /* На мобильных используем нижнюю плашку sm-mobile-bar */
}
