/* Giao diện cơ bản cho drawer và overlay giống như trước */

.pt-menu-drawer {

    position: fixed;

    top: 0;

    left: 0;

width: 100%;

    height: 100vh;

    background: #fff;

    z-index: 99999;

    transform: translateX(-100%);

    transition: transform 0.3s ease-in-out;

    display: flex;

    flex-direction: column;

    box-shadow: 2px 0 10px rgba(0,0,0,0.1);

    overflow: hidden; /* Quan trọng để chặn scroll ngang */

}



.pt-menu-drawer.active {

    transform: translateX(0);

}



.pt-menu-overlay {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background: rgba(0, 0, 0, 0.4);

    z-index: 99998;

    display: none;

}



.pt-menu-overlay.active {

    display: block;

}

.sub-menu{
	display: none;
}

.pt-drawer-header {

    display: flex;

    justify-content: flex-start;

    padding: 15px;

}



.pt-drawer-close {

    font-size: 28px;

    cursor: pointer;

    line-height: 1;

}



/* Cấu trúc cho Multi-level panels */

.pt-menu-panels {

    position: relative;

    /*flex: 1;*/

    overflow: hidden;

    width: 100%;

}



.pt-menu-panel {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background: #fff;

    transform: translateX(100%); /* Panel phụ ẩn bên phải */

    transition: transform 0.3s ease-in-out;

    overflow-y: auto; /* Scroll dọc trong mỗi panel */

}



.pt-menu-panel.pt-active {

    transform: translateX(0); /* Panel chính hiện ra */

    position: relative; /* Giúp panel chính chiếm không gian */

}



.pt-menu-panel.pt-moving-left {

    transform: translateX(-100%); /* Panel chính trượt sang trái khi panel phụ hiện */

}



/* Kiểu dáng cho danh sách Menu */

.pt-mobile-nav {

    list-style: none;

    padding: 0;

    margin: 0;

}



.pt-mobile-nav li {

    border-bottom: 1px solid #ddd;

}



.pt-mobile-nav li a {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 10px 20px;

    color: #333e48;

    text-decoration: none;

    font-size: 14px;
	font-family: inter;
	font-weight:400;

}



/* Nút "Quay lại" cho menu con */

.pt-back-button {

    display: flex;

    align-items: center;

    padding: 15px 20px;

    background: #f9f9f9;

    border-bottom: 1px solid #eee;

    color: #333;

    font-size: 15px;

    cursor: pointer;

}



.pt-back-button svg {

    margin-right: 10px;

    width: 12px;

    height: 12px;

}



/* Mũi tên trỏ sang phải cho các mục có menu con */

.pt-mobile-nav li.menu-item-has-children > a::after {

    content: '';

    display: inline-block;

    width: 8px;

    height: 8px;

    border-right: 2px solid currentColor;

    border-bottom: 2px solid currentColor;

    transform: rotate(-45deg);

    margin-left: 10px;

    color: #888;

}



/* Phần thông tin liên hệ phía dưới */

.pt-contact-info {

    padding: 25px 20px;

    border-top: 2px solid #f4f4f4;

    background-color: #fff;

}

.pt-contact-info {
    padding: 20px;
    border-top: 1px solid #eee;
    background: #fff;
}

.pt-contact-title {
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
}

.pt-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.pt-contact-item .pt-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    width: 20px;
}

.pt-contact-item a {
    text-decoration: none;
    color: #444;
    font-size: 15px;
    transition: color 0.3s;
}

.pt-contact-item a:hover {
    color: #e31b23; /* Màu đỏ khi hover */
}