/**
 * Header Düzeltmeleri
 * Slogan, Ürünler butonu, Logo boyutu
 */

/* Topbar düzeni */
.top_bar .d-flex {
    flex-wrap: nowrap !important;
    align-items: center !important;
}

/* Slogan alanı */
.top_bar_contact_item.slogan {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    white-space: nowrap !important;
    flex: 0 1 auto !important;
    min-width: 0 !important;
}

.top_bar_contact_item.slogan img {
    flex-shrink: 0 !important;
}

.top_bar_contact_item.slogan span {
    white-space: nowrap !important;
}

/* Ürünler butonu sağda */
.top_bar_contact_item_button {
    margin-left: 20px !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
}

/* Logo büyütme */
#logo-img {
    max-height: 100px !important;
    min-height: 100px !important;
    height: 100px !important;
    width: auto !important;
    object-fit: contain !important;
}

.site-branding {
    margin-right: 30px !important;
}

.site-branding h1 {
    margin: 0 !important;
    line-height: 1 !important;
}

.site-branding a {
    display: inline-block !important;
    line-height: 1 !important;
}

/* Header yüksekliği ayarla */
.site-header-menu {
    padding: 15px 0 !important;
}

/* Responsive - Mobilde logo küçüt */
@media (max-width: 768px) {
    #logo-img {
        max-height: 70px !important;
        min-height: 70px !important;
        height: 70px !important;
    }
    
    .top_bar_contact_item.slogan span {
        font-size: 13px !important;
    }
}

@media (max-width: 576px) {
    #logo-img {
        max-height: 60px !important;
        min-height: 60px !important;
        height: 60px !important;
    }
    
    .top_bar_contact_item.slogan span {
        font-size: 12px !important;
    }
}

