.search-category{
    .category-sidebar {
        background: white;
        border-radius: 12px;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        border: 1px solid #e5e7eb;
        margin-bottom: 1rem;
    }

    .sidebar-header {
        background: #FF9E18;
        color: white;
        padding: 1rem 1.25rem;
        font-weight: 600;
        font-size: 1.1rem;
    }

    .clear-filter {
        background: rgba(255, 255, 255, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.3);
        color: white !important;
        padding: 0.25rem 0.75rem;
        border-radius: 20px;
        font-size: 0.75rem;
        text-decoration: none;
        transition: all 0.2s ease;
    }

    .clear-filter:hover {
        background: rgba(255, 255, 255, 0.3);
        color: white !important;
        transform: translateY(-1px);
    }

    .zebra-list {
        padding: 0;
        margin: 0;
    }

    .sidebar-item {
        position: relative;
        border-bottom: 1px solid #f1f3f4 !important;
        transition: all 0.2s ease;
        background: transparent !important;
    }

    .sidebar-item:nth-child(even) {
        background: #fafbfc !important;
    }

    .sidebar-item:hover {
        background: #f0f4ff !important;
        transform: translateX(2px);
    }

    .sidebar-item.active {
        background: #e8f2ff !important;
        border-left: 4px solid #667eea !important;
    }

    .sidebar-link {
        padding: 0.75rem 1.25rem !important;
        color: #374151 !important;
        font-weight: 500;
        transition: all 0.2s ease;
        border-radius: 0 !important;
        text-decoration: none !important;
    }

    .sidebar-link:hover {
        color: #667eea !important;
        background: transparent !important;
    }

    .sidebar-link span:first-child {
        font-size: 0.9rem;
    }

    .sidebar-link .badge {
        background: #6b7280 !important;
        color: white;
        padding: 0.25rem 0.5rem;
        border-radius: 12px;
        font-size: 0.75rem;
        font-weight: 500;
        min-width: 24px;
    }

    .sidebar-item.active .sidebar-link .badge {
        background: #667eea !important;
    }

    /* Alt kategoriler için özel stil */
    .sidebar-dropdown {
        background: #f9fafb;
        border-left: 2px solid #e5e7eb;
        margin-left: 0.5rem !important;
        margin-top: 0 !important;
        padding-left: 0 !important;
    }

    .sidebar-dropdown .sidebar-item {
        border-bottom: 1px solid #f3f4f6 !important;
    }

    .sidebar-dropdown .sidebar-item:nth-child(odd) {
        background: rgba(255, 255, 255, 0.5) !important;
    }

    .sidebar-dropdown .sidebar-item:hover {
        background: #e8f2ff !important;
    }

    .sidebar-dropdown .sidebar-item.active {
        background: #dbeafe !important;
        border-left: 3px solid #3b82f6 !important;
    }

    .sidebar-dropdown .sidebar-link {
        padding: 0.5rem 1rem 0.5rem 1.5rem !important;
        color: #6b7280 !important;
        font-size: 0.85rem !important;
        font-weight: 400 !important;
        position: relative;
    }

    .sidebar-dropdown .sidebar-link:before {
        content: '';
        position: absolute;
        left: 1rem;
        top: 50%;
        width: 6px;
        height: 6px;
        background: #d1d5db;
        border-radius: 50%;
        transform: translateY(-50%);
        transition: background 0.2s ease;
    }

    .sidebar-dropdown .sidebar-link:hover {
        color: #3b82f6 !important;
    }

    .sidebar-dropdown .sidebar-link:hover:before {
        background: #3b82f6;
    }

    .sidebar-dropdown .sidebar-item.active .sidebar-link:before {
        background: #3b82f6;
    }

    .sidebar-dropdown .sidebar-link .badge {
        background: #e5e7eb !important;
        color: #6b7280 !important;
        padding: 0.2rem 0.4rem;
        border-radius: 10px;
        font-size: 0.7rem;
        min-width: 20px;
    }

    .sidebar-dropdown .sidebar-item.active .sidebar-link .badge {
        background: #3b82f6 !important;
        color: white !important;
    }

    /* Animasyonlar */
    @keyframes slideIn {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .category-sidebar {
        animation: slideIn 0.3s ease;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .category-sidebar {
            border-radius: 8px;
            margin: 0 0.5rem;
        }

        .sidebar-link {
            padding: 0.6rem 1rem !important;
        }

        .sidebar-dropdown .sidebar-link {
            padding: 0.4rem 0.8rem 0.4rem 1.5rem !important;
        }
    }

    /* Eski stilleri override et */
    #sidebar {
        background: transparent !important;
        border: none !important;
    }

    .sidebar-nav {
        padding: 0;
    }

    .sidebar-nav .sidebar-item {
        margin-bottom: 0 !important;
    }
}