/* * CSS cho Header có hiệu ứng icon và text nhỏ gọn
 * Đã sử dụng tiền tố glt-slide- để tránh xung đột
 */

/* Import Font Awesome */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css');

/* Giả định sử dụng font Poppins hoặc tương tự */
:root {
    /* Điều chỉnh lại màu sắc theo hình ảnh mới */
    --glt-primary-color: #f77f37;
    /* Màu cam nổi bật (cam tươi) */
    --glt-secondary-color: #ffffff;
    /* Màu chữ thường đã đổi thành TRẮNG để nổi bật trên nền Gradient */
    --glt-bg-light: #fff;
    /* Nền Header cũ */
    --glt-text-hover: #1a1a1a;
    /* Màu chữ khi hover/active (Đen) */
    --glt-transition-speed: 0.3s;
    /* Các màu icon theo hình ảnh */
    --glt-color-red: #e74c3c;
    --glt-color-purple: #9b59b6;
    --glt-color-blue: #3498db;
    --glt-color-pink: #ff69b4;
    --glt-color-yellow: #f1c40f;

    /* MÀU GRADIENT MỚI TỪ HÌNH ẢNH (RGB) */
    --glt-header-gradient: linear-gradient(90deg, rgb(180, 255, 100) 0%, rgb(50, 200, 200) 100%);
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    padding-top: 50px;
}

/* === 1. Header Chính - ÁP DỤNG GRADIENT MỚI === */
.glt-slide-header {
    /* Sử dụng gradient mới làm background */
    background: var(--glt-header-gradient);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    /* Xóa shadow hoặc giảm bớt vì nền đã đậm */
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.glt-slide-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 25px;
    height: 50px;
    display: flex;
    /* Đảm bảo logo và menu cách xa nhau */
    justify-content: space-between;
    align-items: center;
}

/* === 2. Logo/Thương hiệu - Điều chỉnh màu chữ Logo === */
.glt-logo-brand {
    font-size: 24px;
    font-weight: 700;
    /* Đổi màu logo thành TRẮNG để nổi bật trên gradient */
    color: var(--glt-secondary-color);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.glt-logo-brand img {
    height: 35px;
    /* Kích thước logo */
}

/* === 3. Menu và Nút (Wrapper) === */
.glt-slide-links-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    height: 100%;
    position: relative;
}

/* === 4. Container Menu (Liên kết) === */
#glt-slide-nav-links-container {
    display: flex;
    align-items: center;
    gap: 0;
    height: 100%;
    position: relative;
    justify-content: center;
}

/* === 5. Các mục Menu (Liên kết) - ĐÃ ĐỔI MÀU CHỮ THƯỜNG SANG TRẮNG === */
.glt-slide-nav-item {
    text-decoration: none;
    color: var(--glt-secondary-color);
    /* Màu chữ: TRẮNG */
    font-size: 14px;
    font-weight: 500;
    transition: all var(--glt-transition-speed);
    position: relative;
    z-index: 2;
    height: 70%;
    display: flex;
    align-items: center;

    padding: 5px 15px;

    display: inline-flex;
    justify-content: center;
    gap: 5px;
    white-space: nowrap;
    margin: 0 5px;
    border-radius: 10px;
}

/* Kiểu dáng cho icon - ĐÃ ĐỔI MÀU ICON THƯỜNG SANG TRẮNG/NHẠT */
.glt-slide-nav-item i {
    font-size: 16px;
    line-height: 1;
    /* Đổi màu icon mặc định thành trắng nhạt */
    color: rgba(255, 255, 255, 0.8) !important;
    transition: color var(--glt-transition-speed);
}

/* Định kiểu cho mục đang ACTIVE (giống hình bầu dục cam) */
.glt-slide-nav-item.active {
    color: var(--glt-text-hover);
    /* Chữ màu ĐEN khi active */
    background-color: var(--glt-primary-color);
    /* Nền cam nổi bật */
}

/* === HIỆU ỨNG HOVER === */
.glt-slide-nav-item:hover {
    color: var(--glt-text-hover);
    /* Chữ màu ĐEN khi hover */
    background-color: var(--glt-primary-color);
    /* Nền cam khi hover */
    cursor: pointer;
}

/* Đảm bảo icon có màu ĐEN khi mục active HOẶC hover */
.glt-slide-nav-item.active i,
.glt-slide-nav-item:hover i {
    color: var(--glt-text-hover) !important;
    /* Icon màu đen khi hover/active */
}

/* XÓA PHẦN GÁN MÀU ICON RIÊNG VÌ GIỜ NỀN ĐÃ LÀ GRADIENT (MÀU RIÊNG KHÔNG CÒN PHÙ HỢP) */


/* === 6. Nút Cửa hàng (Tách biệt) - Điều chỉnh màu chữ thành đen === */
.glt-slide-shop-button {
    background: var(--glt-bg-light);
    /* Đổi nút cửa hàng thành màu TRẮNG/SÁNG để nổi bật */
    color: var(--glt-text-hover);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 8px;
    /* Giảm độ đổ bóng để phù hợp với nền sáng */
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: background-color var(--glt-transition-speed);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 20px;
}

.glt-slide-shop-button:hover {
    filter: brightness(0.9);
    /* Làm tối đi một chút khi hover */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* === 7. Menu Mobile (Cần điều chỉnh màu cho mobile) === */
@media (max-width: 800px) {

    /* Trên mobile, nền có thể phức tạp, hãy đặt nền menu là trắng để dễ đọc */
    .glt-slide-links-wrapper {
        flex-direction: column;
        align-items: flex-start;
        top: 80px;
        max-height: 0;
        padding: 0 25px;
        background-color: var(--glt-bg-light);
        /* Nền trắng trên mobile */
        box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
    }

    .glt-slide-links-wrapper.open {
        max-height: 500px;
    }

    #glt-slide-nav-links-container {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        padding: 15px 0;
        gap: 0;
    }

    .glt-slide-nav-item {
        padding: 10px 0;
        width: 100%;
        color: var(--glt-text-hover);
        /* Màu chữ đen trên nền trắng mobile */
        font-weight: 500;
        background-color: transparent !important;
        border-radius: 0;
        justify-content: flex-start;
        margin: 0;
        min-width: auto;
    }

    .glt-slide-nav-item i {
        /* Icon trên mobile về màu xanh lá cây đậm ban đầu */
        color: var(--glt-secondary-color) !important;
    }

    .glt-slide-nav-item.active,
    .glt-slide-nav-item:hover {
        /* Áp dụng style hover/active mobile */
        color: var(--glt-primary-color);
        background-color: transparent !important;
        font-weight: 600;
    }

    .glt-slide-nav-item.active i,
    .glt-slide-nav-item:hover i {
        /* Icon màu cam khi active/hover trên mobile */
        color: var(--glt-primary-color) !important;
    }

    .glt-slide-shop-button {
        margin: 15px 0 20px 0;
        width: 100%;
        justify-content: center;
        /* Chuyển lại màu cam/gradient cho nút Cửa hàng trên mobile */
        background: linear-gradient(180deg, #ff9500, var(--glt-primary-color));
        color: var(--glt-bg-light);
    }
}



/* --- 7. Charity CTA --- */
.charity-cta-section {
    padding: 50px 0;
    background-color: #f0fff0;
    /* Nền xanh nhạt cho phần thiện nguyện */
}

.charity-cta-content {
    display: flex;
    gap: 40px;
}

.charity-cta-text {
    flex: 2;
}

.charity-cta-text h2 {
    font-size: 2.5em;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.charity-cta-text .main-title {
    color: var(--primary-color);
}

.charity-cta-text .sub-title {
    color: var(--accent-color);
}

.charity-cta-text p {
    font-size: 0.95em;
}

.charity-images {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.charity-images img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.charity-features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 0.9em;
}

.feature-item i {
    font-size: 1.8em;
    color: var(--primary-color);
    min-width: 30px;
    text-align: center;
}

.feature-item h4 {
    margin-top: 0;
    margin-bottom: 5px;
    font-weight: bold;
    color: var(--text-dark);
}

/* --- 8. Footer --- */
.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 30px 0;
    text-align: center;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .tour-detail-layout {
        flex-direction: column;
    }

    .tour-sidebar {
        position: static;
        width: 100%;
    }

    .itinerary-grid {
        grid-template-columns: 1fr;
    }

    .accordion-grid {
        flex-direction: column;
    }

    .tour-grid-featured,
    .tour-grid-other {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid-laothan {
        grid-template-columns: repeat(2, 1fr);
    }

    .charity-cta-content {
        flex-direction: column;
    }

    .charity-features-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .menu-icon {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.5em;
    }

    .tour-grid-featured,
    .tour-grid-other {
        grid-template-columns: 1fr;
    }
}

/* ... Các biến và style chung không đổi ... */

/* --- 6. Featured Tours (Cập nhật cho Scroller) --- */
.featured-tours-section {
    padding: 50px 0;
    background-color: var(--background-light);
    text-align: center;
}

.featured-title {
    font-size: 1.8em;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 30px;
    /* Tăng khoảng cách dưới tiêu đề */
}

/* CONTAINER CHẠY NGANG */
.tour-scroller-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    /* Dùng Flexbox để căn chỉnh nút và nội dung */
    align-items: center;
}

.tour-scroller-content {
    display: flex;
    /* Quan trọng: Để các tour-card nằm ngang */
    overflow-x: auto;
    /* Cho phép cuộn ngang */
    scroll-snap-type: x mandatory;
    /* Giúp cuộn đến từng mục */
    gap: 20px;
    padding: 10px 0;
    /* Padding để tránh card bị dính vào viền */
    -ms-overflow-style: none;
    /* Hide scrollbar IE and Edge */
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
}

/* Ẩn thanh cuộn ngang (Scrollbar) cho Chrome, Safari */
.tour-scroller-content::-webkit-scrollbar {
    display: none;
}

.tour-card {
    /* Quan trọng: Card có độ rộng cố định và bắt buộc cuộn */
    flex: 0 0 250px;
    /* Chiều rộng cố định cho mỗi card */
    scroll-snap-align: start;
    /* Bắt buộc cuộn đến đầu card */

    border-radius: 8px;
    overflow: hidden;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    border: 2px solid transparent;
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

/* Nút điều hướng (Arrows) */
.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: background-color 0.2s;
    color: var(--primary-color);
}

.scroll-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

.scroll-btn.prev {
    left: -20px;
    /* Đặt ra ngoài 1 chút so với container */
}

.scroll-btn.next {
    right: -20px;
}

/* Đảm bảo nội dung card vẫn đúng */
.tour-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.tour-price {
    font-size: 1.2em;
    font-weight: bold;
    color: var(--red-accent);
}

/* Media Query cho Responsive */
@media (max-width: 1024px) {

    /* Ẩn nút điều hướng trên thiết bị nhỏ để dùng tính năng cuộn bằng tay */
    .scroll-btn {
        display: none;
    }

    .tour-scroller-wrapper {
        padding: 0 10px;
    }

    /* Cho phép cuộn ngang trên mobile */
    .tour-scroller-content {
        overflow-x: scroll;
        scroll-snap-align: start;
        margin: 0 -10px;
        /* Kéo ra ngoài để cuộn full màn hình */
        padding: 0 10px;
    }

    .tour-card {
        flex: 0 0 280px;
        /* Chiều rộng card lớn hơn trên mobile */
    }
}

/* Các biến màu sắc cần có trong :root hoặc định nghĩa lại */
:root {
    --primary-color: #f79646;
    /* Màu cam chính */
    --secondary-color: #38761d;
    /* Màu xanh lá cho tiêu đề và icon */
    --red-accent: #e06666;
    /* Màu đỏ cho giá và tag */
    --background-charity: #f0fff0;
    /* Màu nền phần thiện nguyện (xanh lá rất nhạt) */
    --text-color: #333;
}

/* Định nghĩa container cơ bản nếu chưa có */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* --- Section chính --- */
.charity-cta-section {
    padding: 60px 0;
    background-color: var(--background-charity);
    /* Nền xanh lá nhạt */
}

/* CĂN CHỈNH: Khối chữ và khối ảnh trên cùng một hàng (50% - 50%) */
.charity-cta-content {
    display: flex;
    gap: 40px;
    align-items: center;
    /* Căn giữa theo chiều dọc */
}

/* --- Khu vực Chữ (Bên trái): Chiếm 50% --- */
.charity-cta-text {
    flex: 1;
    /* Chiếm 1 phần (khoảng 50%) */
    padding-right: 20px;
}

.charity-title {
    font-family: 'Poppins', sans-serif;
    /* Sử dụng font nổi bật */
    font-size: 2.2em;
    font-weight: 700;
    line-height: 1.1;
    text-align: left;
    /* Căn lề trái cho khối chữ */
    margin-bottom: 30px;
    color: var(--secondary-color);
    /* KẾT HỢP màu xanh lá */
}

.charity-title span {
    color: var(--primary-color);
    /* TREKKING & THIỆN NGUYỆN màu cam */
    font-size: 0.8em;
    display: block;
    margin-top: 5px;
}

.charity-cta-text p {
    font-size: 1em;
    margin-bottom: 15px;
    color: var(--text-color);
    line-height: 1.6;
}

/* Các định dạng chữ nổi bật */
.highlight-text-orange {
    color: var(--primary-color);
    font-weight: 600;
}

.highlight-price {
    color: var(--red-accent);
    /* Màu đỏ nổi bật cho tiền */
    font-weight: 700;
}

.highlight-bold {
    font-weight: 700;
}

.small-note {
    font-size: 0.85em;
    color: var(--secondary-color);
    margin-top: 20px;
}

/* --- Khu vực Hình ảnh (Bên phải): Chiếm 50% --- */
.charity-images-grid {
    flex: 1;
    /* Chiếm 1 phần (khoảng 50%) */
    display: flex;
    /* Đặt hai ảnh cạnh nhau */
    gap: 15px;
    /* Điều chỉnh margin-left để cân bằng với padding-right của khối chữ */
    padding-left: 20px;
}

.charity-images-grid img {
    flex: 1;
    /* Mỗi ảnh chiếm đều 50% khối ảnh */
    width: 60%;
    height: auto;
    aspect-ratio: 4 / 3;
    /* Giữ tỷ lệ khung hình */
    object-fit: cover;
    border-radius: 8px;
    /* Bo góc nhẹ */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* --- Responsive cho di động --- */
@media (max-width: 992px) {

    /* Chuyển sang 1 cột trên màn hình nhỏ/tablet */
    .charity-cta-content {
        flex-direction: column;
        gap: 30px;
    }

    .charity-cta-text {
        padding-right: 0;
        /* Chỉnh lại tiêu đề căn giữa trên mobile cho đẹp hơn */
        text-align: center;
    }

    .charity-title {
        text-align: center;
    }

    .charity-images-grid {
        max-width: 100%;
        width: 100%;
        padding-left: 0;
        /* Giữ 2 cột ảnh cạnh nhau trên di động */
        display: flex;
        /* Đảm bảo vẫn là flex */
    }

    .charity-images-grid img {
        flex: 1;
        width: 100%;
    }
}

/* HEADER */
/* * CSS cho Header có hiệu ứng thanh trượt (Active Indicator)
 * Đã sử dụng tiền tố glt-slide- để tránh xung đột
 */

/* === Định nghĩa Font (Giả định đã có) === */
/* Import Font Awesome (để có icon giỏ hàng) */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');

/* Giả định sử dụng font Poppins hoặc tương tự */
:root {
    --glt-primary-color: #f7a04f;
    /* Màu cam nổi bật */
    --glt-secondary-color: #333;
    /* Màu chữ */
    --glt-bg-light: #fff;
    /* Nền Header */
    --glt-text-hover: #1a1a1a;
    --glt-transition-speed: 0.3s;
}

:root {
    --primary-orange: #e67e22;
    --text-main: #333;
    --text-sub: #777;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.info-section {
    padding: 60px 20px;
    background-color: #fcfcfc;
    font-family: 'Inter', sans-serif;
}

.info-container {
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 40px;
    box-shadow: var(--shadow);
}

.main-title {
    text-align: center;
    color: var(--primary-orange);
    font-size: 24px;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.info-card {
    display: flex;
    align-items: center;
    padding: 25px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.info-card.highlight {
    grid-column: span 2;
    background: #f9fff9;
}

.info-card.border-orange {
    border: 1px solid var(--primary-orange);
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 22px;
    color: white;
    flex-shrink: 0;
}

/* Colors */
.green {
    background: #5dbb63;
}

.yellow {
    background: #f39c12;
}

.teal {
    background: #008080;
}

.red {
    background: #ff6b6b;
}

.blue {
    background: #3498db;
}

.navy {
    background: #34495e;
}

.info-text h3 {
    margin: 0;
    font-size: 17px;
    color: var(--text-main);
}

.info-text p {
    margin: 5px 0 0;
    font-size: 14px;
    color: var(--text-sub);
}

/* Modal CSS */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: 30px;
    width: 90%;
    max-width: 550px;
    position: relative;
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-btn {
    position: absolute;
    right: 25px;
    top: 20px;
    font-size: 30px;
    cursor: pointer;
    color: #ccc;
}

.close-btn:hover {
    color: var(--primary-orange);
}

@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
    }

    .info-card.highlight {
        grid-column: span 1;
    }
}

:root {
    --green-charity: #4CAF50;
    --orange-charity: #FF7043;
    --radius-large: 25px;
    /* Bo góc lớn đúng ý bạn */
    --shadow-card: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.charity-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 50px auto;
    align-items: center;
    padding: 20px;
}

/* Khối nội dung bên trái */
.charity-info-card {
    background: #fff;
    padding: 40px;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-card);
}

.charity-title {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.green-text {
    color: var(--green-charity);
}

.orange-text {
    color: var(--orange-charity);
}

.donation-box {
    margin-top: 20px;
    padding: 15px;
    border: 2px dashed var(--orange-charity);
    border-radius: 15px;
    background: #fff9f7;
    font-weight: bold;
}

/* Lưới 4 ảnh bên phải */
.charity-grid-4 {
    display: block;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.charity-img-item {
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-card);
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Hiệu ứng so le (Ảnh 2 và 3 lùi vào một chút) */
.charity-img-item:nth-child(even) {
    transform: translateY(175px);
}

.charity-img-item:nth-child(odd) {
    transform: translateY(-205px);
}

.charity-img-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.charity-img-item:hover {
    transform: scale(1.05) translateY(0);
    z-index: 10;
}

.charity-img-item:hover img {
    transform: scale(1.1);
}

/* Popup Ảnh (Lightbox) */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.modal-content {
    max-width: 80%;
    max-height: 80%;
    border-radius: 15px;
}

.close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
}

/* --- RESPONSIVE CHO MOBILE --- */
@media (max-width: 992px) {

    /* Hiển thị nút Toggle */
    #glt-slide-menu-toggle {
        display: block !important;
        background: none;
        border: none;
        color: var(--glt-orange, #FF7043);
        font-size: 24px;
        cursor: pointer;
        z-index: 1001;
    }

    /* Biến menu thành một lớp phủ (Overlay) hoặc Menu dọc */
    .glt-slide-links-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        /* Giấu menu sang bên phải */
        width: 70%;
        height: 100vh;
        background: #fff;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: 0.4s ease-in-out;
        z-index: 1000;
        display: flex;
        flex-direction: column;
        padding: 80px 20px;
    }

    /* Khi menu mở */
    .glt-slide-links-wrapper.active {
        right: 0;
    }

    .glt-slide-links-container {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .glt-slide-nav-item {
        width: 100%;
        padding: 15px;
        border-bottom: 1px solid #f0f0f0;
        font-size: 16px;
    }

    /* Thanh trượt màu cam trên Mobile sẽ nằm dọc bên trái */
    .glt-active-indicator {
        left: 0 !important;
        width: 4px !important;
        height: 0;
        transition: 0.3s;
    }
}