/* PUB-ADD: Mobile-only bottom fixed menu centering and sizing */

/* 기본 하단 메뉴바 스타일 */
.fixed-bottom-menu {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	background-color: #ff6b35;
	min-height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.fixed-bottom-menu .footer-content {
	width: 100%;
	max-width: 1200px;
	padding: 0 20px;
}

.fixed-bottom-menu .footer-menu-items {
	display: flex;
	align-items: center;
	justify-content: space-around;
	width: 100%;
}

.fixed-bottom-menu .menu-item {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 12px 20px;
	font-size: 16px;
	font-weight: 600;
	color: #ffffff;
	text-decoration: none;
	text-align: center;
	line-height: 1.3;
	border-right: 1px solid rgba(255, 255, 255, 0.3);
	transition: all 0.3s ease;
	flex: 1;
}

.fixed-bottom-menu .menu-item:last-child {
	border-right: none;
}

.fixed-bottom-menu .menu-item:hover {
	background-color: rgba(255, 255, 255, 0.1);
	color: #ffffff;
}

/* 모바일 반응형 */
@media screen and (max-width: 768px) {
	.fixed-bottom-menu {
		min-height: 55px;
	}
	
	.fixed-bottom-menu .menu-item {
		min-height: 45px;
		padding: 10px 15px;
		font-size: 15px;
	}
}

@media screen and (max-width: 480px) {
	.fixed-bottom-menu {
		min-height: 50px;
	}
	
	.fixed-bottom-menu .menu-item {
		min-height: 40px;
		padding: 8px 12px;
		font-size: 14px;
	}
}


