/**
 * Mobil alt navigasyon — ekranın altına sabit, 5 öğe yan yana
 * Sadece 1200px ve altı (site mobil kırılımı)
 */

.mobile-bottom-nav {
	display: none;
}

@media screen and (max-width: 1200px) {

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

	.mobile-bottom-nav {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		align-items: stretch;
		justify-content: space-between;
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 10050;
		width: 100%;
		min-height: 58px;
		margin: 0;
		padding: 6px 0 calc(6px + env(safe-area-inset-bottom, 0px));
		box-sizing: border-box;
		background: #ffffff;
		border-top: 1px solid #e2e8f0;
		box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.1);
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}

	.mobile-bottom-nav__item {
		flex: 1 1 20%;
		max-width: 20%;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 3px;
		min-width: 0;
		padding: 2px 4px;
		color: #64748b;
		text-decoration: none !important;
		-webkit-tap-highlight-color: transparent;
	}

	.mobile-bottom-nav__item:active {
		opacity: 0.75;
	}

	.mobile-bottom-nav__item.is-active {
		color: #0033a1;
	}

	.mobile-bottom-nav__item.is-active .mobile-bottom-nav__label {
		color: #0033a1;
		font-weight: 700;
	}

	.mobile-bottom-nav__icon {
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 26px;
		height: 26px;
		font-size: 20px;
		line-height: 1;
	}

	.mobile-bottom-nav__label {
		display: block;
		width: 100%;
		font-size: 10px;
		font-weight: 600;
		line-height: 1.15;
		text-align: center;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.mobile-bottom-nav__badge {
		position: absolute;
		top: -5px;
		right: -8px;
		min-width: 16px;
		height: 16px;
		padding: 0 4px;
		border-radius: 999px;
		background: #ff6000;
		color: #fff;
		font-size: 9px;
		font-weight: 700;
		line-height: 16px;
		text-align: center;
		border: 1.5px solid #fff;
	}

	.mobile-bottom-nav__item--whatsapp {
		color: #25d366;
	}

	.mobile-bottom-nav__item--whatsapp .mobile-bottom-nav__label {
		color: #25d366;
	}

	.offerDiv {
		display: none !important;
	}

	.cookies-box-wrapper {
		bottom: calc(58px + env(safe-area-inset-bottom, 0px));
		max-width: 100%;
	}

	.rMenu {
		padding-bottom: calc(58px + env(safe-area-inset-bottom, 0px));
	}
}
