:root {
    --idn-header-bg: rgba(7,7,6,.88);
    --idn-header-line: rgba(255,255,255,.10);
    --idn-gold: #d9ad50;
    --idn-paper: #f4efe4
}

.idn-shared-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 10px clamp(16px,4vw,54px);
    background: var(--idn-header-bg);
    border-bottom: 1px solid var(--idn-header-line);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px)
}

    .idn-shared-header .idn-brand {
        display: flex;
        align-items: center;
        min-width: 150px;
        text-decoration: none;
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
        padding: 0 !important
    }

        .idn-shared-header .idn-brand img {
            display: block;
            width: auto;
            height: 70px;
            max-width: 220px;
            object-fit: contain;
            background: transparent !important;
            border: 0 !important;
            box-shadow: none !important;
            padding: 0 !important;
/*            filter: invert(1);*/
            mix-blend-mode: screen
        }

    .idn-shared-header nav {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: clamp(14px,2vw,30px);
        flex: 1
    }

        .idn-shared-header nav a, .idn-shared-header .idn-tools a, .idn-shared-header .idn-tools button {
            color: var(--idn-paper);
            text-decoration: none;
            font: 600 12px/1.2 Arial,sans-serif;
            letter-spacing: .03em;
            background: none;
            border: 0;
            cursor: pointer;
            padding: 10px 4px
        }

            .idn-shared-header nav a:hover, .idn-shared-header .idn-tools a:hover {
                color: var(--idn-gold)
            }

    .idn-shared-header .idn-tools {
        display: flex;
        align-items: center;
        gap: 12px;
        white-space: nowrap
    }

    .idn-shared-header .idn-tool-btn {
        position: relative;
        width: 42px;
        height: 42px;
        min-width: 42px;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        padding: 0 !important;
        border: 1px solid var(--idn-header-line) !important;
        border-radius: 50% !important;
        background: rgba(255,255,255,.025) !important;
        color: var(--idn-paper) !important;
        transition: color .2s ease,border-color .2s ease,background .2s ease,transform .2s ease
    }

        .idn-shared-header .idn-tool-btn:hover {
            color: var(--idn-gold) !important;
            border-color: rgba(217,173,80,.55) !important;
            background: rgba(217,173,80,.08) !important;
            transform: translateY(-1px)
        }

        .idn-shared-header .idn-tool-btn svg {
            width: 20px;
            height: 20px;
            fill: none;
            stroke: currentColor;
            stroke-width: 1.7;
            stroke-linecap: round;
            stroke-linejoin: round;
            pointer-events: none
        }

        .idn-shared-header .idn-cart-count {
            position: absolute;
            top: -4px;
            right: -5px;
            min-width: 18px;
            height: 18px;
            padding: 0 5px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 999px;
            background: var(--idn-gold);
            color: #171208;
            border: 2px solid #080806;
            font: 800 9px/1 Arial,sans-serif;
            margin: 0;
            box-sizing: border-box
        }

    .idn-shared-header .idn-menu-toggle {
        display: none;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        min-width: 42px;
        padding: 0 !important;
        border: 1px solid var(--idn-header-line) !important;
        border-radius: 50% !important;
        background: rgba(255,255,255,.025) !important;
        color: var(--idn-paper) !important;
        font: 700 22px/1 Arial,sans-serif !important;
        transition: color .2s ease,border-color .2s ease,background .2s ease,transform .2s ease
    }

        .idn-shared-header .idn-menu-toggle:hover {
            color: var(--idn-gold) !important;
            border-color: rgba(217,173,80,.55) !important;
            background: rgba(217,173,80,.08) !important;
            transform: translateY(-1px)
    }

@media(max-width:800px) {
    .idn-shared-header {
        min-height: 62px;
        padding: 8px 14px;
        gap: 12px;
        flex-wrap: wrap
    }

        .idn-shared-header .idn-brand {
            min-width: 0;
            flex: 0 0 auto
        }

        .idn-shared-header .idn-brand img {
            height: 38px;
            max-width: 180px
        }

        .idn-shared-header .idn-menu-toggle {
            display: inline-flex !important;
            order: 2
        }

        .idn-shared-header nav {
            display: none;
            order: 3;
            flex-basis: 100%;
            flex-direction: column;
            align-items: flex-start;
            padding: 8px 0 12px
        }

        .idn-shared-header.open nav {
            display: flex
        }

        .idn-shared-header .idn-tools {
            order: 4;
            margin-left: auto;
            gap: 8px
        }

            .idn-shared-header .idn-tool-btn {
                width: 38px;
                height: 38px;
                min-width: 38px
            }
}
