.vss-mobile-bottom-menu {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	display: none;
	padding: 0;
	margin: 0;
	pointer-events: none;
}

.vss-mobile-bottom-menu *,
.vss-mobile-bottom-menu *::before,
.vss-mobile-bottom-menu *::after {
	box-sizing: border-box;
}

.vss-mobile-bottom-menu__inner {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	gap: 0;
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding: 10px 0 calc(8px + env(safe-area-inset-bottom, 0px));
	border-radius: 0;
	background: rgba(17, 24, 39, 0.96);
	box-shadow: 0 10px 35px rgba(0, 0, 0, 0.24);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	pointer-events: auto;
}

.vss-mobile-bottom-menu__item {
	position: relative;
	display: flex;
	flex: 1 1 0;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;
	min-width: 0;
	padding: 8px 4px;
	border-radius: 0;
	text-decoration: none;
	color: #e5e7eb;
	transition: background-color 0.2s ease, transform 0.2s ease, color 0.2s ease, opacity 0.2s ease;
	-webkit-tap-highlight-color: transparent;
}

.vss-mobile-bottom-menu__item:focus,
.vss-mobile-bottom-menu__item:active,
.vss-mobile-bottom-menu__item:hover {
	text-decoration: none;
	outline: none;
	color: #ffffff;
}

.vss-mobile-bottom-menu__item:active {
	transform: translateY(1px);
}

.vss-mobile-bottom-menu__item.is-active {
	background: rgba(255, 255, 255, 0.1);
	color: #ffffff;
}

.vss-mobile-bottom-menu__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	line-height: 1;
	flex-shrink: 0;
}

.vss-mobile-bottom-menu__icon i {
	font-size: 20px;
	line-height: 1;
}

.vss-mobile-bottom-menu__icon-image {
	display: block;
	width: 22px;
	height: 22px;
	max-width: 22px;
	max-height: 22px;
	object-fit: contain;
}

.vss-mobile-bottom-menu__icon-fallback {
	display: block;
	width: 18px;
	height: 18px;
	border-radius: 999px;
	background: currentColor;
	opacity: 0.85;
}

.vss-mobile-bottom-menu__label {
	display: block;
	width: 100%;
	overflow: hidden;
	color: inherit;
	font-size: 11px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0.01em;
	text-align: center;
	text-overflow: ellipsis;
	white-space: nowrap;
}

body.admin-bar .vss-mobile-bottom-menu {
	bottom: 0;
}

@media (max-width: 767px) {
	.vss-mobile-bottom-menu {
		display: block;
	}

	body {
		padding-bottom: 92px;
	}
}

@media (max-width: 480px) {
	.vss-mobile-bottom-menu {
		padding-left: 0;
		padding-right: 0;
		padding-bottom: 0;
	}

	.vss-mobile-bottom-menu__inner {
		gap: 0;
		padding: 8px 0 calc(7px + env(safe-area-inset-bottom, 0px));
		border-radius: 0;
	}

	.vss-mobile-bottom-menu__item {
		gap: 5px;
		padding: 7px 2px;
		border-radius: 0;
	}

	.vss-mobile-bottom-menu__icon {
		width: 24px;
		height: 24px;
	}

	.vss-mobile-bottom-menu__icon i {
		font-size: 18px;
	}

	.vss-mobile-bottom-menu__icon-image {
		width: 20px;
		height: 20px;
		max-width: 20px;
		max-height: 20px;
	}

	.vss-mobile-bottom-menu__label {
		font-size: 10px;
	}
}

@media (min-width: 768px) {
	.vss-mobile-bottom-menu {
		display: none !important;
	}
}