.mobile-bottom-menu {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 75px;
	display: flex;
	justify-content: space-around;
	gap: 30px;
	align-items: flex-end;
	z-index: 9999;
}

/* SVG nền */
.menu-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	top: -24%;
	left: -1%;
}

.menu-bg svg {
	width: 100%;
	height: 100%;
}

/* item */
.custom-menu-item {
	position: relative;
	z-index: 1;
	text-align: center;
	font-size: 11px;
	color: #333;
}

.custom-menu-item img {
	width: 30px;
	height: 30px;
	display: block;
	margin: 0 auto 3px;
}

/* nút gọi nổi giữa */
#azt-contact-footer > a {
	position: relative;
	display: block;
	width: 25%;
	text-align: center;
	padding: 11px 0 0px 0;
	color: #313131;
}

#azt-contact-footer span {
	display: block;
}

.azt-contact-footer-btn-center-icon {
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	background-image: linear-gradient(92.83deg, #f90000 0, #950099 100%);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	top: -20%;
	text-align: center;
	box-shadow: rgb(0 0 0 / 15%) 0 -3px 10px 0px;
	border: 2px solid var(--color-white);
}

.phone-vr-circle-fill-footer {
	width: 50px;
	height: 50px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	box-shadow: 0 0 0 0 var(--color-main);
	border: 2px solid transparent;
	transition: all .5s;
	animation: zoom 1.3s infinite;
}

@keyframes zoom {
	0% {

	}

	70% {
		box-shadow: 0 0 0 15px transparent
	}

	100% {
		box-shadow: 0 0 0 0 transparent
	}
}

#azt-contact-footer > a img {
	height: 30px;
	width: 30px;
}

.azt-contact-footer-btn-center-icon img {
	max-width: 20px;
	height: auto !important;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

#azt-contact-footer-btn-center .azt-contact-footer-btn-label {
	position: absolute;
	left: 50%;
	bottom: 5%;
	transform: translateX(-50%);
}

.azt-contact-footer-btn-label {
	padding: 0px 2px 0 2px;
	font-size: 11px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	font-weight: bold;
}

#azt-contact-footer-btn-center .azt-contact-footer-btn-label > span {
	padding: 0px 8px;
	background-image: linear-gradient(92.83deg, #0E68C8 0, #02A4A5 100%);
	border-radius: 30px;
	color: var(--color-white);
	display: inline-block;
}

.abm-mobile-bottom-menu {
	display: flex;
	justify-content: space-around;
	align-items: center;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: var(--color-white);
	border-top: 1px solid #ccc;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
	z-index: 9999;
}

.menu-text {
	display: block;
}

/* Hộp danh mục full màn hình */
#abm-danhmuc-panel {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 92%;
	background: var(--color-white);
	transform: translateY(100%);
	transition: transform 0.3s ease;
	overflow-y: auto;
	z-index: 9998;
	padding: 20px 0;
}

#abm-danhmuc-panel {
	max-height: 95vh;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

#abm-danhmuc-panel.active {
	display: block;
	transform: translateY(0);
}

.abm-danhmuc-item {
	position: relative;
	color: var(--color-main);
	font-size: 14px;
	font-weight: bold;
	border-bottom: 1px solid #ddd;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}

.abm-danhmuc-item .arrow-icon {
	font-size: 14px;
	color: var(--color-chinh);
	display: none;
	transition: transform 0.3s ease;
	display: inline-block;
}

.abm-danhmuc-item .arrow-icon.rotated {
	transform: rotate(90deg);
}

.abm-submenu a {
	display: block;
	padding: 10px 0;
	border-bottom: 1px solid #eee;
	font-weight: normal;
	color: var(--color-main);
	text-decoration: none;
}

.abm-submenu a:hover, .abm-danhmuc-item a:hover {
	color: var(--color-main);
	font-weight: 600;
}

/* SUBMENU */
.abm-submenu {
	display: none;
	width: 100%;
}

.abm-submenu.active {
	display: block;
}

.abm-submenu div {
	padding: 10px 0;
	border-bottom: 1px solid #eee;
	font-weight: normal;
}
/* Ẩn tất cả các item danh mục mặc định */
.abm-danhmuc-item .arrow-icon {
	display: none !important;
}

/* Chỉ hiển thị những item nào có chứa thẻ div .abm-submenu bên trong */
.abm-danhmuc-item:has(.abm-submenu) {
	display: flex !important;
}

/* Hiển thị icon mũi tên (vì item này chắc chắn có menu con mới hiện) */
.abm-danhmuc-item:has(.abm-submenu) .arrow-icon {
	display: inline-block !important;
}
.abm-submenu.active {
	padding: 10px;	
}

/* CSS đảm bảo menu hiển thị đẹp và click mượt mà */
.abm-danhmuc-item a {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: var(--color-main);
    padding: 8px 15px;
    box-sizing: border-box;
}

.abm-submenu a {
    display: flex;
	justify-content: space-between;
    text-decoration: none;
    color: var(--color-black);
    border-bottom: 1px dashed #ddd;
}

.abm-submenu a:last-child {
    border-bottom: none;
}

.arrow-icon-btn {
    padding: 5px 10px;
    cursor: pointer;
}
/* ẩn PC */
@media (min-width: 768px) {
	.mobile-bottom-menu {
		display: none;
	}
}