header {
    z-index: 20;
    height: 40px;
    padding: 10px 20px;
    background: var(--Colors-Semantics-Background-Surface); 
    overflow: hidden; 
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    display: inline-flex;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
}
header[type="transparent"] {
    background: linear-gradient(180deg, #00000070, transparent);
    position: fixed;
}
.header-left {
    display: flex;
    align-items: center;
    gap: 8px;
}
.header-right .search-bar-container, .header-nav {
    display: none;
}
.header-nav-item {
    cursor: pointer;
}
.header-nav-item .label {
    color: var(--Colors-Semantics-Text-Secondary);
}
.header-nav-item:hover .label {
    color: var(--Colors-Semantics-Text-Primary);
}
.header-nav-item[status="is-active"] .label, .header-nav-item[status="is-active"]:hover .label  {
    background: var(--Gradient-Action-Accent);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}
@media (min-width: 1100px) {
    header {
        background: var(--Colors-Semantics-Background-Surface); 
        justify-content: space-between;
        height: 48px;
        padding: 16px 40px;
    }
    .header-nav {
        display: flex;
        align-items: center;
        gap: 32px;
        margin-left: 40px;
    }
    .header-right .search-bar-container {
        display: block;
    }
    .header-right {
        display: flex;
        align-items: center;
        gap: 16px;
    }
}
@media (min-width: 1300px) {
    header {
        padding: 16px 120px;
    }
}

.header-img {
    width: 116px;
    height: 40px;
    position: relative;
    overflow: hidden;
}
.header-img-inner {
    width: 115.86px;
    height: 36px;
    left: 0px;
    top: 2px;
    position: absolute;
    background: linear-gradient(90deg, #E42E84 0%, #613085 100%);
}
header[type="transparent"] .header-img-inner {
    background: var(--Colors-Semantics-Background-Surface);
}
.header-text {
    justify-content: center;
    display: flex;
    flex-direction: column;
    color: var(--Colors-Semantics-Text-Primary);
    font-size: 16px;
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 24px;
    word-wrap: break-word;
}
header[type="transparent"] .header-text {
    color: var(--Colors-Semantics-Text-On_Brand);
}
header .icon-back {
    display: none;
}
header[type="transparent"] .icon-back {
    display: block;
    color: var(--Colors-Semantics-Text-On_Brand);
    cursor: pointer;
}

/* Logo Yoigo Variants */
header .base-logo {
    display: block;
}
header .transparent-logo {
    display: none;
}
header[type="transparent"] .base-logo {
    display: none;
}
header[type="transparent"] .transparent-logo {
    display: block;
}
header[type="transparent"] .header-nav {
    display: none;
}
header[type="transparent"] .header-left {
    justify-content: start;
    width: 100%;
}
header[type="transparent"] .header-right {
    display: none;
}