/* --- TOP BAR --- */
.top-bar {
    background: #141414;
    color: #ffffff;
    text-align: center;
    /* Mày thích dày bao nhiêu thì sửa số 17px này. Ví dụ: 25px, 30px... */
    /* Header sẽ tự động tụt xuống theo, không cần chỉnh gì khác */
    padding: 14px 0; 
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0px;
    position: relative;
    z-index: 1001;
}

.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 96px; 
    width: 100%;
    max-width: var(--container-max); /* Dùng biến 1440px từ base */
    margin: 0 auto;
    padding: 0 var(--side-padding); /* Ép lề 4% vào đây */
}

.top-bar-btn {
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    font-size: 9px;
    padding: 5px;
    display: flex;
    align-items: center;
    transition: opacity 0.3s;
    -webkit-text-stroke: 0.5px #fff; 
    font-weight: 600;
}

.top-bar-content p {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: none;
    margin: 0; /* Fix lỗi mặc định của thẻ P */
}




@media (max-width: 1024px) {
    /* 1. ẨN CÁC THÀNH PHẦN DESKTOP */
    .desktop-only { 
        display: none !important; 
    }
    
    .mobile-only { 
        display: flex !important; 
        align-items: center; 
    }

    /* 2. TOP-BAR: MỎNG & CHỮ NHỎ ĐÚNG CHẤT QUOC */
    .top-bar {
        padding: 9px 0;
    }

    .top-bar-inner {
        gap: 65px;
    }

    .top-bar-content p {
        font-size: 9px; /* Chữ siêu nhỏ */
        letter-spacing: 0.5px;
        font-weight: 800;
        text-transform: none;
        white-space: nowrap;
        display: block;
        overflow: hidden;
    }

    .top-bar-btn {
        font-size: 9px; /* Mũi tên nhỏ lại cho cân đối */
        -webkit-text-stroke: 0.7px #ffffff;
    }

    /* 3. HEADER: THỨ TỰ ICON & CĂN GIỮA LOGO */
    .site-header {
        top: 22px; /* Sát lên trên sau top-bar */
    }
}