/**
 * Плавающая панель (Главная, Каталог, Кабинет, Корзина).
 * Мобильные: внизу по горизонтали. Десктоп 1024+: справа по вертикали.
 *
 * @package moytop
 */

/* Базово скрыта, показывается в медиа-запросах */
.mtp-mobile-bar {
	display: none;
}

/* Десктоп 1024px и выше: панель справа, вертикально по центру */
@media only screen and (min-width: 1024px) {
	.mtp-mobile-bar {
		display: block;
		position: fixed;
		top: 50%;
		right: 0;
		transform: translateY(-50%);
		z-index: 9999;
		padding: 12px 16px 20px 16px;
		pointer-events: none;
	}

	.mtp-mobile-bar__inner {
		pointer-events: auto;
		background: #6f7073;
		border-radius: 24px;
		padding: 6px 8px;
		box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
	}

	.mtp-mobile-bar__track {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 0;
	}

	.mtp-mobile-bar__item {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		padding: 8px 6px;
		text-decoration: none;
		color: #fff;
		position: relative;
		transition: background-color 0.2s ease, color 0.2s ease;
		width: 100%;
		min-width: 0;
		border-radius: 16px;
	}

	.mtp-mobile-bar__item_active {
		background: rgba(255, 255, 255, 0.12);
	}

	.mtp-mobile-bar__item:focus {
		color: #fff;
		outline: none;
	}

	.mtp-mobile-bar__icon {
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 28px;
		height: 28px;
		margin-bottom: 2px;
	}

	.mtp-mobile-bar__icon svg {
		flex-shrink: 0;
	}

	.mtp-mobile-bar__icon_cart {
		width: 32px;
		height: 32px;
	}

	.mtp-mobile-bar__badge {
		position: absolute;
		top: -6px;
		right: -8px;
		min-width: 18px;
		height: 18px;
		padding: 0 5px;
		background: #e53935;
		color: #fff;
		font-size: 11px;
		font-weight: 600;
		line-height: 18px;
		text-align: center;
		border-radius: 9px;
		white-space: nowrap;
	}

	.mtp-mobile-bar__label {
		font-size: 12px;
		line-height: 1.2;
		opacity: 0.9;
	}
}

@media only screen and (max-width: 1023.98px) {
	.mtp-mobile-bar {
		display: block;
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
		z-index: 9999;
		padding: 12px 16px 20px;
		pointer-events: none;
	}

	.mtp-mobile-bar__inner {
		pointer-events: auto;
		background: #6f7073;
		border-radius: 24px;
		padding: 6px 8px;
		margin: 0 auto;
		max-width: 400px;
		box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
	}

	.mtp-mobile-bar__track {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	.mtp-mobile-bar__item {
		flex: 1;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		padding: 8px 6px;
		text-decoration: none;
		color: #fff;
		position: relative;
		transition: background-color 0.2s ease, color 0.2s ease;
		min-width: 0;
		border-radius: 16px;
	}

	/* Подложка у активного элемента — полупрозрачность и padding */
	.mtp-mobile-bar__item_active {
		background: rgba(255, 255, 255, 0.12);
	}

	.mtp-mobile-bar__item:focus {
		color: #fff;
		outline: none;
	}

	.mtp-mobile-bar__icon {
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 16px;
		height: 16px;
		margin-bottom: 2px;
	}

	.mtp-mobile-bar__icon svg {
		flex-shrink: 0;
	}

	.mtp-mobile-bar__icon_cart {
		width: 16px;
		height: 16px;
	}

	/* Красный бейдж с количеством товаров в корзине */
	.mtp-mobile-bar__badge {
		position: absolute;
		top: -6px;
		right: -8px;
		min-width: 18px;
		height: 18px;
		padding: 0 5px;
		background: #e53935;
		color: #fff;
		font-size: 11px;
		font-weight: 600;
		line-height: 18px;
		text-align: center;
		border-radius: 9px;
		white-space: nowrap;
	}

	.mtp-mobile-bar__label {
		font-size: 12px;
		line-height: 1.2;
		opacity: 0.9;
	}

	/* Скрываем лейблы на очень узких экранах, если нужно — можно раскомментировать */
	/*
	@media only screen and (max-width: 360px) {
		.mtp-mobile-bar__label {
			display: none;
		}
	}
	*/
}

/* Ссылка «В корзине» в мобильном меню — только на мобильных */
.menu__cart-link.mtp-menu-cart {
	display: none;
}

@media only screen and (max-width: 1023.98px) {
	.menu__cart-link.mtp-menu-cart {
		display: block;
		padding: 16px 30px 20px;
		border-top: 1px solid var(--dividerColor, #ECEEF2);
		margin-top: 10px;
	}

	.mtp-menu-cart__link {
		display: flex;
		align-items: center;
		gap: 12px;
		text-decoration: none;
		color: var(--textColor, #1f1f1f);
		font-size: 16px;
		font-weight: 500;
		transition: color 0.2s ease;
	}

	.mtp-menu-cart__link:focus {
		color: var(--linkColor);
	}

	.mtp-menu-cart__icon {
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 28px;
		height: 28px;
	}

	.mtp-menu-cart__icon svg {
		flex-shrink: 0;
	}

	.mtp-menu-cart__badge {
		position: absolute;
		top: -6px;
		right: -8px;
		min-width: 18px;
		height: 18px;
		padding: 0 5px;
		background: #e53935;
		color: #fff;
		font-size: 11px;
		font-weight: 600;
		line-height: 18px;
		text-align: center;
		border-radius: 9px;
		white-space: nowrap;
	}

	.mtp-menu-cart__text {
		line-height: 1.3;
	}
}
