#site-header {
    position: sticky;
    top: 0;
    z-index: 5000;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 24px;
    background: #f8f6f0;
    border-bottom: 1px solid #d8d2c4;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

#header-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

#header-logo img {
    height: 44px;
    width: auto;
    display: block;
}

#header-search {
    flex: 1;
    max-width: 700px;
    display: flex;
    align-items: center;
    gap: 10px;
}

#header-search input {
    flex: 1;
    height: 42px;
    border: none;
    border-radius: 24px;
    padding: 0 18px;
    background: #ffffff;
    font-size: 15px;
    box-shadow: inset 0 0 0 1px #d0d0d0;
}

#header-search select {
    height: 42px;
    border: none;
    border-radius: 20px;
    padding: 0 12px;
    background: #ffffff;
    box-shadow: inset 0 0 0 1px #d0d0d0;
}

#header-search button {
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: #ffe060;
    cursor: pointer;
    font-size: 18px;
}

#header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.header-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: #ffffff;
    text-decoration: none;
    font-size: 20px;
    color: #202020;
    cursor: pointer;
    box-shadow: inset 0 0 0 1px #d0d0d0;
}

.header-icon:hover {
    background: #fff0a0;
}

#lang-button {
    height: 42px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 14px;
    border: none;
    border-radius: 24px;
    background: #ffffff;
    cursor: pointer;
    box-shadow: inset 0 0 0 1px #d0d0d0;
}

@media (max-width:900px) {

    #site-header {
        height: 64px;
        padding: 0 14px;
    }

    #header-search.desktop-only {
        display: none;
    }

    #header-logo img {
        height: 38px;
    }
}