/* Global Mobile Top Bar Fix (< 768px) */
@media (max-width: 768px) {

    /* 1. Reset & Flex Container */
    .top-bar-inner {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 10px;
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .top-bar-left,
    .top-bar-right {
        width: auto !important;
        justify-content: center;
    }

    /* 2. Phone Number - Keep on one line */
    .top-bar-phone {
        white-space: nowrap !important;
        font-size: 12px !important;
        display: flex;
        align-items: center;
    }

    /* 3. Hide Text, Show Icons logic */
    .top-bar-link span {
        display: none !important;
    }

    .top-bar-link i {
        font-size: 14px !important;
        margin-right: 5px;
        color: #F97316;
        /* Ensure brand-accent color visibility */
    }

    /* Hide divider */
    .top-bar-divider {
        display: none !important;
    }

    /* 4. Language Selector */
    .language-selector {
        font-size: 11px !important;
        margin-left: 5px;
    }

    /* 5. Hero & Typography Fixes */
    h1,
    .hero-title {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
        word-wrap: break-word !important;
        hyphens: auto !important;
    }
}