/* FoodTech Blocks — mobile bottom navigation bar + categories drawer. */

.ftb-mobile-nav,
.ftb-mobile-drawer {
	display: none;
}

@media (max-width: 1000px) {

	/* --- Bottom bar --- */

	.ftb-mobile-nav {
		display: flex;
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 999999;
		height: calc(64px + env(safe-area-inset-bottom, 0px));
		padding-bottom: env(safe-area-inset-bottom, 0px);
		background: #fff;
		box-shadow: 0 -1px 8px rgba(0, 0, 0, 0.08);
	}

	body.ftb-has-mobile-nav {
		padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px));
	}

	.ftb-mobile-nav__item {
		flex: 1 1 0;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 4px;
		margin: 0;
		padding: 0;
		border: 0;
		background: none;
		cursor: pointer;
		text-decoration: none;
		color: #8a8f98;
		font-size: 11px;
		font-weight: 600;
		letter-spacing: 0.06em;
		text-transform: uppercase;
		line-height: 1;
		-webkit-tap-highlight-color: transparent;
	}

	.ftb-mobile-nav__item:hover,
	.ftb-mobile-nav__item:focus {
		color: #8a8f98;
		text-decoration: none;
	}

	.ftb-mobile-nav__item.is-active,
	.ftb-mobile-nav__item.is-active:hover,
	.ftb-mobile-nav__item.is-active:focus {
		color: #4c1d95;
	}

	.ftb-mobile-nav__icon {
		display: block;
		width: 24px;
		height: 24px;
	}

	.ftb-mobile-nav__icon svg {
		display: block;
		width: 100%;
		height: 100%;
	}

	/* --- Categories drawer --- */

	.ftb-mobile-drawer {
		display: block;
		position: fixed;
		left: 0;
		right: 0;
		top: 0;
		bottom: calc(64px + env(safe-area-inset-bottom, 0px));
		z-index: 999998;
		pointer-events: none;
		visibility: hidden;
		transition: visibility 0s linear 0.25s;
	}

	.ftb-mobile-drawer.is-open {
		pointer-events: auto;
		visibility: visible;
		transition-delay: 0s;
	}

	.ftb-mobile-drawer__backdrop {
		position: absolute;
		inset: 0;
		background: rgba(0, 0, 0, 0.4);
		opacity: 0;
		transition: opacity 0.25s ease;
	}

	.ftb-mobile-drawer.is-open .ftb-mobile-drawer__backdrop {
		opacity: 1;
	}

	.ftb-mobile-drawer__panel {
		position: absolute;
		left: 0;
		right: 0;
		bottom: 0;
		max-height: 70vh;
		overflow-y: auto;
		background: #fff;
		border-radius: 16px 16px 0 0;
		transform: translateY(100%);
		transition: transform 0.25s ease;
	}

	.ftb-mobile-drawer.is-open .ftb-mobile-drawer__panel {
		transform: translateY(0);
	}

	body.ftb-drawer-open {
		overflow: hidden;
	}

	.ftb-mobile-drawer__header {
		display: flex;
		align-items: center;
		justify-content: space-between;
		position: sticky;
		top: 0;
		background: #fff;
		padding: 16px 20px 12px;
		border-bottom: 1px solid #eef0f3;
	}

	.ftb-mobile-drawer__title {
		margin: 0;
		font-size: 16px;
		font-weight: 700;
	}

	.ftb-mobile-drawer__close {
		margin: 0;
		padding: 4px;
		border: 0;
		background: none;
		cursor: pointer;
		color: #8a8f98;
		width: 32px;
		height: 32px;
	}

	.ftb-mobile-drawer__close svg {
		display: block;
		width: 100%;
		height: 100%;
	}

	.ftb-mobile-drawer__empty {
		margin: 0;
		padding: 24px 20px;
		color: #8a8f98;
	}

	.ftb-mobile-drawer__list {
		list-style: none;
		margin: 0;
		padding: 4px 0 12px;
	}

	.ftb-mobile-drawer__group {
		margin: 0;
		border-bottom: 1px solid #f2f3f5;
	}

	.ftb-mobile-drawer__parent {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		margin: 0;
		padding: 14px 20px;
		border: 0;
		background: none;
		cursor: pointer;
		text-align: left;
		text-decoration: none;
		font-size: 15px;
		font-weight: 600;
		color: #1f2430;
		-webkit-tap-highlight-color: transparent;
	}

	.ftb-mobile-drawer__parent:hover,
	.ftb-mobile-drawer__parent:focus {
		color: #4c1d95;
		text-decoration: none;
	}

	.ftb-mobile-drawer__chevron {
		display: block;
		width: 18px;
		height: 18px;
		color: #8a8f98;
		transition: transform 0.2s ease;
	}

	.ftb-mobile-drawer__chevron svg {
		display: block;
		width: 100%;
		height: 100%;
	}

	.ftb-mobile-drawer__parent[aria-expanded="true"] {
		color: #4c1d95;
	}

	.ftb-mobile-drawer__parent[aria-expanded="true"] .ftb-mobile-drawer__chevron {
		transform: rotate(180deg);
	}

	.ftb-mobile-drawer__children {
		list-style: none;
		margin: 0;
		padding: 0 0 8px;
	}

	.ftb-mobile-drawer__children[hidden] {
		display: none;
	}

	.ftb-mobile-drawer__children li {
		margin: 0;
	}

	.ftb-mobile-drawer__children a {
		display: block;
		padding: 10px 20px 10px 32px;
		font-size: 14px;
		color: #565d6a;
		text-decoration: none;
	}

	.ftb-mobile-drawer__children a:hover,
	.ftb-mobile-drawer__children a:focus {
		color: #4c1d95;
		text-decoration: none;
	}

	.ftb-mobile-drawer__view-all {
		font-weight: 600;
	}
}
