/* Üst satır sticky olmadan sabit kalsın */
.tp-header-area > .tp-header-top {
    position: sticky;
    top: 0;
    z-index: 9999;
    background-color: #010f1c; /* üst satır rengi */
    color: #fff;
}

/* Sticky header alt satır normal pozisyonda */
.tp-header-bottom-2.tp-header-sticky {
    position: sticky;
    top: 50px; /* üst satır yüksekliği kadar boşluk bırak */
    z-index: 9998;
    transition: all 0.3s ease;
}

/* Sticky halindeyken logo küçült */
.tp-header-bottom-2.tp-header-sticky.sticky-active .sticky-logo img {
    max-height: 40px !important; /* küçülmüş logo yüksekliği */
    width: auto !important;
    transition: all 0.3s ease;
}

/* Sticky halindeyken arama kutusunu da biraz küçült (opsiyonel) */
.tp-header-bottom-2.tp-header-sticky.sticky-active .sticky-search {
    max-width: 300px;
    transition: all 0.3s ease;
}

/* Sticky aktifken alt satırın yüksekliğini düşür */
.tp-header-bottom-2.tp-header-sticky.sticky-active {
    padding-top: 5px;
    padding-bottom: 5px;
}