.header {
    background: var(--header-bg-gradient);
    padding: var(--header-padding);
    border-radius: var(--header-border-radius);
    position: relative;
}

.header-block {
    display: flex;
    justify-content: space-between;
    align-items: center;    
}

.header-catalog {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logotype {
}

.header__search {
    position: relative;
    flex: 1;
    max-width: var(--header-search-max-width);
    margin: 0px 69px;
}

.header__search::before {
    content: "Искать";
    top: calc(50% - 9px);
    position: absolute;
    left: 24px;
    color: var(--header-search-text-color);
}

.header__search-input {
    width: 100%;
    padding: var(--header-search-input-padding);
    border-radius: 100px;
    border: 0;
}

.header__search-input::placeholder {
    color: var(--header-search-placeholder-color);
    font-size: 15px;
    font-weight: 500;
}

.search-desktop::before {
    content: "Искать";
    top: calc(50% - 9px);
    position: absolute;
    left: 24px;
    color: var(--header-search-text-color);
}

.search-button {
    width: var(--search-btn-size);
    height: var(--search-btn-size);
    border-radius: var(--search-btn-border-radius);
    background-color: var(--search-btn-bg-color);
    border: var(--search-btn-border);
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1;
}

.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 1000;
    margin-top: 8px;
    display: none;
}

.search__suggestions-group {
    padding: 12px;
}

.search__suggestions-group h3 {
    font-size: 14px;
    color: #666;
    margin: 0 0 8px;
    padding-bottom: 5px;
    border-bottom: 1px solid #eee;
}

.search__suggestions-group ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.search__suggestions-group li {
    margin: 0;
    padding: 0;
}

.search__suggestions-group a {
    display: block;
    padding: 8px 12px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.2s;
    border-radius: 4px;
}

.search__suggestions-group a:hover {
    background-color: rgba(0, 140, 149, 0.1);
    color: rgba(0, 140, 149, 1);
}

.header__nav {}

.header__nav-button--not-active {
    display: none;
    background-color: transparent;
    border: none;
    width: 40px;
    height: 40px;
}

.header__nav-button--active {
    display: none;
    border: none;
    margin-left: var(--header-nav-button-margin-left);
}

.header__nav-buttons {
    display: flex;
    list-style-type: none;
    padding: 0;
    margin: 0;
    gap: 24px;
}

.header__nav-item a {
    color: var(--nav-btn-text-color);
    font-size: var(--nav-btn-font-size);
    font-weight: var(--nav-btn-font-weight);
    text-decoration: none;
    line-height: var(--nav-btn-line-height);
}

.header__nav-item:not(:last-child) {
    display: inline-block;
    min-width: 39px;
}