.desktop-sidebar {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
	width: 270px;
	background: white;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
	overflow: hidden;
}

.desktop-sidebar * {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}



.sidebar-container {
	padding: 0;
}

/* Баннер */
.sidebar-banner {
	display: block;
	width: 100%;
	height: 200px; /* Уменьшено с 180px */
	background: linear-gradient(135deg, #0ea5e9 0%, #6366f1 100%);
	position: relative;
	overflow: hidden;
	cursor: pointer;
	transition: all 0.3s ease;
}

.sidebar-banner::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.sidebar-banner::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
	transform: scale(0);
	transition: transform 0.6s ease;
}

.sidebar-banner:hover::before {
	transform: scale(1);
}

.sidebar-banner:hover {
	transform: scale(1.02);
	box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

.banner-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	color: white;
	width: 100%;
	padding: 15px; /* Уменьшено с 20px */
	transition: all 0.3s ease;
}

.sidebar-banner:hover .banner-content {
	transform: translate(-50%, -50%) scale(1.05);
}

.banner-icon {
	font-size: 40px; /* Уменьшено с 48px */
	margin-bottom: 8px; /* Уменьшено с 10px */
	opacity: 0.9;
	animation: bann 3s ease-in-out infinite;
}

@keyframes bann {
	0%, 100% { transform: translateY(0px); }
	50% { transform: translateY(-10px); }
}

.banner-title {
	font-size: 18px; /* Уменьшено с 20px */
	font-weight: 700;
	margin-bottom: 6px; /* Уменьшено с 8px */
	text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.banner-subtitle {
	font-size: 13px; /* Уменьшено с 14px */
	opacity: 0.95;
	font-weight: 400;
}

.banner-cta {
	display: inline-block;
	margin-top: 10px; /* Уменьшено с 12px */
	padding: 6px 14px; /* Уменьшено с 8px 16px */
	background: rgba(255,255,255,0.2);
	border: 1px solid rgba(255,255,255,0.3);
	border-radius: 20px;
	font-size: 12px;
	font-weight: 500;
	transition: all 0.3s ease;
}

.sidebar-banner:hover .banner-cta {
	background: rgba(255,255,255,0.3);
	border-color: rgba(255,255,255,0.5);
	transform: translateY(-2px);
}

/* Контент сайдбара */
.sidebar-content {
	padding: 15px; /* Уменьшено с 20px */
}

.desktop-nav-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.desktop-nav-item {
	margin-bottom: 6px; /* Уменьшено с 8px */
}

/* Обычные ссылки */
.desktop-nav-link {
	display: block;
	padding: 8px 10px; /* Уменьшено с 10px 12px */
	color: #555;
	text-decoration: none;
	border-radius: 6px;
	transition: all 0.2s ease;
	font-size: 14px; /* Размер шрифта сохранен */
}

.desktop-nav-link:hover {
	background: #f8f9fa;
	color: #333;
	transform: translateX(2px);
}

/* Активная страница */
.desktop-nav-link.active {
	background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
	color: #0369a1;
	font-weight: 600;
	box-shadow: 0 2px 4px rgba(14, 165, 233, 0.1);
	transform: translateX(2px);
}

/* Разделитель секций - простой стиль */
.section-divider {
	display: block;
	margin: 20px 0 12px 0;
	padding: 8px 15px;
	background: transparent;
	color: #000;
	font-weight: 600;
	font-size: 13px;
	text-transform: none; /* Обычный регистр */
	letter-spacing: normal;
	cursor: default;
	user-select: none;
	position: relative;
}

/* Первый разделитель */
.section-divider:first-of-type {
	margin-top: 0;
}

@media (max-width: 1000px) {
	.desktop-sidebar {
	  display: none;
	}
}