#personalMenuWrap {
	position: sticky;
	top: 0;
	z-index: 100;

	display: flex;
	align-items: center;
	gap: 8px;

	padding: 10px 12px;

	-background: rgba(255,255,255,0.75);
	-backdrop-filter: blur(12px);

	-border-bottom: 1px solid #e2e8f0;
	border-radius: 16px;
	margin-bottom: 15px;
	
}

/* SCROLL AREA */
#personalMenu {
	display: flex;
	gap: 10px;
	flex: 1;

	overflow-x: auto;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;

	scroll-snap-type: x proximity;

	scrollbar-width: none;
}
#personalMenu::-webkit-scrollbar {
	display: none;
}

/* PILLS */
.navItem {
	flex: 0 0 auto;

	padding: 10px 14px;
	border-radius: 999px;

	font-size: 14px;
	font-weight: 500;

	text-decoration: none;

	color: #334155;
	background: #f1f5f9;

	white-space: nowrap;

	transition: all .18s ease;
}

.navItem:hover {
	background: #e2e8f0;
	color: #0f172a;
}

.navItem.is-active {
	background: #2f7d6b;
	color: #fff;
	box-shadow: 0 8px 24px rgba(47,125,107,0.25);
}

/* ARROWS — Stripe style overlay */
.navArrow {
	width: 36px;
	height: 36px;

	border-radius: 12px;
	border: 1px solid #e2e8f0;

	background: #fff;

	cursor: pointer;

	display: flex;
	align-items: center;
	justify-content: center;

	font-size: 18px;

	transition: .15s ease;

	user-select: none;
}

/* hover */
.navArrow:hover {
	background: #f8fafc;
}

/* hidden state (soft fade, NOT display:none) */
.navArrow.hidden {
	opacity: 0;
	pointer-events: none;
	transform: scale(0.95);
}

/* MOBILE: НЕ убираем стрелки полностью */
@media (max-width: 768px) {

	.navArrow {
		width: 32px;
		height: 32px;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		background: rgba(255,255,255,0.9);
		backdrop-filter: blur(8px);
	}

	.navArrowLeft {
		left: 6px;
	}

	.navArrowRight {
		right: 6px;
	}

	#personalMenuWrap {
		position: sticky;
	}
}