/* Header menu — uppercase + sikistirilmis + kirmizi underline accent */
    header.destkop-menu .header-menu {
        display: flex !important;
        gap: 2px !important;
        list-style: none;
        margin: 0;
        padding: 0;
    }
    header.destkop-menu .header-menu li { list-style: none; }
    header.destkop-menu .header-menu li a {
        position: relative !important;
        display: inline-block !important;
        padding: 8px 10px !important;
        color: rgba(0,0,0,0.72) !important;
        font-size: 12.5px !important;
        font-weight: 700 !important;
        letter-spacing: 0.05em !important;
        text-transform: uppercase !important;
        border-radius: 6px !important;
        transition: color .2s ease, background .2s ease !important;
        text-decoration: none !important;
    }
    header.destkop-menu .header-menu li a::after {
        content: '' !important;
        position: absolute !important;
        left: 10px !important; right: 10px !important; bottom: 2px !important;
        height: 1.5px !important;
        background: #c1000f !important;
        border-radius: 1px !important;
        transform: scaleX(0) !important;
        transform-origin: center !important;
        transition: transform .25s ease !important;
        opacity: .85 !important;
    }
    header.destkop-menu .header-menu li a:hover {
        color: #c1000f !important;
        background: transparent !important;
    }
    header.destkop-menu .header-menu li a:hover::after,
    header.destkop-menu .header-menu li a.active::after {
        transform: scaleX(1) !important;
    }
    header.destkop-menu .header-menu li a.active {
        color: #c1000f !important;
        background: transparent !important;
    }/* TR/GB bayrak chip switcher — ozenle tasarlanmis container'da iki bayrak */
    .hp-lang-switch, .hp-lang-switch-mob {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        margin: 0 10px;
        padding: 4px;
        background: #f3f4f6;
        border: 1px solid #e0e3e8;
        border-radius: 100px;
        box-shadow: inset 0 1px 2px rgba(0,0,0,0.04);
    }
    /* Mobile: hamburger absolute right:0 oldugundan switch'i sola itip ustte tut */
    header.mobile-menu .header-right { position: relative; }
    .hp-lang-switch-mob {
        position: relative;
        z-index: 6;
        margin-right: 60px !important;
        margin-left: 0 !important;
    }
    .hp-flag {
        display: inline-flex; align-items: center; justify-content: center;
        position: relative;
        width: 32px; height: 24px;
        border-radius: 6px;
        overflow: hidden;
        opacity: 0.42;
        filter: saturate(0.55);
        border: 1px solid transparent;
        transition: opacity .25s ease, filter .25s ease, transform .2s ease, box-shadow .25s ease, background .25s ease;
        line-height: 0;
        background: #fff;
        cursor: pointer;
    }
    .hp-flag svg {
        display: block;
        width: 100%; height: 100%;
        border-radius: 5px;
        box-shadow: inset 0 0 0 1px rgba(0,0,0,0.06);
    }
    .hp-flag::after {
        /* Hafif glossy parlaklik (uzerinden gecen ışık efekti) */
        content: '';
        position: absolute;
        top: 0; left: 0; right: 0;
        height: 50%;
        background: linear-gradient(180deg, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0) 100%);
        pointer-events: none;
        border-radius: 6px 6px 0 0;
    }
    .hp-flag:hover {
        opacity: 0.85;
        filter: saturate(1);
        transform: translateY(-1px);
    }
    .hp-flag.active {
        opacity: 1;
        filter: saturate(1);
        background: #fff;
        box-shadow: 0 2px 6px rgba(0,0,0,0.12), 0 0 0 1.5px rgba(193,0,15,0.55);
        transform: translateY(-1px);
    }
    @media (max-width: 980px) { .hp-lang-switch { display: none !important; } }
    @media (min-width: 981px) { .hp-lang-switch-mob { display: none !important; } }
    @media (max-width: 480px) {
        .hp-lang-switch-mob { margin-right: 56px !important; margin-left: 0 !important; padding: 3px; gap: 3px; }
        .hp-flag { width: 28px; height: 21px; }
    }