.ed-mobile-menu {
	display: none;
}

@media (max-width: 768px) {
	body {
		padding-bottom: calc(58px + env(safe-area-inset-bottom, 0px));
	}

	.ed-mobile-menu {
		position: fixed;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 999;
		display: block;
		background: rgb(0 0 0 / 95%);
		box-shadow: 0 -1px 5px rgb(0 0 0 / 10%);
		-webkit-backdrop-filter: blur(7.5px);
		backdrop-filter: blur(7.5px);
	}

	.ed-mobile-menu__list {
		display: grid;
		grid-template-columns: repeat(5, minmax(0, 1fr));
		align-items: stretch;
		width: 100%;
		height: calc(58px + env(safe-area-inset-bottom, 0px));
		margin: 0;
		padding: 0 5px env(safe-area-inset-bottom, 0px);
		list-style: none;
		background: transparent;
	}

	.ed-mobile-menu__item {
		min-width: 0;
		margin: 0;
		padding: 0;
		list-style: none;
	}

	.ed-mobile-menu__link {
		display: flex;
		height: 58px;
		align-items: center;
		justify-content: center;
		flex-direction: column;
		gap: 4px;
		padding: 0 10px;
		color: #fff;
		font-family: Lato, sans-serif;
		font-size: 11px;
		font-weight: 700;
		line-height: 13px;
		letter-spacing: 0.4px;
		text-align: center;
		text-decoration: none;
		touch-action: manipulation;
		-webkit-tap-highlight-color: transparent;
	}

	.ed-mobile-menu__link:hover,
	.ed-mobile-menu__link:focus,
	.ed-mobile-menu__link:active {
		color: #fff;
		text-decoration: none;
	}

	.ed-mobile-menu__link.is-active,
	.ed-mobile-menu__link[aria-current="page"] {
		color: #ff2a71;
		font-weight: 900;
	}

	.ed-mobile-menu__icon-wrap {
		position: relative;
		display: inline-flex;
		width: 20px;
		height: 20px;
		align-items: center;
		justify-content: center;
		color: currentColor;
	}

	.ed-mobile-menu__icon {
		display: block;
		width: 20px;
		height: 20px;
		fill: currentColor;
	}

	.ed-mobile-menu__link.is-active .ed-mobile-menu__icon,
	.ed-mobile-menu__link[aria-current="page"] .ed-mobile-menu__icon {
		color: #d73c74;
	}

	.ed-mobile-menu__link--sale {
		gap: 3px;
	}

	.ed-mobile-menu__link--sale .ed-mobile-menu__icon-wrap {
		width: 24px;
		height: 24px;
	}

	.ed-mobile-menu__link--sale .ed-mobile-menu__icon {
		width: 24px;
		height: 24px;
		color: #d73c74;
	}

	.ed-mobile-menu__count {
		position: absolute;
		top: -5px;
		right: -7px;
		display: inline-flex;
		box-sizing: border-box;
		min-width: 15px;
		height: 15px;
		align-items: center;
		justify-content: center;
		padding: 0 5px;
		border-radius: 999px;
		background: #ff2a71;
		color: #fff;
		font-family: Lato, sans-serif;
		font-size: 9px;
		font-weight: 700;
		line-height: 15px;
		letter-spacing: 0;
	}

	.ed-mobile-menu__label {
		display: block;
		max-width: 100%;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ed-mobile-menu *,
	.ed-mobile-menu *::before,
	.ed-mobile-menu *::after {
		scroll-behavior: auto !important;
		transition: none !important;
	}
}
