/* ===================================
   HEADER NAVIGATION FIX - RADICAL SOLUTION
   Created: 11 Şubat 2026
   Problem: col-3 div'i full width, "Bize Ulaşın" linkinin üstünde görünmez kalkan gibi duruyor
   Solution: col-3'ü width: auto yap, sadece buton kadar yer kaplasın
   ================================== */

/* RADICAL FIX: Col-3 (Video Button) - ONLY button width, not full width */
header .desktop .col-3:last-child {
    width: auto !important;
    flex: 0 0 auto !important;
    max-width: none !important;
    margin-left: auto !important;
}

/* H-last area - fit content */
.h-last.area {
    width: fit-content !important;
    margin-left: auto !important;
}

/* Video button - normal */
.header-video-btn {
    position: relative;
}

/* Navigation bar - allow overflow */
.navigation-bar.area {
    overflow: visible !important;
}

/* Nav items - normal */
.navigation-bar .nav-item {
    flex-shrink: 0;
}

/* Nav links - normal */
.navigation-bar .nav-item a {
    display: inline-block;
}
