    .he-header {
        background-color:#444860;
        position: relative;
        top: 0;
      
    }

    .he-header-container {
        max-width: 1300px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 60px;
    }

    /* Logo */
    .he-logo {
        display: flex;
        align-items: center;
        text-decoration: none;
        gap: 8px;
    }

    .he-logo-icon {
        width: 35px;
        height: 35px;
        background-color: #dc2626;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .he-logo-icon i {
        color: white;
        font-size: 20px;
    }

    .he-logo-text {
        font-size: 24px;
        font-weight: 700;
        color: #1f2937;
    }

    .he-logo-text span {
        color: #dc2626;
    }

    /* Navigation */
    .he-nav {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .he-dropdown {
        position: relative;
    }

    .he-nav-item {
        padding: 10px 16px;
        color: #374151;
        text-decoration: none !important;
        font-size: 15px;
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 5px;
        transition: color 0.2s;
        cursor: pointer;
    }

    .he-nav-item:hover {
        color: #dc2626;
    }

    .he-nav-item i {
        font-size: 12px;
        transition: transform 0.2s;
    }

    .he-dropdown:hover .he-nav-item i {
        transform: rotate(180deg);
    }

    /* Dropdown Menu */
    .he-dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #fff;
        border-radius: 8px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.15);
        min-width: 250px;
        padding: 8px 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        z-index: 1000;
        margin-top: 5px;
    }

    .he-dropdown:hover .he-dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .he-dropdown-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 20px;
        color: #374151;
        text-decoration: none !important;
        font-size: 14px;
        transition: all 0.2s;
        gap: 10px;
    }

    .he-dropdown-item:hover {
        background-color: #f3f4f6;
        color: #dc2626;
        padding-left: 25px;
    }

    .he-dropdown-item-text {
        flex: 1;
    }

    .he-count {
        background-color: #dc2626;
        color: #fff;
        padding: 2px 8px;
        border-radius: 12px;
        font-size: 12px;
        font-weight: 600;
        min-width: 30px;
        text-align: center;
    }

    .he-dropdown-item:hover .he-count {
        background-color: #b91c1c;
    }

    /* Right Section */
    .he-header-right {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .he-icon-btn {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: none;
        background-color: transparent;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background-color 0.2s;
        font-size: 20px;
        color: #374151;
    }

    .he-icon-btn:hover {
        background-color: #f3f4f6;
    }

    .he-auth-buttons {
        display: flex;
        gap: 10px;
    }

    .he-btn-secondary {
        padding: 10px 20px;
        border: 1px solid #d1d5db;
        background-color: white;
        color: #374151;
        border-radius: 6px;
        font-size: 14px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.2s;
        font-weight: 600;
    }

    .he-btn-secondary:hover {
        background-color: #f9fafb;
        border-color: #9ca3af;
    }

    .he-btn-primary {
        padding: 10px 24px;
        border: none;
        background-color: #dc2626;
        color: white;
        border-radius: 6px;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        transition: background-color 0.2s;
    }

    .he-btn-primary:hover {
        background-color: #b91c1c;
    }

    /* Toggle butonu sadece mobilde göster (örnek) */
.he-mobile-menu-toggle {
    background: none;
    border: none;
    font-size: 22px;
    padding: 6px 10px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Menü açıkken body kaymasın */
body.he-menu-open {
    overflow: hidden;
}

/* Overlay */
.he-mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
}

.he-mobile-menu-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

/* Panel */
.he-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 82%;
    max-width: 320px;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    box-shadow: 2px 0 12px rgba(0,0,0,0.25);
    transform: translateX(-100%);
    transition: transform .25s ease;
    display: flex;
    flex-direction: column;
}

.he-mobile-menu.open {
    transform: translateX(0);
}

/* Header */
.he-mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 1px solid #f0f0f0;
}

.he-mobile-menu-logo {
    align-items: center;
    font-weight: 700;
    font-size: 16px;
}

.he-mobile-menu-logo i {
    margin-right: 6px;
    font-size: 18px;
    color: #e53935;
}

.he-mobile-menu-logo span span {
    color: #e53935;
}

.he-mobile-menu-close {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
}

/* Body */
.he-mobile-menu-body {
    padding: 10px 0 20px;
    max-height: 100vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/* Login kutusu */
.he-mobile-menu-login-box {
    padding: 10px 16px 15px;
    border-bottom: 1px solid #f1f1f1;
}

.he-mobile-btn-primary {
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    border-radius: 4px;
    border: 1px solid #e53935;
    color: #e53935;
    font-weight: 600;
    text-decoration: none;
}

.he-mobile-btn-primary:hover {
    background: #e53935;
    color: #fff;
}

.he-mobile-login-info {
    margin: 6px 0 0;
    font-size: 11px;
    color: #777;
}

/* Menü listeleri */
.he-mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 8px solid #f7f7f7; /* gruplar arası boşluk */
}

.he-mobile-menu-list:first-of-type {
    border-top: none;
}

.he-mobile-menu-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 16px;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
}

.he-mobile-menu-list li a i.fa-chevron-right {
    font-size: 12px;
    color: #999;
}

/* Dil / para simgesi */
.he-mobile-flag-icon {
    margin-right: 8px;
    font-size: 16px;
}

/* Sadece mobilde göster örneği */
@media (min-width: 992px) {
    .he-mobile-menu-toggle {
        display: none;
    }
    .he-mobile-menu,
    .he-mobile-menu-overlay {
        display: none;
    }
}


    /* Responsive */
    @media (max-width: 1024px) {
        .he-header-container {
            padding: 0 15px;
        }

        .he-nav {
            gap: 0;
        }

        .he-nav-item {
            padding: 10px 12px;
            font-size: 14px;
        }
    }

    @media (max-width: 768px) {
        

        .he-nav {
            display: none;
        }

        .he-auth-buttons .he-btn-secondary {
            display: none;
        }

        .he-header-right {
            gap: 10px;
        }
    }

    @media (max-width: 480px) {
        .he-header-container {
            height: 60px;
            padding: 0 10px;
        }

        .he-logo-text {
            font-size: 20px;
        }

        .he-logo-icon {
            width: 30px;
            height: 30px;
        }

        .he-icon-btn {
            width: 35px;
            height: 35px;
            font-size: 18px;
        }

        .he-btn-primary {
            padding: 0px 8px;
            font-size: 11px;
        }
    }
        /* Dil Dropdown */
    .he-language-dropdown {
        position: relative;
    }

    .he-language-btn {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: none;
        background-color: transparent;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background-color 0.2s;
        font-size: 20px;
        color: #374151;
        position: relative;
    }

    .he-language-btn:hover {
        background-color: #f3f4f6;
    }

    .he-language-menu {
        position: absolute;
        top: 100%;
        right: 0;
        background-color: #fff;
        border-radius: 8px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.15);
        min-width: 200px;
        padding: 8px 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        z-index: 1000;
        margin-top: 10px;
    }

    .he-language-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .he-language-item {
        display: flex;
        align-items: center;
        padding: 12px 20px;
        color: #374151;
        text-decoration: none;
        font-size: 14px;
        transition: all 0.2s;
        gap: 12px;
        cursor: pointer;
    }

    .he-language-item:hover {
        background-color: #f3f4f6;
        color: #dc2626;
    }

    .he-language-item.active {
        background-color: #fef2f2;
        color: #dc2626;
        font-weight: 600;
    }

    .he-language-item .flag-icon {
        width: 24px;
        height: 24px;
        border-radius: 4px;
        object-fit: cover;
    }

    .he-language-item span {
        flex: 1;
    }

    .he-language-item .check-icon {
        color: #dc2626;
        font-size: 16px;
    }
    /* === HEADER SEARCH MODAL === */
.he-header-search-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: none;
    z-index: 9999;
}

.he-header-search-inner {
    width: 100%;
    max-width: 1200px;
    margin: 15px auto 0 auto;
    padding: 0 10px;
}

.he-header-search-pill {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    padding: 6px 6px 6px 18px;
}

.he-header-search-input {
    border: none;
    outline: none;
    flex: 1;
    font-size: 15px;
    background: transparent;
}

/* x Kapat butonu */
.he-header-search-close {
    border: none;
    outline: none;
    background: #222;
    color: #fff;
    font-size: 13px;
    border-radius: 999px;
    padding: 6px 16px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    white-space: nowrap;
}

/* Mobil uyum */
@media (max-width: 767px) {
    .he-header-search-inner {
        margin-top: 10px;
        padding: 0 8px;
    }
    .he-header-search-pill {
        padding: 6px 6px 6px 12px;
    }
    .he-header-search-input {
        font-size: 14px;
    }
    .he-header-search-close {
        font-size: 12px;
        padding: 5px 12px;
    }
}
/* Ana kategori satırı (accordion butonu) */
.he-mobile-categories .he-has-children .he-cat-row {
    padding: 0;
}

.he-mobile-categories .he-cat-toggle {
    width: 100%;
    border: 0;
    background: none;
    padding: 11px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

/* Sol kısım: ikon + başlık */
.he-mobile-categories .he-cat-main {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: #333;
}

/* Chevron oku */
.he-mobile-categories .he-cat-chevron {
    font-size: 12px;
    color: #999;
    transition: transform .2s ease;
}

/* Alt menü */
.he-mobile-categories .he-submenu {
    list-style: none;
    margin: 0;
    padding: 0 0 0 36px;
    max-height: 0;
    overflow: hidden;
    background: #fafafa;
    border-top: 1px solid #f1f1f1;
    transition: max-height .25s ease;
}

/* Alt menü iç linkler */
.he-mobile-categories .he-submenu li a {
    padding: 8px 16px 8px 0;
    font-size: 15px;
    color: #555;
    display: block;
    border-bottom: 1px solid #f0f0f0;
}

/* "Tüm [Kategori]" linki için ufak vurgulama */
.he-mobile-categories .he-submenu-all {
    font-weight: 600;
}

/* Açık durum */
.he-mobile-categories .he-has-children.open .he-submenu{
  max-height: 54vh;          /* ekrana göre büyür */
  overflow-y: auto;          /* kaydırma */
  -webkit-overflow-scrolling: touch; /* iOS için pürüzsüz scroll */
}

.he-mobile-categories .he-has-children.open .he-cat-chevron {
    transform: rotate(180deg);
}
/* Genel blok */
.mbl-lang-wrapper {
    padding: 12px 16px;
    border-top: 8px solid #f7f7f7;
}

/* Üst başlık */
.mbl-lang-label {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

/* Selectbox */
.mbl-lang-select {
    position: relative;
}

.mbl-lang-selected {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mbl-lang-selected span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.mbl-lang-selected .flag-icon {
    font-size: 18px;
}

.mbl-lang-arrow {
    font-size: 12px;
    color: #777;
}

/* Dropdown */
.mbl-lang-dropdown {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 4px);
    background: #fff;
    border-radius: 6px;
    border: 1px solid #ddd;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    max-height: 0;
    transition: all .2s ease;
    z-index: 10000;
}

.mbl-lang-select.open .mbl-lang-dropdown {
    opacity: 1;
    pointer-events: auto;
    max-height: 300px;
}

/* Dropdown item */
.mbl-lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    font-size: 13px;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: #333;
}

.mbl-lang-option:last-child {
    border-bottom: none;
}

.mbl-lang-option .flag-icon {
    font-size: 18px;
}

.mbl-lang-option:hover {
    background: #f9f9f9;
}

/* Aktif dil */
.mbl-lang-option.active {
    background: #e53935;
    color: #fff;
}

.mbl-lang-option.active .flag-icon {
    filter: brightness(200%);
}

.mbl-lang-check {
    margin-left: auto;
    font-size: 12px;
    color: #fff;
}
.he-dropdown-all{
  font-weight:700;
  justify-content:space-between;
  border-top:1px solid rgba(0,0,0,.08);
  margin-top:6px;
  padding-top:10px;
}

