/* ================================== */
/* == CSS HOÀN CHỈNH CHO MENU MOBILE == */
/* ================================== */

/* Nút Hamburger (giữ nguyên) */
.hamburger-button {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10001;
}
.hamburger-button span {
    width: 100%;
    height: 3px;
    background-color: #333;
    border-radius: 3px;
}

/* Lớp phủ nền (giữ nguyên) */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 10001;
}
.mobile-menu-overlay.open {
    display: block;
}

/* --- BẮT ĐẦU CSS MỚI, TINH CHỈNH --- */

/* Toàn bộ thanh sidebar */
.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -320px;
    width: 320px;
    max-width: 90%;
    height: 100%;
    background-color: #ffffff; /* Nền trắng */
    box-shadow: 2px 0 5px rgba(0,0,0,0.2);
    transition: left 0.3s ease-in-out;
    z-index: 10002;
    display: flex;
    flex-direction: column;
}
.mobile-sidebar.open {
    left: 0;
}

/* Phần header của sidebar (chỉ chứa nút đóng) */
.sidebar-header {
    display: flex;
    justify-content: flex-end; /* Đẩy nút đóng về bên phải */
    padding: 10px 15px;
    border-bottom: 1px solid #f0f0f0;
}
.close-button {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #888;
}

/* Phần nội dung chính của sidebar */
.sidebar-content {
    padding: 0;
    overflow-y: auto;
    flex-grow: 1;
}

/* Khối màu vàng cho mỗi section */
.mobile-menu-section {
    background-color: var(--primary-color); /* Màu vàng nhạt giống trong ảnh */
    border: 1px solid #fcebb6;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

/* Tiêu đề của mỗi khối (Find Deals by...) */
.mobile-menu-section .section-title {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: bold;
    font-size: 1rem;
    color: #000;
    margin: 0 0 15px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #000000;
}

/* Danh sách link 2 cột */
.mobile-menu-section .section-list {
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
    column-gap: 20px; /* Khoảng cách giữa 2 cột */
}
.mobile-menu-section .section-list li {
    margin-bottom: 15px;
    /* Tránh việc một mục menu bị ngắt giữa 2 cột */
    break-inside: avoid;
    page-break-inside: avoid;
}
.mobile-menu-section .section-list a {
    text-decoration: none;
    color: #333;
    font-size: 1rem;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
.mobile-menu-section .section-list a:hover {
    text-decoration: underline;
}
.welcome-panel-container.jsx-1314352901{
    right: 15px;
    top: 20px;
}
.jsx-1314352901.welcome-panel-bottom{
    padding: 13px 33px 8px;
}
#loginPopup{
    margin-bottom: 10px;
}
/* Link "View all..." */
.mobile-menu-section .view-all-link {
    display: inline-block;
    margin-top: 10px;
    font-weight: bold;
    text-decoration: underline;
    color: #333;
    font-size: 1rem;
}
/* CSS cho mỗi mục Accordion */
.accordion-item {
    border-bottom: 1px solid #e0e0e0;
}
.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    background: #fff;
}
.accordion-header .accordion-title {
    font-size: 1.1rem;
    font-weight: bold;
}
.accordion-header .accordion-icon {
    font-size: 1.8rem;
    font-weight: 300;
    color: #555;
    transition: transform 0.3s ease;
}

/* Khi một mục được mở, xoay icon '+' thành 'x' */
.accordion-item.active .accordion-header .accordion-icon {
    transform: rotate(45deg);
}

/* Nội dung bên trong accordion */
.accordion-content {
    display: none; /* Mặc định ẩn */
    padding: 0 20px 20px 20px;
    background: #f8f9fa; /* Nền xám nhạt cho nội dung con */
}

/* Tinh chỉnh lại các khối menu con bên trong */
.accordion-content .mobile-menu-section {
    margin-bottom: 20px;
}
.accordion-content .mobile-menu-section .section-title {
    font-weight: bold;
    font-size: 1rem;
    padding-bottom: 10px;
    border-bottom: 2px solid #000;
    margin: 0 0 15px 0;
}
.accordion-content .section-list {
    list-style: none;
    padding: 0;
    columns: 2;
    column-gap: 20px;
}
.accordion-content .section-list li {
    margin-bottom: 15px;
    font-weight: bold;
}
.accordion-content .section-list a {
    text-decoration: none;
    color: #000;
}
/* Hiển thị nút hamburger chỉ trên mobile */
@media (max-width: 992px) { /* Thay đổi breakpoint nếu cần */
    .hamburger-button {
        display: flex;
    }
    /* Bạn có thể ẩn menu desktop ở đây nếu cần */
    /* .desktop-navigation { display: none; } */
}
/*******************************************************************************/
.mobile-nav-container.jsx-3607817949 {
    position: relative;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 22px 18px;
}
.mobile-nav-header.jsx-3607817949 {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
}
.hamburger-button.jsx-3607817949 {
    display: flex;
    background: none;
    border: none;
}
button.jsx-3607817949 {
    position: relative;
    display: block;
    padding: 0px;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
}
.kcl-logo-wrapper.jsx-3607817949 {
    position: relative;
    left: 0;
}
.mobile-search-wrapper.jsx-3607817949 {
    display: flex;
    align-items: flex-end;
}
.search-icon-wrapper.jsx-3607817949{
    margin-right: 0;
    padding-bottom: 1px;
}
.anon-user-menu-container.jsx-3607817949 {
    position: relative;
}
.avatar-container.jsx-3469168683 {
    position: relative;
}
.mobile-nav-content.jsx-3607817949 {
    position: absolute;
    top: 84px;
    left: 0px;
    z-index: 99999;
    width: 100%;
    height: 100vh;
    padding-bottom: 150px;
    overflow-y: scroll;
    background: rgb(255, 255, 255);
    transform: translate3d(-100%, 0px, 0px);
    transition: transform 0.4s ease-in-out;
}
.top-shadow.jsx-1187189031 {
    display: block;
    width: 100%;
    height: 13px;
    background: rgb(255, 214, 13);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 13px 0px inset;
}
.mobile-nav-secondary-contents.jsx-1187189031 {
    margin: 0px;
    padding: 0px;
    overflow-y: auto;
    list-style: none;
}
.mobile-nav-secondary-contents.jsx-1187189031 li.jsx-1187189031 {
    margin: 0px;
    padding: 0px;
    list-style: none;
}
.mobile-nav-secondary-section.jsx-1822194753 {
    width: 100%;
}
.expander-main-section-title-container.jsx-2141018020 {
    width: 100%;
    margin: 0px;
    list-style: none;
    mix-blend-mode: multiply;
}
.flex-wrapper.jsx-2141018020 {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding: 23px 15px 19px 16px;
}
.visually-hidden.jsx-2141018020 {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0px;
    overflow: hidden;
    border: 0px;
    clip: rect(0px, 0px, 0px, 0px);
}

.first-sub-expanded-content.jsx-2141018020 {
    padding: 0px 15px 10px 16px;
}
.sub-expander-entry.jsx-2704980486 {
    padding: 20px 33px;
    border-radius: 20px;
}
.faq-entry-question-wrapper.jsx-2704980486 {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
}
.expanded-underline.jsx-2704980486 {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: 2px;
    margin: 16px 0px 26px;
    background: rgb(0, 0, 0);
}
ul.mobile-inner-list-wrapper.jsx-859702321 {
    display: flex;
    flex-flow: column wrap;
    margin: 0px;
    padding: 0px 0px 10px;
}
.mobile-inner-list-item-wrapper.jsx-859702321 {
    padding-bottom: 16px;
    list-style: none;
}
.mobile-view-all-button-wrapper.jsx-859702321 {
    display: inline-block;
}
.underline-cta-link.jsx-1972648586 {
    color: rgb(110, 93, 18);
}
.underline-link-container.jsx-1972648586::before {
    position: absolute;
    bottom: -3px;
    left: 0px;
    z-index: 0;
    width: 100%;
    height: 3px;
    background-color: rgb(110, 93, 18);
    transition: 0.3s ease-in-out;
    content: "";
}
.underline-link-text.jsx-1972648586 {
    position: relative;
    z-index: 1;
    letter-spacing: 1px;
}
.chevron-wrapper.jsx-1972648586 {
    position: relative;
    top: 3px;
    width: 16px;
    height: 16px;
    padding-left: 3px;
    border-bottom: 3px solid transparent;
}
.divider.jsx-3310910122 {
    margin: 0px 15px;
    border-top: 2px solid rgb(0, 0, 0);
}
.popular-pages-list.jsx-1822194753 {
    padding: 0px 15px 36px 16px;
}
.popular-pages-container.jsx-281675655 {
    width: 100%;
}
.popular-pages-title-wrapper.jsx-281675655 {
    display: inline-block;
    padding-bottom: 20px;
}
.expanded-text-effect.jsx-3401536110 h5.jsx-3401536110 {
    margin: 0px;
    font-size: 1.125rem;
    font-family: KUniforma-90Black, sans-serif;
    line-height: 1.125rem;
}
.expanded-text-underline.jsx-3401536110 {
    display: block;
    width: 100%;
    height: 3px;
    margin-top: 8px;
    background: rgb(255, 214, 13);
    border-radius: 10px;
}
ul.jsx-281675655 {
    margin: 0px;
    padding: 0px;
}
.flex-wrapper.jsx-1395040305 {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
    width: 100%;
    margin: 0px;
    padding: 20px 8px 18px 0px;
    list-style: none;
    background: none;
    border-top: none;
    border-right: none;
    border-bottom: 2px solid rgb(0, 0, 0);
    border-left: none;
}
.screen-reader-only.jsx-3607817949 {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0px;
    overflow: hidden;
    white-space: nowrap;
    border: 0px;
    clip: rect(0px, 0px, 0px, 0px);
}
