header {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

/* ====== HEADER FIXED WRAPPER ====== */
.header-fixed-wrapper {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9000;
    background-color: var(--wp--preset--color--background);
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* ===== HEADER ROWS ===== */
.header-row {
    position: relative;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0 0.5vw 0.3vw 0.5vw;
}

.is-mobile .header-row {
    align-items: center;
}

.header-bottom-right.search-form-wrapper
, .header-bottom-right.search-form-wrapper form
, .header-bottom-right.search-form-wrapper form >div
{
    background-color: transparent !important;
    background: none;
}

.header-bottom-right.search-form-wrapper .searchform * {
    font-size: var(--wp--preset--font-size--small);
    padding: 0.25rem 0.5rem;
}

.header-bottom-right.search-form-wrapper .searchform input[type="text"] {
    width: 50%;
}

.is-mobile .search-form-wrapper {
    display: none;
}

.header-row *{
    background-color: var(--wp--preset--color--background);
}



/* ===== HEADER WRAPPER ===== */
.site-header {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0; /* sorok között nincs extra tér */
}




/* ===== TOP ROW ===== */
.header-row--top {
    border-bottom: 1px solid #eee;
}

/* Bal / Közép / Jobb */
.header-left {
    /* flex: 0 0 40%; */
    flex: 1 1 40%;
}

.header-center {
    flex: 1 1 auto; /* rugalmasan nőhet, de nem zsugorodhat 0 alá */
    text-align: center;
    display: flex;
    justify-content: center;
}

.header-right {
    display: flex;
    /*flex: 0 0 40%;*/
    flex: 0 1 40%;
    justify-content: flex-end;
}


/* ===== BOTTOM ROW ===== */
.header-row--bottom {
    border-bottom: 1px solid #eee;
    border-top: 1px solid #e0e0e0; /* halvány szürke vonal */
}



.header-bottom-left {
    display: flex;
    flex: 1 1 auto;     /* rugalmasan zsugorodhat */
    min-width: 0;       /* engedi összemenni */
    overflow-x: hidden; /* ami nem fér be, eltűnik */

}

.header-bottom-right {
    display: flex;
    align-items: center;
    flex: 0 0 auto;   /* ne zsugorodjon */
    flex-wrap: nowrap;   /* ← NEM törhet sorba */
    gap: 0.5rem;
    overflow: hidden;
}

.site-header {
  width: 100%;
}

.site-header > .header-row {
  max-width: var(--site-max-width);
  margin: 0 auto;
  width: 100%;
}

/* ===== HEADER SLIDER ===== */
.header-slider-wrapper {
    position: relative;
}





/* ===== KERESŐ ===== */
.searchform, .searchform > div {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  align-items: center;
  justify-content: flex-end;
}


.searchform input[type="search"] {
    flex: 1 1 auto;
    min-width: 0;
    padding: 0.5rem 1rem;
    border: 1px solid #ccc;
}

.searchform button {
    flex: 0 0 auto;     /* fix szélességű */
    white-space: nowrap;
}

/* ====== LOGO ===== */
.header-center .custom-logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-center .custom-logo {
  max-height: 120px;
  height: auto;
  width: auto;
  display: block;
}