
        :root {
            --bg-color: #ffffff;
            --text-color: #1a1a1a;
            --secondary-text: #666666;
            --accent-color: #f4f1ea;
            --border-color: #eeeeee;
            --c-gold: #b3941f;
        }

        body { font-family: 'Montserrat', sans-serif; margin:0; line-height: 1.6; color: #333; background-color: var(--bg-color); }
        
/* Chat button */
#chat-button {
    position: fixed;
    bottom: 20px;
    right: 20px;

    width: 60px;
    height: 60px;

    border-radius: 50%;

    background: #111;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    z-index: 9999;

    box-shadow:
        0 6px 20px rgba(0,0,0,.25);

    transition:
        background .25s ease,
        transform .25s ease,
        box-shadow .25s ease;

    animation: chatFloat 3s ease-in-out infinite;
}

#chat-button i {
    font-size: 24px;
    transition: transform .25s ease;
}

/* Hover desktop */
#chat-button:hover {
    background: linear-gradient(
        135deg,
        #b3941f
    );

    transform: translateY(-4px);

    box-shadow:
        0 12px 28px rgba(182,138,47,.35),
        0 4px 12px rgba(0,0,0,.15);
}

#chat-button:hover i {
    transform: scale(1.15);
}

/* Click desktop + mobile */
#chat-button:active {
    background: linear-gradient(
        135deg,
        #d6b36a,
        #b68a2f
    );

    transform: scale(0.95);
}


#installBtn {
    display: none;

    position: fixed;
    right: 90px;
    bottom: 20px;

    height: 52px;
    padding: 0 16px;

    border: none;
    border-radius: 999px;

    background: #10b981;
    color: #fff;

    font-size: 14px;
    font-weight: 600;

    cursor: pointer;

    align-items: center;
    justify-content: center;

    z-index: 9998;

    box-shadow: 0 4px 15px rgba(16,185,129,.25);

    transition: all .25s ease;
}

#installBtn:hover {
    transform: translateY(-2px);
}

#installBtn i {
    font-size: 22px;
}


        /* Reverse Bidding Styles */
        .reverse-bidding-container {
            display: flex;
            flex-direction: column;
            line-height: 1.1;
        }
        .reverse-bidding-title {
            color: #b3941f;
            font-weight: 800;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .reverse-bidding-sub {
            color: #888;
            font-size: 0.45rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.2px;
            white-space: nowrap;
        }
        
        /* Announcement Bar Styles */
        .announcement-bar {
            background-color: #f4f1ea !important;
            text-align: center;
            height: 32px;
            line-height: 32px;
            font-size: 13px;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 500;
            position: relative; 
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 10px !important;
            z-index: 2100;
        }

        .home-dropdown {
            position: absolute !important;
            left: 15px !important;
            top: 0 !important;
            height: 32px !important;
            display: flex !important;
            align-items: center !important;
            z-index: 2200 !important;
        }

        .home-icon-link {
            color: inherit !important;
            text-decoration: none !important;
            font-size: 13px !important;
            display: flex !important;
            align-items: center !important;
            height: 32px !important;
            font-weight: 700 !important;
            cursor: pointer !important;
            padding: 0 10px !important;
            margin: 0 !important;
        }

        .home-dropdown-content {
            display: none;
            position: absolute !important;
            top: 100% !important;
            left: 0 !important;
            background-color: #ffffff !important;
            min-width: 250px !important;
            box-shadow: 0px 10px 30px rgba(0,0,0,0.2) !important;
            z-index: 2500 !important;
            text-align: left !important;
            border: 1px solid #eeeeee !important;
            padding: 8px 0 !important;
        }

        .home-dropdown:hover .home-dropdown-content {
            display: block !important;
        }

        .home-dropdown-content a {
            color: #1a1a1a !important;
            padding: 12px 20px !important;
            text-decoration: none !important;
            display: flex !important;
            align-items: center !important;
            gap: 12px !important;
            font-size: 11px !important;
            text-transform: uppercase !important;
            letter-spacing: 1.5px !important;
            transition: background-color 0.2s ease, color 0.2s ease !important;
            font-weight: 600 !important;
        }

        .home-dropdown-content a i {
            width: 20px !important;
            text-align: center !important;
            color: #888 !important;
            font-size: 14px !important;
        }

        .home-dropdown-content a:hover {
            background-color: #f9f9f9 !important;
            color: #b3941f !important;
        }

        .home-text {
            font-size: 11px !important;
            letter-spacing: 1px !important;
            display: flex !important;
            align-items: center !important;
            text-transform: uppercase !important;
        }

        .home-text::after {
            content: "\f107" !important;
            font-family: "Font Awesome 6 Free" !important;
            font-weight: 900 !important;
            margin-left: 8px !important;
            font-size: 10px !important;
            opacity: 0.6 !important;
        }

        /* Services Dropdown Styles */
        .desktop-nav-only {
            display: flex !important;
            align-items: center;
            gap: 18px !important;
            flex-wrap: wrap;
        }
        .desktop-nav-only a {
            margin-left: 0 !important;
            padding: 10px 16px !important;
            border-radius: 10px !important;
            transition: background 0.2s ease, color 0.2s ease !important;
        }
        .desktop-nav-only a:hover,
        .desktop-nav-only a.active {
            background: rgba(179,148,31,0.08) !important;
            color: #b3941f !important;
        }
        .mobile-nav-top { display: none !important; }

        .services-dropdown {
            position: relative !important;
            display: inline-block !important;
        }

        .services-dropdown-toggle {
            color: #666 !important;
            text-decoration: none !important;
            font-size: 0.75rem !important;
            letter-spacing: 1px !important;
            text-transform: uppercase !important;
            font-weight: 500 !important;
            transition: color 0.3s !important;
            display: inline-flex !important;
            align-items: center !important;
            gap: 5px !important;
            padding: 5px 0 !important;
            cursor: pointer !important;
        }

        .services-dropdown-toggle::after {
            content: "\f107" !important;
            font-family: "Font Awesome 6 Free" !important;
            font-weight: 900 !important;
            font-size: 9px !important;
            margin-left: 3px !important;
            transition: transform 0.3s !important;
        }

        .services-dropdown-content {
            position: absolute !important;
            top: 100% !important;
            left: 0 !important;
            background-color: #ffffff !important;
            min-width: 200px !important;
            box-shadow: 0px 10px 30px rgba(0,0,0,0.2) !important;
            z-index: 2500 !important;
            text-align: left !important;
            border: 1px solid #eeeeee !important;
            padding: 8px 0 !important;
            margin-top: 5px !important;
            border-radius: 8px !important;
            opacity: 0 !important;
            visibility: hidden !important;
            transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease !important;
            transform: translateY(10px);
        }

        .services-dropdown:hover .services-dropdown-content {
            opacity: 1 !important;
            visibility: visible !important;
            transform: translateY(0);
        }

        .services-dropdown:hover .services-dropdown-toggle {
            color: #b3941f !important;
        }

        .services-dropdown:hover .services-dropdown-toggle::after {
            transform: rotate(180deg) !important;
        }

        .services-dropdown-content a {
            color: #1a1a1a !important;
            padding: 12px 20px !important;
            text-decoration: none !important;
            display: flex !important;
            align-items: center !important;
            gap: 12px !important;
            font-size: 0.75rem !important;
            text-transform: uppercase !important;
            letter-spacing: 1px !important;
            transition: background-color 0.2s ease, color 0.2s ease !important;
            font-weight: 500 !important;
        }

        .services-dropdown-content a:hover {
            background-color: #f9f9f9 !important;
            color: #b3941f !important;
        }

        #announcement-content {
            display: inline-block;
            transition: opacity 0.5s ease, transform 0.5s ease;
            vertical-align: middle;
        }

        .fade-out { opacity: 0; transform: translateY(-10px); }
        .fade-in { opacity: 1; transform: translateY(0); }

        header.site-header {
            background: #f5f7f9;
            padding: 15px 40px;
            display: flex;
            flex-direction: column;
            align-items: stretch;
            border-bottom: 1px solid #eee;
            position: sticky;
            top: 0;
            z-index: 2000;
        }
        .header-top-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            min-width: 0;
            flex-wrap: nowrap;
        }
        .logo { font-family: 'Playfair Display', serif; font-size: 0.95rem; font-weight: 700; letter-spacing: 2px; text-decoration: none; color: #1a1a1a; }
        header.site-header nav { display: flex; align-items: center; min-width: 0; }
        .nav-links.desktop-nav-only {
            display: flex !important;
            align-items: center;
            gap: 16px !important;
            flex-wrap: nowrap;
            overflow-x: auto;
            min-width: 0;
            margin-left: 0;
            padding-bottom: 2px;
        }
        .nav-links.desktop-nav-only::-webkit-scrollbar { display: none; }
        .nav-links.desktop-nav-only a {
            flex-shrink: 0;
            padding: 10px 14px;
            border-radius: 10px;
            white-space: nowrap;
            margin-left: 0 !important;
            transition: background 0.2s ease, color 0.2s ease !important;
        }
        .nav-links.desktop-nav-only a:hover,
        .nav-links.desktop-nav-only a.active {
            background: rgba(179,148,31,0.08) !important;
            color: #b3941f !important;
        }

        .mobile-label { display: inline-block; }
        header.site-header nav a:hover, header.site-header nav a.active { color: #b3941f; }
        
        

        /* Cart Sidebar Styles */
        .cart-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.4); z-index: 4000; visibility: hidden; opacity: 0; transition: opacity 0.3s ease, visibility 0.3s ease; }
        .cart-sidebar { position: fixed; top: 0; right: -400px; width: 100%; max-width: 400px; height: 100%; background: white; z-index: 4001; transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); display: flex; flex-direction: column; box-shadow: -5px 0 15px rgba(0,0,0,0.1); will-change: transform; }
        body.cart-open .cart-overlay { visibility: visible; opacity: 1; }
        body.cart-open .cart-sidebar { transform: translateX(-400px); }
        body.cart-open { overflow: hidden; }
        .cart-header { padding: 20px; border-bottom: 1px solid #eeeeee; display: flex; justify-content: space-between; align-items: center; }
        .cart-header h2 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; margin: 0; font-family: 'Montserrat', sans-serif; font-weight: 600; }
        .close-cart { cursor: pointer; font-size: 1.5rem; line-height: 1; }
        .free-shipping-note { background: #f4f1ea; padding: 12px; text-align: center; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
        .cart-items { flex: 1; padding: 20px; overflow-y: auto; }
        .cart-item { display: flex; gap: 15px; margin-bottom: 25px; padding-bottom: 25px; border-bottom: 1px solid #f9f9f9; position: relative; }
        .remove-item { position: absolute; top: 0; right: 0; font-size: 0.7rem; cursor: pointer; color: #999; text-decoration: underline; text-transform: uppercase; letter-spacing: 1px; }
        .cart-item-image { width: 70px; aspect-ratio: 3/4; background: #f4f4f4; }
        .cart-item-image img { width: 100%; height: 100%; object-fit: cover; }
        .cart-item-info { flex: 1; }
        .cart-item-title { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; font-weight: 600; }
        .cart-item-details { font-size: 0.7rem; color: #666; margin-bottom: 8px; }
        .qty-controls { display: flex; align-items: center; gap: 15px; margin-top: 10px; }
        .qty-btn { cursor: pointer; font-size: 1rem; color: #666; width: 25px; height: 25px; border: 1px solid #eee; display: flex; align-items: center; justify-content: center; }
        .cart-footer { padding: 20px; border-top: 1px solid #eeeeee; }
        .cart-total { display: flex; justify-content: space-between; margin-bottom: 20px; font-weight: 600; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; }
        .checkout-btn { width: 100%; padding: 18px; background: #1a1a1a; color: white; border: none; text-transform: uppercase; letter-spacing: 2px; font-weight: 600; cursor: pointer; transition: background 0.3s; }
        .checkout-btn:hover { background: #333; }
        .tax-note { display: block; text-align: center; font-size: 0.65rem; color: #999; margin-top: 10px; letter-spacing: 1px; text-transform: uppercase; font-weight: 500; }
        .paypal-info { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; margin-top: 20px; border-top: 1px solid #f4f4f4; padding-top: 15px; }
        .paypal-text { font-size: 0.75rem; letter-spacing: 1px; font-weight: 700; color: #1a1a1a; }
        .paypal-logo { width: 120px; height: auto; }

        .banner { height:500px; background:#ccc; display:flex; align-items:center; justify-content:center; font-size:30px; }
        .container { max-width: 1200px; margin: 0 auto; padding:40px 20px; }
        .grid { display:flex; gap:30px; flex-wrap: wrap; }
        .box { flex:1; min-width: 300px; background:#f9f9f9; padding:40px 25px; text-align:center; box-sizing: border-box; }
        
        /* Luxury Footer */
        footer { 
            background: #111; 
            color: #fff; 
            padding: 80px 0 40px; 
            margin-top: 0px; 
            font-size: 0.85rem;
            border-top: 1px solid #222;
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
            gap: 40px;
            padding: 0 20px;
            text-align: left;
        }
        .footer-section h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.1rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 25px;
            color: #b3941f;
        }
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #999;
            text-decoration: none;
            transition: all 0.3s;
            letter-spacing: 1px;
            font-weight: 400;
        }
        .footer-links a:hover {
            color: #b3941f;
            padding-left: 5px;
        }
        .footer-bottom {
            max-width: 1200px;
            margin: 60px auto 0;
            padding: 30px 20px 0;
            border-top: 1px solid #222;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #666;
            font-size: 0.75rem;
            letter-spacing: 2px;
            text-transform: uppercase;
        }
        .footer-social a {
            color: #666;
            margin-left: 20px;
            font-size: 1rem;
            transition: color 0.3s;
        }
        .footer-social a:hover {
            color: #b3941f;
        }
        .footer-badge {
            display: inline-block;
            border: 1px solid #333;
            padding: 8px 20px;
            border-radius: 30px;
            color: #999;
            text-decoration: none;
            font-size: 0.7rem;
            letter-spacing: 1.5px;
            transition: all 0.3s;
            margin-bottom: 10px;
        }
        .footer-badge:hover {
            border-color: #b3941f;
            color: #b3941f;
        }

        .footer-mobile-menu { display: none; }

        .mobile-side-menu-trigger,
        .mobile-side-menu-content,
        .mobile-side-menu-overlay {
            display: none !important;
            visibility: hidden !important;
            opacity: 0 !important;
            pointer-events: none !important;
        }

/* mở phần chuông, tài khoản, giỏ hàng */       
.header-user-actions {
                grid-row: 1;
                grid-column: 2;
                justify-self: end;
                align-self: center;
                display: flex !important;
                align-items: center !important;
                gap: 15px !important;
            }
            .header-user-actions .header-actions {
                display: flex !important;
                align-items: center !important;
                gap: 15px !important;
                margin: 0 !important;
                padding: 0 !important;
            }
            .header-user-actions .notification-wrapper {
                margin: 0 !important;
                padding: 0 !important;
            }
            .header-user-actions .auth-btns-luxury {
                display: flex !important;
                align-items: center !important;
                gap: 15px !important;
                margin: 0 !important;
                padding: 0 !important;
            }

/* User Menu */

.user-menu-wrapper {
        position: relative !important;
        display: inline-block !important;
    }

    .user-trigger {
        background: none;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 4px;
        border-radius: var(--radius);
    }

    .avatar-sm {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        object-fit: cover;
    }

   .user-dropdown {
        position: absolute !important;
        top: calc(100% + 10px) !important;
        right: 0 !important;
        width: 220px;
        background: #fff;
        border: 1px solid #ddd;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.12);
        display: none;
        z-index: 999999 !important;
    }


.user-dropdown a,
.user-dropdown button {
    display: flex;
    align-items: center;
    gap: 10px;

    width: 100%;
    box-sizing: border-box;

    padding: 12px 15px;

    border: none;
    background: none;

    text-align: left;
    text-decoration: none;

    color: #333;

    cursor: pointer;

    transition:
        background 0.25s ease,
        color 0.25s ease;
}

.user-dropdown {
    overflow: hidden;
}


    .user-dropdown {
        display: none;
    }

    .user-dropdown.active {
        display: block;
    }
    .user-dropdown a:hover,
    .user-dropdown button:hover {
    background: var(--c-gold) !important;
    color: #fff !important;
    }
    .logout-btn {
    font-size: 1rem;
    letter-spacing: 1px;
    }

.user-trigger {
    transition:
        background 0.3s ease,
        transform 0.2s ease,
        box-shadow 0.3s ease;

    border-radius: 12px;
}

.user-trigger .user-name,
.user-trigger i {
    transition: color 0.3s ease;
}

/* Hover */
.user-trigger:hover {
    background: linear-gradient(
        135deg,
        #b3941f,
        #d4af37
    ) !important;

    transform: translateY(-1px);

    box-shadow: 0 6px 18px rgba(179,148,31,0.28);
}

/* Text + icon trắng */
.user-trigger:hover .user-name,
.user-trigger:hover i {
    color: #fff !important;
}

/* Arrow animation */
.user-arrow {
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Khi menu mở */
.user-arrow.rotate {
    transform: rotate(180deg);
}

 #notif-btn {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;
    margin-right: -10px;
    border-radius: 50%;
    color: #666;
    transition:
        all 0.3s ease,
        transform 0.2s ease;
}

/* Icon chuông */
#notif-btn i {
    font-size: 1rem;
    color: #666;
    transition:
        color 0.3s ease,
        transform 0.35s ease;
}

/* Hover */
#notif-btn:hover {
    background: linear-gradient(
        135deg,
        #b3941f,
        #d4af37
    );

    box-shadow:
        0 6px 18px rgba(179,148,31,0.28);

    transform: translateY(-1px);
}

/* Icon đổi trắng + rung nhẹ */
#notif-btn:hover i {
    color: #fff;

    transform: rotate(-12deg) scale(1.08);
}


/* User + Cart link */
/* User + Cart */
.user-link-hover,
.cart-text-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    padding: 8px 10px;
    border-radius: 12px;

    background: transparent;
    border: none;

    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    text-decoration: none;
    color: #666;
    cursor: pointer;
    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.2s ease,
        box-shadow 0.3s ease;
}

/* Icon */
.user-link-hover i, 
.cart-text-link i {
    font-size: 1rem;
    color: inherit;
    margin: 0;
    transition:
        color 0.3s ease,
        transform 0.35s ease;
}

/* Hover */
.user-link-hover:hover,
.cart-text-link:hover {
    background: linear-gradient(
        135deg,
        #b3941f,
        #d4af37
    );

    color: #fff;

    box-shadow: 0 6px 18px rgba(179,148,31,0.28);

    transform: translateY(-1px);
}

/* Cart icon animation */
.cart-text-link:hover i {
    transform: scale(1.12) rotate(-8deg);
}

/* Hover force white */
.user-link-hover:hover,
.user-link-hover:hover span,
.user-link-hover:hover i,
.cart-text-link:hover,
.cart-text-link:hover span,
.cart-text-link:hover i {
    color: #fff !important;
}

/* Đóng phần chuông, tài khoản, giỏ hàng */





        @media (max-width: 992px) {
            .footer-content { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 576px) {
            .footer-content { grid-template-columns: 1fr; text-align: center; }
            .footer-bottom { flex-direction: column; gap: 20px; }
        }

        @media (max-width: 768px) {
            /* General width fix */
            html, body { 
                overflow-x: hidden !important; 
                width: 100% !important; 
                position: relative !important; 
                margin: 0 !important;
                padding: 0 !important;
            }
            * { box-sizing: border-box !important; }

            button, .btn, .action-btn, a.nav-link, .details-btn, .chat-send-action {
                min-height: 44px;
                min-width: 44px;
                display: inline-flex;
                align-items: center;
                justify-content: center;
            }
            input, select, textarea {
                font-size: 16px !important; /* Prevent iOS zoom */
            }

            /* Announcement Bar */
            #announcement-bar { display: none !important; }

            /* Header Mobile Icons - STRICT HIDE DESKTOP NAV */
            .desktop-nav-only,
            .nav-links.desktop-nav-only {
                display: none !important;
                visibility: hidden !important;
                opacity: 0 !important;
                pointer-events: none !important;
            }
            .mobile-nav-top {
                display: flex !important;
                justify-content: space-between !important;
                align-items: center !important;
                width: 100% !important;
                margin-top: 10px !important;
                padding: 8px 0 !important;
                border-top: 1px solid #eee;
                gap: 6px !important;
            }
            .mobile-nav-top a {
                font-size: 0.8rem !important;
                font-weight: 700 !important;
                color: #444 !important;
                text-decoration: none !important;
                text-transform: uppercase !important;
                letter-spacing: 0.3px !important;
                white-space: normal !important;
                flex: 1;
                text-align: center;
                display: flex !important;
                flex-direction: column !important;
                align-items: center;
                justify-content: center;
                gap: 4px !important;
                transition: color 0.3s ease;
                padding: 6px 4px !important;
            }
            .mobile-nav-top a i {
                font-size: 1rem !important;
                margin-bottom: 2px;
            }
            .mobile-nav-top a:hover, .mobile-nav-top a.active 
            { 
                color: var(--c-gold) !important; 
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(179,148,31,0.25);
            }
            
            .mobile-nav-top .services-dropdown { 
                display: flex !important; 
                flex-direction: column;
                align-items: center;
                justify-content: center;
                position: relative !important;
                padding: 0;
                width: 40px !important;
                flex: 0 0 40px !important;
            }
            .mobile-nav-top .services-dropdown-content {
                position: absolute !important;
                top: 40px !important;
                right: 0 !important;
                left: auto !important;
                transform: none !important;
                width: 220px !important;
                z-index: 9999 !important;
                box-shadow: 0 10px 30px rgba(0,0,0,0.15);
                border-radius: 8px;
            }
            .mobile-nav-top .services-dropdown-content a {
                flex-direction: row !important;
                justify-content: flex-start !important;
                padding: 12px 20px !important;
                font-size: 0.85rem !important;
                gap: 12px !important;
                border-bottom: 1px solid #f5f5f5;
                text-align: left !important;
            }
            .mobile-nav-top .services-dropdown-content a i {
                width: 20px;
                font-size: 1.1rem !important;
                margin: 0 !important;
            }
            .nav-hamburger i { color: var(--c-gold) !important; font-size: 1rem !important; }

            /* Header Mobile Side Menu */
            .mobile-side-menu-trigger,
            .mobile-side-menu-content,
            .mobile-side-menu-overlay {
                display: none !important;
                visibility: hidden !important;
                opacity: 0 !important;
                pointer-events: none !important;
            }

            .mobile-side-menu-trigger {
                position: absolute !important;
                left: 15px !important;
                top: 22px !important; /* Higher up, aligned with user/bag icons */
                transform: none !important;
                font-size: 1.2rem !important;
                color: rgba(0,0,0,0.7) !important;
                cursor: pointer;
                transition: color 0.3s ease;
                z-index: 2100;
            }
            .mobile-side-menu-trigger:hover { color: var(--c-gold) !important; }

            .mobile-side-menu-content {
                position: fixed !important;
                top: 0 !important;
                left: -280px !important;
                width: 280px !important;
                height: 100vh !important;
                background: #fff !important;
                z-index: 9999 !important;
                transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
                box-shadow: 10px 0 30px rgba(0,0,0,0.1) !important;
                flex-direction: column !important;
                padding: 20px 0 !important;
                will-change: transform;
            }

            @media (max-width: 768px) {
                .mobile-side-menu-trigger {
                    display: block !important;
                    visibility: visible !important;
                    opacity: 1 !important;
                    pointer-events: auto !important;
                }
                .mobile-side-menu-content {
                    display: flex !important;
                    visibility: visible !important;
                    opacity: 1 !important;
                    pointer-events: auto !important;
                }
                .mobile-side-menu-overlay {
                    display: none !important;
                    visibility: visible !important;
                    opacity: 1 !important;
                    pointer-events: auto !important;
                }
                .mobile-side-menu-overlay.active { display: block !important; }
            }

            .mobile-side-menu-content.active { transform: translateX(280px) !important; }

            .mobile-nav-top {
                display: flex !important;
                justify-content: center !important;
                align-items: center !important;
                width: 100% !important;
                margin-top: 15px !important;
                padding: 2px !important; /* Minimal padding */
                border: none !important;
                gap: 2px !important; /* Tighter gap to fit 5 items */
                box-sizing: border-box !important;
            }
            .mobile-nav-top a {
                font-size: 0.45rem !important; /* Even smaller to fit */
                font-weight: 800 !important;
                color: #222222 !important;
                text-decoration: none !important;
                text-transform: uppercase !important;
                letter-spacing: -0.2px !important; /* Tight letter spacing */
                white-space: nowrap !important;
                flex: 1;
                text-align: center;
                display: flex !important;
                flex-direction: column !important;
                align-items: center;
                justify-content: center;
                gap: 2px !important;
                padding: 6px 1px !important; /* Very tight horizontal padding */
                transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
                border-radius: 6px !important;
                border: 1px solid rgba(0,0,0,0.04) !important;
                  /* 👉 shadow nhẹ */
                box-shadow: 0 1.5px 6px rgba(0, 0, 0, 0.06);
            }
            .mobile-nav-top a i { font-size: 0.8rem !important; margin-bottom: 1px !important; }
            
            /* Ultra-precise widths to fit 5 items on narrow screens */
            .mobile-nav-top a:nth-child(1) { flex: 1.3; } /* TRANSPORTATION */
            .mobile-nav-top a:nth-child(2) { flex: 1; }   /* TOUR GUIDE */
            .mobile-nav-top a:nth-child(3) { flex: 1; }   /* RENTAL VILLA */
            .mobile-nav-top a:nth-child(4) { flex: 1; }   /* COMMUNITY */
            .mobile-nav-top a:nth-child(5) { flex: 0.8; } /* TIPS */

            .mobile-nav-top a:hover, .mobile-nav-top a.active { 
                background: var(--c-gold) !important; 
                color: #fff !important; 
                border-color: var(--c-gold) !important;
            }
            .mobile-nav-top a:hover i, .mobile-nav-top a.active i { color: #fff !important; }
            .mobile-side-menu-overlay {
                position: fixed !important;
                top: 0 !important;
                left: 0 !important;
                width: 100vw !important;
                height: 100vh !important;
                background: rgba(0,0,0,0.5) !important;
                z-index: 9998 !important;
                display: none !important;
            }

.mobile-nav-top a {
    transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.mobile-nav-top a:active {
    transform: translateY(1px) scale(0.98);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}
            .mobile-side-menu-overlay.active { display: block !important; }

            .mobile-side-menu-content a {
                padding: 12px 25px !important;
                color: #444 !important;
                text-decoration: none !important;
                font-size: 0.75rem !important;
                font-weight: 700 !important;
                text-transform: uppercase !important;
                letter-spacing: 0.8px !important;
                display: flex !important;
                align-items: center !important;
                gap: 15px !important;
                border-bottom: 1px solid #f9f9f9;
                transition: all 0.3s ease;
            }
            .mobile-side-menu-content a i { width: 20px; font-size: 1rem !important; color: #888; }
            .mobile-side-menu-content a:hover { color: var(--c-gold) !important; background: #fafafa; }
            .mobile-side-menu-content .menu-close {
                align-self: flex-end;
                margin-right: 20px;
                margin-bottom: 20px;
                font-size: 1.5rem;
                cursor: pointer;
            }

            header.site-header {
                flex-direction: column !important;
                padding: 15px 10px !important;
                align-items: center !important;
                background: #f5f7f9 !important;
                height: auto !important;
                position: relative !important;
            }
            header.site-header a[href="/"] {
                width: 100% !important;
                margin-bottom: 5px !important;
                flex-direction: column !important;
                text-align: center !important;
                gap: 5px !important;
                display: flex !important;
                align-items: center !important;
                justify-content: center !important;
            }
            header.site-header .logo {
                margin: 0 auto !important;
                text-align: center !important;
            }
            header.site-header .logo img {
                margin: 0 auto !important;
                height: 45px !important;
                display: block !important;
            }
            header.site-header .reverse-bidding-container {
                margin: 0 auto !important;
                align-items: center !important;
                display: flex !important;
                flex-direction: column !important;
                text-align: center !important;
            }
            header.site-header .reverse-bidding-title {
                font-size: 1.1rem !important;
                letter-spacing: 1px !important;
            }
            header.site-header .reverse-bidding-sub {
                font-size: 0.55rem !important;
                letter-spacing: 0.5px !important;
            }
            

            /* Trạng thái bình thường, icon giỏ hàng */
            .fa-shopping-bag::before,
            .fa-user::before {
                font-size: 0.8rem !important;
                color: inherit !important;
                transition: color 0.25s ease;   /* Thêm chuyển màu mượt */
            }

            /* Hover effect */
            .user-link-hover:hover .fa-user::before,
            .cart-text-link:hover .fa-shopping-bag::before {
                color: #fff !important;
            }

            /* Nếu icon nằm trong thẻ <a> hoặc div có class link */
            a:hover .fa-shopping-bag::before,
            a:hover .fa-user::before {
                color: var(--c-gold) !important;
            }

            .mobile-label {
             display: inline !important;
             margin-top: 5px !important;
            }
            .cart-text-link { position: relative !important; 
            cursor: pointer !important;
            }
            
            #cart-count {
                position: absolute !important;
                top: 6px !important;
                right: 5px !important;
                background: var(--c-gold) !important;
                color: #ffffff !important;
                font-size: 0.6rem !important;
                width: 10px !important;
                height: 10px !important;
                border-radius: 50% !important;
                display: flex !important;
                align-items: center !important;
                justify-content: center !important;
                font-weight: 800 !important;
                margin: 0 !important;
            }      
            
            
            /* Mobile Header Reorganization */
            header.site-header {
                display: grid !important;
                grid-template-columns: 1fr auto !important;
                grid-template-rows: auto auto auto;
                padding: 10px 15px !important;
                flex-direction: initial;
                align-items: initial;
            }
            .mobile-side-menu-trigger {
                grid-row: 1;
                grid-column: 1;
                justify-self: start;
                position: static !important;
                left: auto !important;
                top: auto !important;
                z-index: auto;
            }
            
            .header-top-row {
                display: flex !important;
                flex-direction: row !important;
                align-items: center !important;
                justify-content: space-between !important;
                width: 100% !important;
                gap: 12px !important;
                margin-top: 10px !important;
                grid-row: 2;
                grid-column: 1 / -1;
                padding: 0;
            }
            header.site-header a[href="/"] {
                width: auto !important;
                margin-bottom: 0 !important;
                flex-direction: row !important;
                text-align: left !important;
                gap: 10px !important;
                display: flex !important;
                align-items: center !important;
                justify-content: flex-start !important;
            }
            header.site-header .logo {
                margin: 0 !important;
                text-align: left !important;
            }
            header.site-header .logo img {
                margin: 0 !important;
                height: 35px !important;
                display: block !important;
            }
            header.site-header .reverse-bidding-container {
                margin: 0 !important;
                align-items: flex-start !important;
                display: flex !important;
                flex-direction: column !important;
                text-align: left !important;
                flex: 1;
                justify-content: center;
            }
            header.site-header .reverse-bidding-title {
                font-size: 0.85rem !important;
                letter-spacing: 0.5px !important;
                margin-top: -7px !important;
            }
            header.site-header .reverse-bidding-sub {
                font-size: 0.4rem !important;
                letter-spacing: 0.3px !important;
                margin: 0 !important;
            }
            header.site-header nav {
                grid-row: 3;
                grid-column: 1 / -1;
                margin-top: 8px;
            }
            .header-top-row {
                display: flex !important;
                flex-direction: column !important;
                align-items: center !important;
                width: 100% !important;
            }


            
            /* Mobile Bottom Menu Scrollable */
            .mobile-bottom-menu-container {
                position: relative;
                background: #fff;
                border-bottom: 1px solid #eee;
                display: none !important; /* Force hide by default */
            }
            @media (max-width: 768px) {
                .mobile-bottom-menu-container { display: block !important; }
            }
            .mobile-bottom-menu {
                display: flex !important;
                overflow-x: auto !important;
                white-space: nowrap !important;
                padding: 12px 40px !important;
                gap: 20px !important;
                -webkit-overflow-scrolling: touch !important;
                scrollbar-width: none !important;
                align-items: center !important;
            }
            .mobile-bottom-menu::-webkit-scrollbar { display: none !important; }
            .mobile-bottom-menu a {
                color: #b3941f !important;
                text-decoration: none !important;
                font-size: 0.7rem !important;
                font-weight: 700 !important;
                text-transform: uppercase !important;
                display: inline-flex !important;
                align-items: center !important;
                gap: 5px !important;
                flex-shrink: 0 !important;
                transition: color 0.3s ease;
            }
            .mobile-bottom-menu a:hover, .mobile-bottom-menu a:active {
                color: #d4af37 !important;
            }
            .menu-arrow { 
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                background: #fff;
                color: #b3941f !important; 
                width: 32px;
                height: 100%;
                display: none; /* Default hidden everywhere */
                align-items: center;
                justify-content: center;
                cursor: pointer;
                z-index: 10;
                transition: all 0.3s ease;
                border: none;
            }
            @media (max-width: 768px) {
                .mobile-bottom-menu-container { display: block !important; border-top: 1px solid #eee; background: #fff; }
                .mobile-bottom-menu { display: flex !important; justify-content: center !important; flex-wrap: wrap !important; overflow: hidden !important; padding: 10px 5px !important; gap: 10px !important; }
                .mobile-bottom-menu a { font-size: 0.55rem !important; margin: 0 !important; flex-direction: column !important; align-items: center !important; gap: 3px !important; min-width: 60px !important; text-align: center !important; }
                .menu-arrow { display: none !important; }
            }
            .menu-arrow:hover {
                color: #d4af37 !important;
                background: #fdfdfd;
            }
            .menu-arrow-left { left: 0; box-shadow: 5px 0 10px rgba(0,0,0,0.05); }
            .menu-arrow-right { right: 0; box-shadow: -5px 0 10px rgba(0,0,0,0.05); }
            .menu-arrow i { font-size: 0.8rem; }

            /* Footer Mobile Centering & Cleanup */
            footer { padding: 40px 0 20px !important; }
            .footer-content {
                display: flex !important;
                flex-direction: column !important;
                gap: 40px !important;
                text-align: center !important;
            }
            .footer-section { padding: 0 !important; width: 100% !important; display: block !important; }
            .footer-section h3 { text-align: center !important; margin-bottom: 15px !important; font-size: 1rem !important; }
            .footer-contact-desktop { display: none !important; }
            .footer-contact-mobile { 
                display: block !important; 
                text-align: center !important; 
                border-top: 1px solid rgba(255,255,255,0.1) !important;
                margin: 20px 0 !important;
                padding: 20px 10px 0 10px !important;
            }
            .footer-contact-mobile h3 { display: none !important; }
            .footer-contact-mobile div { 
                font-size: 0.65rem !important; 
                color: #888 !important; 
                line-height: 1.8 !important; 
                text-transform: uppercase !important;
                letter-spacing: 1.2px !important;
                font-weight: 700 !important;
            }

            .footer-brand-row {
                display: flex !important;
                justify-content: center !important;
                align-items: center !important;
                width: 100% !important;
                position: relative !important;
                padding-bottom: 10px !important;
            }
            .mobile-hamburger-footer {
                display: block !important;
                color: #b3941f !important;
                font-size: 1.2rem !important;
                cursor: pointer !important;
                position: absolute !important;
                right: 0 !important;
                top: 50% !important;
                transform: translateY(-50%) !important;
            }
            .footer-mobile-menu {
                display: none;
                background: #1a1a1a;
                padding: 25px;
                text-align: left;
                border: 1px solid #333;
                border-radius: 12px;
                width: 280px !important;
                position: absolute !important;
                top: 45px !important; /* Fixed position relative to icon container */
                right: 0 !important;
                z-index: 5000 !important;
                box-shadow: 0 10px 30px rgba(0,0,0,0.5) !important;
                box-sizing: border-box !important;
                transform-origin: top right;
                animation: slideDown 0.3s ease;
            }
            @keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
            @keyframes slideDown {
                from { opacity: 0; transform: scale(0.9); }
                to { opacity: 1; transform: scale(1); }
            }
            .footer-mobile-menu.active { 
                display: block !important; 
            }
            .footer-mobile-menu h4 {
                color: var(--c-gold) !important;
                font-size: 0.8rem !important;
                text-transform: uppercase !important;
                margin-bottom: 20px !important;
                letter-spacing: 2px !important;
                border-bottom: 1px solid #333 !important;
                padding-bottom: 10px !important;
            }
            .footer-mobile-menu ul { list-style: none !important; padding: 0 !important; margin: 0 !important; display: block !important; }
            .footer-mobile-menu ul li { 
                margin-bottom: 15px !important; 
                width: 100% !important;
                text-align: left !important;
                display: block !important;
                border-bottom: 1px solid #222 !important;
                padding-bottom: 10px !important;
            }
            .footer-mobile-menu ul li:last-child { border-bottom: none !important; }
            .footer-mobile-menu ul li a { 
                color: #fff !important; 
                text-decoration: none !important;
                text-transform: uppercase !important; 
                font-size: 0.75rem !important; 
                letter-spacing: 1.5px !important;
                display: flex !important;
                justify-content: space-between !important;
                align-items: center !important;
            }
            .footer-mobile-menu ul li a::after {
                content: '\f105';
                font-family: 'Font Awesome 6 Free';
                font-weight: 900;
                color: #444;
            }
            
            /* Remove redundant desktop sections on mobile */
            .footer-section:nth-child(2), .footer-section:nth-child(3) { display: none !important; }
            .footer-short-desc-mobile { display: block !important; }
            .footer-desc-desktop { display: none !important; }
            
            .footer-section:last-child { text-align: left !important; }
            .footer-section:last-child h3 { margin-bottom: 20px !important; }
            .footer-section:last-child ul { 
                display: inline-flex !important; 
                flex-direction: column !important;
                align-items: center !important;
                text-align: center !important;
                padding: 0 !important;
                width: 100% !important;
            }
            .footer-section:last-child ul li { 
                justify-content: center !important; 
                margin-bottom: 15px !important; 
                width: 100% !important;
                text-align: center !important;
            }
            
            .whatsapp-mobile-icon, .whatsapp-desktop-row, .footer-desc-desktop { display: none !important; }

            .footer-bottom {
                margin-top: 30px !important;
                padding-top: 20px !important;
                text-align: center !important;
                flex-direction: column-reverse !important;
                gap: 15px !important;
            }
            .footer-social { margin-left: 0 !important; }
            .footer-social a { margin: 0 10px !important; }
        }
        
        @media (min-width: 769px) {
            .mobile-bottom-menu { display: none !important; }
            .mobile-sections-container, .mobile-explore-top, .slider-stats-mobile, .view-all-mobile, .destinations-grid-mobile { display: none !important; }
        }

        /* Split desktop and mobile headers */
        header.site-header.mobile-header {
            display: none !important;
        }
        @media (max-width: 768px) {
            header.site-header.desktop-header {
                display: none !important;
            }
            header.site-header.mobile-header {
                display: grid !important;
            }
        }

        /* Style for Desktop Header on Homepage to match news layout */
        @media (min-width: 769px) {
            header.site-header.desktop-header {
                background: #fff !important;
                padding: 20px 40px !important;
                display: flex !important;
                flex-direction: row !important;
                justify-content: space-between !important;
                align-items: center !important;
                border-bottom: 1px solid #eee !important;
                position: sticky !important;
                top: 0 !important;
                z-index: 2000 !important;
                height: auto !important;
            }
            header.site-header.desktop-header nav {
                display: flex !important;
                flex-direction: column !important;
                align-items: flex-end !important;
                gap: 10px !important;
                width: auto !important;
                margin: 0 !important;
                background: transparent !important;
            }
            header.site-header.desktop-header nav .nav-links.desktop-nav-only {
                display: flex !important;
                gap: 20px !important;
                align-items: center !important;
                margin: 0 !important;
                padding: 0 !important;
                background: transparent !important;
                overflow: visible !important;
            }
            header.site-header.desktop-header nav .nav-links.desktop-nav-only > a,
            header.site-header.desktop-header nav .services-dropdown-toggle {
                color: #666 !important;
                text-decoration: none !important;
                font-size: 0.75rem !important;
                letter-spacing: 1px !important;
                text-transform: uppercase !important;
                font-weight: 500 !important;
                transition: color 0.3s !important;
                padding: 0 !important;
                margin: 0 !important;
                background: transparent !important;
                border-radius: 0 !important;
            }
            header.site-header.desktop-header nav .nav-links.desktop-nav-only > a:hover,
            header.site-header.desktop-header nav .nav-links.desktop-nav-only > a.active,
            header.site-header.desktop-header nav .services-dropdown-toggle:hover {
                color: #b3941f !important;
                background: transparent !important;
            }
        }

/* Desktop */
@media (min-width: 768px) {
    #installBtn {
        display: none !important;
    }
}
