.header.light {
    --header__: #ffffff26;
    --header__logo__ : #000;
    --header__other-user-svg__: #fff;
    --header__other-sepet-bg: #fff;
    --header__other-sepet-c: #000;
    --header__other-sepet-b: 1px solid #000;
    --hader__other-user-svg-bg__: #000;
    --header__other-user-svg__: #fff;
    --header__other-sepet-svg: #000;
}

.header.dark {
    --header__: unset;
    --header__logo__ : #fff;
    --header__other-user-svg__: #1a237e;
    --header__other-sepet-bg: #1a237e;
    --header__other-sepet-c: #ffffff;
    --header__other-sepet-b: none;
    --hader__other-user-svg-bg__: #e6edf7;
    --header__other-user-svg__: #1a237e;
    --header__other-sepet-svg: #e6edf7;
}

.header {
    position: fixed;
    z-index: 999999999;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 10px 30px;
    background: var(--header__);
}

.header__logo {
    display: flex;
}

.header__logo > svg {
    width: 50px;
    height: 50px;
}

.header__logo > svg > path {
    fill: var(--header__logo__);
    stroke: var(--header__logo__);
    stroke-width: 10px;
}

.header__logo > svg > path#dis-katman {
    fill: none;
    stroke: none;
}

.header__other {
    display: flex;
    flex-direction: row;
    gap: 35px;
    align-items: center;
}

.header__other-user {
    display: flex;
}

.header__other-user-svg {
    display: flex;
    background: var(--hader__other-user-svg-bg__);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    width: fit-content;
    height: fit-content;
}

.header__other-user-svg > svg {
    width: 30px;
    height: 30px;
}

.header__other-user-svg > svg > path {
    fill: var(--header__other-user-svg__);
    stroke: none;
}

.header__other-sepet {
    position: relative;
    display: flex;
    margin-left: -4px;
    justify-content: center;
    margin-top: 2px;
}

.header__other-sepet > svg {
    width: 32px;
    height: 32px;
}

.header__other-sepet > svg > path {
    fill: var(--header__other-sepet-svg);
    stroke: none;
}

.header__other-sepet:after {
    content: '3';
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--header__other-sepet-bg);
    color: var(--header__other-sepet-c);
    border: var(--header__other-sepet-b);
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 600;
    margin-left: 6px;
}

@media screen and (max-width: 1400px) {
    .header {
        padding: 10px;
    }
    
    .header__other {
        margin-right: 10px;
    }
}

@media screen and (max-width: 1200px) {
    .header__logo > svg {
        width: 35px;
        height: 35px;
    }
    
    .header__other-user-svg > svg {
        width: 24px;
        height: 24px;
    }
    
    .header__other-sepet > svg {
        width: 26px;
        height: 26px;
    }
    
    .header__other-sepet:after {
        width: 12.8px;
        height: 12.8px;
        font-size: 8px;
    }
    
    .header__other {
        margin: 8px;
    }
}

@media screen and (max-width: 800px) {
    .header__other {
        flex-direction: row;
        align-items: center;
        gap: 20px;
    }
    
    .header__other-sepet > svg {
        width: 28px;
        height: 28px;
    }
    
    .header__other-sepet {
        margin: 0;
        margin-top: 2px;
    }
}

@media screen and (max-width: 600px) {
    .header{
        backdrop-filter: blur(10px);
        padding: 5px;
    }
}