header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

header #logo {
    display: flex;
    align-items: center;
    margin: 14px 20px;
    min-width: 0;
}

header #logo .site-logo-img {
    display: block;
    width: clamp(120px, 15vw, 220px);
    max-width: 100%;
    max-height: 54px;
    object-fit: contain;
}

.header-actions {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 12px;
    margin: 10px;
}

.lang-switch-wrap {
    display: inline-flex;
    align-items: center;
}

.lang-switch-select {
    height: 38px;
    min-width: 72px;
    border: 1px solid #000;
    border-radius: 8px;
    background: #fff;
    color: #000;
    font-size: 13px;
    font-weight: 600;
    padding: 0 10px;
    cursor: pointer;
}

.account-admin-tariff-select {
    min-width: 220px;
}

.header-btn {
    padding: 10px 18px;
    border: none;
    border-radius: 8px;
    background: #000;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.header-btn-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.header-icon-btn {
    width: 38px;
    height: 38px;
    padding: 0;
    gap: 0;
}

.fullscreen-icon-exit {
    display: none;
}

#fullscreenBtn.is-fullscreen .fullscreen-icon-enter {
    display: none;
}

#fullscreenBtn.is-fullscreen .fullscreen-icon-exit {
    display: block;
}

.cart-btn-wrap {
    position: relative;
    display: inline-block;
}

#cartCount {
    position: absolute;
    top: -5px;
    right: -5px;
    background: red;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}

@media (max-width: 700px) {
    header #logo {
        margin: 10px 8px 10px 14px;
    }

    header #logo .site-logo-img {
        width: clamp(86px, 24vw, 130px);
        max-height: 38px;
    }

    .header-actions {
        margin: 10px;
        gap: 8px;
    }

    .header-btn {
        padding: 8px 12px;
        font-size: 13px;
    }

    .lang-switch-select {
        height: 34px;
        min-width: 68px;
        font-size: 12px;
        padding: 0 8px;
    }

    .account-admin-tariff-select {
        min-width: 180px;
    }

    .header-icon-btn {
        width: 34px;
        height: 34px;
        padding: 0;
    }
}
