/* Виджет менеджера - стиль визитки */
.mgr-widget {
	max-width: 490px;
	margin: 30px 0;
	padding: 0;
}

.mgr-widget-inner {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 24px;
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
	border: 1px solid #e0e5eb;
	border-radius: 16px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mgr-widget-inner:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.mgr-photo {
	flex-shrink: 0;
}

.mgr-photo img {
	width: 100px;
	height: 100px;
	object-fit: cover;
	border-radius: 12px;
	border: 3px solid #fff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mgr-info {
	flex: 1;
	min-width: 0;
}

.mgr-title {
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	color: #6c757d;
	letter-spacing: 0.5px;
	margin-bottom: 8px;
}

.mgr-name {
	font-size: 20px;
	font-weight: 700;
	color: #212529;
	margin-bottom: 4px;
	line-height: 1.2;
}

.mgr-position {
	font-size: 14px;
	color: #6c757d;
	margin-bottom: 10px;
	line-height: 18px;
	font-style: italic;
}

.mgr-email {
	margin-top: 8px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.mgr-email a {
	font-size: 15px;
	color: #212529;
	text-decoration: none;
	font-weight: 500;
	line-height: 18px;
	transition: color 0.2s ease;
}

.mgr-email a:hover {
	color: #0d6efd;
	text-decoration: underline;
}

.mgr-email .copy-mail-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	padding: 0;
	border: none;
	border-radius: 6px;
	background: transparent;
	color: #6c757d;
	cursor: pointer;
	transition: all 0.2s ease;
	flex-shrink: 0;
}

.mgr-email .copy-mail-btn:hover {
	background: #f8f9fa;
	color: #0d6efd;
}

.mgr-email .copy-mail-btn:active {
	transform: scale(0.95);
}

.mgr-email .icon-copy {
	display: block;
}

.mgr-action {
	margin-top: 12px;
}

.mgr-action .button__product-page {
	display: inline-block;
	width: 100%;
	text-align: center;
}

@media (max-width: 576px) {
	.mgr-widget {
		max-width: 100%;
		margin: 20px 0;
	}
	
	.mgr-widget-inner {
		flex-direction: column;
		text-align: center;
		padding: 20px;
		gap: 16px;
	}
	
	.mgr-photo img {
		width: 90px;
		height: 90px;
	}
	
	.mgr-name {
		font-size: 18px;
	}
	
	.mgr-email a {
		justify-content: center;
	}
}
