.hero-actions {
	align-items: flex-start;
}

.hero-contact-picker {
	width: 100%;
}

.hero-contact-trigger.poster-action {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	justify-content: initial;
	gap: 12px;
	padding: 0 16px;
	color: #fff;
	cursor: pointer;
}

.hero-contact-platforms {
	display: flex;
	align-items: center;
	gap: 5px;
	pointer-events: none;
}

.hero-contact-platform {
	display: grid;
	width: 25px;
	height: 25px;
	place-items: center;
	border: 1px solid rgba(255,255,255,.28);
	border-radius: 50%;
	box-shadow: 0 2px 7px rgba(0,18,40,.2);
	transition: filter 220ms ease;
}

.hero-contact-platform svg {
	width: 15px;
	height: 15px;
}

.hero-contact-platform--telegram { background: #229ed9; color: #fff; }
.hero-contact-platform--whatsapp { background: #168e4c; color: #fff; }
.hero-contact-platform--max { background: #7546b9; color: #fff; }

.hero-contact-label {
	min-width: 0;
	white-space: nowrap;
	text-align: center;
}

.hero-contact-trigger:hover .hero-contact-platform,
.hero-contact-trigger:focus-visible .hero-contact-platform {
	filter: brightness(1.15);
}

.hero-contact-chevron {
	flex: 0 0 auto;
	transition: transform 240ms ease;
}

.hero-contact-picker.is-open .hero-contact-chevron {
	transform: rotate(180deg);
}

.hero-messengers {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
	width: 100%;
	max-height: 0;
	margin-top: 0;
	padding: 0 8px;
	overflow: hidden;
	border: 0 solid rgba(150,198,236,.2);
	border-radius: 16px;
	background: rgba(8,31,68,.9);
	box-shadow: 0 18px 45px rgba(0,14,27,.2);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(-5px);
	backdrop-filter: blur(14px);
	transition: max-height 240ms ease, margin-top 240ms ease, padding 240ms ease, border-width 240ms ease, opacity 240ms ease, transform 240ms ease, visibility 240ms ease;
}

.hero-contact-picker.is-open .hero-messengers {
	max-height: 230px;
	margin-top: 10px;
	padding: 8px;
	border-width: 1px;
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}

.hero-messenger {
	display: grid;
	grid-template-columns: 38px minmax(0, 1fr) auto;
	align-items: center;
	gap: 11px;
	min-height: 62px;
	padding: 9px 10px;
	border-radius: 11px;
	color: #fff;
	transition: background-color 220ms ease;
}

.hero-messenger::after {
	content: "↗";
	color: #8aa9bd;
	font-size: 14px;
}

.hero-messenger + .hero-messenger {
	border-top: 1px solid rgba(255,255,255,.08);
}

.hero-messenger:hover,
.hero-messenger:focus-visible {
	background: rgba(255,255,255,.07);
}

.hero-messenger:focus-visible {
	outline: 2px solid rgba(150,205,249,.95);
	outline-offset: -2px;
}

.hero-messenger-icon {
	display: grid;
	width: 38px;
	height: 38px;
	place-items: center;
	border-radius: 10px;
}

.hero-messenger-icon svg {
	width: 21px;
	height: 21px;
}

.hero-messenger--telegram .hero-messenger-icon {
	background: rgba(45,164,220,.17);
	color: #56c2f2;
}

.hero-messenger--whatsapp .hero-messenger-icon {
	background: rgba(37,211,102,.15);
	color: #49df80;
}

.hero-messenger--max .hero-messenger-icon {
	background: rgba(157,92,230,.17);
	color: #c094f1;
}

.hero-messenger-copy {
	display: flex;
	min-width: 0;
	flex-direction: column;
	gap: 2px;
}

.hero-messenger-copy strong {
	font-size: 14px;
	line-height: 1.2;
}

.hero-messenger-copy span {
	overflow: hidden;
	color: #b9cde1;
	font-size: 11px;
	line-height: 1.35;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.delivery-messenger-panel {
	display: grid;
	grid-column: 1 / -1;
	grid-template-columns: 1fr;
	gap: 0;
	width: 100%;
	max-height: 0;
	margin-top: 0;
	padding: 0 8px;
	overflow: hidden;
	border: 0 solid rgba(150,198,236,.2);
	border-radius: 14px;
	background: #092941;
	box-shadow: 0 14px 32px rgba(0,24,48,.14);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(-5px);
	transition: max-height 240ms ease, margin-top 240ms ease, padding 240ms ease, border-width 240ms ease, opacity 240ms ease, transform 240ms ease, visibility 240ms ease;
}

.delivery-messenger-panel.is-open {
	max-height: 230px;
	margin-top: 4px;
	padding: 8px;
	border-width: 1px;
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}

.floating-messenger {
	position: fixed;
	z-index: 80;
	right: 24px;
	bottom: 24px;
	width: 58px;
	height: 58px;
}

.floating-contact-dots {
	display: flex;
	align-items: center;
	gap: 3px;
}

.floating-contact-dots i {
	display: block;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #56c2f2;
}

.floating-contact-dots i:nth-child(2) {
	background: #49df80;
}

.floating-contact-dots i:nth-child(3) {
	background: #c094f1;
}

.floating-messenger-panel {
	position: absolute;
	right: 0;
	bottom: calc(100% + 12px);
	display: grid;
	grid-template-columns: 1fr;
	width: min(300px, calc(100vw - 28px));
	padding: 8px;
	border: 1px solid rgba(150,198,236,.2);
	border-radius: 16px;
	background: #092941;
	box-shadow: 0 18px 45px rgba(0,14,27,.25);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(6px);
	transition: opacity 240ms ease, transform 240ms ease, visibility 240ms ease;
}

.floating-messenger.is-open .floating-messenger-panel {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}

@media (max-width: 600px) {
	.hero-contact-picker,
	.hero-contact-trigger {
		width: 100%;
	}

	.hero-contact-trigger {
		justify-content: initial;
	}

	.hero-contact-picker.is-open .hero-messengers {
		max-height: 230px;
	}

	.hero-messenger {
		min-height: 54px;
	}

	.delivery-messenger-panel .hero-messenger {
		min-height: 54px;
	}

	.floating-messenger-panel {
		width: min(290px, calc(100vw - 28px));
	}
}

@media (max-width: 390px) {
	.hero-contact-trigger {
		gap: 9px;
		padding-right: 12px;
		padding-left: 12px;
	}

	.hero-contact-platforms { gap: 4px; }
	.hero-contact-platform {
		width: 21px;
		height: 21px;
	}
	.hero-contact-platform svg {
		width: 13px;
		height: 13px;
	}
	.hero-contact-label { font-size: 12px; }
}

@media (prefers-reduced-motion: reduce) {
	.hero-contact-chevron,
	.hero-messengers,
	.delivery-messenger-panel,
	.floating-messenger-panel,
	.hero-messenger {
		transition: none;
	}
}
