/* Ana sayfadaki çalışan public header'ın ortaklaştırılmış son değerleri. */
.header {
    position:relative;
    z-index:100;
    background:transparent;
    border-bottom:1px solid rgba(60,75,45,.15);
}

.header .new-header {
    width:100%;
    max-width:1180px;
    min-height:auto;
    margin:0 auto;
    padding:22px 30px 18px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
    box-sizing:border-box;
}

.header .brand-area {
    min-width:470px;
    display:flex;
    align-items:center;
    position:relative;
    flex-shrink:0;
    transform:translateX(22px);
    text-decoration:none;
}

.header .brand-center {
    display:flex;
    align-items:center;
    gap:10px;
    position:relative;
    z-index:2;
    margin-left:28px;
}

.header .brand-bos {
    display:block;
    width:76px;
    height:auto;
}

.header .brand-name {
    display:block;
    width:170px;
    max-width:none;
    height:auto;
    margin:0;
}

.header .brand-leaf-left {
    display:block;
    width:42px;
    height:auto;
    position:relative;
    left:-28px;
    top:8px;
    margin:0;
    flex-shrink:0;
}

.header .new-nav {
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:26px;
    margin-left:auto;
    padding-right:8px;
    transform:translateX(-12px);
}

.header .new-nav a {
    position:relative;
    padding:8px 0;
    color:#59654a;
    text-decoration:none;
    font-size:13px;
    font-weight:600;
    letter-spacing:.2px;
    white-space:nowrap;
}

.header .new-nav a:hover,
.header .new-nav a.active {
    color:#829360;
}

.header .new-nav .online-store-button {
    display:flex;
    align-items:center;
    gap:8px;
    padding:10px 15px;
    border:1px solid #758657;
    border-radius:999px;
    background:#829360;
    color:#fff;
    box-shadow:0 3px 9px rgba(72,84,50,.14);
    cursor:pointer;
}

.header .new-nav .online-store-button:hover {
    background:#768657;
    color:#fff;
}

.header .online-store-button svg {
    width:17px;
    height:17px;
    fill:none;
    stroke:currentColor;
    stroke-width:1.8;
}

.header .new-nav a.active::after {
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:1px;
    height:1px;
    background:#829360;
}

.header .menu-leaf-right {
    display:block;
    width:50px;
    height:auto;
    margin-left:8px;
    position:static;
    flex-shrink:0;
}

/* Logo, altı menü bağlantısı ve sağ yaprak 1280 px civarında tek sıraya
   sığmadığı için bu genişlikte düzenli biçimde ikinci satıra geçer. */
@media (max-width:1300px) {
    .header .new-header {
        flex-direction:column;
        align-items:center;
        justify-content:center;
        gap:14px;
        flex-wrap:wrap;
    }

    .header .brand-area {
        width:auto;
        min-width:0;
        justify-content:center;
        transform:none;
    }

    .header .brand-center {
        margin-left:0;
    }

    .header .brand-leaf-left {
        position:static;
        left:auto;
        top:auto;
        margin-right:8px;
    }

    .header .new-nav {
        width:100%;
        justify-content:center;
        flex-wrap:wrap;
        margin:0;
        transform:none;
    }
}

@media (max-width:900px) {
    .header .new-header {
        padding:16px 18px;
    }

    .header .new-nav {
        gap:16px 20px;
    }
}

@media (max-width:700px) {
    .header .new-nav {
        gap:10px 14px;
    }

    .header .menu-leaf-right {
        width:32px;
        margin-left:2px;
    }
}

@media (max-width:650px) {
    .header .brand-bos {
        width:58px;
    }

    .header .brand-name {
        width:135px;
    }

    .header .brand-leaf-left {
        width:34px;
    }

    .header .menu-leaf-right {
        width:38px;
    }

    .header .new-nav {
        gap:12px 16px;
    }

    .header .new-nav a {
        font-size:12px;
    }

    .header .new-nav .online-store-button {
        padding:8px 12px;
    }
}
