/* Фиксированная узкая шапка */
.custom-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    border-bottom: 1px solid #eee;
    z-index: 1000;
}

.header-container {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    padding: 0 20px;
}

/* Логотип */
.header-logo {
    height: 40px;
    width: auto;
}

/* Центр для кнопки */
.header-center {
    flex: 1;
    text-align: center;
}

.header-btn {
    display: inline-block;
    background: #ff6600;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
}

/* Кнопки справа */
.header-right {
    display: flex;
    gap: 10px;
}

.lang-btn,
.menu-btn {
    background: none;
    border: 1px solid #ccc;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
}

/* Скрывать кнопку по центру на мобилке */
.desktop-only {
    display: block;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }
    .header-container {
        height: 60px;
    }
    .header-logo {
        height: 30px;
    }
}
