.tc-header {
    position: fixed;
    top: 12px;
    width: 100%;
    z-index: 1000;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.tc-header.is-fixed {
    position: fixed;
    transform: translateY(0);
}

.tc-header.is-hidden {
    transform: translateY(-100%);
}

.tc-header__inner {
    background: var(--color-black);
    border-radius: 8px;
    padding: 12px 8px;
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: space-between;
}

.tc-header__cta,
.tc-header__nav {
    display: none !important;
}

.tc-header__brand img {
    max-width: 80px;
}

.tc-header__nav .menu {
    list-style-type: none;
    padding-left: 0;
}

.tc-header__hamburger-nav a,
.tc-header__nav .menu a {
    text-decoration: none;
    color: var(--color-bronze);
    font: 500 20px/1.2 var(--font-primary);
}

.tc-header__hamburger {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.tc-header__menu-close-line,
.tc-header__hamburger-line {
    width: 24px;
    height: 2px;
    background: var(--color-bronze);
    border-radius: 2px;
}

.tc-header__menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 360px; /* prilagodi po potrebi */
    max-width: 90vw;

    background: var(--color-black);
    z-index: 1100;

    transform: translateX(100%);
    transition: transform 0.35s ease;

    padding: 70px 32px 40px 20px;
}

.tc-header__menu.is-open {
    transform: translateX(0);
}

body.menu-open {
    overflow: hidden;
}

.tc-header__menu-close {
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 0;
    background: transparent;
    position: absolute;
    padding: 0;
    top: 12px;
    right: 12px;
    cursor: pointer;
}

.tc-header__menu-close-line {
    position: absolute;
    top: 50%;
}

.tc-header__menu-close-line:nth-of-type(1) {
    transform: rotate(45deg);
}

.tc-header__menu-close-line:nth-of-type(2) {
    transform: rotate(-45deg);
}

.tc-header__hamburger-nav {
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
    margin-bottom: 32px;
}

.tc-header__hamburger-nav .menu {
    padding-left: 0;
    list-style-type: none;
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
}

@media only screen and (min-width: 1024px) {
    .tc-header__inner {
        padding: 12px 20px;
    }
    .tc-header__cta,
    .tc-header__nav {
        display: flex !important;
        flex-flow: row;
    }

    .tc-header__hamburger {
        display: none;
    }

    .tc-header__hamburger {
    }

    .tc-header__nav .menu {
        display: flex;
        flex-flow: row;
        gap: 22px;
        align-items: center;
        justify-content: center;
    }
}