/* Header Genel */
header {
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    padding: 10px 0;
    position: relative;
    z-index: 999;
}

/* Logo + Başlık */
.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.header-logo img {
    width: 140px;
    height: auto;
    object-fit: contain;
}

/* Site başlığı (customizer ile override edilecek) */
.header-logo span.site-title,
.header-logo a.site-title,
.header-logo h1.site-title {
    color: #212529;
    text-decoration: none;
}

/* Navbar */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navbar-nav li a {
    color: #212529;
    font-weight: 500;
    padding: 8px 12px;
    transition: color 0.3s, background-color 0.3s;
}
.navbar-nav li a:hover,
.navbar-nav li a.active {
    color: #0d6efd;
}

/* Top Bar */
.top-bar {
    background-color: #212529;
    color: #fff;
    font-size: 0.875rem;
    padding: 2px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.topbar-left a,
.topbar-right a {
    color: #fff;
    margin-right: 0.75rem;
    text-decoration: none;
    transition: color 0.3s;
}
.topbar-left a:hover,
.topbar-right a:hover {
    color: #0d6efd;
}

/* Buton / Sepet */
.btn-outline-primary {
    border-radius: 6px;
    transition: all 0.3s;
}
.btn-outline-primary:hover {
    background-color: #0d6efd;
    color: #fff;
}

/* Header Arama Kutusu */
.header-search {
    display: flex;
    align-items: center;
    margin-left: 15px;
}
.search-form {
    display: flex;
    align-items: center;
    position: relative;
}
.search-input {
    padding: 6px 12px;
    border-radius: 6px 0 0 6px;
    border: 1px solid #ccc;
    outline: none;
    width: 200px;
    transition: all 0.3s ease;
}
.search-input:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 6px rgba(13,110,253,0.3);
}
.search-btn {
    border: 1px solid #0d6efd;
    background-color: #0d6efd;
    color: #fff;
    padding: 6px 10px;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
    transition: background 0.3s;
}
.search-btn:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}
.search-btn i {
    font-size: 14px;
}
